diff --git a/CHANGELOG.md b/CHANGELOG.md index 2c107ec..92a4bc9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,15 +4,16 @@ ### Changes -- Added node `bitstruct_member_declaration` +- Added rule `bitstruct_member_declaration` - Added field `name` to `distinct_declaration` - Added field `name` to `const_declaration` - Added field `type` to `bitstruct_member_declaration` - Added field `body` to `bitstruct_body` - Added field `return_type` to `lambda_declaration` - Added fields `type` and `name` to `parameter` -- Removed node `multi_declaration` -- Removed node `optional_type`, it's now `type` with an optional '!' token at the end +- Removed rule `multi_declaration` +- Removed rule `optional_type`, it's now `type` with an optional '!' token at the end +- Renamed rule `suffix_expr` to `optional_expr` - Node `multi_declaration` inlined into `global_declaration` - Relaxed bitstruct members - Relaxed enum body to be empty @@ -20,3 +21,5 @@ - `macro_declaration` now always has a `macro_header`, previously it could have a `func_header` - Fixed not accepting optional types where it's permitted - Fixed/improved parameter grammar +- Fixed incorrect ternary precedence +- Fixed not permitting assignment expressions in some cases diff --git a/docs/playground/tree-sitter-c3.wasm b/docs/playground/tree-sitter-c3.wasm index 3e0c56e..10b58e0 100755 Binary files a/docs/playground/tree-sitter-c3.wasm and b/docs/playground/tree-sitter-c3.wasm differ diff --git a/grammar.js b/grammar.js index 791a7f6..f2089ff 100644 --- a/grammar.js +++ b/grammar.js @@ -25,6 +25,7 @@ const TYPE_IDENT = /_*[A-Z][_A-Z0-9]*[a-z][_a-zA-Z0-9]*/; const CONST_IDENT = /_*[A-Z][_A-Z0-9]*/; // https://c3lang.github.io/c3-web/references/docs/precedence/ +// c3c/src/compiler/enums.h const PREC = { // Expressions ASSIGNMENT: -2, @@ -219,7 +220,6 @@ module.exports = grammar({ // Helpers // ------------------------- _assign_right_expr: $ => seq('=', field('right', $._expr)), - _assign_right_constant_expr: $ => seq('=', field('right', $._constant_expr)), _cond: $ => choice( choice($._try_unwrap_chain, $.catch_unwrap), @@ -696,7 +696,7 @@ module.exports = grammar({ // ------------------------- local_decl_after_type: $ => choice( seq(field('name', $.ident), optional($.attributes), optional($._assign_right_expr)), - seq(field('name', $.ct_ident), optional($._assign_right_constant_expr)), + seq(field('name', $.ct_ident), optional($._assign_right_expr)), ), _decl_statement_after_type: $ => commaSep1($.local_decl_after_type), @@ -765,7 +765,7 @@ module.exports = grammar({ // If-Catch // ------------------------- - catch_unwrap_list: $ => commaSep1($._relational_expr), + catch_unwrap_list: $ => commaSep1($._expr), // Precedence over assignment expression catch_unwrap: $ => prec(1, seq( 'catch', @@ -777,12 +777,11 @@ module.exports = grammar({ // If-Try // ------------------------- - _rel_or_lambda_expr: $ => choice( - $._relational_expr, - seq($.lambda_declaration, '=>', $._relational_expr), - ), + _rel_or_lambda_expr: $ => prec(3, choice( + $._expr, + seq($.lambda_declaration, '=>', $._expr), + )), - // Precedence over assignment expression try_unwrap: $ => prec(1, seq( 'try', choice( @@ -1013,7 +1012,7 @@ module.exports = grammar({ $.ternary_expr, $.lambda_expr, $.elvis_orelse_expr, - $.suffix_expr, + $.optional_expr, $.binary_expr, $.unary_expr, $.cast_expr, @@ -1030,7 +1029,7 @@ module.exports = grammar({ $.ternary_expr, $.lambda_expr, $.elvis_orelse_expr, - $.suffix_expr, + $.optional_expr, $.binary_expr, $.unary_expr, $.cast_expr, @@ -1043,31 +1042,6 @@ module.exports = grammar({ $._base_expr, )), - // NOTE This deviates original grammar by including && and ||. - _relational_expr: $ => prec(2, choice( - $.binary_expr, - $.unary_expr, - $.cast_expr, - $.rethrow_expr, - $.trailing_generic_expr, - $.update_expr, - $.call_expr, - $.subscript_expr, - $.initializer_list, - $._base_expr, - )), - - // One more level for more accurate errors - _trailing_expr: $ => prec(3, choice( - $.rethrow_expr, - $.trailing_generic_expr, - $.update_expr, - $.call_expr, - $.subscript_expr, - $.initializer_list, - $._base_expr, - )), - // Base Expression // ------------------------- _ident_expr: $ => choice( @@ -1102,7 +1076,7 @@ module.exports = grammar({ bytes_expr: $ => repeat1($.bytes_literal), paren_expr: $ => seq('(', $._expr, ')'), - _base_expr: $ => prec(5, choice( + _base_expr: $ => prec(2, choice( 'true', 'false', 'null', @@ -1116,12 +1090,12 @@ module.exports = grammar({ $.bytes_expr, $._ident_expr, + $.module_ident_expr, $._local_ident_expr, $.initializer_list, seq($.type, $.initializer_list), - $.module_ident_expr, $.field_expr, $.type_access_expr, $.paren_expr, @@ -1208,12 +1182,11 @@ module.exports = grammar({ // ------------------------- ternary_expr: $ => prec.right(PREC.TERNARY, choice( seq( - // field('condition', $._constant_expr), - field('condition', $._relational_expr), // TODO + field('condition', $._expr), // TODO '?', field('consequence', $._expr), ':', - field('alternative', $._constant_expr), + field('alternative', $._expr), ), )), @@ -1224,13 +1197,15 @@ module.exports = grammar({ // Elvis/or-else (?:, ??) Expression // ------------------------- elvis_orelse_expr: $ => prec.right(PREC.TERNARY, seq( - $._constant_expr, choice('?:', '??'), $._constant_expr, + field('condition', $._expr), + field('operator', choice('?:', '??')), + field('alternative', $._expr), )), // Suffix Expression // ------------------------- - suffix_expr: $ => prec.right(PREC.TERNARY, seq( - field('argument', $._relational_expr), + optional_expr: $ => prec.right(PREC.TERNARY, seq( + field('argument', $._expr), field('operator', choice( '?', seq('?', '!'), @@ -1293,8 +1268,8 @@ module.exports = grammar({ // Arguments // ------------------------- - // Precedence over _trailing_expr - param_path_element: $ => prec(4, choice( + // Precedence over _expr + param_path_element: $ => prec(1, choice( seq('[', $._expr, ']'), seq('[', $._expr, '..', $._expr, ']'), seq('.', $._base_expr), @@ -1328,7 +1303,7 @@ module.exports = grammar({ optional($.call_inline_attributes), ), call_expr: $ => prec.right(PREC.TRAILING, seq( - field('function', $._trailing_expr), + field('function', $._expr), field('arguments', $.call_invocation), field('trailing', optional($.compound_stmt)), )), @@ -1336,21 +1311,21 @@ module.exports = grammar({ // Postfix Update Expression (--/++) // ------------------------- update_expr: $ => prec.right(PREC.TRAILING, seq( - field('argument', $._trailing_expr), + field('argument', $._expr), field('operator', choice('--', '++')), )), // Rethrow Expression // ------------------------- rethrow_expr: $ => prec.right(PREC.TRAILING, seq( - field('argument', $._trailing_expr), + field('argument', $._expr), field('operator', choice('!', '!!')), )), // Trailing Generic Expression // ------------------------- trailing_generic_expr: $ => prec.right(PREC.TRAILING, seq( - field('argument', $._trailing_expr), + field('argument', $._expr), field('operator', $.generic_arguments), )), @@ -1370,7 +1345,7 @@ module.exports = grammar({ // Subscript Expression // ------------------------- subscript_expr: $ => prec.right(PREC.SUBSCRIPT, seq( - field('argument', $._trailing_expr), + field('argument', $._expr), '[', choice( field('index', $._range_loc), @@ -1445,23 +1420,23 @@ module.exports = grammar({ 'typeid', ), - base_type: $ => choice( + base_type: $ => prec.right(choice( $.base_type_name, seq($.type_ident, optional($.generic_arguments)), seq($.module_type_ident, optional($.generic_arguments)), $.ct_type_ident, seq('$typeof', '(', $._expr, ')'), - seq('$typefrom', '(', $._constant_expr, ')'), - seq('$vatype', '(', $._constant_expr, ')'), - seq('$evaltype', '(', $._constant_expr, ')'), - ), + seq('$typefrom', '(', $._expr, ')'), + seq('$vatype', '(', $._expr, ')'), + seq('$evaltype', '(', $._expr, ')'), + )), type_suffix: $ => choice( '*', - seq('[', $._constant_expr, ']'), + seq('[', $._expr, ']'), seq('[', ']'), seq('[', '*', ']'), - seq('[<', $._constant_expr, '>]'), + seq('[<', $._expr, '>]'), seq('[<', '*', '>]'), ), type: $ => prec.right(seq( diff --git a/src/grammar.json b/src/grammar.json index 7b23bfb..7caa24c 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -748,23 +748,6 @@ } ] }, - "_assign_right_constant_expr": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "=" - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_constant_expr" - } - } - ] - }, "_cond": { "type": "CHOICE", "members": [ @@ -3004,39 +2987,47 @@ "value": "{" }, { - "type": "SEQ", + "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "enum_constant" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "enum_constant" - } - ] - } - }, - { - "type": "CHOICE", + "type": "SEQ", "members": [ { - "type": "STRING", - "value": "," + "type": "SYMBOL", + "name": "enum_constant" }, { - "type": "BLANK" + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "enum_constant" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] } ] + }, + { + "type": "BLANK" } ] }, @@ -4013,7 +4004,7 @@ "members": [ { "type": "SYMBOL", - "name": "_assign_right_constant_expr" + "name": "_assign_right_expr" }, { "type": "BLANK" @@ -4332,7 +4323,7 @@ "members": [ { "type": "SYMBOL", - "name": "_relational_expr" + "name": "_expr" }, { "type": "REPEAT", @@ -4345,7 +4336,7 @@ }, { "type": "SYMBOL", - "name": "_relational_expr" + "name": "_expr" } ] } @@ -4404,30 +4395,34 @@ } }, "_rel_or_lambda_expr": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_relational_expr" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "lambda_declaration" - }, - { - "type": "STRING", - "value": "=>" - }, - { - "type": "SYMBOL", - "name": "_relational_expr" - } - ] - } - ] + "type": "PREC", + "value": 3, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expr" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "lambda_declaration" + }, + { + "type": "STRING", + "value": "=>" + }, + { + "type": "SYMBOL", + "name": "_expr" + } + ] + } + ] + } }, "try_unwrap": { "type": "PREC", @@ -5893,7 +5888,7 @@ }, { "type": "SYMBOL", - "name": "suffix_expr" + "name": "optional_expr" }, { "type": "SYMBOL", @@ -5958,57 +5953,8 @@ }, { "type": "SYMBOL", - "name": "suffix_expr" - }, - { - "type": "SYMBOL", - "name": "binary_expr" - }, - { - "type": "SYMBOL", - "name": "unary_expr" - }, - { - "type": "SYMBOL", - "name": "cast_expr" - }, - { - "type": "SYMBOL", - "name": "rethrow_expr" - }, - { - "type": "SYMBOL", - "name": "trailing_generic_expr" - }, - { - "type": "SYMBOL", - "name": "update_expr" - }, - { - "type": "SYMBOL", - "name": "call_expr" - }, - { - "type": "SYMBOL", - "name": "subscript_expr" - }, - { - "type": "SYMBOL", - "name": "initializer_list" + "name": "optional_expr" }, - { - "type": "SYMBOL", - "name": "_base_expr" - } - ] - } - }, - "_relational_expr": { - "type": "PREC", - "value": 2, - "content": { - "type": "CHOICE", - "members": [ { "type": "SYMBOL", "name": "binary_expr" @@ -6052,43 +5998,6 @@ ] } }, - "_trailing_expr": { - "type": "PREC", - "value": 3, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "rethrow_expr" - }, - { - "type": "SYMBOL", - "name": "trailing_generic_expr" - }, - { - "type": "SYMBOL", - "name": "update_expr" - }, - { - "type": "SYMBOL", - "name": "call_expr" - }, - { - "type": "SYMBOL", - "name": "subscript_expr" - }, - { - "type": "SYMBOL", - "name": "initializer_list" - }, - { - "type": "SYMBOL", - "name": "_base_expr" - } - ] - } - }, "_ident_expr": { "type": "CHOICE", "members": [ @@ -6232,7 +6141,7 @@ }, "_base_expr": { "type": "PREC", - "value": 5, + "value": 2, "content": { "type": "CHOICE", "members": [ @@ -6284,6 +6193,10 @@ "type": "SYMBOL", "name": "_ident_expr" }, + { + "type": "SYMBOL", + "name": "module_ident_expr" + }, { "type": "SYMBOL", "name": "_local_ident_expr" @@ -6305,10 +6218,6 @@ } ] }, - { - "type": "SYMBOL", - "name": "module_ident_expr" - }, { "type": "SYMBOL", "name": "field_expr" @@ -6755,7 +6664,7 @@ "name": "condition", "content": { "type": "SYMBOL", - "name": "_relational_expr" + "name": "_expr" } }, { @@ -6779,7 +6688,7 @@ "name": "alternative", "content": { "type": "SYMBOL", - "name": "_constant_expr" + "name": "_expr" } } ] @@ -6811,30 +6720,42 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "_constant_expr" + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "_expr" + } }, { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "?:" - }, - { - "type": "STRING", - "value": "??" - } - ] + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "?:" + }, + { + "type": "STRING", + "value": "??" + } + ] + } }, { - "type": "SYMBOL", - "name": "_constant_expr" + "type": "FIELD", + "name": "alternative", + "content": { + "type": "SYMBOL", + "name": "_expr" + } } ] } }, - "suffix_expr": { + "optional_expr": { "type": "PREC_RIGHT", "value": -1, "content": { @@ -6845,7 +6766,7 @@ "name": "argument", "content": { "type": "SYMBOL", - "name": "_relational_expr" + "name": "_expr" } }, { @@ -7577,7 +7498,7 @@ }, "param_path_element": { "type": "PREC", - "value": 4, + "value": 1, "content": { "type": "CHOICE", "members": [ @@ -7904,7 +7825,7 @@ "name": "function", "content": { "type": "SYMBOL", - "name": "_trailing_expr" + "name": "_expr" } }, { @@ -7945,7 +7866,7 @@ "name": "argument", "content": { "type": "SYMBOL", - "name": "_trailing_expr" + "name": "_expr" } }, { @@ -7979,7 +7900,7 @@ "name": "argument", "content": { "type": "SYMBOL", - "name": "_trailing_expr" + "name": "_expr" } }, { @@ -8013,7 +7934,7 @@ "name": "argument", "content": { "type": "SYMBOL", - "name": "_trailing_expr" + "name": "_expr" } }, { @@ -8138,7 +8059,7 @@ "name": "argument", "content": { "type": "SYMBOL", - "name": "_trailing_expr" + "name": "_expr" } }, { @@ -8414,143 +8335,147 @@ ] }, "base_type": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "base_type_name" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "type_ident" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "generic_arguments" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "module_type_ident" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "generic_arguments" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "SYMBOL", - "name": "ct_type_ident" - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "$typeof" - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "_expr" - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "$typefrom" - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "_constant_expr" - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "$vatype" - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "_constant_expr" - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "$evaltype" - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "_constant_expr" - }, - { - "type": "STRING", - "value": ")" - } - ] - } - ] + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "base_type_name" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "type_ident" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "generic_arguments" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "module_type_ident" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "generic_arguments" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SYMBOL", + "name": "ct_type_ident" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "$typeof" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "_expr" + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "$typefrom" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "_expr" + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "$vatype" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "_expr" + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "$evaltype" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "_expr" + }, + { + "type": "STRING", + "value": ")" + } + ] + } + ] + } }, "type_suffix": { "type": "CHOICE", @@ -8568,7 +8493,7 @@ }, { "type": "SYMBOL", - "name": "_constant_expr" + "name": "_expr" }, { "type": "STRING", @@ -8615,7 +8540,7 @@ }, { "type": "SYMBOL", - "name": "_constant_expr" + "name": "_expr" }, { "type": "STRING", @@ -8658,30 +8583,25 @@ "type": "SYMBOL", "name": "type_suffix" } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "!" + }, + { + "type": "BLANK" + } + ] } ] } }, "_type_optional": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "type" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "!" - }, - { - "type": "BLANK" - } - ] - } - ] + "type": "SYMBOL", + "name": "type" } }, "extras": [ @@ -8723,7 +8643,8 @@ "_top_level_item", "_ct_call", "_ct_arg", - "_asm_addr" + "_asm_addr", + "_type_optional" ], "supertypes": [] } diff --git a/src/node-types.json b/src/node-types.json index edb41e1..3d8b115 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -102,6 +102,10 @@ "type": "module_ident_expr", "named": true }, + { + "type": "optional_expr", + "named": true + }, { "type": "paren_expr", "named": true @@ -130,10 +134,6 @@ "type": "subscript_expr", "named": true }, - { - "type": "suffix_expr", - "named": true - }, { "type": "ternary_expr", "named": true @@ -264,6 +264,10 @@ "type": "module_ident_expr", "named": true }, + { + "type": "optional_expr", + "named": true + }, { "type": "param_path", "named": true @@ -300,10 +304,6 @@ "type": "subscript_expr", "named": true }, - { - "type": "suffix_expr", - "named": true - }, { "type": "ternary_expr", "named": true @@ -457,6 +457,10 @@ "type": "module_ident_expr", "named": true }, + { + "type": "optional_expr", + "named": true + }, { "type": "paren_expr", "named": true @@ -485,10 +489,6 @@ "type": "subscript_expr", "named": true }, - { - "type": "suffix_expr", - "named": true - }, { "type": "ternary_expr", "named": true @@ -696,6 +696,10 @@ "type": "module_ident_expr", "named": true }, + { + "type": "optional_expr", + "named": true + }, { "type": "paren_expr", "named": true @@ -724,10 +728,6 @@ "type": "subscript_expr", "named": true }, - { - "type": "suffix_expr", - "named": true - }, { "type": "ternary_expr", "named": true @@ -973,6 +973,10 @@ "type": "null", "named": false }, + { + "type": "optional_expr", + "named": true + }, { "type": "paren_expr", "named": true @@ -1001,10 +1005,6 @@ "type": "subscript_expr", "named": true }, - { - "type": "suffix_expr", - "named": true - }, { "type": "ternary_expr", "named": true @@ -1285,6 +1285,10 @@ "type": "null", "named": false }, + { + "type": "optional_expr", + "named": true + }, { "type": "paren_expr", "named": true @@ -1313,10 +1317,6 @@ "type": "subscript_expr", "named": true }, - { - "type": "suffix_expr", - "named": true - }, { "type": "ternary_expr", "named": true @@ -1452,6 +1452,10 @@ "type": "module_ident_expr", "named": true }, + { + "type": "optional_expr", + "named": true + }, { "type": "paren_expr", "named": true @@ -1480,10 +1484,6 @@ "type": "subscript_expr", "named": true }, - { - "type": "suffix_expr", - "named": true - }, { "type": "ternary_expr", "named": true @@ -1690,6 +1690,10 @@ "type": "module_type_ident", "named": true }, + { + "type": "optional_expr", + "named": true + }, { "type": "paren_expr", "named": true @@ -1718,10 +1722,6 @@ "type": "subscript_expr", "named": true }, - { - "type": "suffix_expr", - "named": true - }, { "type": "ternary_expr", "named": true @@ -1972,6 +1972,10 @@ "type": "null", "named": false }, + { + "type": "optional_expr", + "named": true + }, { "type": "paren_expr", "named": true @@ -2000,10 +2004,6 @@ "type": "subscript_expr", "named": true }, - { - "type": "suffix_expr", - "named": true - }, { "type": "ternary_expr", "named": true @@ -2312,6 +2312,10 @@ "type": "null", "named": false }, + { + "type": "optional_expr", + "named": true + }, { "type": "paren_expr", "named": true @@ -2340,10 +2344,6 @@ "type": "subscript_expr", "named": true }, - { - "type": "suffix_expr", - "named": true - }, { "type": "ternary_expr", "named": true @@ -2548,6 +2548,10 @@ "type": "module_ident_expr", "named": true }, + { + "type": "optional_expr", + "named": true + }, { "type": "paren_expr", "named": true @@ -2576,10 +2580,6 @@ "type": "subscript_expr", "named": true }, - { - "type": "suffix_expr", - "named": true - }, { "type": "ternary_expr", "named": true @@ -2866,6 +2866,10 @@ "type": "null", "named": false }, + { + "type": "optional_expr", + "named": true + }, { "type": "paren_expr", "named": true @@ -2894,10 +2898,6 @@ "type": "subscript_expr", "named": true }, - { - "type": "suffix_expr", - "named": true - }, { "type": "ternary_expr", "named": true @@ -3091,6 +3091,10 @@ "type": "module_ident_expr", "named": true }, + { + "type": "optional_expr", + "named": true + }, { "type": "paren_expr", "named": true @@ -3119,10 +3123,6 @@ "type": "subscript_expr", "named": true }, - { - "type": "suffix_expr", - "named": true - }, { "type": "ternary_expr", "named": true @@ -3168,10 +3168,6 @@ "multiple": true, "required": true, "types": [ - { - "type": "!", - "named": false - }, { "type": "$alignof", "named": false @@ -3372,6 +3368,10 @@ "type": "null", "named": false }, + { + "type": "optional_expr", + "named": true + }, { "type": "paren_expr", "named": true @@ -3400,10 +3400,6 @@ "type": "subscript_expr", "named": true }, - { - "type": "suffix_expr", - "named": true - }, { "type": "ternary_expr", "named": true @@ -3758,6 +3754,10 @@ "type": "null", "named": false }, + { + "type": "optional_expr", + "named": true + }, { "type": "paren_expr", "named": true @@ -3786,10 +3786,6 @@ "type": "subscript_expr", "named": true }, - { - "type": "suffix_expr", - "named": true - }, { "type": "ternary_expr", "named": true @@ -3948,6 +3944,10 @@ "type": "module_ident_expr", "named": true }, + { + "type": "optional_expr", + "named": true + }, { "type": "paren_expr", "named": true @@ -3976,10 +3976,6 @@ "type": "subscript_expr", "named": true }, - { - "type": "suffix_expr", - "named": true - }, { "type": "ternary_expr", "named": true @@ -4133,6 +4129,10 @@ "type": "module_ident_expr", "named": true }, + { + "type": "optional_expr", + "named": true + }, { "type": "paren_expr", "named": true @@ -4161,10 +4161,6 @@ "type": "subscript_expr", "named": true }, - { - "type": "suffix_expr", - "named": true - }, { "type": "ternary_expr", "named": true @@ -4523,6 +4519,10 @@ "type": "null", "named": false }, + { + "type": "optional_expr", + "named": true + }, { "type": "paren_expr", "named": true @@ -4551,10 +4551,6 @@ "type": "subscript_expr", "named": true }, - { - "type": "suffix_expr", - "named": true - }, { "type": "ternary_expr", "named": true @@ -4586,13 +4582,9 @@ ] }, "type": { - "multiple": true, + "multiple": false, "required": false, "types": [ - { - "type": "!", - "named": false - }, { "type": "type", "named": true @@ -4729,6 +4721,10 @@ "type": "module_ident_expr", "named": true }, + { + "type": "optional_expr", + "named": true + }, { "type": "paren_expr", "named": true @@ -4757,10 +4753,6 @@ "type": "subscript_expr", "named": true }, - { - "type": "suffix_expr", - "named": true - }, { "type": "ternary_expr", "named": true @@ -4895,6 +4887,10 @@ "type": "module_ident_expr", "named": true }, + { + "type": "optional_expr", + "named": true + }, { "type": "paren_expr", "named": true @@ -4923,10 +4919,6 @@ "type": "subscript_expr", "named": true }, - { - "type": "suffix_expr", - "named": true - }, { "type": "ternary_expr", "named": true @@ -5057,6 +5049,10 @@ "type": "module_ident_expr", "named": true }, + { + "type": "optional_expr", + "named": true + }, { "type": "paren_expr", "named": true @@ -5085,10 +5081,6 @@ "type": "subscript_expr", "named": true }, - { - "type": "suffix_expr", - "named": true - }, { "type": "ternary_expr", "named": true @@ -5219,6 +5211,10 @@ "type": "module_ident_expr", "named": true }, + { + "type": "optional_expr", + "named": true + }, { "type": "paren_expr", "named": true @@ -5247,10 +5243,6 @@ "type": "subscript_expr", "named": true }, - { - "type": "suffix_expr", - "named": true - }, { "type": "ternary_expr", "named": true @@ -5501,6 +5493,10 @@ "type": "null", "named": false }, + { + "type": "optional_expr", + "named": true + }, { "type": "paren_expr", "named": true @@ -5529,10 +5525,6 @@ "type": "subscript_expr", "named": true }, - { - "type": "suffix_expr", - "named": true - }, { "type": "ternary_expr", "named": true @@ -5717,6 +5709,10 @@ "type": "module_ident_expr", "named": true }, + { + "type": "optional_expr", + "named": true + }, { "type": "paren_expr", "named": true @@ -5745,10 +5741,6 @@ "type": "subscript_expr", "named": true }, - { - "type": "suffix_expr", - "named": true - }, { "type": "ternary_expr", "named": true @@ -6016,6 +6008,10 @@ "type": "module_ident_expr", "named": true }, + { + "type": "optional_expr", + "named": true + }, { "type": "paren_expr", "named": true @@ -6044,10 +6040,6 @@ "type": "subscript_expr", "named": true }, - { - "type": "suffix_expr", - "named": true - }, { "type": "ternary_expr", "named": true @@ -6099,13 +6091,9 @@ "named": true, "fields": { "type": { - "multiple": true, + "multiple": false, "required": false, "types": [ - { - "type": "!", - "named": false - }, { "type": "type", "named": true @@ -6547,97 +6535,931 @@ "type": "elvis_orelse_expr", "named": true, "fields": { - "lambda_body": { + "alternative": { "multiple": true, - "required": false, + "required": true, "types": [ { - "type": "compound_stmt", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "assignment_expr", - "named": true - }, - { - "type": "at_ident", - "named": true - }, - { - "type": "binary_expr", - "named": true - }, - { - "type": "builtin", - "named": true - }, - { - "type": "bytes_expr", - "named": true - }, - { - "type": "call_expr", - "named": true - }, - { - "type": "cast_expr", - "named": true - }, - { - "type": "char_literal", - "named": true - }, - { - "type": "const_ident", - "named": true - }, - { - "type": "ct_ident", - "named": true - }, - { - "type": "elvis_orelse_expr", - "named": true - }, - { - "type": "expr_block", - "named": true - }, - { - "type": "field_expr", - "named": true - }, - { - "type": "flat_path", - "named": true - }, - { - "type": "hash_ident", - "named": true - }, - { - "type": "ident", - "named": true - }, - { - "type": "initializer_list", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "lambda_declaration", - "named": true - }, + "type": "$alignof", + "named": false + }, + { + "type": "$and", + "named": false + }, + { + "type": "$append", + "named": false + }, + { + "type": "$assignable", + "named": false + }, + { + "type": "$concat", + "named": false + }, + { + "type": "$defined", + "named": false + }, + { + "type": "$embed", + "named": false + }, + { + "type": "$eval", + "named": false + }, + { + "type": "$extnameof", + "named": false + }, + { + "type": "$feature", + "named": false + }, + { + "type": "$is_const", + "named": false + }, + { + "type": "$nameof", + "named": false + }, + { + "type": "$offsetof", + "named": false + }, + { + "type": "$or", + "named": false + }, + { + "type": "$qnameof", + "named": false + }, + { + "type": "$sizeof", + "named": false + }, + { + "type": "$stringify", + "named": false + }, + { + "type": "$vaarg", + "named": false + }, + { + "type": "$vaconst", + "named": false + }, + { + "type": "$vacount", + "named": false + }, + { + "type": "$vaexpr", + "named": false + }, + { + "type": "$varef", + "named": false + }, + { + "type": "(", + "named": false + }, + { + "type": ")", + "named": false + }, + { + "type": ",", + "named": false + }, + { + "type": "assignment_expr", + "named": true + }, + { + "type": "at_ident", + "named": true + }, + { + "type": "binary_expr", + "named": true + }, + { + "type": "builtin", + "named": true + }, + { + "type": "bytes_expr", + "named": true + }, + { + "type": "call_expr", + "named": true + }, + { + "type": "cast_expr", + "named": true + }, + { + "type": "char_literal", + "named": true + }, + { + "type": "compound_stmt", + "named": true + }, + { + "type": "const_ident", + "named": true + }, + { + "type": "ct_ident", + "named": true + }, + { + "type": "elvis_orelse_expr", + "named": true + }, + { + "type": "expr_block", + "named": true + }, + { + "type": "false", + "named": false + }, + { + "type": "field_expr", + "named": true + }, + { + "type": "flat_path", + "named": true + }, + { + "type": "hash_ident", + "named": true + }, + { + "type": "ident", + "named": true + }, + { + "type": "initializer_list", + "named": true + }, + { + "type": "integer_literal", + "named": true + }, + { + "type": "lambda_declaration", + "named": true + }, + { + "type": "lambda_expr", + "named": true + }, + { + "type": "module_ident_expr", + "named": true + }, + { + "type": "null", + "named": false + }, + { + "type": "optional_expr", + "named": true + }, + { + "type": "paren_expr", + "named": true + }, + { + "type": "raw_string_literal", + "named": true + }, + { + "type": "real_literal", + "named": true + }, + { + "type": "rethrow_expr", + "named": true + }, + { + "type": "string_expr", + "named": true + }, + { + "type": "string_literal", + "named": true + }, + { + "type": "subscript_expr", + "named": true + }, + { + "type": "ternary_expr", + "named": true + }, + { + "type": "trailing_generic_expr", + "named": true + }, + { + "type": "true", + "named": false + }, + { + "type": "type", + "named": true + }, + { + "type": "type_access_expr", + "named": true + }, + { + "type": "unary_expr", + "named": true + }, + { + "type": "update_expr", + "named": true + } + ] + }, + "condition": { + "multiple": true, + "required": true, + "types": [ + { + "type": "$alignof", + "named": false + }, + { + "type": "$and", + "named": false + }, + { + "type": "$append", + "named": false + }, + { + "type": "$assignable", + "named": false + }, + { + "type": "$concat", + "named": false + }, + { + "type": "$defined", + "named": false + }, + { + "type": "$embed", + "named": false + }, + { + "type": "$eval", + "named": false + }, + { + "type": "$extnameof", + "named": false + }, + { + "type": "$feature", + "named": false + }, + { + "type": "$is_const", + "named": false + }, + { + "type": "$nameof", + "named": false + }, + { + "type": "$offsetof", + "named": false + }, + { + "type": "$or", + "named": false + }, + { + "type": "$qnameof", + "named": false + }, + { + "type": "$sizeof", + "named": false + }, + { + "type": "$stringify", + "named": false + }, + { + "type": "$vaarg", + "named": false + }, + { + "type": "$vaconst", + "named": false + }, + { + "type": "$vacount", + "named": false + }, + { + "type": "$vaexpr", + "named": false + }, + { + "type": "$varef", + "named": false + }, + { + "type": "(", + "named": false + }, + { + "type": ")", + "named": false + }, + { + "type": ",", + "named": false + }, + { + "type": "assignment_expr", + "named": true + }, + { + "type": "at_ident", + "named": true + }, + { + "type": "binary_expr", + "named": true + }, + { + "type": "builtin", + "named": true + }, + { + "type": "bytes_expr", + "named": true + }, + { + "type": "call_expr", + "named": true + }, + { + "type": "cast_expr", + "named": true + }, + { + "type": "char_literal", + "named": true + }, + { + "type": "compound_stmt", + "named": true + }, + { + "type": "const_ident", + "named": true + }, + { + "type": "ct_ident", + "named": true + }, + { + "type": "elvis_orelse_expr", + "named": true + }, + { + "type": "expr_block", + "named": true + }, + { + "type": "false", + "named": false + }, + { + "type": "field_expr", + "named": true + }, + { + "type": "flat_path", + "named": true + }, + { + "type": "hash_ident", + "named": true + }, + { + "type": "ident", + "named": true + }, + { + "type": "initializer_list", + "named": true + }, + { + "type": "integer_literal", + "named": true + }, + { + "type": "lambda_declaration", + "named": true + }, + { + "type": "lambda_expr", + "named": true + }, + { + "type": "module_ident_expr", + "named": true + }, + { + "type": "null", + "named": false + }, + { + "type": "optional_expr", + "named": true + }, + { + "type": "paren_expr", + "named": true + }, + { + "type": "raw_string_literal", + "named": true + }, + { + "type": "real_literal", + "named": true + }, + { + "type": "rethrow_expr", + "named": true + }, + { + "type": "string_expr", + "named": true + }, + { + "type": "string_literal", + "named": true + }, + { + "type": "subscript_expr", + "named": true + }, + { + "type": "ternary_expr", + "named": true + }, + { + "type": "trailing_generic_expr", + "named": true + }, + { + "type": "true", + "named": false + }, + { + "type": "type", + "named": true + }, + { + "type": "type_access_expr", + "named": true + }, + { + "type": "unary_expr", + "named": true + }, + { + "type": "update_expr", + "named": true + } + ] + }, + "lambda_body": { + "multiple": true, + "required": false, + "types": [ + { + "type": "compound_stmt", + "named": true + } + ] + }, + "operator": { + "multiple": false, + "required": true, + "types": [ + { + "type": "?:", + "named": false + }, + { + "type": "??", + "named": false + } + ] + } + } + }, + { + "type": "enum_arg", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "arg", + "named": true + } + ] + } + }, + { + "type": "enum_body", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "enum_constant", + "named": true + } + ] + } + }, + { + "type": "enum_constant", + "named": true, + "fields": { + "args": { + "multiple": false, + "required": false, + "types": [ + { + "type": "enum_arg", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "const_ident", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "attributes", + "named": true + } + ] + } + }, + { + "type": "enum_declaration", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "enum_body", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type_ident", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "attributes", + "named": true + }, + { + "type": "enum_spec", + "named": true + }, + { + "type": "interface_impl", + "named": true + } + ] + } + }, + { + "type": "enum_param_declaration", + "named": true, + "fields": { + "type": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "ident", + "named": true + } + ] + } + }, + { + "type": "enum_param_list", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "enum_param_declaration", + "named": true + } + ] + } + }, + { + "type": "enum_spec", + "named": true, + "fields": { + "type": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "enum_param_list", + "named": true + } + ] + } + }, + { + "type": "expr_block", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "asm_block_stmt", + "named": true + }, + { + "type": "assert_stmt", + "named": true + }, + { + "type": "break_stmt", + "named": true + }, + { + "type": "compound_stmt", + "named": true + }, + { + "type": "continue_stmt", + "named": true + }, + { + "type": "ct_assert_stmt", + "named": true + }, + { + "type": "ct_echo_stmt", + "named": true + }, + { + "type": "ct_for_stmt", + "named": true + }, + { + "type": "ct_foreach_stmt", + "named": true + }, + { + "type": "ct_if_stmt", + "named": true + }, + { + "type": "ct_switch_stmt", + "named": true + }, + { + "type": "declaration_stmt", + "named": true + }, + { + "type": "defer_stmt", + "named": true + }, + { + "type": "do_stmt", + "named": true + }, + { + "type": "expr_stmt", + "named": true + }, + { + "type": "for_stmt", + "named": true + }, + { + "type": "foreach_stmt", + "named": true + }, + { + "type": "if_stmt", + "named": true + }, + { + "type": "nextcase_stmt", + "named": true + }, + { + "type": "return_stmt", + "named": true + }, + { + "type": "switch_stmt", + "named": true + }, + { + "type": "var_stmt", + "named": true + }, + { + "type": "while_stmt", + "named": true + } + ] + } + }, + { + "type": "expr_stmt", + "named": true, + "fields": { + "lambda_body": { + "multiple": true, + "required": false, + "types": [ + { + "type": "compound_stmt", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "assignment_expr", + "named": true + }, + { + "type": "at_ident", + "named": true + }, + { + "type": "binary_expr", + "named": true + }, + { + "type": "builtin", + "named": true + }, + { + "type": "bytes_expr", + "named": true + }, + { + "type": "call_expr", + "named": true + }, + { + "type": "cast_expr", + "named": true + }, + { + "type": "char_literal", + "named": true + }, + { + "type": "const_ident", + "named": true + }, + { + "type": "ct_ident", + "named": true + }, + { + "type": "elvis_orelse_expr", + "named": true + }, + { + "type": "expr_block", + "named": true + }, + { + "type": "field_expr", + "named": true + }, + { + "type": "flat_path", + "named": true + }, + { + "type": "hash_ident", + "named": true + }, + { + "type": "ident", + "named": true + }, + { + "type": "initializer_list", + "named": true + }, + { + "type": "integer_literal", + "named": true + }, + { + "type": "lambda_declaration", + "named": true + }, { "type": "lambda_expr", "named": true @@ -6646,6 +7468,10 @@ "type": "module_ident_expr", "named": true }, + { + "type": "optional_expr", + "named": true + }, { "type": "paren_expr", "named": true @@ -6674,10 +7500,6 @@ "type": "subscript_expr", "named": true }, - { - "type": "suffix_expr", - "named": true - }, { "type": "ternary_expr", "named": true @@ -6706,7 +7528,7 @@ } }, { - "type": "enum_arg", + "type": "fault_body", "named": true, "fields": {}, "children": { @@ -6714,279 +7536,342 @@ "required": true, "types": [ { - "type": "arg", + "type": "const_ident", "named": true } ] } }, { - "type": "enum_body", + "type": "fault_declaration", "named": true, - "fields": {}, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "fault_body", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type_ident", + "named": true + } + ] + } + }, "children": { "multiple": true, - "required": true, + "required": false, "types": [ { - "type": "enum_constant", + "type": "attributes", + "named": true + }, + { + "type": "interface_impl", "named": true } ] } }, { - "type": "enum_constant", + "type": "field_expr", "named": true, "fields": { - "args": { - "multiple": false, - "required": false, + "argument": { + "multiple": true, + "required": true, "types": [ { - "type": "enum_arg", + "type": "$alignof", + "named": false + }, + { + "type": "$and", + "named": false + }, + { + "type": "$append", + "named": false + }, + { + "type": "$assignable", + "named": false + }, + { + "type": "$concat", + "named": false + }, + { + "type": "$defined", + "named": false + }, + { + "type": "$embed", + "named": false + }, + { + "type": "$eval", + "named": false + }, + { + "type": "$extnameof", + "named": false + }, + { + "type": "$feature", + "named": false + }, + { + "type": "$is_const", + "named": false + }, + { + "type": "$nameof", + "named": false + }, + { + "type": "$offsetof", + "named": false + }, + { + "type": "$or", + "named": false + }, + { + "type": "$qnameof", + "named": false + }, + { + "type": "$sizeof", + "named": false + }, + { + "type": "$stringify", + "named": false + }, + { + "type": "$vaarg", + "named": false + }, + { + "type": "$vaconst", + "named": false + }, + { + "type": "$vacount", + "named": false + }, + { + "type": "$vaexpr", + "named": false + }, + { + "type": "$varef", + "named": false + }, + { + "type": "(", + "named": false + }, + { + "type": ")", + "named": false + }, + { + "type": ",", + "named": false + }, + { + "type": "assignment_expr", + "named": true + }, + { + "type": "at_ident", + "named": true + }, + { + "type": "binary_expr", + "named": true + }, + { + "type": "builtin", + "named": true + }, + { + "type": "bytes_expr", + "named": true + }, + { + "type": "call_expr", + "named": true + }, + { + "type": "cast_expr", + "named": true + }, + { + "type": "char_literal", + "named": true + }, + { + "type": "compound_stmt", + "named": true + }, + { + "type": "const_ident", + "named": true + }, + { + "type": "ct_ident", + "named": true + }, + { + "type": "elvis_orelse_expr", + "named": true + }, + { + "type": "expr_block", + "named": true + }, + { + "type": "false", + "named": false + }, + { + "type": "field_expr", + "named": true + }, + { + "type": "flat_path", + "named": true + }, + { + "type": "hash_ident", + "named": true + }, + { + "type": "ident", + "named": true + }, + { + "type": "initializer_list", + "named": true + }, + { + "type": "integer_literal", + "named": true + }, + { + "type": "lambda_declaration", + "named": true + }, + { + "type": "lambda_expr", + "named": true + }, + { + "type": "module_ident_expr", + "named": true + }, + { + "type": "null", + "named": false + }, + { + "type": "optional_expr", "named": true - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ + }, { - "type": "const_ident", + "type": "paren_expr", "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "attributes", - "named": true - } - ] - } - }, - { - "type": "enum_declaration", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": true, - "types": [ + }, { - "type": "enum_body", + "type": "raw_string_literal", "named": true - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ + }, { - "type": "type_ident", + "type": "real_literal", "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "attributes", - "named": true - }, - { - "type": "enum_spec", - "named": true - }, - { - "type": "interface_impl", - "named": true - } - ] - } - }, - { - "type": "enum_param_declaration", - "named": true, - "fields": { - "type": { - "multiple": false, - "required": true, - "types": [ + }, { - "type": "type", + "type": "rethrow_expr", "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "ident", - "named": true - } - ] - } - }, - { - "type": "enum_param_list", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "enum_param_declaration", - "named": true - } - ] - } - }, - { - "type": "enum_spec", - "named": true, - "fields": { - "type": { - "multiple": false, - "required": false, - "types": [ + }, { - "type": "type", + "type": "string_expr", "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "enum_param_list", - "named": true - } - ] - } - }, - { - "type": "expr_block", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "asm_block_stmt", - "named": true - }, - { - "type": "assert_stmt", - "named": true - }, - { - "type": "break_stmt", - "named": true - }, - { - "type": "compound_stmt", - "named": true - }, - { - "type": "continue_stmt", - "named": true - }, - { - "type": "ct_assert_stmt", - "named": true - }, - { - "type": "ct_echo_stmt", - "named": true - }, - { - "type": "ct_for_stmt", - "named": true - }, - { - "type": "ct_foreach_stmt", - "named": true - }, - { - "type": "ct_if_stmt", - "named": true - }, - { - "type": "ct_switch_stmt", - "named": true - }, - { - "type": "declaration_stmt", - "named": true - }, - { - "type": "defer_stmt", - "named": true - }, - { - "type": "do_stmt", - "named": true - }, - { - "type": "expr_stmt", - "named": true - }, - { - "type": "for_stmt", - "named": true - }, - { - "type": "foreach_stmt", - "named": true - }, - { - "type": "if_stmt", - "named": true - }, - { - "type": "nextcase_stmt", - "named": true - }, - { - "type": "return_stmt", - "named": true - }, - { - "type": "switch_stmt", - "named": true - }, - { - "type": "var_stmt", - "named": true - }, - { - "type": "while_stmt", - "named": true - } - ] + }, + { + "type": "string_literal", + "named": true + }, + { + "type": "subscript_expr", + "named": true + }, + { + "type": "ternary_expr", + "named": true + }, + { + "type": "trailing_generic_expr", + "named": true + }, + { + "type": "true", + "named": false + }, + { + "type": "type", + "named": true + }, + { + "type": "type_access_expr", + "named": true + }, + { + "type": "unary_expr", + "named": true + }, + { + "type": "update_expr", + "named": true + } + ] + }, + "field": { + "multiple": false, + "required": true, + "types": [ + { + "type": "access_ident", + "named": true + } + ] + }, + "lambda_body": { + "multiple": true, + "required": false, + "types": [ + { + "type": "compound_stmt", + "named": true + } + ] + } } }, { - "type": "expr_stmt", + "type": "flat_path", "named": true, "fields": { "lambda_body": { @@ -7088,6 +7973,14 @@ "type": "module_ident_expr", "named": true }, + { + "type": "optional_expr", + "named": true + }, + { + "type": "param_path", + "named": true + }, { "type": "paren_expr", "named": true @@ -7116,10 +8009,6 @@ "type": "subscript_expr", "named": true }, - { - "type": "suffix_expr", - "named": true - }, { "type": "ternary_expr", "named": true @@ -7148,67 +8037,27 @@ } }, { - "type": "fault_body", + "type": "fn_parameter_list", "named": true, "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "const_ident", - "named": true - } - ] - } - }, - { - "type": "fault_declaration", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": true, - "types": [ - { - "type": "fault_body", - "named": true - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "type_ident", - "named": true - } - ] - } - }, "children": { "multiple": true, "required": false, "types": [ { - "type": "attributes", - "named": true - }, - { - "type": "interface_impl", + "type": "parameter", "named": true } ] } }, { - "type": "field_expr", + "type": "for_cond", "named": true, "fields": { - "argument": { + "condition": { "multiple": true, - "required": true, + "required": false, "types": [ { "type": "$alignof", @@ -7298,6 +8147,10 @@ "type": "$varef", "named": false }, + { + "type": "&&", + "named": false + }, { "type": "(", "named": false @@ -7310,6 +8163,10 @@ "type": ",", "named": false }, + { + "type": "=>", + "named": false + }, { "type": "assignment_expr", "named": true @@ -7338,6 +8195,10 @@ "type": "cast_expr", "named": true }, + { + "type": "catch_unwrap", + "named": true + }, { "type": "char_literal", "named": true @@ -7398,6 +8259,10 @@ "type": "lambda_expr", "named": true }, + { + "type": "local_decl_after_type", + "named": true + }, { "type": "module_ident_expr", "named": true @@ -7406,6 +8271,10 @@ "type": "null", "named": false }, + { + "type": "optional_expr", + "named": true + }, { "type": "paren_expr", "named": true @@ -7435,71 +8304,177 @@ "named": true }, { - "type": "suffix_expr", + "type": "ternary_expr", + "named": true + }, + { + "type": "trailing_generic_expr", + "named": true + }, + { + "type": "true", + "named": false + }, + { + "type": "try_unwrap", + "named": true + }, + { + "type": "type", + "named": true + }, + { + "type": "type_access_expr", + "named": true + }, + { + "type": "unary_expr", + "named": true + }, + { + "type": "update_expr", + "named": true + }, + { + "type": "var_decl", + "named": true + } + ] + }, + "initializer": { + "multiple": false, + "required": false, + "types": [ + { + "type": "comma_decl_or_expr", + "named": true + } + ] + }, + "lambda_body": { + "multiple": true, + "required": false, + "types": [ + { + "type": "compound_stmt", + "named": true + } + ] + }, + "update": { + "multiple": false, + "required": false, + "types": [ + { + "type": "comma_decl_or_expr", + "named": true + } + ] + } + } + }, + { + "type": "for_stmt", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": ";", + "named": false + }, + { + "type": "asm_block_stmt", + "named": true + }, + { + "type": "assert_stmt", + "named": true + }, + { + "type": "break_stmt", + "named": true + }, + { + "type": "compound_stmt", + "named": true + }, + { + "type": "continue_stmt", + "named": true + }, + { + "type": "ct_assert_stmt", + "named": true + }, + { + "type": "ct_echo_stmt", + "named": true + }, + { + "type": "ct_for_stmt", + "named": true + }, + { + "type": "ct_foreach_stmt", + "named": true + }, + { + "type": "ct_if_stmt", + "named": true + }, + { + "type": "ct_switch_stmt", + "named": true + }, + { + "type": "declaration_stmt", + "named": true + }, + { + "type": "defer_stmt", "named": true }, { - "type": "ternary_expr", + "type": "do_stmt", "named": true }, { - "type": "trailing_generic_expr", + "type": "expr_stmt", "named": true }, { - "type": "true", - "named": false + "type": "for_stmt", + "named": true }, { - "type": "type", + "type": "foreach_stmt", "named": true }, { - "type": "type_access_expr", + "type": "if_stmt", "named": true }, { - "type": "unary_expr", + "type": "nextcase_stmt", "named": true }, { - "type": "update_expr", + "type": "return_stmt", "named": true - } - ] - }, - "field": { - "multiple": false, - "required": true, - "types": [ + }, { - "type": "access_ident", + "type": "switch_stmt", "named": true - } - ] - }, - "lambda_body": { - "multiple": true, - "required": false, - "types": [ + }, { - "type": "compound_stmt", + "type": "var_stmt", "named": true - } - ] - } - } - }, - { - "type": "flat_path", - "named": true, - "fields": { - "lambda_body": { - "multiple": true, - "required": false, - "types": [ + }, { - "type": "compound_stmt", + "type": "while_stmt", "named": true } ] @@ -7507,182 +8482,27 @@ }, "children": { "multiple": true, - "required": false, + "required": true, "types": [ { - "type": "assignment_expr", - "named": true - }, - { - "type": "at_ident", - "named": true - }, - { - "type": "binary_expr", - "named": true - }, - { - "type": "builtin", - "named": true - }, - { - "type": "bytes_expr", - "named": true - }, - { - "type": "call_expr", - "named": true - }, - { - "type": "cast_expr", - "named": true - }, - { - "type": "char_literal", - "named": true - }, - { - "type": "const_ident", - "named": true - }, - { - "type": "ct_ident", - "named": true - }, - { - "type": "elvis_orelse_expr", - "named": true - }, - { - "type": "expr_block", - "named": true - }, - { - "type": "field_expr", - "named": true - }, - { - "type": "flat_path", - "named": true - }, - { - "type": "hash_ident", - "named": true - }, - { - "type": "ident", - "named": true - }, - { - "type": "initializer_list", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "lambda_declaration", - "named": true - }, - { - "type": "lambda_expr", - "named": true - }, - { - "type": "module_ident_expr", - "named": true - }, - { - "type": "param_path", - "named": true - }, - { - "type": "paren_expr", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "rethrow_expr", - "named": true - }, - { - "type": "string_expr", - "named": true - }, - { - "type": "string_literal", - "named": true - }, - { - "type": "subscript_expr", - "named": true - }, - { - "type": "suffix_expr", - "named": true - }, - { - "type": "ternary_expr", - "named": true - }, - { - "type": "trailing_generic_expr", - "named": true - }, - { - "type": "type", - "named": true - }, - { - "type": "type_access_expr", - "named": true - }, - { - "type": "unary_expr", + "type": "for_cond", "named": true }, { - "type": "update_expr", - "named": true - } - ] - } - }, - { - "type": "fn_parameter_list", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "parameter", + "type": "label", "named": true } ] } }, { - "type": "for_cond", + "type": "foreach_cond", "named": true, "fields": { - "condition": { + "collection": { "multiple": true, - "required": false, + "required": true, "types": [ - { - "type": "!", - "named": false - }, { "type": "$alignof", "named": false @@ -7771,10 +8591,6 @@ "type": "$varef", "named": false }, - { - "type": "&&", - "named": false - }, { "type": "(", "named": false @@ -7787,10 +8603,6 @@ "type": ",", "named": false }, - { - "type": "=>", - "named": false - }, { "type": "assignment_expr", "named": true @@ -7819,10 +8631,6 @@ "type": "cast_expr", "named": true }, - { - "type": "catch_unwrap", - "named": true - }, { "type": "char_literal", "named": true @@ -7883,10 +8691,6 @@ "type": "lambda_expr", "named": true }, - { - "type": "local_decl_after_type", - "named": true - }, { "type": "module_ident_expr", "named": true @@ -7895,6 +8699,10 @@ "type": "null", "named": false }, + { + "type": "optional_expr", + "named": true + }, { "type": "paren_expr", "named": true @@ -7923,10 +8731,6 @@ "type": "subscript_expr", "named": true }, - { - "type": "suffix_expr", - "named": true - }, { "type": "ternary_expr", "named": true @@ -7939,10 +8743,6 @@ "type": "true", "named": false }, - { - "type": "try_unwrap", - "named": true - }, { "type": "type", "named": true @@ -7958,19 +8758,15 @@ { "type": "update_expr", "named": true - }, - { - "type": "var_decl", - "named": true } ] }, - "initializer": { + "index": { "multiple": false, "required": false, "types": [ { - "type": "comma_decl_or_expr", + "type": "foreach_var", "named": true } ] @@ -7985,12 +8781,12 @@ } ] }, - "update": { + "value": { "multiple": false, - "required": false, + "required": true, "types": [ { - "type": "comma_decl_or_expr", + "type": "foreach_var", "named": true } ] @@ -7998,7 +8794,7 @@ } }, { - "type": "for_stmt", + "type": "foreach_stmt", "named": true, "fields": { "body": { @@ -8109,23 +8905,363 @@ "required": true, "types": [ { - "type": "for_cond", + "type": "foreach_cond", + "named": true + }, + { + "type": "label", + "named": true + } + ] + } + }, + { + "type": "foreach_var", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "ident", + "named": true + }, + { + "type": "type", + "named": true + } + ] + } + }, + { + "type": "func_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "attributes", + "named": true + }, + { + "type": "fn_parameter_list", + "named": true + }, + { + "type": "func_header", + "named": true + } + ] + } + }, + { + "type": "func_definition", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "macro_func_body", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "attributes", + "named": true + }, + { + "type": "fn_parameter_list", + "named": true + }, + { + "type": "func_header", + "named": true + } + ] + } + }, + { + "type": "func_header", + "named": true, + "fields": { + "method_type": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "at_ident", + "named": true + }, + { + "type": "ident", + "named": true + } + ] + }, + "return_type": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type", + "named": true + } + ] + } + } + }, + { + "type": "func_typedef", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "fn_parameter_list", + "named": true + }, + { + "type": "type", + "named": true + } + ] + } + }, + { + "type": "generic_arguments", + "named": true, + "fields": { + "lambda_body": { + "multiple": true, + "required": false, + "types": [ + { + "type": "compound_stmt", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "assignment_expr", + "named": true + }, + { + "type": "at_ident", + "named": true + }, + { + "type": "binary_expr", + "named": true + }, + { + "type": "builtin", + "named": true + }, + { + "type": "bytes_expr", + "named": true + }, + { + "type": "call_expr", + "named": true + }, + { + "type": "cast_expr", + "named": true + }, + { + "type": "char_literal", + "named": true + }, + { + "type": "const_ident", + "named": true + }, + { + "type": "ct_ident", + "named": true + }, + { + "type": "elvis_orelse_expr", + "named": true + }, + { + "type": "expr_block", + "named": true + }, + { + "type": "field_expr", + "named": true + }, + { + "type": "flat_path", + "named": true + }, + { + "type": "hash_ident", + "named": true + }, + { + "type": "ident", + "named": true + }, + { + "type": "initializer_list", + "named": true + }, + { + "type": "integer_literal", + "named": true + }, + { + "type": "lambda_declaration", + "named": true + }, + { + "type": "lambda_expr", + "named": true + }, + { + "type": "module_ident_expr", + "named": true + }, + { + "type": "optional_expr", + "named": true + }, + { + "type": "paren_expr", + "named": true + }, + { + "type": "raw_string_literal", + "named": true + }, + { + "type": "real_literal", + "named": true + }, + { + "type": "rethrow_expr", + "named": true + }, + { + "type": "string_expr", + "named": true + }, + { + "type": "string_literal", + "named": true + }, + { + "type": "subscript_expr", + "named": true + }, + { + "type": "ternary_expr", + "named": true + }, + { + "type": "trailing_generic_expr", + "named": true + }, + { + "type": "type", + "named": true + }, + { + "type": "type_access_expr", + "named": true + }, + { + "type": "unary_expr", + "named": true + }, + { + "type": "update_expr", + "named": true + } + ] + } + }, + { + "type": "generic_parameters", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "const_ident", "named": true }, { - "type": "label", + "type": "type_ident", "named": true } ] } }, { - "type": "foreach_cond", + "type": "global_declaration", "named": true, "fields": { - "collection": { + "lambda_body": { + "multiple": true, + "required": false, + "types": [ + { + "type": "compound_stmt", + "named": true + } + ] + }, + "name": { "multiple": true, "required": true, + "types": [ + { + "type": ",", + "named": false + }, + { + "type": "ident", + "named": true + } + ] + }, + "right": { + "multiple": true, + "required": false, "types": [ { "type": "$alignof", @@ -8323,6 +9459,10 @@ "type": "null", "named": false }, + { + "type": "optional_expr", + "named": true + }, { "type": "paren_expr", "named": true @@ -8351,10 +9491,6 @@ "type": "subscript_expr", "named": true }, - { - "type": "suffix_expr", - "named": true - }, { "type": "ternary_expr", "named": true @@ -8385,40 +9521,54 @@ } ] }, - "index": { + "type": { "multiple": false, "required": false, "types": [ { - "type": "foreach_var", - "named": true - } - ] - }, - "lambda_body": { - "multiple": true, - "required": false, - "types": [ - { - "type": "compound_stmt", - "named": true - } - ] - }, - "value": { - "multiple": false, - "required": true, - "types": [ - { - "type": "foreach_var", + "type": "type", "named": true } ] } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "attributes", + "named": true + }, + { + "type": "global_storage", + "named": true + } + ] } }, { - "type": "foreach_stmt", + "type": "global_storage", + "named": true, + "fields": {} + }, + { + "type": "identifier_list", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "ident", + "named": true + } + ] + } + }, + { + "type": "if_stmt", "named": true, "fields": { "body": { @@ -8495,199 +9645,44 @@ }, { "type": "foreach_stmt", - "named": true - }, - { - "type": "if_stmt", - "named": true - }, - { - "type": "nextcase_stmt", - "named": true - }, - { - "type": "return_stmt", - "named": true - }, - { - "type": "switch_stmt", - "named": true - }, - { - "type": "var_stmt", - "named": true - }, - { - "type": "while_stmt", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "foreach_cond", - "named": true - }, - { - "type": "label", - "named": true - } - ] - } - }, - { - "type": "foreach_var", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "ident", - "named": true - }, - { - "type": "type", - "named": true - } - ] - } - }, - { - "type": "func_declaration", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "attributes", - "named": true - }, - { - "type": "fn_parameter_list", - "named": true - }, - { - "type": "func_header", - "named": true - } - ] - } - }, - { - "type": "func_definition", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": true, - "types": [ + "named": true + }, { - "type": "macro_func_body", + "type": "if_stmt", "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "attributes", - "named": true - }, - { - "type": "fn_parameter_list", - "named": true - }, - { - "type": "func_header", - "named": true - } - ] - } - }, - { - "type": "func_header", - "named": true, - "fields": { - "method_type": { - "multiple": false, - "required": false, - "types": [ + }, { - "type": "type", + "type": "nextcase_stmt", "named": true - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ + }, { - "type": "at_ident", + "type": "return_stmt", "named": true }, { - "type": "ident", + "type": "switch_body", "named": true - } - ] - }, - "return_type": { - "multiple": true, - "required": true, - "types": [ + }, { - "type": "!", - "named": false + "type": "switch_stmt", + "named": true }, { - "type": "type", + "type": "var_stmt", + "named": true + }, + { + "type": "while_stmt", "named": true } ] - } - } - }, - { - "type": "func_typedef", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "fn_parameter_list", - "named": true - }, - { - "type": "type", - "named": true - } - ] - } - }, - { - "type": "generic_arguments", - "named": true, - "fields": { - "lambda_body": { - "multiple": true, - "required": false, + }, + "condition": { + "multiple": false, + "required": true, "types": [ { - "type": "compound_stmt", + "type": "paren_cond", "named": true } ] @@ -8698,198 +9693,23 @@ "required": false, "types": [ { - "type": "assignment_expr", - "named": true - }, - { - "type": "at_ident", - "named": true - }, - { - "type": "binary_expr", - "named": true - }, - { - "type": "builtin", - "named": true - }, - { - "type": "bytes_expr", - "named": true - }, - { - "type": "call_expr", - "named": true - }, - { - "type": "cast_expr", - "named": true - }, - { - "type": "char_literal", - "named": true - }, - { - "type": "const_ident", - "named": true - }, - { - "type": "ct_ident", - "named": true - }, - { - "type": "elvis_orelse_expr", - "named": true - }, - { - "type": "expr_block", - "named": true - }, - { - "type": "field_expr", - "named": true - }, - { - "type": "flat_path", - "named": true - }, - { - "type": "hash_ident", - "named": true - }, - { - "type": "ident", - "named": true - }, - { - "type": "initializer_list", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "lambda_declaration", - "named": true - }, - { - "type": "lambda_expr", - "named": true - }, - { - "type": "module_ident_expr", - "named": true - }, - { - "type": "paren_expr", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "rethrow_expr", - "named": true - }, - { - "type": "string_expr", - "named": true - }, - { - "type": "string_literal", - "named": true - }, - { - "type": "subscript_expr", - "named": true - }, - { - "type": "suffix_expr", - "named": true - }, - { - "type": "ternary_expr", - "named": true - }, - { - "type": "trailing_generic_expr", - "named": true - }, - { - "type": "type", - "named": true - }, - { - "type": "type_access_expr", - "named": true - }, - { - "type": "unary_expr", - "named": true - }, - { - "type": "update_expr", - "named": true - } - ] - } - }, - { - "type": "generic_parameters", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "const_ident", + "type": "else_part", "named": true }, { - "type": "type_ident", + "type": "label", "named": true } ] } }, { - "type": "global_declaration", + "type": "implies_body", "named": true, "fields": { - "lambda_body": { - "multiple": true, - "required": false, - "types": [ - { - "type": "compound_stmt", - "named": true - } - ] - }, - "name": { + "body": { "multiple": true, "required": true, - "types": [ - { - "type": ",", - "named": false - }, - { - "type": "ident", - "named": true - } - ] - }, - "right": { - "multiple": true, - "required": false, "types": [ { "type": "$alignof", @@ -9087,6 +9907,10 @@ "type": "null", "named": false }, + { + "type": "optional_expr", + "named": true + }, { "type": "paren_expr", "named": true @@ -9115,10 +9939,6 @@ "type": "subscript_expr", "named": true }, - { - "type": "suffix_expr", - "named": true - }, { "type": "ternary_expr", "named": true @@ -9149,58 +9969,99 @@ } ] }, - "type": { + "lambda_body": { "multiple": true, "required": false, "types": [ { - "type": "!", + "type": "compound_stmt", + "named": true + } + ] + } + } + }, + { + "type": "import_declaration", + "named": true, + "fields": { + "path": { + "multiple": true, + "required": true, + "types": [ + { + "type": ",", "named": false }, { - "type": "type", + "type": "path_ident", "named": true } ] } }, "children": { - "multiple": true, + "multiple": false, "required": false, "types": [ { "type": "attributes", "named": true - }, + } + ] + } + }, + { + "type": "initializer_list", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ { - "type": "global_storage", + "type": "arg", "named": true } ] } }, { - "type": "global_storage", + "type": "interface", "named": true, - "fields": {} + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "generic_arguments", + "named": true + }, + { + "type": "path_type_ident", + "named": true + } + ] + } }, { - "type": "identifier_list", + "type": "interface_body", "named": true, "fields": {}, "children": { "multiple": true, - "required": true, + "required": false, "types": [ { - "type": "ident", + "type": "func_declaration", "named": true } ] } }, { - "type": "if_stmt", + "type": "interface_declaration", "named": true, "fields": { "body": { @@ -9208,113 +10069,78 @@ "required": true, "types": [ { - "type": ";", - "named": false - }, - { - "type": "asm_block_stmt", - "named": true - }, - { - "type": "assert_stmt", - "named": true - }, - { - "type": "break_stmt", - "named": true - }, - { - "type": "compound_stmt", - "named": true - }, - { - "type": "continue_stmt", - "named": true - }, - { - "type": "ct_assert_stmt", - "named": true - }, - { - "type": "ct_echo_stmt", - "named": true - }, - { - "type": "ct_for_stmt", - "named": true - }, - { - "type": "ct_foreach_stmt", - "named": true - }, - { - "type": "ct_if_stmt", - "named": true - }, - { - "type": "ct_switch_stmt", - "named": true - }, - { - "type": "declaration_stmt", - "named": true - }, - { - "type": "defer_stmt", - "named": true - }, - { - "type": "do_stmt", - "named": true - }, - { - "type": "expr_stmt", - "named": true - }, - { - "type": "for_stmt", - "named": true - }, - { - "type": "foreach_stmt", - "named": true - }, - { - "type": "if_stmt", - "named": true - }, - { - "type": "nextcase_stmt", - "named": true - }, - { - "type": "return_stmt", - "named": true - }, - { - "type": "switch_body", - "named": true - }, - { - "type": "switch_stmt", - "named": true - }, - { - "type": "var_stmt", + "type": "interface_body", "named": true - }, + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ { - "type": "while_stmt", + "type": "type_ident", "named": true } ] - }, - "condition": { + } + } + }, + { + "type": "interface_impl", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "interface", + "named": true + } + ] + } + }, + { + "type": "label", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "const_ident", + "named": true + } + ] + } + }, + { + "type": "label_target", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "const_ident", + "named": true + } + ] + } + }, + { + "type": "lambda_declaration", + "named": true, + "fields": { + "return_type": { "multiple": false, - "required": true, + "required": false, "types": [ { - "type": "paren_cond", + "type": "type", "named": true } ] @@ -9322,26 +10148,74 @@ }, "children": { "multiple": true, - "required": false, + "required": true, "types": [ { - "type": "else_part", + "type": "attributes", "named": true }, { - "type": "label", + "type": "fn_parameter_list", "named": true } ] } }, { - "type": "implies_body", + "type": "lambda_expr", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "implies_body", + "named": true + }, + { + "type": "lambda_declaration", + "named": true + } + ] + } + }, + { + "type": "line_comment", + "named": true, + "fields": {} + }, + { + "type": "local_decl_after_type", "named": true, "fields": { - "body": { + "lambda_body": { "multiple": true, + "required": false, + "types": [ + { + "type": "compound_stmt", + "named": true + } + ] + }, + "name": { + "multiple": false, "required": true, + "types": [ + { + "type": "ct_ident", + "named": true + }, + { + "type": "ident", + "named": true + } + ] + }, + "right": { + "multiple": true, + "required": false, "types": [ { "type": "$alignof", @@ -9539,6 +10413,10 @@ "type": "null", "named": false }, + { + "type": "optional_expr", + "named": true + }, { "type": "paren_expr", "named": true @@ -9567,10 +10445,6 @@ "type": "subscript_expr", "named": true }, - { - "type": "suffix_expr", - "named": true - }, { "type": "ternary_expr", "named": true @@ -9600,36 +10474,6 @@ "named": true } ] - }, - "lambda_body": { - "multiple": true, - "required": false, - "types": [ - { - "type": "compound_stmt", - "named": true - } - ] - } - } - }, - { - "type": "import_declaration", - "named": true, - "fields": { - "path": { - "multiple": true, - "required": true, - "types": [ - { - "type": ",", - "named": false - }, - { - "type": "path_ident", - "named": true - } - ] } }, "children": { @@ -9644,64 +10488,73 @@ } }, { - "type": "initializer_list", + "type": "local_decl_storage", "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "arg", - "named": true - } - ] - } + "fields": {} }, { - "type": "interface", + "type": "macro_declaration", "named": true, - "fields": {}, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "macro_func_body", + "named": true + } + ] + } + }, "children": { "multiple": true, "required": true, "types": [ { - "type": "generic_arguments", + "type": "attributes", "named": true }, { - "type": "path_type_ident", + "type": "macro_header", + "named": true + }, + { + "type": "macro_parameter_list", "named": true } ] } }, { - "type": "interface_body", + "type": "macro_func_body", "named": true, "fields": {}, "children": { - "multiple": true, - "required": false, + "multiple": false, + "required": true, "types": [ { - "type": "func_declaration", + "type": "compound_stmt", + "named": true + }, + { + "type": "implies_body", "named": true } ] } }, { - "type": "interface_declaration", + "type": "macro_header", "named": true, "fields": { - "body": { + "method_type": { "multiple": false, - "required": true, + "required": false, "types": [ { - "type": "interface_body", + "type": "type", "named": true } ] @@ -9711,7 +10564,21 @@ "required": true, "types": [ { - "type": "type_ident", + "type": "at_ident", + "named": true + }, + { + "type": "ident", + "named": true + } + ] + }, + "return_type": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type", "named": true } ] @@ -9719,7 +10586,7 @@ } }, { - "type": "interface_impl", + "type": "macro_parameter_list", "named": true, "fields": {}, "children": { @@ -9727,56 +10594,64 @@ "required": false, "types": [ { - "type": "interface", + "type": "parameter", "named": true - } - ] - } - }, - { - "type": "label", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ + }, { - "type": "const_ident", + "type": "trailing_block_param", "named": true } ] } }, { - "type": "label_target", + "type": "module", "named": true, - "fields": {}, + "fields": { + "path": { + "multiple": false, + "required": true, + "types": [ + { + "type": "path_ident", + "named": true + } + ] + } + }, "children": { - "multiple": false, - "required": true, + "multiple": true, + "required": false, "types": [ { - "type": "const_ident", + "type": "attributes", + "named": true + }, + { + "type": "generic_parameters", "named": true } ] } }, { - "type": "lambda_declaration", + "type": "module_ident_expr", "named": true, "fields": { - "return_type": { - "multiple": true, - "required": false, + "ident": { + "multiple": false, + "required": true, "types": [ { - "type": "!", - "named": false + "type": "at_ident", + "named": true }, { - "type": "type", + "type": "const_ident", + "named": true + }, + { + "type": "ident", "named": true } ] @@ -9787,18 +10662,29 @@ "required": true, "types": [ { - "type": "attributes", + "type": "module_resolution", "named": true - }, + } + ] + } + }, + { + "type": "module_resolution", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ { - "type": "fn_parameter_list", + "type": "ident", "named": true } ] } }, { - "type": "lambda_expr", + "type": "module_type_ident", "named": true, "fields": {}, "children": { @@ -9806,23 +10692,18 @@ "required": true, "types": [ { - "type": "implies_body", + "type": "module_resolution", "named": true }, { - "type": "lambda_declaration", + "type": "type_ident", "named": true } ] } }, { - "type": "line_comment", - "named": true, - "fields": {} - }, - { - "type": "local_decl_after_type", + "type": "nextcase_stmt", "named": true, "fields": { "lambda_body": { @@ -9835,21 +10716,7 @@ } ] }, - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "ct_ident", - "named": true - }, - { - "type": "ident", - "named": true - } - ] - }, - "right": { + "target": { "multiple": true, "required": false, "types": [ @@ -9997,6 +10864,10 @@ "type": "ct_ident", "named": true }, + { + "type": "default", + "named": false + }, { "type": "elvis_orelse_expr", "named": true @@ -10049,6 +10920,10 @@ "type": "null", "named": false }, + { + "type": "optional_expr", + "named": true + }, { "type": "paren_expr", "named": true @@ -10077,10 +10952,6 @@ "type": "subscript_expr", "named": true }, - { - "type": "suffix_expr", - "named": true - }, { "type": "ternary_expr", "named": true @@ -10115,255 +10986,22 @@ "children": { "multiple": false, "required": false, - "types": [ - { - "type": "attributes", - "named": true - } - ] - } - }, - { - "type": "local_decl_storage", - "named": true, - "fields": {} - }, - { - "type": "macro_declaration", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": true, - "types": [ - { - "type": "macro_func_body", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "attributes", - "named": true - }, - { - "type": "macro_header", - "named": true - }, - { - "type": "macro_parameter_list", - "named": true - } - ] - } - }, - { - "type": "macro_func_body", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "compound_stmt", - "named": true - }, - { - "type": "implies_body", - "named": true - } - ] - } - }, - { - "type": "macro_header", - "named": true, - "fields": { - "method_type": { - "multiple": false, - "required": false, - "types": [ - { - "type": "type", - "named": true - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "at_ident", - "named": true - }, - { - "type": "ident", - "named": true - } - ] - }, - "return_type": { - "multiple": true, - "required": false, - "types": [ - { - "type": "!", - "named": false - }, - { - "type": "type", - "named": true - } - ] - } - } - }, - { - "type": "macro_parameter_list", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "parameter", - "named": true - }, - { - "type": "trailing_block_param", - "named": true - } - ] - } - }, - { - "type": "module", - "named": true, - "fields": { - "path": { - "multiple": false, - "required": true, - "types": [ - { - "type": "path_ident", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "attributes", - "named": true - }, - { - "type": "generic_parameters", - "named": true - } - ] - } - }, - { - "type": "module_ident_expr", - "named": true, - "fields": { - "ident": { - "multiple": false, - "required": true, - "types": [ - { - "type": "at_ident", - "named": true - }, - { - "type": "const_ident", - "named": true - }, - { - "type": "ident", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "module_resolution", - "named": true - } - ] - } - }, - { - "type": "module_resolution", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "ident", - "named": true - } - ] - } - }, - { - "type": "module_type_ident", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "module_resolution", - "named": true - }, + "types": [ { - "type": "type_ident", + "type": "label_target", "named": true } ] } }, { - "type": "nextcase_stmt", + "type": "optional_expr", "named": true, "fields": { - "lambda_body": { - "multiple": true, - "required": false, - "types": [ - { - "type": "compound_stmt", - "named": true - } - ] - }, - "target": { + "argument": { "multiple": true, - "required": false, + "required": true, "types": [ - { - "type": "!", - "named": false - }, { "type": "$alignof", "named": false @@ -10508,10 +11146,6 @@ "type": "ct_ident", "named": true }, - { - "type": "default", - "named": false - }, { "type": "elvis_orelse_expr", "named": true @@ -10564,6 +11198,10 @@ "type": "null", "named": false }, + { + "type": "optional_expr", + "named": true + }, { "type": "paren_expr", "named": true @@ -10592,10 +11230,6 @@ "type": "subscript_expr", "named": true }, - { - "type": "suffix_expr", - "named": true - }, { "type": "ternary_expr", "named": true @@ -10625,17 +11259,31 @@ "named": true } ] + }, + "lambda_body": { + "multiple": true, + "required": false, + "types": [ + { + "type": "compound_stmt", + "named": true + } + ] + }, + "operator": { + "multiple": true, + "required": true, + "types": [ + { + "type": "!", + "named": false + }, + { + "type": "?", + "named": false + } + ] } - }, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "label_target", - "named": true - } - ] } }, { @@ -10756,6 +11404,10 @@ "type": "module_ident_expr", "named": true }, + { + "type": "optional_expr", + "named": true + }, { "type": "paren_expr", "named": true @@ -10784,10 +11436,6 @@ "type": "subscript_expr", "named": true }, - { - "type": "suffix_expr", - "named": true - }, { "type": "ternary_expr", "named": true @@ -11077,6 +11725,10 @@ "type": "null", "named": false }, + { + "type": "optional_expr", + "named": true + }, { "type": "paren_expr", "named": true @@ -11105,10 +11757,6 @@ "type": "subscript_expr", "named": true }, - { - "type": "suffix_expr", - "named": true - }, { "type": "ternary_expr", "named": true @@ -11252,6 +11900,10 @@ "type": "module_ident_expr", "named": true }, + { + "type": "optional_expr", + "named": true + }, { "type": "paren_expr", "named": true @@ -11280,10 +11932,6 @@ "type": "subscript_expr", "named": true }, - { - "type": "suffix_expr", - "named": true - }, { "type": "ternary_expr", "named": true @@ -11422,6 +12070,10 @@ "type": "module_ident_expr", "named": true }, + { + "type": "optional_expr", + "named": true + }, { "type": "paren_expr", "named": true @@ -11450,10 +12102,6 @@ "type": "subscript_expr", "named": true }, - { - "type": "suffix_expr", - "named": true - }, { "type": "ternary_expr", "named": true @@ -11679,6 +12327,10 @@ "type": "module_ident_expr", "named": true }, + { + "type": "optional_expr", + "named": true + }, { "type": "paren_expr", "named": true @@ -11707,10 +12359,6 @@ "type": "subscript_expr", "named": true }, - { - "type": "suffix_expr", - "named": true - }, { "type": "ternary_expr", "named": true @@ -11957,6 +12605,10 @@ "type": "null", "named": false }, + { + "type": "optional_expr", + "named": true + }, { "type": "paren_expr", "named": true @@ -11985,10 +12637,6 @@ "type": "subscript_expr", "named": true }, - { - "type": "suffix_expr", - "named": true - }, { "type": "ternary_expr", "named": true @@ -12148,6 +12796,10 @@ "type": "module_ident_expr", "named": true }, + { + "type": "optional_expr", + "named": true + }, { "type": "paren_expr", "named": true @@ -12176,10 +12828,6 @@ "type": "subscript_expr", "named": true }, - { - "type": "suffix_expr", - "named": true - }, { "type": "ternary_expr", "named": true @@ -12268,442 +12916,180 @@ "named": true }, { - "type": "import_declaration", - "named": true - }, - { - "type": "interface_declaration", - "named": true - }, - { - "type": "macro_declaration", - "named": true - }, - { - "type": "module", - "named": true - }, - { - "type": "struct_declaration", - "named": true - } - ] - } - }, - { - "type": "string_expr", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "string_literal", - "named": true - } - ] - } - }, - { - "type": "string_literal", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "escape_sequence", - "named": true - }, - { - "type": "string_content", - "named": true - } - ] - } - }, - { - "type": "struct_body", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "struct_member_declaration", - "named": true - } - ] - } - }, - { - "type": "struct_declaration", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": true, - "types": [ - { - "type": "struct_body", - "named": true - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "type_ident", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "attributes", - "named": true - }, - { - "type": "interface_impl", - "named": true - } - ] - } - }, - { - "type": "struct_member_declaration", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": false, - "types": [ - { - "type": "bitstruct_body", - "named": true - }, - { - "type": "struct_body", - "named": true - } - ] - }, - "type": { - "multiple": false, - "required": false, - "types": [ - { - "type": "type", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ + "type": "import_declaration", + "named": true + }, { - "type": "attributes", + "type": "interface_declaration", "named": true }, { - "type": "ident", + "type": "macro_declaration", "named": true }, { - "type": "identifier_list", + "type": "module", "named": true }, { - "type": "type", + "type": "struct_declaration", "named": true } ] } }, { - "type": "subscript_expr", + "type": "string_expr", "named": true, - "fields": { - "argument": { - "multiple": true, - "required": true, - "types": [ - { - "type": "$alignof", - "named": false - }, - { - "type": "$and", - "named": false - }, - { - "type": "$append", - "named": false - }, - { - "type": "$assignable", - "named": false - }, - { - "type": "$concat", - "named": false - }, - { - "type": "$defined", - "named": false - }, - { - "type": "$embed", - "named": false - }, - { - "type": "$eval", - "named": false - }, - { - "type": "$extnameof", - "named": false - }, - { - "type": "$feature", - "named": false - }, - { - "type": "$is_const", - "named": false - }, - { - "type": "$nameof", - "named": false - }, - { - "type": "$offsetof", - "named": false - }, - { - "type": "$or", - "named": false - }, - { - "type": "$qnameof", - "named": false - }, - { - "type": "$sizeof", - "named": false - }, - { - "type": "$stringify", - "named": false - }, - { - "type": "$vaarg", - "named": false - }, - { - "type": "$vaconst", - "named": false - }, - { - "type": "$vacount", - "named": false - }, - { - "type": "$vaexpr", - "named": false - }, - { - "type": "$varef", - "named": false - }, - { - "type": "(", - "named": false - }, - { - "type": ")", - "named": false - }, - { - "type": ",", - "named": false - }, - { - "type": "assignment_expr", - "named": true - }, - { - "type": "at_ident", - "named": true - }, - { - "type": "binary_expr", - "named": true - }, - { - "type": "builtin", - "named": true - }, - { - "type": "bytes_expr", - "named": true - }, - { - "type": "call_expr", - "named": true - }, - { - "type": "cast_expr", - "named": true - }, - { - "type": "char_literal", - "named": true - }, - { - "type": "compound_stmt", - "named": true - }, - { - "type": "const_ident", - "named": true - }, - { - "type": "ct_ident", - "named": true - }, - { - "type": "elvis_orelse_expr", - "named": true - }, - { - "type": "expr_block", - "named": true - }, - { - "type": "false", - "named": false - }, - { - "type": "field_expr", - "named": true - }, - { - "type": "flat_path", - "named": true - }, - { - "type": "hash_ident", - "named": true - }, - { - "type": "ident", - "named": true - }, - { - "type": "initializer_list", - "named": true - }, - { - "type": "integer_literal", - "named": true - }, - { - "type": "lambda_declaration", - "named": true - }, - { - "type": "lambda_expr", - "named": true - }, - { - "type": "module_ident_expr", - "named": true - }, - { - "type": "null", - "named": false - }, - { - "type": "paren_expr", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "real_literal", - "named": true - }, - { - "type": "rethrow_expr", - "named": true - }, - { - "type": "string_expr", - "named": true - }, - { - "type": "string_literal", - "named": true - }, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "raw_string_literal", + "named": true + }, + { + "type": "string_literal", + "named": true + } + ] + } + }, + { + "type": "string_literal", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "escape_sequence", + "named": true + }, + { + "type": "string_content", + "named": true + } + ] + } + }, + { + "type": "struct_body", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "struct_member_declaration", + "named": true + } + ] + } + }, + { + "type": "struct_declaration", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ { - "type": "subscript_expr", + "type": "struct_body", "named": true - }, + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ { - "type": "suffix_expr", + "type": "type_ident", "named": true - }, + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "attributes", + "named": true + }, + { + "type": "interface_impl", + "named": true + } + ] + } + }, + { + "type": "struct_member_declaration", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": false, + "types": [ { - "type": "ternary_expr", + "type": "bitstruct_body", "named": true }, { - "type": "trailing_generic_expr", + "type": "struct_body", "named": true - }, - { - "type": "true", - "named": false - }, + } + ] + }, + "type": { + "multiple": false, + "required": false, + "types": [ { "type": "type", "named": true - }, - { - "type": "type_access_expr", - "named": true - }, - { - "type": "unary_expr", - "named": true - }, - { - "type": "update_expr", - "named": true } ] - }, - "index": { + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "attributes", + "named": true + }, + { + "type": "ident", + "named": true + }, + { + "type": "identifier_list", + "named": true + }, + { + "type": "type", + "named": true + } + ] + } + }, + { + "type": "subscript_expr", + "named": true, + "fields": { + "argument": { "multiple": true, - "required": false, + "required": true, "types": [ { "type": "$alignof", @@ -12805,10 +13191,6 @@ "type": ",", "named": false }, - { - "type": "^", - "named": false - }, { "type": "assignment_expr", "named": true @@ -12905,6 +13287,10 @@ "type": "null", "named": false }, + { + "type": "optional_expr", + "named": true + }, { "type": "paren_expr", "named": true @@ -12933,10 +13319,6 @@ "type": "subscript_expr", "named": true }, - { - "type": "suffix_expr", - "named": true - }, { "type": "ternary_expr", "named": true @@ -12967,35 +13349,9 @@ } ] }, - "lambda_body": { + "index": { "multiple": true, "required": false, - "types": [ - { - "type": "compound_stmt", - "named": true - } - ] - }, - "range": { - "multiple": false, - "required": false, - "types": [ - { - "type": "range_expr", - "named": true - } - ] - } - } - }, - { - "type": "suffix_expr", - "named": true, - "fields": { - "argument": { - "multiple": true, - "required": true, "types": [ { "type": "$alignof", @@ -13097,6 +13453,10 @@ "type": ",", "named": false }, + { + "type": "^", + "named": false + }, { "type": "assignment_expr", "named": true @@ -13193,6 +13553,10 @@ "type": "null", "named": false }, + { + "type": "optional_expr", + "named": true + }, { "type": "paren_expr", "named": true @@ -13221,10 +13585,6 @@ "type": "subscript_expr", "named": true }, - { - "type": "suffix_expr", - "named": true - }, { "type": "ternary_expr", "named": true @@ -13265,17 +13625,13 @@ } ] }, - "operator": { - "multiple": true, - "required": true, + "range": { + "multiple": false, + "required": false, "types": [ { - "type": "!", - "named": false - }, - { - "type": "?", - "named": false + "type": "range_expr", + "named": true } ] } @@ -13550,6 +13906,10 @@ "type": "null", "named": false }, + { + "type": "optional_expr", + "named": true + }, { "type": "paren_expr", "named": true @@ -13578,10 +13938,6 @@ "type": "subscript_expr", "named": true }, - { - "type": "suffix_expr", - "named": true - }, { "type": "ternary_expr", "named": true @@ -13812,6 +14168,10 @@ "type": "null", "named": false }, + { + "type": "optional_expr", + "named": true + }, { "type": "paren_expr", "named": true @@ -13840,10 +14200,6 @@ "type": "subscript_expr", "named": true }, - { - "type": "suffix_expr", - "named": true - }, { "type": "ternary_expr", "named": true @@ -14074,6 +14430,10 @@ "type": "null", "named": false }, + { + "type": "optional_expr", + "named": true + }, { "type": "paren_expr", "named": true @@ -14102,10 +14462,6 @@ "type": "subscript_expr", "named": true }, - { - "type": "suffix_expr", - "named": true - }, { "type": "ternary_expr", "named": true @@ -14371,6 +14727,10 @@ "type": "null", "named": false }, + { + "type": "optional_expr", + "named": true + }, { "type": "paren_expr", "named": true @@ -14399,10 +14759,6 @@ "type": "subscript_expr", "named": true }, - { - "type": "suffix_expr", - "named": true - }, { "type": "ternary_expr", "named": true @@ -14558,6 +14914,10 @@ "type": "module_ident_expr", "named": true }, + { + "type": "optional_expr", + "named": true + }, { "type": "paren_expr", "named": true @@ -14586,10 +14946,6 @@ "type": "subscript_expr", "named": true }, - { - "type": "suffix_expr", - "named": true - }, { "type": "ternary_expr", "named": true @@ -14769,6 +15125,10 @@ "type": "module_ident_expr", "named": true }, + { + "type": "optional_expr", + "named": true + }, { "type": "paren_expr", "named": true @@ -14797,10 +15157,6 @@ "type": "subscript_expr", "named": true }, - { - "type": "suffix_expr", - "named": true - }, { "type": "ternary_expr", "named": true @@ -15051,6 +15407,10 @@ "type": "null", "named": false }, + { + "type": "optional_expr", + "named": true + }, { "type": "paren_expr", "named": true @@ -15079,10 +15439,6 @@ "type": "subscript_expr", "named": true }, - { - "type": "suffix_expr", - "named": true - }, { "type": "ternary_expr", "named": true @@ -15371,6 +15727,10 @@ "type": "null", "named": false }, + { + "type": "optional_expr", + "named": true + }, { "type": "paren_expr", "named": true @@ -15399,10 +15759,6 @@ "type": "subscript_expr", "named": true }, - { - "type": "suffix_expr", - "named": true - }, { "type": "ternary_expr", "named": true @@ -15673,6 +16029,10 @@ "type": "null", "named": false }, + { + "type": "optional_expr", + "named": true + }, { "type": "paren_expr", "named": true @@ -15701,10 +16061,6 @@ "type": "subscript_expr", "named": true }, - { - "type": "suffix_expr", - "named": true - }, { "type": "ternary_expr", "named": true diff --git a/src/parser.c b/src/parser.c index 54fbd5f..a8211a7 100644 --- a/src/parser.c +++ b/src/parser.c @@ -13,15 +13,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 2380 -#define LARGE_STATE_COUNT 878 -#define SYMBOL_COUNT 406 +#define STATE_COUNT 2229 +#define LARGE_STATE_COUNT 825 +#define SYMBOL_COUNT 401 #define ALIAS_COUNT 0 #define TOKEN_COUNT 191 #define EXTERNAL_TOKEN_COUNT 3 #define FIELD_COUNT 28 #define MAX_ALIAS_SEQUENCE_LENGTH 9 -#define PRODUCTION_ID_COUNT 98 +#define PRODUCTION_ID_COUNT 99 enum ts_symbol_identifiers { sym_ident = 1, @@ -231,204 +231,199 @@ enum ts_symbol_identifiers { sym__generic_arg_list = 205, sym_generic_arguments = 206, sym__assign_right_expr = 207, - sym__assign_right_constant_expr = 208, - sym__cond = 209, - sym_paren_cond = 210, - sym__parameter = 211, - sym_parameter_default = 212, - sym_parameter = 213, - sym__parameters = 214, - sym__attribute_name = 215, - sym__attribute_operator_expr = 216, - sym_attr_param = 217, - sym_attribute_param_list = 218, - sym_attribute = 219, - sym_attributes = 220, - sym_local_decl_storage = 221, - sym_global_storage = 222, - sym__module_param = 223, - sym_generic_module_parameters = 224, - sym_module = 225, - sym_import_declaration = 226, - sym_func_typedef = 227, - sym_typedef_type = 228, - sym_define_attribute = 229, - sym_define_ident = 230, - sym_define_declaration = 231, - sym_distinct_declaration = 232, - sym_const_declaration = 233, - sym__multi_declaration = 234, - sym_global_declaration = 235, - sym__struct_or_union = 236, - sym_interface = 237, - sym_interface_impl = 238, - sym_identifier_list = 239, - sym_struct_member_declaration = 240, - sym_struct_body = 241, - sym_struct_declaration = 242, - sym_bitstruct_member_declaration = 243, - sym_bitstruct_body = 244, - sym_bitstruct_declaration = 245, - sym_fault_body = 246, - sym_fault_declaration = 247, - sym_enum_arg = 248, - sym_enum_constant = 249, - sym_enum_param_declaration = 250, - sym_enum_param_list = 251, - sym_enum_spec = 252, - sym_enum_body = 253, - sym_enum_declaration = 254, - sym_interface_body = 255, - sym_interface_declaration = 256, - sym__func_macro_name = 257, - sym_fn_parameter_list = 258, - sym_func_header = 259, - sym_macro_header = 260, - sym_implies_body = 261, - sym_macro_func_body = 262, - sym_func_declaration = 263, - sym_func_definition = 264, - sym_trailing_block_param = 265, - sym_macro_parameter_list = 266, - sym_macro_declaration = 267, - sym_lambda_declaration = 268, - sym_label = 269, - sym_label_target = 270, - sym_compound_stmt = 271, - sym_expr_stmt = 272, - sym_var_decl = 273, - sym_var_stmt = 274, - sym_return_stmt = 275, - sym_continue_stmt = 276, - sym_break_stmt = 277, - sym_defer_stmt = 278, - sym_assert_stmt = 279, - sym_local_decl_after_type = 280, - sym__decl_statement_after_type = 281, - sym_declaration_stmt = 282, - sym_case_range = 283, - sym_case_stmt = 284, - sym_default_stmt = 285, - sym_nextcase_stmt = 286, - sym_switch_body = 287, - sym_switch_stmt = 288, - sym_catch_unwrap_list = 289, - sym_catch_unwrap = 290, - sym__rel_or_lambda_expr = 291, - sym_try_unwrap = 292, - sym__try_unwrap_chain = 293, - sym__if_body = 294, - sym_if_stmt = 295, - sym_else_part = 296, - sym__decl_or_expr = 297, - sym_comma_decl_or_expr = 298, - sym_for_cond = 299, - sym_for_stmt = 300, - sym_foreach_var = 301, - sym_foreach_cond = 302, - sym_foreach_stmt = 303, - sym_while_stmt = 304, - sym_do_stmt = 305, - sym_asm_instr = 306, - sym__additive_op = 307, - sym__shift_op = 308, - sym_asm_addr = 309, - sym_asm_expr = 310, - sym_asm_stmt = 311, - sym_asm_block_stmt = 312, - sym_ct_stmt_body = 313, - sym_ct_assert_stmt = 314, - sym_ct_include_stmt = 315, - sym_ct_exec_stmt = 316, - sym_ct_echo_stmt = 317, - sym_ct_if_cond = 318, - sym_ct_if_stmt = 319, - sym_ct_case_stmt = 320, - sym_ct_switch_cond = 321, - sym__ct_switch = 322, - aux_sym__ct_switch_body = 323, - sym_ct_switch_stmt = 324, - sym_ct_for_stmt = 325, - sym_ct_foreach_cond = 326, - sym_ct_foreach_stmt = 327, - sym__expr = 328, - sym__constant_expr = 329, - sym__relational_expr = 330, - sym__trailing_expr = 331, - sym__ident_expr = 332, - sym__local_ident_expr = 333, - sym_flat_path = 334, - sym_string_expr = 335, - sym_bytes_expr = 336, - sym_paren_expr = 337, - sym__base_expr = 338, - sym_module_ident_expr = 339, - sym_module_type_ident = 340, - sym_initializer_list = 341, - sym__assignment_op = 342, - sym_assignment_expr = 343, - sym_ternary_expr = 344, - sym_lambda_expr = 345, - sym_elvis_orelse_expr = 346, - sym_suffix_expr = 347, - sym_cast_expr = 348, - sym__unary_op = 349, - sym_unary_expr = 350, - sym_binary_expr = 351, - sym_param_path_element = 352, - sym_param_path = 353, - sym_arg = 354, - sym__call_arg_list = 355, - sym_call_inline_attributes = 356, - sym_call_invocation = 357, - sym_call_expr = 358, - sym_update_expr = 359, - sym_rethrow_expr = 360, - sym_trailing_generic_expr = 361, - sym__range_loc = 362, - sym_range_expr = 363, - sym_subscript_expr = 364, - sym_field_expr = 365, - sym_access_ident = 366, - sym_type_access_expr = 367, - sym_expr_block = 368, - sym_base_type_name = 369, - sym_base_type = 370, - sym_type_suffix = 371, - sym_type = 372, - sym__type_optional = 373, - aux_sym_source_file_repeat1 = 374, - aux_sym_string_literal_repeat1 = 375, - aux_sym__generic_arg_list_repeat1 = 376, - aux_sym__cond_repeat1 = 377, - aux_sym__parameters_repeat1 = 378, - aux_sym_attribute_param_list_repeat1 = 379, - aux_sym_attributes_repeat1 = 380, - aux_sym_generic_module_parameters_repeat1 = 381, - aux_sym_import_declaration_repeat1 = 382, - aux_sym__multi_declaration_repeat1 = 383, - aux_sym_interface_impl_repeat1 = 384, - aux_sym_struct_body_repeat1 = 385, - aux_sym_bitstruct_body_repeat1 = 386, - aux_sym_fault_body_repeat1 = 387, - aux_sym_enum_arg_repeat1 = 388, - aux_sym_enum_param_list_repeat1 = 389, - aux_sym_enum_body_repeat1 = 390, - aux_sym_interface_body_repeat1 = 391, - aux_sym_compound_stmt_repeat1 = 392, - aux_sym_assert_stmt_repeat1 = 393, - aux_sym__decl_statement_after_type_repeat1 = 394, - aux_sym_switch_body_repeat1 = 395, - aux_sym_catch_unwrap_list_repeat1 = 396, - aux_sym__try_unwrap_chain_repeat1 = 397, - aux_sym_asm_stmt_repeat1 = 398, - aux_sym_asm_block_stmt_repeat1 = 399, - aux_sym_ct_exec_stmt_repeat1 = 400, - aux_sym_string_expr_repeat1 = 401, - aux_sym_bytes_expr_repeat1 = 402, - aux_sym_param_path_repeat1 = 403, - aux_sym_call_inline_attributes_repeat1 = 404, - aux_sym_type_repeat1 = 405, + sym__cond = 208, + sym_paren_cond = 209, + sym__parameter = 210, + sym_parameter_default = 211, + sym_parameter = 212, + sym__parameters = 213, + sym__attribute_name = 214, + sym__attribute_operator_expr = 215, + sym_attr_param = 216, + sym_attribute_param_list = 217, + sym_attribute = 218, + sym_attributes = 219, + sym_local_decl_storage = 220, + sym_global_storage = 221, + sym__module_param = 222, + sym_generic_module_parameters = 223, + sym_module = 224, + sym_import_declaration = 225, + sym_func_typedef = 226, + sym_typedef_type = 227, + sym_define_attribute = 228, + sym_define_ident = 229, + sym_define_declaration = 230, + sym_distinct_declaration = 231, + sym_const_declaration = 232, + sym__multi_declaration = 233, + sym_global_declaration = 234, + sym__struct_or_union = 235, + sym_interface = 236, + sym_interface_impl = 237, + sym_identifier_list = 238, + sym_struct_member_declaration = 239, + sym_struct_body = 240, + sym_struct_declaration = 241, + sym_bitstruct_member_declaration = 242, + sym_bitstruct_body = 243, + sym_bitstruct_declaration = 244, + sym_fault_body = 245, + sym_fault_declaration = 246, + sym_enum_arg = 247, + sym_enum_constant = 248, + sym_enum_param_declaration = 249, + sym_enum_param_list = 250, + sym_enum_spec = 251, + sym_enum_body = 252, + sym_enum_declaration = 253, + sym_interface_body = 254, + sym_interface_declaration = 255, + sym__func_macro_name = 256, + sym_fn_parameter_list = 257, + sym_func_header = 258, + sym_macro_header = 259, + sym_implies_body = 260, + sym_macro_func_body = 261, + sym_func_declaration = 262, + sym_func_definition = 263, + sym_trailing_block_param = 264, + sym_macro_parameter_list = 265, + sym_macro_declaration = 266, + sym_lambda_declaration = 267, + sym_label = 268, + sym_label_target = 269, + sym_compound_stmt = 270, + sym_expr_stmt = 271, + sym_var_decl = 272, + sym_var_stmt = 273, + sym_return_stmt = 274, + sym_continue_stmt = 275, + sym_break_stmt = 276, + sym_defer_stmt = 277, + sym_assert_stmt = 278, + sym_local_decl_after_type = 279, + sym__decl_statement_after_type = 280, + sym_declaration_stmt = 281, + sym_case_range = 282, + sym_case_stmt = 283, + sym_default_stmt = 284, + sym_nextcase_stmt = 285, + sym_switch_body = 286, + sym_switch_stmt = 287, + sym_catch_unwrap_list = 288, + sym_catch_unwrap = 289, + sym__rel_or_lambda_expr = 290, + sym_try_unwrap = 291, + sym__try_unwrap_chain = 292, + sym__if_body = 293, + sym_if_stmt = 294, + sym_else_part = 295, + sym__decl_or_expr = 296, + sym_comma_decl_or_expr = 297, + sym_for_cond = 298, + sym_for_stmt = 299, + sym_foreach_var = 300, + sym_foreach_cond = 301, + sym_foreach_stmt = 302, + sym_while_stmt = 303, + sym_do_stmt = 304, + sym_asm_instr = 305, + sym__additive_op = 306, + sym__shift_op = 307, + sym_asm_addr = 308, + sym_asm_expr = 309, + sym_asm_stmt = 310, + sym_asm_block_stmt = 311, + sym_ct_stmt_body = 312, + sym_ct_assert_stmt = 313, + sym_ct_include_stmt = 314, + sym_ct_exec_stmt = 315, + sym_ct_echo_stmt = 316, + sym_ct_if_cond = 317, + sym_ct_if_stmt = 318, + sym_ct_case_stmt = 319, + sym_ct_switch_cond = 320, + sym__ct_switch = 321, + aux_sym__ct_switch_body = 322, + sym_ct_switch_stmt = 323, + sym_ct_for_stmt = 324, + sym_ct_foreach_cond = 325, + sym_ct_foreach_stmt = 326, + sym__expr = 327, + sym__constant_expr = 328, + sym__ident_expr = 329, + sym__local_ident_expr = 330, + sym_flat_path = 331, + sym_string_expr = 332, + sym_bytes_expr = 333, + sym_paren_expr = 334, + sym__base_expr = 335, + sym_module_ident_expr = 336, + sym_module_type_ident = 337, + sym_initializer_list = 338, + sym__assignment_op = 339, + sym_assignment_expr = 340, + sym_ternary_expr = 341, + sym_lambda_expr = 342, + sym_elvis_orelse_expr = 343, + sym_optional_expr = 344, + sym_cast_expr = 345, + sym__unary_op = 346, + sym_unary_expr = 347, + sym_binary_expr = 348, + sym_param_path_element = 349, + sym_param_path = 350, + sym_arg = 351, + sym__call_arg_list = 352, + sym_call_inline_attributes = 353, + sym_call_invocation = 354, + sym_call_expr = 355, + sym_update_expr = 356, + sym_rethrow_expr = 357, + sym_trailing_generic_expr = 358, + sym__range_loc = 359, + sym_range_expr = 360, + sym_subscript_expr = 361, + sym_field_expr = 362, + sym_access_ident = 363, + sym_type_access_expr = 364, + sym_expr_block = 365, + sym_base_type_name = 366, + sym_base_type = 367, + sym_type_suffix = 368, + sym_type = 369, + aux_sym_source_file_repeat1 = 370, + aux_sym_string_literal_repeat1 = 371, + aux_sym__generic_arg_list_repeat1 = 372, + aux_sym__cond_repeat1 = 373, + aux_sym__parameters_repeat1 = 374, + aux_sym_attribute_param_list_repeat1 = 375, + aux_sym_attributes_repeat1 = 376, + aux_sym_generic_module_parameters_repeat1 = 377, + aux_sym_import_declaration_repeat1 = 378, + aux_sym__multi_declaration_repeat1 = 379, + aux_sym_interface_impl_repeat1 = 380, + aux_sym_struct_body_repeat1 = 381, + aux_sym_bitstruct_body_repeat1 = 382, + aux_sym_fault_body_repeat1 = 383, + aux_sym_enum_arg_repeat1 = 384, + aux_sym_enum_param_list_repeat1 = 385, + aux_sym_enum_body_repeat1 = 386, + aux_sym_interface_body_repeat1 = 387, + aux_sym_compound_stmt_repeat1 = 388, + aux_sym_assert_stmt_repeat1 = 389, + aux_sym__decl_statement_after_type_repeat1 = 390, + aux_sym_switch_body_repeat1 = 391, + aux_sym__try_unwrap_chain_repeat1 = 392, + aux_sym_asm_stmt_repeat1 = 393, + aux_sym_asm_block_stmt_repeat1 = 394, + aux_sym_ct_exec_stmt_repeat1 = 395, + aux_sym_string_expr_repeat1 = 396, + aux_sym_bytes_expr_repeat1 = 397, + aux_sym_param_path_repeat1 = 398, + aux_sym_call_inline_attributes_repeat1 = 399, + aux_sym_type_repeat1 = 400, }; static const char * const ts_symbol_names[] = { @@ -640,7 +635,6 @@ static const char * const ts_symbol_names[] = { [sym__generic_arg_list] = "_generic_arg_list", [sym_generic_arguments] = "generic_arguments", [sym__assign_right_expr] = "_assign_right_expr", - [sym__assign_right_constant_expr] = "_assign_right_constant_expr", [sym__cond] = "_cond", [sym_paren_cond] = "paren_cond", [sym__parameter] = "_parameter", @@ -762,8 +756,6 @@ static const char * const ts_symbol_names[] = { [sym_ct_foreach_stmt] = "ct_foreach_stmt", [sym__expr] = "_expr", [sym__constant_expr] = "_constant_expr", - [sym__relational_expr] = "_relational_expr", - [sym__trailing_expr] = "_trailing_expr", [sym__ident_expr] = "_ident_expr", [sym__local_ident_expr] = "_local_ident_expr", [sym_flat_path] = "flat_path", @@ -779,7 +771,7 @@ static const char * const ts_symbol_names[] = { [sym_ternary_expr] = "ternary_expr", [sym_lambda_expr] = "lambda_expr", [sym_elvis_orelse_expr] = "elvis_orelse_expr", - [sym_suffix_expr] = "suffix_expr", + [sym_optional_expr] = "optional_expr", [sym_cast_expr] = "cast_expr", [sym__unary_op] = "_unary_op", [sym_unary_expr] = "unary_expr", @@ -805,7 +797,6 @@ static const char * const ts_symbol_names[] = { [sym_base_type] = "base_type", [sym_type_suffix] = "type_suffix", [sym_type] = "type", - [sym__type_optional] = "_type_optional", [aux_sym_source_file_repeat1] = "source_file_repeat1", [aux_sym_string_literal_repeat1] = "string_literal_repeat1", [aux_sym__generic_arg_list_repeat1] = "_generic_arg_list_repeat1", @@ -828,7 +819,6 @@ static const char * const ts_symbol_names[] = { [aux_sym_assert_stmt_repeat1] = "assert_stmt_repeat1", [aux_sym__decl_statement_after_type_repeat1] = "_decl_statement_after_type_repeat1", [aux_sym_switch_body_repeat1] = "switch_body_repeat1", - [aux_sym_catch_unwrap_list_repeat1] = "catch_unwrap_list_repeat1", [aux_sym__try_unwrap_chain_repeat1] = "_try_unwrap_chain_repeat1", [aux_sym_asm_stmt_repeat1] = "asm_stmt_repeat1", [aux_sym_asm_block_stmt_repeat1] = "asm_block_stmt_repeat1", @@ -1049,7 +1039,6 @@ static const TSSymbol ts_symbol_map[] = { [sym__generic_arg_list] = sym__generic_arg_list, [sym_generic_arguments] = sym_generic_arguments, [sym__assign_right_expr] = sym__assign_right_expr, - [sym__assign_right_constant_expr] = sym__assign_right_constant_expr, [sym__cond] = sym__cond, [sym_paren_cond] = sym_paren_cond, [sym__parameter] = sym__parameter, @@ -1171,8 +1160,6 @@ static const TSSymbol ts_symbol_map[] = { [sym_ct_foreach_stmt] = sym_ct_foreach_stmt, [sym__expr] = sym__expr, [sym__constant_expr] = sym__constant_expr, - [sym__relational_expr] = sym__relational_expr, - [sym__trailing_expr] = sym__trailing_expr, [sym__ident_expr] = sym__ident_expr, [sym__local_ident_expr] = sym__local_ident_expr, [sym_flat_path] = sym_flat_path, @@ -1188,7 +1175,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_ternary_expr] = sym_ternary_expr, [sym_lambda_expr] = sym_lambda_expr, [sym_elvis_orelse_expr] = sym_elvis_orelse_expr, - [sym_suffix_expr] = sym_suffix_expr, + [sym_optional_expr] = sym_optional_expr, [sym_cast_expr] = sym_cast_expr, [sym__unary_op] = sym__unary_op, [sym_unary_expr] = sym_unary_expr, @@ -1214,7 +1201,6 @@ static const TSSymbol ts_symbol_map[] = { [sym_base_type] = sym_base_type, [sym_type_suffix] = sym_type_suffix, [sym_type] = sym_type, - [sym__type_optional] = sym__type_optional, [aux_sym_source_file_repeat1] = aux_sym_source_file_repeat1, [aux_sym_string_literal_repeat1] = aux_sym_string_literal_repeat1, [aux_sym__generic_arg_list_repeat1] = aux_sym__generic_arg_list_repeat1, @@ -1237,7 +1223,6 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_assert_stmt_repeat1] = aux_sym_assert_stmt_repeat1, [aux_sym__decl_statement_after_type_repeat1] = aux_sym__decl_statement_after_type_repeat1, [aux_sym_switch_body_repeat1] = aux_sym_switch_body_repeat1, - [aux_sym_catch_unwrap_list_repeat1] = aux_sym_catch_unwrap_list_repeat1, [aux_sym__try_unwrap_chain_repeat1] = aux_sym__try_unwrap_chain_repeat1, [aux_sym_asm_stmt_repeat1] = aux_sym_asm_stmt_repeat1, [aux_sym_asm_block_stmt_repeat1] = aux_sym_asm_block_stmt_repeat1, @@ -2082,10 +2067,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, - [sym__assign_right_constant_expr] = { - .visible = false, - .named = true, - }, [sym__cond] = { .visible = false, .named = true, @@ -2570,14 +2551,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, - [sym__relational_expr] = { - .visible = false, - .named = true, - }, - [sym__trailing_expr] = { - .visible = false, - .named = true, - }, [sym__ident_expr] = { .visible = false, .named = true, @@ -2638,7 +2611,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_suffix_expr] = { + [sym_optional_expr] = { .visible = true, .named = true, }, @@ -2742,10 +2715,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym__type_optional] = { - .visible = false, - .named = true, - }, [aux_sym_source_file_repeat1] = { .visible = false, .named = false, @@ -2834,10 +2803,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_catch_unwrap_list_repeat1] = { - .visible = false, - .named = false, - }, [aux_sym__try_unwrap_chain_repeat1] = { .visible = false, .named = false, @@ -2951,9 +2916,9 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [9] = {.index = 13, .length = 2}, [10] = {.index = 15, .length = 1}, [11] = {.index = 16, .length = 1}, - [12] = {.index = 17, .length = 1}, - [13] = {.index = 18, .length = 3}, - [14] = {.index = 21, .length = 3}, + [12] = {.index = 17, .length = 3}, + [13] = {.index = 20, .length = 3}, + [14] = {.index = 23, .length = 1}, [15] = {.index = 24, .length = 3}, [16] = {.index = 27, .length = 2}, [17] = {.index = 29, .length = 2}, @@ -2974,69 +2939,70 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [32] = {.index = 57, .length = 2}, [33] = {.index = 59, .length = 5}, [34] = {.index = 64, .length = 3}, - [35] = {.index = 67, .length = 2}, - [36] = {.index = 69, .length = 4}, - [37] = {.index = 73, .length = 4}, - [38] = {.index = 77, .length = 2}, - [39] = {.index = 79, .length = 1}, - [40] = {.index = 80, .length = 2}, - [41] = {.index = 82, .length = 4}, - [42] = {.index = 86, .length = 3}, - [43] = {.index = 89, .length = 2}, - [44] = {.index = 91, .length = 1}, - [45] = {.index = 92, .length = 3}, - [46] = {.index = 95, .length = 3}, - [47] = {.index = 98, .length = 4}, - [48] = {.index = 102, .length = 2}, - [49] = {.index = 104, .length = 2}, - [50] = {.index = 106, .length = 3}, - [51] = {.index = 109, .length = 2}, - [52] = {.index = 111, .length = 1}, - [53] = {.index = 112, .length = 2}, - [54] = {.index = 114, .length = 2}, - [55] = {.index = 116, .length = 1}, - [56] = {.index = 117, .length = 2}, - [57] = {.index = 119, .length = 1}, - [58] = {.index = 120, .length = 2}, - [59] = {.index = 122, .length = 2}, - [60] = {.index = 124, .length = 4}, - [61] = {.index = 128, .length = 3}, - [62] = {.index = 131, .length = 3}, - [63] = {.index = 134, .length = 4}, - [64] = {.index = 138, .length = 2}, - [65] = {.index = 140, .length = 4}, - [66] = {.index = 144, .length = 2}, - [67] = {.index = 146, .length = 2}, - [68] = {.index = 148, .length = 2}, - [69] = {.index = 150, .length = 2}, - [70] = {.index = 152, .length = 3}, - [71] = {.index = 155, .length = 2}, - [72] = {.index = 157, .length = 2}, - [73] = {.index = 159, .length = 2}, - [74] = {.index = 161, .length = 6}, - [75] = {.index = 167, .length = 2}, - [76] = {.index = 169, .length = 1}, - [77] = {.index = 170, .length = 2}, - [78] = {.index = 172, .length = 1}, - [79] = {.index = 173, .length = 2}, - [80] = {.index = 175, .length = 3}, - [81] = {.index = 178, .length = 1}, - [82] = {.index = 179, .length = 1}, - [83] = {.index = 180, .length = 3}, - [84] = {.index = 183, .length = 1}, - [85] = {.index = 184, .length = 2}, - [86] = {.index = 186, .length = 1}, - [87] = {.index = 187, .length = 3}, - [88] = {.index = 190, .length = 1}, - [89] = {.index = 191, .length = 1}, - [90] = {.index = 192, .length = 3}, - [91] = {.index = 195, .length = 2}, - [92] = {.index = 197, .length = 3}, - [93] = {.index = 200, .length = 1}, - [94] = {.index = 201, .length = 2}, - [95] = {.index = 203, .length = 4}, - [96] = {.index = 207, .length = 4}, - [97] = {.index = 211, .length = 3}, + [35] = {.index = 67, .length = 4}, + [36] = {.index = 71, .length = 5}, + [37] = {.index = 76, .length = 4}, + [38] = {.index = 80, .length = 2}, + [39] = {.index = 82, .length = 1}, + [40] = {.index = 83, .length = 2}, + [41] = {.index = 85, .length = 4}, + [42] = {.index = 89, .length = 3}, + [43] = {.index = 92, .length = 2}, + [44] = {.index = 94, .length = 1}, + [45] = {.index = 95, .length = 3}, + [46] = {.index = 98, .length = 3}, + [47] = {.index = 101, .length = 4}, + [48] = {.index = 105, .length = 2}, + [49] = {.index = 107, .length = 2}, + [50] = {.index = 109, .length = 3}, + [51] = {.index = 112, .length = 2}, + [52] = {.index = 114, .length = 1}, + [53] = {.index = 115, .length = 2}, + [54] = {.index = 117, .length = 2}, + [55] = {.index = 119, .length = 1}, + [56] = {.index = 120, .length = 2}, + [57] = {.index = 122, .length = 1}, + [58] = {.index = 123, .length = 2}, + [59] = {.index = 125, .length = 4}, + [60] = {.index = 129, .length = 3}, + [61] = {.index = 132, .length = 2}, + [62] = {.index = 134, .length = 3}, + [63] = {.index = 137, .length = 4}, + [64] = {.index = 141, .length = 2}, + [65] = {.index = 143, .length = 4}, + [66] = {.index = 147, .length = 2}, + [67] = {.index = 149, .length = 2}, + [68] = {.index = 151, .length = 2}, + [69] = {.index = 153, .length = 2}, + [70] = {.index = 155, .length = 3}, + [71] = {.index = 158, .length = 2}, + [72] = {.index = 160, .length = 2}, + [73] = {.index = 162, .length = 2}, + [74] = {.index = 164, .length = 2}, + [75] = {.index = 166, .length = 6}, + [76] = {.index = 172, .length = 2}, + [77] = {.index = 174, .length = 1}, + [78] = {.index = 175, .length = 2}, + [79] = {.index = 177, .length = 1}, + [80] = {.index = 178, .length = 2}, + [81] = {.index = 180, .length = 3}, + [82] = {.index = 183, .length = 1}, + [83] = {.index = 184, .length = 1}, + [84] = {.index = 185, .length = 3}, + [85] = {.index = 188, .length = 1}, + [86] = {.index = 189, .length = 2}, + [87] = {.index = 191, .length = 1}, + [88] = {.index = 192, .length = 3}, + [89] = {.index = 195, .length = 1}, + [90] = {.index = 196, .length = 1}, + [91] = {.index = 197, .length = 3}, + [92] = {.index = 200, .length = 2}, + [93] = {.index = 202, .length = 3}, + [94] = {.index = 205, .length = 1}, + [95] = {.index = 206, .length = 2}, + [96] = {.index = 208, .length = 4}, + [97] = {.index = 212, .length = 4}, + [98] = {.index = 216, .length = 3}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -3069,15 +3035,15 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [16] = {field_lambda_body, 1}, [17] = - {field_lambda_body, 1, .inherited = true}, - [18] = {field_argument, 0}, {field_lambda_body, 0, .inherited = true}, {field_operator, 1}, - [21] = + [20] = {field_arguments, 1}, {field_function, 0}, {field_lambda_body, 0, .inherited = true}, + [23] = + {field_lambda_body, 1, .inherited = true}, [24] = {field_argument, 1}, {field_lambda_body, 1, .inherited = true}, @@ -3142,212 +3108,218 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_field, 2}, {field_lambda_body, 0, .inherited = true}, [67] = - {field_lambda_body, 0, .inherited = true}, - {field_lambda_body, 2, .inherited = true}, - [69] = {field_argument, 0}, {field_lambda_body, 0, .inherited = true}, {field_operator, 1}, {field_operator, 2}, - [73] = + [71] = + {field_alternative, 2}, + {field_condition, 0}, + {field_lambda_body, 0, .inherited = true}, + {field_lambda_body, 2, .inherited = true}, + {field_operator, 1}, + [76] = {field_arguments, 1}, {field_function, 0}, {field_lambda_body, 0, .inherited = true}, {field_trailing, 2}, - [77] = + [80] = {field_argument, 0}, {field_field, 2}, - [79] = + [82] = {field_lambda_body, 2, .inherited = true}, - [80] = + [83] = {field_name, 1}, {field_name, 2, .inherited = true}, - [82] = + [85] = {field_lambda_body, 2, .inherited = true}, {field_name, 1}, {field_right, 2, .inherited = true}, {field_type, 0}, - [86] = + [89] = {field_name, 1}, {field_name, 2, .inherited = true}, {field_type, 0}, - [89] = + [92] = {field_lambda_body, 0, .inherited = true}, {field_right, 0, .inherited = true}, - [91] = + [94] = {field_body, 4}, - [92] = + [95] = {field_method_type, 1}, {field_name, 3}, {field_return_type, 0}, - [95] = + [98] = {field_lambda_body, 3, .inherited = true}, {field_name, 1}, {field_right, 3, .inherited = true}, - [98] = + [101] = {field_lambda_body, 3, .inherited = true}, {field_name, 2}, {field_right, 3, .inherited = true}, {field_type, 1}, - [102] = + [105] = {field_body, 4}, {field_name, 1}, - [104] = + [107] = {field_args, 1}, {field_name, 0}, - [106] = + [109] = {field_lambda_body, 3, .inherited = true}, {field_type, 1}, {field_value, 3}, - [109] = + [112] = {field_lambda_body, 2, .inherited = true}, {field_right, 2, .inherited = true}, - [111] = + [114] = {field_target, 1}, - [112] = + [115] = {field_lambda_body, 1, .inherited = true}, {field_target, 1}, - [114] = + [117] = {field_body, 2}, {field_condition, 1}, - [116] = + [119] = {field_body, 2}, - [117] = + [120] = {field_body, 2}, {field_label, 1}, - [119] = + [122] = {field_body, 0}, - [120] = + [123] = {field_body, 2, .inherited = true}, {field_condition, 1}, - [122] = - {field_lambda_body, 1, .inherited = true}, - {field_lambda_body, 3, .inherited = true}, - [124] = + [125] = {field_argument, 0}, {field_index, 2}, {field_lambda_body, 0, .inherited = true}, {field_lambda_body, 2, .inherited = true}, - [128] = + [129] = {field_argument, 0}, {field_lambda_body, 0, .inherited = true}, {field_range, 2}, - [131] = + [132] = + {field_lambda_body, 1, .inherited = true}, + {field_lambda_body, 3, .inherited = true}, + [134] = {field_name, 2}, {field_name, 3, .inherited = true}, {field_type, 1}, - [134] = + [137] = {field_lambda_body, 3, .inherited = true}, {field_name, 1}, {field_right, 3, .inherited = true}, {field_type, 0}, - [138] = + [141] = {field_name, 2}, {field_type, 0}, - [140] = + [143] = {field_lambda_body, 4, .inherited = true}, {field_name, 2}, {field_right, 4, .inherited = true}, {field_type, 1}, - [144] = + [147] = {field_body, 5}, {field_name, 1}, - [146] = + [149] = {field_args, 2}, {field_name, 0}, - [148] = + [151] = {field_lambda_body, 2, .inherited = true}, {field_lambda_body, 3, .inherited = true}, - [150] = + [153] = {field_body, 3}, {field_condition, 1}, - [152] = + [155] = {field_body, 3}, {field_condition, 2}, {field_label, 1}, - [155] = + [158] = {field_body, 3}, {field_label, 1}, - [157] = + [160] = {field_body, 3, .inherited = true}, {field_condition, 2}, - [159] = + [162] = {field_body, 3}, {field_condition, 2}, - [161] = + [164] = + {field_lambda_body, 0, .inherited = true}, + {field_lambda_body, 2, .inherited = true}, + [166] = {field_alternative, 4}, {field_condition, 0}, {field_consequence, 2}, {field_lambda_body, 0, .inherited = true}, {field_lambda_body, 2, .inherited = true}, {field_lambda_body, 4, .inherited = true}, - [167] = + [172] = {field_body, 6}, {field_name, 1}, - [169] = + [174] = {field_target, 3}, - [170] = + [175] = {field_lambda_body, 3, .inherited = true}, {field_target, 3}, - [172] = + [177] = {field_value, 1}, - [173] = + [178] = {field_lambda_body, 1, .inherited = true}, {field_value, 1}, - [175] = + [180] = {field_body, 4}, {field_condition, 2}, {field_label, 1}, - [178] = + [183] = {field_condition, 3}, - [179] = + [184] = {field_lambda_body, 3, .inherited = true}, - [180] = + [185] = {field_lambda_body, 0, .inherited = true}, {field_lambda_body, 1, .inherited = true}, {field_lambda_body, 3, .inherited = true}, - [183] = + [188] = {field_update, 3}, - [184] = + [189] = {field_condition, 2}, {field_lambda_body, 2, .inherited = true}, - [186] = + [191] = {field_initializer, 1}, - [187] = + [192] = {field_collection, 3}, {field_lambda_body, 3, .inherited = true}, {field_value, 1}, - [190] = + [195] = {field_condition, 4}, - [191] = + [196] = {field_lambda_body, 4, .inherited = true}, - [192] = + [197] = {field_condition, 2}, {field_lambda_body, 2, .inherited = true}, {field_update, 4}, - [195] = + [200] = {field_initializer, 1}, {field_update, 4}, - [197] = + [202] = {field_condition, 3}, {field_initializer, 1}, {field_lambda_body, 3, .inherited = true}, - [200] = + [205] = {field_body, 5}, - [201] = + [206] = {field_lambda_body, 3, .inherited = true}, {field_type, 0}, - [203] = + [208] = {field_condition, 3}, {field_initializer, 1}, {field_lambda_body, 3, .inherited = true}, {field_update, 5}, - [207] = + [212] = {field_collection, 5}, {field_index, 1}, {field_lambda_body, 5, .inherited = true}, {field_value, 3}, - [211] = + [216] = {field_lambda_body, 3, .inherited = true}, {field_lambda_body, 5, .inherited = true}, {field_type, 0}, @@ -3380,142 +3352,142 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [15] = 15, [16] = 16, [17] = 17, - [18] = 16, - [19] = 19, - [20] = 19, - [21] = 19, - [22] = 19, + [18] = 18, + [19] = 18, + [20] = 18, + [21] = 21, + [22] = 22, [23] = 23, [24] = 24, - [25] = 19, + [25] = 16, [26] = 26, - [27] = 27, - [28] = 28, - [29] = 29, + [27] = 18, + [28] = 18, + [29] = 18, [30] = 30, - [31] = 19, - [32] = 32, + [31] = 31, + [32] = 24, [33] = 33, [34] = 34, - [35] = 34, - [36] = 33, - [37] = 32, - [38] = 32, - [39] = 30, - [40] = 40, - [41] = 40, - [42] = 32, - [43] = 40, - [44] = 40, - [45] = 33, + [35] = 35, + [36] = 34, + [37] = 33, + [38] = 35, + [39] = 39, + [40] = 34, + [41] = 33, + [42] = 35, + [43] = 39, + [44] = 33, + [45] = 35, [46] = 33, - [47] = 34, - [48] = 32, - [49] = 40, - [50] = 34, - [51] = 33, - [52] = 34, - [53] = 16, - [54] = 32, - [55] = 40, - [56] = 33, + [47] = 39, + [48] = 39, + [49] = 39, + [50] = 35, + [51] = 34, + [52] = 35, + [53] = 33, + [54] = 16, + [55] = 39, + [56] = 34, [57] = 34, [58] = 58, - [59] = 59, + [59] = 16, [60] = 58, [61] = 61, - [62] = 16, + [62] = 58, [63] = 63, - [64] = 30, - [65] = 65, - [66] = 59, - [67] = 61, + [64] = 64, + [65] = 58, + [66] = 61, + [67] = 64, [68] = 16, - [69] = 58, - [70] = 63, - [71] = 65, - [72] = 59, - [73] = 58, - [74] = 30, - [75] = 61, + [69] = 63, + [70] = 64, + [71] = 71, + [72] = 61, + [73] = 71, + [74] = 61, + [75] = 64, [76] = 63, - [77] = 65, - [78] = 59, - [79] = 61, - [80] = 16, - [81] = 58, - [82] = 65, - [83] = 65, - [84] = 63, - [85] = 59, - [86] = 30, - [87] = 59, + [77] = 77, + [78] = 71, + [79] = 24, + [80] = 63, + [81] = 64, + [82] = 71, + [83] = 58, + [84] = 61, + [85] = 58, + [86] = 24, + [87] = 71, [88] = 63, - [89] = 65, - [90] = 63, - [91] = 58, + [89] = 24, + [90] = 71, + [91] = 64, [92] = 92, - [93] = 65, - [94] = 61, - [95] = 95, - [96] = 61, - [97] = 63, + [93] = 61, + [94] = 58, + [95] = 63, + [96] = 16, + [97] = 61, [98] = 98, [99] = 99, [100] = 100, [101] = 101, [102] = 102, - [103] = 98, - [104] = 102, - [105] = 98, - [106] = 101, + [103] = 103, + [104] = 103, + [105] = 102, + [106] = 99, [107] = 100, [108] = 108, - [109] = 109, - [110] = 99, - [111] = 108, - [112] = 109, - [113] = 101, - [114] = 100, - [115] = 99, - [116] = 109, - [117] = 108, - [118] = 109, - [119] = 108, - [120] = 98, - [121] = 100, - [122] = 101, - [123] = 102, + [109] = 101, + [110] = 98, + [111] = 99, + [112] = 99, + [113] = 108, + [114] = 98, + [115] = 100, + [116] = 102, + [117] = 101, + [118] = 103, + [119] = 103, + [120] = 102, + [121] = 101, + [122] = 100, + [123] = 99, [124] = 108, - [125] = 101, - [126] = 102, - [127] = 98, - [128] = 98, + [125] = 98, + [126] = 101, + [127] = 103, + [128] = 108, [129] = 102, - [130] = 101, - [131] = 109, + [130] = 100, + [131] = 100, [132] = 99, - [133] = 100, - [134] = 102, - [135] = 108, - [136] = 109, - [137] = 100, - [138] = 99, - [139] = 99, + [133] = 108, + [134] = 98, + [135] = 98, + [136] = 102, + [137] = 103, + [138] = 101, + [139] = 108, [140] = 140, - [141] = 140, + [141] = 141, [142] = 142, - [143] = 143, + [143] = 141, [144] = 142, - [145] = 142, - [146] = 143, - [147] = 143, + [145] = 141, + [146] = 141, + [147] = 141, [148] = 142, - [149] = 142, + [149] = 141, [150] = 142, - [151] = 143, - [152] = 143, - [153] = 143, + [151] = 142, + [152] = 142, + [153] = 153, [154] = 154, [155] = 155, [156] = 156, @@ -3523,117 +3495,117 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [158] = 156, [159] = 159, [160] = 160, - [161] = 159, + [161] = 161, [162] = 162, [163] = 163, [164] = 164, [165] = 165, - [166] = 166, + [166] = 160, [167] = 167, [168] = 168, [169] = 169, - [170] = 164, - [171] = 167, + [170] = 170, + [171] = 171, [172] = 172, [173] = 173, [174] = 174, - [175] = 174, - [176] = 176, - [177] = 176, + [175] = 175, + [176] = 173, + [177] = 175, [178] = 178, [179] = 179, [180] = 180, - [181] = 179, - [182] = 182, - [183] = 182, - [184] = 180, + [181] = 174, + [182] = 178, + [183] = 180, + [184] = 184, [185] = 185, - [186] = 185, + [186] = 186, [187] = 187, [188] = 188, - [189] = 188, - [190] = 188, - [191] = 188, - [192] = 188, - [193] = 193, - [194] = 193, - [195] = 188, - [196] = 196, + [189] = 189, + [190] = 189, + [191] = 189, + [192] = 192, + [193] = 189, + [194] = 189, + [195] = 195, + [196] = 189, [197] = 197, - [198] = 197, - [199] = 199, - [200] = 200, - [201] = 201, + [198] = 198, + [199] = 198, + [200] = 198, + [201] = 198, [202] = 202, - [203] = 199, - [204] = 196, - [205] = 200, + [203] = 203, + [204] = 198, + [205] = 198, [206] = 206, - [207] = 206, + [207] = 207, [208] = 208, - [209] = 209, - [210] = 206, - [211] = 206, - [212] = 206, - [213] = 206, - [214] = 208, + [209] = 207, + [210] = 207, + [211] = 211, + [212] = 212, + [213] = 213, + [214] = 213, [215] = 215, [216] = 216, - [217] = 217, - [218] = 215, + [217] = 208, + [218] = 218, [219] = 219, - [220] = 220, - [221] = 221, - [222] = 222, - [223] = 220, + [220] = 207, + [221] = 208, + [222] = 211, + [223] = 223, [224] = 224, - [225] = 215, - [226] = 215, - [227] = 227, - [228] = 221, - [229] = 217, - [230] = 230, - [231] = 221, - [232] = 227, - [233] = 220, + [225] = 213, + [226] = 226, + [227] = 208, + [228] = 211, + [229] = 224, + [230] = 226, + [231] = 224, + [232] = 232, + [233] = 211, [234] = 234, - [235] = 221, - [236] = 222, + [235] = 207, + [236] = 236, [237] = 237, - [238] = 215, - [239] = 224, - [240] = 215, - [241] = 222, - [242] = 242, - [243] = 221, - [244] = 244, - [245] = 245, - [246] = 222, - [247] = 244, - [248] = 234, - [249] = 242, - [250] = 221, - [251] = 251, + [238] = 208, + [239] = 213, + [240] = 211, + [241] = 241, + [242] = 213, + [243] = 212, + [244] = 224, + [245] = 224, + [246] = 213, + [247] = 208, + [248] = 248, + [249] = 236, + [250] = 236, + [251] = 226, [252] = 252, - [253] = 253, - [254] = 254, + [253] = 207, + [254] = 211, [255] = 255, - [256] = 256, - [257] = 255, - [258] = 258, + [256] = 207, + [257] = 211, + [258] = 224, [259] = 259, - [260] = 255, - [261] = 261, - [262] = 262, - [263] = 258, - [264] = 264, - [265] = 265, - [266] = 266, - [267] = 267, - [268] = 268, - [269] = 269, - [270] = 270, - [271] = 271, + [260] = 226, + [261] = 226, + [262] = 208, + [263] = 263, + [264] = 212, + [265] = 212, + [266] = 226, + [267] = 212, + [268] = 237, + [269] = 224, + [270] = 212, + [271] = 237, [272] = 272, [273] = 273, [274] = 274, @@ -3641,7 +3613,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [276] = 276, [277] = 277, [278] = 278, - [279] = 279, + [279] = 278, [280] = 280, [281] = 281, [282] = 282, @@ -3652,108 +3624,108 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [287] = 287, [288] = 288, [289] = 289, - [290] = 252, + [290] = 290, [291] = 291, - [292] = 270, + [292] = 278, [293] = 293, - [294] = 294, - [295] = 295, - [296] = 259, - [297] = 252, - [298] = 258, - [299] = 299, - [300] = 278, + [294] = 278, + [295] = 278, + [296] = 296, + [297] = 297, + [298] = 298, + [299] = 278, + [300] = 300, [301] = 301, - [302] = 291, - [303] = 288, - [304] = 258, + [302] = 302, + [303] = 298, + [304] = 304, [305] = 305, - [306] = 255, + [306] = 277, [307] = 307, [308] = 308, - [309] = 287, - [310] = 286, + [309] = 309, + [310] = 310, [311] = 311, - [312] = 285, - [313] = 284, - [314] = 314, - [315] = 283, - [316] = 282, - [317] = 281, - [318] = 280, - [319] = 279, - [320] = 307, - [321] = 277, - [322] = 293, - [323] = 295, + [312] = 312, + [313] = 313, + [314] = 298, + [315] = 274, + [316] = 316, + [317] = 317, + [318] = 274, + [319] = 319, + [320] = 320, + [321] = 321, + [322] = 322, + [323] = 323, [324] = 324, - [325] = 276, - [326] = 307, - [327] = 275, - [328] = 289, + [325] = 325, + [326] = 326, + [327] = 273, + [328] = 275, [329] = 329, - [330] = 274, - [331] = 273, - [332] = 272, - [333] = 271, - [334] = 269, - [335] = 252, - [336] = 266, + [330] = 330, + [331] = 331, + [332] = 332, + [333] = 332, + [334] = 334, + [335] = 335, + [336] = 336, [337] = 337, [338] = 338, - [339] = 308, - [340] = 295, - [341] = 253, - [342] = 314, + [339] = 334, + [340] = 340, + [341] = 341, + [342] = 342, [343] = 343, [344] = 344, [345] = 345, - [346] = 345, + [346] = 346, [347] = 347, - [348] = 252, + [348] = 348, [349] = 349, - [350] = 294, - [351] = 307, - [352] = 307, - [353] = 268, - [354] = 347, - [355] = 258, - [356] = 293, - [357] = 295, - [358] = 293, - [359] = 295, - [360] = 254, - [361] = 251, - [362] = 295, - [363] = 293, - [364] = 252, - [365] = 307, + [350] = 350, + [351] = 351, + [352] = 352, + [353] = 353, + [354] = 354, + [355] = 355, + [356] = 332, + [357] = 357, + [358] = 358, + [359] = 359, + [360] = 360, + [361] = 361, + [362] = 362, + [363] = 363, + [364] = 364, + [365] = 365, [366] = 366, - [367] = 267, - [368] = 265, - [369] = 293, - [370] = 258, - [371] = 255, - [372] = 252, - [373] = 266, - [374] = 254, - [375] = 251, - [376] = 259, - [377] = 366, + [367] = 367, + [368] = 368, + [369] = 369, + [370] = 370, + [371] = 371, + [372] = 372, + [373] = 373, + [374] = 374, + [375] = 375, + [376] = 376, + [377] = 377, [378] = 378, - [379] = 295, - [380] = 255, - [381] = 293, - [382] = 262, - [383] = 261, + [379] = 379, + [380] = 380, + [381] = 381, + [382] = 382, + [383] = 383, [384] = 384, - [385] = 307, + [385] = 385, [386] = 386, [387] = 387, [388] = 388, - [389] = 387, + [389] = 389, [390] = 390, - [391] = 391, + [391] = 335, [392] = 392, [393] = 393, [394] = 394, @@ -3765,7 +3737,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [400] = 400, [401] = 401, [402] = 402, - [403] = 387, + [403] = 403, [404] = 404, [405] = 405, [406] = 406, @@ -3774,468 +3746,468 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [409] = 409, [410] = 410, [411] = 411, - [412] = 412, - [413] = 388, - [414] = 414, - [415] = 415, - [416] = 416, - [417] = 417, - [418] = 418, - [419] = 419, - [420] = 420, - [421] = 421, - [422] = 422, - [423] = 423, - [424] = 390, - [425] = 425, - [426] = 426, - [427] = 427, - [428] = 428, - [429] = 429, - [430] = 430, - [431] = 431, - [432] = 432, - [433] = 433, - [434] = 434, - [435] = 435, - [436] = 436, - [437] = 437, - [438] = 438, - [439] = 439, - [440] = 440, - [441] = 441, - [442] = 442, - [443] = 443, - [444] = 444, - [445] = 445, - [446] = 446, - [447] = 447, - [448] = 448, - [449] = 449, - [450] = 450, - [451] = 451, - [452] = 452, - [453] = 453, - [454] = 454, - [455] = 455, - [456] = 456, - [457] = 457, - [458] = 458, - [459] = 459, - [460] = 460, - [461] = 461, - [462] = 462, - [463] = 463, - [464] = 464, - [465] = 465, - [466] = 466, - [467] = 396, - [468] = 425, - [469] = 461, - [470] = 436, - [471] = 437, - [472] = 453, - [473] = 456, - [474] = 458, - [475] = 428, - [476] = 460, - [477] = 427, - [478] = 388, - [479] = 421, - [480] = 445, - [481] = 438, - [482] = 419, - [483] = 405, - [484] = 402, - [485] = 454, - [486] = 407, - [487] = 464, - [488] = 439, - [489] = 397, - [490] = 398, - [491] = 463, - [492] = 442, - [493] = 435, - [494] = 400, - [495] = 406, - [496] = 446, - [497] = 447, - [498] = 448, - [499] = 391, - [500] = 449, - [501] = 450, - [502] = 459, - [503] = 444, - [504] = 410, - [505] = 432, - [506] = 455, - [507] = 429, - [508] = 393, - [509] = 420, - [510] = 387, - [511] = 443, - [512] = 422, - [513] = 423, - [514] = 399, - [515] = 451, - [516] = 392, - [517] = 387, - [518] = 401, - [519] = 404, - [520] = 390, - [521] = 387, - [522] = 408, - [523] = 409, - [524] = 411, - [525] = 412, - [526] = 416, - [527] = 417, - [528] = 418, - [529] = 430, - [530] = 433, - [531] = 434, - [532] = 440, - [533] = 441, - [534] = 457, - [535] = 462, - [536] = 465, - [537] = 466, - [538] = 452, - [539] = 431, - [540] = 426, - [541] = 415, - [542] = 414, - [543] = 395, - [544] = 394, - [545] = 417, - [546] = 447, - [547] = 400, - [548] = 462, - [549] = 446, - [550] = 406, - [551] = 407, - [552] = 431, - [553] = 391, - [554] = 410, - [555] = 465, - [556] = 420, - [557] = 443, - [558] = 422, - [559] = 423, - [560] = 426, - [561] = 415, - [562] = 414, - [563] = 466, - [564] = 451, - [565] = 395, - [566] = 435, - [567] = 392, - [568] = 388, - [569] = 442, - [570] = 463, - [571] = 390, - [572] = 464, - [573] = 460, - [574] = 394, - [575] = 458, - [576] = 436, - [577] = 388, - [578] = 454, - [579] = 579, - [580] = 456, - [581] = 453, - [582] = 455, - [583] = 461, - [584] = 437, - [585] = 428, - [586] = 427, - [587] = 421, - [588] = 419, - [589] = 452, - [590] = 459, - [591] = 405, - [592] = 402, - [593] = 445, - [594] = 438, - [595] = 439, - [596] = 397, - [597] = 398, - [598] = 450, - [599] = 449, - [600] = 448, - [601] = 393, - [602] = 457, - [603] = 441, - [604] = 440, - [605] = 444, - [606] = 432, - [607] = 425, - [608] = 434, - [609] = 433, - [610] = 430, - [611] = 418, - [612] = 429, - [613] = 416, - [614] = 412, - [615] = 390, - [616] = 390, - [617] = 411, - [618] = 409, - [619] = 408, - [620] = 404, - [621] = 388, - [622] = 401, - [623] = 399, - [624] = 396, - [625] = 414, - [626] = 464, - [627] = 394, - [628] = 395, - [629] = 415, - [630] = 426, - [631] = 431, - [632] = 452, - [633] = 466, - [634] = 465, - [635] = 635, - [636] = 462, - [637] = 457, - [638] = 638, - [639] = 392, - [640] = 451, - [641] = 441, - [642] = 440, - [643] = 423, - [644] = 434, - [645] = 433, - [646] = 422, - [647] = 430, - [648] = 443, - [649] = 392, - [650] = 451, - [651] = 420, - [652] = 418, - [653] = 417, - [654] = 416, - [655] = 412, - [656] = 391, - [657] = 411, - [658] = 409, - [659] = 407, - [660] = 408, - [661] = 404, - [662] = 401, - [663] = 399, - [664] = 410, - [665] = 396, - [666] = 420, - [667] = 393, - [668] = 429, - [669] = 454, - [670] = 425, - [671] = 432, - [672] = 444, - [673] = 459, - [674] = 450, - [675] = 400, - [676] = 449, - [677] = 398, - [678] = 448, - [679] = 397, - [680] = 447, - [681] = 439, - [682] = 455, - [683] = 402, - [684] = 446, - [685] = 461, - [686] = 405, - [687] = 423, - [688] = 422, - [689] = 443, - [690] = 437, - [691] = 428, - [692] = 427, - [693] = 421, - [694] = 420, - [695] = 419, - [696] = 421, - [697] = 427, - [698] = 419, - [699] = 405, - [700] = 402, - [701] = 435, - [702] = 442, - [703] = 463, - [704] = 464, - [705] = 460, - [706] = 458, - [707] = 456, - [708] = 453, - [709] = 439, - [710] = 397, - [711] = 428, - [712] = 410, - [713] = 391, - [714] = 407, - [715] = 438, - [716] = 445, - [717] = 406, - [718] = 400, - [719] = 398, - [720] = 400, - [721] = 406, - [722] = 407, - [723] = 437, - [724] = 461, - [725] = 391, - [726] = 398, - [727] = 445, - [728] = 410, - [729] = 453, - [730] = 438, - [731] = 397, - [732] = 439, - [733] = 402, - [734] = 456, - [735] = 458, - [736] = 460, - [737] = 464, - [738] = 405, - [739] = 463, - [740] = 419, - [741] = 421, - [742] = 427, - [743] = 428, - [744] = 442, - [745] = 437, - [746] = 461, - [747] = 455, - [748] = 435, - [749] = 459, - [750] = 454, - [751] = 455, - [752] = 443, - [753] = 436, - [754] = 394, - [755] = 454, - [756] = 395, - [757] = 414, - [758] = 436, - [759] = 415, - [760] = 426, - [761] = 431, - [762] = 452, - [763] = 394, - [764] = 395, - [765] = 466, - [766] = 465, - [767] = 462, - [768] = 414, - [769] = 457, - [770] = 441, - [771] = 440, - [772] = 415, - [773] = 422, - [774] = 426, - [775] = 431, - [776] = 452, - [777] = 466, - [778] = 465, - [779] = 423, - [780] = 446, - [781] = 434, - [782] = 433, - [783] = 462, - [784] = 430, - [785] = 447, - [786] = 448, - [787] = 457, - [788] = 449, - [789] = 441, - [790] = 440, - [791] = 450, - [792] = 434, - [793] = 418, - [794] = 417, - [795] = 433, - [796] = 430, - [797] = 392, - [798] = 451, - [799] = 416, - [800] = 418, - [801] = 412, - [802] = 406, - [803] = 411, - [804] = 409, - [805] = 408, - [806] = 404, - [807] = 401, - [808] = 399, - [809] = 444, - [810] = 417, - [811] = 396, + [412] = 357, + [413] = 400, + [414] = 363, + [415] = 359, + [416] = 352, + [417] = 351, + [418] = 399, + [419] = 397, + [420] = 371, + [421] = 338, + [422] = 376, + [423] = 341, + [424] = 342, + [425] = 343, + [426] = 344, + [427] = 408, + [428] = 340, + [429] = 345, + [430] = 346, + [431] = 348, + [432] = 349, + [433] = 347, + [434] = 382, + [435] = 336, + [436] = 334, + [437] = 375, + [438] = 373, + [439] = 370, + [440] = 350, + [441] = 332, + [442] = 354, + [443] = 396, + [444] = 360, + [445] = 361, + [446] = 364, + [447] = 362, + [448] = 337, + [449] = 368, + [450] = 355, + [451] = 374, + [452] = 394, + [453] = 378, + [454] = 384, + [455] = 358, + [456] = 332, + [457] = 387, + [458] = 366, + [459] = 335, + [460] = 409, + [461] = 367, + [462] = 332, + [463] = 372, + [464] = 404, + [465] = 388, + [466] = 393, + [467] = 353, + [468] = 398, + [469] = 377, + [470] = 407, + [471] = 379, + [472] = 369, + [473] = 380, + [474] = 411, + [475] = 385, + [476] = 381, + [477] = 390, + [478] = 392, + [479] = 403, + [480] = 401, + [481] = 402, + [482] = 405, + [483] = 386, + [484] = 406, + [485] = 410, + [486] = 383, + [487] = 365, + [488] = 389, + [489] = 395, + [490] = 346, + [491] = 348, + [492] = 403, + [493] = 404, + [494] = 335, + [495] = 398, + [496] = 409, + [497] = 336, + [498] = 408, + [499] = 393, + [500] = 388, + [501] = 387, + [502] = 384, + [503] = 337, + [504] = 378, + [505] = 374, + [506] = 344, + [507] = 365, + [508] = 363, + [509] = 394, + [510] = 359, + [511] = 334, + [512] = 407, + [513] = 385, + [514] = 401, + [515] = 515, + [516] = 353, + [517] = 358, + [518] = 351, + [519] = 399, + [520] = 397, + [521] = 360, + [522] = 371, + [523] = 338, + [524] = 341, + [525] = 342, + [526] = 334, + [527] = 343, + [528] = 334, + [529] = 400, + [530] = 352, + [531] = 345, + [532] = 349, + [533] = 350, + [534] = 354, + [535] = 355, + [536] = 357, + [537] = 366, + [538] = 370, + [539] = 367, + [540] = 372, + [541] = 377, + [542] = 335, + [543] = 340, + [544] = 347, + [545] = 373, + [546] = 375, + [547] = 376, + [548] = 382, + [549] = 335, + [550] = 361, + [551] = 362, + [552] = 368, + [553] = 369, + [554] = 379, + [555] = 364, + [556] = 396, + [557] = 411, + [558] = 392, + [559] = 386, + [560] = 410, + [561] = 395, + [562] = 389, + [563] = 383, + [564] = 406, + [565] = 405, + [566] = 402, + [567] = 390, + [568] = 381, + [569] = 380, + [570] = 383, + [571] = 365, + [572] = 352, + [573] = 374, + [574] = 378, + [575] = 384, + [576] = 387, + [577] = 353, + [578] = 358, + [579] = 360, + [580] = 388, + [581] = 370, + [582] = 373, + [583] = 375, + [584] = 376, + [585] = 382, + [586] = 393, + [587] = 359, + [588] = 398, + [589] = 363, + [590] = 400, + [591] = 401, + [592] = 403, + [593] = 364, + [594] = 396, + [595] = 404, + [596] = 596, + [597] = 597, + [598] = 598, + [599] = 599, + [600] = 409, + [601] = 336, + [602] = 408, + [603] = 603, + [604] = 604, + [605] = 605, + [606] = 337, + [607] = 394, + [608] = 407, + [609] = 385, + [610] = 375, + [611] = 611, + [612] = 351, + [613] = 399, + [614] = 397, + [615] = 371, + [616] = 338, + [617] = 341, + [618] = 342, + [619] = 343, + [620] = 344, + [621] = 345, + [622] = 346, + [623] = 348, + [624] = 349, + [625] = 350, + [626] = 354, + [627] = 355, + [628] = 357, + [629] = 366, + [630] = 367, + [631] = 372, + [632] = 377, + [633] = 379, + [634] = 380, + [635] = 381, + [636] = 390, + [637] = 402, + [638] = 405, + [639] = 406, + [640] = 383, + [641] = 396, + [642] = 364, + [643] = 389, + [644] = 395, + [645] = 410, + [646] = 386, + [647] = 392, + [648] = 411, + [649] = 382, + [650] = 376, + [651] = 400, + [652] = 373, + [653] = 370, + [654] = 360, + [655] = 358, + [656] = 353, + [657] = 369, + [658] = 368, + [659] = 362, + [660] = 361, + [661] = 385, + [662] = 407, + [663] = 394, + [664] = 337, + [665] = 408, + [666] = 336, + [667] = 409, + [668] = 404, + [669] = 403, + [670] = 401, + [671] = 401, + [672] = 398, + [673] = 393, + [674] = 388, + [675] = 387, + [676] = 384, + [677] = 378, + [678] = 374, + [679] = 365, + [680] = 363, + [681] = 359, + [682] = 352, + [683] = 347, + [684] = 340, + [685] = 351, + [686] = 399, + [687] = 397, + [688] = 371, + [689] = 338, + [690] = 341, + [691] = 342, + [692] = 343, + [693] = 344, + [694] = 345, + [695] = 346, + [696] = 348, + [697] = 349, + [698] = 698, + [699] = 350, + [700] = 354, + [701] = 355, + [702] = 357, + [703] = 366, + [704] = 704, + [705] = 367, + [706] = 372, + [707] = 377, + [708] = 379, + [709] = 380, + [710] = 381, + [711] = 390, + [712] = 402, + [713] = 405, + [714] = 406, + [715] = 396, + [716] = 364, + [717] = 389, + [718] = 395, + [719] = 410, + [720] = 386, + [721] = 392, + [722] = 411, + [723] = 382, + [724] = 376, + [725] = 375, + [726] = 373, + [727] = 370, + [728] = 360, + [729] = 358, + [730] = 353, + [731] = 369, + [732] = 368, + [733] = 362, + [734] = 361, + [735] = 385, + [736] = 407, + [737] = 394, + [738] = 337, + [739] = 408, + [740] = 336, + [741] = 409, + [742] = 404, + [743] = 403, + [744] = 340, + [745] = 400, + [746] = 398, + [747] = 393, + [748] = 388, + [749] = 387, + [750] = 384, + [751] = 378, + [752] = 374, + [753] = 365, + [754] = 363, + [755] = 359, + [756] = 352, + [757] = 347, + [758] = 340, + [759] = 351, + [760] = 399, + [761] = 397, + [762] = 371, + [763] = 338, + [764] = 341, + [765] = 342, + [766] = 343, + [767] = 344, + [768] = 345, + [769] = 346, + [770] = 348, + [771] = 349, + [772] = 350, + [773] = 354, + [774] = 355, + [775] = 357, + [776] = 366, + [777] = 367, + [778] = 372, + [779] = 377, + [780] = 379, + [781] = 380, + [782] = 381, + [783] = 390, + [784] = 402, + [785] = 405, + [786] = 406, + [787] = 383, + [788] = 389, + [789] = 395, + [790] = 410, + [791] = 386, + [792] = 392, + [793] = 411, + [794] = 369, + [795] = 368, + [796] = 362, + [797] = 361, + [798] = 347, + [799] = 799, + [800] = 605, + [801] = 801, + [802] = 596, + [803] = 611, + [804] = 804, + [805] = 597, + [806] = 598, + [807] = 604, + [808] = 599, + [809] = 603, + [810] = 334, + [811] = 369, [812] = 812, - [813] = 416, - [814] = 412, - [815] = 411, - [816] = 393, - [817] = 429, - [818] = 425, - [819] = 432, - [820] = 444, - [821] = 459, - [822] = 450, - [823] = 449, - [824] = 448, - [825] = 447, - [826] = 446, - [827] = 432, - [828] = 409, - [829] = 425, + [813] = 813, + [814] = 814, + [815] = 815, + [816] = 814, + [817] = 815, + [818] = 814, + [819] = 815, + [820] = 820, + [821] = 821, + [822] = 822, + [823] = 823, + [824] = 824, + [825] = 825, + [826] = 826, + [827] = 827, + [828] = 828, + [829] = 829, [830] = 830, [831] = 831, [832] = 832, - [833] = 408, - [834] = 435, - [835] = 442, - [836] = 404, - [837] = 463, - [838] = 436, - [839] = 460, - [840] = 458, - [841] = 456, - [842] = 401, + [833] = 833, + [834] = 834, + [835] = 835, + [836] = 836, + [837] = 837, + [838] = 838, + [839] = 839, + [840] = 840, + [841] = 340, + [842] = 842, [843] = 843, - [844] = 453, + [844] = 844, [845] = 845, [846] = 846, [847] = 847, - [848] = 429, - [849] = 393, - [850] = 399, - [851] = 438, - [852] = 445, - [853] = 396, - [854] = 847, + [848] = 848, + [849] = 849, + [850] = 850, + [851] = 851, + [852] = 361, + [853] = 853, + [854] = 854, [855] = 855, - [856] = 812, - [857] = 832, - [858] = 830, - [859] = 831, + [856] = 856, + [857] = 857, + [858] = 362, + [859] = 368, [860] = 860, - [861] = 843, - [862] = 846, - [863] = 845, + [861] = 861, + [862] = 862, + [863] = 863, [864] = 864, - [865] = 420, - [866] = 390, + [865] = 865, + [866] = 866, [867] = 867, [868] = 868, - [869] = 867, - [870] = 868, - [871] = 867, + [869] = 869, + [870] = 870, + [871] = 871, [872] = 872, - [873] = 868, + [873] = 873, [874] = 874, [875] = 875, [876] = 876, @@ -4247,7 +4219,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [882] = 882, [883] = 883, [884] = 884, - [885] = 392, + [885] = 885, [886] = 886, [887] = 887, [888] = 888, @@ -4263,21 +4235,21 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [898] = 898, [899] = 899, [900] = 900, - [901] = 901, + [901] = 389, [902] = 902, [903] = 903, - [904] = 398, + [904] = 904, [905] = 905, [906] = 906, [907] = 907, - [908] = 451, + [908] = 908, [909] = 909, [910] = 910, - [911] = 911, + [911] = 411, [912] = 912, [913] = 913, [914] = 914, - [915] = 915, + [915] = 347, [916] = 916, [917] = 917, [918] = 918, @@ -4285,9 +4257,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [920] = 920, [921] = 921, [922] = 922, - [923] = 923, + [923] = 392, [924] = 924, - [925] = 925, + [925] = 395, [926] = 926, [927] = 927, [928] = 928, @@ -4296,24 +4268,24 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [931] = 931, [932] = 932, [933] = 933, - [934] = 397, - [935] = 935, + [934] = 934, + [935] = 410, [936] = 936, [937] = 937, [938] = 938, [939] = 939, - [940] = 400, - [941] = 443, + [940] = 940, + [941] = 941, [942] = 942, [943] = 943, [944] = 944, - [945] = 945, - [946] = 423, - [947] = 422, + [945] = 383, + [946] = 946, + [947] = 947, [948] = 948, - [949] = 410, - [950] = 391, - [951] = 407, + [949] = 949, + [950] = 950, + [951] = 386, [952] = 952, [953] = 953, [954] = 954, @@ -4330,7 +4302,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [965] = 965, [966] = 966, [967] = 967, - [968] = 406, + [968] = 968, [969] = 969, [970] = 970, [971] = 971, @@ -4351,11 +4323,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [986] = 986, [987] = 987, [988] = 988, - [989] = 989, + [989] = 953, [990] = 990, [991] = 991, [992] = 992, - [993] = 993, + [993] = 942, [994] = 994, [995] = 995, [996] = 996, @@ -4365,7 +4337,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1000] = 1000, [1001] = 1001, [1002] = 1002, - [1003] = 1002, + [1003] = 1003, [1004] = 1004, [1005] = 1005, [1006] = 1006, @@ -4379,441 +4351,441 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1014] = 1014, [1015] = 1015, [1016] = 1016, - [1017] = 1017, - [1018] = 1018, - [1019] = 1019, + [1017] = 969, + [1018] = 888, + [1019] = 937, [1020] = 1020, [1021] = 1021, - [1022] = 1000, - [1023] = 1023, + [1022] = 971, + [1023] = 974, [1024] = 1024, - [1025] = 1025, + [1025] = 972, [1026] = 1026, - [1027] = 1027, + [1027] = 977, [1028] = 1028, - [1029] = 1029, - [1030] = 1030, - [1031] = 1031, - [1032] = 1000, - [1033] = 1002, + [1029] = 964, + [1030] = 966, + [1031] = 965, + [1032] = 970, + [1033] = 968, [1034] = 1034, - [1035] = 1035, - [1036] = 1036, + [1035] = 967, + [1036] = 963, [1037] = 1037, [1038] = 1038, - [1039] = 1039, + [1039] = 1038, [1040] = 1040, [1041] = 1041, - [1042] = 1042, + [1042] = 1038, [1043] = 1043, - [1044] = 1044, - [1045] = 991, + [1044] = 1038, + [1045] = 1038, [1046] = 1046, - [1047] = 1008, - [1048] = 1025, - [1049] = 1049, - [1050] = 1027, - [1051] = 1020, + [1047] = 1047, + [1048] = 1048, + [1049] = 1038, + [1050] = 1050, + [1051] = 1051, [1052] = 1052, [1053] = 1053, - [1054] = 1054, - [1055] = 1055, + [1054] = 1052, + [1055] = 1051, [1056] = 1056, - [1057] = 1056, + [1057] = 1057, [1058] = 1058, [1059] = 1059, [1060] = 1060, - [1061] = 1058, - [1062] = 1031, + [1061] = 1061, + [1062] = 1062, [1063] = 1063, [1064] = 1064, - [1065] = 1052, - [1066] = 1038, - [1067] = 1044, - [1068] = 1059, - [1069] = 1034, + [1065] = 1065, + [1066] = 1066, + [1067] = 1067, + [1068] = 1068, + [1069] = 1069, [1070] = 1070, [1071] = 1071, - [1072] = 1036, - [1073] = 1037, - [1074] = 1040, - [1075] = 1035, + [1072] = 1072, + [1073] = 1073, + [1074] = 1074, + [1075] = 1075, [1076] = 1076, - [1077] = 1039, - [1078] = 1041, - [1079] = 1043, - [1080] = 1042, - [1081] = 991, - [1082] = 1082, - [1083] = 1002, - [1084] = 1082, - [1085] = 1085, - [1086] = 1085, - [1087] = 1002, - [1088] = 1000, - [1089] = 1000, + [1077] = 1077, + [1078] = 1078, + [1079] = 1079, + [1080] = 1079, + [1081] = 1081, + [1082] = 1071, + [1083] = 1076, + [1084] = 1073, + [1085] = 1077, + [1086] = 1073, + [1087] = 1087, + [1088] = 1088, + [1089] = 1079, [1090] = 1090, - [1091] = 1091, - [1092] = 1092, - [1093] = 1093, - [1094] = 1002, - [1095] = 1095, + [1091] = 1071, + [1092] = 1087, + [1093] = 1087, + [1094] = 1094, + [1095] = 1079, [1096] = 1096, - [1097] = 1097, + [1097] = 1074, [1098] = 1098, [1099] = 1099, - [1100] = 1100, - [1101] = 1101, - [1102] = 1102, + [1100] = 1087, + [1101] = 1087, + [1102] = 1074, [1103] = 1103, - [1104] = 1099, + [1104] = 1104, [1105] = 1105, - [1106] = 1100, - [1107] = 1107, - [1108] = 1108, - [1109] = 1109, - [1110] = 1110, - [1111] = 1111, - [1112] = 1112, - [1113] = 1113, - [1114] = 1114, - [1115] = 1115, + [1106] = 1106, + [1107] = 1071, + [1108] = 1071, + [1109] = 1087, + [1110] = 1071, + [1111] = 1074, + [1112] = 1075, + [1113] = 1074, + [1114] = 1074, + [1115] = 1076, [1116] = 1116, - [1117] = 1117, - [1118] = 1118, - [1119] = 1119, - [1120] = 1000, + [1117] = 944, + [1118] = 1079, + [1119] = 1077, + [1120] = 1079, [1121] = 1121, [1122] = 1122, [1123] = 1123, - [1124] = 1112, + [1124] = 1124, [1125] = 1125, [1126] = 1126, [1127] = 1127, [1128] = 1128, - [1129] = 1129, + [1129] = 1106, [1130] = 1130, - [1131] = 1076, - [1132] = 1100, - [1133] = 1099, + [1131] = 1131, + [1132] = 1132, + [1133] = 1133, [1134] = 1134, [1135] = 1135, - [1136] = 1136, + [1136] = 1135, [1137] = 1137, [1138] = 1138, - [1139] = 1139, + [1139] = 1138, [1140] = 1140, [1141] = 1141, - [1142] = 1140, - [1143] = 1141, + [1142] = 1142, + [1143] = 1143, [1144] = 1144, - [1145] = 1141, + [1145] = 1145, [1146] = 1146, - [1147] = 1141, - [1148] = 1141, - [1149] = 1141, + [1147] = 1147, + [1148] = 1145, + [1149] = 1149, [1150] = 1150, - [1151] = 1151, + [1151] = 1145, [1152] = 1152, - [1153] = 1153, - [1154] = 1154, - [1155] = 1141, - [1156] = 1150, + [1153] = 1145, + [1154] = 1145, + [1155] = 1145, + [1156] = 1145, [1157] = 1157, [1158] = 1158, - [1159] = 1097, - [1160] = 1125, - [1161] = 1121, - [1162] = 1119, - [1163] = 1158, + [1159] = 1159, + [1160] = 1160, + [1161] = 1161, + [1162] = 1162, + [1163] = 1163, [1164] = 1164, - [1165] = 1165, - [1166] = 1092, + [1165] = 1162, + [1166] = 1166, [1167] = 1167, - [1168] = 1118, - [1169] = 1158, - [1170] = 1158, - [1171] = 1095, - [1172] = 1117, - [1173] = 1093, + [1168] = 1168, + [1169] = 1162, + [1170] = 1162, + [1171] = 1171, + [1172] = 1172, + [1173] = 1162, [1174] = 1174, - [1175] = 1158, + [1175] = 1162, [1176] = 1176, - [1177] = 1177, - [1178] = 1116, - [1179] = 1115, - [1180] = 1114, - [1181] = 1105, - [1182] = 1113, - [1183] = 1158, - [1184] = 1090, - [1185] = 1096, - [1186] = 1109, - [1187] = 1108, + [1177] = 842, + [1178] = 1178, + [1179] = 1179, + [1180] = 897, + [1181] = 836, + [1182] = 1182, + [1183] = 1183, + [1184] = 1184, + [1185] = 878, + [1186] = 1186, + [1187] = 1187, [1188] = 1188, - [1189] = 1103, + [1189] = 1189, [1190] = 1190, - [1191] = 1102, - [1192] = 1101, - [1193] = 1123, + [1191] = 1191, + [1192] = 1192, + [1193] = 1193, [1194] = 1194, [1195] = 1195, - [1196] = 1128, - [1197] = 1197, - [1198] = 1198, - [1199] = 1199, - [1200] = 1200, - [1201] = 1134, - [1202] = 1202, - [1203] = 1203, - [1204] = 1204, - [1205] = 1129, - [1206] = 1206, - [1207] = 1099, - [1208] = 1208, - [1209] = 1209, - [1210] = 1210, - [1211] = 1211, - [1212] = 939, + [1196] = 1196, + [1197] = 937, + [1198] = 942, + [1199] = 888, + [1200] = 953, + [1201] = 969, + [1202] = 964, + [1203] = 977, + [1204] = 971, + [1205] = 970, + [1206] = 974, + [1207] = 963, + [1208] = 968, + [1209] = 965, + [1210] = 966, + [1211] = 967, + [1212] = 972, [1213] = 1213, [1214] = 1214, - [1215] = 900, + [1215] = 1215, [1216] = 1216, [1217] = 1217, [1218] = 1218, - [1219] = 894, - [1220] = 1099, - [1221] = 938, + [1219] = 1219, + [1220] = 1220, + [1221] = 1221, [1222] = 1222, [1223] = 1223, - [1224] = 1100, - [1225] = 1099, + [1224] = 1224, + [1225] = 1225, [1226] = 1226, - [1227] = 1226, + [1227] = 1227, [1228] = 1228, [1229] = 1229, - [1230] = 1226, - [1231] = 1231, + [1230] = 1227, + [1231] = 1227, [1232] = 1232, [1233] = 1233, [1234] = 1234, [1235] = 1235, - [1236] = 1226, - [1237] = 1226, - [1238] = 1238, - [1239] = 1239, - [1240] = 1226, + [1236] = 1236, + [1237] = 1227, + [1238] = 1227, + [1239] = 1227, + [1240] = 1240, [1241] = 1241, [1242] = 1242, - [1243] = 1095, - [1244] = 1238, + [1243] = 1242, + [1244] = 1242, [1245] = 1241, [1246] = 1246, [1247] = 1242, - [1248] = 1248, - [1249] = 1231, - [1250] = 1250, - [1251] = 1251, - [1252] = 1239, - [1253] = 1253, + [1248] = 812, + [1249] = 1242, + [1250] = 1241, + [1251] = 1241, + [1252] = 1241, + [1253] = 1241, [1254] = 1254, - [1255] = 1232, - [1256] = 1256, - [1257] = 1257, - [1258] = 1256, + [1255] = 1255, + [1256] = 1242, + [1257] = 1241, + [1258] = 1258, [1259] = 1259, - [1260] = 1260, - [1261] = 1261, + [1260] = 813, + [1261] = 1242, [1262] = 1262, [1263] = 1263, [1264] = 1264, [1265] = 1265, - [1266] = 1256, - [1267] = 1095, + [1266] = 1266, + [1267] = 1265, [1268] = 1268, - [1269] = 1265, - [1270] = 1263, + [1269] = 1269, + [1270] = 1270, [1271] = 1265, - [1272] = 1253, - [1273] = 1254, - [1274] = 1254, + [1272] = 1272, + [1273] = 1265, + [1274] = 1274, [1275] = 1265, [1276] = 1276, - [1277] = 1253, - [1278] = 1268, - [1279] = 1253, - [1280] = 1254, - [1281] = 1256, + [1277] = 1277, + [1278] = 1278, + [1279] = 1265, + [1280] = 1280, + [1281] = 1281, [1282] = 1282, - [1283] = 1256, + [1283] = 1283, [1284] = 1284, [1285] = 1285, [1286] = 1286, - [1287] = 1254, - [1288] = 1265, + [1287] = 1287, + [1288] = 1288, [1289] = 1289, [1290] = 1290, - [1291] = 1285, + [1291] = 1291, [1292] = 1292, - [1293] = 1263, - [1294] = 1254, - [1295] = 1253, - [1296] = 1256, - [1297] = 1253, - [1298] = 1234, - [1299] = 1265, + [1293] = 1293, + [1294] = 1294, + [1295] = 1295, + [1296] = 1296, + [1297] = 1297, + [1298] = 1298, + [1299] = 1299, [1300] = 1300, [1301] = 1301, [1302] = 1302, - [1303] = 1301, - [1304] = 1025, - [1305] = 1027, - [1306] = 1008, - [1307] = 1020, - [1308] = 1031, - [1309] = 1043, - [1310] = 1042, - [1311] = 1044, - [1312] = 1034, - [1313] = 1036, - [1314] = 1037, - [1315] = 1035, - [1316] = 1040, - [1317] = 991, - [1318] = 1039, - [1319] = 1041, - [1320] = 1038, - [1321] = 1321, - [1322] = 1322, - [1323] = 1323, + [1303] = 1303, + [1304] = 1304, + [1305] = 1305, + [1306] = 1306, + [1307] = 1307, + [1308] = 1307, + [1309] = 1309, + [1310] = 1310, + [1311] = 1311, + [1312] = 1312, + [1313] = 1307, + [1314] = 1310, + [1315] = 1310, + [1316] = 1316, + [1317] = 1307, + [1318] = 1318, + [1319] = 1310, + [1320] = 1307, + [1321] = 1307, + [1322] = 1310, + [1323] = 1310, [1324] = 1324, [1325] = 1325, [1326] = 1326, [1327] = 1327, [1328] = 1328, [1329] = 1329, - [1330] = 1330, + [1330] = 888, [1331] = 1331, [1332] = 1332, - [1333] = 1333, + [1333] = 937, [1334] = 1334, [1335] = 1335, [1336] = 1336, [1337] = 1337, [1338] = 1338, - [1339] = 1335, + [1339] = 1339, [1340] = 1340, [1341] = 1341, - [1342] = 1335, + [1342] = 1338, [1343] = 1343, - [1344] = 1335, - [1345] = 1335, - [1346] = 1343, + [1344] = 1344, + [1345] = 1345, + [1346] = 1338, [1347] = 1347, - [1348] = 1335, + [1348] = 1348, [1349] = 1349, - [1350] = 1349, - [1351] = 1351, - [1352] = 1349, - [1353] = 1353, - [1354] = 1351, - [1355] = 1349, + [1350] = 1350, + [1351] = 1338, + [1352] = 1352, + [1353] = 1338, + [1354] = 1354, + [1355] = 1350, [1356] = 1356, - [1357] = 1351, + [1357] = 1338, [1358] = 1358, [1359] = 1359, [1360] = 1360, - [1361] = 1349, - [1362] = 1351, + [1361] = 1361, + [1362] = 1362, [1363] = 1363, - [1364] = 1351, - [1365] = 1349, - [1366] = 1351, - [1367] = 1349, - [1368] = 1351, - [1369] = 1369, - [1370] = 1369, - [1371] = 1371, + [1364] = 1364, + [1365] = 1365, + [1366] = 1366, + [1367] = 1366, + [1368] = 1368, + [1369] = 1366, + [1370] = 1370, + [1371] = 1360, [1372] = 1372, [1373] = 1373, - [1374] = 1374, - [1375] = 1369, + [1374] = 1366, + [1375] = 1370, [1376] = 1376, - [1377] = 1377, - [1378] = 1369, - [1379] = 1379, - [1380] = 1369, - [1381] = 1381, - [1382] = 1382, + [1377] = 1366, + [1378] = 1360, + [1379] = 1372, + [1380] = 1359, + [1381] = 1363, + [1382] = 1372, [1383] = 1383, [1384] = 1384, - [1385] = 1385, - [1386] = 1386, - [1387] = 1387, + [1385] = 1360, + [1386] = 1366, + [1387] = 1363, [1388] = 1388, [1389] = 1389, - [1390] = 1369, + [1390] = 1363, [1391] = 1391, - [1392] = 1392, - [1393] = 1393, - [1394] = 1394, - [1395] = 1395, - [1396] = 1396, - [1397] = 1397, + [1392] = 1370, + [1393] = 1363, + [1394] = 1011, + [1395] = 1359, + [1396] = 1363, + [1397] = 1370, [1398] = 1398, [1399] = 1399, [1400] = 1400, - [1401] = 1401, - [1402] = 1402, - [1403] = 1403, - [1404] = 1404, - [1405] = 1405, + [1401] = 1360, + [1402] = 1372, + [1403] = 1359, + [1404] = 1359, + [1405] = 1370, [1406] = 1406, [1407] = 1407, [1408] = 1408, [1409] = 1409, [1410] = 1410, - [1411] = 1411, - [1412] = 1412, - [1413] = 1413, - [1414] = 1414, - [1415] = 1415, + [1411] = 1372, + [1412] = 1359, + [1413] = 1360, + [1414] = 1372, + [1415] = 1370, [1416] = 1416, [1417] = 1417, - [1418] = 1416, - [1419] = 1416, - [1420] = 1416, - [1421] = 1417, + [1418] = 1418, + [1419] = 1419, + [1420] = 1420, + [1421] = 1421, [1422] = 1422, - [1423] = 1417, + [1423] = 1324, [1424] = 1424, - [1425] = 1416, - [1426] = 1417, - [1427] = 1416, - [1428] = 1417, + [1425] = 1425, + [1426] = 1426, + [1427] = 1427, + [1428] = 1428, [1429] = 1429, - [1430] = 1417, + [1430] = 1430, [1431] = 1431, [1432] = 1432, [1433] = 1433, [1434] = 1434, - [1435] = 1435, - [1436] = 1436, - [1437] = 1437, + [1435] = 1426, + [1436] = 1426, + [1437] = 1426, [1438] = 1438, [1439] = 1439, [1440] = 1440, [1441] = 1441, - [1442] = 1442, - [1443] = 1443, + [1442] = 1327, + [1443] = 1426, [1444] = 1444, - [1445] = 1445, + [1445] = 1426, [1446] = 1446, [1447] = 1447, [1448] = 1448, [1449] = 1449, [1450] = 1450, - [1451] = 1446, + [1451] = 1451, [1452] = 1452, [1453] = 1453, [1454] = 1454, @@ -4825,432 +4797,432 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1460] = 1460, [1461] = 1461, [1462] = 1462, - [1463] = 1457, + [1463] = 1463, [1464] = 1464, [1465] = 1465, - [1466] = 1461, - [1467] = 1462, + [1466] = 1466, + [1467] = 1467, [1468] = 1468, - [1469] = 1461, - [1470] = 1460, + [1469] = 1469, + [1470] = 1470, [1471] = 1471, [1472] = 1472, - [1473] = 1473, - [1474] = 1474, - [1475] = 1014, - [1476] = 1465, + [1473] = 1455, + [1474] = 1464, + [1475] = 1475, + [1476] = 1457, [1477] = 1477, [1478] = 1478, - [1479] = 1479, - [1480] = 1471, - [1481] = 1461, - [1482] = 1473, - [1483] = 1483, + [1479] = 1349, + [1480] = 1480, + [1481] = 1481, + [1482] = 1482, + [1483] = 1464, [1484] = 1484, [1485] = 1485, - [1486] = 1460, - [1487] = 1487, - [1488] = 1460, - [1489] = 1462, - [1490] = 1462, + [1486] = 1455, + [1487] = 1457, + [1488] = 1488, + [1489] = 1489, + [1490] = 1464, [1491] = 1491, - [1492] = 1465, - [1493] = 1460, - [1494] = 1473, + [1492] = 1492, + [1493] = 1455, + [1494] = 1457, [1495] = 1495, - [1496] = 1462, - [1497] = 1460, - [1498] = 1465, + [1496] = 1496, + [1497] = 1497, + [1498] = 1498, [1499] = 1499, - [1500] = 1473, - [1501] = 1501, - [1502] = 1471, + [1500] = 1464, + [1501] = 1450, + [1502] = 1502, [1503] = 1503, - [1504] = 1461, - [1505] = 1471, - [1506] = 1506, + [1504] = 1504, + [1505] = 1455, + [1506] = 1485, [1507] = 1507, - [1508] = 1471, - [1509] = 1473, - [1510] = 1462, - [1511] = 1465, - [1512] = 1461, - [1513] = 1465, + [1508] = 1508, + [1509] = 1451, + [1510] = 1510, + [1511] = 1511, + [1512] = 1512, + [1513] = 1513, [1514] = 1514, - [1515] = 1471, - [1516] = 1473, - [1517] = 1517, - [1518] = 1518, + [1515] = 1502, + [1516] = 1516, + [1517] = 1503, + [1518] = 1504, [1519] = 1519, [1520] = 1520, - [1521] = 1521, - [1522] = 1522, - [1523] = 1523, - [1524] = 1524, - [1525] = 1518, - [1526] = 1526, - [1527] = 1518, - [1528] = 1528, - [1529] = 1529, + [1521] = 1508, + [1522] = 1451, + [1523] = 1450, + [1524] = 1502, + [1525] = 1503, + [1526] = 1504, + [1527] = 1485, + [1528] = 1508, + [1529] = 1451, [1530] = 1530, - [1531] = 1518, + [1531] = 1457, [1532] = 1532, - [1533] = 1518, - [1534] = 1534, - [1535] = 1434, + [1533] = 1457, + [1534] = 1450, + [1535] = 1502, [1536] = 1536, - [1537] = 1537, - [1538] = 1538, + [1537] = 1503, + [1538] = 1504, [1539] = 1539, [1540] = 1540, - [1541] = 1541, - [1542] = 1432, + [1541] = 1485, + [1542] = 804, [1543] = 1543, - [1544] = 1544, - [1545] = 1478, - [1546] = 1518, + [1544] = 1508, + [1545] = 1508, + [1546] = 1546, [1547] = 1547, - [1548] = 1548, - [1549] = 1549, + [1548] = 1455, + [1549] = 1451, [1550] = 1550, [1551] = 1551, - [1552] = 1552, - [1553] = 1553, - [1554] = 1554, - [1555] = 1555, - [1556] = 1556, + [1552] = 1485, + [1553] = 1504, + [1554] = 1503, + [1555] = 1502, + [1556] = 1450, [1557] = 1557, - [1558] = 1558, + [1558] = 1532, [1559] = 1559, - [1560] = 1560, - [1561] = 1561, - [1562] = 1562, + [1560] = 1450, + [1561] = 1502, + [1562] = 1503, [1563] = 1563, - [1564] = 1558, - [1565] = 1565, - [1566] = 1566, - [1567] = 1559, - [1568] = 1568, - [1569] = 1450, + [1564] = 1504, + [1565] = 1485, + [1566] = 1508, + [1567] = 1464, + [1568] = 1451, + [1569] = 1532, [1570] = 1570, [1571] = 1571, [1572] = 1572, [1573] = 1573, - [1574] = 1549, + [1574] = 1574, [1575] = 1575, [1576] = 1576, - [1577] = 1570, - [1578] = 1551, + [1577] = 1577, + [1578] = 1578, [1579] = 1579, - [1580] = 1167, + [1580] = 1580, [1581] = 1581, [1582] = 1582, [1583] = 1583, - [1584] = 1552, + [1584] = 1584, [1585] = 1585, - [1586] = 1570, + [1586] = 1586, [1587] = 1587, [1588] = 1588, - [1589] = 1556, - [1590] = 1573, - [1591] = 1559, + [1589] = 1589, + [1590] = 1590, + [1591] = 1591, [1592] = 1592, - [1593] = 1557, - [1594] = 1555, - [1595] = 1558, - [1596] = 1558, + [1593] = 1593, + [1594] = 1594, + [1595] = 1595, + [1596] = 1596, [1597] = 1597, - [1598] = 1559, - [1599] = 1571, - [1600] = 1570, - [1601] = 1549, - [1602] = 1602, + [1598] = 1598, + [1599] = 1599, + [1600] = 1600, + [1601] = 1601, + [1602] = 1600, [1603] = 1603, - [1604] = 1557, - [1605] = 1571, - [1606] = 1557, - [1607] = 1549, + [1604] = 1596, + [1605] = 1583, + [1606] = 1606, + [1607] = 1607, [1608] = 1608, - [1609] = 1556, - [1610] = 1552, - [1611] = 1552, - [1612] = 1549, - [1613] = 1556, - [1614] = 1571, + [1609] = 1609, + [1610] = 1610, + [1611] = 1611, + [1612] = 1583, + [1613] = 1613, + [1614] = 1596, [1615] = 1615, - [1616] = 1616, - [1617] = 1617, - [1618] = 860, - [1619] = 1619, - [1620] = 1579, - [1621] = 1557, - [1622] = 1570, + [1616] = 1600, + [1617] = 1583, + [1618] = 1618, + [1619] = 1596, + [1620] = 1600, + [1621] = 1621, + [1622] = 1622, [1623] = 1623, - [1624] = 1558, - [1625] = 1559, + [1624] = 1624, + [1625] = 1625, [1626] = 1626, - [1627] = 1572, + [1627] = 1627, [1628] = 1628, - [1629] = 1629, + [1629] = 1599, [1630] = 1630, [1631] = 1631, - [1632] = 1572, - [1633] = 1581, - [1634] = 1576, - [1635] = 1554, - [1636] = 1636, - [1637] = 1576, + [1632] = 1632, + [1633] = 1633, + [1634] = 1634, + [1635] = 1603, + [1636] = 1599, + [1637] = 1637, [1638] = 1638, - [1639] = 1570, - [1640] = 1571, + [1639] = 1639, + [1640] = 1640, [1641] = 1641, - [1642] = 1549, - [1643] = 1552, - [1644] = 1556, - [1645] = 1645, - [1646] = 1557, - [1647] = 1558, + [1642] = 1642, + [1643] = 1609, + [1644] = 1599, + [1645] = 1609, + [1646] = 1646, + [1647] = 1647, [1648] = 1648, - [1649] = 1555, - [1650] = 1571, - [1651] = 1576, - [1652] = 1559, + [1649] = 1649, + [1650] = 1600, + [1651] = 1596, + [1652] = 1652, [1653] = 1653, - [1654] = 1654, + [1654] = 1583, [1655] = 1655, [1656] = 1656, - [1657] = 1657, + [1657] = 1583, [1658] = 1658, - [1659] = 1576, - [1660] = 1556, - [1661] = 1661, + [1659] = 1659, + [1660] = 1660, + [1661] = 1603, [1662] = 1662, - [1663] = 1555, + [1663] = 1663, [1664] = 1664, - [1665] = 1665, + [1665] = 1599, [1666] = 1666, [1667] = 1667, - [1668] = 1668, - [1669] = 1555, - [1670] = 1576, - [1671] = 1623, + [1668] = 1599, + [1669] = 1669, + [1670] = 1670, + [1671] = 1671, [1672] = 1672, - [1673] = 1673, - [1674] = 1552, + [1673] = 1609, + [1674] = 1674, [1675] = 1675, - [1676] = 1562, - [1677] = 1619, + [1676] = 1676, + [1677] = 1677, [1678] = 1678, - [1679] = 1645, + [1679] = 1679, [1680] = 1680, - [1681] = 1681, + [1681] = 1603, [1682] = 1682, [1683] = 1683, - [1684] = 1566, + [1684] = 1684, [1685] = 1685, - [1686] = 1555, + [1686] = 1686, [1687] = 1687, - [1688] = 1688, + [1688] = 1609, [1689] = 1689, - [1690] = 1576, - [1691] = 1691, + [1690] = 1690, + [1691] = 1599, [1692] = 1692, [1693] = 1693, [1694] = 1694, - [1695] = 1695, - [1696] = 1696, + [1695] = 1603, + [1696] = 1603, [1697] = 1697, [1698] = 1698, - [1699] = 1699, - [1700] = 1700, - [1701] = 1698, - [1702] = 1702, - [1703] = 1703, + [1699] = 1600, + [1700] = 1596, + [1701] = 1701, + [1702] = 1609, + [1703] = 1583, [1704] = 1704, [1705] = 1705, [1706] = 1706, [1707] = 1707, - [1708] = 1697, + [1708] = 1708, [1709] = 1709, - [1710] = 1696, + [1710] = 1710, [1711] = 1711, [1712] = 1712, [1713] = 1713, - [1714] = 1705, - [1715] = 1707, + [1714] = 1714, + [1715] = 1715, [1716] = 1716, [1717] = 1717, - [1718] = 1718, - [1719] = 1712, - [1720] = 1712, + [1718] = 1709, + [1719] = 1719, + [1720] = 1720, [1721] = 1721, - [1722] = 1722, - [1723] = 1723, - [1724] = 1724, + [1722] = 1708, + [1723] = 1707, + [1724] = 1706, [1725] = 1725, [1726] = 1726, - [1727] = 1727, + [1727] = 1725, [1728] = 1728, - [1729] = 1705, - [1730] = 1730, - [1731] = 1707, - [1732] = 1732, + [1729] = 1729, + [1730] = 1714, + [1731] = 1731, + [1732] = 1712, [1733] = 1733, [1734] = 1734, [1735] = 1735, - [1736] = 1736, - [1737] = 1712, + [1736] = 1719, + [1737] = 1719, [1738] = 1738, - [1739] = 1188, - [1740] = 1592, + [1739] = 1716, + [1740] = 1740, [1741] = 1741, - [1742] = 1705, - [1743] = 1743, - [1744] = 1692, - [1745] = 1707, - [1746] = 1746, - [1747] = 1747, - [1748] = 1712, - [1749] = 1749, + [1742] = 1706, + [1743] = 1707, + [1744] = 1709, + [1745] = 1708, + [1746] = 1713, + [1747] = 1709, + [1748] = 1708, + [1749] = 1717, [1750] = 1750, [1751] = 1751, - [1752] = 1752, - [1753] = 1753, - [1754] = 1693, - [1755] = 1755, - [1756] = 1756, + [1752] = 1707, + [1753] = 1726, + [1754] = 1706, + [1755] = 1712, + [1756] = 1714, [1757] = 1757, [1758] = 1758, [1759] = 1759, - [1760] = 1705, + [1760] = 1760, [1761] = 1761, [1762] = 1762, - [1763] = 1707, + [1763] = 1763, [1764] = 1764, [1765] = 1765, - [1766] = 1691, - [1767] = 1726, - [1768] = 1727, - [1769] = 1769, - [1770] = 1770, + [1766] = 1766, + [1767] = 1767, + [1768] = 1768, + [1769] = 1716, + [1770] = 1768, [1771] = 1771, - [1772] = 1772, - [1773] = 1712, - [1774] = 1774, - [1775] = 1758, + [1772] = 1765, + [1773] = 1773, + [1774] = 1759, + [1775] = 1775, [1776] = 1776, [1777] = 1777, - [1778] = 1778, - [1779] = 1769, - [1780] = 1705, - [1781] = 1781, - [1782] = 1782, - [1783] = 1783, - [1784] = 1629, + [1778] = 1763, + [1779] = 1719, + [1780] = 1738, + [1781] = 1714, + [1782] = 1738, + [1783] = 1712, + [1784] = 1784, [1785] = 1785, - [1786] = 1786, - [1787] = 1787, - [1788] = 1692, - [1789] = 1693, + [1786] = 1725, + [1787] = 1710, + [1788] = 1725, + [1789] = 1738, [1790] = 1790, - [1791] = 1776, - [1792] = 1732, - [1793] = 1735, - [1794] = 1736, - [1795] = 1795, + [1791] = 1759, + [1792] = 1759, + [1793] = 1726, + [1794] = 1710, + [1795] = 1768, [1796] = 1796, - [1797] = 1770, - [1798] = 1692, - [1799] = 1583, - [1800] = 1800, - [1801] = 1801, - [1802] = 1693, - [1803] = 1726, - [1804] = 1727, + [1797] = 1765, + [1798] = 1709, + [1799] = 1763, + [1800] = 1708, + [1801] = 1707, + [1802] = 1717, + [1803] = 1706, + [1804] = 1713, [1805] = 1805, - [1806] = 1732, - [1807] = 1735, - [1808] = 1736, - [1809] = 1809, + [1806] = 1716, + [1807] = 1726, + [1808] = 1808, + [1809] = 1717, [1810] = 1810, - [1811] = 1811, - [1812] = 1738, - [1813] = 1721, + [1811] = 1713, + [1812] = 1719, + [1813] = 1813, [1814] = 1814, - [1815] = 1716, - [1816] = 1816, + [1815] = 1815, + [1816] = 1714, [1817] = 1817, [1818] = 1818, [1819] = 1819, - [1820] = 1736, - [1821] = 1692, - [1822] = 1822, - [1823] = 1704, - [1824] = 1735, - [1825] = 1825, - [1826] = 1826, - [1827] = 1707, - [1828] = 1828, - [1829] = 1693, - [1830] = 1830, + [1820] = 1820, + [1821] = 1821, + [1822] = 1712, + [1823] = 1713, + [1824] = 1824, + [1825] = 1716, + [1826] = 1717, + [1827] = 1827, + [1828] = 1709, + [1829] = 1708, + [1830] = 1726, [1831] = 1831, - [1832] = 1736, - [1833] = 1735, - [1834] = 1764, + [1832] = 1707, + [1833] = 1768, + [1834] = 1834, [1835] = 1835, - [1836] = 1726, - [1837] = 1732, - [1838] = 1692, - [1839] = 1727, - [1840] = 1732, - [1841] = 1727, - [1842] = 1726, + [1836] = 1706, + [1837] = 1837, + [1838] = 1838, + [1839] = 1839, + [1840] = 1763, + [1841] = 1765, + [1842] = 1842, [1843] = 1843, - [1844] = 1735, - [1845] = 1736, - [1846] = 1761, - [1847] = 1847, - [1848] = 1848, - [1849] = 1849, - [1850] = 1850, - [1851] = 1698, - [1852] = 1852, - [1853] = 1697, - [1854] = 1854, - [1855] = 1696, - [1856] = 1585, - [1857] = 1692, - [1858] = 1693, - [1859] = 1859, - [1860] = 1726, - [1861] = 1861, + [1844] = 1768, + [1845] = 1845, + [1846] = 1846, + [1847] = 1759, + [1848] = 1716, + [1849] = 1738, + [1850] = 1712, + [1851] = 1725, + [1852] = 1719, + [1853] = 1853, + [1854] = 1710, + [1855] = 1710, + [1856] = 1856, + [1857] = 1424, + [1858] = 1421, + [1859] = 1714, + [1860] = 1860, + [1861] = 1710, [1862] = 1862, [1863] = 1863, [1864] = 1864, [1865] = 1865, - [1866] = 1866, - [1867] = 1736, - [1868] = 1587, - [1869] = 1735, - [1870] = 1732, + [1866] = 1713, + [1867] = 1717, + [1868] = 1726, + [1869] = 1869, + [1870] = 1870, [1871] = 1871, - [1872] = 1765, - [1873] = 1873, - [1874] = 1732, + [1872] = 1763, + [1873] = 1763, + [1874] = 1765, [1875] = 1875, - [1876] = 1693, + [1876] = 1876, [1877] = 1877, - [1878] = 1878, - [1879] = 1879, + [1878] = 1765, + [1879] = 1768, [1880] = 1880, - [1881] = 1727, + [1881] = 1759, [1882] = 1882, - [1883] = 1883, + [1883] = 1738, [1884] = 1884, [1885] = 1885, - [1886] = 1886, + [1886] = 1725, [1887] = 1887, - [1888] = 1888, + [1888] = 1710, [1889] = 1889, [1890] = 1890, [1891] = 1891, @@ -5258,7 +5230,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1893] = 1893, [1894] = 1894, [1895] = 1895, - [1896] = 1891, + [1896] = 1896, [1897] = 1897, [1898] = 1898, [1899] = 1899, @@ -5267,481 +5239,330 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1902] = 1902, [1903] = 1903, [1904] = 1904, - [1905] = 1884, + [1905] = 1905, [1906] = 1906, - [1907] = 1893, + [1907] = 1907, [1908] = 1908, [1909] = 1909, [1910] = 1910, [1911] = 1911, - [1912] = 1908, + [1912] = 1912, [1913] = 1913, - [1914] = 1894, - [1915] = 1909, + [1914] = 1914, + [1915] = 1915, [1916] = 1916, [1917] = 1917, - [1918] = 1897, - [1919] = 1898, + [1918] = 1918, + [1919] = 1919, [1920] = 1920, - [1921] = 1900, - [1922] = 1901, - [1923] = 1904, - [1924] = 1884, + [1921] = 1921, + [1922] = 1922, + [1923] = 1923, + [1924] = 1924, [1925] = 1925, - [1926] = 1908, + [1926] = 1926, [1927] = 1927, - [1928] = 1909, - [1929] = 1929, - [1930] = 1930, - [1931] = 1931, - [1932] = 1932, - [1933] = 1894, + [1928] = 1928, + [1929] = 1899, + [1930] = 1911, + [1931] = 1916, + [1932] = 1920, + [1933] = 1921, [1934] = 1934, - [1935] = 1898, + [1935] = 1935, [1936] = 1936, [1937] = 1937, - [1938] = 1900, - [1939] = 1901, - [1940] = 1904, - [1941] = 1884, - [1942] = 1908, - [1943] = 1909, - [1944] = 1944, - [1945] = 1945, - [1946] = 1891, - [1947] = 1537, - [1948] = 1893, - [1949] = 1526, - [1950] = 1950, - [1951] = 1894, - [1952] = 1897, - [1953] = 1898, + [1938] = 1928, + [1939] = 1939, + [1940] = 1940, + [1941] = 1898, + [1942] = 1942, + [1943] = 1900, + [1944] = 1903, + [1945] = 1907, + [1946] = 1908, + [1947] = 1947, + [1948] = 1948, + [1949] = 1917, + [1950] = 1918, + [1951] = 1919, + [1952] = 1952, + [1953] = 1953, [1954] = 1954, - [1955] = 1955, - [1956] = 1956, - [1957] = 1957, - [1958] = 1958, - [1959] = 1900, - [1960] = 1901, - [1961] = 1904, - [1962] = 1902, - [1963] = 1884, - [1964] = 1903, - [1965] = 1965, - [1966] = 1908, - [1967] = 1909, + [1955] = 1915, + [1956] = 1915, + [1957] = 1914, + [1958] = 1913, + [1959] = 1959, + [1960] = 1918, + [1961] = 1937, + [1962] = 1962, + [1963] = 1963, + [1964] = 1947, + [1965] = 1948, + [1966] = 1918, + [1967] = 1967, [1968] = 1968, - [1969] = 1906, - [1970] = 1970, + [1969] = 1969, + [1970] = 1893, [1971] = 1971, - [1972] = 1972, - [1973] = 1910, + [1972] = 1895, + [1973] = 1973, [1974] = 1974, - [1975] = 1975, - [1976] = 1894, - [1977] = 1977, + [1975] = 1895, + [1976] = 1893, + [1977] = 1969, [1978] = 1978, - [1979] = 1979, - [1980] = 1917, + [1979] = 1948, + [1980] = 1947, [1981] = 1981, - [1982] = 1902, + [1982] = 1908, [1983] = 1983, - [1984] = 1920, - [1985] = 1985, + [1984] = 1984, + [1985] = 1937, [1986] = 1986, - [1987] = 1898, - [1988] = 1903, - [1989] = 1906, - [1990] = 1920, - [1991] = 1991, - [1992] = 1894, - [1993] = 1993, - [1994] = 1900, - [1995] = 1901, + [1987] = 1987, + [1988] = 1988, + [1989] = 1907, + [1990] = 1913, + [1991] = 1914, + [1992] = 1915, + [1993] = 1917, + [1994] = 1325, + [1995] = 1903, [1996] = 1996, - [1997] = 1904, - [1998] = 1884, + [1997] = 1919, + [1998] = 1998, [1999] = 1999, [2000] = 2000, - [2001] = 1917, - [2002] = 2002, - [2003] = 1902, - [2004] = 1903, + [2001] = 1918, + [2002] = 1917, + [2003] = 2003, + [2004] = 2004, [2005] = 1908, - [2006] = 1909, - [2007] = 1910, - [2008] = 2008, - [2009] = 1885, - [2010] = 1999, - [2011] = 2011, - [2012] = 2012, - [2013] = 2013, - [2014] = 1917, - [2015] = 2015, - [2016] = 2016, - [2017] = 2017, - [2018] = 2018, + [2006] = 1899, + [2007] = 1911, + [2008] = 1916, + [2009] = 1920, + [2010] = 1921, + [2011] = 1899, + [2012] = 1907, + [2013] = 1903, + [2014] = 1911, + [2015] = 1928, + [2016] = 1916, + [2017] = 1900, + [2018] = 1898, [2019] = 2019, - [2020] = 1891, - [2021] = 1906, - [2022] = 1898, - [2023] = 1893, - [2024] = 1920, + [2020] = 1900, + [2021] = 1903, + [2022] = 1907, + [2023] = 1908, + [2024] = 2024, [2025] = 2025, - [2026] = 2026, - [2027] = 1897, - [2028] = 1910, - [2029] = 1917, - [2030] = 2030, - [2031] = 1910, - [2032] = 2032, - [2033] = 2033, - [2034] = 1891, - [2035] = 1906, - [2036] = 2036, - [2037] = 1902, - [2038] = 2038, - [2039] = 1903, - [2040] = 2040, - [2041] = 1903, - [2042] = 1893, - [2043] = 1902, - [2044] = 1906, - [2045] = 1893, + [2026] = 1917, + [2027] = 1918, + [2028] = 1919, + [2029] = 1898, + [2030] = 1928, + [2031] = 2031, + [2032] = 1947, + [2033] = 1948, + [2034] = 1921, + [2035] = 1920, + [2036] = 1914, + [2037] = 1915, + [2038] = 1916, + [2039] = 1911, + [2040] = 1899, + [2041] = 2025, + [2042] = 2042, + [2043] = 1987, + [2044] = 2044, + [2045] = 2045, [2046] = 2046, [2047] = 2047, - [2048] = 1910, - [2049] = 2049, - [2050] = 2050, - [2051] = 1897, + [2048] = 1915, + [2049] = 1900, + [2050] = 1914, + [2051] = 1913, [2052] = 2052, - [2053] = 1904, - [2054] = 1920, - [2055] = 1917, + [2053] = 2053, + [2054] = 2054, + [2055] = 2055, [2056] = 2056, - [2057] = 1897, - [2058] = 1900, - [2059] = 1920, - [2060] = 1901, - [2061] = 1891, - [2062] = 2062, + [2057] = 2057, + [2058] = 1914, + [2059] = 2059, + [2060] = 1969, + [2061] = 2061, + [2062] = 1947, [2063] = 2063, [2064] = 2064, [2065] = 2065, - [2066] = 2066, + [2066] = 1895, [2067] = 2067, - [2068] = 2068, - [2069] = 2069, - [2070] = 2070, + [2068] = 1913, + [2069] = 1983, + [2070] = 1893, [2071] = 2071, [2072] = 2072, - [2073] = 2068, - [2074] = 2074, + [2073] = 1969, + [2074] = 2000, [2075] = 2075, [2076] = 2076, [2077] = 2077, [2078] = 2078, [2079] = 2079, - [2080] = 2080, - [2081] = 2081, - [2082] = 2082, + [2080] = 1987, + [2081] = 1948, + [2082] = 1947, [2083] = 2083, [2084] = 2084, - [2085] = 2078, + [2085] = 2085, [2086] = 2086, [2087] = 2087, - [2088] = 2088, - [2089] = 2089, - [2090] = 2090, - [2091] = 2091, + [2088] = 2063, + [2089] = 1937, + [2090] = 1919, + [2091] = 2077, [2092] = 2092, - [2093] = 2093, + [2093] = 1917, [2094] = 2094, [2095] = 2095, [2096] = 2096, [2097] = 2097, - [2098] = 2098, - [2099] = 2076, - [2100] = 2100, - [2101] = 2101, - [2102] = 2102, - [2103] = 2103, - [2104] = 2104, - [2105] = 2105, - [2106] = 2106, - [2107] = 2107, + [2098] = 1897, + [2099] = 2063, + [2100] = 1895, + [2101] = 1925, + [2102] = 2025, + [2103] = 1926, + [2104] = 1983, + [2105] = 1908, + [2106] = 1907, + [2107] = 1903, [2108] = 2108, - [2109] = 2109, - [2110] = 2074, - [2111] = 2111, - [2112] = 2095, - [2113] = 2069, - [2114] = 2079, - [2115] = 2080, - [2116] = 2081, - [2117] = 2117, + [2109] = 1898, + [2110] = 2110, + [2111] = 1987, + [2112] = 1893, + [2113] = 1969, + [2114] = 2003, + [2115] = 2115, + [2116] = 2116, + [2117] = 1900, [2118] = 2118, - [2119] = 2067, - [2120] = 2111, - [2121] = 2109, - [2122] = 2122, + [2119] = 1898, + [2120] = 2120, + [2121] = 1928, + [2122] = 1928, [2123] = 2123, - [2124] = 2067, - [2125] = 2068, - [2126] = 2069, - [2127] = 2070, - [2128] = 2071, - [2129] = 2129, + [2124] = 2124, + [2125] = 1921, + [2126] = 1920, + [2127] = 2127, + [2128] = 2063, + [2129] = 1916, [2130] = 2130, - [2131] = 2131, - [2132] = 2074, - [2133] = 2133, + [2131] = 1911, + [2132] = 1899, + [2133] = 1983, [2134] = 2134, - [2135] = 2076, + [2135] = 2135, [2136] = 2136, - [2137] = 2078, - [2138] = 2079, - [2139] = 2080, - [2140] = 2081, + [2137] = 1940, + [2138] = 2071, + [2139] = 2139, + [2140] = 1987, [2141] = 2141, - [2142] = 2142, - [2143] = 2098, + [2142] = 1915, + [2143] = 2143, [2144] = 2144, - [2145] = 2084, - [2146] = 2146, + [2145] = 1948, + [2146] = 1914, [2147] = 2147, - [2148] = 2096, - [2149] = 2092, - [2150] = 2093, + [2148] = 1913, + [2149] = 2149, + [2150] = 2150, [2151] = 2151, - [2152] = 2093, - [2153] = 2098, - [2154] = 2111, - [2155] = 2071, - [2156] = 2070, - [2157] = 2157, - [2158] = 2096, - [2159] = 2064, - [2160] = 2064, + [2152] = 2152, + [2153] = 2153, + [2154] = 2154, + [2155] = 2155, + [2156] = 2156, + [2157] = 2063, + [2158] = 2158, + [2159] = 1921, + [2160] = 2160, [2161] = 2161, - [2162] = 2162, - [2163] = 1431, - [2164] = 2095, + [2162] = 1983, + [2163] = 2163, + [2164] = 2164, [2165] = 2165, - [2166] = 2166, - [2167] = 2167, - [2168] = 2070, - [2169] = 2109, - [2170] = 2071, + [2166] = 1920, + [2167] = 1895, + [2168] = 2168, + [2169] = 1987, + [2170] = 2170, [2171] = 2171, [2172] = 2172, - [2173] = 2093, - [2174] = 2069, - [2175] = 2068, - [2176] = 2067, - [2177] = 2092, - [2178] = 2178, - [2179] = 2167, + [2173] = 1893, + [2174] = 1969, + [2175] = 2175, + [2176] = 2176, + [2177] = 1948, + [2178] = 1947, + [2179] = 2179, [2180] = 2180, [2181] = 2181, - [2182] = 2091, - [2183] = 2084, + [2182] = 2182, + [2183] = 1937, [2184] = 2184, - [2185] = 2185, - [2186] = 2186, + [2185] = 1919, + [2186] = 2063, [2187] = 2187, [2188] = 2188, - [2189] = 2084, - [2190] = 2083, - [2191] = 2191, - [2192] = 2192, - [2193] = 2091, - [2194] = 2194, + [2189] = 2189, + [2190] = 1919, + [2191] = 1983, + [2192] = 2077, + [2193] = 1937, + [2194] = 1918, [2195] = 2195, - [2196] = 2196, - [2197] = 2197, - [2198] = 2081, - [2199] = 2167, - [2200] = 2200, - [2201] = 2080, - [2202] = 2079, - [2203] = 2078, - [2204] = 2076, - [2205] = 2074, - [2206] = 2206, - [2207] = 2076, - [2208] = 2071, - [2209] = 2093, - [2210] = 2210, - [2211] = 2184, + [2196] = 1917, + [2197] = 2094, + [2198] = 1987, + [2199] = 2199, + [2200] = 2152, + [2201] = 2025, + [2202] = 2202, + [2203] = 2097, + [2204] = 2204, + [2205] = 2205, + [2206] = 2083, + [2207] = 2152, + [2208] = 2208, + [2209] = 2209, + [2210] = 2097, + [2211] = 2211, [2212] = 2212, - [2213] = 2070, - [2214] = 2214, + [2213] = 2213, + [2214] = 2097, [2215] = 2215, [2216] = 2216, - [2217] = 2069, - [2218] = 2068, - [2219] = 2067, + [2217] = 2217, + [2218] = 2097, + [2219] = 2219, [2220] = 2220, - [2221] = 2111, - [2222] = 2222, - [2223] = 2093, - [2224] = 2224, - [2225] = 2210, + [2221] = 2221, + [2222] = 2097, + [2223] = 2223, + [2224] = 2025, + [2225] = 2025, [2226] = 2226, [2227] = 2227, - [2228] = 2092, - [2229] = 2229, - [2230] = 2230, - [2231] = 2231, - [2232] = 2232, - [2233] = 2233, - [2234] = 2234, - [2235] = 2235, - [2236] = 2180, - [2237] = 2237, - [2238] = 2092, - [2239] = 2239, - [2240] = 2095, - [2241] = 2111, - [2242] = 2083, - [2243] = 2079, - [2244] = 2244, - [2245] = 2109, - [2246] = 2246, - [2247] = 2247, - [2248] = 2248, - [2249] = 2249, - [2250] = 2250, - [2251] = 2167, - [2252] = 2252, - [2253] = 2253, - [2254] = 2078, - [2255] = 2064, - [2256] = 2256, - [2257] = 2214, - [2258] = 2258, - [2259] = 2259, - [2260] = 2215, - [2261] = 2261, - [2262] = 2262, - [2263] = 2263, - [2264] = 2264, - [2265] = 2265, - [2266] = 2266, - [2267] = 2267, - [2268] = 2098, - [2269] = 2096, - [2270] = 2095, - [2271] = 2093, - [2272] = 2083, - [2273] = 2273, - [2274] = 2180, - [2275] = 2261, - [2276] = 2092, - [2277] = 2084, - [2278] = 2278, - [2279] = 2091, - [2280] = 2280, - [2281] = 2281, - [2282] = 2282, - [2283] = 2283, - [2284] = 2064, - [2285] = 2091, - [2286] = 2286, - [2287] = 2287, - [2288] = 2288, - [2289] = 2109, - [2290] = 2290, - [2291] = 2111, - [2292] = 2084, - [2293] = 2180, - [2294] = 2081, - [2295] = 2141, - [2296] = 2296, - [2297] = 2080, - [2298] = 2079, - [2299] = 2078, - [2300] = 2300, - [2301] = 2083, - [2302] = 2302, - [2303] = 2303, - [2304] = 2074, - [2305] = 2076, - [2306] = 2074, - [2307] = 2307, - [2308] = 2071, - [2309] = 2070, - [2310] = 2069, - [2311] = 2216, - [2312] = 2312, - [2313] = 2064, - [2314] = 2314, - [2315] = 2068, - [2316] = 2316, - [2317] = 2317, - [2318] = 2072, - [2319] = 2319, - [2320] = 2320, - [2321] = 2067, - [2322] = 2322, - [2323] = 2323, - [2324] = 2091, - [2325] = 2325, - [2326] = 2326, - [2327] = 2327, - [2328] = 2328, - [2329] = 2111, - [2330] = 2083, - [2331] = 2109, - [2332] = 2133, - [2333] = 2333, - [2334] = 2334, - [2335] = 2335, - [2336] = 2336, - [2337] = 2337, - [2338] = 2130, - [2339] = 2084, - [2340] = 2340, - [2341] = 2341, - [2342] = 2064, - [2343] = 2343, - [2344] = 2325, - [2345] = 2320, - [2346] = 2346, - [2347] = 2098, - [2348] = 2348, - [2349] = 2349, - [2350] = 2151, - [2351] = 2351, - [2352] = 2352, - [2353] = 2157, - [2354] = 2096, - [2355] = 2355, - [2356] = 2325, - [2357] = 2320, - [2358] = 2098, - [2359] = 2359, - [2360] = 2151, - [2361] = 2361, - [2362] = 2095, - [2363] = 2363, - [2364] = 2151, - [2365] = 2365, - [2366] = 2081, - [2367] = 2096, - [2368] = 2151, - [2369] = 2092, - [2370] = 2080, - [2371] = 2371, - [2372] = 2151, - [2373] = 2373, - [2374] = 2087, - [2375] = 2167, - [2376] = 2167, - [2377] = 2377, - [2378] = 2378, - [2379] = 2379, + [2228] = 2228, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -5749,731 +5570,709 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(180); + if (eof) ADVANCE(179); if (lookahead == '\r') SKIP(0); - if (lookahead == '!') ADVANCE(540); - if (lookahead == '"') ADVANCE(195); - if (lookahead == '#') ADVANCE(58); + if (lookahead == '!') ADVANCE(535); + if (lookahead == '"') ADVANCE(194); + if (lookahead == '#') ADVANCE(57); if (lookahead == '$') ADVANCE(27); - if (lookahead == '%') ADVANCE(546); - if (lookahead == '&') ADVANCE(441); - if (lookahead == '\'') ADVANCE(190); - if (lookahead == '(') ADVANCE(436); - if (lookahead == ')') ADVANCE(437); - if (lookahead == '*') ADVANCE(472); - if (lookahead == '+') ADVANCE(461); - if (lookahead == ',') ADVANCE(429); - if (lookahead == '-') ADVANCE(465); - if (lookahead == '.') ADVANCE(454); - if (lookahead == '/') ADVANCE(545); - if (lookahead == '0') ADVANCE(183); - if (lookahead == ':') ADVANCE(450); - if (lookahead == ';') ADVANCE(445); - if (lookahead == '<') ADVANCE(557); - if (lookahead == '=') ADVANCE(434); - if (lookahead == '>') ADVANCE(553); - if (lookahead == '?') ADVANCE(535); - if (lookahead == '@') ADVANCE(59); - if (lookahead == '[') ADVANCE(443); - if (lookahead == '\\') ADVANCE(56); - if (lookahead == ']') ADVANCE(444); - if (lookahead == '^') ADVANCE(550); - if (lookahead == '_') ADVANCE(63); - if (lookahead == '`') ADVANCE(200); - if (lookahead == 'b') ADVANCE(216); - if (lookahead == 'x') ADVANCE(213); - if (lookahead == '{') ADVANCE(447); - if (lookahead == '|') ADVANCE(548); - if (lookahead == '}') ADVANCE(448); - if (lookahead == '~') ADVANCE(542); + if (lookahead == '%') ADVANCE(540); + if (lookahead == '&') ADVANCE(440); + if (lookahead == '\'') ADVANCE(189); + if (lookahead == '(') ADVANCE(435); + if (lookahead == ')') ADVANCE(436); + if (lookahead == '*') ADVANCE(469); + if (lookahead == '+') ADVANCE(460); + if (lookahead == ',') ADVANCE(428); + if (lookahead == '-') ADVANCE(463); + if (lookahead == '.') ADVANCE(453); + if (lookahead == '/') ADVANCE(539); + if (lookahead == '0') ADVANCE(182); + if (lookahead == ':') ADVANCE(449); + if (lookahead == ';') ADVANCE(444); + if (lookahead == '<') ADVANCE(551); + if (lookahead == '=') ADVANCE(433); + if (lookahead == '>') ADVANCE(547); + if (lookahead == '?') ADVANCE(531); + if (lookahead == '@') ADVANCE(58); + if (lookahead == '[') ADVANCE(442); + if (lookahead == '\\') ADVANCE(55); + if (lookahead == ']') ADVANCE(443); + if (lookahead == '^') ADVANCE(544); + if (lookahead == '_') ADVANCE(62); + if (lookahead == '`') ADVANCE(199); + if (lookahead == 'b') ADVANCE(215); + if (lookahead == 'x') ADVANCE(212); + if (lookahead == '{') ADVANCE(446); + if (lookahead == '|') ADVANCE(542); + if (lookahead == '}') ADVANCE(447); + if (lookahead == '~') ADVANCE(536); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(0); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(184); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(422); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(183); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(421); END_STATE(); case 1: - if (lookahead == '\n') SKIP(16); - if (lookahead == '\r') ADVANCE(196); - if (lookahead == '"') ADVANCE(195); - if (lookahead == '/') ADVANCE(198); - if (lookahead == '\\') ADVANCE(56); + if (lookahead == '\n') SKIP(15); + if (lookahead == '\r') ADVANCE(195); + if (lookahead == '"') ADVANCE(194); + if (lookahead == '/') ADVANCE(197); + if (lookahead == '\\') ADVANCE(55); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(196); - if (lookahead != 0) ADVANCE(199); + lookahead == ' ') ADVANCE(195); + if (lookahead != 0) ADVANCE(198); END_STATE(); case 2: if (lookahead == '\n') SKIP(17); - if (lookahead == '\r') ADVANCE(194); - if (lookahead == '/') ADVANCE(192); - if (lookahead == '\\') ADVANCE(193); + if (lookahead == '\r') ADVANCE(193); + if (lookahead == '/') ADVANCE(191); + if (lookahead == '\\') ADVANCE(192); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(194); + lookahead == ' ') ADVANCE(193); if (lookahead != 0 && - lookahead != '\'') ADVANCE(191); + lookahead != '\'') ADVANCE(190); END_STATE(); case 3: if (lookahead == '\r') SKIP(3); - if (lookahead == '!') ADVANCE(538); - if (lookahead == '"') ADVANCE(195); - if (lookahead == '#') ADVANCE(58); + if (lookahead == '!') ADVANCE(534); + if (lookahead == '"') ADVANCE(194); + if (lookahead == '#') ADVANCE(57); if (lookahead == '$') ADVANCE(29); - if (lookahead == '&') ADVANCE(440); - if (lookahead == '\'') ADVANCE(190); - if (lookahead == '(') ADVANCE(435); - if (lookahead == ')') ADVANCE(437); - if (lookahead == '*') ADVANCE(471); - if (lookahead == '+') ADVANCE(460); - if (lookahead == ',') ADVANCE(429); - if (lookahead == '-') ADVANCE(464); - if (lookahead == '.') ADVANCE(456); + if (lookahead == '&') ADVANCE(439); + if (lookahead == '\'') ADVANCE(189); + if (lookahead == '(') ADVANCE(434); + if (lookahead == ')') ADVANCE(436); + if (lookahead == '*') ADVANCE(468); + if (lookahead == '+') ADVANCE(459); + if (lookahead == ',') ADVANCE(428); + if (lookahead == '-') ADVANCE(462); + if (lookahead == '.') ADVANCE(455); if (lookahead == '/') ADVANCE(41); - if (lookahead == '0') ADVANCE(183); - if (lookahead == ':') ADVANCE(450); - if (lookahead == ';') ADVANCE(445); - if (lookahead == '=') ADVANCE(432); - if (lookahead == '?') ADVANCE(534); - if (lookahead == '@') ADVANCE(59); + if (lookahead == '0') ADVANCE(182); + if (lookahead == ':') ADVANCE(448); + if (lookahead == ';') ADVANCE(444); + if (lookahead == '=') ADVANCE(54); + if (lookahead == '>') ADVANCE(39); + if (lookahead == '@') ADVANCE(58); if (lookahead == '[') ADVANCE(442); - if (lookahead == '_') ADVANCE(63); - if (lookahead == '`') ADVANCE(200); - if (lookahead == 'b') ADVANCE(216); - if (lookahead == 'x') ADVANCE(213); - if (lookahead == '{') ADVANCE(447); - if (lookahead == '}') ADVANCE(448); - if (lookahead == '~') ADVANCE(542); + if (lookahead == '_') ADVANCE(62); + if (lookahead == '`') ADVANCE(199); + if (lookahead == 'b') ADVANCE(215); + if (lookahead == 'x') ADVANCE(212); + if (lookahead == '{') ADVANCE(446); + if (lookahead == '}') ADVANCE(447); + if (lookahead == '~') ADVANCE(536); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(3); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(184); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(422); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(183); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(421); END_STATE(); case 4: if (lookahead == '\r') SKIP(4); - if (lookahead == '!') ADVANCE(538); - if (lookahead == '"') ADVANCE(195); - if (lookahead == '#') ADVANCE(58); + if (lookahead == '!') ADVANCE(534); + if (lookahead == '"') ADVANCE(194); + if (lookahead == '#') ADVANCE(57); if (lookahead == '$') ADVANCE(28); - if (lookahead == '&') ADVANCE(440); - if (lookahead == '\'') ADVANCE(190); - if (lookahead == '(') ADVANCE(435); - if (lookahead == ')') ADVANCE(437); - if (lookahead == '*') ADVANCE(471); - if (lookahead == '+') ADVANCE(460); - if (lookahead == '-') ADVANCE(464); + if (lookahead == '&') ADVANCE(439); + if (lookahead == '\'') ADVANCE(189); + if (lookahead == '(') ADVANCE(434); + if (lookahead == ')') ADVANCE(436); + if (lookahead == '*') ADVANCE(468); + if (lookahead == '+') ADVANCE(459); + if (lookahead == ',') ADVANCE(428); + if (lookahead == '-') ADVANCE(462); + if (lookahead == '.') ADVANCE(44); if (lookahead == '/') ADVANCE(41); - if (lookahead == '0') ADVANCE(183); - if (lookahead == ';') ADVANCE(445); - if (lookahead == '=') ADVANCE(55); - if (lookahead == '@') ADVANCE(59); - if (lookahead == '_') ADVANCE(63); - if (lookahead == '`') ADVANCE(200); - if (lookahead == 'b') ADVANCE(216); - if (lookahead == 'x') ADVANCE(213); - if (lookahead == '{') ADVANCE(447); - if (lookahead == '~') ADVANCE(542); + if (lookahead == '0') ADVANCE(182); + if (lookahead == ':') ADVANCE(51); + if (lookahead == ';') ADVANCE(444); + if (lookahead == '=') ADVANCE(431); + if (lookahead == '@') ADVANCE(58); + if (lookahead == '_') ADVANCE(62); + if (lookahead == '`') ADVANCE(199); + if (lookahead == 'b') ADVANCE(215); + if (lookahead == 'x') ADVANCE(212); + if (lookahead == '{') ADVANCE(446); + if (lookahead == '~') ADVANCE(536); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(4); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(184); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(422); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(183); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(421); END_STATE(); case 5: if (lookahead == '\r') SKIP(5); - if (lookahead == '!') ADVANCE(538); - if (lookahead == '"') ADVANCE(195); - if (lookahead == '#') ADVANCE(58); + if (lookahead == '!') ADVANCE(534); + if (lookahead == '"') ADVANCE(194); + if (lookahead == '#') ADVANCE(57); if (lookahead == '$') ADVANCE(30); - if (lookahead == '&') ADVANCE(440); - if (lookahead == '\'') ADVANCE(190); - if (lookahead == '(') ADVANCE(435); - if (lookahead == '*') ADVANCE(471); - if (lookahead == '+') ADVANCE(460); - if (lookahead == '-') ADVANCE(464); + if (lookahead == '&') ADVANCE(439); + if (lookahead == '\'') ADVANCE(189); + if (lookahead == '(') ADVANCE(434); + if (lookahead == '*') ADVANCE(468); + if (lookahead == '+') ADVANCE(459); + if (lookahead == '-') ADVANCE(462); if (lookahead == '/') ADVANCE(41); - if (lookahead == '0') ADVANCE(183); - if (lookahead == ';') ADVANCE(445); - if (lookahead == '@') ADVANCE(62); - if (lookahead == '_') ADVANCE(63); - if (lookahead == '`') ADVANCE(200); - if (lookahead == 'b') ADVANCE(216); - if (lookahead == 'x') ADVANCE(213); - if (lookahead == '{') ADVANCE(447); - if (lookahead == '|') ADVANCE(145); - if (lookahead == '}') ADVANCE(448); - if (lookahead == '~') ADVANCE(542); + if (lookahead == '0') ADVANCE(182); + if (lookahead == ';') ADVANCE(444); + if (lookahead == '@') ADVANCE(61); + if (lookahead == '_') ADVANCE(62); + if (lookahead == '`') ADVANCE(199); + if (lookahead == 'b') ADVANCE(215); + if (lookahead == 'x') ADVANCE(212); + if (lookahead == '{') ADVANCE(446); + if (lookahead == '|') ADVANCE(144); + if (lookahead == '}') ADVANCE(447); + if (lookahead == '~') ADVANCE(536); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(5); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(184); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(422); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(183); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(421); END_STATE(); case 6: if (lookahead == '\r') SKIP(6); - if (lookahead == '!') ADVANCE(538); - if (lookahead == '"') ADVANCE(195); - if (lookahead == '#') ADVANCE(58); + if (lookahead == '!') ADVANCE(534); + if (lookahead == '"') ADVANCE(194); + if (lookahead == '#') ADVANCE(57); if (lookahead == '$') ADVANCE(31); - if (lookahead == '&') ADVANCE(440); - if (lookahead == '\'') ADVANCE(190); - if (lookahead == '(') ADVANCE(435); - if (lookahead == '*') ADVANCE(471); - if (lookahead == '+') ADVANCE(460); - if (lookahead == '-') ADVANCE(464); + if (lookahead == '&') ADVANCE(439); + if (lookahead == '\'') ADVANCE(189); + if (lookahead == '(') ADVANCE(434); + if (lookahead == '*') ADVANCE(468); + if (lookahead == '+') ADVANCE(459); + if (lookahead == '-') ADVANCE(462); if (lookahead == '/') ADVANCE(41); - if (lookahead == '0') ADVANCE(183); - if (lookahead == ';') ADVANCE(445); - if (lookahead == '@') ADVANCE(62); - if (lookahead == '_') ADVANCE(63); - if (lookahead == '`') ADVANCE(200); - if (lookahead == 'b') ADVANCE(216); - if (lookahead == 'x') ADVANCE(213); - if (lookahead == '{') ADVANCE(447); - if (lookahead == '~') ADVANCE(542); + if (lookahead == '0') ADVANCE(182); + if (lookahead == ';') ADVANCE(444); + if (lookahead == '@') ADVANCE(61); + if (lookahead == '_') ADVANCE(62); + if (lookahead == '`') ADVANCE(199); + if (lookahead == 'b') ADVANCE(215); + if (lookahead == 'x') ADVANCE(212); + if (lookahead == '{') ADVANCE(446); + if (lookahead == '~') ADVANCE(536); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(6); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(184); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(422); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(183); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(421); END_STATE(); case 7: if (lookahead == '\r') SKIP(7); - if (lookahead == '!') ADVANCE(541); - if (lookahead == '"') ADVANCE(195); - if (lookahead == '#') ADVANCE(58); + if (lookahead == '!') ADVANCE(535); + if (lookahead == '"') ADVANCE(194); + if (lookahead == '#') ADVANCE(57); if (lookahead == '$') ADVANCE(36); - if (lookahead == '%') ADVANCE(546); - if (lookahead == '&') ADVANCE(441); - if (lookahead == '\'') ADVANCE(190); + if (lookahead == '%') ADVANCE(540); + if (lookahead == '&') ADVANCE(440); + if (lookahead == '\'') ADVANCE(189); if (lookahead == '(') ADVANCE(435); - if (lookahead == ')') ADVANCE(437); - if (lookahead == '*') ADVANCE(472); - if (lookahead == '+') ADVANCE(461); - if (lookahead == ',') ADVANCE(429); - if (lookahead == '-') ADVANCE(465); - if (lookahead == '.') ADVANCE(455); - if (lookahead == '/') ADVANCE(545); - if (lookahead == '0') ADVANCE(183); - if (lookahead == ':') ADVANCE(449); - if (lookahead == ';') ADVANCE(445); - if (lookahead == '<') ADVANCE(557); - if (lookahead == '=') ADVANCE(433); - if (lookahead == '>') ADVANCE(553); - if (lookahead == '?') ADVANCE(535); - if (lookahead == '@') ADVANCE(62); - if (lookahead == ']') ADVANCE(444); - if (lookahead == '^') ADVANCE(550); - if (lookahead == '_') ADVANCE(63); - if (lookahead == '`') ADVANCE(200); - if (lookahead == 'b') ADVANCE(216); - if (lookahead == 'x') ADVANCE(213); - if (lookahead == '{') ADVANCE(447); - if (lookahead == '|') ADVANCE(547); - if (lookahead == '}') ADVANCE(448); - if (lookahead == '~') ADVANCE(542); + if (lookahead == ')') ADVANCE(436); + if (lookahead == '*') ADVANCE(469); + if (lookahead == '+') ADVANCE(460); + if (lookahead == ',') ADVANCE(428); + if (lookahead == '-') ADVANCE(463); + if (lookahead == '.') ADVANCE(454); + if (lookahead == '/') ADVANCE(539); + if (lookahead == '0') ADVANCE(182); + if (lookahead == ':') ADVANCE(448); + if (lookahead == ';') ADVANCE(444); + if (lookahead == '<') ADVANCE(551); + if (lookahead == '=') ADVANCE(432); + if (lookahead == '>') ADVANCE(547); + if (lookahead == '?') ADVANCE(531); + if (lookahead == '@') ADVANCE(61); + if (lookahead == '[') ADVANCE(441); + if (lookahead == ']') ADVANCE(443); + if (lookahead == '^') ADVANCE(544); + if (lookahead == '_') ADVANCE(62); + if (lookahead == '`') ADVANCE(199); + if (lookahead == 'b') ADVANCE(215); + if (lookahead == 'x') ADVANCE(212); + if (lookahead == '{') ADVANCE(446); + if (lookahead == '|') ADVANCE(541); + if (lookahead == '}') ADVANCE(447); + if (lookahead == '~') ADVANCE(536); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(7); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(184); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(422); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(183); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(421); END_STATE(); case 8: if (lookahead == '\r') SKIP(8); - if (lookahead == '!') ADVANCE(540); - if (lookahead == '"') ADVANCE(195); - if (lookahead == '#') ADVANCE(58); + if (lookahead == '!') ADVANCE(535); + if (lookahead == '"') ADVANCE(194); + if (lookahead == '#') ADVANCE(57); if (lookahead == '$') ADVANCE(30); - if (lookahead == '%') ADVANCE(546); - if (lookahead == '&') ADVANCE(441); - if (lookahead == '\'') ADVANCE(190); - if (lookahead == '(') ADVANCE(436); - if (lookahead == '*') ADVANCE(472); - if (lookahead == '+') ADVANCE(461); - if (lookahead == ',') ADVANCE(429); - if (lookahead == '-') ADVANCE(465); - if (lookahead == '.') ADVANCE(453); - if (lookahead == '/') ADVANCE(545); - if (lookahead == '0') ADVANCE(183); - if (lookahead == ';') ADVANCE(445); - if (lookahead == '<') ADVANCE(557); - if (lookahead == '=') ADVANCE(433); - if (lookahead == '>') ADVANCE(554); - if (lookahead == '?') ADVANCE(535); - if (lookahead == '@') ADVANCE(62); - if (lookahead == '[') ADVANCE(442); - if (lookahead == '^') ADVANCE(550); - if (lookahead == '_') ADVANCE(63); - if (lookahead == '`') ADVANCE(200); - if (lookahead == 'b') ADVANCE(216); - if (lookahead == 'x') ADVANCE(213); - if (lookahead == '{') ADVANCE(447); - if (lookahead == '|') ADVANCE(548); - if (lookahead == '}') ADVANCE(448); - if (lookahead == '~') ADVANCE(542); + if (lookahead == '%') ADVANCE(540); + if (lookahead == '&') ADVANCE(440); + if (lookahead == '\'') ADVANCE(189); + if (lookahead == '(') ADVANCE(435); + if (lookahead == '*') ADVANCE(469); + if (lookahead == '+') ADVANCE(460); + if (lookahead == ',') ADVANCE(428); + if (lookahead == '-') ADVANCE(463); + if (lookahead == '.') ADVANCE(452); + if (lookahead == '/') ADVANCE(539); + if (lookahead == '0') ADVANCE(182); + if (lookahead == ';') ADVANCE(444); + if (lookahead == '<') ADVANCE(551); + if (lookahead == '=') ADVANCE(432); + if (lookahead == '>') ADVANCE(548); + if (lookahead == '?') ADVANCE(531); + if (lookahead == '@') ADVANCE(61); + if (lookahead == '[') ADVANCE(441); + if (lookahead == '^') ADVANCE(544); + if (lookahead == '_') ADVANCE(62); + if (lookahead == '`') ADVANCE(199); + if (lookahead == 'b') ADVANCE(215); + if (lookahead == 'x') ADVANCE(212); + if (lookahead == '{') ADVANCE(446); + if (lookahead == '|') ADVANCE(542); + if (lookahead == '}') ADVANCE(447); + if (lookahead == '~') ADVANCE(536); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(8); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(184); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(422); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(183); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(421); END_STATE(); case 9: if (lookahead == '\r') SKIP(9); - if (lookahead == '!') ADVANCE(540); - if (lookahead == '"') ADVANCE(195); - if (lookahead == '#') ADVANCE(58); + if (lookahead == '!') ADVANCE(535); + if (lookahead == '"') ADVANCE(194); + if (lookahead == '#') ADVANCE(57); if (lookahead == '$') ADVANCE(28); - if (lookahead == '%') ADVANCE(546); - if (lookahead == '&') ADVANCE(441); - if (lookahead == '\'') ADVANCE(190); - if (lookahead == '(') ADVANCE(436); - if (lookahead == '*') ADVANCE(472); - if (lookahead == '+') ADVANCE(461); - if (lookahead == '-') ADVANCE(465); - if (lookahead == '.') ADVANCE(453); - if (lookahead == '/') ADVANCE(545); - if (lookahead == '0') ADVANCE(183); - if (lookahead == ';') ADVANCE(445); - if (lookahead == '<') ADVANCE(557); - if (lookahead == '=') ADVANCE(433); - if (lookahead == '>') ADVANCE(554); - if (lookahead == '?') ADVANCE(535); - if (lookahead == '@') ADVANCE(62); - if (lookahead == '[') ADVANCE(442); - if (lookahead == '^') ADVANCE(550); - if (lookahead == '_') ADVANCE(63); - if (lookahead == '`') ADVANCE(200); - if (lookahead == 'b') ADVANCE(216); - if (lookahead == 'x') ADVANCE(213); - if (lookahead == '{') ADVANCE(447); - if (lookahead == '|') ADVANCE(547); - if (lookahead == '~') ADVANCE(542); + if (lookahead == '%') ADVANCE(540); + if (lookahead == '&') ADVANCE(440); + if (lookahead == '\'') ADVANCE(189); + if (lookahead == '(') ADVANCE(435); + if (lookahead == '*') ADVANCE(469); + if (lookahead == '+') ADVANCE(460); + if (lookahead == '-') ADVANCE(463); + if (lookahead == '.') ADVANCE(452); + if (lookahead == '/') ADVANCE(539); + if (lookahead == '0') ADVANCE(182); + if (lookahead == ';') ADVANCE(444); + if (lookahead == '<') ADVANCE(551); + if (lookahead == '=') ADVANCE(432); + if (lookahead == '>') ADVANCE(548); + if (lookahead == '?') ADVANCE(531); + if (lookahead == '@') ADVANCE(61); + if (lookahead == '[') ADVANCE(441); + if (lookahead == '^') ADVANCE(544); + if (lookahead == '_') ADVANCE(62); + if (lookahead == '`') ADVANCE(199); + if (lookahead == 'b') ADVANCE(215); + if (lookahead == 'x') ADVANCE(212); + if (lookahead == '{') ADVANCE(446); + if (lookahead == '|') ADVANCE(541); + if (lookahead == '~') ADVANCE(536); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(9); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(184); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(422); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(183); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(421); END_STATE(); case 10: if (lookahead == '\r') SKIP(10); - if (lookahead == '!') ADVANCE(538); - if (lookahead == '"') ADVANCE(195); - if (lookahead == '#') ADVANCE(58); + if (lookahead == '!') ADVANCE(534); + if (lookahead == '"') ADVANCE(194); + if (lookahead == '#') ADVANCE(57); if (lookahead == '$') ADVANCE(35); - if (lookahead == '&') ADVANCE(440); - if (lookahead == '\'') ADVANCE(190); - if (lookahead == '(') ADVANCE(435); - if (lookahead == ')') ADVANCE(437); - if (lookahead == '*') ADVANCE(471); - if (lookahead == '+') ADVANCE(460); - if (lookahead == '-') ADVANCE(464); - if (lookahead == '.') ADVANCE(456); + if (lookahead == '&') ADVANCE(439); + if (lookahead == '\'') ADVANCE(189); + if (lookahead == '(') ADVANCE(434); + if (lookahead == ')') ADVANCE(436); + if (lookahead == '*') ADVANCE(468); + if (lookahead == '+') ADVANCE(459); + if (lookahead == '-') ADVANCE(462); + if (lookahead == '.') ADVANCE(455); if (lookahead == '/') ADVANCE(41); - if (lookahead == '0') ADVANCE(183); - if (lookahead == ';') ADVANCE(445); - if (lookahead == '@') ADVANCE(62); - if (lookahead == '[') ADVANCE(442); - if (lookahead == '_') ADVANCE(63); - if (lookahead == '`') ADVANCE(200); - if (lookahead == 'b') ADVANCE(216); - if (lookahead == 'x') ADVANCE(213); - if (lookahead == '{') ADVANCE(447); - if (lookahead == '}') ADVANCE(448); - if (lookahead == '~') ADVANCE(542); + if (lookahead == '0') ADVANCE(182); + if (lookahead == ';') ADVANCE(444); + if (lookahead == '@') ADVANCE(61); + if (lookahead == '[') ADVANCE(441); + if (lookahead == '_') ADVANCE(62); + if (lookahead == '`') ADVANCE(199); + if (lookahead == 'b') ADVANCE(215); + if (lookahead == 'x') ADVANCE(212); + if (lookahead == '{') ADVANCE(446); + if (lookahead == '}') ADVANCE(447); + if (lookahead == '~') ADVANCE(536); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(10); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(184); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(422); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(183); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(421); END_STATE(); case 11: if (lookahead == '\r') SKIP(11); - if (lookahead == '!') ADVANCE(538); - if (lookahead == '"') ADVANCE(195); - if (lookahead == '#') ADVANCE(58); + if (lookahead == '!') ADVANCE(534); + if (lookahead == '"') ADVANCE(194); + if (lookahead == '#') ADVANCE(57); if (lookahead == '$') ADVANCE(36); - if (lookahead == '&') ADVANCE(440); - if (lookahead == '\'') ADVANCE(190); - if (lookahead == '(') ADVANCE(435); - if (lookahead == ')') ADVANCE(437); - if (lookahead == '*') ADVANCE(471); - if (lookahead == '+') ADVANCE(460); - if (lookahead == '-') ADVANCE(464); - if (lookahead == '.') ADVANCE(45); + if (lookahead == '&') ADVANCE(439); + if (lookahead == '\'') ADVANCE(189); + if (lookahead == '(') ADVANCE(434); + if (lookahead == ')') ADVANCE(436); + if (lookahead == '*') ADVANCE(468); + if (lookahead == '+') ADVANCE(459); + if (lookahead == '-') ADVANCE(462); + if (lookahead == '.') ADVANCE(43); if (lookahead == '/') ADVANCE(41); - if (lookahead == '0') ADVANCE(183); - if (lookahead == ':') ADVANCE(449); - if (lookahead == ';') ADVANCE(445); - if (lookahead == '>') ADVANCE(57); - if (lookahead == '@') ADVANCE(62); - if (lookahead == '[') ADVANCE(442); - if (lookahead == ']') ADVANCE(444); - if (lookahead == '^') ADVANCE(549); - if (lookahead == '_') ADVANCE(63); - if (lookahead == '`') ADVANCE(200); - if (lookahead == 'b') ADVANCE(216); - if (lookahead == 'x') ADVANCE(213); - if (lookahead == '{') ADVANCE(447); - if (lookahead == '~') ADVANCE(542); + if (lookahead == '0') ADVANCE(182); + if (lookahead == ':') ADVANCE(448); + if (lookahead == ';') ADVANCE(444); + if (lookahead == '>') ADVANCE(56); + if (lookahead == '@') ADVANCE(61); + if (lookahead == '[') ADVANCE(441); + if (lookahead == ']') ADVANCE(443); + if (lookahead == '^') ADVANCE(543); + if (lookahead == '_') ADVANCE(62); + if (lookahead == '`') ADVANCE(199); + if (lookahead == 'b') ADVANCE(215); + if (lookahead == 'x') ADVANCE(212); + if (lookahead == '{') ADVANCE(446); + if (lookahead == '~') ADVANCE(536); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(11); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(184); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(422); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(183); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(421); END_STATE(); case 12: if (lookahead == '\r') SKIP(12); - if (lookahead == '!') ADVANCE(538); - if (lookahead == '#') ADVANCE(58); - if (lookahead == '$') ADVANCE(67); - if (lookahead == '&') ADVANCE(439); - if (lookahead == '(') ADVANCE(436); - if (lookahead == ')') ADVANCE(437); - if (lookahead == '*') ADVANCE(471); - if (lookahead == '+') ADVANCE(459); - if (lookahead == ',') ADVANCE(429); - if (lookahead == '-') ADVANCE(463); - if (lookahead == '.') ADVANCE(456); + if (lookahead == '!') ADVANCE(534); + if (lookahead == '#') ADVANCE(57); + if (lookahead == '$') ADVANCE(66); + if (lookahead == '&') ADVANCE(438); + if (lookahead == '(') ADVANCE(435); + if (lookahead == ')') ADVANCE(436); + if (lookahead == '*') ADVANCE(468); + if (lookahead == '+') ADVANCE(458); + if (lookahead == ',') ADVANCE(428); + if (lookahead == '-') ADVANCE(461); + if (lookahead == '.') ADVANCE(455); if (lookahead == '/') ADVANCE(41); - if (lookahead == ':') ADVANCE(449); - if (lookahead == ';') ADVANCE(445); + if (lookahead == ':') ADVANCE(448); + if (lookahead == ';') ADVANCE(444); if (lookahead == '<') ADVANCE(52); if (lookahead == '>') ADVANCE(40); - if (lookahead == '@') ADVANCE(59); - if (lookahead == '[') ADVANCE(443); - if (lookahead == ']') ADVANCE(444); - if (lookahead == '_') ADVANCE(69); - if (lookahead == '{') ADVANCE(446); - if (lookahead == '}') ADVANCE(448); + if (lookahead == '@') ADVANCE(58); + if (lookahead == '[') ADVANCE(442); + if (lookahead == ']') ADVANCE(443); + if (lookahead == '_') ADVANCE(68); + if (lookahead == '{') ADVANCE(445); + if (lookahead == '}') ADVANCE(447); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(12); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(167); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(166); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); END_STATE(); case 13: if (lookahead == '\r') SKIP(13); - if (lookahead == '!') ADVANCE(53); - if (lookahead == '#') ADVANCE(58); - if (lookahead == '$') ADVANCE(95); - if (lookahead == '%') ADVANCE(546); - if (lookahead == '&') ADVANCE(441); - if (lookahead == '(') ADVANCE(436); - if (lookahead == ')') ADVANCE(437); - if (lookahead == '*') ADVANCE(472); - if (lookahead == '+') ADVANCE(462); - if (lookahead == ',') ADVANCE(429); - if (lookahead == '-') ADVANCE(466); + if (lookahead == '!') ADVANCE(534); + if (lookahead == '#') ADVANCE(57); + if (lookahead == '$') ADVANCE(69); + if (lookahead == '&') ADVANCE(438); + if (lookahead == '(') ADVANCE(435); + if (lookahead == ')') ADVANCE(436); + if (lookahead == '*') ADVANCE(468); + if (lookahead == ',') ADVANCE(428); if (lookahead == '.') ADVANCE(455); - if (lookahead == '/') ADVANCE(545); - if (lookahead == ':') ADVANCE(449); - if (lookahead == ';') ADVANCE(445); - if (lookahead == '<') ADVANCE(557); - if (lookahead == '=') ADVANCE(433); - if (lookahead == '>') ADVANCE(553); - if (lookahead == '?') ADVANCE(535); - if (lookahead == '@') ADVANCE(59); - if (lookahead == '[') ADVANCE(443); - if (lookahead == ']') ADVANCE(444); - if (lookahead == '^') ADVANCE(550); + if (lookahead == '/') ADVANCE(41); + if (lookahead == '0') ADVANCE(182); + if (lookahead == ':') ADVANCE(448); + if (lookahead == ';') ADVANCE(444); + if (lookahead == '=') ADVANCE(431); + if (lookahead == '>') ADVANCE(39); + if (lookahead == '@') ADVANCE(58); + if (lookahead == '[') ADVANCE(442); if (lookahead == '_') ADVANCE(70); - if (lookahead == '{') ADVANCE(446); - if (lookahead == '|') ADVANCE(547); - if (lookahead == '}') ADVANCE(448); + if (lookahead == '{') ADVANCE(445); + if (lookahead == '}') ADVANCE(447); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(13); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(423); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(183); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(422); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); END_STATE(); case 14: if (lookahead == '\r') SKIP(14); - if (lookahead == '!') ADVANCE(538); - if (lookahead == '#') ADVANCE(58); - if (lookahead == '$') ADVANCE(71); - if (lookahead == '&') ADVANCE(439); - if (lookahead == '(') ADVANCE(436); - if (lookahead == ')') ADVANCE(437); - if (lookahead == '*') ADVANCE(471); - if (lookahead == ',') ADVANCE(429); - if (lookahead == '.') ADVANCE(456); + if (lookahead == '#') ADVANCE(57); + if (lookahead == '$') ADVANCE(94); + if (lookahead == '*') ADVANCE(45); if (lookahead == '/') ADVANCE(41); - if (lookahead == '0') ADVANCE(183); - if (lookahead == ':') ADVANCE(449); - if (lookahead == ';') ADVANCE(445); - if (lookahead == '=') ADVANCE(432); - if (lookahead == '>') ADVANCE(39); - if (lookahead == '[') ADVANCE(443); + if (lookahead == '@') ADVANCE(61); if (lookahead == '_') ADVANCE(70); - if (lookahead == '{') ADVANCE(446); - if (lookahead == '}') ADVANCE(448); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(14); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(184); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(423); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(422); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); END_STATE(); case 15: if (lookahead == '\r') SKIP(15); - if (lookahead == '!') ADVANCE(539); - if (lookahead == '$') ADVANCE(68); - if (lookahead == '(') ADVANCE(436); - if (lookahead == '*') ADVANCE(46); - if (lookahead == '+') ADVANCE(42); - if (lookahead == '-') ADVANCE(43); + if (lookahead == '"') ADVANCE(194); if (lookahead == '/') ADVANCE(41); - if (lookahead == '[') ADVANCE(442); - if (lookahead == '_') ADVANCE(64); + if (lookahead == '\\') ADVANCE(55); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(15); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); END_STATE(); case 16: if (lookahead == '\r') SKIP(16); - if (lookahead == '"') ADVANCE(195); + if (lookahead == '$') ADVANCE(67); if (lookahead == '/') ADVANCE(41); - if (lookahead == '\\') ADVANCE(56); + if (lookahead == '_') ADVANCE(63); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(16); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); END_STATE(); case 17: if (lookahead == '\r') SKIP(17); if (lookahead == '/') ADVANCE(41); - if (lookahead == '\\') ADVANCE(56); + if (lookahead == '\\') ADVANCE(55); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(17); END_STATE(); case 18: if (lookahead == '\r') SKIP(18); - if (lookahead == '!') ADVANCE(538); - if (lookahead == '"') ADVANCE(195); - if (lookahead == '#') ADVANCE(58); + if (lookahead == '!') ADVANCE(534); + if (lookahead == '"') ADVANCE(194); + if (lookahead == '#') ADVANCE(57); if (lookahead == '$') ADVANCE(32); - if (lookahead == '&') ADVANCE(440); - if (lookahead == '\'') ADVANCE(190); - if (lookahead == '(') ADVANCE(435); - if (lookahead == '*') ADVANCE(471); - if (lookahead == '+') ADVANCE(460); - if (lookahead == '-') ADVANCE(464); + if (lookahead == '&') ADVANCE(439); + if (lookahead == '\'') ADVANCE(189); + if (lookahead == '(') ADVANCE(434); + if (lookahead == '*') ADVANCE(468); + if (lookahead == '+') ADVANCE(459); + if (lookahead == '-') ADVANCE(462); if (lookahead == '/') ADVANCE(41); - if (lookahead == '0') ADVANCE(183); - if (lookahead == ';') ADVANCE(445); - if (lookahead == '@') ADVANCE(62); - if (lookahead == '_') ADVANCE(63); - if (lookahead == '`') ADVANCE(200); - if (lookahead == 'b') ADVANCE(216); - if (lookahead == 'x') ADVANCE(213); - if (lookahead == '{') ADVANCE(447); - if (lookahead == '~') ADVANCE(542); + if (lookahead == '0') ADVANCE(182); + if (lookahead == ';') ADVANCE(444); + if (lookahead == '@') ADVANCE(61); + if (lookahead == '_') ADVANCE(62); + if (lookahead == '`') ADVANCE(199); + if (lookahead == 'b') ADVANCE(215); + if (lookahead == 'x') ADVANCE(212); + if (lookahead == '{') ADVANCE(446); + if (lookahead == '~') ADVANCE(536); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(18); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(184); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(422); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(183); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(421); END_STATE(); case 19: if (lookahead == '\r') SKIP(19); - if (lookahead == '!') ADVANCE(540); - if (lookahead == '"') ADVANCE(195); - if (lookahead == '#') ADVANCE(58); + if (lookahead == '!') ADVANCE(535); + if (lookahead == '"') ADVANCE(194); + if (lookahead == '#') ADVANCE(57); if (lookahead == '$') ADVANCE(31); - if (lookahead == '%') ADVANCE(546); - if (lookahead == '&') ADVANCE(441); - if (lookahead == '\'') ADVANCE(190); - if (lookahead == '(') ADVANCE(436); - if (lookahead == '*') ADVANCE(472); - if (lookahead == '+') ADVANCE(461); - if (lookahead == '-') ADVANCE(465); - if (lookahead == '.') ADVANCE(453); - if (lookahead == '/') ADVANCE(545); - if (lookahead == '0') ADVANCE(183); - if (lookahead == ';') ADVANCE(445); - if (lookahead == '<') ADVANCE(557); - if (lookahead == '=') ADVANCE(433); - if (lookahead == '>') ADVANCE(554); - if (lookahead == '?') ADVANCE(535); - if (lookahead == '@') ADVANCE(62); - if (lookahead == '[') ADVANCE(442); - if (lookahead == '^') ADVANCE(550); - if (lookahead == '_') ADVANCE(63); - if (lookahead == '`') ADVANCE(200); - if (lookahead == 'b') ADVANCE(216); - if (lookahead == 'x') ADVANCE(213); - if (lookahead == '{') ADVANCE(447); - if (lookahead == '|') ADVANCE(547); - if (lookahead == '~') ADVANCE(542); + if (lookahead == '%') ADVANCE(540); + if (lookahead == '&') ADVANCE(440); + if (lookahead == '\'') ADVANCE(189); + if (lookahead == '(') ADVANCE(435); + if (lookahead == '*') ADVANCE(469); + if (lookahead == '+') ADVANCE(460); + if (lookahead == '-') ADVANCE(463); + if (lookahead == '.') ADVANCE(452); + if (lookahead == '/') ADVANCE(539); + if (lookahead == '0') ADVANCE(182); + if (lookahead == ';') ADVANCE(444); + if (lookahead == '<') ADVANCE(551); + if (lookahead == '=') ADVANCE(432); + if (lookahead == '>') ADVANCE(548); + if (lookahead == '?') ADVANCE(531); + if (lookahead == '@') ADVANCE(61); + if (lookahead == '[') ADVANCE(441); + if (lookahead == '^') ADVANCE(544); + if (lookahead == '_') ADVANCE(62); + if (lookahead == '`') ADVANCE(199); + if (lookahead == 'b') ADVANCE(215); + if (lookahead == 'x') ADVANCE(212); + if (lookahead == '{') ADVANCE(446); + if (lookahead == '|') ADVANCE(541); + if (lookahead == '~') ADVANCE(536); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(19); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(184); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(422); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(183); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(421); END_STATE(); case 20: if (lookahead == '\r') SKIP(20); - if (lookahead == '!') ADVANCE(540); - if (lookahead == '"') ADVANCE(195); - if (lookahead == '#') ADVANCE(58); + if (lookahead == '!') ADVANCE(535); + if (lookahead == '"') ADVANCE(194); + if (lookahead == '#') ADVANCE(57); if (lookahead == '$') ADVANCE(32); - if (lookahead == '%') ADVANCE(546); - if (lookahead == '&') ADVANCE(441); - if (lookahead == '\'') ADVANCE(190); - if (lookahead == '(') ADVANCE(436); - if (lookahead == '*') ADVANCE(472); - if (lookahead == '+') ADVANCE(461); - if (lookahead == '-') ADVANCE(465); - if (lookahead == '.') ADVANCE(453); - if (lookahead == '/') ADVANCE(545); - if (lookahead == '0') ADVANCE(183); - if (lookahead == ';') ADVANCE(445); - if (lookahead == '<') ADVANCE(557); - if (lookahead == '=') ADVANCE(433); - if (lookahead == '>') ADVANCE(554); - if (lookahead == '?') ADVANCE(535); - if (lookahead == '@') ADVANCE(62); - if (lookahead == '[') ADVANCE(442); - if (lookahead == '^') ADVANCE(550); - if (lookahead == '_') ADVANCE(63); - if (lookahead == '`') ADVANCE(200); - if (lookahead == 'b') ADVANCE(216); - if (lookahead == 'x') ADVANCE(213); - if (lookahead == '{') ADVANCE(447); - if (lookahead == '|') ADVANCE(547); - if (lookahead == '~') ADVANCE(542); + if (lookahead == '%') ADVANCE(540); + if (lookahead == '&') ADVANCE(440); + if (lookahead == '\'') ADVANCE(189); + if (lookahead == '(') ADVANCE(435); + if (lookahead == '*') ADVANCE(469); + if (lookahead == '+') ADVANCE(460); + if (lookahead == '-') ADVANCE(463); + if (lookahead == '.') ADVANCE(452); + if (lookahead == '/') ADVANCE(539); + if (lookahead == '0') ADVANCE(182); + if (lookahead == ';') ADVANCE(444); + if (lookahead == '<') ADVANCE(551); + if (lookahead == '=') ADVANCE(432); + if (lookahead == '>') ADVANCE(548); + if (lookahead == '?') ADVANCE(531); + if (lookahead == '@') ADVANCE(61); + if (lookahead == '[') ADVANCE(441); + if (lookahead == '^') ADVANCE(544); + if (lookahead == '_') ADVANCE(62); + if (lookahead == '`') ADVANCE(199); + if (lookahead == 'b') ADVANCE(215); + if (lookahead == 'x') ADVANCE(212); + if (lookahead == '{') ADVANCE(446); + if (lookahead == '|') ADVANCE(541); + if (lookahead == '~') ADVANCE(536); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(20); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(184); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(422); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(183); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(421); END_STATE(); case 21: if (lookahead == '\r') SKIP(21); - if (lookahead == '!') ADVANCE(538); - if (lookahead == '"') ADVANCE(195); - if (lookahead == '#') ADVANCE(58); + if (lookahead == '!') ADVANCE(534); + if (lookahead == '"') ADVANCE(194); + if (lookahead == '#') ADVANCE(57); if (lookahead == '$') ADVANCE(33); - if (lookahead == '&') ADVANCE(440); - if (lookahead == '\'') ADVANCE(190); - if (lookahead == '(') ADVANCE(435); - if (lookahead == '*') ADVANCE(471); - if (lookahead == '+') ADVANCE(460); - if (lookahead == '-') ADVANCE(464); + if (lookahead == '&') ADVANCE(439); + if (lookahead == '\'') ADVANCE(189); + if (lookahead == '(') ADVANCE(434); + if (lookahead == '*') ADVANCE(468); + if (lookahead == '+') ADVANCE(459); + if (lookahead == '-') ADVANCE(462); if (lookahead == '/') ADVANCE(41); - if (lookahead == '0') ADVANCE(183); - if (lookahead == ';') ADVANCE(445); - if (lookahead == '@') ADVANCE(62); - if (lookahead == '_') ADVANCE(63); - if (lookahead == '`') ADVANCE(200); - if (lookahead == 'b') ADVANCE(216); - if (lookahead == 'x') ADVANCE(213); - if (lookahead == '{') ADVANCE(447); - if (lookahead == '~') ADVANCE(542); + if (lookahead == '0') ADVANCE(182); + if (lookahead == ';') ADVANCE(444); + if (lookahead == '@') ADVANCE(61); + if (lookahead == '_') ADVANCE(62); + if (lookahead == '`') ADVANCE(199); + if (lookahead == 'b') ADVANCE(215); + if (lookahead == 'x') ADVANCE(212); + if (lookahead == '{') ADVANCE(446); + if (lookahead == '~') ADVANCE(536); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(21); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(184); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(422); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(183); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(421); END_STATE(); case 22: if (lookahead == '\r') SKIP(22); - if (lookahead == '!') ADVANCE(540); - if (lookahead == '"') ADVANCE(195); - if (lookahead == '#') ADVANCE(58); - if (lookahead == '$') ADVANCE(34); - if (lookahead == '%') ADVANCE(546); - if (lookahead == '&') ADVANCE(441); - if (lookahead == '\'') ADVANCE(190); - if (lookahead == '(') ADVANCE(436); - if (lookahead == '*') ADVANCE(472); - if (lookahead == '+') ADVANCE(461); - if (lookahead == '-') ADVANCE(465); - if (lookahead == '.') ADVANCE(453); - if (lookahead == '/') ADVANCE(545); - if (lookahead == '0') ADVANCE(183); - if (lookahead == ';') ADVANCE(445); - if (lookahead == '<') ADVANCE(557); - if (lookahead == '=') ADVANCE(433); - if (lookahead == '>') ADVANCE(554); - if (lookahead == '?') ADVANCE(535); - if (lookahead == '@') ADVANCE(62); - if (lookahead == '[') ADVANCE(442); - if (lookahead == '^') ADVANCE(550); - if (lookahead == '_') ADVANCE(63); - if (lookahead == '`') ADVANCE(200); - if (lookahead == 'b') ADVANCE(216); - if (lookahead == 'x') ADVANCE(213); - if (lookahead == '{') ADVANCE(447); - if (lookahead == '|') ADVANCE(547); - if (lookahead == '~') ADVANCE(542); + if (lookahead == '!') ADVANCE(535); + if (lookahead == '"') ADVANCE(194); + if (lookahead == '#') ADVANCE(57); + if (lookahead == '$') ADVANCE(33); + if (lookahead == '%') ADVANCE(540); + if (lookahead == '&') ADVANCE(440); + if (lookahead == '\'') ADVANCE(189); + if (lookahead == '(') ADVANCE(435); + if (lookahead == '*') ADVANCE(469); + if (lookahead == '+') ADVANCE(460); + if (lookahead == '-') ADVANCE(463); + if (lookahead == '.') ADVANCE(452); + if (lookahead == '/') ADVANCE(539); + if (lookahead == '0') ADVANCE(182); + if (lookahead == ';') ADVANCE(444); + if (lookahead == '<') ADVANCE(551); + if (lookahead == '=') ADVANCE(432); + if (lookahead == '>') ADVANCE(548); + if (lookahead == '?') ADVANCE(531); + if (lookahead == '@') ADVANCE(61); + if (lookahead == '[') ADVANCE(441); + if (lookahead == '^') ADVANCE(544); + if (lookahead == '_') ADVANCE(62); + if (lookahead == '`') ADVANCE(199); + if (lookahead == 'b') ADVANCE(215); + if (lookahead == 'x') ADVANCE(212); + if (lookahead == '{') ADVANCE(446); + if (lookahead == '|') ADVANCE(541); + if (lookahead == '~') ADVANCE(536); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(22); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(184); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(422); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(183); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(421); END_STATE(); case 23: if (lookahead == '\r') SKIP(23); - if (lookahead == '!') ADVANCE(538); - if (lookahead == '"') ADVANCE(195); - if (lookahead == '#') ADVANCE(58); + if (lookahead == '!') ADVANCE(534); + if (lookahead == '"') ADVANCE(194); + if (lookahead == '#') ADVANCE(57); if (lookahead == '$') ADVANCE(34); - if (lookahead == '&') ADVANCE(440); - if (lookahead == '\'') ADVANCE(190); - if (lookahead == '(') ADVANCE(435); - if (lookahead == '*') ADVANCE(471); - if (lookahead == '+') ADVANCE(460); - if (lookahead == '-') ADVANCE(464); + if (lookahead == '&') ADVANCE(439); + if (lookahead == '\'') ADVANCE(189); + if (lookahead == '(') ADVANCE(434); + if (lookahead == '*') ADVANCE(468); + if (lookahead == '+') ADVANCE(459); + if (lookahead == '-') ADVANCE(462); if (lookahead == '/') ADVANCE(41); - if (lookahead == '0') ADVANCE(183); - if (lookahead == ';') ADVANCE(445); - if (lookahead == '@') ADVANCE(62); - if (lookahead == '_') ADVANCE(63); - if (lookahead == '`') ADVANCE(200); - if (lookahead == 'b') ADVANCE(216); - if (lookahead == 'x') ADVANCE(213); - if (lookahead == '{') ADVANCE(447); - if (lookahead == '~') ADVANCE(542); + if (lookahead == '0') ADVANCE(182); + if (lookahead == ';') ADVANCE(444); + if (lookahead == '@') ADVANCE(61); + if (lookahead == '_') ADVANCE(62); + if (lookahead == '`') ADVANCE(199); + if (lookahead == 'b') ADVANCE(215); + if (lookahead == 'x') ADVANCE(212); + if (lookahead == '{') ADVANCE(446); + if (lookahead == '~') ADVANCE(536); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(23); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(184); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(422); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(183); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(421); END_STATE(); case 24: if (lookahead == '\r') SKIP(24); - if (lookahead == '!') ADVANCE(540); - if (lookahead == '"') ADVANCE(195); - if (lookahead == '#') ADVANCE(58); - if (lookahead == '$') ADVANCE(33); - if (lookahead == '%') ADVANCE(546); - if (lookahead == '&') ADVANCE(441); - if (lookahead == '\'') ADVANCE(190); - if (lookahead == '(') ADVANCE(436); - if (lookahead == '*') ADVANCE(472); - if (lookahead == '+') ADVANCE(461); - if (lookahead == '-') ADVANCE(465); - if (lookahead == '.') ADVANCE(453); - if (lookahead == '/') ADVANCE(545); - if (lookahead == '0') ADVANCE(183); - if (lookahead == ';') ADVANCE(445); - if (lookahead == '<') ADVANCE(557); - if (lookahead == '=') ADVANCE(433); - if (lookahead == '>') ADVANCE(554); - if (lookahead == '?') ADVANCE(535); - if (lookahead == '@') ADVANCE(62); - if (lookahead == '[') ADVANCE(442); - if (lookahead == '^') ADVANCE(550); - if (lookahead == '_') ADVANCE(63); - if (lookahead == '`') ADVANCE(200); - if (lookahead == 'b') ADVANCE(216); - if (lookahead == 'x') ADVANCE(213); - if (lookahead == '{') ADVANCE(447); - if (lookahead == '|') ADVANCE(547); - if (lookahead == '~') ADVANCE(542); + if (lookahead == '!') ADVANCE(535); + if (lookahead == '"') ADVANCE(194); + if (lookahead == '#') ADVANCE(57); + if (lookahead == '$') ADVANCE(34); + if (lookahead == '%') ADVANCE(540); + if (lookahead == '&') ADVANCE(440); + if (lookahead == '\'') ADVANCE(189); + if (lookahead == '(') ADVANCE(435); + if (lookahead == '*') ADVANCE(469); + if (lookahead == '+') ADVANCE(460); + if (lookahead == '-') ADVANCE(463); + if (lookahead == '.') ADVANCE(452); + if (lookahead == '/') ADVANCE(539); + if (lookahead == '0') ADVANCE(182); + if (lookahead == ';') ADVANCE(444); + if (lookahead == '<') ADVANCE(551); + if (lookahead == '=') ADVANCE(432); + if (lookahead == '>') ADVANCE(548); + if (lookahead == '?') ADVANCE(531); + if (lookahead == '@') ADVANCE(61); + if (lookahead == '[') ADVANCE(441); + if (lookahead == '^') ADVANCE(544); + if (lookahead == '_') ADVANCE(62); + if (lookahead == '`') ADVANCE(199); + if (lookahead == 'b') ADVANCE(215); + if (lookahead == 'x') ADVANCE(212); + if (lookahead == '{') ADVANCE(446); + if (lookahead == '|') ADVANCE(541); + if (lookahead == '~') ADVANCE(536); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(24); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(184); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(422); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(183); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(421); END_STATE(); case 25: - if (lookahead == '"') ADVANCE(205); + if (lookahead == '"') ADVANCE(204); if (lookahead == '=') ADVANCE(25); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') ADVANCE(25); @@ -6483,7 +6282,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(25); END_STATE(); case 26: - if (lookahead == '"') ADVANCE(205); + if (lookahead == '"') ADVANCE(204); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') ADVANCE(26); if (('0' <= lookahead && lookahead <= '9') || @@ -6492,206 +6291,206 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 27: ADVANCE_MAP( - '$', 65, - '_', 66, - 'a', 327, - 'c', 225, - 'd', 264, - 'e', 239, - 'f', 275, - 'i', 288, - 'n', 219, - 'o', 301, - 'q', 349, - 's', 317, - 't', 412, - 'v', 220, + '$', 64, + '_', 65, + 'a', 326, + 'c', 224, + 'd', 263, + 'e', 238, + 'f', 274, + 'i', 287, + 'n', 218, + 'o', 300, + 'q', 348, + 's', 316, + 't', 411, + 'v', 219, ); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(416); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(424); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(415); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(423); END_STATE(); case 28: ADVANCE_MAP( - '$', 65, - '_', 68, - 'a', 327, - 'c', 225, - 'd', 264, - 'e', 241, - 'f', 275, - 'i', 289, - 'n', 219, - 'o', 301, - 'q', 349, - 's', 317, - 't', 412, - 'v', 224, + '$', 64, + '_', 67, + 'a', 326, + 'c', 224, + 'd', 263, + 'e', 240, + 'f', 274, + 'i', 288, + 'n', 218, + 'o', 300, + 'q', 348, + 's', 316, + 't', 411, + 'v', 223, ); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(416); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(168); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(415); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(167); END_STATE(); case 29: ADVANCE_MAP( - '$', 65, - '_', 68, - 'a', 327, - 'c', 353, - 'd', 284, - 'e', 245, - 'f', 275, - 'i', 289, - 'n', 219, - 'o', 301, - 'q', 349, - 's', 317, - 't', 412, - 'v', 220, + '$', 64, + '_', 67, + 'a', 326, + 'c', 352, + 'd', 283, + 'e', 244, + 'f', 274, + 'i', 288, + 'n', 218, + 'o', 300, + 'q', 348, + 's', 316, + 't', 411, + 'v', 219, ); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(416); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(168); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(415); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(167); END_STATE(); case 30: ADVANCE_MAP( - '$', 65, - '_', 68, - 'a', 327, - 'c', 353, - 'd', 284, - 'e', 245, - 'f', 275, - 'i', 289, - 'n', 219, - 'o', 301, - 'q', 349, - 's', 317, - 't', 412, - 'v', 224, + '$', 64, + '_', 67, + 'a', 326, + 'c', 352, + 'd', 283, + 'e', 244, + 'f', 274, + 'i', 288, + 'n', 218, + 'o', 300, + 'q', 348, + 's', 316, + 't', 411, + 'v', 223, ); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(416); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(168); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(415); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(167); END_STATE(); case 31: ADVANCE_MAP( - '$', 65, - '_', 68, - 'a', 327, - 'c', 353, - 'd', 284, - 'e', 240, - 'f', 275, - 'i', 289, - 'n', 219, - 'o', 301, - 'q', 349, - 's', 317, - 't', 412, - 'v', 224, + '$', 64, + '_', 67, + 'a', 326, + 'c', 352, + 'd', 283, + 'e', 239, + 'f', 274, + 'i', 288, + 'n', 218, + 'o', 300, + 'q', 348, + 's', 316, + 't', 411, + 'v', 223, ); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(416); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(168); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(415); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(167); END_STATE(); case 32: ADVANCE_MAP( - '$', 65, - '_', 68, - 'a', 327, - 'c', 353, - 'd', 284, + '$', 64, + '_', 67, + 'a', 326, + 'c', 352, + 'd', 283, 'e', 242, - 'f', 275, - 'i', 289, - 'n', 219, - 'o', 301, - 'q', 349, - 's', 317, - 't', 412, - 'v', 224, + 'f', 274, + 'i', 288, + 'n', 218, + 'o', 300, + 'q', 348, + 's', 316, + 't', 411, + 'v', 223, ); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(416); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(168); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(415); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(167); END_STATE(); case 33: ADVANCE_MAP( - '$', 65, - '_', 68, - 'a', 327, - 'c', 353, - 'd', 284, - 'e', 243, - 'f', 275, - 'i', 289, - 'n', 219, - 'o', 301, - 'q', 349, - 's', 317, - 't', 412, - 'v', 224, + '$', 64, + '_', 67, + 'a', 326, + 'c', 352, + 'd', 283, + 'e', 241, + 'f', 274, + 'i', 288, + 'n', 218, + 'o', 300, + 'q', 348, + 's', 316, + 't', 411, + 'v', 223, ); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(416); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(168); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(415); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(167); END_STATE(); case 34: ADVANCE_MAP( - '$', 65, - '_', 68, - 'a', 327, - 'c', 353, - 'd', 284, - 'e', 244, - 'f', 275, - 'i', 289, - 'n', 219, - 'o', 301, - 'q', 349, - 's', 317, - 't', 412, - 'v', 224, + '$', 64, + '_', 67, + 'a', 326, + 'c', 352, + 'd', 283, + 'e', 243, + 'f', 274, + 'i', 288, + 'n', 218, + 'o', 300, + 'q', 348, + 's', 316, + 't', 411, + 'v', 223, ); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(416); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(168); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(415); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(167); END_STATE(); case 35: ADVANCE_MAP( - '$', 65, - '_', 68, - 'a', 328, - 'c', 353, - 'd', 284, - 'e', 335, - 'f', 276, - 'i', 382, - 'n', 219, - 'o', 301, - 'q', 349, - 's', 318, - 't', 412, - 'v', 220, + '$', 64, + '_', 67, + 'a', 327, + 'c', 352, + 'd', 283, + 'e', 334, + 'f', 275, + 'i', 381, + 'n', 218, + 'o', 300, + 'q', 348, + 's', 317, + 't', 411, + 'v', 219, ); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(416); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(168); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(415); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(167); END_STATE(); case 36: ADVANCE_MAP( - '$', 65, - '_', 68, - 'a', 328, - 'c', 353, - 'd', 284, - 'e', 335, - 'f', 276, - 'i', 382, - 'n', 219, - 'o', 301, - 'q', 349, - 's', 318, - 't', 412, - 'v', 224, + '$', 64, + '_', 67, + 'a', 327, + 'c', 352, + 'd', 283, + 'e', 334, + 'f', 275, + 'i', 381, + 'n', 218, + 'o', 300, + 'q', 348, + 's', 317, + 't', 411, + 'v', 223, ); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(416); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(168); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(415); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(167); END_STATE(); case 37: - if (lookahead == '\'') ADVANCE(205); + if (lookahead == '\'') ADVANCE(204); if (lookahead == '=') ADVANCE(37); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') ADVANCE(37); @@ -6701,7 +6500,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(37); END_STATE(); case 38: - if (lookahead == '\'') ADVANCE(205); + if (lookahead == '\'') ADVANCE(204); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') ADVANCE(38); if (('0' <= lookahead && lookahead <= '9') || @@ -6709,391 +6508,391 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'f')) ADVANCE(38); END_STATE(); case 39: - if (lookahead == ')') ADVANCE(431); + if (lookahead == ')') ADVANCE(430); END_STATE(); case 40: - if (lookahead == ')') ADVANCE(431); - if (lookahead == '>') ADVANCE(469); + if (lookahead == ')') ADVANCE(430); + if (lookahead == '>') ADVANCE(466); END_STATE(); case 41: - if (lookahead == '*') ADVANCE(211); - if (lookahead == '/') ADVANCE(207); + if (lookahead == '*') ADVANCE(210); + if (lookahead == '/') ADVANCE(206); END_STATE(); case 42: - if (lookahead == '+') ADVANCE(543); + if (lookahead == '.') ADVANCE(437); END_STATE(); case 43: - if (lookahead == '-') ADVANCE(544); + if (lookahead == '.') ADVANCE(450); END_STATE(); case 44: - if (lookahead == '.') ADVANCE(438); + if (lookahead == '.') ADVANCE(42); END_STATE(); case 45: - if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(209); END_STATE(); case 46: - if (lookahead == '/') ADVANCE(210); + if (lookahead == '1') ADVANCE(48); + if (lookahead == '3') ADVANCE(47); + if (lookahead == '6') ADVANCE(49); + if (lookahead == '8') ADVANCE(180); END_STATE(); case 47: - if (lookahead == '1') ADVANCE(49); - if (lookahead == '3') ADVANCE(48); - if (lookahead == '6') ADVANCE(50); - if (lookahead == '8') ADVANCE(181); + if (lookahead == '2') ADVANCE(180); END_STATE(); case 48: - if (lookahead == '2') ADVANCE(181); + if (lookahead == '2') ADVANCE(50); + if (lookahead == '6') ADVANCE(180); END_STATE(); case 49: - if (lookahead == '2') ADVANCE(51); - if (lookahead == '6') ADVANCE(181); + if (lookahead == '4') ADVANCE(180); END_STATE(); case 50: - if (lookahead == '4') ADVANCE(181); + if (lookahead == '8') ADVANCE(180); END_STATE(); case 51: - if (lookahead == '8') ADVANCE(181); + if (lookahead == ':') ADVANCE(427); END_STATE(); case 52: - if (lookahead == '<') ADVANCE(467); + if (lookahead == '<') ADVANCE(464); END_STATE(); case 53: - if (lookahead == '=') ADVANCE(552); - END_STATE(); - case 54: - if (lookahead == '=') ADVANCE(54); - if (lookahead == '`') ADVANCE(205); + if (lookahead == '=') ADVANCE(53); + if (lookahead == '`') ADVANCE(204); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(54); + lookahead == ' ') ADVANCE(53); if (lookahead == '+' || ('/' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(54); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(53); END_STATE(); - case 55: - if (lookahead == '>') ADVANCE(457); + case 54: + if (lookahead == '>') ADVANCE(456); END_STATE(); - case 56: + case 55: ADVANCE_MAP( - 'U', 166, - 'u', 162, - 'x', 159, - '"', 189, - '\'', 189, - '0', 189, - '\\', 189, - 'a', 189, - 'b', 189, - 'e', 189, - 'f', 189, - 'n', 189, - 'r', 189, - 't', 189, - 'v', 189, + 'U', 165, + 'u', 161, + 'x', 158, + '"', 188, + '\'', 188, + '0', 188, + '\\', 188, + 'a', 188, + 'b', 188, + 'e', 188, + 'f', 188, + 'n', 188, + 'r', 188, + 't', 188, + 'v', 188, ); END_STATE(); + case 56: + if (lookahead == ']') ADVANCE(566); + END_STATE(); case 57: - if (lookahead == ']') ADVANCE(572); + if (lookahead == '_') ADVANCE(57); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(417); END_STATE(); case 58: if (lookahead == '_') ADVANCE(58); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(418); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(168); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); END_STATE(); case 59: - if (lookahead == '_') ADVANCE(59); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(169); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(417); - END_STATE(); - case 60: ADVANCE_MAP( - '_', 61, - 'a', 130, - 'c', 79, - 'd', 88, - 'e', 80, - 'i', 114, - 't', 142, - 'v', 74, + '_', 60, + 'a', 129, + 'c', 78, + 'd', 87, + 'e', 79, + 'i', 113, + 't', 141, + 'v', 73, ); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(168); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(167); + END_STATE(); + case 60: + if (lookahead == '_') ADVANCE(60); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(167); END_STATE(); case 61: if (lookahead == '_') ADVANCE(61); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(168); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); END_STATE(); case 62: if (lookahead == '_') ADVANCE(62); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(417); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(421); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); END_STATE(); case 63: if (lookahead == '_') ADVANCE(63); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(422); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); END_STATE(); case 64: if (lookahead == '_') ADVANCE(64); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(425); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 65: if (lookahead == '_') ADVANCE(65); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(426); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(423); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 66: - if (lookahead == '_') ADVANCE(66); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(424); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + if (lookahead == '_') ADVANCE(67); + if (lookahead == 'e') ADVANCE(407); + if (lookahead == 't') ADVANCE(411); + if (lookahead == 'v') ADVANCE(232); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(167); END_STATE(); case 67: - if (lookahead == '_') ADVANCE(68); - if (lookahead == 'e') ADVANCE(408); - if (lookahead == 't') ADVANCE(412); - if (lookahead == 'v') ADVANCE(233); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(168); + if (lookahead == '_') ADVANCE(67); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(167); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 68: if (lookahead == '_') ADVANCE(68); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(168); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(166); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); END_STATE(); case 69: if (lookahead == '_') ADVANCE(69); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(167); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(424); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 70: if (lookahead == '_') ADVANCE(70); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(423); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(422); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); END_STATE(); case 71: - if (lookahead == '_') ADVANCE(71); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(425); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); - END_STATE(); - case 72: - if (lookahead == '`') ADVANCE(205); + if (lookahead == '`') ADVANCE(204); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(72); + lookahead == ' ') ADVANCE(71); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(72); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(71); + END_STATE(); + case 72: + if (lookahead == '`') ADVANCE(203); END_STATE(); case 73: - if (lookahead == '`') ADVANCE(204); + if (lookahead == 'a') ADVANCE(136); END_STATE(); case 74: - if (lookahead == 'a') ADVANCE(137); + if (lookahead == 'a') ADVANCE(111); END_STATE(); case 75: - if (lookahead == 'a') ADVANCE(112); + if (lookahead == 'a') ADVANCE(139); END_STATE(); case 76: - if (lookahead == 'a') ADVANCE(140); + if (lookahead == 'a') ADVANCE(83); END_STATE(); case 77: - if (lookahead == 'a') ADVANCE(84); + if (lookahead == 'a') ADVANCE(108); END_STATE(); case 78: - if (lookahead == 'a') ADVANCE(109); + if (lookahead == 'a') ADVANCE(131); END_STATE(); case 79: - if (lookahead == 'a') ADVANCE(132); + if (lookahead == 'c') ADVANCE(104); + if (lookahead == 'l') ADVANCE(132); + if (lookahead == 'n') ADVANCE(84); + if (lookahead == 'r') ADVANCE(126); + if (lookahead == 'v') ADVANCE(74); + if (lookahead == 'x') ADVANCE(96); END_STATE(); case 80: - if (lookahead == 'c') ADVANCE(105); - if (lookahead == 'l') ADVANCE(133); - if (lookahead == 'n') ADVANCE(85); - if (lookahead == 'r') ADVANCE(127); - if (lookahead == 'v') ADVANCE(75); - if (lookahead == 'x') ADVANCE(97); + if (lookahead == 'c') ADVANCE(476); END_STATE(); case 81: - if (lookahead == 'c') ADVANCE(479); + if (lookahead == 'c') ADVANCE(105); END_STATE(); case 82: - if (lookahead == 'c') ADVANCE(106); + if (lookahead == 'c') ADVANCE(109); END_STATE(); case 83: - if (lookahead == 'c') ADVANCE(110); + if (lookahead == 'c') ADVANCE(106); END_STATE(); case 84: - if (lookahead == 'c') ADVANCE(107); + if (lookahead == 'd') ADVANCE(102); END_STATE(); case 85: if (lookahead == 'd') ADVANCE(103); END_STATE(); case 86: - if (lookahead == 'd') ADVANCE(104); + if (lookahead == 'd') ADVANCE(92); END_STATE(); case 87: - if (lookahead == 'd') ADVANCE(93); + if (lookahead == 'e') ADVANCE(100); END_STATE(); case 88: - if (lookahead == 'e') ADVANCE(101); + if (lookahead == 'e') ADVANCE(485); END_STATE(); case 89: - if (lookahead == 'e') ADVANCE(488); + if (lookahead == 'e') ADVANCE(483); END_STATE(); case 90: - if (lookahead == 'e') ADVANCE(486); + if (lookahead == 'e') ADVANCE(101); END_STATE(); case 91: - if (lookahead == 'e') ADVANCE(102); + if (lookahead == 'e') ADVANCE(561); END_STATE(); case 92: - if (lookahead == 'e') ADVANCE(567); + if (lookahead == 'e') ADVANCE(474); END_STATE(); case 93: - if (lookahead == 'e') ADVANCE(477); + if (lookahead == 'e') ADVANCE(563); END_STATE(); case 94: - if (lookahead == 'e') ADVANCE(569); + if (lookahead == 'e') ADVANCE(114); END_STATE(); case 95: - if (lookahead == 'e') ADVANCE(115); + if (lookahead == 'e') ADVANCE(125); END_STATE(); case 96: - if (lookahead == 'e') ADVANCE(126); + if (lookahead == 'e') ADVANCE(80); END_STATE(); case 97: - if (lookahead == 'e') ADVANCE(81); + if (lookahead == 'e') ADVANCE(76); END_STATE(); case 98: - if (lookahead == 'e') ADVANCE(77); + if (lookahead == 'f') ADVANCE(481); END_STATE(); case 99: - if (lookahead == 'f') ADVANCE(484); + if (lookahead == 'f') ADVANCE(557); END_STATE(); case 100: - if (lookahead == 'f') ADVANCE(563); + if (lookahead == 'f') ADVANCE(75); END_STATE(); case 101: - if (lookahead == 'f') ADVANCE(76); + if (lookahead == 'f') ADVANCE(127); + if (lookahead == 'o') ADVANCE(99); END_STATE(); case 102: - if (lookahead == 'f') ADVANCE(128); - if (lookahead == 'o') ADVANCE(100); + if (lookahead == 'f') ADVANCE(118); + if (lookahead == 'i') ADVANCE(98); + if (lookahead == 's') ADVANCE(140); END_STATE(); case 103: if (lookahead == 'f') ADVANCE(119); - if (lookahead == 'i') ADVANCE(99); - if (lookahead == 's') ADVANCE(141); END_STATE(); case 104: - if (lookahead == 'f') ADVANCE(120); + if (lookahead == 'h') ADVANCE(115); END_STATE(); case 105: - if (lookahead == 'h') ADVANCE(116); + if (lookahead == 'h') ADVANCE(490); END_STATE(); case 106: - if (lookahead == 'h') ADVANCE(493); + if (lookahead == 'h') ADVANCE(496); END_STATE(); case 107: - if (lookahead == 'h') ADVANCE(499); + if (lookahead == 'i') ADVANCE(135); END_STATE(); case 108: - if (lookahead == 'i') ADVANCE(136); + if (lookahead == 'l') ADVANCE(510); END_STATE(); case 109: - if (lookahead == 'l') ADVANCE(513); + if (lookahead == 'l') ADVANCE(138); END_STATE(); case 110: - if (lookahead == 'l') ADVANCE(139); + if (lookahead == 'l') ADVANCE(134); END_STATE(); case 111: - if (lookahead == 'l') ADVANCE(135); + if (lookahead == 'l') ADVANCE(137); END_STATE(); case 112: - if (lookahead == 'l') ADVANCE(138); + if (lookahead == 'm') ADVANCE(559); END_STATE(); case 113: - if (lookahead == 'm') ADVANCE(565); + if (lookahead == 'n') ADVANCE(82); END_STATE(); case 114: - if (lookahead == 'n') ADVANCE(83); + if (lookahead == 'n') ADVANCE(85); + if (lookahead == 'v') ADVANCE(77); END_STATE(); case 115: - if (lookahead == 'n') ADVANCE(86); - if (lookahead == 'v') ADVANCE(78); + if (lookahead == 'o') ADVANCE(478); END_STATE(); case 116: - if (lookahead == 'o') ADVANCE(481); + if (lookahead == 'o') ADVANCE(112); END_STATE(); case 117: - if (lookahead == 'o') ADVANCE(113); + if (lookahead == 'o') ADVANCE(123); END_STATE(); case 118: if (lookahead == 'o') ADVANCE(124); END_STATE(); case 119: - if (lookahead == 'o') ADVANCE(125); + if (lookahead == 'o') ADVANCE(128); END_STATE(); case 120: - if (lookahead == 'o') ADVANCE(129); + if (lookahead == 'p') ADVANCE(90); END_STATE(); case 121: if (lookahead == 'p') ADVANCE(91); END_STATE(); case 122: - if (lookahead == 'p') ADVANCE(92); + if (lookahead == 'p') ADVANCE(93); END_STATE(); case 123: - if (lookahead == 'p') ADVANCE(94); + if (lookahead == 'r') ADVANCE(472); END_STATE(); case 124: - if (lookahead == 'r') ADVANCE(475); + if (lookahead == 'r') ADVANCE(493); END_STATE(); case 125: - if (lookahead == 'r') ADVANCE(496); + if (lookahead == 'r') ADVANCE(133); END_STATE(); case 126: - if (lookahead == 'r') ADVANCE(134); + if (lookahead == 'r') ADVANCE(117); END_STATE(); case 127: - if (lookahead == 'r') ADVANCE(118); + if (lookahead == 'r') ADVANCE(116); END_STATE(); case 128: - if (lookahead == 'r') ADVANCE(117); + if (lookahead == 'r') ADVANCE(97); END_STATE(); case 129: - if (lookahead == 'r') ADVANCE(98); + if (lookahead == 's') ADVANCE(130); END_STATE(); case 130: - if (lookahead == 's') ADVANCE(131); + if (lookahead == 's') ADVANCE(95); END_STATE(); case 131: - if (lookahead == 's') ADVANCE(96); + if (lookahead == 's') ADVANCE(88); END_STATE(); case 132: if (lookahead == 's') ADVANCE(89); END_STATE(); case 133: - if (lookahead == 's') ADVANCE(90); + if (lookahead == 't') ADVANCE(470); END_STATE(); case 134: - if (lookahead == 't') ADVANCE(473); + if (lookahead == 't') ADVANCE(487); END_STATE(); case 135: - if (lookahead == 't') ADVANCE(490); + if (lookahead == 't') ADVANCE(81); END_STATE(); case 136: - if (lookahead == 't') ADVANCE(82); + if (lookahead == 't') ADVANCE(142); END_STATE(); case 137: if (lookahead == 't') ADVANCE(143); END_STATE(); case 138: - if (lookahead == 't') ADVANCE(144); + if (lookahead == 'u') ADVANCE(86); END_STATE(); case 139: - if (lookahead == 'u') ADVANCE(87); + if (lookahead == 'u') ADVANCE(110); END_STATE(); case 140: - if (lookahead == 'u') ADVANCE(111); + if (lookahead == 'w') ADVANCE(107); END_STATE(); case 141: - if (lookahead == 'w') ADVANCE(108); + if (lookahead == 'y') ADVANCE(120); END_STATE(); case 142: if (lookahead == 'y') ADVANCE(121); @@ -7102,22 +6901,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'y') ADVANCE(122); END_STATE(); case 144: - if (lookahead == 'y') ADVANCE(123); + if (lookahead == '}') ADVANCE(556); END_STATE(); case 145: - if (lookahead == '}') ADVANCE(562); - END_STATE(); - case 146: if (lookahead == '0' || - lookahead == '1') ADVANCE(185); + lookahead == '1') ADVANCE(184); END_STATE(); - case 147: + case 146: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(173); + lookahead == ' ') ADVANCE(172); if (lookahead == '+' || ('/' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(176); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + END_STATE(); + case 147: + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') ADVANCE(156); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(169); END_STATE(); case 148: if (('\t' <= lookahead && lookahead <= '\f') || @@ -7128,17 +6931,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 149: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(158); + lookahead == ' ') ADVANCE(159); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(171); END_STATE(); case 150: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(160); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(172); + lookahead == ' ') ADVANCE(173); + if (lookahead == '+' || + ('/' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(176); END_STATE(); case 151: if (('\t' <= lookahead && lookahead <= '\f') || @@ -7149,28 +6953,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 152: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(175); - if (lookahead == '+' || - ('/' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(178); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(185); END_STATE(); case 153: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(186); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(183); END_STATE(); case 154: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(184); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(188); END_STATE(); case 155: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(189); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(186); END_STATE(); case 156: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(187); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(169); END_STATE(); case 157: if (('0' <= lookahead && lookahead <= '9') || @@ -7180,22 +6981,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 158: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(171); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(154); END_STATE(); case 159: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(155); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(171); END_STATE(); case 160: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(172); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(158); END_STATE(); case 161: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(159); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(160); END_STATE(); case 162: if (('0' <= lookahead && lookahead <= '9') || @@ -7218,9 +7019,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'f')) ADVANCE(164); END_STATE(); case 166: + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(418); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(165); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(166); END_STATE(); case 167: if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(419); @@ -7235,31 +7037,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_') ADVANCE(168); END_STATE(); case 169: - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(421); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(169); - END_STATE(); - case 170: if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(26); END_STATE(); - case 171: + case 170: if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(38); END_STATE(); - case 172: + case 171: if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(72); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(71); + END_STATE(); + case 172: + if (lookahead == '+' || + ('/' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); END_STATE(); case 173: if (lookahead == '+' || @@ -7274,12 +7076,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 175: - if (lookahead == '+' || - ('/' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(178); - END_STATE(); - case 176: if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == '+' || @@ -7288,7 +7084,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(25); END_STATE(); - case 177: + case 176: if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == '+' || @@ -7297,611 +7093,619 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(37); END_STATE(); - case 178: + case 177: if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == '+' || ('/' <= lookahead && lookahead <= '9') || lookahead == '=' || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(54); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(53); END_STATE(); - case 179: - if (eof) ADVANCE(180); - if (lookahead == '\r') SKIP(179); - if (lookahead == '!') ADVANCE(540); - if (lookahead == '"') ADVANCE(195); - if (lookahead == '$') ADVANCE(60); - if (lookahead == '%') ADVANCE(546); - if (lookahead == '&') ADVANCE(441); - if (lookahead == '(') ADVANCE(436); - if (lookahead == ')') ADVANCE(437); - if (lookahead == '*') ADVANCE(472); - if (lookahead == '+') ADVANCE(461); - if (lookahead == ',') ADVANCE(429); - if (lookahead == '-') ADVANCE(465); - if (lookahead == '.') ADVANCE(455); - if (lookahead == '/') ADVANCE(545); - if (lookahead == ':') ADVANCE(450); - if (lookahead == ';') ADVANCE(445); - if (lookahead == '<') ADVANCE(557); - if (lookahead == '=') ADVANCE(433); - if (lookahead == '>') ADVANCE(553); - if (lookahead == '?') ADVANCE(535); - if (lookahead == '@') ADVANCE(59); + case 178: + if (eof) ADVANCE(179); + if (lookahead == '\r') SKIP(178); + if (lookahead == '!') ADVANCE(535); + if (lookahead == '"') ADVANCE(194); + if (lookahead == '$') ADVANCE(59); + if (lookahead == '%') ADVANCE(540); + if (lookahead == '&') ADVANCE(440); + if (lookahead == '(') ADVANCE(435); + if (lookahead == ')') ADVANCE(436); + if (lookahead == '*') ADVANCE(469); + if (lookahead == '+') ADVANCE(460); + if (lookahead == ',') ADVANCE(428); + if (lookahead == '-') ADVANCE(463); + if (lookahead == '.') ADVANCE(454); + if (lookahead == '/') ADVANCE(539); + if (lookahead == ':') ADVANCE(449); + if (lookahead == ';') ADVANCE(444); + if (lookahead == '<') ADVANCE(551); + if (lookahead == '=') ADVANCE(432); + if (lookahead == '>') ADVANCE(547); + if (lookahead == '?') ADVANCE(531); + if (lookahead == '@') ADVANCE(58); if (lookahead == '[') ADVANCE(442); - if (lookahead == ']') ADVANCE(444); - if (lookahead == '^') ADVANCE(550); - if (lookahead == '_') ADVANCE(63); - if (lookahead == '`') ADVANCE(200); - if (lookahead == 'b') ADVANCE(216); - if (lookahead == 'x') ADVANCE(213); - if (lookahead == '{') ADVANCE(446); - if (lookahead == '|') ADVANCE(547); - if (lookahead == '}') ADVANCE(448); + if (lookahead == ']') ADVANCE(443); + if (lookahead == '^') ADVANCE(544); + if (lookahead == '_') ADVANCE(62); + if (lookahead == '`') ADVANCE(199); + if (lookahead == 'b') ADVANCE(215); + if (lookahead == 'x') ADVANCE(212); + if (lookahead == '{') ADVANCE(445); + if (lookahead == '|') ADVANCE(541); + if (lookahead == '}') ADVANCE(447); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(179); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(422); + lookahead == ' ') SKIP(178); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(421); END_STATE(); - case 180: + case 179: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 181: + case 180: ACCEPT_TOKEN(sym_integer_literal); END_STATE(); - case 182: + case 181: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == '1') ADVANCE(49); - if (lookahead == '3') ADVANCE(48); - if (lookahead == '6') ADVANCE(50); + if (lookahead == '1') ADVANCE(48); + if (lookahead == '3') ADVANCE(47); + if (lookahead == '6') ADVANCE(49); if (lookahead == '8' || lookahead == 'L' || - lookahead == 'l') ADVANCE(181); + lookahead == 'l') ADVANCE(180); END_STATE(); - case 183: + case 182: ACCEPT_TOKEN(sym_integer_literal); ADVANCE_MAP( - 'U', 188, - '_', 154, - 'i', 47, - 'u', 182, - 'B', 146, - 'b', 146, - 'L', 181, - 'l', 181, - 'O', 153, - 'o', 153, - 'X', 156, - 'x', 156, + 'U', 187, + '_', 153, + 'i', 46, + 'u', 181, + 'B', 145, + 'b', 145, + 'L', 180, + 'l', 180, + 'O', 152, + 'o', 152, + 'X', 155, + 'x', 155, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(184); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(183); END_STATE(); - case 184: + case 183: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == 'U') ADVANCE(188); - if (lookahead == '_') ADVANCE(154); - if (lookahead == 'i') ADVANCE(47); - if (lookahead == 'u') ADVANCE(182); + if (lookahead == 'U') ADVANCE(187); + if (lookahead == '_') ADVANCE(153); + if (lookahead == 'i') ADVANCE(46); + if (lookahead == 'u') ADVANCE(181); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(181); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(184); + lookahead == 'l') ADVANCE(180); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(183); END_STATE(); - case 185: + case 184: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == 'U') ADVANCE(188); - if (lookahead == '_') ADVANCE(146); - if (lookahead == 'i') ADVANCE(47); - if (lookahead == 'u') ADVANCE(182); + if (lookahead == 'U') ADVANCE(187); + if (lookahead == '_') ADVANCE(145); + if (lookahead == 'i') ADVANCE(46); + if (lookahead == 'u') ADVANCE(181); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(181); + lookahead == 'l') ADVANCE(180); if (lookahead == '0' || - lookahead == '1') ADVANCE(185); + lookahead == '1') ADVANCE(184); END_STATE(); - case 186: + case 185: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == 'U') ADVANCE(188); - if (lookahead == '_') ADVANCE(153); - if (lookahead == 'i') ADVANCE(47); - if (lookahead == 'u') ADVANCE(182); + if (lookahead == 'U') ADVANCE(187); + if (lookahead == '_') ADVANCE(152); + if (lookahead == 'i') ADVANCE(46); + if (lookahead == 'u') ADVANCE(181); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(181); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(186); + lookahead == 'l') ADVANCE(180); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(185); END_STATE(); - case 187: + case 186: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == 'U') ADVANCE(188); - if (lookahead == '_') ADVANCE(156); - if (lookahead == 'i') ADVANCE(47); - if (lookahead == 'u') ADVANCE(182); + if (lookahead == 'U') ADVANCE(187); + if (lookahead == '_') ADVANCE(155); + if (lookahead == 'i') ADVANCE(46); + if (lookahead == 'u') ADVANCE(181); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(181); + lookahead == 'l') ADVANCE(180); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(187); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(186); END_STATE(); - case 188: + case 187: ACCEPT_TOKEN(sym_integer_literal); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(181); + lookahead == 'l') ADVANCE(180); END_STATE(); - case 189: + case 188: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 190: + case 189: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 191: + case 190: ACCEPT_TOKEN(aux_sym_char_literal_token1); END_STATE(); - case 192: + case 191: ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '*') ADVANCE(211); - if (lookahead == '/') ADVANCE(207); + if (lookahead == '*') ADVANCE(210); + if (lookahead == '/') ADVANCE(206); END_STATE(); - case 193: + case 192: ACCEPT_TOKEN(aux_sym_char_literal_token1); ADVANCE_MAP( - 'U', 166, - 'u', 162, - 'x', 159, - '"', 189, - '\'', 189, - '0', 189, - '\\', 189, - 'a', 189, - 'b', 189, - 'e', 189, - 'f', 189, - 'n', 189, - 'r', 189, - 't', 189, - 'v', 189, + 'U', 165, + 'u', 161, + 'x', 158, + '"', 188, + '\'', 188, + '0', 188, + '\\', 188, + 'a', 188, + 'b', 188, + 'e', 188, + 'f', 188, + 'n', 188, + 'r', 188, + 't', 188, + 'v', 188, ); END_STATE(); - case 194: + case 193: ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '\\') ADVANCE(56); + if (lookahead == '\\') ADVANCE(55); END_STATE(); - case 195: + case 194: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 196: + case 195: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '\r') ADVANCE(196); - if (lookahead == '/') ADVANCE(198); + if (lookahead == '\r') ADVANCE(195); + if (lookahead == '/') ADVANCE(197); if (lookahead == '\t' || lookahead == 0x0b || lookahead == '\f' || - lookahead == ' ') ADVANCE(196); + lookahead == ' ') ADVANCE(195); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != '"' && - lookahead != '\\') ADVANCE(199); + lookahead != '\\') ADVANCE(198); END_STATE(); - case 197: + case 196: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(199); + if (lookahead == '*') ADVANCE(198); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(199); + lookahead != '\\') ADVANCE(198); END_STATE(); - case 198: + case 197: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(197); - if (lookahead == '/') ADVANCE(199); + if (lookahead == '*') ADVANCE(196); + if (lookahead == '/') ADVANCE(198); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(199); + lookahead != '\\') ADVANCE(198); END_STATE(); - case 199: + case 198: ACCEPT_TOKEN(aux_sym_string_literal_token1); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(199); + lookahead != '\\') ADVANCE(198); END_STATE(); - case 200: + case 199: ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); + case 200: + ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); + if (lookahead == '\n') ADVANCE(203); + if (lookahead == '`') ADVANCE(205); + if (lookahead != 0) ADVANCE(200); + END_STATE(); case 201: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(204); - if (lookahead == '`') ADVANCE(206); - if (lookahead != 0) ADVANCE(201); + if (lookahead == '\r') ADVANCE(201); + if (lookahead == '/') ADVANCE(202); + if (lookahead == '`') ADVANCE(72); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') ADVANCE(201); + if (lookahead != 0) ADVANCE(203); END_STATE(); case 202: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\r') ADVANCE(202); - if (lookahead == '/') ADVANCE(203); - if (lookahead == '`') ADVANCE(73); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(202); - if (lookahead != 0) ADVANCE(204); + if (lookahead == '*') ADVANCE(211); + if (lookahead == '/') ADVANCE(200); + if (lookahead == '`') ADVANCE(72); + if (lookahead != 0) ADVANCE(203); END_STATE(); case 203: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(212); - if (lookahead == '/') ADVANCE(201); - if (lookahead == '`') ADVANCE(73); - if (lookahead != 0) ADVANCE(204); + if (lookahead == '`') ADVANCE(72); + if (lookahead != 0) ADVANCE(203); END_STATE(); case 204: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '`') ADVANCE(73); - if (lookahead != 0) ADVANCE(204); + ACCEPT_TOKEN(sym_bytes_literal); END_STATE(); case 205: - ACCEPT_TOKEN(sym_bytes_literal); + ACCEPT_TOKEN(aux_sym_line_comment_token1); + if (lookahead == '`') ADVANCE(200); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(206); END_STATE(); case 206: ACCEPT_TOKEN(aux_sym_line_comment_token1); - if (lookahead == '`') ADVANCE(201); if (lookahead != 0 && - lookahead != '\n') ADVANCE(207); + lookahead != '\n') ADVANCE(206); END_STATE(); case 207: - ACCEPT_TOKEN(aux_sym_line_comment_token1); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(207); + ACCEPT_TOKEN(anon_sym_SLASH_STAR_STAR); END_STATE(); case 208: ACCEPT_TOKEN(anon_sym_SLASH_STAR_STAR); + if (lookahead == '`') ADVANCE(72); + if (lookahead != 0) ADVANCE(203); END_STATE(); case 209: - ACCEPT_TOKEN(anon_sym_SLASH_STAR_STAR); - if (lookahead == '`') ADVANCE(73); - if (lookahead != 0) ADVANCE(204); + ACCEPT_TOKEN(anon_sym_STAR_SLASH); END_STATE(); case 210: - ACCEPT_TOKEN(anon_sym_STAR_SLASH); + ACCEPT_TOKEN(anon_sym_SLASH_STAR); + if (lookahead == '*') ADVANCE(207); END_STATE(); case 211: ACCEPT_TOKEN(anon_sym_SLASH_STAR); if (lookahead == '*') ADVANCE(208); + if (lookahead == '`') ADVANCE(72); + if (lookahead != 0) ADVANCE(203); END_STATE(); case 212: - ACCEPT_TOKEN(anon_sym_SLASH_STAR); - if (lookahead == '*') ADVANCE(209); - if (lookahead == '`') ADVANCE(73); - if (lookahead != 0) ADVANCE(204); + ACCEPT_TOKEN(sym_ident); + if (lookahead == '"') ADVANCE(147); + if (lookahead == '\'') ADVANCE(148); + if (lookahead == '`') ADVANCE(149); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(216); END_STATE(); case 213: ACCEPT_TOKEN(sym_ident); - if (lookahead == '"') ADVANCE(148); - if (lookahead == '\'') ADVANCE(149); - if (lookahead == '`') ADVANCE(150); + if (lookahead == '"') ADVANCE(146); + if (lookahead == '\'') ADVANCE(150); + if (lookahead == '`') ADVANCE(151); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(217); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(216); END_STATE(); case 214: ACCEPT_TOKEN(sym_ident); - if (lookahead == '"') ADVANCE(147); - if (lookahead == '\'') ADVANCE(151); - if (lookahead == '`') ADVANCE(152); + if (lookahead == '4') ADVANCE(213); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(217); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); END_STATE(); case 215: ACCEPT_TOKEN(sym_ident); - if (lookahead == '4') ADVANCE(214); + if (lookahead == '6') ADVANCE(214); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); END_STATE(); case 216: ACCEPT_TOKEN(sym_ident); - if (lookahead == '6') ADVANCE(215); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(216); END_STATE(); case 217: - ACCEPT_TOKEN(sym_ident); + ACCEPT_TOKEN(sym_ct_ident); + if (lookahead == '_') ADVANCE(250); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 218: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == '_') ADVANCE(251); + if (lookahead == 'a') ADVANCE(336); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 219: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'a') ADVANCE(337); + if (lookahead == 'a') ADVANCE(226); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 220: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'a') ADVANCE(227); + if (lookahead == 'a') ADVANCE(328); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 221: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'a') ADVANCE(329); + if (lookahead == 'a') ADVANCE(397); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 222: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'a') ADVANCE(398); + if (lookahead == 'a') ADVANCE(404); + if (lookahead == 'i') ADVANCE(346); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 223: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'a') ADVANCE(405); - if (lookahead == 'i') ADVANCE(347); + if (lookahead == 'a') ADVANCE(227); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 224: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'a') ADVANCE(228); + if (lookahead == 'a') ADVANCE(384); + if (lookahead == 'o') ADVANCE(339); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 225: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'a') ADVANCE(385); - if (lookahead == 'o') ADVANCE(340); + if (lookahead == 'a') ADVANCE(237); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 226: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'a') ADVANCE(238); + if (lookahead == 'a') ADVANCE(374); + if (lookahead == 'c') ADVANCE(351); + if (lookahead == 'e') ADVANCE(409); + if (lookahead == 'r') ADVANCE(277); + if (lookahead == 's') ADVANCE(365); + if (lookahead == 't') ADVANCE(412); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 227: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'a') ADVANCE(375); - if (lookahead == 'c') ADVANCE(352); - if (lookahead == 'e') ADVANCE(410); - if (lookahead == 'r') ADVANCE(278); - if (lookahead == 's') ADVANCE(366); - if (lookahead == 't') ADVANCE(413); + if (lookahead == 'a') ADVANCE(374); + if (lookahead == 'c') ADVANCE(351); + if (lookahead == 'e') ADVANCE(409); + if (lookahead == 'r') ADVANCE(277); + if (lookahead == 't') ADVANCE(412); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 228: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'a') ADVANCE(375); - if (lookahead == 'c') ADVANCE(352); - if (lookahead == 'e') ADVANCE(410); - if (lookahead == 'r') ADVANCE(278); - if (lookahead == 't') ADVANCE(413); + if (lookahead == 'a') ADVANCE(391); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 229: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'a') ADVANCE(392); + if (lookahead == 'a') ADVANCE(248); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 230: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'a') ADVANCE(249); + if (lookahead == 'a') ADVANCE(252); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 231: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'a') ADVANCE(253); + if (lookahead == 'a') ADVANCE(395); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 232: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'a') ADVANCE(401); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 233: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'a') ADVANCE(402); + if (lookahead == 'a') ADVANCE(337); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 234: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'a') ADVANCE(338); + if (lookahead == 'a') ADVANCE(333); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 235: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'a') ADVANCE(334); + if (lookahead == 'a') ADVANCE(338); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 236: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'a') ADVANCE(339); + if (lookahead == 'b') ADVANCE(272); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 237: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'b') ADVANCE(273); + if (lookahead == 'b') ADVANCE(332); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 238: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'b') ADVANCE(333); + if (lookahead == 'c') ADVANCE(311); + if (lookahead == 'l') ADVANCE(385); + if (lookahead == 'm') ADVANCE(236); + if (lookahead == 'n') ADVANCE(254); + if (lookahead == 'r') ADVANCE(375); + if (lookahead == 'v') ADVANCE(220); + if (lookahead == 'x') ADVANCE(273); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 239: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'c') ADVANCE(312); - if (lookahead == 'l') ADVANCE(386); - if (lookahead == 'm') ADVANCE(237); - if (lookahead == 'n') ADVANCE(255); - if (lookahead == 'r') ADVANCE(376); - if (lookahead == 'v') ADVANCE(221); - if (lookahead == 'x') ADVANCE(274); + if (lookahead == 'c') ADVANCE(311); + if (lookahead == 'l') ADVANCE(385); + if (lookahead == 'm') ADVANCE(236); + if (lookahead == 'n') ADVANCE(259); + if (lookahead == 'r') ADVANCE(375); + if (lookahead == 'v') ADVANCE(220); + if (lookahead == 'x') ADVANCE(403); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 240: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'c') ADVANCE(312); - if (lookahead == 'l') ADVANCE(386); - if (lookahead == 'm') ADVANCE(237); - if (lookahead == 'n') ADVANCE(260); - if (lookahead == 'r') ADVANCE(376); - if (lookahead == 'v') ADVANCE(221); - if (lookahead == 'x') ADVANCE(404); + if (lookahead == 'c') ADVANCE(311); + if (lookahead == 'm') ADVANCE(236); + if (lookahead == 'n') ADVANCE(258); + if (lookahead == 'r') ADVANCE(375); + if (lookahead == 'v') ADVANCE(220); + if (lookahead == 'x') ADVANCE(403); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 241: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'c') ADVANCE(312); - if (lookahead == 'm') ADVANCE(237); + if (lookahead == 'c') ADVANCE(311); + if (lookahead == 'm') ADVANCE(236); if (lookahead == 'n') ADVANCE(259); - if (lookahead == 'r') ADVANCE(376); - if (lookahead == 'v') ADVANCE(221); - if (lookahead == 'x') ADVANCE(404); + if (lookahead == 'r') ADVANCE(375); + if (lookahead == 'v') ADVANCE(220); + if (lookahead == 'x') ADVANCE(403); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 242: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'c') ADVANCE(312); - if (lookahead == 'm') ADVANCE(237); - if (lookahead == 'n') ADVANCE(260); - if (lookahead == 'r') ADVANCE(376); - if (lookahead == 'v') ADVANCE(221); - if (lookahead == 'x') ADVANCE(404); + if (lookahead == 'c') ADVANCE(311); + if (lookahead == 'm') ADVANCE(236); + if (lookahead == 'n') ADVANCE(261); + if (lookahead == 'r') ADVANCE(375); + if (lookahead == 'v') ADVANCE(220); + if (lookahead == 'x') ADVANCE(403); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 243: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'c') ADVANCE(312); - if (lookahead == 'm') ADVANCE(237); + if (lookahead == 'c') ADVANCE(311); + if (lookahead == 'm') ADVANCE(236); if (lookahead == 'n') ADVANCE(262); - if (lookahead == 'r') ADVANCE(376); - if (lookahead == 'v') ADVANCE(221); - if (lookahead == 'x') ADVANCE(404); + if (lookahead == 'r') ADVANCE(375); + if (lookahead == 'v') ADVANCE(220); + if (lookahead == 'x') ADVANCE(403); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 244: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'c') ADVANCE(312); - if (lookahead == 'm') ADVANCE(237); - if (lookahead == 'n') ADVANCE(263); - if (lookahead == 'r') ADVANCE(376); - if (lookahead == 'v') ADVANCE(221); - if (lookahead == 'x') ADVANCE(404); + if (lookahead == 'c') ADVANCE(311); + if (lookahead == 'm') ADVANCE(236); + if (lookahead == 'r') ADVANCE(375); + if (lookahead == 'v') ADVANCE(220); + if (lookahead == 'x') ADVANCE(403); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 245: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'c') ADVANCE(312); - if (lookahead == 'm') ADVANCE(237); - if (lookahead == 'r') ADVANCE(376); - if (lookahead == 'v') ADVANCE(221); - if (lookahead == 'x') ADVANCE(404); + if (lookahead == 'c') ADVANCE(477); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 246: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'c') ADVANCE(480); + if (lookahead == 'c') ADVANCE(312); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 247: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'c') ADVANCE(313); + if (lookahead == 'c') ADVANCE(329); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 248: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'c') ADVANCE(330); + if (lookahead == 'c') ADVANCE(313); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 249: ACCEPT_TOKEN(sym_ct_ident); @@ -7909,732 +7713,732 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 250: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'c') ADVANCE(315); + if (lookahead == 'c') ADVANCE(358); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 251: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'c') ADVANCE(359); + if (lookahead == 'c') ADVANCE(228); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 252: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'c') ADVANCE(229); + if (lookahead == 'c') ADVANCE(315); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 253: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'c') ADVANCE(316); + if (lookahead == 'd') ADVANCE(515); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 254: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'd') ADVANCE(518); + if (lookahead == 'd') ADVANCE(302); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 255: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'd') ADVANCE(303); + if (lookahead == 'd') ADVANCE(517); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 256: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'd') ADVANCE(520); + if (lookahead == 'd') ADVANCE(508); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 257: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'd') ADVANCE(511); + if (lookahead == 'd') ADVANCE(516); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 258: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'd') ADVANCE(519); + if (lookahead == 'd') ADVANCE(383); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 259: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'd') ADVANCE(384); + if (lookahead == 'd') ADVANCE(320); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 260: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'd') ADVANCE(321); + if (lookahead == 'd') ADVANCE(269); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 261: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'd') ADVANCE(270); + if (lookahead == 'd') ADVANCE(306); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 262: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'd') ADVANCE(307); + if (lookahead == 'd') ADVANCE(303); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 263: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'd') ADVANCE(304); + if (lookahead == 'e') ADVANCE(289); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 264: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(290); + if (lookahead == 'e') ADVANCE(486); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 265: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(489); + if (lookahead == 'e') ADVANCE(484); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 266: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(487); + if (lookahead == 'e') ADVANCE(301); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 267: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(302); + if (lookahead == 'e') ADVANCE(562); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 268: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(568); + if (lookahead == 'e') ADVANCE(519); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 269: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(522); + if (lookahead == 'e') ADVANCE(475); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 270: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(478); + if (lookahead == 'e') ADVANCE(564); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 271: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(570); + if (lookahead == 'e') ADVANCE(520); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 272: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(523); + if (lookahead == 'e') ADVANCE(255); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 273: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(256); + if (lookahead == 'e') ADVANCE(245); + if (lookahead == 't') ADVANCE(349); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 274: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(246); - if (lookahead == 't') ADVANCE(350); + if (lookahead == 'e') ADVANCE(221); + if (lookahead == 'o') ADVANCE(370); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 275: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(222); - if (lookahead == 'o') ADVANCE(371); + if (lookahead == 'e') ADVANCE(221); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 276: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(222); + if (lookahead == 'e') ADVANCE(342); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 277: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(343); + if (lookahead == 'e') ADVANCE(291); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 278: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(292); + if (lookahead == 'e') ADVANCE(377); + if (lookahead == 'i') ADVANCE(310); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 279: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(378); - if (lookahead == 'i') ADVANCE(311); + if (lookahead == 'e') ADVANCE(354); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 280: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(355); + if (lookahead == 'e') ADVANCE(400); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 281: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(401); + if (lookahead == 'e') ADVANCE(257); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 282: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(258); + if (lookahead == 'e') ADVANCE(355); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 283: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(356); + if (lookahead == 'e') ADVANCE(304); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 284: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(305); + if (lookahead == 'e') ADVANCE(230); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 285: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(231); + if (lookahead == 'e') ADVANCE(360); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 286: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(361); + if (lookahead == 'e') ADVANCE(362); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 287: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(363); + if (lookahead == 'f') ADVANCE(480); + if (lookahead == 'n') ADVANCE(247); + if (lookahead == 's') ADVANCE(217); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 288: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'f') ADVANCE(483); - if (lookahead == 'n') ADVANCE(248); - if (lookahead == 's') ADVANCE(218); + if (lookahead == 'f') ADVANCE(480); + if (lookahead == 's') ADVANCE(217); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 289: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'f') ADVANCE(483); - if (lookahead == 's') ADVANCE(218); + if (lookahead == 'f') ADVANCE(222); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 290: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'f') ADVANCE(223); + if (lookahead == 'f') ADVANCE(482); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 291: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'f') ADVANCE(485); + if (lookahead == 'f') ADVANCE(505); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 292: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'f') ADVANCE(508); + if (lookahead == 'f') ADVANCE(500); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 293: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'f') ADVANCE(503); + if (lookahead == 'f') ADVANCE(513); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 294: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'f') ADVANCE(516); + if (lookahead == 'f') ADVANCE(558); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 295: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'f') ADVANCE(564); + if (lookahead == 'f') ADVANCE(498); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 296: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'f') ADVANCE(501); + if (lookahead == 'f') ADVANCE(502); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 297: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'f') ADVANCE(505); + if (lookahead == 'f') ADVANCE(501); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 298: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'f') ADVANCE(504); + if (lookahead == 'f') ADVANCE(499); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 299: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'f') ADVANCE(502); + if (lookahead == 'f') ADVANCE(410); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 300: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'f') ADVANCE(411); + if (lookahead == 'f') ADVANCE(305); + if (lookahead == 'r') ADVANCE(518); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 301: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'f') ADVANCE(306); - if (lookahead == 'r') ADVANCE(521); + if (lookahead == 'f') ADVANCE(378); + if (lookahead == 'o') ADVANCE(294); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 302: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'f') ADVANCE(379); - if (lookahead == 'o') ADVANCE(295); + if (lookahead == 'f') ADVANCE(357); + if (lookahead == 'i') ADVANCE(290); + if (lookahead == 's') ADVANCE(408); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 303: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'f') ADVANCE(358); - if (lookahead == 'i') ADVANCE(291); - if (lookahead == 's') ADVANCE(409); + if (lookahead == 'f') ADVANCE(357); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 304: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'f') ADVANCE(358); + if (lookahead == 'f') ADVANCE(321); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 305: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'f') ADVANCE(322); + if (lookahead == 'f') ADVANCE(387); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 306: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'f') ADVANCE(388); + if (lookahead == 'f') ADVANCE(363); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 307: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'f') ADVANCE(364); + if (lookahead == 'g') ADVANCE(504); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 308: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'g') ADVANCE(507); + if (lookahead == 'g') ADVANCE(343); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 309: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'g') ADVANCE(344); + if (lookahead == 'g') ADVANCE(323); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 310: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'g') ADVANCE(324); + if (lookahead == 'g') ADVANCE(344); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 311: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'g') ADVANCE(345); + if (lookahead == 'h') ADVANCE(350); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 312: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'h') ADVANCE(351); + if (lookahead == 'h') ADVANCE(489); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 313: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'h') ADVANCE(492); + if (lookahead == 'h') ADVANCE(495); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 314: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'h') ADVANCE(498); + if (lookahead == 'h') ADVANCE(491); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 315: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'h') ADVANCE(494); + if (lookahead == 'h') ADVANCE(497); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 316: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'h') ADVANCE(500); + if (lookahead == 'i') ADVANCE(414); + if (lookahead == 't') ADVANCE(376); + if (lookahead == 'w') ADVANCE(319); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 317: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'i') ADVANCE(415); - if (lookahead == 't') ADVANCE(377); - if (lookahead == 'w') ADVANCE(320); + if (lookahead == 'i') ADVANCE(414); + if (lookahead == 't') ADVANCE(376); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 318: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'i') ADVANCE(415); - if (lookahead == 't') ADVANCE(377); + if (lookahead == 'i') ADVANCE(308); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 319: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'i') ADVANCE(309); + if (lookahead == 'i') ADVANCE(398); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 320: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'i') ADVANCE(399); + if (lookahead == 'i') ADVANCE(290); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 321: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'i') ADVANCE(291); + if (lookahead == 'i') ADVANCE(346); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 322: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'i') ADVANCE(347); + if (lookahead == 'i') ADVANCE(341); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 323: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'i') ADVANCE(342); + if (lookahead == 'i') ADVANCE(299); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 324: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'i') ADVANCE(300); + if (lookahead == 'i') ADVANCE(310); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 325: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'i') ADVANCE(311); + if (lookahead == 'i') ADVANCE(399); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 326: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'i') ADVANCE(400); + if (lookahead == 'l') ADVANCE(318); + if (lookahead == 'n') ADVANCE(253); + if (lookahead == 'p') ADVANCE(364); + if (lookahead == 's') ADVANCE(382); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 327: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'l') ADVANCE(319); - if (lookahead == 'n') ADVANCE(254); - if (lookahead == 'p') ADVANCE(365); - if (lookahead == 's') ADVANCE(383); + if (lookahead == 'l') ADVANCE(318); + if (lookahead == 'n') ADVANCE(253); + if (lookahead == 'p') ADVANCE(364); + if (lookahead == 's') ADVANCE(389); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 328: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'l') ADVANCE(319); - if (lookahead == 'n') ADVANCE(254); - if (lookahead == 'p') ADVANCE(365); - if (lookahead == 's') ADVANCE(390); + if (lookahead == 'l') ADVANCE(511); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 329: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'l') ADVANCE(514); + if (lookahead == 'l') ADVANCE(405); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 330: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'l') ADVANCE(406); + if (lookahead == 'l') ADVANCE(392); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 331: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'l') ADVANCE(393); + if (lookahead == 'l') ADVANCE(231); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 332: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'l') ADVANCE(232); + if (lookahead == 'l') ADVANCE(271); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 333: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'l') ADVANCE(272); + if (lookahead == 'l') ADVANCE(402); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 334: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'l') ADVANCE(403); + if (lookahead == 'm') ADVANCE(236); + if (lookahead == 'v') ADVANCE(220); + if (lookahead == 'x') ADVANCE(403); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 335: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'm') ADVANCE(237); - if (lookahead == 'v') ADVANCE(221); - if (lookahead == 'x') ADVANCE(404); + if (lookahead == 'm') ADVANCE(560); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 336: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'm') ADVANCE(566); + if (lookahead == 'm') ADVANCE(279); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 337: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'm') ADVANCE(280); + if (lookahead == 'm') ADVANCE(285); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 338: ACCEPT_TOKEN(sym_ct_ident); @@ -8642,136 +8446,136 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 339: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'm') ADVANCE(287); + if (lookahead == 'n') ADVANCE(251); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 340: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'n') ADVANCE(252); + if (lookahead == 'n') ADVANCE(386); + if (lookahead == 'u') ADVANCE(345); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 341: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'n') ADVANCE(387); - if (lookahead == 'u') ADVANCE(346); + if (lookahead == 'n') ADVANCE(309); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 342: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'n') ADVANCE(310); + if (lookahead == 'n') ADVANCE(256); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 343: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'n') ADVANCE(257); + if (lookahead == 'n') ADVANCE(359); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 344: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'n') ADVANCE(360); + if (lookahead == 'n') ADVANCE(225); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 345: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'n') ADVANCE(226); + if (lookahead == 'n') ADVANCE(394); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 346: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'n') ADVANCE(395); + if (lookahead == 'n') ADVANCE(281); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 347: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'n') ADVANCE(282); + if (lookahead == 'n') ADVANCE(388); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 348: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'n') ADVANCE(389); + if (lookahead == 'n') ADVANCE(233); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 349: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'n') ADVANCE(234); + if (lookahead == 'n') ADVANCE(235); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 350: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'n') ADVANCE(236); + if (lookahead == 'o') ADVANCE(479); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 351: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'o') ADVANCE(482); + if (lookahead == 'o') ADVANCE(340); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 352: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'o') ADVANCE(341); + if (lookahead == 'o') ADVANCE(339); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 353: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'o') ADVANCE(340); + if (lookahead == 'o') ADVANCE(335); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 354: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'o') ADVANCE(336); + if (lookahead == 'o') ADVANCE(292); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 355: ACCEPT_TOKEN(sym_ct_ident); @@ -8779,15 +8583,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 356: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'o') ADVANCE(294); + if (lookahead == 'o') ADVANCE(371); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 357: ACCEPT_TOKEN(sym_ct_ident); @@ -8795,23 +8599,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 358: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'o') ADVANCE(373); + if (lookahead == 'o') ADVANCE(347); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 359: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'o') ADVANCE(348); + if (lookahead == 'o') ADVANCE(295); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 360: ACCEPT_TOKEN(sym_ct_ident); @@ -8819,7 +8623,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 361: ACCEPT_TOKEN(sym_ct_ident); @@ -8827,7 +8631,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 362: ACCEPT_TOKEN(sym_ct_ident); @@ -8835,183 +8639,183 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 363: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'o') ADVANCE(299); + if (lookahead == 'o') ADVANCE(380); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 364: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'o') ADVANCE(381); + if (lookahead == 'p') ADVANCE(276); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 365: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'p') ADVANCE(277); + if (lookahead == 'p') ADVANCE(331); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 366: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'p') ADVANCE(332); + if (lookahead == 'p') ADVANCE(266); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 367: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'p') ADVANCE(267); + if (lookahead == 'p') ADVANCE(373); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 368: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'p') ADVANCE(374); + if (lookahead == 'p') ADVANCE(267); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 369: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'p') ADVANCE(268); + if (lookahead == 'p') ADVANCE(270); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 370: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'p') ADVANCE(271); + if (lookahead == 'r') ADVANCE(492); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 371: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'r') ADVANCE(495); + if (lookahead == 'r') ADVANCE(473); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 372: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'r') ADVANCE(476); + if (lookahead == 'r') ADVANCE(494); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 373: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'r') ADVANCE(497); + if (lookahead == 'r') ADVANCE(506); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 374: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'r') ADVANCE(509); + if (lookahead == 'r') ADVANCE(307); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 375: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'r') ADVANCE(308); + if (lookahead == 'r') ADVANCE(356); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 376: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'r') ADVANCE(357); + if (lookahead == 'r') ADVANCE(322); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 377: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'r') ADVANCE(323); + if (lookahead == 'r') ADVANCE(390); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 378: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'r') ADVANCE(391); + if (lookahead == 'r') ADVANCE(353); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 379: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'r') ADVANCE(354); + if (lookahead == 'r') ADVANCE(268); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 380: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'r') ADVANCE(269); + if (lookahead == 'r') ADVANCE(284); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 381: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'r') ADVANCE(285); + if (lookahead == 's') ADVANCE(217); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 382: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 's') ADVANCE(218); + if (lookahead == 's') ADVANCE(278); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 383: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 's') ADVANCE(279); + if (lookahead == 's') ADVANCE(408); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 384: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 's') ADVANCE(409); + if (lookahead == 's') ADVANCE(264); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 385: ACCEPT_TOKEN(sym_ct_ident); @@ -9019,135 +8823,135 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 386: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 's') ADVANCE(266); + if (lookahead == 's') ADVANCE(393); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 387: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 's') ADVANCE(394); + if (lookahead == 's') ADVANCE(280); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 388: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 's') ADVANCE(281); + if (lookahead == 's') ADVANCE(396); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 389: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 's') ADVANCE(397); + if (lookahead == 's') ADVANCE(324); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 390: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 's') ADVANCE(325); + if (lookahead == 't') ADVANCE(471); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 391: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 't') ADVANCE(474); + if (lookahead == 't') ADVANCE(509); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 392: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 't') ADVANCE(512); + if (lookahead == 't') ADVANCE(488); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 393: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 't') ADVANCE(491); + if (lookahead == 't') ADVANCE(503); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 394: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 't') ADVANCE(506); + if (lookahead == 't') ADVANCE(507); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 395: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 't') ADVANCE(510); + if (lookahead == 't') ADVANCE(553); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 396: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 't') ADVANCE(559); + if (lookahead == 't') ADVANCE(512); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 397: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 't') ADVANCE(515); + if (lookahead == 't') ADVANCE(406); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 398: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 't') ADVANCE(407); + if (lookahead == 't') ADVANCE(246); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 399: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 't') ADVANCE(247); + if (lookahead == 't') ADVANCE(249); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 400: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 't') ADVANCE(250); + if (lookahead == 't') ADVANCE(361); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 401: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 't') ADVANCE(362); + if (lookahead == 't') ADVANCE(412); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 402: ACCEPT_TOKEN(sym_ct_ident); @@ -9155,87 +8959,87 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 403: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 't') ADVANCE(414); + if (lookahead == 't') ADVANCE(349); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 404: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 't') ADVANCE(350); + if (lookahead == 'u') ADVANCE(330); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 405: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'u') ADVANCE(331); + if (lookahead == 'u') ADVANCE(260); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 406: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'u') ADVANCE(261); + if (lookahead == 'u') ADVANCE(379); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 407: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'u') ADVANCE(380); + if (lookahead == 'v') ADVANCE(234); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 408: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'v') ADVANCE(235); + if (lookahead == 'w') ADVANCE(325); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 409: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'w') ADVANCE(326); + if (lookahead == 'x') ADVANCE(367); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 410: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'x') ADVANCE(368); + if (lookahead == 'y') ADVANCE(514); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 411: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'y') ADVANCE(517); + if (lookahead == 'y') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 412: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'y') ADVANCE(367); + if (lookahead == 'y') ADVANCE(368); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 413: ACCEPT_TOKEN(sym_ct_ident); @@ -9243,88 +9047,86 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 414: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'y') ADVANCE(370); + if (lookahead == 'z') ADVANCE(282); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'y')) ADVANCE(415); END_STATE(); case 415: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'z') ADVANCE(283); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'y')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 416: - ACCEPT_TOKEN(sym_ct_ident); + ACCEPT_TOKEN(sym_at_ident); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); END_STATE(); case 417: - ACCEPT_TOKEN(sym_at_ident); + ACCEPT_TOKEN(sym_hash_ident); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(417); END_STATE(); case 418: - ACCEPT_TOKEN(sym_hash_ident); + ACCEPT_TOKEN(sym_type_ident); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(418); END_STATE(); case 419: - ACCEPT_TOKEN(sym_type_ident); + ACCEPT_TOKEN(sym_ct_type_ident); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419); END_STATE(); case 420: - ACCEPT_TOKEN(sym_ct_type_ident); + ACCEPT_TOKEN(sym_at_type_ident); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(420); END_STATE(); case 421: - ACCEPT_TOKEN(sym_at_type_ident); + ACCEPT_TOKEN(sym_const_ident); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(418); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(421); + lookahead == '_') ADVANCE(421); END_STATE(); case 422: ACCEPT_TOKEN(sym_const_ident); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(419); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_') ADVANCE(422); END_STATE(); case 423: - ACCEPT_TOKEN(sym_const_ident); + ACCEPT_TOKEN(sym_ct_const_ident); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(419); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_') ADVANCE(423); END_STATE(); case 424: ACCEPT_TOKEN(sym_ct_const_ident); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(420); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_') ADVANCE(424); END_STATE(); case 425: - ACCEPT_TOKEN(sym_ct_const_ident); + ACCEPT_TOKEN(sym_builtin); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_') ADVANCE(425); @@ -9333,671 +9135,646 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym_builtin); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(426); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); END_STATE(); case 427: - ACCEPT_TOKEN(sym_builtin); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + ACCEPT_TOKEN(anon_sym_COLON_COLON); END_STATE(); case 428: - ACCEPT_TOKEN(anon_sym_COLON_COLON); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 429: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_LPAREN_LT); END_STATE(); case 430: - ACCEPT_TOKEN(anon_sym_LPAREN_LT); + ACCEPT_TOKEN(anon_sym_GT_RPAREN); END_STATE(); case 431: - ACCEPT_TOKEN(anon_sym_GT_RPAREN); + ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); case 432: ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(545); END_STATE(); case 433: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(551); + if (lookahead == '=') ADVANCE(545); + if (lookahead == '>') ADVANCE(456); END_STATE(); case 434: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(551); - if (lookahead == '>') ADVANCE(457); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 435: ACCEPT_TOKEN(anon_sym_LPAREN); + if (lookahead == '<') ADVANCE(429); END_STATE(); case 436: - ACCEPT_TOKEN(anon_sym_LPAREN); - if (lookahead == '<') ADVANCE(430); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 437: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); case 438: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); case 439: ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(457); END_STATE(); case 440: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(458); + if (lookahead == '&') ADVANCE(457); + if (lookahead == '=') ADVANCE(528); END_STATE(); case 441: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(458); - if (lookahead == '=') ADVANCE(531); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 442: ACCEPT_TOKEN(anon_sym_LBRACK); + if (lookahead == '<') ADVANCE(565); END_STATE(); case 443: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '<') ADVANCE(571); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 444: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 445: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 446: ACCEPT_TOKEN(anon_sym_LBRACE); + if (lookahead == '|') ADVANCE(555); END_STATE(); case 447: - ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead == '|') ADVANCE(561); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 448: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 449: ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == ':') ADVANCE(427); END_STATE(); case 450: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(428); + ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); case 451: ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '.') ADVANCE(437); END_STATE(); case 452: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(438); + ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); case 453: ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(451); END_STATE(); case 454: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(452); + if (lookahead == '.') ADVANCE(450); END_STATE(); case 455: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(451); + if (lookahead == '.') ADVANCE(42); END_STATE(); case 456: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(44); + ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); case 457: - ACCEPT_TOKEN(anon_sym_EQ_GT); + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); case 458: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); case 459: ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(537); END_STATE(); case 460: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(543); + if (lookahead == '+') ADVANCE(537); + if (lookahead == '=') ADVANCE(521); END_STATE(); case 461: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(543); - if (lookahead == '=') ADVANCE(524); + ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); case 462: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '=') ADVANCE(524); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(538); END_STATE(); case 463: ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(538); + if (lookahead == '=') ADVANCE(522); END_STATE(); case 464: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(544); - END_STATE(); - case 465: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(544); - if (lookahead == '=') ADVANCE(525); - END_STATE(); - case 466: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(525); - END_STATE(); - case 467: ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); - case 468: + case 465: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(529); + if (lookahead == '=') ADVANCE(526); END_STATE(); - case 469: + case 466: ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); - case 470: + case 467: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(530); + if (lookahead == '=') ADVANCE(527); END_STATE(); - case 471: + case 468: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 472: + case 469: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '=') ADVANCE(526); + if (lookahead == '=') ADVANCE(523); END_STATE(); - case 473: + case 470: ACCEPT_TOKEN(anon_sym_DOLLARassert); END_STATE(); - case 474: + case 471: ACCEPT_TOKEN(anon_sym_DOLLARassert); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); - case 475: + case 472: ACCEPT_TOKEN(anon_sym_DOLLARerror); END_STATE(); - case 476: + case 473: ACCEPT_TOKEN(anon_sym_DOLLARerror); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); - case 477: + case 474: ACCEPT_TOKEN(anon_sym_DOLLARinclude); END_STATE(); - case 478: + case 475: ACCEPT_TOKEN(anon_sym_DOLLARinclude); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); - case 479: + case 476: ACCEPT_TOKEN(anon_sym_DOLLARexec); END_STATE(); - case 480: + case 477: ACCEPT_TOKEN(anon_sym_DOLLARexec); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); - case 481: + case 478: ACCEPT_TOKEN(anon_sym_DOLLARecho); END_STATE(); - case 482: + case 479: ACCEPT_TOKEN(anon_sym_DOLLARecho); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); - case 483: + case 480: ACCEPT_TOKEN(anon_sym_DOLLARif); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); - case 484: + case 481: ACCEPT_TOKEN(anon_sym_DOLLARendif); END_STATE(); - case 485: + case 482: ACCEPT_TOKEN(anon_sym_DOLLARendif); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); - case 486: + case 483: ACCEPT_TOKEN(anon_sym_DOLLARelse); END_STATE(); - case 487: + case 484: ACCEPT_TOKEN(anon_sym_DOLLARelse); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); - case 488: + case 485: ACCEPT_TOKEN(anon_sym_DOLLARcase); END_STATE(); - case 489: + case 486: ACCEPT_TOKEN(anon_sym_DOLLARcase); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); - case 490: + case 487: ACCEPT_TOKEN(anon_sym_DOLLARdefault); END_STATE(); - case 491: + case 488: ACCEPT_TOKEN(anon_sym_DOLLARdefault); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); - case 492: + case 489: ACCEPT_TOKEN(anon_sym_DOLLARswitch); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); - case 493: + case 490: ACCEPT_TOKEN(anon_sym_DOLLARendswitch); END_STATE(); - case 494: + case 491: ACCEPT_TOKEN(anon_sym_DOLLARendswitch); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); - case 495: + case 492: ACCEPT_TOKEN(anon_sym_DOLLARfor); - if (lookahead == 'e') ADVANCE(230); + if (lookahead == 'e') ADVANCE(229); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); - case 496: + case 493: ACCEPT_TOKEN(anon_sym_DOLLARendfor); END_STATE(); - case 497: + case 494: ACCEPT_TOKEN(anon_sym_DOLLARendfor); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); - case 498: + case 495: ACCEPT_TOKEN(anon_sym_DOLLARforeach); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); - case 499: + case 496: ACCEPT_TOKEN(anon_sym_DOLLARendforeach); END_STATE(); - case 500: + case 497: ACCEPT_TOKEN(anon_sym_DOLLARendforeach); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); - case 501: + case 498: ACCEPT_TOKEN(anon_sym_DOLLARalignof); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); - case 502: + case 499: ACCEPT_TOKEN(anon_sym_DOLLARextnameof); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); - case 503: + case 500: ACCEPT_TOKEN(anon_sym_DOLLARnameof); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); - case 504: + case 501: ACCEPT_TOKEN(anon_sym_DOLLARoffsetof); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); - case 505: + case 502: ACCEPT_TOKEN(anon_sym_DOLLARqnameof); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); - case 506: + case 503: ACCEPT_TOKEN(anon_sym_DOLLARvaconst); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); - case 507: + case 504: ACCEPT_TOKEN(anon_sym_DOLLARvaarg); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); - case 508: + case 505: ACCEPT_TOKEN(anon_sym_DOLLARvaref); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); - case 509: + case 506: ACCEPT_TOKEN(anon_sym_DOLLARvaexpr); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); - case 510: + case 507: ACCEPT_TOKEN(anon_sym_DOLLARvacount); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); - case 511: + case 508: ACCEPT_TOKEN(anon_sym_DOLLARappend); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); - case 512: + case 509: ACCEPT_TOKEN(anon_sym_DOLLARconcat); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); - case 513: + case 510: ACCEPT_TOKEN(anon_sym_DOLLAReval); END_STATE(); - case 514: + case 511: ACCEPT_TOKEN(anon_sym_DOLLAReval); - if (lookahead == 't') ADVANCE(414); + if (lookahead == 't') ADVANCE(413); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); - case 515: + case 512: ACCEPT_TOKEN(anon_sym_DOLLARis_const); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); - case 516: + case 513: ACCEPT_TOKEN(anon_sym_DOLLARsizeof); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); - case 517: + case 514: ACCEPT_TOKEN(anon_sym_DOLLARstringify); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); - case 518: + case 515: ACCEPT_TOKEN(anon_sym_DOLLARand); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); - case 519: + case 516: ACCEPT_TOKEN(anon_sym_DOLLARdefined); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); - case 520: + case 517: ACCEPT_TOKEN(anon_sym_DOLLARembed); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); - case 521: + case 518: ACCEPT_TOKEN(anon_sym_DOLLARor); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); - case 522: + case 519: ACCEPT_TOKEN(anon_sym_DOLLARfeature); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); - case 523: + case 520: ACCEPT_TOKEN(anon_sym_DOLLARassignable); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); - case 524: + case 521: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 525: + case 522: ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); - case 526: + case 523: ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); - case 527: + case 524: ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); - case 528: + case 525: ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); - case 529: + case 526: ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); - case 530: + case 527: ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); - case 531: + case 528: ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); - case 532: + case 529: ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); - case 533: + case 530: ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); - case 534: - ACCEPT_TOKEN(anon_sym_QMARK); - END_STATE(); - case 535: + case 531: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == ':') ADVANCE(536); - if (lookahead == '?') ADVANCE(537); + if (lookahead == ':') ADVANCE(532); + if (lookahead == '?') ADVANCE(533); END_STATE(); - case 536: + case 532: ACCEPT_TOKEN(anon_sym_QMARK_COLON); END_STATE(); - case 537: + case 533: ACCEPT_TOKEN(anon_sym_QMARK_QMARK); END_STATE(); - case 538: - ACCEPT_TOKEN(anon_sym_BANG); - END_STATE(); - case 539: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '!') ADVANCE(560); - END_STATE(); - case 540: + case 534: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '!') ADVANCE(560); - if (lookahead == '=') ADVANCE(552); END_STATE(); - case 541: + case 535: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(552); + if (lookahead == '!') ADVANCE(554); + if (lookahead == '=') ADVANCE(546); END_STATE(); - case 542: + case 536: ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); - case 543: + case 537: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); - case 544: + case 538: ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); - case 545: + case 539: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(211); - if (lookahead == '/') ADVANCE(207); - if (lookahead == '=') ADVANCE(527); + if (lookahead == '*') ADVANCE(210); + if (lookahead == '/') ADVANCE(206); + if (lookahead == '=') ADVANCE(524); END_STATE(); - case 546: + case 540: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(528); + if (lookahead == '=') ADVANCE(525); END_STATE(); - case 547: + case 541: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(533); - if (lookahead == '|') ADVANCE(558); + if (lookahead == '=') ADVANCE(530); + if (lookahead == '|') ADVANCE(552); END_STATE(); - case 548: + case 542: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(533); - if (lookahead == '|') ADVANCE(558); - if (lookahead == '}') ADVANCE(562); + if (lookahead == '=') ADVANCE(530); + if (lookahead == '|') ADVANCE(552); + if (lookahead == '}') ADVANCE(556); END_STATE(); - case 549: + case 543: ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); - case 550: + case 544: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(532); + if (lookahead == '=') ADVANCE(529); END_STATE(); - case 551: + case 545: ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); - case 552: + case 546: ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); - case 553: + case 547: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == ')') ADVANCE(431); - if (lookahead == '=') ADVANCE(555); - if (lookahead == '>') ADVANCE(470); - if (lookahead == ']') ADVANCE(572); + if (lookahead == ')') ADVANCE(430); + if (lookahead == '=') ADVANCE(549); + if (lookahead == '>') ADVANCE(467); + if (lookahead == ']') ADVANCE(566); END_STATE(); - case 554: + case 548: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(555); - if (lookahead == '>') ADVANCE(470); + if (lookahead == '=') ADVANCE(549); + if (lookahead == '>') ADVANCE(467); END_STATE(); - case 555: + case 549: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 556: + case 550: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 557: + case 551: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(468); - if (lookahead == '=') ADVANCE(556); + if (lookahead == '<') ADVANCE(465); + if (lookahead == '=') ADVANCE(550); END_STATE(); - case 558: + case 552: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); - case 559: + case 553: ACCEPT_TOKEN(anon_sym_DOLLARvasplat); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); - case 560: + case 554: ACCEPT_TOKEN(anon_sym_BANG_BANG); END_STATE(); - case 561: + case 555: ACCEPT_TOKEN(anon_sym_LBRACE_PIPE); END_STATE(); - case 562: + case 556: ACCEPT_TOKEN(anon_sym_PIPE_RBRACE); END_STATE(); - case 563: + case 557: ACCEPT_TOKEN(anon_sym_DOLLARtypeof); END_STATE(); - case 564: + case 558: ACCEPT_TOKEN(anon_sym_DOLLARtypeof); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); - case 565: + case 559: ACCEPT_TOKEN(anon_sym_DOLLARtypefrom); END_STATE(); - case 566: + case 560: ACCEPT_TOKEN(anon_sym_DOLLARtypefrom); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); - case 567: + case 561: ACCEPT_TOKEN(anon_sym_DOLLARvatype); END_STATE(); - case 568: + case 562: ACCEPT_TOKEN(anon_sym_DOLLARvatype); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); - case 569: + case 563: ACCEPT_TOKEN(anon_sym_DOLLARevaltype); END_STATE(); - case 570: + case 564: ACCEPT_TOKEN(anon_sym_DOLLARevaltype); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); - case 571: + case 565: ACCEPT_TOKEN(anon_sym_LBRACK_LT); END_STATE(); - case 572: + case 566: ACCEPT_TOKEN(anon_sym_GT_RBRACK); END_STATE(); default: @@ -10820,7 +10597,7 @@ 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 = 179}, + [1] = {.lex_state = 178}, [2] = {.lex_state = 3, .external_lex_state = 2}, [3] = {.lex_state = 3, .external_lex_state = 2}, [4] = {.lex_state = 3, .external_lex_state = 2}, @@ -10837,53 +10614,53 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [15] = {.lex_state = 4, .external_lex_state = 2}, [16] = {.lex_state = 5, .external_lex_state = 2}, [17] = {.lex_state = 4, .external_lex_state = 2}, - [18] = {.lex_state = 4, .external_lex_state = 2}, + [18] = {.lex_state = 6, .external_lex_state = 2}, [19] = {.lex_state = 6, .external_lex_state = 2}, [20] = {.lex_state = 6, .external_lex_state = 2}, - [21] = {.lex_state = 6, .external_lex_state = 2}, - [22] = {.lex_state = 6, .external_lex_state = 2}, + [21] = {.lex_state = 5, .external_lex_state = 2}, + [22] = {.lex_state = 5, .external_lex_state = 2}, [23] = {.lex_state = 5, .external_lex_state = 2}, - [24] = {.lex_state = 5, .external_lex_state = 2}, - [25] = {.lex_state = 6, .external_lex_state = 2}, + [24] = {.lex_state = 4, .external_lex_state = 2}, + [25] = {.lex_state = 4, .external_lex_state = 2}, [26] = {.lex_state = 5, .external_lex_state = 2}, - [27] = {.lex_state = 5, .external_lex_state = 2}, - [28] = {.lex_state = 5, .external_lex_state = 2}, - [29] = {.lex_state = 5, .external_lex_state = 2}, - [30] = {.lex_state = 4, .external_lex_state = 2}, - [31] = {.lex_state = 6, .external_lex_state = 2}, - [32] = {.lex_state = 18, .external_lex_state = 2}, - [33] = {.lex_state = 21, .external_lex_state = 2}, - [34] = {.lex_state = 23, .external_lex_state = 2}, + [27] = {.lex_state = 6, .external_lex_state = 2}, + [28] = {.lex_state = 6, .external_lex_state = 2}, + [29] = {.lex_state = 6, .external_lex_state = 2}, + [30] = {.lex_state = 5, .external_lex_state = 2}, + [31] = {.lex_state = 5, .external_lex_state = 2}, + [32] = {.lex_state = 6, .external_lex_state = 2}, + [33] = {.lex_state = 18, .external_lex_state = 2}, + [34] = {.lex_state = 21, .external_lex_state = 2}, [35] = {.lex_state = 23, .external_lex_state = 2}, [36] = {.lex_state = 21, .external_lex_state = 2}, [37] = {.lex_state = 18, .external_lex_state = 2}, - [38] = {.lex_state = 18, .external_lex_state = 2}, - [39] = {.lex_state = 6, .external_lex_state = 2}, - [40] = {.lex_state = 18, .external_lex_state = 2}, + [38] = {.lex_state = 23, .external_lex_state = 2}, + [39] = {.lex_state = 21, .external_lex_state = 2}, + [40] = {.lex_state = 21, .external_lex_state = 2}, [41] = {.lex_state = 18, .external_lex_state = 2}, - [42] = {.lex_state = 18, .external_lex_state = 2}, - [43] = {.lex_state = 18, .external_lex_state = 2}, + [42] = {.lex_state = 23, .external_lex_state = 2}, + [43] = {.lex_state = 21, .external_lex_state = 2}, [44] = {.lex_state = 18, .external_lex_state = 2}, - [45] = {.lex_state = 21, .external_lex_state = 2}, - [46] = {.lex_state = 21, .external_lex_state = 2}, - [47] = {.lex_state = 23, .external_lex_state = 2}, - [48] = {.lex_state = 18, .external_lex_state = 2}, - [49] = {.lex_state = 18, .external_lex_state = 2}, + [45] = {.lex_state = 23, .external_lex_state = 2}, + [46] = {.lex_state = 18, .external_lex_state = 2}, + [47] = {.lex_state = 21, .external_lex_state = 2}, + [48] = {.lex_state = 21, .external_lex_state = 2}, + [49] = {.lex_state = 21, .external_lex_state = 2}, [50] = {.lex_state = 23, .external_lex_state = 2}, [51] = {.lex_state = 21, .external_lex_state = 2}, [52] = {.lex_state = 23, .external_lex_state = 2}, - [53] = {.lex_state = 6, .external_lex_state = 2}, - [54] = {.lex_state = 18, .external_lex_state = 2}, - [55] = {.lex_state = 18, .external_lex_state = 2}, + [53] = {.lex_state = 18, .external_lex_state = 2}, + [54] = {.lex_state = 6, .external_lex_state = 2}, + [55] = {.lex_state = 21, .external_lex_state = 2}, [56] = {.lex_state = 21, .external_lex_state = 2}, - [57] = {.lex_state = 23, .external_lex_state = 2}, + [57] = {.lex_state = 21, .external_lex_state = 2}, [58] = {.lex_state = 5, .external_lex_state = 2}, - [59] = {.lex_state = 5, .external_lex_state = 2}, + [59] = {.lex_state = 21, .external_lex_state = 2}, [60] = {.lex_state = 5, .external_lex_state = 2}, [61] = {.lex_state = 5, .external_lex_state = 2}, - [62] = {.lex_state = 21, .external_lex_state = 2}, + [62] = {.lex_state = 5, .external_lex_state = 2}, [63] = {.lex_state = 5, .external_lex_state = 2}, - [64] = {.lex_state = 18, .external_lex_state = 2}, + [64] = {.lex_state = 5, .external_lex_state = 2}, [65] = {.lex_state = 5, .external_lex_state = 2}, [66] = {.lex_state = 5, .external_lex_state = 2}, [67] = {.lex_state = 5, .external_lex_state = 2}, @@ -10893,29 +10670,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [71] = {.lex_state = 5, .external_lex_state = 2}, [72] = {.lex_state = 5, .external_lex_state = 2}, [73] = {.lex_state = 5, .external_lex_state = 2}, - [74] = {.lex_state = 23, .external_lex_state = 2}, + [74] = {.lex_state = 5, .external_lex_state = 2}, [75] = {.lex_state = 5, .external_lex_state = 2}, [76] = {.lex_state = 5, .external_lex_state = 2}, [77] = {.lex_state = 5, .external_lex_state = 2}, [78] = {.lex_state = 5, .external_lex_state = 2}, - [79] = {.lex_state = 5, .external_lex_state = 2}, - [80] = {.lex_state = 23, .external_lex_state = 2}, + [79] = {.lex_state = 23, .external_lex_state = 2}, + [80] = {.lex_state = 5, .external_lex_state = 2}, [81] = {.lex_state = 5, .external_lex_state = 2}, [82] = {.lex_state = 5, .external_lex_state = 2}, [83] = {.lex_state = 5, .external_lex_state = 2}, [84] = {.lex_state = 5, .external_lex_state = 2}, [85] = {.lex_state = 5, .external_lex_state = 2}, - [86] = {.lex_state = 21, .external_lex_state = 2}, + [86] = {.lex_state = 18, .external_lex_state = 2}, [87] = {.lex_state = 5, .external_lex_state = 2}, [88] = {.lex_state = 5, .external_lex_state = 2}, - [89] = {.lex_state = 5, .external_lex_state = 2}, + [89] = {.lex_state = 21, .external_lex_state = 2}, [90] = {.lex_state = 5, .external_lex_state = 2}, [91] = {.lex_state = 5, .external_lex_state = 2}, [92] = {.lex_state = 5, .external_lex_state = 2}, [93] = {.lex_state = 5, .external_lex_state = 2}, [94] = {.lex_state = 5, .external_lex_state = 2}, [95] = {.lex_state = 5, .external_lex_state = 2}, - [96] = {.lex_state = 5, .external_lex_state = 2}, + [96] = {.lex_state = 23, .external_lex_state = 2}, [97] = {.lex_state = 5, .external_lex_state = 2}, [98] = {.lex_state = 5, .external_lex_state = 2}, [99] = {.lex_state = 5, .external_lex_state = 2}, @@ -10960,41 +10737,41 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [138] = {.lex_state = 5, .external_lex_state = 2}, [139] = {.lex_state = 5, .external_lex_state = 2}, [140] = {.lex_state = 7, .external_lex_state = 2}, - [141] = {.lex_state = 7, .external_lex_state = 2}, + [141] = {.lex_state = 8, .external_lex_state = 2}, [142] = {.lex_state = 8, .external_lex_state = 2}, - [143] = {.lex_state = 8, .external_lex_state = 2}, + [143] = {.lex_state = 9, .external_lex_state = 2}, [144] = {.lex_state = 9, .external_lex_state = 2}, [145] = {.lex_state = 19, .external_lex_state = 2}, - [146] = {.lex_state = 9, .external_lex_state = 2}, - [147] = {.lex_state = 19, .external_lex_state = 2}, - [148] = {.lex_state = 20, .external_lex_state = 2}, + [146] = {.lex_state = 20, .external_lex_state = 2}, + [147] = {.lex_state = 24, .external_lex_state = 2}, + [148] = {.lex_state = 19, .external_lex_state = 2}, [149] = {.lex_state = 22, .external_lex_state = 2}, [150] = {.lex_state = 24, .external_lex_state = 2}, - [151] = {.lex_state = 24, .external_lex_state = 2}, - [152] = {.lex_state = 20, .external_lex_state = 2}, - [153] = {.lex_state = 22, .external_lex_state = 2}, + [151] = {.lex_state = 20, .external_lex_state = 2}, + [152] = {.lex_state = 22, .external_lex_state = 2}, + [153] = {.lex_state = 10, .external_lex_state = 2}, [154] = {.lex_state = 10, .external_lex_state = 2}, [155] = {.lex_state = 11, .external_lex_state = 2}, [156] = {.lex_state = 11, .external_lex_state = 2}, [157] = {.lex_state = 11, .external_lex_state = 2}, [158] = {.lex_state = 11, .external_lex_state = 2}, - [159] = {.lex_state = 11, .external_lex_state = 2}, - [160] = {.lex_state = 10, .external_lex_state = 2}, - [161] = {.lex_state = 11, .external_lex_state = 2}, + [159] = {.lex_state = 10, .external_lex_state = 2}, + [160] = {.lex_state = 11, .external_lex_state = 2}, + [161] = {.lex_state = 10, .external_lex_state = 2}, [162] = {.lex_state = 10, .external_lex_state = 2}, [163] = {.lex_state = 10, .external_lex_state = 2}, - [164] = {.lex_state = 11, .external_lex_state = 2}, + [164] = {.lex_state = 10, .external_lex_state = 2}, [165] = {.lex_state = 10, .external_lex_state = 2}, - [166] = {.lex_state = 10, .external_lex_state = 2}, - [167] = {.lex_state = 11, .external_lex_state = 2}, - [168] = {.lex_state = 10, .external_lex_state = 2}, + [166] = {.lex_state = 11, .external_lex_state = 2}, + [167] = {.lex_state = 10, .external_lex_state = 2}, + [168] = {.lex_state = 11, .external_lex_state = 2}, [169] = {.lex_state = 10, .external_lex_state = 2}, - [170] = {.lex_state = 11, .external_lex_state = 2}, + [170] = {.lex_state = 10, .external_lex_state = 2}, [171] = {.lex_state = 11, .external_lex_state = 2}, - [172] = {.lex_state = 10, .external_lex_state = 2}, - [173] = {.lex_state = 10, .external_lex_state = 2}, - [174] = {.lex_state = 10, .external_lex_state = 2}, - [175] = {.lex_state = 10, .external_lex_state = 2}, + [172] = {.lex_state = 11, .external_lex_state = 2}, + [173] = {.lex_state = 11, .external_lex_state = 2}, + [174] = {.lex_state = 11, .external_lex_state = 2}, + [175] = {.lex_state = 11, .external_lex_state = 2}, [176] = {.lex_state = 11, .external_lex_state = 2}, [177] = {.lex_state = 11, .external_lex_state = 2}, [178] = {.lex_state = 11, .external_lex_state = 2}, @@ -11022,7 +10799,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [200] = {.lex_state = 11, .external_lex_state = 2}, [201] = {.lex_state = 11, .external_lex_state = 2}, [202] = {.lex_state = 11, .external_lex_state = 2}, - [203] = {.lex_state = 11, .external_lex_state = 2}, + [203] = {.lex_state = 7, .external_lex_state = 2}, [204] = {.lex_state = 11, .external_lex_state = 2}, [205] = {.lex_state = 11, .external_lex_state = 2}, [206] = {.lex_state = 11, .external_lex_state = 2}, @@ -11151,66 +10928,66 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [329] = {.lex_state = 11, .external_lex_state = 2}, [330] = {.lex_state = 11, .external_lex_state = 2}, [331] = {.lex_state = 11, .external_lex_state = 2}, - [332] = {.lex_state = 11, .external_lex_state = 2}, - [333] = {.lex_state = 11, .external_lex_state = 2}, - [334] = {.lex_state = 11, .external_lex_state = 2}, - [335] = {.lex_state = 11, .external_lex_state = 2}, - [336] = {.lex_state = 11, .external_lex_state = 2}, - [337] = {.lex_state = 11, .external_lex_state = 2}, - [338] = {.lex_state = 11, .external_lex_state = 2}, - [339] = {.lex_state = 11, .external_lex_state = 2}, - [340] = {.lex_state = 11, .external_lex_state = 2}, - [341] = {.lex_state = 11, .external_lex_state = 2}, - [342] = {.lex_state = 11, .external_lex_state = 2}, - [343] = {.lex_state = 11, .external_lex_state = 2}, - [344] = {.lex_state = 11, .external_lex_state = 2}, - [345] = {.lex_state = 11, .external_lex_state = 2}, - [346] = {.lex_state = 11, .external_lex_state = 2}, - [347] = {.lex_state = 11, .external_lex_state = 2}, - [348] = {.lex_state = 11, .external_lex_state = 2}, - [349] = {.lex_state = 11, .external_lex_state = 2}, - [350] = {.lex_state = 11, .external_lex_state = 2}, - [351] = {.lex_state = 11, .external_lex_state = 2}, - [352] = {.lex_state = 11, .external_lex_state = 2}, - [353] = {.lex_state = 11, .external_lex_state = 2}, - [354] = {.lex_state = 11, .external_lex_state = 2}, - [355] = {.lex_state = 11, .external_lex_state = 2}, - [356] = {.lex_state = 11, .external_lex_state = 2}, - [357] = {.lex_state = 11, .external_lex_state = 2}, - [358] = {.lex_state = 11, .external_lex_state = 2}, - [359] = {.lex_state = 11, .external_lex_state = 2}, - [360] = {.lex_state = 11, .external_lex_state = 2}, - [361] = {.lex_state = 11, .external_lex_state = 2}, - [362] = {.lex_state = 11, .external_lex_state = 2}, - [363] = {.lex_state = 11, .external_lex_state = 2}, - [364] = {.lex_state = 11, .external_lex_state = 2}, - [365] = {.lex_state = 11, .external_lex_state = 2}, - [366] = {.lex_state = 11, .external_lex_state = 2}, - [367] = {.lex_state = 11, .external_lex_state = 2}, - [368] = {.lex_state = 11, .external_lex_state = 2}, - [369] = {.lex_state = 11, .external_lex_state = 2}, - [370] = {.lex_state = 11, .external_lex_state = 2}, - [371] = {.lex_state = 11, .external_lex_state = 2}, - [372] = {.lex_state = 11, .external_lex_state = 2}, - [373] = {.lex_state = 11, .external_lex_state = 2}, - [374] = {.lex_state = 11, .external_lex_state = 2}, - [375] = {.lex_state = 11, .external_lex_state = 2}, - [376] = {.lex_state = 11, .external_lex_state = 2}, - [377] = {.lex_state = 11, .external_lex_state = 2}, - [378] = {.lex_state = 11, .external_lex_state = 2}, - [379] = {.lex_state = 11, .external_lex_state = 2}, - [380] = {.lex_state = 11, .external_lex_state = 2}, - [381] = {.lex_state = 11, .external_lex_state = 2}, - [382] = {.lex_state = 11, .external_lex_state = 2}, - [383] = {.lex_state = 11, .external_lex_state = 2}, - [384] = {.lex_state = 11, .external_lex_state = 2}, - [385] = {.lex_state = 11, .external_lex_state = 2}, - [386] = {.lex_state = 7, .external_lex_state = 2}, + [332] = {.lex_state = 5, .external_lex_state = 2}, + [333] = {.lex_state = 4, .external_lex_state = 2}, + [334] = {.lex_state = 5, .external_lex_state = 2}, + [335] = {.lex_state = 5, .external_lex_state = 2}, + [336] = {.lex_state = 5, .external_lex_state = 2}, + [337] = {.lex_state = 5, .external_lex_state = 2}, + [338] = {.lex_state = 5, .external_lex_state = 2}, + [339] = {.lex_state = 4, .external_lex_state = 2}, + [340] = {.lex_state = 5, .external_lex_state = 2}, + [341] = {.lex_state = 5, .external_lex_state = 2}, + [342] = {.lex_state = 5, .external_lex_state = 2}, + [343] = {.lex_state = 5, .external_lex_state = 2}, + [344] = {.lex_state = 5, .external_lex_state = 2}, + [345] = {.lex_state = 5, .external_lex_state = 2}, + [346] = {.lex_state = 5, .external_lex_state = 2}, + [347] = {.lex_state = 5, .external_lex_state = 2}, + [348] = {.lex_state = 5, .external_lex_state = 2}, + [349] = {.lex_state = 5, .external_lex_state = 2}, + [350] = {.lex_state = 5, .external_lex_state = 2}, + [351] = {.lex_state = 5, .external_lex_state = 2}, + [352] = {.lex_state = 5, .external_lex_state = 2}, + [353] = {.lex_state = 5, .external_lex_state = 2}, + [354] = {.lex_state = 5, .external_lex_state = 2}, + [355] = {.lex_state = 5, .external_lex_state = 2}, + [356] = {.lex_state = 6, .external_lex_state = 2}, + [357] = {.lex_state = 5, .external_lex_state = 2}, + [358] = {.lex_state = 5, .external_lex_state = 2}, + [359] = {.lex_state = 5, .external_lex_state = 2}, + [360] = {.lex_state = 5, .external_lex_state = 2}, + [361] = {.lex_state = 5, .external_lex_state = 2}, + [362] = {.lex_state = 5, .external_lex_state = 2}, + [363] = {.lex_state = 5, .external_lex_state = 2}, + [364] = {.lex_state = 5, .external_lex_state = 2}, + [365] = {.lex_state = 5, .external_lex_state = 2}, + [366] = {.lex_state = 5, .external_lex_state = 2}, + [367] = {.lex_state = 5, .external_lex_state = 2}, + [368] = {.lex_state = 5, .external_lex_state = 2}, + [369] = {.lex_state = 5, .external_lex_state = 2}, + [370] = {.lex_state = 5, .external_lex_state = 2}, + [371] = {.lex_state = 5, .external_lex_state = 2}, + [372] = {.lex_state = 5, .external_lex_state = 2}, + [373] = {.lex_state = 5, .external_lex_state = 2}, + [374] = {.lex_state = 5, .external_lex_state = 2}, + [375] = {.lex_state = 5, .external_lex_state = 2}, + [376] = {.lex_state = 5, .external_lex_state = 2}, + [377] = {.lex_state = 5, .external_lex_state = 2}, + [378] = {.lex_state = 5, .external_lex_state = 2}, + [379] = {.lex_state = 5, .external_lex_state = 2}, + [380] = {.lex_state = 5, .external_lex_state = 2}, + [381] = {.lex_state = 5, .external_lex_state = 2}, + [382] = {.lex_state = 5, .external_lex_state = 2}, + [383] = {.lex_state = 5, .external_lex_state = 2}, + [384] = {.lex_state = 5, .external_lex_state = 2}, + [385] = {.lex_state = 5, .external_lex_state = 2}, + [386] = {.lex_state = 5, .external_lex_state = 2}, [387] = {.lex_state = 5, .external_lex_state = 2}, [388] = {.lex_state = 5, .external_lex_state = 2}, - [389] = {.lex_state = 4, .external_lex_state = 2}, + [389] = {.lex_state = 5, .external_lex_state = 2}, [390] = {.lex_state = 5, .external_lex_state = 2}, - [391] = {.lex_state = 5, .external_lex_state = 2}, + [391] = {.lex_state = 4, .external_lex_state = 2}, [392] = {.lex_state = 5, .external_lex_state = 2}, [393] = {.lex_state = 5, .external_lex_state = 2}, [394] = {.lex_state = 5, .external_lex_state = 2}, @@ -11222,7 +10999,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [400] = {.lex_state = 5, .external_lex_state = 2}, [401] = {.lex_state = 5, .external_lex_state = 2}, [402] = {.lex_state = 5, .external_lex_state = 2}, - [403] = {.lex_state = 6, .external_lex_state = 2}, + [403] = {.lex_state = 5, .external_lex_state = 2}, [404] = {.lex_state = 5, .external_lex_state = 2}, [405] = {.lex_state = 5, .external_lex_state = 2}, [406] = {.lex_state = 5, .external_lex_state = 2}, @@ -11231,61 +11008,61 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [409] = {.lex_state = 5, .external_lex_state = 2}, [410] = {.lex_state = 5, .external_lex_state = 2}, [411] = {.lex_state = 5, .external_lex_state = 2}, - [412] = {.lex_state = 5, .external_lex_state = 2}, + [412] = {.lex_state = 4, .external_lex_state = 2}, [413] = {.lex_state = 4, .external_lex_state = 2}, - [414] = {.lex_state = 5, .external_lex_state = 2}, - [415] = {.lex_state = 5, .external_lex_state = 2}, - [416] = {.lex_state = 5, .external_lex_state = 2}, - [417] = {.lex_state = 5, .external_lex_state = 2}, - [418] = {.lex_state = 5, .external_lex_state = 2}, - [419] = {.lex_state = 5, .external_lex_state = 2}, - [420] = {.lex_state = 5, .external_lex_state = 2}, - [421] = {.lex_state = 5, .external_lex_state = 2}, - [422] = {.lex_state = 5, .external_lex_state = 2}, - [423] = {.lex_state = 5, .external_lex_state = 2}, + [414] = {.lex_state = 4, .external_lex_state = 2}, + [415] = {.lex_state = 4, .external_lex_state = 2}, + [416] = {.lex_state = 4, .external_lex_state = 2}, + [417] = {.lex_state = 4, .external_lex_state = 2}, + [418] = {.lex_state = 4, .external_lex_state = 2}, + [419] = {.lex_state = 4, .external_lex_state = 2}, + [420] = {.lex_state = 4, .external_lex_state = 2}, + [421] = {.lex_state = 4, .external_lex_state = 2}, + [422] = {.lex_state = 4, .external_lex_state = 2}, + [423] = {.lex_state = 4, .external_lex_state = 2}, [424] = {.lex_state = 4, .external_lex_state = 2}, - [425] = {.lex_state = 5, .external_lex_state = 2}, - [426] = {.lex_state = 5, .external_lex_state = 2}, - [427] = {.lex_state = 5, .external_lex_state = 2}, - [428] = {.lex_state = 5, .external_lex_state = 2}, - [429] = {.lex_state = 5, .external_lex_state = 2}, - [430] = {.lex_state = 5, .external_lex_state = 2}, - [431] = {.lex_state = 5, .external_lex_state = 2}, - [432] = {.lex_state = 5, .external_lex_state = 2}, - [433] = {.lex_state = 5, .external_lex_state = 2}, - [434] = {.lex_state = 5, .external_lex_state = 2}, - [435] = {.lex_state = 5, .external_lex_state = 2}, - [436] = {.lex_state = 5, .external_lex_state = 2}, - [437] = {.lex_state = 5, .external_lex_state = 2}, - [438] = {.lex_state = 5, .external_lex_state = 2}, - [439] = {.lex_state = 5, .external_lex_state = 2}, - [440] = {.lex_state = 5, .external_lex_state = 2}, - [441] = {.lex_state = 5, .external_lex_state = 2}, - [442] = {.lex_state = 5, .external_lex_state = 2}, - [443] = {.lex_state = 5, .external_lex_state = 2}, - [444] = {.lex_state = 5, .external_lex_state = 2}, - [445] = {.lex_state = 5, .external_lex_state = 2}, - [446] = {.lex_state = 5, .external_lex_state = 2}, - [447] = {.lex_state = 5, .external_lex_state = 2}, - [448] = {.lex_state = 5, .external_lex_state = 2}, - [449] = {.lex_state = 5, .external_lex_state = 2}, - [450] = {.lex_state = 5, .external_lex_state = 2}, - [451] = {.lex_state = 5, .external_lex_state = 2}, - [452] = {.lex_state = 5, .external_lex_state = 2}, - [453] = {.lex_state = 5, .external_lex_state = 2}, - [454] = {.lex_state = 5, .external_lex_state = 2}, - [455] = {.lex_state = 5, .external_lex_state = 2}, - [456] = {.lex_state = 5, .external_lex_state = 2}, - [457] = {.lex_state = 5, .external_lex_state = 2}, - [458] = {.lex_state = 5, .external_lex_state = 2}, - [459] = {.lex_state = 5, .external_lex_state = 2}, - [460] = {.lex_state = 5, .external_lex_state = 2}, - [461] = {.lex_state = 5, .external_lex_state = 2}, - [462] = {.lex_state = 5, .external_lex_state = 2}, - [463] = {.lex_state = 5, .external_lex_state = 2}, - [464] = {.lex_state = 5, .external_lex_state = 2}, - [465] = {.lex_state = 5, .external_lex_state = 2}, - [466] = {.lex_state = 5, .external_lex_state = 2}, + [425] = {.lex_state = 4, .external_lex_state = 2}, + [426] = {.lex_state = 4, .external_lex_state = 2}, + [427] = {.lex_state = 4, .external_lex_state = 2}, + [428] = {.lex_state = 4, .external_lex_state = 2}, + [429] = {.lex_state = 4, .external_lex_state = 2}, + [430] = {.lex_state = 4, .external_lex_state = 2}, + [431] = {.lex_state = 4, .external_lex_state = 2}, + [432] = {.lex_state = 4, .external_lex_state = 2}, + [433] = {.lex_state = 4, .external_lex_state = 2}, + [434] = {.lex_state = 4, .external_lex_state = 2}, + [435] = {.lex_state = 4, .external_lex_state = 2}, + [436] = {.lex_state = 6, .external_lex_state = 2}, + [437] = {.lex_state = 4, .external_lex_state = 2}, + [438] = {.lex_state = 4, .external_lex_state = 2}, + [439] = {.lex_state = 4, .external_lex_state = 2}, + [440] = {.lex_state = 4, .external_lex_state = 2}, + [441] = {.lex_state = 23, .external_lex_state = 2}, + [442] = {.lex_state = 4, .external_lex_state = 2}, + [443] = {.lex_state = 4, .external_lex_state = 2}, + [444] = {.lex_state = 4, .external_lex_state = 2}, + [445] = {.lex_state = 4, .external_lex_state = 2}, + [446] = {.lex_state = 4, .external_lex_state = 2}, + [447] = {.lex_state = 4, .external_lex_state = 2}, + [448] = {.lex_state = 4, .external_lex_state = 2}, + [449] = {.lex_state = 4, .external_lex_state = 2}, + [450] = {.lex_state = 4, .external_lex_state = 2}, + [451] = {.lex_state = 4, .external_lex_state = 2}, + [452] = {.lex_state = 4, .external_lex_state = 2}, + [453] = {.lex_state = 4, .external_lex_state = 2}, + [454] = {.lex_state = 4, .external_lex_state = 2}, + [455] = {.lex_state = 4, .external_lex_state = 2}, + [456] = {.lex_state = 18, .external_lex_state = 2}, + [457] = {.lex_state = 4, .external_lex_state = 2}, + [458] = {.lex_state = 4, .external_lex_state = 2}, + [459] = {.lex_state = 6, .external_lex_state = 2}, + [460] = {.lex_state = 4, .external_lex_state = 2}, + [461] = {.lex_state = 4, .external_lex_state = 2}, + [462] = {.lex_state = 21, .external_lex_state = 2}, + [463] = {.lex_state = 4, .external_lex_state = 2}, + [464] = {.lex_state = 4, .external_lex_state = 2}, + [465] = {.lex_state = 4, .external_lex_state = 2}, + [466] = {.lex_state = 4, .external_lex_state = 2}, [467] = {.lex_state = 4, .external_lex_state = 2}, [468] = {.lex_state = 4, .external_lex_state = 2}, [469] = {.lex_state = 4, .external_lex_state = 2}, @@ -11297,7 +11074,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [475] = {.lex_state = 4, .external_lex_state = 2}, [476] = {.lex_state = 4, .external_lex_state = 2}, [477] = {.lex_state = 4, .external_lex_state = 2}, - [478] = {.lex_state = 6, .external_lex_state = 2}, + [478] = {.lex_state = 4, .external_lex_state = 2}, [479] = {.lex_state = 4, .external_lex_state = 2}, [480] = {.lex_state = 4, .external_lex_state = 2}, [481] = {.lex_state = 4, .external_lex_state = 2}, @@ -11309,66 +11086,66 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [487] = {.lex_state = 4, .external_lex_state = 2}, [488] = {.lex_state = 4, .external_lex_state = 2}, [489] = {.lex_state = 4, .external_lex_state = 2}, - [490] = {.lex_state = 4, .external_lex_state = 2}, - [491] = {.lex_state = 4, .external_lex_state = 2}, - [492] = {.lex_state = 4, .external_lex_state = 2}, - [493] = {.lex_state = 4, .external_lex_state = 2}, - [494] = {.lex_state = 4, .external_lex_state = 2}, - [495] = {.lex_state = 4, .external_lex_state = 2}, - [496] = {.lex_state = 4, .external_lex_state = 2}, - [497] = {.lex_state = 4, .external_lex_state = 2}, - [498] = {.lex_state = 4, .external_lex_state = 2}, - [499] = {.lex_state = 4, .external_lex_state = 2}, - [500] = {.lex_state = 4, .external_lex_state = 2}, - [501] = {.lex_state = 4, .external_lex_state = 2}, - [502] = {.lex_state = 4, .external_lex_state = 2}, - [503] = {.lex_state = 4, .external_lex_state = 2}, - [504] = {.lex_state = 4, .external_lex_state = 2}, - [505] = {.lex_state = 4, .external_lex_state = 2}, - [506] = {.lex_state = 4, .external_lex_state = 2}, - [507] = {.lex_state = 4, .external_lex_state = 2}, - [508] = {.lex_state = 4, .external_lex_state = 2}, - [509] = {.lex_state = 4, .external_lex_state = 2}, - [510] = {.lex_state = 21, .external_lex_state = 2}, - [511] = {.lex_state = 4, .external_lex_state = 2}, - [512] = {.lex_state = 4, .external_lex_state = 2}, - [513] = {.lex_state = 4, .external_lex_state = 2}, - [514] = {.lex_state = 4, .external_lex_state = 2}, - [515] = {.lex_state = 4, .external_lex_state = 2}, - [516] = {.lex_state = 4, .external_lex_state = 2}, - [517] = {.lex_state = 18, .external_lex_state = 2}, - [518] = {.lex_state = 4, .external_lex_state = 2}, - [519] = {.lex_state = 4, .external_lex_state = 2}, + [490] = {.lex_state = 6, .external_lex_state = 2}, + [491] = {.lex_state = 6, .external_lex_state = 2}, + [492] = {.lex_state = 6, .external_lex_state = 2}, + [493] = {.lex_state = 6, .external_lex_state = 2}, + [494] = {.lex_state = 21, .external_lex_state = 2}, + [495] = {.lex_state = 6, .external_lex_state = 2}, + [496] = {.lex_state = 6, .external_lex_state = 2}, + [497] = {.lex_state = 6, .external_lex_state = 2}, + [498] = {.lex_state = 6, .external_lex_state = 2}, + [499] = {.lex_state = 6, .external_lex_state = 2}, + [500] = {.lex_state = 6, .external_lex_state = 2}, + [501] = {.lex_state = 6, .external_lex_state = 2}, + [502] = {.lex_state = 6, .external_lex_state = 2}, + [503] = {.lex_state = 6, .external_lex_state = 2}, + [504] = {.lex_state = 6, .external_lex_state = 2}, + [505] = {.lex_state = 6, .external_lex_state = 2}, + [506] = {.lex_state = 6, .external_lex_state = 2}, + [507] = {.lex_state = 6, .external_lex_state = 2}, + [508] = {.lex_state = 6, .external_lex_state = 2}, + [509] = {.lex_state = 6, .external_lex_state = 2}, + [510] = {.lex_state = 6, .external_lex_state = 2}, + [511] = {.lex_state = 23, .external_lex_state = 2}, + [512] = {.lex_state = 6, .external_lex_state = 2}, + [513] = {.lex_state = 6, .external_lex_state = 2}, + [514] = {.lex_state = 6, .external_lex_state = 2}, + [515] = {.lex_state = 6, .external_lex_state = 2}, + [516] = {.lex_state = 6, .external_lex_state = 2}, + [517] = {.lex_state = 6, .external_lex_state = 2}, + [518] = {.lex_state = 6, .external_lex_state = 2}, + [519] = {.lex_state = 6, .external_lex_state = 2}, [520] = {.lex_state = 6, .external_lex_state = 2}, - [521] = {.lex_state = 23, .external_lex_state = 2}, - [522] = {.lex_state = 4, .external_lex_state = 2}, - [523] = {.lex_state = 4, .external_lex_state = 2}, - [524] = {.lex_state = 4, .external_lex_state = 2}, - [525] = {.lex_state = 4, .external_lex_state = 2}, - [526] = {.lex_state = 4, .external_lex_state = 2}, - [527] = {.lex_state = 4, .external_lex_state = 2}, - [528] = {.lex_state = 4, .external_lex_state = 2}, - [529] = {.lex_state = 4, .external_lex_state = 2}, - [530] = {.lex_state = 4, .external_lex_state = 2}, - [531] = {.lex_state = 4, .external_lex_state = 2}, - [532] = {.lex_state = 4, .external_lex_state = 2}, - [533] = {.lex_state = 4, .external_lex_state = 2}, - [534] = {.lex_state = 4, .external_lex_state = 2}, - [535] = {.lex_state = 4, .external_lex_state = 2}, - [536] = {.lex_state = 4, .external_lex_state = 2}, - [537] = {.lex_state = 4, .external_lex_state = 2}, - [538] = {.lex_state = 4, .external_lex_state = 2}, - [539] = {.lex_state = 4, .external_lex_state = 2}, - [540] = {.lex_state = 4, .external_lex_state = 2}, - [541] = {.lex_state = 4, .external_lex_state = 2}, - [542] = {.lex_state = 4, .external_lex_state = 2}, - [543] = {.lex_state = 4, .external_lex_state = 2}, - [544] = {.lex_state = 4, .external_lex_state = 2}, + [521] = {.lex_state = 6, .external_lex_state = 2}, + [522] = {.lex_state = 6, .external_lex_state = 2}, + [523] = {.lex_state = 6, .external_lex_state = 2}, + [524] = {.lex_state = 6, .external_lex_state = 2}, + [525] = {.lex_state = 6, .external_lex_state = 2}, + [526] = {.lex_state = 18, .external_lex_state = 2}, + [527] = {.lex_state = 6, .external_lex_state = 2}, + [528] = {.lex_state = 21, .external_lex_state = 2}, + [529] = {.lex_state = 6, .external_lex_state = 2}, + [530] = {.lex_state = 6, .external_lex_state = 2}, + [531] = {.lex_state = 6, .external_lex_state = 2}, + [532] = {.lex_state = 6, .external_lex_state = 2}, + [533] = {.lex_state = 6, .external_lex_state = 2}, + [534] = {.lex_state = 6, .external_lex_state = 2}, + [535] = {.lex_state = 6, .external_lex_state = 2}, + [536] = {.lex_state = 6, .external_lex_state = 2}, + [537] = {.lex_state = 6, .external_lex_state = 2}, + [538] = {.lex_state = 6, .external_lex_state = 2}, + [539] = {.lex_state = 6, .external_lex_state = 2}, + [540] = {.lex_state = 6, .external_lex_state = 2}, + [541] = {.lex_state = 6, .external_lex_state = 2}, + [542] = {.lex_state = 23, .external_lex_state = 2}, + [543] = {.lex_state = 6, .external_lex_state = 2}, + [544] = {.lex_state = 6, .external_lex_state = 2}, [545] = {.lex_state = 6, .external_lex_state = 2}, [546] = {.lex_state = 6, .external_lex_state = 2}, [547] = {.lex_state = 6, .external_lex_state = 2}, [548] = {.lex_state = 6, .external_lex_state = 2}, - [549] = {.lex_state = 6, .external_lex_state = 2}, + [549] = {.lex_state = 18, .external_lex_state = 2}, [550] = {.lex_state = 6, .external_lex_state = 2}, [551] = {.lex_state = 6, .external_lex_state = 2}, [552] = {.lex_state = 6, .external_lex_state = 2}, @@ -11387,902 +11164,902 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [565] = {.lex_state = 6, .external_lex_state = 2}, [566] = {.lex_state = 6, .external_lex_state = 2}, [567] = {.lex_state = 6, .external_lex_state = 2}, - [568] = {.lex_state = 23, .external_lex_state = 2}, + [568] = {.lex_state = 6, .external_lex_state = 2}, [569] = {.lex_state = 6, .external_lex_state = 2}, - [570] = {.lex_state = 6, .external_lex_state = 2}, - [571] = {.lex_state = 21, .external_lex_state = 2}, - [572] = {.lex_state = 6, .external_lex_state = 2}, - [573] = {.lex_state = 6, .external_lex_state = 2}, - [574] = {.lex_state = 6, .external_lex_state = 2}, - [575] = {.lex_state = 6, .external_lex_state = 2}, - [576] = {.lex_state = 6, .external_lex_state = 2}, - [577] = {.lex_state = 18, .external_lex_state = 2}, - [578] = {.lex_state = 6, .external_lex_state = 2}, - [579] = {.lex_state = 6, .external_lex_state = 2}, - [580] = {.lex_state = 6, .external_lex_state = 2}, - [581] = {.lex_state = 6, .external_lex_state = 2}, - [582] = {.lex_state = 6, .external_lex_state = 2}, - [583] = {.lex_state = 6, .external_lex_state = 2}, - [584] = {.lex_state = 6, .external_lex_state = 2}, - [585] = {.lex_state = 6, .external_lex_state = 2}, - [586] = {.lex_state = 6, .external_lex_state = 2}, - [587] = {.lex_state = 6, .external_lex_state = 2}, - [588] = {.lex_state = 6, .external_lex_state = 2}, - [589] = {.lex_state = 6, .external_lex_state = 2}, - [590] = {.lex_state = 6, .external_lex_state = 2}, - [591] = {.lex_state = 6, .external_lex_state = 2}, - [592] = {.lex_state = 6, .external_lex_state = 2}, - [593] = {.lex_state = 6, .external_lex_state = 2}, - [594] = {.lex_state = 6, .external_lex_state = 2}, - [595] = {.lex_state = 6, .external_lex_state = 2}, - [596] = {.lex_state = 6, .external_lex_state = 2}, - [597] = {.lex_state = 6, .external_lex_state = 2}, - [598] = {.lex_state = 6, .external_lex_state = 2}, - [599] = {.lex_state = 6, .external_lex_state = 2}, - [600] = {.lex_state = 6, .external_lex_state = 2}, - [601] = {.lex_state = 6, .external_lex_state = 2}, - [602] = {.lex_state = 6, .external_lex_state = 2}, - [603] = {.lex_state = 6, .external_lex_state = 2}, - [604] = {.lex_state = 6, .external_lex_state = 2}, - [605] = {.lex_state = 6, .external_lex_state = 2}, - [606] = {.lex_state = 6, .external_lex_state = 2}, - [607] = {.lex_state = 6, .external_lex_state = 2}, - [608] = {.lex_state = 6, .external_lex_state = 2}, - [609] = {.lex_state = 6, .external_lex_state = 2}, - [610] = {.lex_state = 6, .external_lex_state = 2}, - [611] = {.lex_state = 6, .external_lex_state = 2}, - [612] = {.lex_state = 6, .external_lex_state = 2}, - [613] = {.lex_state = 6, .external_lex_state = 2}, - [614] = {.lex_state = 6, .external_lex_state = 2}, - [615] = {.lex_state = 18, .external_lex_state = 2}, + [570] = {.lex_state = 18, .external_lex_state = 2}, + [571] = {.lex_state = 23, .external_lex_state = 2}, + [572] = {.lex_state = 23, .external_lex_state = 2}, + [573] = {.lex_state = 23, .external_lex_state = 2}, + [574] = {.lex_state = 23, .external_lex_state = 2}, + [575] = {.lex_state = 23, .external_lex_state = 2}, + [576] = {.lex_state = 23, .external_lex_state = 2}, + [577] = {.lex_state = 23, .external_lex_state = 2}, + [578] = {.lex_state = 23, .external_lex_state = 2}, + [579] = {.lex_state = 23, .external_lex_state = 2}, + [580] = {.lex_state = 23, .external_lex_state = 2}, + [581] = {.lex_state = 23, .external_lex_state = 2}, + [582] = {.lex_state = 23, .external_lex_state = 2}, + [583] = {.lex_state = 23, .external_lex_state = 2}, + [584] = {.lex_state = 23, .external_lex_state = 2}, + [585] = {.lex_state = 23, .external_lex_state = 2}, + [586] = {.lex_state = 23, .external_lex_state = 2}, + [587] = {.lex_state = 23, .external_lex_state = 2}, + [588] = {.lex_state = 23, .external_lex_state = 2}, + [589] = {.lex_state = 23, .external_lex_state = 2}, + [590] = {.lex_state = 23, .external_lex_state = 2}, + [591] = {.lex_state = 23, .external_lex_state = 2}, + [592] = {.lex_state = 23, .external_lex_state = 2}, + [593] = {.lex_state = 23, .external_lex_state = 2}, + [594] = {.lex_state = 23, .external_lex_state = 2}, + [595] = {.lex_state = 23, .external_lex_state = 2}, + [596] = {.lex_state = 23, .external_lex_state = 2}, + [597] = {.lex_state = 23, .external_lex_state = 2}, + [598] = {.lex_state = 23, .external_lex_state = 2}, + [599] = {.lex_state = 23, .external_lex_state = 2}, + [600] = {.lex_state = 23, .external_lex_state = 2}, + [601] = {.lex_state = 23, .external_lex_state = 2}, + [602] = {.lex_state = 23, .external_lex_state = 2}, + [603] = {.lex_state = 23, .external_lex_state = 2}, + [604] = {.lex_state = 23, .external_lex_state = 2}, + [605] = {.lex_state = 23, .external_lex_state = 2}, + [606] = {.lex_state = 23, .external_lex_state = 2}, + [607] = {.lex_state = 23, .external_lex_state = 2}, + [608] = {.lex_state = 23, .external_lex_state = 2}, + [609] = {.lex_state = 23, .external_lex_state = 2}, + [610] = {.lex_state = 18, .external_lex_state = 2}, + [611] = {.lex_state = 23, .external_lex_state = 2}, + [612] = {.lex_state = 23, .external_lex_state = 2}, + [613] = {.lex_state = 23, .external_lex_state = 2}, + [614] = {.lex_state = 23, .external_lex_state = 2}, + [615] = {.lex_state = 23, .external_lex_state = 2}, [616] = {.lex_state = 23, .external_lex_state = 2}, - [617] = {.lex_state = 6, .external_lex_state = 2}, - [618] = {.lex_state = 6, .external_lex_state = 2}, - [619] = {.lex_state = 6, .external_lex_state = 2}, - [620] = {.lex_state = 6, .external_lex_state = 2}, - [621] = {.lex_state = 21, .external_lex_state = 2}, - [622] = {.lex_state = 6, .external_lex_state = 2}, - [623] = {.lex_state = 6, .external_lex_state = 2}, - [624] = {.lex_state = 6, .external_lex_state = 2}, - [625] = {.lex_state = 21, .external_lex_state = 2}, + [617] = {.lex_state = 23, .external_lex_state = 2}, + [618] = {.lex_state = 23, .external_lex_state = 2}, + [619] = {.lex_state = 23, .external_lex_state = 2}, + [620] = {.lex_state = 23, .external_lex_state = 2}, + [621] = {.lex_state = 23, .external_lex_state = 2}, + [622] = {.lex_state = 23, .external_lex_state = 2}, + [623] = {.lex_state = 23, .external_lex_state = 2}, + [624] = {.lex_state = 23, .external_lex_state = 2}, + [625] = {.lex_state = 23, .external_lex_state = 2}, [626] = {.lex_state = 23, .external_lex_state = 2}, - [627] = {.lex_state = 21, .external_lex_state = 2}, - [628] = {.lex_state = 21, .external_lex_state = 2}, - [629] = {.lex_state = 21, .external_lex_state = 2}, - [630] = {.lex_state = 21, .external_lex_state = 2}, - [631] = {.lex_state = 21, .external_lex_state = 2}, - [632] = {.lex_state = 21, .external_lex_state = 2}, - [633] = {.lex_state = 21, .external_lex_state = 2}, - [634] = {.lex_state = 21, .external_lex_state = 2}, - [635] = {.lex_state = 21, .external_lex_state = 2}, - [636] = {.lex_state = 21, .external_lex_state = 2}, - [637] = {.lex_state = 21, .external_lex_state = 2}, - [638] = {.lex_state = 21, .external_lex_state = 2}, - [639] = {.lex_state = 18, .external_lex_state = 2}, - [640] = {.lex_state = 18, .external_lex_state = 2}, - [641] = {.lex_state = 21, .external_lex_state = 2}, - [642] = {.lex_state = 21, .external_lex_state = 2}, - [643] = {.lex_state = 18, .external_lex_state = 2}, - [644] = {.lex_state = 21, .external_lex_state = 2}, - [645] = {.lex_state = 21, .external_lex_state = 2}, - [646] = {.lex_state = 18, .external_lex_state = 2}, - [647] = {.lex_state = 21, .external_lex_state = 2}, - [648] = {.lex_state = 18, .external_lex_state = 2}, - [649] = {.lex_state = 23, .external_lex_state = 2}, - [650] = {.lex_state = 23, .external_lex_state = 2}, + [627] = {.lex_state = 23, .external_lex_state = 2}, + [628] = {.lex_state = 23, .external_lex_state = 2}, + [629] = {.lex_state = 23, .external_lex_state = 2}, + [630] = {.lex_state = 23, .external_lex_state = 2}, + [631] = {.lex_state = 23, .external_lex_state = 2}, + [632] = {.lex_state = 23, .external_lex_state = 2}, + [633] = {.lex_state = 23, .external_lex_state = 2}, + [634] = {.lex_state = 23, .external_lex_state = 2}, + [635] = {.lex_state = 23, .external_lex_state = 2}, + [636] = {.lex_state = 23, .external_lex_state = 2}, + [637] = {.lex_state = 23, .external_lex_state = 2}, + [638] = {.lex_state = 23, .external_lex_state = 2}, + [639] = {.lex_state = 23, .external_lex_state = 2}, + [640] = {.lex_state = 23, .external_lex_state = 2}, + [641] = {.lex_state = 18, .external_lex_state = 2}, + [642] = {.lex_state = 18, .external_lex_state = 2}, + [643] = {.lex_state = 23, .external_lex_state = 2}, + [644] = {.lex_state = 23, .external_lex_state = 2}, + [645] = {.lex_state = 23, .external_lex_state = 2}, + [646] = {.lex_state = 23, .external_lex_state = 2}, + [647] = {.lex_state = 23, .external_lex_state = 2}, + [648] = {.lex_state = 23, .external_lex_state = 2}, + [649] = {.lex_state = 18, .external_lex_state = 2}, + [650] = {.lex_state = 18, .external_lex_state = 2}, [651] = {.lex_state = 18, .external_lex_state = 2}, - [652] = {.lex_state = 21, .external_lex_state = 2}, - [653] = {.lex_state = 21, .external_lex_state = 2}, - [654] = {.lex_state = 21, .external_lex_state = 2}, - [655] = {.lex_state = 21, .external_lex_state = 2}, + [652] = {.lex_state = 18, .external_lex_state = 2}, + [653] = {.lex_state = 18, .external_lex_state = 2}, + [654] = {.lex_state = 18, .external_lex_state = 2}, + [655] = {.lex_state = 18, .external_lex_state = 2}, [656] = {.lex_state = 18, .external_lex_state = 2}, - [657] = {.lex_state = 21, .external_lex_state = 2}, - [658] = {.lex_state = 21, .external_lex_state = 2}, - [659] = {.lex_state = 18, .external_lex_state = 2}, - [660] = {.lex_state = 21, .external_lex_state = 2}, - [661] = {.lex_state = 21, .external_lex_state = 2}, - [662] = {.lex_state = 21, .external_lex_state = 2}, - [663] = {.lex_state = 21, .external_lex_state = 2}, + [657] = {.lex_state = 23, .external_lex_state = 2}, + [658] = {.lex_state = 23, .external_lex_state = 2}, + [659] = {.lex_state = 23, .external_lex_state = 2}, + [660] = {.lex_state = 23, .external_lex_state = 2}, + [661] = {.lex_state = 18, .external_lex_state = 2}, + [662] = {.lex_state = 18, .external_lex_state = 2}, + [663] = {.lex_state = 18, .external_lex_state = 2}, [664] = {.lex_state = 18, .external_lex_state = 2}, - [665] = {.lex_state = 21, .external_lex_state = 2}, - [666] = {.lex_state = 21, .external_lex_state = 2}, - [667] = {.lex_state = 21, .external_lex_state = 2}, - [668] = {.lex_state = 21, .external_lex_state = 2}, - [669] = {.lex_state = 21, .external_lex_state = 2}, - [670] = {.lex_state = 21, .external_lex_state = 2}, + [665] = {.lex_state = 18, .external_lex_state = 2}, + [666] = {.lex_state = 18, .external_lex_state = 2}, + [667] = {.lex_state = 18, .external_lex_state = 2}, + [668] = {.lex_state = 18, .external_lex_state = 2}, + [669] = {.lex_state = 18, .external_lex_state = 2}, + [670] = {.lex_state = 18, .external_lex_state = 2}, [671] = {.lex_state = 21, .external_lex_state = 2}, - [672] = {.lex_state = 21, .external_lex_state = 2}, - [673] = {.lex_state = 21, .external_lex_state = 2}, - [674] = {.lex_state = 21, .external_lex_state = 2}, + [672] = {.lex_state = 18, .external_lex_state = 2}, + [673] = {.lex_state = 18, .external_lex_state = 2}, + [674] = {.lex_state = 18, .external_lex_state = 2}, [675] = {.lex_state = 18, .external_lex_state = 2}, - [676] = {.lex_state = 21, .external_lex_state = 2}, + [676] = {.lex_state = 18, .external_lex_state = 2}, [677] = {.lex_state = 18, .external_lex_state = 2}, - [678] = {.lex_state = 21, .external_lex_state = 2}, + [678] = {.lex_state = 18, .external_lex_state = 2}, [679] = {.lex_state = 18, .external_lex_state = 2}, - [680] = {.lex_state = 21, .external_lex_state = 2}, + [680] = {.lex_state = 18, .external_lex_state = 2}, [681] = {.lex_state = 18, .external_lex_state = 2}, - [682] = {.lex_state = 21, .external_lex_state = 2}, - [683] = {.lex_state = 18, .external_lex_state = 2}, - [684] = {.lex_state = 21, .external_lex_state = 2}, - [685] = {.lex_state = 21, .external_lex_state = 2}, + [682] = {.lex_state = 18, .external_lex_state = 2}, + [683] = {.lex_state = 23, .external_lex_state = 2}, + [684] = {.lex_state = 23, .external_lex_state = 2}, + [685] = {.lex_state = 18, .external_lex_state = 2}, [686] = {.lex_state = 18, .external_lex_state = 2}, - [687] = {.lex_state = 23, .external_lex_state = 2}, - [688] = {.lex_state = 23, .external_lex_state = 2}, - [689] = {.lex_state = 23, .external_lex_state = 2}, - [690] = {.lex_state = 21, .external_lex_state = 2}, - [691] = {.lex_state = 21, .external_lex_state = 2}, - [692] = {.lex_state = 21, .external_lex_state = 2}, - [693] = {.lex_state = 21, .external_lex_state = 2}, - [694] = {.lex_state = 23, .external_lex_state = 2}, + [687] = {.lex_state = 18, .external_lex_state = 2}, + [688] = {.lex_state = 18, .external_lex_state = 2}, + [689] = {.lex_state = 18, .external_lex_state = 2}, + [690] = {.lex_state = 18, .external_lex_state = 2}, + [691] = {.lex_state = 18, .external_lex_state = 2}, + [692] = {.lex_state = 18, .external_lex_state = 2}, + [693] = {.lex_state = 18, .external_lex_state = 2}, + [694] = {.lex_state = 18, .external_lex_state = 2}, [695] = {.lex_state = 18, .external_lex_state = 2}, [696] = {.lex_state = 18, .external_lex_state = 2}, [697] = {.lex_state = 18, .external_lex_state = 2}, - [698] = {.lex_state = 21, .external_lex_state = 2}, - [699] = {.lex_state = 21, .external_lex_state = 2}, - [700] = {.lex_state = 21, .external_lex_state = 2}, - [701] = {.lex_state = 21, .external_lex_state = 2}, - [702] = {.lex_state = 21, .external_lex_state = 2}, - [703] = {.lex_state = 21, .external_lex_state = 2}, - [704] = {.lex_state = 21, .external_lex_state = 2}, - [705] = {.lex_state = 21, .external_lex_state = 2}, - [706] = {.lex_state = 21, .external_lex_state = 2}, - [707] = {.lex_state = 21, .external_lex_state = 2}, - [708] = {.lex_state = 21, .external_lex_state = 2}, - [709] = {.lex_state = 21, .external_lex_state = 2}, - [710] = {.lex_state = 21, .external_lex_state = 2}, + [698] = {.lex_state = 18, .external_lex_state = 2}, + [699] = {.lex_state = 18, .external_lex_state = 2}, + [700] = {.lex_state = 18, .external_lex_state = 2}, + [701] = {.lex_state = 18, .external_lex_state = 2}, + [702] = {.lex_state = 18, .external_lex_state = 2}, + [703] = {.lex_state = 18, .external_lex_state = 2}, + [704] = {.lex_state = 18, .external_lex_state = 2}, + [705] = {.lex_state = 18, .external_lex_state = 2}, + [706] = {.lex_state = 18, .external_lex_state = 2}, + [707] = {.lex_state = 18, .external_lex_state = 2}, + [708] = {.lex_state = 18, .external_lex_state = 2}, + [709] = {.lex_state = 18, .external_lex_state = 2}, + [710] = {.lex_state = 18, .external_lex_state = 2}, [711] = {.lex_state = 18, .external_lex_state = 2}, - [712] = {.lex_state = 23, .external_lex_state = 2}, - [713] = {.lex_state = 23, .external_lex_state = 2}, - [714] = {.lex_state = 23, .external_lex_state = 2}, - [715] = {.lex_state = 18, .external_lex_state = 2}, - [716] = {.lex_state = 18, .external_lex_state = 2}, - [717] = {.lex_state = 23, .external_lex_state = 2}, - [718] = {.lex_state = 23, .external_lex_state = 2}, - [719] = {.lex_state = 21, .external_lex_state = 2}, - [720] = {.lex_state = 21, .external_lex_state = 2}, - [721] = {.lex_state = 21, .external_lex_state = 2}, - [722] = {.lex_state = 21, .external_lex_state = 2}, - [723] = {.lex_state = 18, .external_lex_state = 2}, - [724] = {.lex_state = 18, .external_lex_state = 2}, + [712] = {.lex_state = 18, .external_lex_state = 2}, + [713] = {.lex_state = 18, .external_lex_state = 2}, + [714] = {.lex_state = 18, .external_lex_state = 2}, + [715] = {.lex_state = 21, .external_lex_state = 2}, + [716] = {.lex_state = 21, .external_lex_state = 2}, + [717] = {.lex_state = 18, .external_lex_state = 2}, + [718] = {.lex_state = 18, .external_lex_state = 2}, + [719] = {.lex_state = 18, .external_lex_state = 2}, + [720] = {.lex_state = 18, .external_lex_state = 2}, + [721] = {.lex_state = 18, .external_lex_state = 2}, + [722] = {.lex_state = 18, .external_lex_state = 2}, + [723] = {.lex_state = 21, .external_lex_state = 2}, + [724] = {.lex_state = 21, .external_lex_state = 2}, [725] = {.lex_state = 21, .external_lex_state = 2}, - [726] = {.lex_state = 23, .external_lex_state = 2}, + [726] = {.lex_state = 21, .external_lex_state = 2}, [727] = {.lex_state = 21, .external_lex_state = 2}, [728] = {.lex_state = 21, .external_lex_state = 2}, - [729] = {.lex_state = 18, .external_lex_state = 2}, + [729] = {.lex_state = 21, .external_lex_state = 2}, [730] = {.lex_state = 21, .external_lex_state = 2}, - [731] = {.lex_state = 23, .external_lex_state = 2}, - [732] = {.lex_state = 23, .external_lex_state = 2}, - [733] = {.lex_state = 23, .external_lex_state = 2}, + [731] = {.lex_state = 18, .external_lex_state = 2}, + [732] = {.lex_state = 18, .external_lex_state = 2}, + [733] = {.lex_state = 18, .external_lex_state = 2}, [734] = {.lex_state = 18, .external_lex_state = 2}, - [735] = {.lex_state = 18, .external_lex_state = 2}, - [736] = {.lex_state = 18, .external_lex_state = 2}, - [737] = {.lex_state = 18, .external_lex_state = 2}, - [738] = {.lex_state = 23, .external_lex_state = 2}, - [739] = {.lex_state = 18, .external_lex_state = 2}, - [740] = {.lex_state = 23, .external_lex_state = 2}, - [741] = {.lex_state = 23, .external_lex_state = 2}, - [742] = {.lex_state = 23, .external_lex_state = 2}, - [743] = {.lex_state = 23, .external_lex_state = 2}, - [744] = {.lex_state = 18, .external_lex_state = 2}, - [745] = {.lex_state = 23, .external_lex_state = 2}, - [746] = {.lex_state = 23, .external_lex_state = 2}, - [747] = {.lex_state = 23, .external_lex_state = 2}, - [748] = {.lex_state = 18, .external_lex_state = 2}, - [749] = {.lex_state = 18, .external_lex_state = 2}, - [750] = {.lex_state = 23, .external_lex_state = 2}, - [751] = {.lex_state = 18, .external_lex_state = 2}, + [735] = {.lex_state = 21, .external_lex_state = 2}, + [736] = {.lex_state = 21, .external_lex_state = 2}, + [737] = {.lex_state = 21, .external_lex_state = 2}, + [738] = {.lex_state = 21, .external_lex_state = 2}, + [739] = {.lex_state = 21, .external_lex_state = 2}, + [740] = {.lex_state = 21, .external_lex_state = 2}, + [741] = {.lex_state = 21, .external_lex_state = 2}, + [742] = {.lex_state = 21, .external_lex_state = 2}, + [743] = {.lex_state = 21, .external_lex_state = 2}, + [744] = {.lex_state = 21, .external_lex_state = 2}, + [745] = {.lex_state = 21, .external_lex_state = 2}, + [746] = {.lex_state = 21, .external_lex_state = 2}, + [747] = {.lex_state = 21, .external_lex_state = 2}, + [748] = {.lex_state = 21, .external_lex_state = 2}, + [749] = {.lex_state = 21, .external_lex_state = 2}, + [750] = {.lex_state = 21, .external_lex_state = 2}, + [751] = {.lex_state = 21, .external_lex_state = 2}, [752] = {.lex_state = 21, .external_lex_state = 2}, - [753] = {.lex_state = 23, .external_lex_state = 2}, - [754] = {.lex_state = 23, .external_lex_state = 2}, - [755] = {.lex_state = 18, .external_lex_state = 2}, - [756] = {.lex_state = 23, .external_lex_state = 2}, - [757] = {.lex_state = 23, .external_lex_state = 2}, + [753] = {.lex_state = 21, .external_lex_state = 2}, + [754] = {.lex_state = 21, .external_lex_state = 2}, + [755] = {.lex_state = 21, .external_lex_state = 2}, + [756] = {.lex_state = 21, .external_lex_state = 2}, + [757] = {.lex_state = 18, .external_lex_state = 2}, [758] = {.lex_state = 18, .external_lex_state = 2}, - [759] = {.lex_state = 23, .external_lex_state = 2}, - [760] = {.lex_state = 23, .external_lex_state = 2}, - [761] = {.lex_state = 23, .external_lex_state = 2}, - [762] = {.lex_state = 23, .external_lex_state = 2}, - [763] = {.lex_state = 18, .external_lex_state = 2}, - [764] = {.lex_state = 18, .external_lex_state = 2}, - [765] = {.lex_state = 23, .external_lex_state = 2}, - [766] = {.lex_state = 23, .external_lex_state = 2}, - [767] = {.lex_state = 23, .external_lex_state = 2}, - [768] = {.lex_state = 18, .external_lex_state = 2}, - [769] = {.lex_state = 23, .external_lex_state = 2}, - [770] = {.lex_state = 23, .external_lex_state = 2}, - [771] = {.lex_state = 23, .external_lex_state = 2}, - [772] = {.lex_state = 18, .external_lex_state = 2}, + [759] = {.lex_state = 21, .external_lex_state = 2}, + [760] = {.lex_state = 21, .external_lex_state = 2}, + [761] = {.lex_state = 21, .external_lex_state = 2}, + [762] = {.lex_state = 21, .external_lex_state = 2}, + [763] = {.lex_state = 21, .external_lex_state = 2}, + [764] = {.lex_state = 21, .external_lex_state = 2}, + [765] = {.lex_state = 21, .external_lex_state = 2}, + [766] = {.lex_state = 21, .external_lex_state = 2}, + [767] = {.lex_state = 21, .external_lex_state = 2}, + [768] = {.lex_state = 21, .external_lex_state = 2}, + [769] = {.lex_state = 21, .external_lex_state = 2}, + [770] = {.lex_state = 21, .external_lex_state = 2}, + [771] = {.lex_state = 21, .external_lex_state = 2}, + [772] = {.lex_state = 21, .external_lex_state = 2}, [773] = {.lex_state = 21, .external_lex_state = 2}, - [774] = {.lex_state = 18, .external_lex_state = 2}, - [775] = {.lex_state = 18, .external_lex_state = 2}, - [776] = {.lex_state = 18, .external_lex_state = 2}, - [777] = {.lex_state = 18, .external_lex_state = 2}, - [778] = {.lex_state = 18, .external_lex_state = 2}, + [774] = {.lex_state = 21, .external_lex_state = 2}, + [775] = {.lex_state = 21, .external_lex_state = 2}, + [776] = {.lex_state = 21, .external_lex_state = 2}, + [777] = {.lex_state = 21, .external_lex_state = 2}, + [778] = {.lex_state = 21, .external_lex_state = 2}, [779] = {.lex_state = 21, .external_lex_state = 2}, - [780] = {.lex_state = 18, .external_lex_state = 2}, - [781] = {.lex_state = 23, .external_lex_state = 2}, - [782] = {.lex_state = 23, .external_lex_state = 2}, - [783] = {.lex_state = 18, .external_lex_state = 2}, - [784] = {.lex_state = 23, .external_lex_state = 2}, - [785] = {.lex_state = 18, .external_lex_state = 2}, - [786] = {.lex_state = 18, .external_lex_state = 2}, - [787] = {.lex_state = 18, .external_lex_state = 2}, - [788] = {.lex_state = 18, .external_lex_state = 2}, - [789] = {.lex_state = 18, .external_lex_state = 2}, - [790] = {.lex_state = 18, .external_lex_state = 2}, - [791] = {.lex_state = 18, .external_lex_state = 2}, - [792] = {.lex_state = 18, .external_lex_state = 2}, - [793] = {.lex_state = 23, .external_lex_state = 2}, - [794] = {.lex_state = 23, .external_lex_state = 2}, - [795] = {.lex_state = 18, .external_lex_state = 2}, - [796] = {.lex_state = 18, .external_lex_state = 2}, + [780] = {.lex_state = 21, .external_lex_state = 2}, + [781] = {.lex_state = 21, .external_lex_state = 2}, + [782] = {.lex_state = 21, .external_lex_state = 2}, + [783] = {.lex_state = 21, .external_lex_state = 2}, + [784] = {.lex_state = 21, .external_lex_state = 2}, + [785] = {.lex_state = 21, .external_lex_state = 2}, + [786] = {.lex_state = 21, .external_lex_state = 2}, + [787] = {.lex_state = 21, .external_lex_state = 2}, + [788] = {.lex_state = 21, .external_lex_state = 2}, + [789] = {.lex_state = 21, .external_lex_state = 2}, + [790] = {.lex_state = 21, .external_lex_state = 2}, + [791] = {.lex_state = 21, .external_lex_state = 2}, + [792] = {.lex_state = 21, .external_lex_state = 2}, + [793] = {.lex_state = 21, .external_lex_state = 2}, + [794] = {.lex_state = 21, .external_lex_state = 2}, + [795] = {.lex_state = 21, .external_lex_state = 2}, + [796] = {.lex_state = 21, .external_lex_state = 2}, [797] = {.lex_state = 21, .external_lex_state = 2}, [798] = {.lex_state = 21, .external_lex_state = 2}, - [799] = {.lex_state = 23, .external_lex_state = 2}, - [800] = {.lex_state = 18, .external_lex_state = 2}, - [801] = {.lex_state = 23, .external_lex_state = 2}, - [802] = {.lex_state = 18, .external_lex_state = 2}, - [803] = {.lex_state = 23, .external_lex_state = 2}, - [804] = {.lex_state = 23, .external_lex_state = 2}, - [805] = {.lex_state = 23, .external_lex_state = 2}, - [806] = {.lex_state = 23, .external_lex_state = 2}, - [807] = {.lex_state = 23, .external_lex_state = 2}, - [808] = {.lex_state = 23, .external_lex_state = 2}, - [809] = {.lex_state = 18, .external_lex_state = 2}, - [810] = {.lex_state = 18, .external_lex_state = 2}, - [811] = {.lex_state = 23, .external_lex_state = 2}, - [812] = {.lex_state = 23, .external_lex_state = 2}, - [813] = {.lex_state = 18, .external_lex_state = 2}, - [814] = {.lex_state = 18, .external_lex_state = 2}, - [815] = {.lex_state = 18, .external_lex_state = 2}, - [816] = {.lex_state = 23, .external_lex_state = 2}, - [817] = {.lex_state = 23, .external_lex_state = 2}, - [818] = {.lex_state = 23, .external_lex_state = 2}, - [819] = {.lex_state = 23, .external_lex_state = 2}, - [820] = {.lex_state = 23, .external_lex_state = 2}, - [821] = {.lex_state = 23, .external_lex_state = 2}, - [822] = {.lex_state = 23, .external_lex_state = 2}, - [823] = {.lex_state = 23, .external_lex_state = 2}, - [824] = {.lex_state = 23, .external_lex_state = 2}, - [825] = {.lex_state = 23, .external_lex_state = 2}, - [826] = {.lex_state = 23, .external_lex_state = 2}, - [827] = {.lex_state = 18, .external_lex_state = 2}, - [828] = {.lex_state = 18, .external_lex_state = 2}, - [829] = {.lex_state = 18, .external_lex_state = 2}, - [830] = {.lex_state = 23, .external_lex_state = 2}, - [831] = {.lex_state = 23, .external_lex_state = 2}, - [832] = {.lex_state = 23, .external_lex_state = 2}, - [833] = {.lex_state = 18, .external_lex_state = 2}, - [834] = {.lex_state = 23, .external_lex_state = 2}, - [835] = {.lex_state = 23, .external_lex_state = 2}, - [836] = {.lex_state = 18, .external_lex_state = 2}, - [837] = {.lex_state = 23, .external_lex_state = 2}, - [838] = {.lex_state = 21, .external_lex_state = 2}, - [839] = {.lex_state = 23, .external_lex_state = 2}, - [840] = {.lex_state = 23, .external_lex_state = 2}, - [841] = {.lex_state = 23, .external_lex_state = 2}, - [842] = {.lex_state = 18, .external_lex_state = 2}, - [843] = {.lex_state = 23, .external_lex_state = 2}, - [844] = {.lex_state = 23, .external_lex_state = 2}, - [845] = {.lex_state = 23, .external_lex_state = 2}, - [846] = {.lex_state = 23, .external_lex_state = 2}, - [847] = {.lex_state = 23, .external_lex_state = 2}, - [848] = {.lex_state = 18, .external_lex_state = 2}, - [849] = {.lex_state = 18, .external_lex_state = 2}, - [850] = {.lex_state = 18, .external_lex_state = 2}, - [851] = {.lex_state = 23, .external_lex_state = 2}, - [852] = {.lex_state = 23, .external_lex_state = 2}, - [853] = {.lex_state = 18, .external_lex_state = 2}, - [854] = {.lex_state = 5, .external_lex_state = 2}, - [855] = {.lex_state = 5, .external_lex_state = 2}, - [856] = {.lex_state = 5, .external_lex_state = 2}, - [857] = {.lex_state = 5, .external_lex_state = 2}, - [858] = {.lex_state = 5, .external_lex_state = 2}, - [859] = {.lex_state = 5, .external_lex_state = 2}, - [860] = {.lex_state = 5, .external_lex_state = 2}, - [861] = {.lex_state = 5, .external_lex_state = 2}, - [862] = {.lex_state = 5, .external_lex_state = 2}, - [863] = {.lex_state = 5, .external_lex_state = 2}, - [864] = {.lex_state = 5, .external_lex_state = 2}, - [865] = {.lex_state = 179}, - [866] = {.lex_state = 179}, - [867] = {.lex_state = 11, .external_lex_state = 2}, - [868] = {.lex_state = 11, .external_lex_state = 2}, - [869] = {.lex_state = 11, .external_lex_state = 2}, - [870] = {.lex_state = 11, .external_lex_state = 2}, - [871] = {.lex_state = 11, .external_lex_state = 2}, - [872] = {.lex_state = 11, .external_lex_state = 2}, - [873] = {.lex_state = 11, .external_lex_state = 2}, - [874] = {.lex_state = 11, .external_lex_state = 2}, - [875] = {.lex_state = 11, .external_lex_state = 2}, - [876] = {.lex_state = 179}, - [877] = {.lex_state = 179}, - [878] = {.lex_state = 179}, - [879] = {.lex_state = 179}, - [880] = {.lex_state = 179}, - [881] = {.lex_state = 179}, - [882] = {.lex_state = 179}, - [883] = {.lex_state = 179}, - [884] = {.lex_state = 179}, - [885] = {.lex_state = 179}, - [886] = {.lex_state = 179}, - [887] = {.lex_state = 179}, - [888] = {.lex_state = 179}, - [889] = {.lex_state = 179}, - [890] = {.lex_state = 179}, - [891] = {.lex_state = 179}, - [892] = {.lex_state = 179}, - [893] = {.lex_state = 179}, - [894] = {.lex_state = 179}, - [895] = {.lex_state = 179}, - [896] = {.lex_state = 179}, - [897] = {.lex_state = 179}, - [898] = {.lex_state = 179}, - [899] = {.lex_state = 179}, - [900] = {.lex_state = 179}, - [901] = {.lex_state = 179}, - [902] = {.lex_state = 179}, - [903] = {.lex_state = 179}, - [904] = {.lex_state = 179}, - [905] = {.lex_state = 179}, - [906] = {.lex_state = 179}, - [907] = {.lex_state = 179}, - [908] = {.lex_state = 179}, - [909] = {.lex_state = 179}, - [910] = {.lex_state = 179}, - [911] = {.lex_state = 179}, - [912] = {.lex_state = 179}, - [913] = {.lex_state = 179}, - [914] = {.lex_state = 179}, - [915] = {.lex_state = 179}, - [916] = {.lex_state = 179}, - [917] = {.lex_state = 179}, - [918] = {.lex_state = 179}, - [919] = {.lex_state = 179}, - [920] = {.lex_state = 179}, - [921] = {.lex_state = 179}, - [922] = {.lex_state = 179}, - [923] = {.lex_state = 179}, - [924] = {.lex_state = 179}, - [925] = {.lex_state = 179}, - [926] = {.lex_state = 179}, - [927] = {.lex_state = 179}, - [928] = {.lex_state = 179}, - [929] = {.lex_state = 179}, - [930] = {.lex_state = 179}, - [931] = {.lex_state = 179}, - [932] = {.lex_state = 179}, - [933] = {.lex_state = 179}, - [934] = {.lex_state = 179}, - [935] = {.lex_state = 179}, - [936] = {.lex_state = 179}, - [937] = {.lex_state = 179}, - [938] = {.lex_state = 179}, - [939] = {.lex_state = 179}, - [940] = {.lex_state = 179}, - [941] = {.lex_state = 179}, - [942] = {.lex_state = 179}, - [943] = {.lex_state = 179}, - [944] = {.lex_state = 179}, - [945] = {.lex_state = 179}, - [946] = {.lex_state = 179}, - [947] = {.lex_state = 179}, - [948] = {.lex_state = 179}, - [949] = {.lex_state = 179}, - [950] = {.lex_state = 179}, - [951] = {.lex_state = 179}, - [952] = {.lex_state = 179}, - [953] = {.lex_state = 179}, - [954] = {.lex_state = 179}, - [955] = {.lex_state = 179}, - [956] = {.lex_state = 179}, - [957] = {.lex_state = 179}, - [958] = {.lex_state = 179}, - [959] = {.lex_state = 179}, - [960] = {.lex_state = 179}, - [961] = {.lex_state = 179}, - [962] = {.lex_state = 179}, - [963] = {.lex_state = 179}, - [964] = {.lex_state = 179}, - [965] = {.lex_state = 179}, - [966] = {.lex_state = 179}, - [967] = {.lex_state = 179}, - [968] = {.lex_state = 179}, - [969] = {.lex_state = 179}, - [970] = {.lex_state = 179}, - [971] = {.lex_state = 179}, - [972] = {.lex_state = 179}, - [973] = {.lex_state = 179}, - [974] = {.lex_state = 179}, - [975] = {.lex_state = 179}, - [976] = {.lex_state = 179}, - [977] = {.lex_state = 179}, - [978] = {.lex_state = 179}, - [979] = {.lex_state = 179}, - [980] = {.lex_state = 179}, - [981] = {.lex_state = 179}, - [982] = {.lex_state = 179}, - [983] = {.lex_state = 179}, - [984] = {.lex_state = 179}, - [985] = {.lex_state = 179}, - [986] = {.lex_state = 179}, - [987] = {.lex_state = 179}, - [988] = {.lex_state = 179}, - [989] = {.lex_state = 179}, - [990] = {.lex_state = 179}, - [991] = {.lex_state = 179}, - [992] = {.lex_state = 179}, - [993] = {.lex_state = 179}, - [994] = {.lex_state = 179}, - [995] = {.lex_state = 179}, - [996] = {.lex_state = 179}, - [997] = {.lex_state = 179}, - [998] = {.lex_state = 179}, - [999] = {.lex_state = 179}, - [1000] = {.lex_state = 179}, - [1001] = {.lex_state = 179}, - [1002] = {.lex_state = 179}, - [1003] = {.lex_state = 179}, - [1004] = {.lex_state = 179}, - [1005] = {.lex_state = 179}, - [1006] = {.lex_state = 179}, - [1007] = {.lex_state = 179}, - [1008] = {.lex_state = 12}, - [1009] = {.lex_state = 179}, - [1010] = {.lex_state = 179}, - [1011] = {.lex_state = 179}, - [1012] = {.lex_state = 179}, - [1013] = {.lex_state = 179}, - [1014] = {.lex_state = 179}, - [1015] = {.lex_state = 179}, - [1016] = {.lex_state = 179}, - [1017] = {.lex_state = 179}, - [1018] = {.lex_state = 179}, - [1019] = {.lex_state = 179}, - [1020] = {.lex_state = 12}, - [1021] = {.lex_state = 179}, - [1022] = {.lex_state = 179}, - [1023] = {.lex_state = 179}, - [1024] = {.lex_state = 179}, + [799] = {.lex_state = 5, .external_lex_state = 2}, + [800] = {.lex_state = 5, .external_lex_state = 2}, + [801] = {.lex_state = 5, .external_lex_state = 2}, + [802] = {.lex_state = 5, .external_lex_state = 2}, + [803] = {.lex_state = 5, .external_lex_state = 2}, + [804] = {.lex_state = 5, .external_lex_state = 2}, + [805] = {.lex_state = 5, .external_lex_state = 2}, + [806] = {.lex_state = 5, .external_lex_state = 2}, + [807] = {.lex_state = 5, .external_lex_state = 2}, + [808] = {.lex_state = 5, .external_lex_state = 2}, + [809] = {.lex_state = 5, .external_lex_state = 2}, + [810] = {.lex_state = 178}, + [811] = {.lex_state = 178}, + [812] = {.lex_state = 178}, + [813] = {.lex_state = 178}, + [814] = {.lex_state = 11, .external_lex_state = 2}, + [815] = {.lex_state = 11, .external_lex_state = 2}, + [816] = {.lex_state = 11, .external_lex_state = 2}, + [817] = {.lex_state = 11, .external_lex_state = 2}, + [818] = {.lex_state = 11, .external_lex_state = 2}, + [819] = {.lex_state = 11, .external_lex_state = 2}, + [820] = {.lex_state = 11, .external_lex_state = 2}, + [821] = {.lex_state = 11, .external_lex_state = 2}, + [822] = {.lex_state = 11, .external_lex_state = 2}, + [823] = {.lex_state = 178}, + [824] = {.lex_state = 178}, + [825] = {.lex_state = 178}, + [826] = {.lex_state = 178}, + [827] = {.lex_state = 178}, + [828] = {.lex_state = 178}, + [829] = {.lex_state = 178}, + [830] = {.lex_state = 178}, + [831] = {.lex_state = 178}, + [832] = {.lex_state = 178}, + [833] = {.lex_state = 178}, + [834] = {.lex_state = 178}, + [835] = {.lex_state = 178}, + [836] = {.lex_state = 178}, + [837] = {.lex_state = 178}, + [838] = {.lex_state = 178}, + [839] = {.lex_state = 178}, + [840] = {.lex_state = 178}, + [841] = {.lex_state = 178}, + [842] = {.lex_state = 178}, + [843] = {.lex_state = 178}, + [844] = {.lex_state = 178}, + [845] = {.lex_state = 178}, + [846] = {.lex_state = 178}, + [847] = {.lex_state = 178}, + [848] = {.lex_state = 178}, + [849] = {.lex_state = 178}, + [850] = {.lex_state = 178}, + [851] = {.lex_state = 178}, + [852] = {.lex_state = 178}, + [853] = {.lex_state = 178}, + [854] = {.lex_state = 178}, + [855] = {.lex_state = 178}, + [856] = {.lex_state = 178}, + [857] = {.lex_state = 178}, + [858] = {.lex_state = 178}, + [859] = {.lex_state = 178}, + [860] = {.lex_state = 178}, + [861] = {.lex_state = 178}, + [862] = {.lex_state = 178}, + [863] = {.lex_state = 178}, + [864] = {.lex_state = 178}, + [865] = {.lex_state = 178}, + [866] = {.lex_state = 178}, + [867] = {.lex_state = 178}, + [868] = {.lex_state = 178}, + [869] = {.lex_state = 178}, + [870] = {.lex_state = 178}, + [871] = {.lex_state = 178}, + [872] = {.lex_state = 178}, + [873] = {.lex_state = 178}, + [874] = {.lex_state = 178}, + [875] = {.lex_state = 178}, + [876] = {.lex_state = 178}, + [877] = {.lex_state = 178}, + [878] = {.lex_state = 178}, + [879] = {.lex_state = 178}, + [880] = {.lex_state = 178}, + [881] = {.lex_state = 178}, + [882] = {.lex_state = 178}, + [883] = {.lex_state = 178}, + [884] = {.lex_state = 178}, + [885] = {.lex_state = 178}, + [886] = {.lex_state = 178}, + [887] = {.lex_state = 178}, + [888] = {.lex_state = 178}, + [889] = {.lex_state = 178}, + [890] = {.lex_state = 178}, + [891] = {.lex_state = 178}, + [892] = {.lex_state = 178}, + [893] = {.lex_state = 178}, + [894] = {.lex_state = 178}, + [895] = {.lex_state = 178}, + [896] = {.lex_state = 178}, + [897] = {.lex_state = 178}, + [898] = {.lex_state = 178}, + [899] = {.lex_state = 178}, + [900] = {.lex_state = 178}, + [901] = {.lex_state = 178}, + [902] = {.lex_state = 178}, + [903] = {.lex_state = 178}, + [904] = {.lex_state = 178}, + [905] = {.lex_state = 178}, + [906] = {.lex_state = 178}, + [907] = {.lex_state = 178}, + [908] = {.lex_state = 178}, + [909] = {.lex_state = 178}, + [910] = {.lex_state = 178}, + [911] = {.lex_state = 178}, + [912] = {.lex_state = 178}, + [913] = {.lex_state = 178}, + [914] = {.lex_state = 178}, + [915] = {.lex_state = 178}, + [916] = {.lex_state = 178}, + [917] = {.lex_state = 178}, + [918] = {.lex_state = 178}, + [919] = {.lex_state = 178}, + [920] = {.lex_state = 178}, + [921] = {.lex_state = 178}, + [922] = {.lex_state = 178}, + [923] = {.lex_state = 178}, + [924] = {.lex_state = 178}, + [925] = {.lex_state = 178}, + [926] = {.lex_state = 178}, + [927] = {.lex_state = 178}, + [928] = {.lex_state = 178}, + [929] = {.lex_state = 178}, + [930] = {.lex_state = 178}, + [931] = {.lex_state = 178}, + [932] = {.lex_state = 178}, + [933] = {.lex_state = 178}, + [934] = {.lex_state = 178}, + [935] = {.lex_state = 178}, + [936] = {.lex_state = 178}, + [937] = {.lex_state = 178}, + [938] = {.lex_state = 178}, + [939] = {.lex_state = 178}, + [940] = {.lex_state = 178}, + [941] = {.lex_state = 178}, + [942] = {.lex_state = 178}, + [943] = {.lex_state = 178}, + [944] = {.lex_state = 178}, + [945] = {.lex_state = 178}, + [946] = {.lex_state = 178}, + [947] = {.lex_state = 178}, + [948] = {.lex_state = 178}, + [949] = {.lex_state = 178}, + [950] = {.lex_state = 178}, + [951] = {.lex_state = 178}, + [952] = {.lex_state = 178}, + [953] = {.lex_state = 178}, + [954] = {.lex_state = 178}, + [955] = {.lex_state = 178}, + [956] = {.lex_state = 178}, + [957] = {.lex_state = 178}, + [958] = {.lex_state = 178}, + [959] = {.lex_state = 178}, + [960] = {.lex_state = 178}, + [961] = {.lex_state = 178}, + [962] = {.lex_state = 178}, + [963] = {.lex_state = 178}, + [964] = {.lex_state = 178}, + [965] = {.lex_state = 178}, + [966] = {.lex_state = 178}, + [967] = {.lex_state = 178}, + [968] = {.lex_state = 178}, + [969] = {.lex_state = 178}, + [970] = {.lex_state = 178}, + [971] = {.lex_state = 178}, + [972] = {.lex_state = 178}, + [973] = {.lex_state = 178}, + [974] = {.lex_state = 178}, + [975] = {.lex_state = 178}, + [976] = {.lex_state = 178}, + [977] = {.lex_state = 178}, + [978] = {.lex_state = 178}, + [979] = {.lex_state = 178}, + [980] = {.lex_state = 178}, + [981] = {.lex_state = 178}, + [982] = {.lex_state = 178}, + [983] = {.lex_state = 178}, + [984] = {.lex_state = 178}, + [985] = {.lex_state = 178}, + [986] = {.lex_state = 178}, + [987] = {.lex_state = 178}, + [988] = {.lex_state = 178}, + [989] = {.lex_state = 12}, + [990] = {.lex_state = 178}, + [991] = {.lex_state = 178}, + [992] = {.lex_state = 178}, + [993] = {.lex_state = 12}, + [994] = {.lex_state = 178}, + [995] = {.lex_state = 178}, + [996] = {.lex_state = 178}, + [997] = {.lex_state = 178}, + [998] = {.lex_state = 178}, + [999] = {.lex_state = 178}, + [1000] = {.lex_state = 178}, + [1001] = {.lex_state = 178}, + [1002] = {.lex_state = 178}, + [1003] = {.lex_state = 178}, + [1004] = {.lex_state = 178}, + [1005] = {.lex_state = 178}, + [1006] = {.lex_state = 178}, + [1007] = {.lex_state = 178}, + [1008] = {.lex_state = 178}, + [1009] = {.lex_state = 178}, + [1010] = {.lex_state = 178}, + [1011] = {.lex_state = 178}, + [1012] = {.lex_state = 178}, + [1013] = {.lex_state = 178}, + [1014] = {.lex_state = 178}, + [1015] = {.lex_state = 178}, + [1016] = {.lex_state = 178}, + [1017] = {.lex_state = 12}, + [1018] = {.lex_state = 3}, + [1019] = {.lex_state = 3}, + [1020] = {.lex_state = 178}, + [1021] = {.lex_state = 178}, + [1022] = {.lex_state = 12}, + [1023] = {.lex_state = 12}, + [1024] = {.lex_state = 178}, [1025] = {.lex_state = 12}, - [1026] = {.lex_state = 179}, + [1026] = {.lex_state = 178}, [1027] = {.lex_state = 12}, - [1028] = {.lex_state = 179}, - [1029] = {.lex_state = 179}, - [1030] = {.lex_state = 179}, + [1028] = {.lex_state = 178}, + [1029] = {.lex_state = 12}, + [1030] = {.lex_state = 12}, [1031] = {.lex_state = 12}, - [1032] = {.lex_state = 179}, - [1033] = {.lex_state = 179}, - [1034] = {.lex_state = 12}, + [1032] = {.lex_state = 12}, + [1033] = {.lex_state = 12}, + [1034] = {.lex_state = 178}, [1035] = {.lex_state = 12}, [1036] = {.lex_state = 12}, - [1037] = {.lex_state = 12}, - [1038] = {.lex_state = 12}, - [1039] = {.lex_state = 12}, - [1040] = {.lex_state = 12}, - [1041] = {.lex_state = 12}, - [1042] = {.lex_state = 12}, - [1043] = {.lex_state = 12}, - [1044] = {.lex_state = 12}, - [1045] = {.lex_state = 12}, - [1046] = {.lex_state = 179}, - [1047] = {.lex_state = 13}, - [1048] = {.lex_state = 13}, - [1049] = {.lex_state = 12}, - [1050] = {.lex_state = 13}, - [1051] = {.lex_state = 13}, - [1052] = {.lex_state = 12}, - [1053] = {.lex_state = 12}, - [1054] = {.lex_state = 12}, - [1055] = {.lex_state = 12}, - [1056] = {.lex_state = 179}, - [1057] = {.lex_state = 179}, - [1058] = {.lex_state = 179}, - [1059] = {.lex_state = 12}, + [1037] = {.lex_state = 178}, + [1038] = {.lex_state = 178}, + [1039] = {.lex_state = 178}, + [1040] = {.lex_state = 178}, + [1041] = {.lex_state = 178}, + [1042] = {.lex_state = 178}, + [1043] = {.lex_state = 178}, + [1044] = {.lex_state = 178}, + [1045] = {.lex_state = 178}, + [1046] = {.lex_state = 12}, + [1047] = {.lex_state = 178}, + [1048] = {.lex_state = 178}, + [1049] = {.lex_state = 178}, + [1050] = {.lex_state = 12}, + [1051] = {.lex_state = 178}, + [1052] = {.lex_state = 178}, + [1053] = {.lex_state = 178}, + [1054] = {.lex_state = 178}, + [1055] = {.lex_state = 178}, + [1056] = {.lex_state = 12}, + [1057] = {.lex_state = 178}, + [1058] = {.lex_state = 178}, + [1059] = {.lex_state = 178}, [1060] = {.lex_state = 12}, - [1061] = {.lex_state = 179}, - [1062] = {.lex_state = 13}, - [1063] = {.lex_state = 179}, + [1061] = {.lex_state = 178}, + [1062] = {.lex_state = 178}, + [1063] = {.lex_state = 178}, [1064] = {.lex_state = 12}, - [1065] = {.lex_state = 12}, - [1066] = {.lex_state = 13}, - [1067] = {.lex_state = 13}, - [1068] = {.lex_state = 12}, - [1069] = {.lex_state = 13}, - [1070] = {.lex_state = 179}, - [1071] = {.lex_state = 12}, - [1072] = {.lex_state = 13}, - [1073] = {.lex_state = 13}, - [1074] = {.lex_state = 13}, - [1075] = {.lex_state = 13}, - [1076] = {.lex_state = 179}, - [1077] = {.lex_state = 13}, - [1078] = {.lex_state = 13}, - [1079] = {.lex_state = 13}, - [1080] = {.lex_state = 13}, - [1081] = {.lex_state = 13}, - [1082] = {.lex_state = 12}, - [1083] = {.lex_state = 179}, - [1084] = {.lex_state = 12}, - [1085] = {.lex_state = 179}, - [1086] = {.lex_state = 179}, - [1087] = {.lex_state = 179}, - [1088] = {.lex_state = 179}, - [1089] = {.lex_state = 179}, - [1090] = {.lex_state = 13}, - [1091] = {.lex_state = 179}, - [1092] = {.lex_state = 13}, - [1093] = {.lex_state = 13}, - [1094] = {.lex_state = 179}, - [1095] = {.lex_state = 13}, - [1096] = {.lex_state = 13}, - [1097] = {.lex_state = 13}, - [1098] = {.lex_state = 13}, - [1099] = {.lex_state = 13}, - [1100] = {.lex_state = 13}, - [1101] = {.lex_state = 13}, - [1102] = {.lex_state = 13}, - [1103] = {.lex_state = 13}, - [1104] = {.lex_state = 13}, - [1105] = {.lex_state = 13}, - [1106] = {.lex_state = 13}, - [1107] = {.lex_state = 13}, - [1108] = {.lex_state = 13}, - [1109] = {.lex_state = 13}, - [1110] = {.lex_state = 179}, - [1111] = {.lex_state = 179}, - [1112] = {.lex_state = 179}, - [1113] = {.lex_state = 13}, - [1114] = {.lex_state = 13}, - [1115] = {.lex_state = 13}, - [1116] = {.lex_state = 13}, - [1117] = {.lex_state = 13}, - [1118] = {.lex_state = 13}, - [1119] = {.lex_state = 13}, - [1120] = {.lex_state = 179}, - [1121] = {.lex_state = 13}, - [1122] = {.lex_state = 179}, - [1123] = {.lex_state = 13}, - [1124] = {.lex_state = 179}, - [1125] = {.lex_state = 13}, - [1126] = {.lex_state = 13}, - [1127] = {.lex_state = 179}, - [1128] = {.lex_state = 13}, - [1129] = {.lex_state = 13}, - [1130] = {.lex_state = 179}, - [1131] = {.lex_state = 179}, - [1132] = {.lex_state = 13}, - [1133] = {.lex_state = 13}, - [1134] = {.lex_state = 13}, - [1135] = {.lex_state = 179}, - [1136] = {.lex_state = 12}, - [1137] = {.lex_state = 179}, - [1138] = {.lex_state = 12}, - [1139] = {.lex_state = 179}, - [1140] = {.lex_state = 179}, - [1141] = {.lex_state = 179}, - [1142] = {.lex_state = 179}, - [1143] = {.lex_state = 179}, - [1144] = {.lex_state = 179}, - [1145] = {.lex_state = 179}, - [1146] = {.lex_state = 179}, - [1147] = {.lex_state = 179}, - [1148] = {.lex_state = 179}, - [1149] = {.lex_state = 179}, - [1150] = {.lex_state = 179}, - [1151] = {.lex_state = 179}, - [1152] = {.lex_state = 179}, - [1153] = {.lex_state = 179}, - [1154] = {.lex_state = 179}, - [1155] = {.lex_state = 179}, - [1156] = {.lex_state = 179}, - [1157] = {.lex_state = 179}, - [1158] = {.lex_state = 179}, - [1159] = {.lex_state = 13}, - [1160] = {.lex_state = 13}, - [1161] = {.lex_state = 13}, - [1162] = {.lex_state = 13}, - [1163] = {.lex_state = 179}, - [1164] = {.lex_state = 179}, - [1165] = {.lex_state = 179}, - [1166] = {.lex_state = 13}, - [1167] = {.lex_state = 12}, - [1168] = {.lex_state = 13}, - [1169] = {.lex_state = 179}, - [1170] = {.lex_state = 179}, - [1171] = {.lex_state = 13}, - [1172] = {.lex_state = 13}, - [1173] = {.lex_state = 13}, - [1174] = {.lex_state = 179}, - [1175] = {.lex_state = 179}, - [1176] = {.lex_state = 179}, - [1177] = {.lex_state = 179}, - [1178] = {.lex_state = 13}, - [1179] = {.lex_state = 13}, - [1180] = {.lex_state = 13}, - [1181] = {.lex_state = 13}, - [1182] = {.lex_state = 13}, - [1183] = {.lex_state = 179}, - [1184] = {.lex_state = 13}, - [1185] = {.lex_state = 13}, - [1186] = {.lex_state = 13}, - [1187] = {.lex_state = 13}, - [1188] = {.lex_state = 12}, - [1189] = {.lex_state = 13}, - [1190] = {.lex_state = 179}, - [1191] = {.lex_state = 13}, - [1192] = {.lex_state = 13}, - [1193] = {.lex_state = 13}, - [1194] = {.lex_state = 179}, - [1195] = {.lex_state = 179}, - [1196] = {.lex_state = 13}, - [1197] = {.lex_state = 179}, - [1198] = {.lex_state = 179}, - [1199] = {.lex_state = 179}, - [1200] = {.lex_state = 179}, + [1065] = {.lex_state = 178}, + [1066] = {.lex_state = 12}, + [1067] = {.lex_state = 12}, + [1068] = {.lex_state = 178}, + [1069] = {.lex_state = 12}, + [1070] = {.lex_state = 178}, + [1071] = {.lex_state = 178}, + [1072] = {.lex_state = 178}, + [1073] = {.lex_state = 178}, + [1074] = {.lex_state = 178}, + [1075] = {.lex_state = 178}, + [1076] = {.lex_state = 178}, + [1077] = {.lex_state = 178}, + [1078] = {.lex_state = 178}, + [1079] = {.lex_state = 178}, + [1080] = {.lex_state = 178}, + [1081] = {.lex_state = 178}, + [1082] = {.lex_state = 178}, + [1083] = {.lex_state = 178}, + [1084] = {.lex_state = 178}, + [1085] = {.lex_state = 178}, + [1086] = {.lex_state = 178}, + [1087] = {.lex_state = 178}, + [1088] = {.lex_state = 12}, + [1089] = {.lex_state = 178}, + [1090] = {.lex_state = 178}, + [1091] = {.lex_state = 178}, + [1092] = {.lex_state = 178}, + [1093] = {.lex_state = 178}, + [1094] = {.lex_state = 178}, + [1095] = {.lex_state = 178}, + [1096] = {.lex_state = 178}, + [1097] = {.lex_state = 178}, + [1098] = {.lex_state = 178}, + [1099] = {.lex_state = 178}, + [1100] = {.lex_state = 178}, + [1101] = {.lex_state = 178}, + [1102] = {.lex_state = 178}, + [1103] = {.lex_state = 178}, + [1104] = {.lex_state = 178}, + [1105] = {.lex_state = 178}, + [1106] = {.lex_state = 178}, + [1107] = {.lex_state = 178}, + [1108] = {.lex_state = 178}, + [1109] = {.lex_state = 178}, + [1110] = {.lex_state = 178}, + [1111] = {.lex_state = 178}, + [1112] = {.lex_state = 178}, + [1113] = {.lex_state = 178}, + [1114] = {.lex_state = 178}, + [1115] = {.lex_state = 178}, + [1116] = {.lex_state = 178}, + [1117] = {.lex_state = 178}, + [1118] = {.lex_state = 178}, + [1119] = {.lex_state = 178}, + [1120] = {.lex_state = 178}, + [1121] = {.lex_state = 178}, + [1122] = {.lex_state = 178}, + [1123] = {.lex_state = 12}, + [1124] = {.lex_state = 178}, + [1125] = {.lex_state = 178}, + [1126] = {.lex_state = 178}, + [1127] = {.lex_state = 178}, + [1128] = {.lex_state = 178}, + [1129] = {.lex_state = 178}, + [1130] = {.lex_state = 178}, + [1131] = {.lex_state = 178}, + [1132] = {.lex_state = 178}, + [1133] = {.lex_state = 178}, + [1134] = {.lex_state = 12}, + [1135] = {.lex_state = 178}, + [1136] = {.lex_state = 178}, + [1137] = {.lex_state = 178}, + [1138] = {.lex_state = 178}, + [1139] = {.lex_state = 178}, + [1140] = {.lex_state = 178}, + [1141] = {.lex_state = 178}, + [1142] = {.lex_state = 178}, + [1143] = {.lex_state = 12}, + [1144] = {.lex_state = 178}, + [1145] = {.lex_state = 178}, + [1146] = {.lex_state = 178}, + [1147] = {.lex_state = 178}, + [1148] = {.lex_state = 178}, + [1149] = {.lex_state = 178}, + [1150] = {.lex_state = 178}, + [1151] = {.lex_state = 178}, + [1152] = {.lex_state = 178}, + [1153] = {.lex_state = 178}, + [1154] = {.lex_state = 178}, + [1155] = {.lex_state = 178}, + [1156] = {.lex_state = 178}, + [1157] = {.lex_state = 178}, + [1158] = {.lex_state = 178}, + [1159] = {.lex_state = 178}, + [1160] = {.lex_state = 178}, + [1161] = {.lex_state = 178}, + [1162] = {.lex_state = 178}, + [1163] = {.lex_state = 178}, + [1164] = {.lex_state = 178}, + [1165] = {.lex_state = 178}, + [1166] = {.lex_state = 178}, + [1167] = {.lex_state = 178}, + [1168] = {.lex_state = 178}, + [1169] = {.lex_state = 178}, + [1170] = {.lex_state = 178}, + [1171] = {.lex_state = 178}, + [1172] = {.lex_state = 178}, + [1173] = {.lex_state = 178}, + [1174] = {.lex_state = 178}, + [1175] = {.lex_state = 178}, + [1176] = {.lex_state = 178}, + [1177] = {.lex_state = 178}, + [1178] = {.lex_state = 178}, + [1179] = {.lex_state = 178}, + [1180] = {.lex_state = 178}, + [1181] = {.lex_state = 178}, + [1182] = {.lex_state = 178}, + [1183] = {.lex_state = 178}, + [1184] = {.lex_state = 178}, + [1185] = {.lex_state = 178}, + [1186] = {.lex_state = 178}, + [1187] = {.lex_state = 178}, + [1188] = {.lex_state = 178}, + [1189] = {.lex_state = 178}, + [1190] = {.lex_state = 178}, + [1191] = {.lex_state = 178}, + [1192] = {.lex_state = 178}, + [1193] = {.lex_state = 178}, + [1194] = {.lex_state = 178}, + [1195] = {.lex_state = 178}, + [1196] = {.lex_state = 178}, + [1197] = {.lex_state = 13}, + [1198] = {.lex_state = 13}, + [1199] = {.lex_state = 13}, + [1200] = {.lex_state = 13}, [1201] = {.lex_state = 13}, - [1202] = {.lex_state = 179}, - [1203] = {.lex_state = 179}, - [1204] = {.lex_state = 179}, + [1202] = {.lex_state = 13}, + [1203] = {.lex_state = 13}, + [1204] = {.lex_state = 13}, [1205] = {.lex_state = 13}, - [1206] = {.lex_state = 179}, + [1206] = {.lex_state = 13}, [1207] = {.lex_state = 13}, - [1208] = {.lex_state = 179}, - [1209] = {.lex_state = 179}, - [1210] = {.lex_state = 179}, - [1211] = {.lex_state = 179}, - [1212] = {.lex_state = 179}, - [1213] = {.lex_state = 179}, - [1214] = {.lex_state = 179}, - [1215] = {.lex_state = 179}, - [1216] = {.lex_state = 179}, - [1217] = {.lex_state = 179}, - [1218] = {.lex_state = 179}, - [1219] = {.lex_state = 179}, - [1220] = {.lex_state = 13}, - [1221] = {.lex_state = 179}, - [1222] = {.lex_state = 179}, - [1223] = {.lex_state = 179}, + [1208] = {.lex_state = 13}, + [1209] = {.lex_state = 13}, + [1210] = {.lex_state = 13}, + [1211] = {.lex_state = 13}, + [1212] = {.lex_state = 13}, + [1213] = {.lex_state = 0}, + [1214] = {.lex_state = 0}, + [1215] = {.lex_state = 3}, + [1216] = {.lex_state = 178}, + [1217] = {.lex_state = 4}, + [1218] = {.lex_state = 0}, + [1219] = {.lex_state = 178}, + [1220] = {.lex_state = 178}, + [1221] = {.lex_state = 3}, + [1222] = {.lex_state = 178}, + [1223] = {.lex_state = 178}, [1224] = {.lex_state = 13}, - [1225] = {.lex_state = 13}, - [1226] = {.lex_state = 13}, + [1225] = {.lex_state = 178}, + [1226] = {.lex_state = 0}, [1227] = {.lex_state = 13}, - [1228] = {.lex_state = 13}, - [1229] = {.lex_state = 3}, + [1228] = {.lex_state = 178}, + [1229] = {.lex_state = 0}, [1230] = {.lex_state = 13}, [1231] = {.lex_state = 13}, - [1232] = {.lex_state = 13}, - [1233] = {.lex_state = 13}, - [1234] = {.lex_state = 13}, - [1235] = {.lex_state = 13}, - [1236] = {.lex_state = 13}, + [1232] = {.lex_state = 0}, + [1233] = {.lex_state = 178}, + [1234] = {.lex_state = 178}, + [1235] = {.lex_state = 178}, + [1236] = {.lex_state = 178}, [1237] = {.lex_state = 13}, [1238] = {.lex_state = 13}, [1239] = {.lex_state = 13}, - [1240] = {.lex_state = 13}, - [1241] = {.lex_state = 13}, - [1242] = {.lex_state = 13}, - [1243] = {.lex_state = 13}, - [1244] = {.lex_state = 13}, - [1245] = {.lex_state = 13}, - [1246] = {.lex_state = 13}, - [1247] = {.lex_state = 13}, + [1240] = {.lex_state = 0}, + [1241] = {.lex_state = 178}, + [1242] = {.lex_state = 178}, + [1243] = {.lex_state = 178}, + [1244] = {.lex_state = 178}, + [1245] = {.lex_state = 178}, + [1246] = {.lex_state = 0}, + [1247] = {.lex_state = 178}, [1248] = {.lex_state = 13}, - [1249] = {.lex_state = 13}, - [1250] = {.lex_state = 13}, - [1251] = {.lex_state = 13}, - [1252] = {.lex_state = 13}, - [1253] = {.lex_state = 13}, - [1254] = {.lex_state = 13}, - [1255] = {.lex_state = 13}, - [1256] = {.lex_state = 13}, - [1257] = {.lex_state = 179}, - [1258] = {.lex_state = 13}, - [1259] = {.lex_state = 13}, + [1249] = {.lex_state = 178}, + [1250] = {.lex_state = 178}, + [1251] = {.lex_state = 178}, + [1252] = {.lex_state = 178}, + [1253] = {.lex_state = 178}, + [1254] = {.lex_state = 13, .external_lex_state = 2}, + [1255] = {.lex_state = 0}, + [1256] = {.lex_state = 178}, + [1257] = {.lex_state = 178}, + [1258] = {.lex_state = 0}, + [1259] = {.lex_state = 178}, [1260] = {.lex_state = 13}, - [1261] = {.lex_state = 13}, - [1262] = {.lex_state = 13}, - [1263] = {.lex_state = 13}, - [1264] = {.lex_state = 13}, - [1265] = {.lex_state = 13}, - [1266] = {.lex_state = 13}, - [1267] = {.lex_state = 13}, - [1268] = {.lex_state = 13}, - [1269] = {.lex_state = 13}, - [1270] = {.lex_state = 13}, - [1271] = {.lex_state = 13}, - [1272] = {.lex_state = 13}, - [1273] = {.lex_state = 13}, - [1274] = {.lex_state = 13}, - [1275] = {.lex_state = 13}, - [1276] = {.lex_state = 13}, - [1277] = {.lex_state = 13}, - [1278] = {.lex_state = 13}, - [1279] = {.lex_state = 13}, - [1280] = {.lex_state = 13}, - [1281] = {.lex_state = 13}, - [1282] = {.lex_state = 179}, - [1283] = {.lex_state = 13}, - [1284] = {.lex_state = 13}, - [1285] = {.lex_state = 13}, - [1286] = {.lex_state = 13}, - [1287] = {.lex_state = 13}, - [1288] = {.lex_state = 13}, - [1289] = {.lex_state = 179}, - [1290] = {.lex_state = 179}, - [1291] = {.lex_state = 13}, - [1292] = {.lex_state = 13}, - [1293] = {.lex_state = 13}, - [1294] = {.lex_state = 13}, - [1295] = {.lex_state = 13}, - [1296] = {.lex_state = 13}, - [1297] = {.lex_state = 13}, - [1298] = {.lex_state = 13}, - [1299] = {.lex_state = 13}, - [1300] = {.lex_state = 179}, - [1301] = {.lex_state = 13}, - [1302] = {.lex_state = 179}, - [1303] = {.lex_state = 13}, - [1304] = {.lex_state = 14}, - [1305] = {.lex_state = 14}, - [1306] = {.lex_state = 14}, - [1307] = {.lex_state = 14}, - [1308] = {.lex_state = 14}, - [1309] = {.lex_state = 14}, - [1310] = {.lex_state = 14}, - [1311] = {.lex_state = 14}, - [1312] = {.lex_state = 14}, - [1313] = {.lex_state = 14}, - [1314] = {.lex_state = 14}, - [1315] = {.lex_state = 14}, - [1316] = {.lex_state = 14}, - [1317] = {.lex_state = 14}, - [1318] = {.lex_state = 14}, - [1319] = {.lex_state = 14}, - [1320] = {.lex_state = 14}, + [1261] = {.lex_state = 178}, + [1262] = {.lex_state = 178}, + [1263] = {.lex_state = 0}, + [1264] = {.lex_state = 0}, + [1265] = {.lex_state = 0}, + [1266] = {.lex_state = 13, .external_lex_state = 2}, + [1267] = {.lex_state = 0}, + [1268] = {.lex_state = 13, .external_lex_state = 2}, + [1269] = {.lex_state = 13, .external_lex_state = 2}, + [1270] = {.lex_state = 0}, + [1271] = {.lex_state = 0}, + [1272] = {.lex_state = 0}, + [1273] = {.lex_state = 0}, + [1274] = {.lex_state = 0}, + [1275] = {.lex_state = 0}, + [1276] = {.lex_state = 3}, + [1277] = {.lex_state = 0}, + [1278] = {.lex_state = 0}, + [1279] = {.lex_state = 0}, + [1280] = {.lex_state = 0}, + [1281] = {.lex_state = 0}, + [1282] = {.lex_state = 3}, + [1283] = {.lex_state = 0}, + [1284] = {.lex_state = 0}, + [1285] = {.lex_state = 0}, + [1286] = {.lex_state = 0}, + [1287] = {.lex_state = 0}, + [1288] = {.lex_state = 0}, + [1289] = {.lex_state = 0}, + [1290] = {.lex_state = 0}, + [1291] = {.lex_state = 0}, + [1292] = {.lex_state = 178}, + [1293] = {.lex_state = 178}, + [1294] = {.lex_state = 0}, + [1295] = {.lex_state = 0}, + [1296] = {.lex_state = 0}, + [1297] = {.lex_state = 0}, + [1298] = {.lex_state = 0}, + [1299] = {.lex_state = 0}, + [1300] = {.lex_state = 0}, + [1301] = {.lex_state = 0}, + [1302] = {.lex_state = 0}, + [1303] = {.lex_state = 178}, + [1304] = {.lex_state = 0}, + [1305] = {.lex_state = 13, .external_lex_state = 2}, + [1306] = {.lex_state = 0}, + [1307] = {.lex_state = 0}, + [1308] = {.lex_state = 0}, + [1309] = {.lex_state = 0}, + [1310] = {.lex_state = 0}, + [1311] = {.lex_state = 0}, + [1312] = {.lex_state = 0}, + [1313] = {.lex_state = 0}, + [1314] = {.lex_state = 0}, + [1315] = {.lex_state = 0}, + [1316] = {.lex_state = 0}, + [1317] = {.lex_state = 0}, + [1318] = {.lex_state = 13, .external_lex_state = 2}, + [1319] = {.lex_state = 0}, + [1320] = {.lex_state = 0}, [1321] = {.lex_state = 0}, - [1322] = {.lex_state = 179}, + [1322] = {.lex_state = 0}, [1323] = {.lex_state = 0}, - [1324] = {.lex_state = 0}, - [1325] = {.lex_state = 179}, - [1326] = {.lex_state = 3}, - [1327] = {.lex_state = 4}, - [1328] = {.lex_state = 4}, - [1329] = {.lex_state = 14}, - [1330] = {.lex_state = 179}, - [1331] = {.lex_state = 179}, - [1332] = {.lex_state = 0}, - [1333] = {.lex_state = 179}, - [1334] = {.lex_state = 179}, - [1335] = {.lex_state = 13}, - [1336] = {.lex_state = 179}, - [1337] = {.lex_state = 179}, - [1338] = {.lex_state = 0}, - [1339] = {.lex_state = 13}, - [1340] = {.lex_state = 179}, - [1341] = {.lex_state = 179}, + [1324] = {.lex_state = 178}, + [1325] = {.lex_state = 13, .external_lex_state = 2}, + [1326] = {.lex_state = 13}, + [1327] = {.lex_state = 178}, + [1328] = {.lex_state = 13}, + [1329] = {.lex_state = 12}, + [1330] = {.lex_state = 12}, + [1331] = {.lex_state = 12}, + [1332] = {.lex_state = 12}, + [1333] = {.lex_state = 12}, + [1334] = {.lex_state = 12}, + [1335] = {.lex_state = 12}, + [1336] = {.lex_state = 12}, + [1337] = {.lex_state = 12}, + [1338] = {.lex_state = 13}, + [1339] = {.lex_state = 3}, + [1340] = {.lex_state = 0}, + [1341] = {.lex_state = 178}, [1342] = {.lex_state = 13}, - [1343] = {.lex_state = 179}, - [1344] = {.lex_state = 13}, - [1345] = {.lex_state = 13}, - [1346] = {.lex_state = 179}, + [1343] = {.lex_state = 3}, + [1344] = {.lex_state = 0}, + [1345] = {.lex_state = 178}, + [1346] = {.lex_state = 13}, [1347] = {.lex_state = 0}, - [1348] = {.lex_state = 13}, - [1349] = {.lex_state = 179}, - [1350] = {.lex_state = 179}, - [1351] = {.lex_state = 179}, - [1352] = {.lex_state = 179}, - [1353] = {.lex_state = 179}, - [1354] = {.lex_state = 179}, - [1355] = {.lex_state = 179}, + [1348] = {.lex_state = 178}, + [1349] = {.lex_state = 0}, + [1350] = {.lex_state = 0}, + [1351] = {.lex_state = 13}, + [1352] = {.lex_state = 14}, + [1353] = {.lex_state = 13}, + [1354] = {.lex_state = 0}, + [1355] = {.lex_state = 0}, [1356] = {.lex_state = 0}, - [1357] = {.lex_state = 179}, - [1358] = {.lex_state = 14, .external_lex_state = 2}, + [1357] = {.lex_state = 13}, + [1358] = {.lex_state = 0}, [1359] = {.lex_state = 0}, [1360] = {.lex_state = 0}, - [1361] = {.lex_state = 179}, - [1362] = {.lex_state = 179}, + [1361] = {.lex_state = 0}, + [1362] = {.lex_state = 0}, [1363] = {.lex_state = 0}, - [1364] = {.lex_state = 179}, - [1365] = {.lex_state = 179}, - [1366] = {.lex_state = 179}, - [1367] = {.lex_state = 179}, - [1368] = {.lex_state = 179}, + [1364] = {.lex_state = 178}, + [1365] = {.lex_state = 0}, + [1366] = {.lex_state = 0}, + [1367] = {.lex_state = 0}, + [1368] = {.lex_state = 178}, [1369] = {.lex_state = 0}, [1370] = {.lex_state = 0}, - [1371] = {.lex_state = 4}, - [1372] = {.lex_state = 14, .external_lex_state = 2}, - [1373] = {.lex_state = 4}, + [1371] = {.lex_state = 0}, + [1372] = {.lex_state = 0}, + [1373] = {.lex_state = 0}, [1374] = {.lex_state = 0}, [1375] = {.lex_state = 0}, [1376] = {.lex_state = 0}, [1377] = {.lex_state = 0}, [1378] = {.lex_state = 0}, - [1379] = {.lex_state = 14, .external_lex_state = 2}, + [1379] = {.lex_state = 0}, [1380] = {.lex_state = 0}, [1381] = {.lex_state = 0}, [1382] = {.lex_state = 0}, - [1383] = {.lex_state = 179}, + [1383] = {.lex_state = 13}, [1384] = {.lex_state = 0}, [1385] = {.lex_state = 0}, [1386] = {.lex_state = 0}, [1387] = {.lex_state = 0}, - [1388] = {.lex_state = 14, .external_lex_state = 2}, + [1388] = {.lex_state = 0}, [1389] = {.lex_state = 0}, [1390] = {.lex_state = 0}, - [1391] = {.lex_state = 0}, + [1391] = {.lex_state = 3}, [1392] = {.lex_state = 0}, - [1393] = {.lex_state = 14, .external_lex_state = 2}, - [1394] = {.lex_state = 179}, + [1393] = {.lex_state = 0}, + [1394] = {.lex_state = 12}, [1395] = {.lex_state = 0}, - [1396] = {.lex_state = 179}, + [1396] = {.lex_state = 0}, [1397] = {.lex_state = 0}, [1398] = {.lex_state = 0}, - [1399] = {.lex_state = 179}, + [1399] = {.lex_state = 0}, [1400] = {.lex_state = 0}, [1401] = {.lex_state = 0}, [1402] = {.lex_state = 0}, [1403] = {.lex_state = 0}, [1404] = {.lex_state = 0}, [1405] = {.lex_state = 0}, - [1406] = {.lex_state = 0}, + [1406] = {.lex_state = 178}, [1407] = {.lex_state = 0}, [1408] = {.lex_state = 0}, [1409] = {.lex_state = 0}, - [1410] = {.lex_state = 0}, + [1410] = {.lex_state = 178}, [1411] = {.lex_state = 0}, [1412] = {.lex_state = 0}, [1413] = {.lex_state = 0}, - [1414] = {.lex_state = 14, .external_lex_state = 2}, + [1414] = {.lex_state = 0}, [1415] = {.lex_state = 0}, - [1416] = {.lex_state = 0}, + [1416] = {.lex_state = 178}, [1417] = {.lex_state = 0}, [1418] = {.lex_state = 0}, - [1419] = {.lex_state = 0}, - [1420] = {.lex_state = 0}, + [1419] = {.lex_state = 178}, + [1420] = {.lex_state = 3}, [1421] = {.lex_state = 0}, [1422] = {.lex_state = 0}, [1423] = {.lex_state = 0}, [1424] = {.lex_state = 0}, - [1425] = {.lex_state = 0}, - [1426] = {.lex_state = 0}, - [1427] = {.lex_state = 0}, - [1428] = {.lex_state = 0}, + [1425] = {.lex_state = 3}, + [1426] = {.lex_state = 178}, + [1427] = {.lex_state = 178}, + [1428] = {.lex_state = 178}, [1429] = {.lex_state = 0}, - [1430] = {.lex_state = 0}, - [1431] = {.lex_state = 14, .external_lex_state = 2}, - [1432] = {.lex_state = 179}, - [1433] = {.lex_state = 14}, - [1434] = {.lex_state = 179}, - [1435] = {.lex_state = 15}, - [1436] = {.lex_state = 12}, - [1437] = {.lex_state = 12}, - [1438] = {.lex_state = 12}, - [1439] = {.lex_state = 14}, - [1440] = {.lex_state = 12}, - [1441] = {.lex_state = 12}, - [1442] = {.lex_state = 12}, - [1443] = {.lex_state = 12}, + [1430] = {.lex_state = 178}, + [1431] = {.lex_state = 3}, + [1432] = {.lex_state = 0}, + [1433] = {.lex_state = 0}, + [1434] = {.lex_state = 3}, + [1435] = {.lex_state = 178}, + [1436] = {.lex_state = 178}, + [1437] = {.lex_state = 178}, + [1438] = {.lex_state = 0}, + [1439] = {.lex_state = 0}, + [1440] = {.lex_state = 0}, + [1441] = {.lex_state = 3}, + [1442] = {.lex_state = 0}, + [1443] = {.lex_state = 178}, [1444] = {.lex_state = 0}, - [1445] = {.lex_state = 0}, + [1445] = {.lex_state = 178}, [1446] = {.lex_state = 0}, - [1447] = {.lex_state = 0}, - [1448] = {.lex_state = 0}, - [1449] = {.lex_state = 4}, - [1450] = {.lex_state = 0}, - [1451] = {.lex_state = 0}, + [1447] = {.lex_state = 178}, + [1448] = {.lex_state = 13}, + [1449] = {.lex_state = 0}, + [1450] = {.lex_state = 13}, + [1451] = {.lex_state = 13}, [1452] = {.lex_state = 0}, - [1453] = {.lex_state = 13}, - [1454] = {.lex_state = 4}, - [1455] = {.lex_state = 179}, - [1456] = {.lex_state = 0}, - [1457] = {.lex_state = 3}, - [1458] = {.lex_state = 179}, - [1459] = {.lex_state = 179}, + [1453] = {.lex_state = 0}, + [1454] = {.lex_state = 0}, + [1455] = {.lex_state = 0}, + [1456] = {.lex_state = 178}, + [1457] = {.lex_state = 0}, + [1458] = {.lex_state = 0}, + [1459] = {.lex_state = 0}, [1460] = {.lex_state = 0}, [1461] = {.lex_state = 0}, - [1462] = {.lex_state = 0}, - [1463] = {.lex_state = 14}, + [1462] = {.lex_state = 13}, + [1463] = {.lex_state = 178}, [1464] = {.lex_state = 0}, [1465] = {.lex_state = 0}, [1466] = {.lex_state = 0}, @@ -12294,23 +12071,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1472] = {.lex_state = 0}, [1473] = {.lex_state = 0}, [1474] = {.lex_state = 0}, - [1475] = {.lex_state = 12}, + [1475] = {.lex_state = 0}, [1476] = {.lex_state = 0}, - [1477] = {.lex_state = 4}, - [1478] = {.lex_state = 179}, - [1479] = {.lex_state = 0}, - [1480] = {.lex_state = 0}, + [1477] = {.lex_state = 0}, + [1478] = {.lex_state = 178}, + [1479] = {.lex_state = 13}, + [1480] = {.lex_state = 3}, [1481] = {.lex_state = 0}, [1482] = {.lex_state = 0}, [1483] = {.lex_state = 0}, [1484] = {.lex_state = 0}, - [1485] = {.lex_state = 179}, + [1485] = {.lex_state = 13}, [1486] = {.lex_state = 0}, [1487] = {.lex_state = 0}, - [1488] = {.lex_state = 0}, + [1488] = {.lex_state = 1}, [1489] = {.lex_state = 0}, [1490] = {.lex_state = 0}, - [1491] = {.lex_state = 0}, + [1491] = {.lex_state = 12}, [1492] = {.lex_state = 0}, [1493] = {.lex_state = 0}, [1494] = {.lex_state = 0}, @@ -12320,212 +12097,212 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1498] = {.lex_state = 0}, [1499] = {.lex_state = 0}, [1500] = {.lex_state = 0}, - [1501] = {.lex_state = 0}, - [1502] = {.lex_state = 0}, - [1503] = {.lex_state = 0}, - [1504] = {.lex_state = 0}, + [1501] = {.lex_state = 13}, + [1502] = {.lex_state = 13}, + [1503] = {.lex_state = 13}, + [1504] = {.lex_state = 13}, [1505] = {.lex_state = 0}, - [1506] = {.lex_state = 179}, + [1506] = {.lex_state = 13}, [1507] = {.lex_state = 0}, - [1508] = {.lex_state = 0}, - [1509] = {.lex_state = 0}, + [1508] = {.lex_state = 178}, + [1509] = {.lex_state = 13}, [1510] = {.lex_state = 0}, - [1511] = {.lex_state = 0}, + [1511] = {.lex_state = 178}, [1512] = {.lex_state = 0}, [1513] = {.lex_state = 0}, - [1514] = {.lex_state = 179}, - [1515] = {.lex_state = 0}, - [1516] = {.lex_state = 0}, - [1517] = {.lex_state = 0}, - [1518] = {.lex_state = 179}, + [1514] = {.lex_state = 0}, + [1515] = {.lex_state = 13}, + [1516] = {.lex_state = 1}, + [1517] = {.lex_state = 13}, + [1518] = {.lex_state = 13}, [1519] = {.lex_state = 0}, - [1520] = {.lex_state = 4}, - [1521] = {.lex_state = 4}, - [1522] = {.lex_state = 179}, - [1523] = {.lex_state = 4}, - [1524] = {.lex_state = 0}, - [1525] = {.lex_state = 179}, - [1526] = {.lex_state = 0}, - [1527] = {.lex_state = 179}, - [1528] = {.lex_state = 0}, - [1529] = {.lex_state = 4}, - [1530] = {.lex_state = 4}, - [1531] = {.lex_state = 179}, + [1520] = {.lex_state = 0}, + [1521] = {.lex_state = 178}, + [1522] = {.lex_state = 13}, + [1523] = {.lex_state = 13}, + [1524] = {.lex_state = 13}, + [1525] = {.lex_state = 13}, + [1526] = {.lex_state = 13}, + [1527] = {.lex_state = 13}, + [1528] = {.lex_state = 178}, + [1529] = {.lex_state = 13}, + [1530] = {.lex_state = 0}, + [1531] = {.lex_state = 0}, [1532] = {.lex_state = 0}, - [1533] = {.lex_state = 179}, - [1534] = {.lex_state = 0}, - [1535] = {.lex_state = 0}, + [1533] = {.lex_state = 0}, + [1534] = {.lex_state = 13}, + [1535] = {.lex_state = 13}, [1536] = {.lex_state = 0}, - [1537] = {.lex_state = 0}, - [1538] = {.lex_state = 0}, - [1539] = {.lex_state = 179}, + [1537] = {.lex_state = 13}, + [1538] = {.lex_state = 13}, + [1539] = {.lex_state = 0}, [1540] = {.lex_state = 0}, - [1541] = {.lex_state = 0}, + [1541] = {.lex_state = 13}, [1542] = {.lex_state = 0}, - [1543] = {.lex_state = 13}, - [1544] = {.lex_state = 0}, - [1545] = {.lex_state = 179}, - [1546] = {.lex_state = 179}, - [1547] = {.lex_state = 0}, - [1548] = {.lex_state = 1}, + [1543] = {.lex_state = 0}, + [1544] = {.lex_state = 178}, + [1545] = {.lex_state = 178}, + [1546] = {.lex_state = 0}, + [1547] = {.lex_state = 3}, + [1548] = {.lex_state = 0}, [1549] = {.lex_state = 13}, - [1550] = {.lex_state = 179}, + [1550] = {.lex_state = 178}, [1551] = {.lex_state = 0}, [1552] = {.lex_state = 13}, - [1553] = {.lex_state = 0}, - [1554] = {.lex_state = 0}, - [1555] = {.lex_state = 0}, + [1553] = {.lex_state = 13}, + [1554] = {.lex_state = 13}, + [1555] = {.lex_state = 13}, [1556] = {.lex_state = 13}, - [1557] = {.lex_state = 179}, - [1558] = {.lex_state = 14}, - [1559] = {.lex_state = 14}, - [1560] = {.lex_state = 0}, - [1561] = {.lex_state = 179}, - [1562] = {.lex_state = 179}, - [1563] = {.lex_state = 179}, - [1564] = {.lex_state = 14}, - [1565] = {.lex_state = 0}, - [1566] = {.lex_state = 179}, - [1567] = {.lex_state = 14}, - [1568] = {.lex_state = 0}, - [1569] = {.lex_state = 13}, - [1570] = {.lex_state = 13}, - [1571] = {.lex_state = 13}, + [1557] = {.lex_state = 0}, + [1558] = {.lex_state = 0}, + [1559] = {.lex_state = 178}, + [1560] = {.lex_state = 13}, + [1561] = {.lex_state = 13}, + [1562] = {.lex_state = 13}, + [1563] = {.lex_state = 0}, + [1564] = {.lex_state = 13}, + [1565] = {.lex_state = 13}, + [1566] = {.lex_state = 178}, + [1567] = {.lex_state = 0}, + [1568] = {.lex_state = 13}, + [1569] = {.lex_state = 0}, + [1570] = {.lex_state = 0}, + [1571] = {.lex_state = 0}, [1572] = {.lex_state = 0}, - [1573] = {.lex_state = 179}, - [1574] = {.lex_state = 13}, - [1575] = {.lex_state = 1}, - [1576] = {.lex_state = 0}, - [1577] = {.lex_state = 13}, - [1578] = {.lex_state = 0}, - [1579] = {.lex_state = 3}, - [1580] = {.lex_state = 14}, - [1581] = {.lex_state = 4}, + [1573] = {.lex_state = 0}, + [1574] = {.lex_state = 0}, + [1575] = {.lex_state = 0}, + [1576] = {.lex_state = 178}, + [1577] = {.lex_state = 0}, + [1578] = {.lex_state = 1}, + [1579] = {.lex_state = 178}, + [1580] = {.lex_state = 178}, + [1581] = {.lex_state = 0}, [1582] = {.lex_state = 0}, - [1583] = {.lex_state = 0}, - [1584] = {.lex_state = 13}, + [1583] = {.lex_state = 178}, + [1584] = {.lex_state = 0}, [1585] = {.lex_state = 0}, - [1586] = {.lex_state = 13}, - [1587] = {.lex_state = 0}, + [1586] = {.lex_state = 0}, + [1587] = {.lex_state = 1}, [1588] = {.lex_state = 0}, - [1589] = {.lex_state = 13}, - [1590] = {.lex_state = 179}, - [1591] = {.lex_state = 14}, + [1589] = {.lex_state = 0}, + [1590] = {.lex_state = 0}, + [1591] = {.lex_state = 0}, [1592] = {.lex_state = 0}, - [1593] = {.lex_state = 179}, - [1594] = {.lex_state = 0}, - [1595] = {.lex_state = 14}, - [1596] = {.lex_state = 14}, + [1593] = {.lex_state = 0}, + [1594] = {.lex_state = 13}, + [1595] = {.lex_state = 16}, + [1596] = {.lex_state = 13}, [1597] = {.lex_state = 0}, - [1598] = {.lex_state = 14}, - [1599] = {.lex_state = 13}, + [1598] = {.lex_state = 0}, + [1599] = {.lex_state = 178}, [1600] = {.lex_state = 13}, - [1601] = {.lex_state = 13}, - [1602] = {.lex_state = 0}, + [1601] = {.lex_state = 12}, + [1602] = {.lex_state = 13}, [1603] = {.lex_state = 0}, - [1604] = {.lex_state = 179}, - [1605] = {.lex_state = 13}, - [1606] = {.lex_state = 179}, - [1607] = {.lex_state = 13}, - [1608] = {.lex_state = 13}, - [1609] = {.lex_state = 13}, - [1610] = {.lex_state = 13}, - [1611] = {.lex_state = 13}, - [1612] = {.lex_state = 13}, - [1613] = {.lex_state = 13}, + [1604] = {.lex_state = 13}, + [1605] = {.lex_state = 178}, + [1606] = {.lex_state = 0}, + [1607] = {.lex_state = 0}, + [1608] = {.lex_state = 0}, + [1609] = {.lex_state = 0}, + [1610] = {.lex_state = 0}, + [1611] = {.lex_state = 0}, + [1612] = {.lex_state = 178}, + [1613] = {.lex_state = 0}, [1614] = {.lex_state = 13}, [1615] = {.lex_state = 0}, - [1616] = {.lex_state = 0}, - [1617] = {.lex_state = 0}, + [1616] = {.lex_state = 13}, + [1617] = {.lex_state = 178}, [1618] = {.lex_state = 0}, - [1619] = {.lex_state = 0}, - [1620] = {.lex_state = 3}, - [1621] = {.lex_state = 179}, - [1622] = {.lex_state = 13}, + [1619] = {.lex_state = 13}, + [1620] = {.lex_state = 13}, + [1621] = {.lex_state = 178}, + [1622] = {.lex_state = 0}, [1623] = {.lex_state = 0}, - [1624] = {.lex_state = 14}, - [1625] = {.lex_state = 14}, - [1626] = {.lex_state = 3}, - [1627] = {.lex_state = 0}, - [1628] = {.lex_state = 179}, - [1629] = {.lex_state = 179}, + [1624] = {.lex_state = 0}, + [1625] = {.lex_state = 178}, + [1626] = {.lex_state = 13}, + [1627] = {.lex_state = 13}, + [1628] = {.lex_state = 0}, + [1629] = {.lex_state = 178}, [1630] = {.lex_state = 0}, - [1631] = {.lex_state = 179}, + [1631] = {.lex_state = 0}, [1632] = {.lex_state = 0}, - [1633] = {.lex_state = 4}, - [1634] = {.lex_state = 0}, + [1633] = {.lex_state = 0}, + [1634] = {.lex_state = 178}, [1635] = {.lex_state = 0}, - [1636] = {.lex_state = 0}, - [1637] = {.lex_state = 0}, + [1636] = {.lex_state = 178}, + [1637] = {.lex_state = 178}, [1638] = {.lex_state = 0}, - [1639] = {.lex_state = 13}, - [1640] = {.lex_state = 13}, + [1639] = {.lex_state = 0}, + [1640] = {.lex_state = 0}, [1641] = {.lex_state = 0}, - [1642] = {.lex_state = 13}, - [1643] = {.lex_state = 13}, - [1644] = {.lex_state = 13}, - [1645] = {.lex_state = 4}, - [1646] = {.lex_state = 179}, - [1647] = {.lex_state = 14}, + [1642] = {.lex_state = 0}, + [1643] = {.lex_state = 0}, + [1644] = {.lex_state = 178}, + [1645] = {.lex_state = 0}, + [1646] = {.lex_state = 0}, + [1647] = {.lex_state = 0}, [1648] = {.lex_state = 0}, [1649] = {.lex_state = 0}, [1650] = {.lex_state = 13}, - [1651] = {.lex_state = 0}, - [1652] = {.lex_state = 14}, + [1651] = {.lex_state = 13}, + [1652] = {.lex_state = 0}, [1653] = {.lex_state = 0}, - [1654] = {.lex_state = 3}, + [1654] = {.lex_state = 178}, [1655] = {.lex_state = 0}, [1656] = {.lex_state = 0}, - [1657] = {.lex_state = 179}, - [1658] = {.lex_state = 3}, + [1657] = {.lex_state = 178}, + [1658] = {.lex_state = 0}, [1659] = {.lex_state = 0}, - [1660] = {.lex_state = 13}, - [1661] = {.lex_state = 179}, + [1660] = {.lex_state = 0}, + [1661] = {.lex_state = 0}, [1662] = {.lex_state = 0}, [1663] = {.lex_state = 0}, [1664] = {.lex_state = 0}, - [1665] = {.lex_state = 0}, + [1665] = {.lex_state = 178}, [1666] = {.lex_state = 0}, [1667] = {.lex_state = 0}, - [1668] = {.lex_state = 1}, + [1668] = {.lex_state = 178}, [1669] = {.lex_state = 0}, [1670] = {.lex_state = 0}, [1671] = {.lex_state = 0}, - [1672] = {.lex_state = 0}, + [1672] = {.lex_state = 178}, [1673] = {.lex_state = 0}, - [1674] = {.lex_state = 13}, + [1674] = {.lex_state = 0}, [1675] = {.lex_state = 0}, - [1676] = {.lex_state = 179}, + [1676] = {.lex_state = 0}, [1677] = {.lex_state = 0}, - [1678] = {.lex_state = 179}, - [1679] = {.lex_state = 4}, - [1680] = {.lex_state = 179}, - [1681] = {.lex_state = 179}, + [1678] = {.lex_state = 13}, + [1679] = {.lex_state = 0}, + [1680] = {.lex_state = 178}, + [1681] = {.lex_state = 0}, [1682] = {.lex_state = 0}, [1683] = {.lex_state = 0}, - [1684] = {.lex_state = 179}, - [1685] = {.lex_state = 0}, + [1684] = {.lex_state = 0}, + [1685] = {.lex_state = 178}, [1686] = {.lex_state = 0}, - [1687] = {.lex_state = 0}, - [1688] = {.lex_state = 12}, + [1687] = {.lex_state = 178}, + [1688] = {.lex_state = 0}, [1689] = {.lex_state = 0}, [1690] = {.lex_state = 0}, - [1691] = {.lex_state = 0}, - [1692] = {.lex_state = 0}, - [1693] = {.lex_state = 179}, + [1691] = {.lex_state = 178}, + [1692] = {.lex_state = 178}, + [1693] = {.lex_state = 0}, [1694] = {.lex_state = 0}, [1695] = {.lex_state = 0}, [1696] = {.lex_state = 0}, [1697] = {.lex_state = 0}, [1698] = {.lex_state = 0}, - [1699] = {.lex_state = 179}, - [1700] = {.lex_state = 179}, + [1699] = {.lex_state = 13}, + [1700] = {.lex_state = 13}, [1701] = {.lex_state = 0}, [1702] = {.lex_state = 0}, - [1703] = {.lex_state = 0}, - [1704] = {.lex_state = 0}, - [1705] = {.lex_state = 0}, - [1706] = {.lex_state = 179}, + [1703] = {.lex_state = 178}, + [1704] = {.lex_state = 178}, + [1705] = {.lex_state = 178}, + [1706] = {.lex_state = 0}, [1707] = {.lex_state = 0}, [1708] = {.lex_state = 0}, [1709] = {.lex_state = 0}, @@ -12534,9 +12311,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1712] = {.lex_state = 0}, [1713] = {.lex_state = 0}, [1714] = {.lex_state = 0}, - [1715] = {.lex_state = 0}, + [1715] = {.lex_state = 178}, [1716] = {.lex_state = 0}, - [1717] = {.lex_state = 179}, + [1717] = {.lex_state = 0}, [1718] = {.lex_state = 0}, [1719] = {.lex_state = 0}, [1720] = {.lex_state = 0}, @@ -12545,73 +12322,73 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1723] = {.lex_state = 0}, [1724] = {.lex_state = 0}, [1725] = {.lex_state = 0}, - [1726] = {.lex_state = 13}, - [1727] = {.lex_state = 13}, + [1726] = {.lex_state = 0}, + [1727] = {.lex_state = 0}, [1728] = {.lex_state = 0}, - [1729] = {.lex_state = 0}, + [1729] = {.lex_state = 178}, [1730] = {.lex_state = 0}, [1731] = {.lex_state = 0}, - [1732] = {.lex_state = 179}, - [1733] = {.lex_state = 12}, + [1732] = {.lex_state = 0}, + [1733] = {.lex_state = 0}, [1734] = {.lex_state = 0}, - [1735] = {.lex_state = 0}, + [1735] = {.lex_state = 178}, [1736] = {.lex_state = 0}, [1737] = {.lex_state = 0}, [1738] = {.lex_state = 0}, - [1739] = {.lex_state = 14}, - [1740] = {.lex_state = 0}, + [1739] = {.lex_state = 0}, + [1740] = {.lex_state = 3}, [1741] = {.lex_state = 0}, [1742] = {.lex_state = 0}, [1743] = {.lex_state = 0}, [1744] = {.lex_state = 0}, [1745] = {.lex_state = 0}, - [1746] = {.lex_state = 179}, + [1746] = {.lex_state = 0}, [1747] = {.lex_state = 0}, [1748] = {.lex_state = 0}, [1749] = {.lex_state = 0}, - [1750] = {.lex_state = 0}, + [1750] = {.lex_state = 13}, [1751] = {.lex_state = 0}, [1752] = {.lex_state = 0}, [1753] = {.lex_state = 0}, - [1754] = {.lex_state = 179}, + [1754] = {.lex_state = 0}, [1755] = {.lex_state = 0}, - [1756] = {.lex_state = 179}, + [1756] = {.lex_state = 0}, [1757] = {.lex_state = 0}, [1758] = {.lex_state = 0}, - [1759] = {.lex_state = 0}, + [1759] = {.lex_state = 178}, [1760] = {.lex_state = 0}, - [1761] = {.lex_state = 14}, + [1761] = {.lex_state = 0}, [1762] = {.lex_state = 0}, [1763] = {.lex_state = 0}, [1764] = {.lex_state = 0}, [1765] = {.lex_state = 0}, [1766] = {.lex_state = 0}, - [1767] = {.lex_state = 13}, - [1768] = {.lex_state = 13}, - [1769] = {.lex_state = 15}, + [1767] = {.lex_state = 0}, + [1768] = {.lex_state = 0}, + [1769] = {.lex_state = 0}, [1770] = {.lex_state = 0}, - [1771] = {.lex_state = 14}, + [1771] = {.lex_state = 0}, [1772] = {.lex_state = 0}, [1773] = {.lex_state = 0}, - [1774] = {.lex_state = 0}, + [1774] = {.lex_state = 178}, [1775] = {.lex_state = 0}, [1776] = {.lex_state = 0}, [1777] = {.lex_state = 0}, [1778] = {.lex_state = 0}, - [1779] = {.lex_state = 15}, + [1779] = {.lex_state = 0}, [1780] = {.lex_state = 0}, [1781] = {.lex_state = 0}, [1782] = {.lex_state = 0}, [1783] = {.lex_state = 0}, - [1784] = {.lex_state = 179}, + [1784] = {.lex_state = 0}, [1785] = {.lex_state = 0}, [1786] = {.lex_state = 0}, [1787] = {.lex_state = 0}, [1788] = {.lex_state = 0}, - [1789] = {.lex_state = 179}, - [1790] = {.lex_state = 13}, - [1791] = {.lex_state = 0}, - [1792] = {.lex_state = 179}, + [1789] = {.lex_state = 0}, + [1790] = {.lex_state = 0}, + [1791] = {.lex_state = 178}, + [1792] = {.lex_state = 178}, [1793] = {.lex_state = 0}, [1794] = {.lex_state = 0}, [1795] = {.lex_state = 0}, @@ -12621,16 +12398,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1799] = {.lex_state = 0}, [1800] = {.lex_state = 0}, [1801] = {.lex_state = 0}, - [1802] = {.lex_state = 179}, - [1803] = {.lex_state = 13}, - [1804] = {.lex_state = 13}, + [1802] = {.lex_state = 0}, + [1803] = {.lex_state = 0}, + [1804] = {.lex_state = 0}, [1805] = {.lex_state = 0}, - [1806] = {.lex_state = 179}, + [1806] = {.lex_state = 0}, [1807] = {.lex_state = 0}, [1808] = {.lex_state = 0}, [1809] = {.lex_state = 0}, [1810] = {.lex_state = 0}, - [1811] = {.lex_state = 1}, + [1811] = {.lex_state = 0}, [1812] = {.lex_state = 0}, [1813] = {.lex_state = 0}, [1814] = {.lex_state = 0}, @@ -12640,7 +12417,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1818] = {.lex_state = 0}, [1819] = {.lex_state = 0}, [1820] = {.lex_state = 0}, - [1821] = {.lex_state = 0}, + [1821] = {.lex_state = 13}, [1822] = {.lex_state = 0}, [1823] = {.lex_state = 0}, [1824] = {.lex_state = 0}, @@ -12648,25 +12425,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1826] = {.lex_state = 0}, [1827] = {.lex_state = 0}, [1828] = {.lex_state = 0}, - [1829] = {.lex_state = 179}, - [1830] = {.lex_state = 179}, + [1829] = {.lex_state = 0}, + [1830] = {.lex_state = 0}, [1831] = {.lex_state = 0}, [1832] = {.lex_state = 0}, [1833] = {.lex_state = 0}, [1834] = {.lex_state = 0}, [1835] = {.lex_state = 0}, - [1836] = {.lex_state = 13}, - [1837] = {.lex_state = 179}, - [1838] = {.lex_state = 0}, - [1839] = {.lex_state = 13}, - [1840] = {.lex_state = 179}, - [1841] = {.lex_state = 13}, - [1842] = {.lex_state = 13}, - [1843] = {.lex_state = 179}, + [1836] = {.lex_state = 0}, + [1837] = {.lex_state = 0}, + [1838] = {.lex_state = 2}, + [1839] = {.lex_state = 12}, + [1840] = {.lex_state = 0}, + [1841] = {.lex_state = 0}, + [1842] = {.lex_state = 0}, + [1843] = {.lex_state = 0}, [1844] = {.lex_state = 0}, - [1845] = {.lex_state = 0}, - [1846] = {.lex_state = 14}, - [1847] = {.lex_state = 0}, + [1845] = {.lex_state = 3}, + [1846] = {.lex_state = 178}, + [1847] = {.lex_state = 178}, [1848] = {.lex_state = 0}, [1849] = {.lex_state = 0}, [1850] = {.lex_state = 0}, @@ -12676,35 +12453,35 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1854] = {.lex_state = 0}, [1855] = {.lex_state = 0}, [1856] = {.lex_state = 0}, - [1857] = {.lex_state = 0}, - [1858] = {.lex_state = 179}, + [1857] = {.lex_state = 13}, + [1858] = {.lex_state = 13}, [1859] = {.lex_state = 0}, [1860] = {.lex_state = 13}, [1861] = {.lex_state = 0}, [1862] = {.lex_state = 0}, - [1863] = {.lex_state = 179}, + [1863] = {.lex_state = 0}, [1864] = {.lex_state = 0}, [1865] = {.lex_state = 0}, [1866] = {.lex_state = 0}, [1867] = {.lex_state = 0}, [1868] = {.lex_state = 0}, - [1869] = {.lex_state = 0}, - [1870] = {.lex_state = 179}, + [1869] = {.lex_state = 178}, + [1870] = {.lex_state = 0}, [1871] = {.lex_state = 0}, [1872] = {.lex_state = 0}, [1873] = {.lex_state = 0}, - [1874] = {.lex_state = 179}, + [1874] = {.lex_state = 0}, [1875] = {.lex_state = 0}, - [1876] = {.lex_state = 179}, - [1877] = {.lex_state = 179}, + [1876] = {.lex_state = 0}, + [1877] = {.lex_state = 0}, [1878] = {.lex_state = 0}, - [1879] = {.lex_state = 13}, + [1879] = {.lex_state = 0}, [1880] = {.lex_state = 0}, - [1881] = {.lex_state = 13}, + [1881] = {.lex_state = 178}, [1882] = {.lex_state = 0}, - [1883] = {.lex_state = 179}, + [1883] = {.lex_state = 0}, [1884] = {.lex_state = 0}, - [1885] = {.lex_state = 179}, + [1885] = {.lex_state = 0}, [1886] = {.lex_state = 0}, [1887] = {.lex_state = 0}, [1888] = {.lex_state = 0}, @@ -12717,8 +12494,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1895] = {.lex_state = 0}, [1896] = {.lex_state = 0}, [1897] = {.lex_state = 0}, - [1898] = {.lex_state = 0}, - [1899] = {.lex_state = 0}, + [1898] = {.lex_state = 178}, + [1899] = {.lex_state = 178}, [1900] = {.lex_state = 0}, [1901] = {.lex_state = 0}, [1902] = {.lex_state = 0}, @@ -12727,10 +12504,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1905] = {.lex_state = 0}, [1906] = {.lex_state = 0}, [1907] = {.lex_state = 0}, - [1908] = {.lex_state = 0}, + [1908] = {.lex_state = 178}, [1909] = {.lex_state = 0}, - [1910] = {.lex_state = 179}, - [1911] = {.lex_state = 0}, + [1910] = {.lex_state = 0}, + [1911] = {.lex_state = 14}, [1912] = {.lex_state = 0}, [1913] = {.lex_state = 0}, [1914] = {.lex_state = 0}, @@ -12748,36 +12525,36 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1926] = {.lex_state = 0}, [1927] = {.lex_state = 0}, [1928] = {.lex_state = 0}, - [1929] = {.lex_state = 0}, - [1930] = {.lex_state = 0}, + [1929] = {.lex_state = 178}, + [1930] = {.lex_state = 14}, [1931] = {.lex_state = 0}, [1932] = {.lex_state = 0}, [1933] = {.lex_state = 0}, - [1934] = {.lex_state = 13}, + [1934] = {.lex_state = 0}, [1935] = {.lex_state = 0}, [1936] = {.lex_state = 0}, [1937] = {.lex_state = 0}, [1938] = {.lex_state = 0}, [1939] = {.lex_state = 0}, [1940] = {.lex_state = 0}, - [1941] = {.lex_state = 0}, - [1942] = {.lex_state = 0}, + [1941] = {.lex_state = 178}, + [1942] = {.lex_state = 201}, [1943] = {.lex_state = 0}, [1944] = {.lex_state = 0}, [1945] = {.lex_state = 0}, - [1946] = {.lex_state = 0}, - [1947] = {.lex_state = 13}, + [1946] = {.lex_state = 178}, + [1947] = {.lex_state = 0}, [1948] = {.lex_state = 0}, - [1949] = {.lex_state = 13}, + [1949] = {.lex_state = 0}, [1950] = {.lex_state = 0}, [1951] = {.lex_state = 0}, [1952] = {.lex_state = 0}, [1953] = {.lex_state = 0}, [1954] = {.lex_state = 0}, - [1955] = {.lex_state = 4}, - [1956] = {.lex_state = 179}, + [1955] = {.lex_state = 0}, + [1956] = {.lex_state = 0}, [1957] = {.lex_state = 0}, - [1958] = {.lex_state = 13}, + [1958] = {.lex_state = 0}, [1959] = {.lex_state = 0}, [1960] = {.lex_state = 0}, [1961] = {.lex_state = 0}, @@ -12787,70 +12564,70 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1965] = {.lex_state = 0}, [1966] = {.lex_state = 0}, [1967] = {.lex_state = 0}, - [1968] = {.lex_state = 0}, + [1968] = {.lex_state = 13}, [1969] = {.lex_state = 0}, [1970] = {.lex_state = 0}, - [1971] = {.lex_state = 0}, + [1971] = {.lex_state = 14}, [1972] = {.lex_state = 0}, - [1973] = {.lex_state = 179}, + [1973] = {.lex_state = 0}, [1974] = {.lex_state = 0}, [1975] = {.lex_state = 0}, [1976] = {.lex_state = 0}, - [1977] = {.lex_state = 179}, + [1977] = {.lex_state = 0}, [1978] = {.lex_state = 0}, [1979] = {.lex_state = 0}, [1980] = {.lex_state = 0}, [1981] = {.lex_state = 0}, - [1982] = {.lex_state = 0}, + [1982] = {.lex_state = 178}, [1983] = {.lex_state = 0}, [1984] = {.lex_state = 0}, [1985] = {.lex_state = 0}, [1986] = {.lex_state = 0}, - [1987] = {.lex_state = 0}, + [1987] = {.lex_state = 13}, [1988] = {.lex_state = 0}, [1989] = {.lex_state = 0}, [1990] = {.lex_state = 0}, - [1991] = {.lex_state = 179}, + [1991] = {.lex_state = 0}, [1992] = {.lex_state = 0}, [1993] = {.lex_state = 0}, [1994] = {.lex_state = 0}, [1995] = {.lex_state = 0}, - [1996] = {.lex_state = 13}, + [1996] = {.lex_state = 0}, [1997] = {.lex_state = 0}, [1998] = {.lex_state = 0}, - [1999] = {.lex_state = 0}, + [1999] = {.lex_state = 178}, [2000] = {.lex_state = 0}, [2001] = {.lex_state = 0}, - [2002] = {.lex_state = 4}, + [2002] = {.lex_state = 0}, [2003] = {.lex_state = 0}, [2004] = {.lex_state = 0}, - [2005] = {.lex_state = 0}, - [2006] = {.lex_state = 0}, - [2007] = {.lex_state = 179}, + [2005] = {.lex_state = 178}, + [2006] = {.lex_state = 178}, + [2007] = {.lex_state = 14}, [2008] = {.lex_state = 0}, - [2009] = {.lex_state = 179}, + [2009] = {.lex_state = 0}, [2010] = {.lex_state = 0}, - [2011] = {.lex_state = 0}, + [2011] = {.lex_state = 178}, [2012] = {.lex_state = 0}, [2013] = {.lex_state = 0}, - [2014] = {.lex_state = 0}, + [2014] = {.lex_state = 14}, [2015] = {.lex_state = 0}, [2016] = {.lex_state = 0}, [2017] = {.lex_state = 0}, - [2018] = {.lex_state = 0}, - [2019] = {.lex_state = 12}, + [2018] = {.lex_state = 178}, + [2019] = {.lex_state = 178}, [2020] = {.lex_state = 0}, [2021] = {.lex_state = 0}, [2022] = {.lex_state = 0}, - [2023] = {.lex_state = 0}, + [2023] = {.lex_state = 178}, [2024] = {.lex_state = 0}, [2025] = {.lex_state = 0}, [2026] = {.lex_state = 0}, [2027] = {.lex_state = 0}, - [2028] = {.lex_state = 179}, - [2029] = {.lex_state = 0}, - [2030] = {.lex_state = 13}, - [2031] = {.lex_state = 179}, + [2028] = {.lex_state = 0}, + [2029] = {.lex_state = 178}, + [2030] = {.lex_state = 0}, + [2031] = {.lex_state = 178}, [2032] = {.lex_state = 0}, [2033] = {.lex_state = 0}, [2034] = {.lex_state = 0}, @@ -12858,16 +12635,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2036] = {.lex_state = 0}, [2037] = {.lex_state = 0}, [2038] = {.lex_state = 0}, - [2039] = {.lex_state = 0}, - [2040] = {.lex_state = 2}, + [2039] = {.lex_state = 14}, + [2040] = {.lex_state = 178}, [2041] = {.lex_state = 0}, [2042] = {.lex_state = 0}, - [2043] = {.lex_state = 0}, - [2044] = {.lex_state = 0}, - [2045] = {.lex_state = 0}, + [2043] = {.lex_state = 13}, + [2044] = {.lex_state = 178}, + [2045] = {.lex_state = 178}, [2046] = {.lex_state = 0}, [2047] = {.lex_state = 0}, - [2048] = {.lex_state = 179}, + [2048] = {.lex_state = 0}, [2049] = {.lex_state = 0}, [2050] = {.lex_state = 0}, [2051] = {.lex_state = 0}, @@ -12886,27 +12663,27 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2064] = {.lex_state = 13}, [2065] = {.lex_state = 0}, [2066] = {.lex_state = 0}, - [2067] = {.lex_state = 179}, - [2068] = {.lex_state = 13}, + [2067] = {.lex_state = 0}, + [2068] = {.lex_state = 0}, [2069] = {.lex_state = 0}, [2070] = {.lex_state = 0}, [2071] = {.lex_state = 0}, [2072] = {.lex_state = 0}, - [2073] = {.lex_state = 13}, + [2073] = {.lex_state = 0}, [2074] = {.lex_state = 0}, [2075] = {.lex_state = 0}, - [2076] = {.lex_state = 179}, + [2076] = {.lex_state = 0}, [2077] = {.lex_state = 0}, [2078] = {.lex_state = 0}, [2079] = {.lex_state = 0}, - [2080] = {.lex_state = 0}, - [2081] = {.lex_state = 179}, + [2080] = {.lex_state = 13}, + [2081] = {.lex_state = 0}, [2082] = {.lex_state = 0}, [2083] = {.lex_state = 0}, [2084] = {.lex_state = 0}, [2085] = {.lex_state = 0}, - [2086] = {.lex_state = 0}, - [2087] = {.lex_state = 3}, + [2086] = {.lex_state = 13}, + [2087] = {.lex_state = 0}, [2088] = {.lex_state = 0}, [2089] = {.lex_state = 0}, [2090] = {.lex_state = 0}, @@ -12918,48 +12695,48 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2096] = {.lex_state = 0}, [2097] = {.lex_state = 0}, [2098] = {.lex_state = 0}, - [2099] = {.lex_state = 179}, + [2099] = {.lex_state = 0}, [2100] = {.lex_state = 0}, [2101] = {.lex_state = 0}, [2102] = {.lex_state = 0}, [2103] = {.lex_state = 0}, [2104] = {.lex_state = 0}, - [2105] = {.lex_state = 0}, - [2106] = {.lex_state = 202}, - [2107] = {.lex_state = 179}, - [2108] = {.lex_state = 0}, - [2109] = {.lex_state = 0}, + [2105] = {.lex_state = 178}, + [2106] = {.lex_state = 0}, + [2107] = {.lex_state = 0}, + [2108] = {.lex_state = 14}, + [2109] = {.lex_state = 178}, [2110] = {.lex_state = 0}, - [2111] = {.lex_state = 0}, + [2111] = {.lex_state = 13}, [2112] = {.lex_state = 0}, [2113] = {.lex_state = 0}, [2114] = {.lex_state = 0}, [2115] = {.lex_state = 0}, - [2116] = {.lex_state = 179}, + [2116] = {.lex_state = 0}, [2117] = {.lex_state = 0}, [2118] = {.lex_state = 0}, - [2119] = {.lex_state = 179}, + [2119] = {.lex_state = 178}, [2120] = {.lex_state = 0}, [2121] = {.lex_state = 0}, [2122] = {.lex_state = 0}, [2123] = {.lex_state = 0}, - [2124] = {.lex_state = 179}, - [2125] = {.lex_state = 13}, + [2124] = {.lex_state = 0}, + [2125] = {.lex_state = 0}, [2126] = {.lex_state = 0}, [2127] = {.lex_state = 0}, [2128] = {.lex_state = 0}, [2129] = {.lex_state = 0}, [2130] = {.lex_state = 0}, - [2131] = {.lex_state = 0}, - [2132] = {.lex_state = 0}, + [2131] = {.lex_state = 14}, + [2132] = {.lex_state = 178}, [2133] = {.lex_state = 0}, - [2134] = {.lex_state = 14}, - [2135] = {.lex_state = 179}, + [2134] = {.lex_state = 0}, + [2135] = {.lex_state = 0}, [2136] = {.lex_state = 0}, [2137] = {.lex_state = 0}, [2138] = {.lex_state = 0}, [2139] = {.lex_state = 0}, - [2140] = {.lex_state = 179}, + [2140] = {.lex_state = 13}, [2141] = {.lex_state = 0}, [2142] = {.lex_state = 0}, [2143] = {.lex_state = 0}, @@ -12968,18 +12745,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2146] = {.lex_state = 0}, [2147] = {.lex_state = 0}, [2148] = {.lex_state = 0}, - [2149] = {.lex_state = 0}, - [2150] = {.lex_state = 0}, + [2149] = {.lex_state = 178}, + [2150] = {.lex_state = 178}, [2151] = {.lex_state = 0}, [2152] = {.lex_state = 0}, [2153] = {.lex_state = 0}, [2154] = {.lex_state = 0}, - [2155] = {.lex_state = 0}, + [2155] = {.lex_state = 178}, [2156] = {.lex_state = 0}, [2157] = {.lex_state = 0}, [2158] = {.lex_state = 0}, - [2159] = {.lex_state = 13}, - [2160] = {.lex_state = 13}, + [2159] = {.lex_state = 0}, + [2160] = {.lex_state = 0}, [2161] = {.lex_state = 0}, [2162] = {.lex_state = 0}, [2163] = {.lex_state = 0}, @@ -12988,20 +12765,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2166] = {.lex_state = 0}, [2167] = {.lex_state = 0}, [2168] = {.lex_state = 0}, - [2169] = {.lex_state = 0}, + [2169] = {.lex_state = 13}, [2170] = {.lex_state = 0}, [2171] = {.lex_state = 0}, - [2172] = {.lex_state = 13}, + [2172] = {.lex_state = 0}, [2173] = {.lex_state = 0}, [2174] = {.lex_state = 0}, - [2175] = {.lex_state = 13}, - [2176] = {.lex_state = 179}, + [2175] = {.lex_state = 0}, + [2176] = {.lex_state = 0}, [2177] = {.lex_state = 0}, - [2178] = {.lex_state = 179}, + [2178] = {.lex_state = 0}, [2179] = {.lex_state = 0}, [2180] = {.lex_state = 0}, [2181] = {.lex_state = 0}, - [2182] = {.lex_state = 0}, + [2182] = {.lex_state = 178}, [2183] = {.lex_state = 0}, [2184] = {.lex_state = 0}, [2185] = {.lex_state = 0}, @@ -13016,189 +12793,38 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2194] = {.lex_state = 0}, [2195] = {.lex_state = 0}, [2196] = {.lex_state = 0}, - [2197] = {.lex_state = 179}, - [2198] = {.lex_state = 179}, + [2197] = {.lex_state = 0}, + [2198] = {.lex_state = 13}, [2199] = {.lex_state = 0}, - [2200] = {.lex_state = 179}, + [2200] = {.lex_state = 0}, [2201] = {.lex_state = 0}, [2202] = {.lex_state = 0}, [2203] = {.lex_state = 0}, - [2204] = {.lex_state = 179}, + [2204] = {.lex_state = 0}, [2205] = {.lex_state = 0}, [2206] = {.lex_state = 0}, - [2207] = {.lex_state = 179}, - [2208] = {.lex_state = 0}, + [2207] = {.lex_state = 0}, + [2208] = {.lex_state = 13}, [2209] = {.lex_state = 0}, [2210] = {.lex_state = 0}, - [2211] = {.lex_state = 0}, - [2212] = {.lex_state = 14}, + [2211] = {.lex_state = 178}, + [2212] = {.lex_state = 0}, [2213] = {.lex_state = 0}, - [2214] = {.lex_state = 179}, - [2215] = {.lex_state = 179}, + [2214] = {.lex_state = 0}, + [2215] = {.lex_state = 13}, [2216] = {.lex_state = 0}, [2217] = {.lex_state = 0}, - [2218] = {.lex_state = 13}, - [2219] = {.lex_state = 179}, + [2218] = {.lex_state = 0}, + [2219] = {.lex_state = 0}, [2220] = {.lex_state = 0}, - [2221] = {.lex_state = 0}, + [2221] = {.lex_state = 0, .external_lex_state = 3}, [2222] = {.lex_state = 0}, - [2223] = {.lex_state = 0}, + [2223] = {.lex_state = 0, .external_lex_state = 4}, [2224] = {.lex_state = 0}, [2225] = {.lex_state = 0}, - [2226] = {.lex_state = 13}, - [2227] = {.lex_state = 0}, - [2228] = {.lex_state = 0}, - [2229] = {.lex_state = 0}, - [2230] = {.lex_state = 0}, - [2231] = {.lex_state = 179}, - [2232] = {.lex_state = 0}, - [2233] = {.lex_state = 0}, - [2234] = {.lex_state = 0}, - [2235] = {.lex_state = 0}, - [2236] = {.lex_state = 0}, - [2237] = {.lex_state = 13}, - [2238] = {.lex_state = 0}, - [2239] = {.lex_state = 0}, - [2240] = {.lex_state = 0}, - [2241] = {.lex_state = 0}, - [2242] = {.lex_state = 0}, - [2243] = {.lex_state = 0}, - [2244] = {.lex_state = 0}, - [2245] = {.lex_state = 0}, - [2246] = {.lex_state = 0}, - [2247] = {.lex_state = 0}, - [2248] = {.lex_state = 0}, - [2249] = {.lex_state = 0}, - [2250] = {.lex_state = 0}, - [2251] = {.lex_state = 0}, - [2252] = {.lex_state = 0}, - [2253] = {.lex_state = 0}, - [2254] = {.lex_state = 0}, - [2255] = {.lex_state = 13}, - [2256] = {.lex_state = 0}, - [2257] = {.lex_state = 179}, - [2258] = {.lex_state = 0}, - [2259] = {.lex_state = 0}, - [2260] = {.lex_state = 179}, - [2261] = {.lex_state = 0}, - [2262] = {.lex_state = 0}, - [2263] = {.lex_state = 0}, - [2264] = {.lex_state = 0}, - [2265] = {.lex_state = 0}, - [2266] = {.lex_state = 0}, - [2267] = {.lex_state = 0}, - [2268] = {.lex_state = 0}, - [2269] = {.lex_state = 0}, - [2270] = {.lex_state = 0}, - [2271] = {.lex_state = 0}, - [2272] = {.lex_state = 0}, - [2273] = {.lex_state = 0}, - [2274] = {.lex_state = 0}, - [2275] = {.lex_state = 0}, - [2276] = {.lex_state = 0}, - [2277] = {.lex_state = 0}, - [2278] = {.lex_state = 0}, - [2279] = {.lex_state = 0}, - [2280] = {.lex_state = 0}, - [2281] = {.lex_state = 15}, - [2282] = {.lex_state = 15}, - [2283] = {.lex_state = 0}, - [2284] = {.lex_state = 13}, - [2285] = {.lex_state = 0}, - [2286] = {.lex_state = 0}, - [2287] = {.lex_state = 0}, - [2288] = {.lex_state = 0}, - [2289] = {.lex_state = 0}, - [2290] = {.lex_state = 0}, - [2291] = {.lex_state = 0}, - [2292] = {.lex_state = 0}, - [2293] = {.lex_state = 0}, - [2294] = {.lex_state = 179}, - [2295] = {.lex_state = 0}, - [2296] = {.lex_state = 0}, - [2297] = {.lex_state = 0}, - [2298] = {.lex_state = 0}, - [2299] = {.lex_state = 0}, - [2300] = {.lex_state = 0}, - [2301] = {.lex_state = 0}, - [2302] = {.lex_state = 0}, - [2303] = {.lex_state = 0}, - [2304] = {.lex_state = 0}, - [2305] = {.lex_state = 179}, - [2306] = {.lex_state = 0}, - [2307] = {.lex_state = 0}, - [2308] = {.lex_state = 0}, - [2309] = {.lex_state = 0}, - [2310] = {.lex_state = 0}, - [2311] = {.lex_state = 0}, - [2312] = {.lex_state = 0}, - [2313] = {.lex_state = 13}, - [2314] = {.lex_state = 0}, - [2315] = {.lex_state = 13}, - [2316] = {.lex_state = 0}, - [2317] = {.lex_state = 0}, - [2318] = {.lex_state = 0}, - [2319] = {.lex_state = 0}, - [2320] = {.lex_state = 0}, - [2321] = {.lex_state = 179}, - [2322] = {.lex_state = 179}, - [2323] = {.lex_state = 0}, - [2324] = {.lex_state = 0}, - [2325] = {.lex_state = 0}, - [2326] = {.lex_state = 0}, - [2327] = {.lex_state = 0}, - [2328] = {.lex_state = 179}, - [2329] = {.lex_state = 0}, - [2330] = {.lex_state = 0}, - [2331] = {.lex_state = 0}, - [2332] = {.lex_state = 0}, - [2333] = {.lex_state = 0}, - [2334] = {.lex_state = 0}, - [2335] = {.lex_state = 0}, - [2336] = {.lex_state = 179}, - [2337] = {.lex_state = 0}, - [2338] = {.lex_state = 0}, - [2339] = {.lex_state = 0}, - [2340] = {.lex_state = 0}, - [2341] = {.lex_state = 0}, - [2342] = {.lex_state = 13}, - [2343] = {.lex_state = 0}, - [2344] = {.lex_state = 0}, - [2345] = {.lex_state = 0}, - [2346] = {.lex_state = 0}, - [2347] = {.lex_state = 0}, - [2348] = {.lex_state = 0}, - [2349] = {.lex_state = 0}, - [2350] = {.lex_state = 0}, - [2351] = {.lex_state = 0}, - [2352] = {.lex_state = 0}, - [2353] = {.lex_state = 0}, - [2354] = {.lex_state = 0}, - [2355] = {.lex_state = 0}, - [2356] = {.lex_state = 0}, - [2357] = {.lex_state = 0}, - [2358] = {.lex_state = 0}, - [2359] = {.lex_state = 0}, - [2360] = {.lex_state = 0}, - [2361] = {.lex_state = 0}, - [2362] = {.lex_state = 0}, - [2363] = {.lex_state = 0}, - [2364] = {.lex_state = 0}, - [2365] = {.lex_state = 0}, - [2366] = {.lex_state = 179}, - [2367] = {.lex_state = 0}, - [2368] = {.lex_state = 0}, - [2369] = {.lex_state = 0}, - [2370] = {.lex_state = 0}, - [2371] = {.lex_state = 0, .external_lex_state = 3}, - [2372] = {.lex_state = 0}, - [2373] = {.lex_state = 0, .external_lex_state = 4}, - [2374] = {.lex_state = 3}, - [2375] = {.lex_state = 0}, - [2376] = {.lex_state = 0}, - [2377] = {(TSStateId)(-1)}, - [2378] = {(TSStateId)(-1)}, - [2379] = {(TSStateId)(-1)}, + [2226] = {(TSStateId)(-1)}, + [2227] = {(TSStateId)(-1)}, + [2228] = {(TSStateId)(-1)}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -13394,38 +13020,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1), }, [1] = { - [sym_source_file] = STATE(2312), + [sym_source_file] = STATE(2147), [sym_line_comment] = STATE(1), [sym_doc_comment] = STATE(1), [sym_block_comment] = STATE(1), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1627), - [sym_global_storage] = STATE(1165), - [sym_module] = STATE(929), - [sym_import_declaration] = STATE(929), - [sym_define_declaration] = STATE(929), - [sym_distinct_declaration] = STATE(929), - [sym_const_declaration] = STATE(929), - [sym_global_declaration] = STATE(929), - [sym__struct_or_union] = STATE(2296), - [sym_struct_declaration] = STATE(929), - [sym_bitstruct_declaration] = STATE(929), - [sym_fault_declaration] = STATE(929), - [sym_enum_declaration] = STATE(929), - [sym_interface_declaration] = STATE(929), - [sym_func_declaration] = STATE(929), - [sym_func_definition] = STATE(929), - [sym_macro_declaration] = STATE(929), - [sym_ct_assert_stmt] = STATE(929), - [sym_ct_include_stmt] = STATE(929), - [sym_ct_exec_stmt] = STATE(929), - [sym_ct_echo_stmt] = STATE(929), - [sym_module_type_ident] = STATE(1008), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1167), - [sym__type_optional] = STATE(2283), - [aux_sym_source_file_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1532), + [sym_global_storage] = STATE(1171), + [sym_module] = STATE(909), + [sym_import_declaration] = STATE(909), + [sym_define_declaration] = STATE(909), + [sym_distinct_declaration] = STATE(909), + [sym_const_declaration] = STATE(909), + [sym_global_declaration] = STATE(909), + [sym__struct_or_union] = STATE(2123), + [sym_struct_declaration] = STATE(909), + [sym_bitstruct_declaration] = STATE(909), + [sym_fault_declaration] = STATE(909), + [sym_enum_declaration] = STATE(909), + [sym_interface_declaration] = STATE(909), + [sym_func_declaration] = STATE(909), + [sym_func_definition] = STATE(909), + [sym_macro_declaration] = STATE(909), + [sym_ct_assert_stmt] = STATE(909), + [sym_ct_include_stmt] = STATE(909), + [sym_ct_exec_stmt] = STATE(909), + [sym_ct_echo_stmt] = STATE(909), + [sym_module_type_ident] = STATE(989), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(2110), + [aux_sym_source_file_repeat1] = STATE(824), [ts_builtin_sym_end] = ACTIONS(9), [sym_ident] = ACTIONS(11), [aux_sym_line_comment_token1] = ACTIONS(3), @@ -13478,3310 +13103,6167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), [anon_sym_DOLLARtypeof] = ACTIONS(57), - [anon_sym_DOLLARtypefrom] = ACTIONS(59), - [anon_sym_DOLLARvatype] = ACTIONS(59), - [anon_sym_DOLLARevaltype] = ACTIONS(59), + [anon_sym_DOLLARtypefrom] = ACTIONS(57), + [anon_sym_DOLLARvatype] = ACTIONS(57), + [anon_sym_DOLLARevaltype] = ACTIONS(57), }, [2] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(2), [sym_doc_comment] = STATE(2), [sym_block_comment] = STATE(2), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1158), - [sym_const_declaration] = STATE(445), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(438), - [sym_expr_stmt] = STATE(438), - [sym_var_decl] = STATE(2324), - [sym_var_stmt] = STATE(438), - [sym_return_stmt] = STATE(438), - [sym_continue_stmt] = STATE(438), - [sym_break_stmt] = STATE(438), - [sym_defer_stmt] = STATE(438), - [sym_assert_stmt] = STATE(438), - [sym_declaration_stmt] = STATE(438), - [sym_case_stmt] = STATE(1835), - [sym_default_stmt] = STATE(1835), - [sym_nextcase_stmt] = STATE(438), - [sym_switch_stmt] = STATE(438), - [sym_if_stmt] = STATE(438), - [sym_for_stmt] = STATE(438), - [sym_foreach_stmt] = STATE(438), - [sym_while_stmt] = STATE(438), - [sym_do_stmt] = STATE(438), - [sym_asm_block_stmt] = STATE(438), - [sym_ct_assert_stmt] = STATE(438), - [sym_ct_echo_stmt] = STATE(438), - [sym_ct_if_stmt] = STATE(438), - [sym__ct_switch] = STATE(1606), - [sym_ct_switch_stmt] = STATE(438), - [sym_ct_for_stmt] = STATE(438), - [sym_ct_foreach_stmt] = STATE(438), - [sym__expr] = STATE(1233), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_param_path_element] = STATE(1455), - [sym_param_path] = STATE(1784), - [sym_arg] = STATE(1783), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1439), - [sym__type_optional] = STATE(1564), - [aux_sym_compound_stmt_repeat1] = STATE(83), - [aux_sym_switch_body_repeat1] = STATE(1505), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [aux_sym_param_path_repeat1] = STATE(1434), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_DOT_DOT_DOT] = ACTIONS(87), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(95), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(101), - [anon_sym_const] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(105), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_case] = ACTIONS(119), - [anon_sym_default] = ACTIONS(121), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_DOLLARvasplat] = ACTIONS(169), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1162), + [sym_const_declaration] = STATE(364), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(396), + [sym_expr_stmt] = STATE(396), + [sym_var_decl] = STATE(2193), + [sym_var_stmt] = STATE(396), + [sym_return_stmt] = STATE(396), + [sym_continue_stmt] = STATE(396), + [sym_break_stmt] = STATE(396), + [sym_defer_stmt] = STATE(396), + [sym_assert_stmt] = STATE(396), + [sym_declaration_stmt] = STATE(396), + [sym_case_stmt] = STATE(1593), + [sym_default_stmt] = STATE(1593), + [sym_nextcase_stmt] = STATE(396), + [sym_switch_stmt] = STATE(396), + [sym_if_stmt] = STATE(396), + [sym_for_stmt] = STATE(396), + [sym_foreach_stmt] = STATE(396), + [sym_while_stmt] = STATE(396), + [sym_do_stmt] = STATE(396), + [sym_asm_block_stmt] = STATE(396), + [sym_ct_assert_stmt] = STATE(396), + [sym_ct_echo_stmt] = STATE(396), + [sym_ct_if_stmt] = STATE(396), + [sym__ct_switch] = STATE(1544), + [sym_ct_switch_stmt] = STATE(396), + [sym_ct_for_stmt] = STATE(396), + [sym_ct_foreach_stmt] = STATE(396), + [sym__expr] = STATE(1048), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_param_path_element] = STATE(1345), + [sym_param_path] = STATE(1419), + [sym_arg] = STATE(1591), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1326), + [aux_sym_compound_stmt_repeat1] = STATE(61), + [aux_sym_switch_body_repeat1] = STATE(1380), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [aux_sym_param_path_repeat1] = STATE(1324), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_DOT_DOT_DOT] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(93), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_RBRACE] = ACTIONS(99), + [anon_sym_const] = ACTIONS(101), + [anon_sym_DOT] = ACTIONS(103), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_case] = ACTIONS(117), + [anon_sym_default] = ACTIONS(119), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_DOLLARvasplat] = ACTIONS(167), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [3] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(3), [sym_doc_comment] = STATE(3), [sym_block_comment] = STATE(3), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1158), - [sym_const_declaration] = STATE(445), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(438), - [sym_expr_stmt] = STATE(438), - [sym_var_decl] = STATE(2324), - [sym_var_stmt] = STATE(438), - [sym_return_stmt] = STATE(438), - [sym_continue_stmt] = STATE(438), - [sym_break_stmt] = STATE(438), - [sym_defer_stmt] = STATE(438), - [sym_assert_stmt] = STATE(438), - [sym_declaration_stmt] = STATE(438), - [sym_case_stmt] = STATE(1835), - [sym_default_stmt] = STATE(1835), - [sym_nextcase_stmt] = STATE(438), - [sym_switch_stmt] = STATE(438), - [sym_if_stmt] = STATE(438), - [sym_for_stmt] = STATE(438), - [sym_foreach_stmt] = STATE(438), - [sym_while_stmt] = STATE(438), - [sym_do_stmt] = STATE(438), - [sym_asm_block_stmt] = STATE(438), - [sym_ct_assert_stmt] = STATE(438), - [sym_ct_echo_stmt] = STATE(438), - [sym_ct_if_stmt] = STATE(438), - [sym__ct_switch] = STATE(1606), - [sym_ct_switch_stmt] = STATE(438), - [sym_ct_for_stmt] = STATE(438), - [sym_ct_foreach_stmt] = STATE(438), - [sym__expr] = STATE(1233), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_param_path_element] = STATE(1455), - [sym_param_path] = STATE(1784), - [sym_arg] = STATE(1783), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1439), - [sym__type_optional] = STATE(1564), - [aux_sym_compound_stmt_repeat1] = STATE(65), - [aux_sym_switch_body_repeat1] = STATE(1508), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [aux_sym_param_path_repeat1] = STATE(1434), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_DOT_DOT_DOT] = ACTIONS(87), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(95), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(177), - [anon_sym_const] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(105), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_case] = ACTIONS(119), - [anon_sym_default] = ACTIONS(121), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_DOLLARvasplat] = ACTIONS(169), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1162), + [sym_const_declaration] = STATE(364), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(396), + [sym_expr_stmt] = STATE(396), + [sym_var_decl] = STATE(2193), + [sym_var_stmt] = STATE(396), + [sym_return_stmt] = STATE(396), + [sym_continue_stmt] = STATE(396), + [sym_break_stmt] = STATE(396), + [sym_defer_stmt] = STATE(396), + [sym_assert_stmt] = STATE(396), + [sym_declaration_stmt] = STATE(396), + [sym_case_stmt] = STATE(1593), + [sym_default_stmt] = STATE(1593), + [sym_nextcase_stmt] = STATE(396), + [sym_switch_stmt] = STATE(396), + [sym_if_stmt] = STATE(396), + [sym_for_stmt] = STATE(396), + [sym_foreach_stmt] = STATE(396), + [sym_while_stmt] = STATE(396), + [sym_do_stmt] = STATE(396), + [sym_asm_block_stmt] = STATE(396), + [sym_ct_assert_stmt] = STATE(396), + [sym_ct_echo_stmt] = STATE(396), + [sym_ct_if_stmt] = STATE(396), + [sym__ct_switch] = STATE(1544), + [sym_ct_switch_stmt] = STATE(396), + [sym_ct_for_stmt] = STATE(396), + [sym_ct_foreach_stmt] = STATE(396), + [sym__expr] = STATE(1048), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_param_path_element] = STATE(1345), + [sym_param_path] = STATE(1419), + [sym_arg] = STATE(1591), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1326), + [aux_sym_compound_stmt_repeat1] = STATE(97), + [aux_sym_switch_body_repeat1] = STATE(1404), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [aux_sym_param_path_repeat1] = STATE(1324), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_DOT_DOT_DOT] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(93), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_RBRACE] = ACTIONS(173), + [anon_sym_const] = ACTIONS(101), + [anon_sym_DOT] = ACTIONS(103), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_case] = ACTIONS(117), + [anon_sym_default] = ACTIONS(119), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_DOLLARvasplat] = ACTIONS(167), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [4] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(4), [sym_doc_comment] = STATE(4), [sym_block_comment] = STATE(4), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1158), - [sym_const_declaration] = STATE(445), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(438), - [sym_expr_stmt] = STATE(438), - [sym_var_decl] = STATE(2324), - [sym_var_stmt] = STATE(438), - [sym_return_stmt] = STATE(438), - [sym_continue_stmt] = STATE(438), - [sym_break_stmt] = STATE(438), - [sym_defer_stmt] = STATE(438), - [sym_assert_stmt] = STATE(438), - [sym_declaration_stmt] = STATE(438), - [sym_case_stmt] = STATE(1835), - [sym_default_stmt] = STATE(1835), - [sym_nextcase_stmt] = STATE(438), - [sym_switch_stmt] = STATE(438), - [sym_if_stmt] = STATE(438), - [sym_for_stmt] = STATE(438), - [sym_foreach_stmt] = STATE(438), - [sym_while_stmt] = STATE(438), - [sym_do_stmt] = STATE(438), - [sym_asm_block_stmt] = STATE(438), - [sym_ct_assert_stmt] = STATE(438), - [sym_ct_echo_stmt] = STATE(438), - [sym_ct_if_stmt] = STATE(438), - [sym__ct_switch] = STATE(1606), - [sym_ct_switch_stmt] = STATE(438), - [sym_ct_for_stmt] = STATE(438), - [sym_ct_foreach_stmt] = STATE(438), - [sym__expr] = STATE(1233), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_param_path_element] = STATE(1455), - [sym_param_path] = STATE(1784), - [sym_arg] = STATE(1783), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1439), - [sym__type_optional] = STATE(1564), - [aux_sym_compound_stmt_repeat1] = STATE(89), - [aux_sym_switch_body_repeat1] = STATE(1480), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [aux_sym_param_path_repeat1] = STATE(1434), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_DOT_DOT_DOT] = ACTIONS(87), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(95), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(179), - [anon_sym_const] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(105), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_case] = ACTIONS(119), - [anon_sym_default] = ACTIONS(121), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_DOLLARvasplat] = ACTIONS(169), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1162), + [sym_const_declaration] = STATE(364), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(396), + [sym_expr_stmt] = STATE(396), + [sym_var_decl] = STATE(2193), + [sym_var_stmt] = STATE(396), + [sym_return_stmt] = STATE(396), + [sym_continue_stmt] = STATE(396), + [sym_break_stmt] = STATE(396), + [sym_defer_stmt] = STATE(396), + [sym_assert_stmt] = STATE(396), + [sym_declaration_stmt] = STATE(396), + [sym_case_stmt] = STATE(1593), + [sym_default_stmt] = STATE(1593), + [sym_nextcase_stmt] = STATE(396), + [sym_switch_stmt] = STATE(396), + [sym_if_stmt] = STATE(396), + [sym_for_stmt] = STATE(396), + [sym_foreach_stmt] = STATE(396), + [sym_while_stmt] = STATE(396), + [sym_do_stmt] = STATE(396), + [sym_asm_block_stmt] = STATE(396), + [sym_ct_assert_stmt] = STATE(396), + [sym_ct_echo_stmt] = STATE(396), + [sym_ct_if_stmt] = STATE(396), + [sym__ct_switch] = STATE(1544), + [sym_ct_switch_stmt] = STATE(396), + [sym_ct_for_stmt] = STATE(396), + [sym_ct_foreach_stmt] = STATE(396), + [sym__expr] = STATE(1048), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_param_path_element] = STATE(1345), + [sym_param_path] = STATE(1419), + [sym_arg] = STATE(1591), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1326), + [aux_sym_compound_stmt_repeat1] = STATE(72), + [aux_sym_switch_body_repeat1] = STATE(1359), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [aux_sym_param_path_repeat1] = STATE(1324), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_DOT_DOT_DOT] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(93), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_RBRACE] = ACTIONS(175), + [anon_sym_const] = ACTIONS(101), + [anon_sym_DOT] = ACTIONS(103), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_case] = ACTIONS(117), + [anon_sym_default] = ACTIONS(119), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_DOLLARvasplat] = ACTIONS(167), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [5] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(5), [sym_doc_comment] = STATE(5), [sym_block_comment] = STATE(5), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1158), - [sym_const_declaration] = STATE(445), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(438), - [sym_expr_stmt] = STATE(438), - [sym_var_decl] = STATE(2324), - [sym_var_stmt] = STATE(438), - [sym_return_stmt] = STATE(438), - [sym_continue_stmt] = STATE(438), - [sym_break_stmt] = STATE(438), - [sym_defer_stmt] = STATE(438), - [sym_assert_stmt] = STATE(438), - [sym_declaration_stmt] = STATE(438), - [sym_case_stmt] = STATE(1835), - [sym_default_stmt] = STATE(1835), - [sym_nextcase_stmt] = STATE(438), - [sym_switch_stmt] = STATE(438), - [sym_if_stmt] = STATE(438), - [sym_for_stmt] = STATE(438), - [sym_foreach_stmt] = STATE(438), - [sym_while_stmt] = STATE(438), - [sym_do_stmt] = STATE(438), - [sym_asm_block_stmt] = STATE(438), - [sym_ct_assert_stmt] = STATE(438), - [sym_ct_echo_stmt] = STATE(438), - [sym_ct_if_stmt] = STATE(438), - [sym__ct_switch] = STATE(1606), - [sym_ct_switch_stmt] = STATE(438), - [sym_ct_for_stmt] = STATE(438), - [sym_ct_foreach_stmt] = STATE(438), - [sym__expr] = STATE(1233), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_param_path_element] = STATE(1455), - [sym_param_path] = STATE(1784), - [sym_arg] = STATE(1783), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1439), - [sym__type_optional] = STATE(1564), - [aux_sym_compound_stmt_repeat1] = STATE(77), - [aux_sym_switch_body_repeat1] = STATE(1502), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [aux_sym_param_path_repeat1] = STATE(1434), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_DOT_DOT_DOT] = ACTIONS(87), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(95), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(181), - [anon_sym_const] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(105), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_case] = ACTIONS(119), - [anon_sym_default] = ACTIONS(121), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_DOLLARvasplat] = ACTIONS(169), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1162), + [sym_const_declaration] = STATE(364), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(396), + [sym_expr_stmt] = STATE(396), + [sym_var_decl] = STATE(2193), + [sym_var_stmt] = STATE(396), + [sym_return_stmt] = STATE(396), + [sym_continue_stmt] = STATE(396), + [sym_break_stmt] = STATE(396), + [sym_defer_stmt] = STATE(396), + [sym_assert_stmt] = STATE(396), + [sym_declaration_stmt] = STATE(396), + [sym_case_stmt] = STATE(1593), + [sym_default_stmt] = STATE(1593), + [sym_nextcase_stmt] = STATE(396), + [sym_switch_stmt] = STATE(396), + [sym_if_stmt] = STATE(396), + [sym_for_stmt] = STATE(396), + [sym_foreach_stmt] = STATE(396), + [sym_while_stmt] = STATE(396), + [sym_do_stmt] = STATE(396), + [sym_asm_block_stmt] = STATE(396), + [sym_ct_assert_stmt] = STATE(396), + [sym_ct_echo_stmt] = STATE(396), + [sym_ct_if_stmt] = STATE(396), + [sym__ct_switch] = STATE(1544), + [sym_ct_switch_stmt] = STATE(396), + [sym_ct_for_stmt] = STATE(396), + [sym_ct_foreach_stmt] = STATE(396), + [sym__expr] = STATE(1048), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_param_path_element] = STATE(1345), + [sym_param_path] = STATE(1419), + [sym_arg] = STATE(1591), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1326), + [aux_sym_compound_stmt_repeat1] = STATE(93), + [aux_sym_switch_body_repeat1] = STATE(1403), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [aux_sym_param_path_repeat1] = STATE(1324), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_DOT_DOT_DOT] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(93), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_RBRACE] = ACTIONS(177), + [anon_sym_const] = ACTIONS(101), + [anon_sym_DOT] = ACTIONS(103), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_case] = ACTIONS(117), + [anon_sym_default] = ACTIONS(119), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_DOLLARvasplat] = ACTIONS(167), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [6] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(6), [sym_doc_comment] = STATE(6), [sym_block_comment] = STATE(6), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1158), - [sym_const_declaration] = STATE(445), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(438), - [sym_expr_stmt] = STATE(438), - [sym_var_decl] = STATE(2324), - [sym_var_stmt] = STATE(438), - [sym_return_stmt] = STATE(438), - [sym_continue_stmt] = STATE(438), - [sym_break_stmt] = STATE(438), - [sym_defer_stmt] = STATE(438), - [sym_assert_stmt] = STATE(438), - [sym_declaration_stmt] = STATE(438), - [sym_case_stmt] = STATE(1835), - [sym_default_stmt] = STATE(1835), - [sym_nextcase_stmt] = STATE(438), - [sym_switch_stmt] = STATE(438), - [sym_if_stmt] = STATE(438), - [sym_for_stmt] = STATE(438), - [sym_foreach_stmt] = STATE(438), - [sym_while_stmt] = STATE(438), - [sym_do_stmt] = STATE(438), - [sym_asm_block_stmt] = STATE(438), - [sym_ct_assert_stmt] = STATE(438), - [sym_ct_echo_stmt] = STATE(438), - [sym_ct_if_stmt] = STATE(438), - [sym__ct_switch] = STATE(1606), - [sym_ct_switch_stmt] = STATE(438), - [sym_ct_for_stmt] = STATE(438), - [sym_ct_foreach_stmt] = STATE(438), - [sym__expr] = STATE(1233), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_param_path_element] = STATE(1455), - [sym_param_path] = STATE(1784), - [sym_arg] = STATE(1783), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1439), - [sym__type_optional] = STATE(1564), - [aux_sym_compound_stmt_repeat1] = STATE(82), - [aux_sym_switch_body_repeat1] = STATE(1515), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [aux_sym_param_path_repeat1] = STATE(1434), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_DOT_DOT_DOT] = ACTIONS(87), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(95), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(183), - [anon_sym_const] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(105), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_case] = ACTIONS(119), - [anon_sym_default] = ACTIONS(121), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_DOLLARvasplat] = ACTIONS(169), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1162), + [sym_const_declaration] = STATE(364), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(396), + [sym_expr_stmt] = STATE(396), + [sym_var_decl] = STATE(2193), + [sym_var_stmt] = STATE(396), + [sym_return_stmt] = STATE(396), + [sym_continue_stmt] = STATE(396), + [sym_break_stmt] = STATE(396), + [sym_defer_stmt] = STATE(396), + [sym_assert_stmt] = STATE(396), + [sym_declaration_stmt] = STATE(396), + [sym_case_stmt] = STATE(1593), + [sym_default_stmt] = STATE(1593), + [sym_nextcase_stmt] = STATE(396), + [sym_switch_stmt] = STATE(396), + [sym_if_stmt] = STATE(396), + [sym_for_stmt] = STATE(396), + [sym_foreach_stmt] = STATE(396), + [sym_while_stmt] = STATE(396), + [sym_do_stmt] = STATE(396), + [sym_asm_block_stmt] = STATE(396), + [sym_ct_assert_stmt] = STATE(396), + [sym_ct_echo_stmt] = STATE(396), + [sym_ct_if_stmt] = STATE(396), + [sym__ct_switch] = STATE(1544), + [sym_ct_switch_stmt] = STATE(396), + [sym_ct_for_stmt] = STATE(396), + [sym_ct_foreach_stmt] = STATE(396), + [sym__expr] = STATE(1048), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_param_path_element] = STATE(1345), + [sym_param_path] = STATE(1419), + [sym_arg] = STATE(1591), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1326), + [aux_sym_compound_stmt_repeat1] = STATE(84), + [aux_sym_switch_body_repeat1] = STATE(1412), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [aux_sym_param_path_repeat1] = STATE(1324), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_DOT_DOT_DOT] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(93), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_RBRACE] = ACTIONS(179), + [anon_sym_const] = ACTIONS(101), + [anon_sym_DOT] = ACTIONS(103), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_case] = ACTIONS(117), + [anon_sym_default] = ACTIONS(119), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_DOLLARvasplat] = ACTIONS(167), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [7] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(7), [sym_doc_comment] = STATE(7), [sym_block_comment] = STATE(7), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1158), - [sym_const_declaration] = STATE(445), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(438), - [sym_expr_stmt] = STATE(438), - [sym_var_decl] = STATE(2324), - [sym_var_stmt] = STATE(438), - [sym_return_stmt] = STATE(438), - [sym_continue_stmt] = STATE(438), - [sym_break_stmt] = STATE(438), - [sym_defer_stmt] = STATE(438), - [sym_assert_stmt] = STATE(438), - [sym_declaration_stmt] = STATE(438), - [sym_case_stmt] = STATE(1835), - [sym_default_stmt] = STATE(1835), - [sym_nextcase_stmt] = STATE(438), - [sym_switch_stmt] = STATE(438), - [sym_if_stmt] = STATE(438), - [sym_for_stmt] = STATE(438), - [sym_foreach_stmt] = STATE(438), - [sym_while_stmt] = STATE(438), - [sym_do_stmt] = STATE(438), - [sym_asm_block_stmt] = STATE(438), - [sym_ct_assert_stmt] = STATE(438), - [sym_ct_echo_stmt] = STATE(438), - [sym_ct_if_stmt] = STATE(438), - [sym__ct_switch] = STATE(1606), - [sym_ct_switch_stmt] = STATE(438), - [sym_ct_for_stmt] = STATE(438), - [sym_ct_foreach_stmt] = STATE(438), - [sym__expr] = STATE(1233), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_param_path_element] = STATE(1455), - [sym_param_path] = STATE(1784), - [sym_arg] = STATE(1783), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1439), - [sym__type_optional] = STATE(1564), - [aux_sym_compound_stmt_repeat1] = STATE(71), - [aux_sym_switch_body_repeat1] = STATE(1471), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [aux_sym_param_path_repeat1] = STATE(1434), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_DOT_DOT_DOT] = ACTIONS(87), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(95), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(185), - [anon_sym_const] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(105), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_case] = ACTIONS(119), - [anon_sym_default] = ACTIONS(121), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_DOLLARvasplat] = ACTIONS(169), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1162), + [sym_const_declaration] = STATE(364), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(396), + [sym_expr_stmt] = STATE(396), + [sym_var_decl] = STATE(2193), + [sym_var_stmt] = STATE(396), + [sym_return_stmt] = STATE(396), + [sym_continue_stmt] = STATE(396), + [sym_break_stmt] = STATE(396), + [sym_defer_stmt] = STATE(396), + [sym_assert_stmt] = STATE(396), + [sym_declaration_stmt] = STATE(396), + [sym_case_stmt] = STATE(1593), + [sym_default_stmt] = STATE(1593), + [sym_nextcase_stmt] = STATE(396), + [sym_switch_stmt] = STATE(396), + [sym_if_stmt] = STATE(396), + [sym_for_stmt] = STATE(396), + [sym_foreach_stmt] = STATE(396), + [sym_while_stmt] = STATE(396), + [sym_do_stmt] = STATE(396), + [sym_asm_block_stmt] = STATE(396), + [sym_ct_assert_stmt] = STATE(396), + [sym_ct_echo_stmt] = STATE(396), + [sym_ct_if_stmt] = STATE(396), + [sym__ct_switch] = STATE(1544), + [sym_ct_switch_stmt] = STATE(396), + [sym_ct_for_stmt] = STATE(396), + [sym_ct_foreach_stmt] = STATE(396), + [sym__expr] = STATE(1048), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_param_path_element] = STATE(1345), + [sym_param_path] = STATE(1419), + [sym_arg] = STATE(1591), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1326), + [aux_sym_compound_stmt_repeat1] = STATE(66), + [aux_sym_switch_body_repeat1] = STATE(1395), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [aux_sym_param_path_repeat1] = STATE(1324), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_DOT_DOT_DOT] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(93), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_RBRACE] = ACTIONS(181), + [anon_sym_const] = ACTIONS(101), + [anon_sym_DOT] = ACTIONS(103), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_case] = ACTIONS(117), + [anon_sym_default] = ACTIONS(119), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_DOLLARvasplat] = ACTIONS(167), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [8] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(8), [sym_doc_comment] = STATE(8), [sym_block_comment] = STATE(8), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1158), - [sym_const_declaration] = STATE(445), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(438), - [sym_expr_stmt] = STATE(438), - [sym_var_decl] = STATE(2324), - [sym_var_stmt] = STATE(438), - [sym_return_stmt] = STATE(438), - [sym_continue_stmt] = STATE(438), - [sym_break_stmt] = STATE(438), - [sym_defer_stmt] = STATE(438), - [sym_assert_stmt] = STATE(438), - [sym_declaration_stmt] = STATE(438), - [sym_nextcase_stmt] = STATE(438), - [sym_switch_stmt] = STATE(438), - [sym_if_stmt] = STATE(438), - [sym_for_stmt] = STATE(438), - [sym_foreach_stmt] = STATE(438), - [sym_while_stmt] = STATE(438), - [sym_do_stmt] = STATE(438), - [sym_asm_block_stmt] = STATE(438), - [sym_ct_assert_stmt] = STATE(438), - [sym_ct_echo_stmt] = STATE(438), - [sym_ct_if_stmt] = STATE(438), - [sym__ct_switch] = STATE(1606), - [sym_ct_switch_stmt] = STATE(438), - [sym_ct_for_stmt] = STATE(438), - [sym_ct_foreach_stmt] = STATE(438), - [sym__expr] = STATE(1233), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_param_path_element] = STATE(1455), - [sym_param_path] = STATE(1784), - [sym_arg] = STATE(1783), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1439), - [sym__type_optional] = STATE(1564), - [aux_sym_compound_stmt_repeat1] = STATE(77), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [aux_sym_param_path_repeat1] = STATE(1434), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_DOT_DOT_DOT] = ACTIONS(87), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(95), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(187), - [anon_sym_const] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(105), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_DOLLARvasplat] = ACTIONS(169), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1162), + [sym_const_declaration] = STATE(364), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(396), + [sym_expr_stmt] = STATE(396), + [sym_var_decl] = STATE(2193), + [sym_var_stmt] = STATE(396), + [sym_return_stmt] = STATE(396), + [sym_continue_stmt] = STATE(396), + [sym_break_stmt] = STATE(396), + [sym_defer_stmt] = STATE(396), + [sym_assert_stmt] = STATE(396), + [sym_declaration_stmt] = STATE(396), + [sym_nextcase_stmt] = STATE(396), + [sym_switch_stmt] = STATE(396), + [sym_if_stmt] = STATE(396), + [sym_for_stmt] = STATE(396), + [sym_foreach_stmt] = STATE(396), + [sym_while_stmt] = STATE(396), + [sym_do_stmt] = STATE(396), + [sym_asm_block_stmt] = STATE(396), + [sym_ct_assert_stmt] = STATE(396), + [sym_ct_echo_stmt] = STATE(396), + [sym_ct_if_stmt] = STATE(396), + [sym__ct_switch] = STATE(1544), + [sym_ct_switch_stmt] = STATE(396), + [sym_ct_for_stmt] = STATE(396), + [sym_ct_foreach_stmt] = STATE(396), + [sym__expr] = STATE(1048), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_param_path_element] = STATE(1345), + [sym_param_path] = STATE(1419), + [sym_arg] = STATE(1591), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1326), + [aux_sym_compound_stmt_repeat1] = STATE(72), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [aux_sym_param_path_repeat1] = STATE(1324), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_DOT_DOT_DOT] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(93), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_RBRACE] = ACTIONS(183), + [anon_sym_const] = ACTIONS(101), + [anon_sym_DOT] = ACTIONS(103), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_DOLLARvasplat] = ACTIONS(167), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [9] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(9), [sym_doc_comment] = STATE(9), [sym_block_comment] = STATE(9), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1158), - [sym_const_declaration] = STATE(445), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(438), - [sym_expr_stmt] = STATE(438), - [sym_var_decl] = STATE(2324), - [sym_var_stmt] = STATE(438), - [sym_return_stmt] = STATE(438), - [sym_continue_stmt] = STATE(438), - [sym_break_stmt] = STATE(438), - [sym_defer_stmt] = STATE(438), - [sym_assert_stmt] = STATE(438), - [sym_declaration_stmt] = STATE(438), - [sym_nextcase_stmt] = STATE(438), - [sym_switch_stmt] = STATE(438), - [sym_if_stmt] = STATE(438), - [sym_for_stmt] = STATE(438), - [sym_foreach_stmt] = STATE(438), - [sym_while_stmt] = STATE(438), - [sym_do_stmt] = STATE(438), - [sym_asm_block_stmt] = STATE(438), - [sym_ct_assert_stmt] = STATE(438), - [sym_ct_echo_stmt] = STATE(438), - [sym_ct_if_stmt] = STATE(438), - [sym__ct_switch] = STATE(1606), - [sym_ct_switch_stmt] = STATE(438), - [sym_ct_for_stmt] = STATE(438), - [sym_ct_foreach_stmt] = STATE(438), - [sym__expr] = STATE(1233), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_param_path_element] = STATE(1455), - [sym_param_path] = STATE(1784), - [sym_arg] = STATE(1783), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1439), - [sym__type_optional] = STATE(1564), - [aux_sym_compound_stmt_repeat1] = STATE(71), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [aux_sym_param_path_repeat1] = STATE(1434), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_DOT_DOT_DOT] = ACTIONS(87), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(95), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(189), - [anon_sym_const] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(105), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_DOLLARvasplat] = ACTIONS(169), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1162), + [sym_const_declaration] = STATE(364), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(396), + [sym_expr_stmt] = STATE(396), + [sym_var_decl] = STATE(2193), + [sym_var_stmt] = STATE(396), + [sym_return_stmt] = STATE(396), + [sym_continue_stmt] = STATE(396), + [sym_break_stmt] = STATE(396), + [sym_defer_stmt] = STATE(396), + [sym_assert_stmt] = STATE(396), + [sym_declaration_stmt] = STATE(396), + [sym_nextcase_stmt] = STATE(396), + [sym_switch_stmt] = STATE(396), + [sym_if_stmt] = STATE(396), + [sym_for_stmt] = STATE(396), + [sym_foreach_stmt] = STATE(396), + [sym_while_stmt] = STATE(396), + [sym_do_stmt] = STATE(396), + [sym_asm_block_stmt] = STATE(396), + [sym_ct_assert_stmt] = STATE(396), + [sym_ct_echo_stmt] = STATE(396), + [sym_ct_if_stmt] = STATE(396), + [sym__ct_switch] = STATE(1544), + [sym_ct_switch_stmt] = STATE(396), + [sym_ct_for_stmt] = STATE(396), + [sym_ct_foreach_stmt] = STATE(396), + [sym__expr] = STATE(1048), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_param_path_element] = STATE(1345), + [sym_param_path] = STATE(1419), + [sym_arg] = STATE(1591), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1326), + [aux_sym_compound_stmt_repeat1] = STATE(66), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [aux_sym_param_path_repeat1] = STATE(1324), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_DOT_DOT_DOT] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(93), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_RBRACE] = ACTIONS(185), + [anon_sym_const] = ACTIONS(101), + [anon_sym_DOT] = ACTIONS(103), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_DOLLARvasplat] = ACTIONS(167), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [10] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(10), [sym_doc_comment] = STATE(10), [sym_block_comment] = STATE(10), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1158), - [sym_const_declaration] = STATE(445), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(438), - [sym_expr_stmt] = STATE(438), - [sym_var_decl] = STATE(2324), - [sym_var_stmt] = STATE(438), - [sym_return_stmt] = STATE(438), - [sym_continue_stmt] = STATE(438), - [sym_break_stmt] = STATE(438), - [sym_defer_stmt] = STATE(438), - [sym_assert_stmt] = STATE(438), - [sym_declaration_stmt] = STATE(438), - [sym_nextcase_stmt] = STATE(438), - [sym_switch_stmt] = STATE(438), - [sym_if_stmt] = STATE(438), - [sym_for_stmt] = STATE(438), - [sym_foreach_stmt] = STATE(438), - [sym_while_stmt] = STATE(438), - [sym_do_stmt] = STATE(438), - [sym_asm_block_stmt] = STATE(438), - [sym_ct_assert_stmt] = STATE(438), - [sym_ct_echo_stmt] = STATE(438), - [sym_ct_if_stmt] = STATE(438), - [sym__ct_switch] = STATE(1606), - [sym_ct_switch_stmt] = STATE(438), - [sym_ct_for_stmt] = STATE(438), - [sym_ct_foreach_stmt] = STATE(438), - [sym__expr] = STATE(1233), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_param_path_element] = STATE(1455), - [sym_param_path] = STATE(1784), - [sym_arg] = STATE(1783), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1439), - [sym__type_optional] = STATE(1564), - [aux_sym_compound_stmt_repeat1] = STATE(65), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [aux_sym_param_path_repeat1] = STATE(1434), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_DOT_DOT_DOT] = ACTIONS(87), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(95), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(191), - [anon_sym_const] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(105), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_DOLLARvasplat] = ACTIONS(169), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1162), + [sym_const_declaration] = STATE(364), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(396), + [sym_expr_stmt] = STATE(396), + [sym_var_decl] = STATE(2193), + [sym_var_stmt] = STATE(396), + [sym_return_stmt] = STATE(396), + [sym_continue_stmt] = STATE(396), + [sym_break_stmt] = STATE(396), + [sym_defer_stmt] = STATE(396), + [sym_assert_stmt] = STATE(396), + [sym_declaration_stmt] = STATE(396), + [sym_nextcase_stmt] = STATE(396), + [sym_switch_stmt] = STATE(396), + [sym_if_stmt] = STATE(396), + [sym_for_stmt] = STATE(396), + [sym_foreach_stmt] = STATE(396), + [sym_while_stmt] = STATE(396), + [sym_do_stmt] = STATE(396), + [sym_asm_block_stmt] = STATE(396), + [sym_ct_assert_stmt] = STATE(396), + [sym_ct_echo_stmt] = STATE(396), + [sym_ct_if_stmt] = STATE(396), + [sym__ct_switch] = STATE(1544), + [sym_ct_switch_stmt] = STATE(396), + [sym_ct_for_stmt] = STATE(396), + [sym_ct_foreach_stmt] = STATE(396), + [sym__expr] = STATE(1048), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_param_path_element] = STATE(1345), + [sym_param_path] = STATE(1419), + [sym_arg] = STATE(1591), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1326), + [aux_sym_compound_stmt_repeat1] = STATE(61), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [aux_sym_param_path_repeat1] = STATE(1324), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_DOT_DOT_DOT] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(93), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_RBRACE] = ACTIONS(187), + [anon_sym_const] = ACTIONS(101), + [anon_sym_DOT] = ACTIONS(103), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_DOLLARvasplat] = ACTIONS(167), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [11] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(11), [sym_doc_comment] = STATE(11), [sym_block_comment] = STATE(11), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1158), - [sym_const_declaration] = STATE(445), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(438), - [sym_expr_stmt] = STATE(438), - [sym_var_decl] = STATE(2324), - [sym_var_stmt] = STATE(438), - [sym_return_stmt] = STATE(438), - [sym_continue_stmt] = STATE(438), - [sym_break_stmt] = STATE(438), - [sym_defer_stmt] = STATE(438), - [sym_assert_stmt] = STATE(438), - [sym_declaration_stmt] = STATE(438), - [sym_nextcase_stmt] = STATE(438), - [sym_switch_stmt] = STATE(438), - [sym_if_stmt] = STATE(438), - [sym_for_stmt] = STATE(438), - [sym_foreach_stmt] = STATE(438), - [sym_while_stmt] = STATE(438), - [sym_do_stmt] = STATE(438), - [sym_asm_block_stmt] = STATE(438), - [sym_ct_assert_stmt] = STATE(438), - [sym_ct_echo_stmt] = STATE(438), - [sym_ct_if_stmt] = STATE(438), - [sym__ct_switch] = STATE(1606), - [sym_ct_switch_stmt] = STATE(438), - [sym_ct_for_stmt] = STATE(438), - [sym_ct_foreach_stmt] = STATE(438), - [sym__expr] = STATE(1233), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_param_path_element] = STATE(1455), - [sym_param_path] = STATE(1784), - [sym_arg] = STATE(1783), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1439), - [sym__type_optional] = STATE(1564), - [aux_sym_compound_stmt_repeat1] = STATE(89), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [aux_sym_param_path_repeat1] = STATE(1434), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_DOT_DOT_DOT] = ACTIONS(87), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(95), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(193), - [anon_sym_const] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(105), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_DOLLARvasplat] = ACTIONS(169), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1162), + [sym_const_declaration] = STATE(364), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(396), + [sym_expr_stmt] = STATE(396), + [sym_var_decl] = STATE(2193), + [sym_var_stmt] = STATE(396), + [sym_return_stmt] = STATE(396), + [sym_continue_stmt] = STATE(396), + [sym_break_stmt] = STATE(396), + [sym_defer_stmt] = STATE(396), + [sym_assert_stmt] = STATE(396), + [sym_declaration_stmt] = STATE(396), + [sym_nextcase_stmt] = STATE(396), + [sym_switch_stmt] = STATE(396), + [sym_if_stmt] = STATE(396), + [sym_for_stmt] = STATE(396), + [sym_foreach_stmt] = STATE(396), + [sym_while_stmt] = STATE(396), + [sym_do_stmt] = STATE(396), + [sym_asm_block_stmt] = STATE(396), + [sym_ct_assert_stmt] = STATE(396), + [sym_ct_echo_stmt] = STATE(396), + [sym_ct_if_stmt] = STATE(396), + [sym__ct_switch] = STATE(1544), + [sym_ct_switch_stmt] = STATE(396), + [sym_ct_for_stmt] = STATE(396), + [sym_ct_foreach_stmt] = STATE(396), + [sym__expr] = STATE(1048), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_param_path_element] = STATE(1345), + [sym_param_path] = STATE(1419), + [sym_arg] = STATE(1591), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1326), + [aux_sym_compound_stmt_repeat1] = STATE(97), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [aux_sym_param_path_repeat1] = STATE(1324), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_DOT_DOT_DOT] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(93), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_RBRACE] = ACTIONS(189), + [anon_sym_const] = ACTIONS(101), + [anon_sym_DOT] = ACTIONS(103), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_DOLLARvasplat] = ACTIONS(167), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [12] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(12), [sym_doc_comment] = STATE(12), [sym_block_comment] = STATE(12), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1158), - [sym_const_declaration] = STATE(445), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(438), - [sym_expr_stmt] = STATE(438), - [sym_var_decl] = STATE(2324), - [sym_var_stmt] = STATE(438), - [sym_return_stmt] = STATE(438), - [sym_continue_stmt] = STATE(438), - [sym_break_stmt] = STATE(438), - [sym_defer_stmt] = STATE(438), - [sym_assert_stmt] = STATE(438), - [sym_declaration_stmt] = STATE(438), - [sym_nextcase_stmt] = STATE(438), - [sym_switch_stmt] = STATE(438), - [sym_if_stmt] = STATE(438), - [sym_for_stmt] = STATE(438), - [sym_foreach_stmt] = STATE(438), - [sym_while_stmt] = STATE(438), - [sym_do_stmt] = STATE(438), - [sym_asm_block_stmt] = STATE(438), - [sym_ct_assert_stmt] = STATE(438), - [sym_ct_echo_stmt] = STATE(438), - [sym_ct_if_stmt] = STATE(438), - [sym__ct_switch] = STATE(1606), - [sym_ct_switch_stmt] = STATE(438), - [sym_ct_for_stmt] = STATE(438), - [sym_ct_foreach_stmt] = STATE(438), - [sym__expr] = STATE(1233), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_param_path_element] = STATE(1455), - [sym_param_path] = STATE(1784), - [sym_arg] = STATE(1783), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1439), - [sym__type_optional] = STATE(1564), - [aux_sym_compound_stmt_repeat1] = STATE(82), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [aux_sym_param_path_repeat1] = STATE(1434), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_DOT_DOT_DOT] = ACTIONS(87), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(95), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(195), - [anon_sym_const] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(105), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_DOLLARvasplat] = ACTIONS(169), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1162), + [sym_const_declaration] = STATE(364), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(396), + [sym_expr_stmt] = STATE(396), + [sym_var_decl] = STATE(2193), + [sym_var_stmt] = STATE(396), + [sym_return_stmt] = STATE(396), + [sym_continue_stmt] = STATE(396), + [sym_break_stmt] = STATE(396), + [sym_defer_stmt] = STATE(396), + [sym_assert_stmt] = STATE(396), + [sym_declaration_stmt] = STATE(396), + [sym_nextcase_stmt] = STATE(396), + [sym_switch_stmt] = STATE(396), + [sym_if_stmt] = STATE(396), + [sym_for_stmt] = STATE(396), + [sym_foreach_stmt] = STATE(396), + [sym_while_stmt] = STATE(396), + [sym_do_stmt] = STATE(396), + [sym_asm_block_stmt] = STATE(396), + [sym_ct_assert_stmt] = STATE(396), + [sym_ct_echo_stmt] = STATE(396), + [sym_ct_if_stmt] = STATE(396), + [sym__ct_switch] = STATE(1544), + [sym_ct_switch_stmt] = STATE(396), + [sym_ct_for_stmt] = STATE(396), + [sym_ct_foreach_stmt] = STATE(396), + [sym__expr] = STATE(1048), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_param_path_element] = STATE(1345), + [sym_param_path] = STATE(1419), + [sym_arg] = STATE(1591), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1326), + [aux_sym_compound_stmt_repeat1] = STATE(84), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [aux_sym_param_path_repeat1] = STATE(1324), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_DOT_DOT_DOT] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(93), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_RBRACE] = ACTIONS(191), + [anon_sym_const] = ACTIONS(101), + [anon_sym_DOT] = ACTIONS(103), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_DOLLARvasplat] = ACTIONS(167), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [13] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(13), [sym_doc_comment] = STATE(13), [sym_block_comment] = STATE(13), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1158), - [sym_const_declaration] = STATE(445), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(438), - [sym_expr_stmt] = STATE(438), - [sym_var_decl] = STATE(2324), - [sym_var_stmt] = STATE(438), - [sym_return_stmt] = STATE(438), - [sym_continue_stmt] = STATE(438), - [sym_break_stmt] = STATE(438), - [sym_defer_stmt] = STATE(438), - [sym_assert_stmt] = STATE(438), - [sym_declaration_stmt] = STATE(438), - [sym_nextcase_stmt] = STATE(438), - [sym_switch_stmt] = STATE(438), - [sym_if_stmt] = STATE(438), - [sym_for_stmt] = STATE(438), - [sym_foreach_stmt] = STATE(438), - [sym_while_stmt] = STATE(438), - [sym_do_stmt] = STATE(438), - [sym_asm_block_stmt] = STATE(438), - [sym_ct_assert_stmt] = STATE(438), - [sym_ct_echo_stmt] = STATE(438), - [sym_ct_if_stmt] = STATE(438), - [sym__ct_switch] = STATE(1606), - [sym_ct_switch_stmt] = STATE(438), - [sym_ct_for_stmt] = STATE(438), - [sym_ct_foreach_stmt] = STATE(438), - [sym__expr] = STATE(1233), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_param_path_element] = STATE(1455), - [sym_param_path] = STATE(1784), - [sym_arg] = STATE(1783), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1439), - [sym__type_optional] = STATE(1564), - [aux_sym_compound_stmt_repeat1] = STATE(83), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [aux_sym_param_path_repeat1] = STATE(1434), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_DOT_DOT_DOT] = ACTIONS(87), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(95), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(197), - [anon_sym_const] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(105), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_DOLLARvasplat] = ACTIONS(169), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1162), + [sym_const_declaration] = STATE(364), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(396), + [sym_expr_stmt] = STATE(396), + [sym_var_decl] = STATE(2193), + [sym_var_stmt] = STATE(396), + [sym_return_stmt] = STATE(396), + [sym_continue_stmt] = STATE(396), + [sym_break_stmt] = STATE(396), + [sym_defer_stmt] = STATE(396), + [sym_assert_stmt] = STATE(396), + [sym_declaration_stmt] = STATE(396), + [sym_nextcase_stmt] = STATE(396), + [sym_switch_stmt] = STATE(396), + [sym_if_stmt] = STATE(396), + [sym_for_stmt] = STATE(396), + [sym_foreach_stmt] = STATE(396), + [sym_while_stmt] = STATE(396), + [sym_do_stmt] = STATE(396), + [sym_asm_block_stmt] = STATE(396), + [sym_ct_assert_stmt] = STATE(396), + [sym_ct_echo_stmt] = STATE(396), + [sym_ct_if_stmt] = STATE(396), + [sym__ct_switch] = STATE(1544), + [sym_ct_switch_stmt] = STATE(396), + [sym_ct_for_stmt] = STATE(396), + [sym_ct_foreach_stmt] = STATE(396), + [sym__expr] = STATE(1048), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_param_path_element] = STATE(1345), + [sym_param_path] = STATE(1419), + [sym_arg] = STATE(1591), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1326), + [aux_sym_compound_stmt_repeat1] = STATE(93), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [aux_sym_param_path_repeat1] = STATE(1324), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_DOT_DOT_DOT] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(93), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_RBRACE] = ACTIONS(193), + [anon_sym_const] = ACTIONS(101), + [anon_sym_DOT] = ACTIONS(103), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_DOLLARvasplat] = ACTIONS(167), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [14] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(14), [sym_doc_comment] = STATE(14), [sym_block_comment] = STATE(14), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1169), - [sym_const_declaration] = STATE(480), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(481), - [sym_expr_stmt] = STATE(481), - [sym_var_decl] = STATE(2091), - [sym_var_stmt] = STATE(481), - [sym_return_stmt] = STATE(481), - [sym_continue_stmt] = STATE(481), - [sym_break_stmt] = STATE(481), - [sym_defer_stmt] = STATE(481), - [sym_assert_stmt] = STATE(481), - [sym_declaration_stmt] = STATE(481), - [sym_nextcase_stmt] = STATE(481), - [sym_switch_stmt] = STATE(481), - [sym_if_stmt] = STATE(481), - [sym_for_stmt] = STATE(481), - [sym_foreach_stmt] = STATE(481), - [sym_while_stmt] = STATE(481), - [sym_do_stmt] = STATE(481), - [sym_asm_block_stmt] = STATE(481), - [sym_ct_stmt_body] = STATE(1699), - [sym_ct_assert_stmt] = STATE(481), - [sym_ct_echo_stmt] = STATE(481), - [sym_ct_if_stmt] = STATE(481), - [sym__ct_switch] = STATE(1646), - [sym_ct_switch_stmt] = STATE(481), - [sym_ct_for_stmt] = STATE(481), - [sym_ct_foreach_stmt] = STATE(481), - [sym__expr] = STATE(1271), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1647), - [aux_sym_compound_stmt_repeat1] = STATE(30), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(201), - [anon_sym_const] = ACTIONS(203), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(205), - [anon_sym_continue] = ACTIONS(207), - [anon_sym_break] = ACTIONS(209), - [anon_sym_defer] = ACTIONS(211), - [anon_sym_assert] = ACTIONS(213), - [anon_sym_nextcase] = ACTIONS(215), - [anon_sym_switch] = ACTIONS(217), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(219), - [anon_sym_for] = ACTIONS(221), - [anon_sym_foreach] = ACTIONS(223), - [anon_sym_foreach_r] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_do] = ACTIONS(227), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(229), - [anon_sym_DOLLARassert] = ACTIONS(231), - [anon_sym_DOLLARerror] = ACTIONS(233), - [anon_sym_DOLLARecho] = ACTIONS(235), - [anon_sym_DOLLARif] = ACTIONS(237), - [anon_sym_DOLLARcase] = ACTIONS(239), - [anon_sym_DOLLARdefault] = ACTIONS(239), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARendswitch] = ACTIONS(239), - [anon_sym_DOLLARfor] = ACTIONS(241), - [anon_sym_DOLLARforeach] = ACTIONS(243), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1175), + [sym_const_declaration] = STATE(446), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(443), + [sym_expr_stmt] = STATE(443), + [sym_var_decl] = STATE(1961), + [sym_var_stmt] = STATE(443), + [sym_return_stmt] = STATE(443), + [sym_continue_stmt] = STATE(443), + [sym_break_stmt] = STATE(443), + [sym_defer_stmt] = STATE(443), + [sym_assert_stmt] = STATE(443), + [sym_declaration_stmt] = STATE(443), + [sym_nextcase_stmt] = STATE(443), + [sym_switch_stmt] = STATE(443), + [sym_if_stmt] = STATE(443), + [sym_for_stmt] = STATE(443), + [sym_foreach_stmt] = STATE(443), + [sym_while_stmt] = STATE(443), + [sym_do_stmt] = STATE(443), + [sym_asm_block_stmt] = STATE(443), + [sym_ct_stmt_body] = STATE(1634), + [sym_ct_assert_stmt] = STATE(443), + [sym_ct_echo_stmt] = STATE(443), + [sym_ct_if_stmt] = STATE(443), + [sym__ct_switch] = STATE(1566), + [sym_ct_switch_stmt] = STATE(443), + [sym_ct_for_stmt] = STATE(443), + [sym_ct_foreach_stmt] = STATE(443), + [sym__expr] = STATE(1092), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1346), + [aux_sym_compound_stmt_repeat1] = STATE(24), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(195), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(197), + [anon_sym_const] = ACTIONS(199), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(201), + [anon_sym_continue] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_defer] = ACTIONS(207), + [anon_sym_assert] = ACTIONS(209), + [anon_sym_nextcase] = ACTIONS(211), + [anon_sym_switch] = ACTIONS(213), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(215), + [anon_sym_for] = ACTIONS(217), + [anon_sym_foreach] = ACTIONS(219), + [anon_sym_foreach_r] = ACTIONS(219), + [anon_sym_while] = ACTIONS(221), + [anon_sym_do] = ACTIONS(223), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(225), + [anon_sym_DOLLARassert] = ACTIONS(227), + [anon_sym_DOLLARerror] = ACTIONS(229), + [anon_sym_DOLLARecho] = ACTIONS(231), + [anon_sym_DOLLARif] = ACTIONS(233), + [anon_sym_DOLLARcase] = ACTIONS(235), + [anon_sym_DOLLARdefault] = ACTIONS(235), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARendswitch] = ACTIONS(235), + [anon_sym_DOLLARfor] = ACTIONS(237), + [anon_sym_DOLLARforeach] = ACTIONS(239), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [15] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(15), [sym_doc_comment] = STATE(15), [sym_block_comment] = STATE(15), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1169), - [sym_const_declaration] = STATE(480), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(481), - [sym_expr_stmt] = STATE(481), - [sym_var_decl] = STATE(2091), - [sym_var_stmt] = STATE(481), - [sym_return_stmt] = STATE(481), - [sym_continue_stmt] = STATE(481), - [sym_break_stmt] = STATE(481), - [sym_defer_stmt] = STATE(481), - [sym_assert_stmt] = STATE(481), - [sym_declaration_stmt] = STATE(481), - [sym_nextcase_stmt] = STATE(481), - [sym_switch_stmt] = STATE(481), - [sym_if_stmt] = STATE(481), - [sym_for_stmt] = STATE(481), - [sym_foreach_stmt] = STATE(481), - [sym_while_stmt] = STATE(481), - [sym_do_stmt] = STATE(481), - [sym_asm_block_stmt] = STATE(481), - [sym_ct_stmt_body] = STATE(1700), - [sym_ct_assert_stmt] = STATE(481), - [sym_ct_echo_stmt] = STATE(481), - [sym_ct_if_stmt] = STATE(481), - [sym__ct_switch] = STATE(1646), - [sym_ct_switch_stmt] = STATE(481), - [sym_ct_for_stmt] = STATE(481), - [sym_ct_foreach_stmt] = STATE(481), - [sym__expr] = STATE(1271), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1647), - [aux_sym_compound_stmt_repeat1] = STATE(30), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(201), - [anon_sym_const] = ACTIONS(203), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(205), - [anon_sym_continue] = ACTIONS(207), - [anon_sym_break] = ACTIONS(209), - [anon_sym_defer] = ACTIONS(211), - [anon_sym_assert] = ACTIONS(213), - [anon_sym_nextcase] = ACTIONS(215), - [anon_sym_switch] = ACTIONS(217), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(219), - [anon_sym_for] = ACTIONS(221), - [anon_sym_foreach] = ACTIONS(223), - [anon_sym_foreach_r] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_do] = ACTIONS(227), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(229), - [anon_sym_DOLLARassert] = ACTIONS(231), - [anon_sym_DOLLARerror] = ACTIONS(233), - [anon_sym_DOLLARecho] = ACTIONS(235), - [anon_sym_DOLLARif] = ACTIONS(237), - [anon_sym_DOLLARcase] = ACTIONS(245), - [anon_sym_DOLLARdefault] = ACTIONS(245), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARendswitch] = ACTIONS(245), - [anon_sym_DOLLARfor] = ACTIONS(241), - [anon_sym_DOLLARforeach] = ACTIONS(243), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1175), + [sym_const_declaration] = STATE(446), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(443), + [sym_expr_stmt] = STATE(443), + [sym_var_decl] = STATE(1961), + [sym_var_stmt] = STATE(443), + [sym_return_stmt] = STATE(443), + [sym_continue_stmt] = STATE(443), + [sym_break_stmt] = STATE(443), + [sym_defer_stmt] = STATE(443), + [sym_assert_stmt] = STATE(443), + [sym_declaration_stmt] = STATE(443), + [sym_nextcase_stmt] = STATE(443), + [sym_switch_stmt] = STATE(443), + [sym_if_stmt] = STATE(443), + [sym_for_stmt] = STATE(443), + [sym_foreach_stmt] = STATE(443), + [sym_while_stmt] = STATE(443), + [sym_do_stmt] = STATE(443), + [sym_asm_block_stmt] = STATE(443), + [sym_ct_stmt_body] = STATE(1704), + [sym_ct_assert_stmt] = STATE(443), + [sym_ct_echo_stmt] = STATE(443), + [sym_ct_if_stmt] = STATE(443), + [sym__ct_switch] = STATE(1566), + [sym_ct_switch_stmt] = STATE(443), + [sym_ct_for_stmt] = STATE(443), + [sym_ct_foreach_stmt] = STATE(443), + [sym__expr] = STATE(1092), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1346), + [aux_sym_compound_stmt_repeat1] = STATE(24), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(195), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(197), + [anon_sym_const] = ACTIONS(199), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(201), + [anon_sym_continue] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_defer] = ACTIONS(207), + [anon_sym_assert] = ACTIONS(209), + [anon_sym_nextcase] = ACTIONS(211), + [anon_sym_switch] = ACTIONS(213), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(215), + [anon_sym_for] = ACTIONS(217), + [anon_sym_foreach] = ACTIONS(219), + [anon_sym_foreach_r] = ACTIONS(219), + [anon_sym_while] = ACTIONS(221), + [anon_sym_do] = ACTIONS(223), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(225), + [anon_sym_DOLLARassert] = ACTIONS(227), + [anon_sym_DOLLARerror] = ACTIONS(229), + [anon_sym_DOLLARecho] = ACTIONS(231), + [anon_sym_DOLLARif] = ACTIONS(233), + [anon_sym_DOLLARcase] = ACTIONS(241), + [anon_sym_DOLLARdefault] = ACTIONS(241), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARendswitch] = ACTIONS(241), + [anon_sym_DOLLARfor] = ACTIONS(237), + [anon_sym_DOLLARforeach] = ACTIONS(239), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [16] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(16), [sym_doc_comment] = STATE(16), [sym_block_comment] = STATE(16), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1158), - [sym_const_declaration] = STATE(445), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(438), - [sym_expr_stmt] = STATE(438), - [sym_var_decl] = STATE(2324), - [sym_var_stmt] = STATE(438), - [sym_return_stmt] = STATE(438), - [sym_continue_stmt] = STATE(438), - [sym_break_stmt] = STATE(438), - [sym_defer_stmt] = STATE(438), - [sym_assert_stmt] = STATE(438), - [sym_declaration_stmt] = STATE(438), - [sym_nextcase_stmt] = STATE(438), - [sym_switch_stmt] = STATE(438), - [sym_if_stmt] = STATE(438), - [sym_for_stmt] = STATE(438), - [sym_foreach_stmt] = STATE(438), - [sym_while_stmt] = STATE(438), - [sym_do_stmt] = STATE(438), - [sym_asm_block_stmt] = STATE(438), - [sym_ct_assert_stmt] = STATE(438), - [sym_ct_echo_stmt] = STATE(438), - [sym_ct_if_stmt] = STATE(438), - [sym__ct_switch] = STATE(1606), - [sym_ct_switch_stmt] = STATE(438), - [sym_ct_for_stmt] = STATE(438), - [sym_ct_foreach_stmt] = STATE(438), - [sym__expr] = STATE(1265), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1564), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1162), + [sym_const_declaration] = STATE(364), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(396), + [sym_expr_stmt] = STATE(396), + [sym_var_decl] = STATE(2193), + [sym_var_stmt] = STATE(396), + [sym_return_stmt] = STATE(396), + [sym_continue_stmt] = STATE(396), + [sym_break_stmt] = STATE(396), + [sym_defer_stmt] = STATE(396), + [sym_assert_stmt] = STATE(396), + [sym_declaration_stmt] = STATE(396), + [sym_nextcase_stmt] = STATE(396), + [sym_switch_stmt] = STATE(396), + [sym_if_stmt] = STATE(396), + [sym_for_stmt] = STATE(396), + [sym_foreach_stmt] = STATE(396), + [sym_while_stmt] = STATE(396), + [sym_do_stmt] = STATE(396), + [sym_asm_block_stmt] = STATE(396), + [sym_ct_assert_stmt] = STATE(396), + [sym_ct_echo_stmt] = STATE(396), + [sym_ct_if_stmt] = STATE(396), + [sym__ct_switch] = STATE(1544), + [sym_ct_switch_stmt] = STATE(396), + [sym_ct_for_stmt] = STATE(396), + [sym_ct_foreach_stmt] = STATE(396), + [sym__expr] = STATE(1093), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1351), [aux_sym_compound_stmt_repeat1] = STATE(16), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(247), - [sym_integer_literal] = ACTIONS(250), - [anon_sym_SQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(256), - [anon_sym_BQUOTE] = ACTIONS(259), - [sym_bytes_literal] = ACTIONS(262), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(265), - [sym_at_ident] = ACTIONS(268), - [sym_hash_ident] = ACTIONS(271), - [sym_type_ident] = ACTIONS(274), - [sym_ct_type_ident] = ACTIONS(277), - [sym_const_ident] = ACTIONS(280), - [sym_builtin] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(283), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_static] = ACTIONS(289), - [anon_sym_tlocal] = ACTIONS(289), - [anon_sym_SEMI] = ACTIONS(292), - [anon_sym_fn] = ACTIONS(295), - [anon_sym_LBRACE] = ACTIONS(298), - [anon_sym_RBRACE] = ACTIONS(301), - [anon_sym_const] = ACTIONS(303), - [anon_sym_var] = ACTIONS(306), - [anon_sym_return] = ACTIONS(309), - [anon_sym_continue] = ACTIONS(312), - [anon_sym_break] = ACTIONS(315), - [anon_sym_defer] = ACTIONS(318), - [anon_sym_assert] = ACTIONS(321), - [anon_sym_case] = ACTIONS(324), - [anon_sym_default] = ACTIONS(324), - [anon_sym_nextcase] = ACTIONS(326), - [anon_sym_switch] = ACTIONS(329), - [anon_sym_AMP_AMP] = ACTIONS(332), - [anon_sym_if] = ACTIONS(335), - [anon_sym_for] = ACTIONS(338), - [anon_sym_foreach] = ACTIONS(341), - [anon_sym_foreach_r] = ACTIONS(341), - [anon_sym_while] = ACTIONS(344), - [anon_sym_do] = ACTIONS(347), - [anon_sym_int] = ACTIONS(350), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_STAR] = ACTIONS(332), - [anon_sym_asm] = ACTIONS(353), - [anon_sym_DOLLARassert] = ACTIONS(356), - [anon_sym_DOLLARerror] = ACTIONS(359), - [anon_sym_DOLLARecho] = ACTIONS(362), - [anon_sym_DOLLARif] = ACTIONS(365), - [anon_sym_DOLLARswitch] = ACTIONS(368), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_DOLLARforeach] = ACTIONS(374), - [anon_sym_DOLLARalignof] = ACTIONS(377), - [anon_sym_DOLLARextnameof] = ACTIONS(377), - [anon_sym_DOLLARnameof] = ACTIONS(377), - [anon_sym_DOLLARoffsetof] = ACTIONS(377), - [anon_sym_DOLLARqnameof] = ACTIONS(377), - [anon_sym_DOLLARvaconst] = ACTIONS(380), - [anon_sym_DOLLARvaarg] = ACTIONS(380), - [anon_sym_DOLLARvaref] = ACTIONS(380), - [anon_sym_DOLLARvaexpr] = ACTIONS(380), - [anon_sym_true] = ACTIONS(383), - [anon_sym_false] = ACTIONS(383), - [anon_sym_null] = ACTIONS(383), - [anon_sym_DOLLARvacount] = ACTIONS(383), - [anon_sym_DOLLARappend] = ACTIONS(380), - [anon_sym_DOLLARconcat] = ACTIONS(380), - [anon_sym_DOLLAReval] = ACTIONS(380), - [anon_sym_DOLLARis_const] = ACTIONS(380), - [anon_sym_DOLLARsizeof] = ACTIONS(380), - [anon_sym_DOLLARstringify] = ACTIONS(380), - [anon_sym_DOLLARand] = ACTIONS(386), - [anon_sym_DOLLARdefined] = ACTIONS(386), - [anon_sym_DOLLARembed] = ACTIONS(386), - [anon_sym_DOLLARor] = ACTIONS(386), - [anon_sym_DOLLARfeature] = ACTIONS(389), - [anon_sym_DOLLARassignable] = ACTIONS(392), - [anon_sym_BANG] = ACTIONS(332), - [anon_sym_TILDE] = ACTIONS(332), - [anon_sym_PLUS_PLUS] = ACTIONS(332), - [anon_sym_DASH_DASH] = ACTIONS(332), - [anon_sym_typeid] = ACTIONS(350), - [anon_sym_LBRACE_PIPE] = ACTIONS(395), - [anon_sym_PIPE_RBRACE] = ACTIONS(301), - [anon_sym_void] = ACTIONS(350), - [anon_sym_bool] = ACTIONS(350), - [anon_sym_char] = ACTIONS(350), - [anon_sym_ichar] = ACTIONS(350), - [anon_sym_short] = ACTIONS(350), - [anon_sym_ushort] = ACTIONS(350), - [anon_sym_uint] = ACTIONS(350), - [anon_sym_long] = ACTIONS(350), - [anon_sym_ulong] = ACTIONS(350), - [anon_sym_int128] = ACTIONS(350), - [anon_sym_uint128] = ACTIONS(350), - [anon_sym_float] = ACTIONS(350), - [anon_sym_double] = ACTIONS(350), - [anon_sym_float16] = ACTIONS(350), - [anon_sym_bfloat16] = ACTIONS(350), - [anon_sym_float128] = ACTIONS(350), - [anon_sym_iptr] = ACTIONS(350), - [anon_sym_uptr] = ACTIONS(350), - [anon_sym_isz] = ACTIONS(350), - [anon_sym_usz] = ACTIONS(350), - [anon_sym_anyfault] = ACTIONS(350), - [anon_sym_any] = ACTIONS(350), - [anon_sym_DOLLARtypeof] = ACTIONS(398), - [anon_sym_DOLLARtypefrom] = ACTIONS(401), - [anon_sym_DOLLARvatype] = ACTIONS(401), - [anon_sym_DOLLARevaltype] = ACTIONS(401), - [sym_real_literal] = ACTIONS(250), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(243), + [sym_integer_literal] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_DQUOTE] = ACTIONS(252), + [anon_sym_BQUOTE] = ACTIONS(255), + [sym_bytes_literal] = ACTIONS(258), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(261), + [sym_at_ident] = ACTIONS(264), + [sym_hash_ident] = ACTIONS(267), + [sym_type_ident] = ACTIONS(270), + [sym_ct_type_ident] = ACTIONS(273), + [sym_const_ident] = ACTIONS(276), + [sym_builtin] = ACTIONS(246), + [anon_sym_LPAREN] = ACTIONS(279), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_static] = ACTIONS(285), + [anon_sym_tlocal] = ACTIONS(285), + [anon_sym_SEMI] = ACTIONS(288), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(294), + [anon_sym_RBRACE] = ACTIONS(297), + [anon_sym_const] = ACTIONS(299), + [anon_sym_var] = ACTIONS(302), + [anon_sym_return] = ACTIONS(305), + [anon_sym_continue] = ACTIONS(308), + [anon_sym_break] = ACTIONS(311), + [anon_sym_defer] = ACTIONS(314), + [anon_sym_assert] = ACTIONS(317), + [anon_sym_case] = ACTIONS(320), + [anon_sym_default] = ACTIONS(320), + [anon_sym_nextcase] = ACTIONS(322), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_AMP_AMP] = ACTIONS(328), + [anon_sym_if] = ACTIONS(331), + [anon_sym_for] = ACTIONS(334), + [anon_sym_foreach] = ACTIONS(337), + [anon_sym_foreach_r] = ACTIONS(337), + [anon_sym_while] = ACTIONS(340), + [anon_sym_do] = ACTIONS(343), + [anon_sym_int] = ACTIONS(346), + [anon_sym_PLUS] = ACTIONS(282), + [anon_sym_DASH] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(328), + [anon_sym_asm] = ACTIONS(349), + [anon_sym_DOLLARassert] = ACTIONS(352), + [anon_sym_DOLLARerror] = ACTIONS(355), + [anon_sym_DOLLARecho] = ACTIONS(358), + [anon_sym_DOLLARif] = ACTIONS(361), + [anon_sym_DOLLARswitch] = ACTIONS(364), + [anon_sym_DOLLARfor] = ACTIONS(367), + [anon_sym_DOLLARforeach] = ACTIONS(370), + [anon_sym_DOLLARalignof] = ACTIONS(373), + [anon_sym_DOLLARextnameof] = ACTIONS(373), + [anon_sym_DOLLARnameof] = ACTIONS(373), + [anon_sym_DOLLARoffsetof] = ACTIONS(373), + [anon_sym_DOLLARqnameof] = ACTIONS(373), + [anon_sym_DOLLARvaconst] = ACTIONS(376), + [anon_sym_DOLLARvaarg] = ACTIONS(376), + [anon_sym_DOLLARvaref] = ACTIONS(376), + [anon_sym_DOLLARvaexpr] = ACTIONS(376), + [anon_sym_true] = ACTIONS(379), + [anon_sym_false] = ACTIONS(379), + [anon_sym_null] = ACTIONS(379), + [anon_sym_DOLLARvacount] = ACTIONS(379), + [anon_sym_DOLLARappend] = ACTIONS(376), + [anon_sym_DOLLARconcat] = ACTIONS(376), + [anon_sym_DOLLAReval] = ACTIONS(376), + [anon_sym_DOLLARis_const] = ACTIONS(376), + [anon_sym_DOLLARsizeof] = ACTIONS(376), + [anon_sym_DOLLARstringify] = ACTIONS(376), + [anon_sym_DOLLARand] = ACTIONS(382), + [anon_sym_DOLLARdefined] = ACTIONS(382), + [anon_sym_DOLLARembed] = ACTIONS(382), + [anon_sym_DOLLARor] = ACTIONS(382), + [anon_sym_DOLLARfeature] = ACTIONS(385), + [anon_sym_DOLLARassignable] = ACTIONS(388), + [anon_sym_BANG] = ACTIONS(328), + [anon_sym_TILDE] = ACTIONS(328), + [anon_sym_PLUS_PLUS] = ACTIONS(328), + [anon_sym_DASH_DASH] = ACTIONS(328), + [anon_sym_typeid] = ACTIONS(346), + [anon_sym_LBRACE_PIPE] = ACTIONS(391), + [anon_sym_PIPE_RBRACE] = ACTIONS(297), + [anon_sym_void] = ACTIONS(346), + [anon_sym_bool] = ACTIONS(346), + [anon_sym_char] = ACTIONS(346), + [anon_sym_ichar] = ACTIONS(346), + [anon_sym_short] = ACTIONS(346), + [anon_sym_ushort] = ACTIONS(346), + [anon_sym_uint] = ACTIONS(346), + [anon_sym_long] = ACTIONS(346), + [anon_sym_ulong] = ACTIONS(346), + [anon_sym_int128] = ACTIONS(346), + [anon_sym_uint128] = ACTIONS(346), + [anon_sym_float] = ACTIONS(346), + [anon_sym_double] = ACTIONS(346), + [anon_sym_float16] = ACTIONS(346), + [anon_sym_bfloat16] = ACTIONS(346), + [anon_sym_float128] = ACTIONS(346), + [anon_sym_iptr] = ACTIONS(346), + [anon_sym_uptr] = ACTIONS(346), + [anon_sym_isz] = ACTIONS(346), + [anon_sym_usz] = ACTIONS(346), + [anon_sym_anyfault] = ACTIONS(346), + [anon_sym_any] = ACTIONS(346), + [anon_sym_DOLLARtypeof] = ACTIONS(394), + [anon_sym_DOLLARtypefrom] = ACTIONS(394), + [anon_sym_DOLLARvatype] = ACTIONS(394), + [anon_sym_DOLLARevaltype] = ACTIONS(394), + [sym_real_literal] = ACTIONS(246), }, [17] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(17), [sym_doc_comment] = STATE(17), [sym_block_comment] = STATE(17), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1169), - [sym_const_declaration] = STATE(480), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(481), - [sym_expr_stmt] = STATE(481), - [sym_var_decl] = STATE(2091), - [sym_var_stmt] = STATE(481), - [sym_return_stmt] = STATE(481), - [sym_continue_stmt] = STATE(481), - [sym_break_stmt] = STATE(481), - [sym_defer_stmt] = STATE(481), - [sym_assert_stmt] = STATE(481), - [sym_declaration_stmt] = STATE(481), - [sym_nextcase_stmt] = STATE(481), - [sym_switch_stmt] = STATE(481), - [sym_if_stmt] = STATE(481), - [sym_for_stmt] = STATE(481), - [sym_foreach_stmt] = STATE(481), - [sym_while_stmt] = STATE(481), - [sym_do_stmt] = STATE(481), - [sym_asm_block_stmt] = STATE(481), - [sym_ct_stmt_body] = STATE(1756), - [sym_ct_assert_stmt] = STATE(481), - [sym_ct_echo_stmt] = STATE(481), - [sym_ct_if_stmt] = STATE(481), - [sym__ct_switch] = STATE(1646), - [sym_ct_switch_stmt] = STATE(481), - [sym_ct_for_stmt] = STATE(481), - [sym_ct_foreach_stmt] = STATE(481), - [sym__expr] = STATE(1271), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1647), - [aux_sym_compound_stmt_repeat1] = STATE(30), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(201), - [anon_sym_const] = ACTIONS(203), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(205), - [anon_sym_continue] = ACTIONS(207), - [anon_sym_break] = ACTIONS(209), - [anon_sym_defer] = ACTIONS(211), - [anon_sym_assert] = ACTIONS(213), - [anon_sym_nextcase] = ACTIONS(215), - [anon_sym_switch] = ACTIONS(217), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(219), - [anon_sym_for] = ACTIONS(221), - [anon_sym_foreach] = ACTIONS(223), - [anon_sym_foreach_r] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_do] = ACTIONS(227), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(229), - [anon_sym_DOLLARassert] = ACTIONS(231), - [anon_sym_DOLLARerror] = ACTIONS(233), - [anon_sym_DOLLARecho] = ACTIONS(235), - [anon_sym_DOLLARif] = ACTIONS(237), - [anon_sym_DOLLARcase] = ACTIONS(404), - [anon_sym_DOLLARdefault] = ACTIONS(404), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARendswitch] = ACTIONS(404), - [anon_sym_DOLLARfor] = ACTIONS(241), - [anon_sym_DOLLARforeach] = ACTIONS(243), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1175), + [sym_const_declaration] = STATE(446), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(443), + [sym_expr_stmt] = STATE(443), + [sym_var_decl] = STATE(1961), + [sym_var_stmt] = STATE(443), + [sym_return_stmt] = STATE(443), + [sym_continue_stmt] = STATE(443), + [sym_break_stmt] = STATE(443), + [sym_defer_stmt] = STATE(443), + [sym_assert_stmt] = STATE(443), + [sym_declaration_stmt] = STATE(443), + [sym_nextcase_stmt] = STATE(443), + [sym_switch_stmt] = STATE(443), + [sym_if_stmt] = STATE(443), + [sym_for_stmt] = STATE(443), + [sym_foreach_stmt] = STATE(443), + [sym_while_stmt] = STATE(443), + [sym_do_stmt] = STATE(443), + [sym_asm_block_stmt] = STATE(443), + [sym_ct_stmt_body] = STATE(1637), + [sym_ct_assert_stmt] = STATE(443), + [sym_ct_echo_stmt] = STATE(443), + [sym_ct_if_stmt] = STATE(443), + [sym__ct_switch] = STATE(1566), + [sym_ct_switch_stmt] = STATE(443), + [sym_ct_for_stmt] = STATE(443), + [sym_ct_foreach_stmt] = STATE(443), + [sym__expr] = STATE(1092), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1346), + [aux_sym_compound_stmt_repeat1] = STATE(24), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(195), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(197), + [anon_sym_const] = ACTIONS(199), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(201), + [anon_sym_continue] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_defer] = ACTIONS(207), + [anon_sym_assert] = ACTIONS(209), + [anon_sym_nextcase] = ACTIONS(211), + [anon_sym_switch] = ACTIONS(213), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(215), + [anon_sym_for] = ACTIONS(217), + [anon_sym_foreach] = ACTIONS(219), + [anon_sym_foreach_r] = ACTIONS(219), + [anon_sym_while] = ACTIONS(221), + [anon_sym_do] = ACTIONS(223), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(225), + [anon_sym_DOLLARassert] = ACTIONS(227), + [anon_sym_DOLLARerror] = ACTIONS(229), + [anon_sym_DOLLARecho] = ACTIONS(231), + [anon_sym_DOLLARif] = ACTIONS(233), + [anon_sym_DOLLARcase] = ACTIONS(397), + [anon_sym_DOLLARdefault] = ACTIONS(397), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARendswitch] = ACTIONS(397), + [anon_sym_DOLLARfor] = ACTIONS(237), + [anon_sym_DOLLARforeach] = ACTIONS(239), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [18] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(18), [sym_doc_comment] = STATE(18), [sym_block_comment] = STATE(18), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1169), - [sym_const_declaration] = STATE(480), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(481), - [sym_expr_stmt] = STATE(481), - [sym_var_decl] = STATE(2091), - [sym_var_stmt] = STATE(481), - [sym_return_stmt] = STATE(481), - [sym_continue_stmt] = STATE(481), - [sym_break_stmt] = STATE(481), - [sym_defer_stmt] = STATE(481), - [sym_assert_stmt] = STATE(481), - [sym_declaration_stmt] = STATE(481), - [sym_nextcase_stmt] = STATE(481), - [sym_switch_stmt] = STATE(481), - [sym_if_stmt] = STATE(481), - [sym_for_stmt] = STATE(481), - [sym_foreach_stmt] = STATE(481), - [sym_while_stmt] = STATE(481), - [sym_do_stmt] = STATE(481), - [sym_asm_block_stmt] = STATE(481), - [sym_ct_assert_stmt] = STATE(481), - [sym_ct_echo_stmt] = STATE(481), - [sym_ct_if_stmt] = STATE(481), - [sym__ct_switch] = STATE(1646), - [sym_ct_switch_stmt] = STATE(481), - [sym_ct_for_stmt] = STATE(481), - [sym_ct_foreach_stmt] = STATE(481), - [sym__expr] = STATE(1271), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1647), - [aux_sym_compound_stmt_repeat1] = STATE(18), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(247), - [sym_integer_literal] = ACTIONS(250), - [anon_sym_SQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(256), - [anon_sym_BQUOTE] = ACTIONS(259), - [sym_bytes_literal] = ACTIONS(262), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(265), - [sym_at_ident] = ACTIONS(268), - [sym_hash_ident] = ACTIONS(271), - [sym_type_ident] = ACTIONS(274), - [sym_ct_type_ident] = ACTIONS(277), - [sym_const_ident] = ACTIONS(280), - [sym_builtin] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(283), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_static] = ACTIONS(289), - [anon_sym_tlocal] = ACTIONS(289), - [anon_sym_SEMI] = ACTIONS(406), - [anon_sym_fn] = ACTIONS(295), - [anon_sym_LBRACE] = ACTIONS(409), - [anon_sym_const] = ACTIONS(412), - [anon_sym_var] = ACTIONS(306), - [anon_sym_return] = ACTIONS(415), - [anon_sym_continue] = ACTIONS(418), - [anon_sym_break] = ACTIONS(421), - [anon_sym_defer] = ACTIONS(424), - [anon_sym_assert] = ACTIONS(427), - [anon_sym_nextcase] = ACTIONS(430), - [anon_sym_switch] = ACTIONS(433), - [anon_sym_AMP_AMP] = ACTIONS(332), - [anon_sym_if] = ACTIONS(436), - [anon_sym_for] = ACTIONS(439), - [anon_sym_foreach] = ACTIONS(442), - [anon_sym_foreach_r] = ACTIONS(442), - [anon_sym_while] = ACTIONS(445), - [anon_sym_do] = ACTIONS(448), - [anon_sym_int] = ACTIONS(350), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_STAR] = ACTIONS(332), - [anon_sym_asm] = ACTIONS(451), - [anon_sym_DOLLARassert] = ACTIONS(454), - [anon_sym_DOLLARerror] = ACTIONS(457), - [anon_sym_DOLLARecho] = ACTIONS(460), - [anon_sym_DOLLARif] = ACTIONS(463), - [anon_sym_DOLLARcase] = ACTIONS(324), - [anon_sym_DOLLARdefault] = ACTIONS(324), - [anon_sym_DOLLARswitch] = ACTIONS(368), - [anon_sym_DOLLARendswitch] = ACTIONS(324), - [anon_sym_DOLLARfor] = ACTIONS(466), - [anon_sym_DOLLARforeach] = ACTIONS(469), - [anon_sym_DOLLARalignof] = ACTIONS(377), - [anon_sym_DOLLARextnameof] = ACTIONS(377), - [anon_sym_DOLLARnameof] = ACTIONS(377), - [anon_sym_DOLLARoffsetof] = ACTIONS(377), - [anon_sym_DOLLARqnameof] = ACTIONS(377), - [anon_sym_DOLLARvaconst] = ACTIONS(380), - [anon_sym_DOLLARvaarg] = ACTIONS(380), - [anon_sym_DOLLARvaref] = ACTIONS(380), - [anon_sym_DOLLARvaexpr] = ACTIONS(380), - [anon_sym_true] = ACTIONS(383), - [anon_sym_false] = ACTIONS(383), - [anon_sym_null] = ACTIONS(383), - [anon_sym_DOLLARvacount] = ACTIONS(383), - [anon_sym_DOLLARappend] = ACTIONS(380), - [anon_sym_DOLLARconcat] = ACTIONS(380), - [anon_sym_DOLLAReval] = ACTIONS(380), - [anon_sym_DOLLARis_const] = ACTIONS(380), - [anon_sym_DOLLARsizeof] = ACTIONS(380), - [anon_sym_DOLLARstringify] = ACTIONS(380), - [anon_sym_DOLLARand] = ACTIONS(386), - [anon_sym_DOLLARdefined] = ACTIONS(386), - [anon_sym_DOLLARembed] = ACTIONS(386), - [anon_sym_DOLLARor] = ACTIONS(386), - [anon_sym_DOLLARfeature] = ACTIONS(389), - [anon_sym_DOLLARassignable] = ACTIONS(392), - [anon_sym_BANG] = ACTIONS(332), - [anon_sym_TILDE] = ACTIONS(332), - [anon_sym_PLUS_PLUS] = ACTIONS(332), - [anon_sym_DASH_DASH] = ACTIONS(332), - [anon_sym_typeid] = ACTIONS(350), - [anon_sym_LBRACE_PIPE] = ACTIONS(395), - [anon_sym_void] = ACTIONS(350), - [anon_sym_bool] = ACTIONS(350), - [anon_sym_char] = ACTIONS(350), - [anon_sym_ichar] = ACTIONS(350), - [anon_sym_short] = ACTIONS(350), - [anon_sym_ushort] = ACTIONS(350), - [anon_sym_uint] = ACTIONS(350), - [anon_sym_long] = ACTIONS(350), - [anon_sym_ulong] = ACTIONS(350), - [anon_sym_int128] = ACTIONS(350), - [anon_sym_uint128] = ACTIONS(350), - [anon_sym_float] = ACTIONS(350), - [anon_sym_double] = ACTIONS(350), - [anon_sym_float16] = ACTIONS(350), - [anon_sym_bfloat16] = ACTIONS(350), - [anon_sym_float128] = ACTIONS(350), - [anon_sym_iptr] = ACTIONS(350), - [anon_sym_uptr] = ACTIONS(350), - [anon_sym_isz] = ACTIONS(350), - [anon_sym_usz] = ACTIONS(350), - [anon_sym_anyfault] = ACTIONS(350), - [anon_sym_any] = ACTIONS(350), - [anon_sym_DOLLARtypeof] = ACTIONS(398), - [anon_sym_DOLLARtypefrom] = ACTIONS(401), - [anon_sym_DOLLARvatype] = ACTIONS(401), - [anon_sym_DOLLARevaltype] = ACTIONS(401), - [sym_real_literal] = ACTIONS(250), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1165), + [sym_const_declaration] = STATE(555), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(556), + [sym_expr_stmt] = STATE(556), + [sym_var_decl] = STATE(2183), + [sym_var_stmt] = STATE(556), + [sym_return_stmt] = STATE(556), + [sym_continue_stmt] = STATE(556), + [sym_break_stmt] = STATE(556), + [sym_defer_stmt] = STATE(556), + [sym_assert_stmt] = STATE(556), + [sym_declaration_stmt] = STATE(556), + [sym_nextcase_stmt] = STATE(556), + [sym_switch_stmt] = STATE(556), + [sym_if_stmt] = STATE(556), + [sym_for_stmt] = STATE(556), + [sym_foreach_stmt] = STATE(556), + [sym_while_stmt] = STATE(556), + [sym_do_stmt] = STATE(556), + [sym_asm_block_stmt] = STATE(556), + [sym_ct_stmt_body] = STATE(1792), + [sym_ct_assert_stmt] = STATE(556), + [sym_ct_echo_stmt] = STATE(556), + [sym_ct_if_stmt] = STATE(556), + [sym__ct_switch] = STATE(1508), + [sym_ct_switch_stmt] = STATE(556), + [sym_ct_for_stmt] = STATE(556), + [sym_ct_foreach_stmt] = STATE(556), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1342), + [aux_sym_compound_stmt_repeat1] = STATE(32), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(399), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(401), + [anon_sym_const] = ACTIONS(403), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_break] = ACTIONS(409), + [anon_sym_defer] = ACTIONS(411), + [anon_sym_assert] = ACTIONS(413), + [anon_sym_nextcase] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(419), + [anon_sym_for] = ACTIONS(421), + [anon_sym_foreach] = ACTIONS(423), + [anon_sym_foreach_r] = ACTIONS(423), + [anon_sym_while] = ACTIONS(425), + [anon_sym_do] = ACTIONS(427), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(429), + [anon_sym_DOLLARassert] = ACTIONS(431), + [anon_sym_DOLLARerror] = ACTIONS(433), + [anon_sym_DOLLARecho] = ACTIONS(435), + [anon_sym_DOLLARif] = ACTIONS(437), + [anon_sym_DOLLARendif] = ACTIONS(439), + [anon_sym_DOLLARelse] = ACTIONS(441), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(443), + [anon_sym_DOLLARforeach] = ACTIONS(445), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [19] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(19), [sym_doc_comment] = STATE(19), [sym_block_comment] = STATE(19), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1165), + [sym_const_declaration] = STATE(555), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(556), + [sym_expr_stmt] = STATE(556), + [sym_var_decl] = STATE(2183), + [sym_var_stmt] = STATE(556), + [sym_return_stmt] = STATE(556), + [sym_continue_stmt] = STATE(556), + [sym_break_stmt] = STATE(556), + [sym_defer_stmt] = STATE(556), + [sym_assert_stmt] = STATE(556), + [sym_declaration_stmt] = STATE(556), + [sym_nextcase_stmt] = STATE(556), + [sym_switch_stmt] = STATE(556), + [sym_if_stmt] = STATE(556), + [sym_for_stmt] = STATE(556), + [sym_foreach_stmt] = STATE(556), + [sym_while_stmt] = STATE(556), + [sym_do_stmt] = STATE(556), + [sym_asm_block_stmt] = STATE(556), + [sym_ct_stmt_body] = STATE(1759), + [sym_ct_assert_stmt] = STATE(556), + [sym_ct_echo_stmt] = STATE(556), + [sym_ct_if_stmt] = STATE(556), + [sym__ct_switch] = STATE(1508), + [sym_ct_switch_stmt] = STATE(556), + [sym_ct_for_stmt] = STATE(556), + [sym_ct_foreach_stmt] = STATE(556), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1342), + [aux_sym_compound_stmt_repeat1] = STATE(32), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(399), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(401), + [anon_sym_const] = ACTIONS(403), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_break] = ACTIONS(409), + [anon_sym_defer] = ACTIONS(411), + [anon_sym_assert] = ACTIONS(413), + [anon_sym_nextcase] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(419), + [anon_sym_for] = ACTIONS(421), + [anon_sym_foreach] = ACTIONS(423), + [anon_sym_foreach_r] = ACTIONS(423), + [anon_sym_while] = ACTIONS(425), + [anon_sym_do] = ACTIONS(427), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(429), + [anon_sym_DOLLARassert] = ACTIONS(431), + [anon_sym_DOLLARerror] = ACTIONS(433), + [anon_sym_DOLLARecho] = ACTIONS(435), + [anon_sym_DOLLARif] = ACTIONS(437), + [anon_sym_DOLLARendif] = ACTIONS(447), + [anon_sym_DOLLARelse] = ACTIONS(449), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(443), + [anon_sym_DOLLARforeach] = ACTIONS(445), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), + }, + [20] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(20), + [sym_doc_comment] = STATE(20), + [sym_block_comment] = STATE(20), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1165), + [sym_const_declaration] = STATE(555), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(556), + [sym_expr_stmt] = STATE(556), + [sym_var_decl] = STATE(2183), + [sym_var_stmt] = STATE(556), + [sym_return_stmt] = STATE(556), + [sym_continue_stmt] = STATE(556), + [sym_break_stmt] = STATE(556), + [sym_defer_stmt] = STATE(556), + [sym_assert_stmt] = STATE(556), + [sym_declaration_stmt] = STATE(556), + [sym_nextcase_stmt] = STATE(556), + [sym_switch_stmt] = STATE(556), + [sym_if_stmt] = STATE(556), + [sym_for_stmt] = STATE(556), + [sym_foreach_stmt] = STATE(556), + [sym_while_stmt] = STATE(556), + [sym_do_stmt] = STATE(556), + [sym_asm_block_stmt] = STATE(556), + [sym_ct_stmt_body] = STATE(1791), + [sym_ct_assert_stmt] = STATE(556), + [sym_ct_echo_stmt] = STATE(556), + [sym_ct_if_stmt] = STATE(556), + [sym__ct_switch] = STATE(1508), + [sym_ct_switch_stmt] = STATE(556), + [sym_ct_for_stmt] = STATE(556), + [sym_ct_foreach_stmt] = STATE(556), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1342), + [aux_sym_compound_stmt_repeat1] = STATE(32), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(399), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(401), + [anon_sym_const] = ACTIONS(403), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_break] = ACTIONS(409), + [anon_sym_defer] = ACTIONS(411), + [anon_sym_assert] = ACTIONS(413), + [anon_sym_nextcase] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(419), + [anon_sym_for] = ACTIONS(421), + [anon_sym_foreach] = ACTIONS(423), + [anon_sym_foreach_r] = ACTIONS(423), + [anon_sym_while] = ACTIONS(425), + [anon_sym_do] = ACTIONS(427), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(429), + [anon_sym_DOLLARassert] = ACTIONS(431), + [anon_sym_DOLLARerror] = ACTIONS(433), + [anon_sym_DOLLARecho] = ACTIONS(435), + [anon_sym_DOLLARif] = ACTIONS(437), + [anon_sym_DOLLARendif] = ACTIONS(451), + [anon_sym_DOLLARelse] = ACTIONS(453), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(443), + [anon_sym_DOLLARforeach] = ACTIONS(445), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), + }, + [21] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(21), + [sym_doc_comment] = STATE(21), + [sym_block_comment] = STATE(21), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1162), + [sym_const_declaration] = STATE(364), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(396), + [sym_expr_stmt] = STATE(396), + [sym_var_decl] = STATE(2193), + [sym_var_stmt] = STATE(396), + [sym_return_stmt] = STATE(396), + [sym_continue_stmt] = STATE(396), + [sym_break_stmt] = STATE(396), + [sym_defer_stmt] = STATE(396), + [sym_assert_stmt] = STATE(396), + [sym_declaration_stmt] = STATE(396), + [sym_nextcase_stmt] = STATE(396), + [sym_switch_stmt] = STATE(396), + [sym_if_stmt] = STATE(396), + [sym_for_stmt] = STATE(396), + [sym_foreach_stmt] = STATE(396), + [sym_while_stmt] = STATE(396), + [sym_do_stmt] = STATE(396), + [sym_asm_block_stmt] = STATE(396), + [sym_ct_assert_stmt] = STATE(396), + [sym_ct_echo_stmt] = STATE(396), + [sym_ct_if_stmt] = STATE(396), + [sym__ct_switch] = STATE(1544), + [sym_ct_switch_stmt] = STATE(396), + [sym_ct_for_stmt] = STATE(396), + [sym_ct_foreach_stmt] = STATE(396), + [sym__expr] = STATE(1093), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1351), + [aux_sym_compound_stmt_repeat1] = STATE(30), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(93), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_RBRACE] = ACTIONS(455), + [anon_sym_const] = ACTIONS(101), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_case] = ACTIONS(457), + [anon_sym_default] = ACTIONS(457), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), + }, + [22] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(22), + [sym_doc_comment] = STATE(22), + [sym_block_comment] = STATE(22), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1162), + [sym_const_declaration] = STATE(364), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(396), + [sym_expr_stmt] = STATE(396), + [sym_var_decl] = STATE(2193), + [sym_var_stmt] = STATE(396), + [sym_return_stmt] = STATE(396), + [sym_continue_stmt] = STATE(396), + [sym_break_stmt] = STATE(396), + [sym_defer_stmt] = STATE(396), + [sym_assert_stmt] = STATE(396), + [sym_declaration_stmt] = STATE(396), + [sym_nextcase_stmt] = STATE(396), + [sym_switch_stmt] = STATE(396), + [sym_if_stmt] = STATE(396), + [sym_for_stmt] = STATE(396), + [sym_foreach_stmt] = STATE(396), + [sym_while_stmt] = STATE(396), + [sym_do_stmt] = STATE(396), + [sym_asm_block_stmt] = STATE(396), + [sym_ct_assert_stmt] = STATE(396), + [sym_ct_echo_stmt] = STATE(396), + [sym_ct_if_stmt] = STATE(396), + [sym__ct_switch] = STATE(1544), + [sym_ct_switch_stmt] = STATE(396), + [sym_ct_for_stmt] = STATE(396), + [sym_ct_foreach_stmt] = STATE(396), + [sym__expr] = STATE(1093), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1351), + [aux_sym_compound_stmt_repeat1] = STATE(31), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(93), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_RBRACE] = ACTIONS(459), + [anon_sym_const] = ACTIONS(101), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_case] = ACTIONS(461), + [anon_sym_default] = ACTIONS(461), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), + }, + [23] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(23), + [sym_doc_comment] = STATE(23), + [sym_block_comment] = STATE(23), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1162), + [sym_const_declaration] = STATE(364), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(396), + [sym_expr_stmt] = STATE(396), + [sym_var_decl] = STATE(2193), + [sym_var_stmt] = STATE(396), + [sym_return_stmt] = STATE(396), + [sym_continue_stmt] = STATE(396), + [sym_break_stmt] = STATE(396), + [sym_defer_stmt] = STATE(396), + [sym_assert_stmt] = STATE(396), + [sym_declaration_stmt] = STATE(396), + [sym_nextcase_stmt] = STATE(396), + [sym_switch_stmt] = STATE(396), + [sym_if_stmt] = STATE(396), + [sym_for_stmt] = STATE(396), + [sym_foreach_stmt] = STATE(396), + [sym_while_stmt] = STATE(396), + [sym_do_stmt] = STATE(396), + [sym_asm_block_stmt] = STATE(396), + [sym_ct_assert_stmt] = STATE(396), + [sym_ct_echo_stmt] = STATE(396), + [sym_ct_if_stmt] = STATE(396), + [sym__ct_switch] = STATE(1544), + [sym_ct_switch_stmt] = STATE(396), + [sym_ct_for_stmt] = STATE(396), + [sym_ct_foreach_stmt] = STATE(396), + [sym__expr] = STATE(1093), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1351), + [aux_sym_compound_stmt_repeat1] = STATE(26), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(93), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_RBRACE] = ACTIONS(463), + [anon_sym_const] = ACTIONS(101), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_case] = ACTIONS(465), + [anon_sym_default] = ACTIONS(465), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), + }, + [24] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(24), + [sym_doc_comment] = STATE(24), + [sym_block_comment] = STATE(24), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1175), + [sym_const_declaration] = STATE(446), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(443), + [sym_expr_stmt] = STATE(443), + [sym_var_decl] = STATE(1961), + [sym_var_stmt] = STATE(443), + [sym_return_stmt] = STATE(443), + [sym_continue_stmt] = STATE(443), + [sym_break_stmt] = STATE(443), + [sym_defer_stmt] = STATE(443), + [sym_assert_stmt] = STATE(443), + [sym_declaration_stmt] = STATE(443), + [sym_nextcase_stmt] = STATE(443), + [sym_switch_stmt] = STATE(443), + [sym_if_stmt] = STATE(443), + [sym_for_stmt] = STATE(443), + [sym_foreach_stmt] = STATE(443), + [sym_while_stmt] = STATE(443), + [sym_do_stmt] = STATE(443), + [sym_asm_block_stmt] = STATE(443), + [sym_ct_assert_stmt] = STATE(443), + [sym_ct_echo_stmt] = STATE(443), + [sym_ct_if_stmt] = STATE(443), + [sym__ct_switch] = STATE(1566), + [sym_ct_switch_stmt] = STATE(443), + [sym_ct_for_stmt] = STATE(443), + [sym_ct_foreach_stmt] = STATE(443), + [sym__expr] = STATE(1092), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1346), + [aux_sym_compound_stmt_repeat1] = STATE(25), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(195), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(197), + [anon_sym_const] = ACTIONS(199), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(201), + [anon_sym_continue] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_defer] = ACTIONS(207), + [anon_sym_assert] = ACTIONS(209), + [anon_sym_nextcase] = ACTIONS(211), + [anon_sym_switch] = ACTIONS(213), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(215), + [anon_sym_for] = ACTIONS(217), + [anon_sym_foreach] = ACTIONS(219), + [anon_sym_foreach_r] = ACTIONS(219), + [anon_sym_while] = ACTIONS(221), + [anon_sym_do] = ACTIONS(223), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(225), + [anon_sym_DOLLARassert] = ACTIONS(227), + [anon_sym_DOLLARerror] = ACTIONS(229), + [anon_sym_DOLLARecho] = ACTIONS(231), + [anon_sym_DOLLARif] = ACTIONS(233), + [anon_sym_DOLLARcase] = ACTIONS(467), + [anon_sym_DOLLARdefault] = ACTIONS(467), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARendswitch] = ACTIONS(467), + [anon_sym_DOLLARfor] = ACTIONS(237), + [anon_sym_DOLLARforeach] = ACTIONS(239), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), + }, + [25] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(25), + [sym_doc_comment] = STATE(25), + [sym_block_comment] = STATE(25), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1175), + [sym_const_declaration] = STATE(446), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(443), + [sym_expr_stmt] = STATE(443), + [sym_var_decl] = STATE(1961), + [sym_var_stmt] = STATE(443), + [sym_return_stmt] = STATE(443), + [sym_continue_stmt] = STATE(443), + [sym_break_stmt] = STATE(443), + [sym_defer_stmt] = STATE(443), + [sym_assert_stmt] = STATE(443), + [sym_declaration_stmt] = STATE(443), + [sym_nextcase_stmt] = STATE(443), + [sym_switch_stmt] = STATE(443), + [sym_if_stmt] = STATE(443), + [sym_for_stmt] = STATE(443), + [sym_foreach_stmt] = STATE(443), + [sym_while_stmt] = STATE(443), + [sym_do_stmt] = STATE(443), + [sym_asm_block_stmt] = STATE(443), + [sym_ct_assert_stmt] = STATE(443), + [sym_ct_echo_stmt] = STATE(443), + [sym_ct_if_stmt] = STATE(443), + [sym__ct_switch] = STATE(1566), + [sym_ct_switch_stmt] = STATE(443), + [sym_ct_for_stmt] = STATE(443), + [sym_ct_foreach_stmt] = STATE(443), + [sym__expr] = STATE(1092), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1346), + [aux_sym_compound_stmt_repeat1] = STATE(25), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(243), + [sym_integer_literal] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_DQUOTE] = ACTIONS(252), + [anon_sym_BQUOTE] = ACTIONS(255), + [sym_bytes_literal] = ACTIONS(258), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(261), + [sym_at_ident] = ACTIONS(264), + [sym_hash_ident] = ACTIONS(267), + [sym_type_ident] = ACTIONS(270), + [sym_ct_type_ident] = ACTIONS(273), + [sym_const_ident] = ACTIONS(276), + [sym_builtin] = ACTIONS(246), + [anon_sym_LPAREN] = ACTIONS(279), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_static] = ACTIONS(285), + [anon_sym_tlocal] = ACTIONS(285), + [anon_sym_SEMI] = ACTIONS(469), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(472), + [anon_sym_const] = ACTIONS(475), + [anon_sym_var] = ACTIONS(302), + [anon_sym_return] = ACTIONS(478), + [anon_sym_continue] = ACTIONS(481), + [anon_sym_break] = ACTIONS(484), + [anon_sym_defer] = ACTIONS(487), + [anon_sym_assert] = ACTIONS(490), + [anon_sym_nextcase] = ACTIONS(493), + [anon_sym_switch] = ACTIONS(496), + [anon_sym_AMP_AMP] = ACTIONS(328), + [anon_sym_if] = ACTIONS(499), + [anon_sym_for] = ACTIONS(502), + [anon_sym_foreach] = ACTIONS(505), + [anon_sym_foreach_r] = ACTIONS(505), + [anon_sym_while] = ACTIONS(508), + [anon_sym_do] = ACTIONS(511), + [anon_sym_int] = ACTIONS(346), + [anon_sym_PLUS] = ACTIONS(282), + [anon_sym_DASH] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(328), + [anon_sym_asm] = ACTIONS(514), + [anon_sym_DOLLARassert] = ACTIONS(517), + [anon_sym_DOLLARerror] = ACTIONS(520), + [anon_sym_DOLLARecho] = ACTIONS(523), + [anon_sym_DOLLARif] = ACTIONS(526), + [anon_sym_DOLLARcase] = ACTIONS(320), + [anon_sym_DOLLARdefault] = ACTIONS(320), + [anon_sym_DOLLARswitch] = ACTIONS(364), + [anon_sym_DOLLARendswitch] = ACTIONS(320), + [anon_sym_DOLLARfor] = ACTIONS(529), + [anon_sym_DOLLARforeach] = ACTIONS(532), + [anon_sym_DOLLARalignof] = ACTIONS(373), + [anon_sym_DOLLARextnameof] = ACTIONS(373), + [anon_sym_DOLLARnameof] = ACTIONS(373), + [anon_sym_DOLLARoffsetof] = ACTIONS(373), + [anon_sym_DOLLARqnameof] = ACTIONS(373), + [anon_sym_DOLLARvaconst] = ACTIONS(376), + [anon_sym_DOLLARvaarg] = ACTIONS(376), + [anon_sym_DOLLARvaref] = ACTIONS(376), + [anon_sym_DOLLARvaexpr] = ACTIONS(376), + [anon_sym_true] = ACTIONS(379), + [anon_sym_false] = ACTIONS(379), + [anon_sym_null] = ACTIONS(379), + [anon_sym_DOLLARvacount] = ACTIONS(379), + [anon_sym_DOLLARappend] = ACTIONS(376), + [anon_sym_DOLLARconcat] = ACTIONS(376), + [anon_sym_DOLLAReval] = ACTIONS(376), + [anon_sym_DOLLARis_const] = ACTIONS(376), + [anon_sym_DOLLARsizeof] = ACTIONS(376), + [anon_sym_DOLLARstringify] = ACTIONS(376), + [anon_sym_DOLLARand] = ACTIONS(382), + [anon_sym_DOLLARdefined] = ACTIONS(382), + [anon_sym_DOLLARembed] = ACTIONS(382), + [anon_sym_DOLLARor] = ACTIONS(382), + [anon_sym_DOLLARfeature] = ACTIONS(385), + [anon_sym_DOLLARassignable] = ACTIONS(388), + [anon_sym_BANG] = ACTIONS(328), + [anon_sym_TILDE] = ACTIONS(328), + [anon_sym_PLUS_PLUS] = ACTIONS(328), + [anon_sym_DASH_DASH] = ACTIONS(328), + [anon_sym_typeid] = ACTIONS(346), + [anon_sym_LBRACE_PIPE] = ACTIONS(391), + [anon_sym_void] = ACTIONS(346), + [anon_sym_bool] = ACTIONS(346), + [anon_sym_char] = ACTIONS(346), + [anon_sym_ichar] = ACTIONS(346), + [anon_sym_short] = ACTIONS(346), + [anon_sym_ushort] = ACTIONS(346), + [anon_sym_uint] = ACTIONS(346), + [anon_sym_long] = ACTIONS(346), + [anon_sym_ulong] = ACTIONS(346), + [anon_sym_int128] = ACTIONS(346), + [anon_sym_uint128] = ACTIONS(346), + [anon_sym_float] = ACTIONS(346), + [anon_sym_double] = ACTIONS(346), + [anon_sym_float16] = ACTIONS(346), + [anon_sym_bfloat16] = ACTIONS(346), + [anon_sym_float128] = ACTIONS(346), + [anon_sym_iptr] = ACTIONS(346), + [anon_sym_uptr] = ACTIONS(346), + [anon_sym_isz] = ACTIONS(346), + [anon_sym_usz] = ACTIONS(346), + [anon_sym_anyfault] = ACTIONS(346), + [anon_sym_any] = ACTIONS(346), + [anon_sym_DOLLARtypeof] = ACTIONS(394), + [anon_sym_DOLLARtypefrom] = ACTIONS(394), + [anon_sym_DOLLARvatype] = ACTIONS(394), + [anon_sym_DOLLARevaltype] = ACTIONS(394), + [sym_real_literal] = ACTIONS(246), + }, + [26] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(26), + [sym_doc_comment] = STATE(26), + [sym_block_comment] = STATE(26), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1162), + [sym_const_declaration] = STATE(364), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(396), + [sym_expr_stmt] = STATE(396), + [sym_var_decl] = STATE(2193), + [sym_var_stmt] = STATE(396), + [sym_return_stmt] = STATE(396), + [sym_continue_stmt] = STATE(396), + [sym_break_stmt] = STATE(396), + [sym_defer_stmt] = STATE(396), + [sym_assert_stmt] = STATE(396), + [sym_declaration_stmt] = STATE(396), + [sym_nextcase_stmt] = STATE(396), + [sym_switch_stmt] = STATE(396), + [sym_if_stmt] = STATE(396), + [sym_for_stmt] = STATE(396), + [sym_foreach_stmt] = STATE(396), + [sym_while_stmt] = STATE(396), + [sym_do_stmt] = STATE(396), + [sym_asm_block_stmt] = STATE(396), + [sym_ct_assert_stmt] = STATE(396), + [sym_ct_echo_stmt] = STATE(396), + [sym_ct_if_stmt] = STATE(396), + [sym__ct_switch] = STATE(1544), + [sym_ct_switch_stmt] = STATE(396), + [sym_ct_for_stmt] = STATE(396), + [sym_ct_foreach_stmt] = STATE(396), + [sym__expr] = STATE(1093), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1351), + [aux_sym_compound_stmt_repeat1] = STATE(16), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(93), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_RBRACE] = ACTIONS(535), + [anon_sym_const] = ACTIONS(101), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_case] = ACTIONS(537), + [anon_sym_default] = ACTIONS(537), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), + }, + [27] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(27), + [sym_doc_comment] = STATE(27), + [sym_block_comment] = STATE(27), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1165), + [sym_const_declaration] = STATE(555), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(556), + [sym_expr_stmt] = STATE(556), + [sym_var_decl] = STATE(2183), + [sym_var_stmt] = STATE(556), + [sym_return_stmt] = STATE(556), + [sym_continue_stmt] = STATE(556), + [sym_break_stmt] = STATE(556), + [sym_defer_stmt] = STATE(556), + [sym_assert_stmt] = STATE(556), + [sym_declaration_stmt] = STATE(556), + [sym_nextcase_stmt] = STATE(556), + [sym_switch_stmt] = STATE(556), + [sym_if_stmt] = STATE(556), + [sym_for_stmt] = STATE(556), + [sym_foreach_stmt] = STATE(556), + [sym_while_stmt] = STATE(556), + [sym_do_stmt] = STATE(556), + [sym_asm_block_stmt] = STATE(556), + [sym_ct_stmt_body] = STATE(1847), + [sym_ct_assert_stmt] = STATE(556), + [sym_ct_echo_stmt] = STATE(556), + [sym_ct_if_stmt] = STATE(556), + [sym__ct_switch] = STATE(1508), + [sym_ct_switch_stmt] = STATE(556), + [sym_ct_for_stmt] = STATE(556), + [sym_ct_foreach_stmt] = STATE(556), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1342), + [aux_sym_compound_stmt_repeat1] = STATE(32), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(399), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(401), + [anon_sym_const] = ACTIONS(403), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_break] = ACTIONS(409), + [anon_sym_defer] = ACTIONS(411), + [anon_sym_assert] = ACTIONS(413), + [anon_sym_nextcase] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(419), + [anon_sym_for] = ACTIONS(421), + [anon_sym_foreach] = ACTIONS(423), + [anon_sym_foreach_r] = ACTIONS(423), + [anon_sym_while] = ACTIONS(425), + [anon_sym_do] = ACTIONS(427), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(429), + [anon_sym_DOLLARassert] = ACTIONS(431), + [anon_sym_DOLLARerror] = ACTIONS(433), + [anon_sym_DOLLARecho] = ACTIONS(435), + [anon_sym_DOLLARif] = ACTIONS(437), + [anon_sym_DOLLARendif] = ACTIONS(539), + [anon_sym_DOLLARelse] = ACTIONS(541), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(443), + [anon_sym_DOLLARforeach] = ACTIONS(445), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), + }, + [28] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(28), + [sym_doc_comment] = STATE(28), + [sym_block_comment] = STATE(28), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1165), + [sym_const_declaration] = STATE(555), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(556), + [sym_expr_stmt] = STATE(556), + [sym_var_decl] = STATE(2183), + [sym_var_stmt] = STATE(556), + [sym_return_stmt] = STATE(556), + [sym_continue_stmt] = STATE(556), + [sym_break_stmt] = STATE(556), + [sym_defer_stmt] = STATE(556), + [sym_assert_stmt] = STATE(556), + [sym_declaration_stmt] = STATE(556), + [sym_nextcase_stmt] = STATE(556), + [sym_switch_stmt] = STATE(556), + [sym_if_stmt] = STATE(556), + [sym_for_stmt] = STATE(556), + [sym_foreach_stmt] = STATE(556), + [sym_while_stmt] = STATE(556), + [sym_do_stmt] = STATE(556), + [sym_asm_block_stmt] = STATE(556), + [sym_ct_stmt_body] = STATE(1881), + [sym_ct_assert_stmt] = STATE(556), + [sym_ct_echo_stmt] = STATE(556), + [sym_ct_if_stmt] = STATE(556), + [sym__ct_switch] = STATE(1508), + [sym_ct_switch_stmt] = STATE(556), + [sym_ct_for_stmt] = STATE(556), + [sym_ct_foreach_stmt] = STATE(556), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1342), + [aux_sym_compound_stmt_repeat1] = STATE(32), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(399), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(401), + [anon_sym_const] = ACTIONS(403), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_break] = ACTIONS(409), + [anon_sym_defer] = ACTIONS(411), + [anon_sym_assert] = ACTIONS(413), + [anon_sym_nextcase] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(419), + [anon_sym_for] = ACTIONS(421), + [anon_sym_foreach] = ACTIONS(423), + [anon_sym_foreach_r] = ACTIONS(423), + [anon_sym_while] = ACTIONS(425), + [anon_sym_do] = ACTIONS(427), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(429), + [anon_sym_DOLLARassert] = ACTIONS(431), + [anon_sym_DOLLARerror] = ACTIONS(433), + [anon_sym_DOLLARecho] = ACTIONS(435), + [anon_sym_DOLLARif] = ACTIONS(437), + [anon_sym_DOLLARendif] = ACTIONS(543), + [anon_sym_DOLLARelse] = ACTIONS(545), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(443), + [anon_sym_DOLLARforeach] = ACTIONS(445), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), + }, + [29] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(29), + [sym_doc_comment] = STATE(29), + [sym_block_comment] = STATE(29), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1165), + [sym_const_declaration] = STATE(555), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(556), + [sym_expr_stmt] = STATE(556), + [sym_var_decl] = STATE(2183), + [sym_var_stmt] = STATE(556), + [sym_return_stmt] = STATE(556), + [sym_continue_stmt] = STATE(556), + [sym_break_stmt] = STATE(556), + [sym_defer_stmt] = STATE(556), + [sym_assert_stmt] = STATE(556), + [sym_declaration_stmt] = STATE(556), + [sym_nextcase_stmt] = STATE(556), + [sym_switch_stmt] = STATE(556), + [sym_if_stmt] = STATE(556), + [sym_for_stmt] = STATE(556), + [sym_foreach_stmt] = STATE(556), + [sym_while_stmt] = STATE(556), + [sym_do_stmt] = STATE(556), + [sym_asm_block_stmt] = STATE(556), + [sym_ct_stmt_body] = STATE(1774), + [sym_ct_assert_stmt] = STATE(556), + [sym_ct_echo_stmt] = STATE(556), + [sym_ct_if_stmt] = STATE(556), + [sym__ct_switch] = STATE(1508), + [sym_ct_switch_stmt] = STATE(556), + [sym_ct_for_stmt] = STATE(556), + [sym_ct_foreach_stmt] = STATE(556), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1342), + [aux_sym_compound_stmt_repeat1] = STATE(32), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(399), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(401), + [anon_sym_const] = ACTIONS(403), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_break] = ACTIONS(409), + [anon_sym_defer] = ACTIONS(411), + [anon_sym_assert] = ACTIONS(413), + [anon_sym_nextcase] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(419), + [anon_sym_for] = ACTIONS(421), + [anon_sym_foreach] = ACTIONS(423), + [anon_sym_foreach_r] = ACTIONS(423), + [anon_sym_while] = ACTIONS(425), + [anon_sym_do] = ACTIONS(427), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(429), + [anon_sym_DOLLARassert] = ACTIONS(431), + [anon_sym_DOLLARerror] = ACTIONS(433), + [anon_sym_DOLLARecho] = ACTIONS(435), + [anon_sym_DOLLARif] = ACTIONS(437), + [anon_sym_DOLLARendif] = ACTIONS(547), + [anon_sym_DOLLARelse] = ACTIONS(549), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(443), + [anon_sym_DOLLARforeach] = ACTIONS(445), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), + }, + [30] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(30), + [sym_doc_comment] = STATE(30), + [sym_block_comment] = STATE(30), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1162), + [sym_const_declaration] = STATE(364), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(396), + [sym_expr_stmt] = STATE(396), + [sym_var_decl] = STATE(2193), + [sym_var_stmt] = STATE(396), + [sym_return_stmt] = STATE(396), + [sym_continue_stmt] = STATE(396), + [sym_break_stmt] = STATE(396), + [sym_defer_stmt] = STATE(396), + [sym_assert_stmt] = STATE(396), + [sym_declaration_stmt] = STATE(396), + [sym_nextcase_stmt] = STATE(396), + [sym_switch_stmt] = STATE(396), + [sym_if_stmt] = STATE(396), + [sym_for_stmt] = STATE(396), + [sym_foreach_stmt] = STATE(396), + [sym_while_stmt] = STATE(396), + [sym_do_stmt] = STATE(396), + [sym_asm_block_stmt] = STATE(396), + [sym_ct_assert_stmt] = STATE(396), + [sym_ct_echo_stmt] = STATE(396), + [sym_ct_if_stmt] = STATE(396), + [sym__ct_switch] = STATE(1544), + [sym_ct_switch_stmt] = STATE(396), + [sym_ct_for_stmt] = STATE(396), + [sym_ct_foreach_stmt] = STATE(396), + [sym__expr] = STATE(1093), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1351), + [aux_sym_compound_stmt_repeat1] = STATE(16), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(93), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_RBRACE] = ACTIONS(551), + [anon_sym_const] = ACTIONS(101), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_case] = ACTIONS(553), + [anon_sym_default] = ACTIONS(553), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), + }, + [31] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(31), + [sym_doc_comment] = STATE(31), + [sym_block_comment] = STATE(31), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1162), + [sym_const_declaration] = STATE(364), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(396), + [sym_expr_stmt] = STATE(396), + [sym_var_decl] = STATE(2193), + [sym_var_stmt] = STATE(396), + [sym_return_stmt] = STATE(396), + [sym_continue_stmt] = STATE(396), + [sym_break_stmt] = STATE(396), + [sym_defer_stmt] = STATE(396), + [sym_assert_stmt] = STATE(396), + [sym_declaration_stmt] = STATE(396), + [sym_nextcase_stmt] = STATE(396), + [sym_switch_stmt] = STATE(396), + [sym_if_stmt] = STATE(396), + [sym_for_stmt] = STATE(396), + [sym_foreach_stmt] = STATE(396), + [sym_while_stmt] = STATE(396), + [sym_do_stmt] = STATE(396), + [sym_asm_block_stmt] = STATE(396), + [sym_ct_assert_stmt] = STATE(396), + [sym_ct_echo_stmt] = STATE(396), + [sym_ct_if_stmt] = STATE(396), + [sym__ct_switch] = STATE(1544), + [sym_ct_switch_stmt] = STATE(396), + [sym_ct_for_stmt] = STATE(396), + [sym_ct_foreach_stmt] = STATE(396), + [sym__expr] = STATE(1093), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1351), + [aux_sym_compound_stmt_repeat1] = STATE(16), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(93), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_RBRACE] = ACTIONS(555), + [anon_sym_const] = ACTIONS(101), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_case] = ACTIONS(557), + [anon_sym_default] = ACTIONS(557), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), + }, + [32] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(32), + [sym_doc_comment] = STATE(32), + [sym_block_comment] = STATE(32), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1165), + [sym_const_declaration] = STATE(555), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(556), + [sym_expr_stmt] = STATE(556), + [sym_var_decl] = STATE(2183), + [sym_var_stmt] = STATE(556), + [sym_return_stmt] = STATE(556), + [sym_continue_stmt] = STATE(556), + [sym_break_stmt] = STATE(556), + [sym_defer_stmt] = STATE(556), + [sym_assert_stmt] = STATE(556), + [sym_declaration_stmt] = STATE(556), + [sym_nextcase_stmt] = STATE(556), + [sym_switch_stmt] = STATE(556), + [sym_if_stmt] = STATE(556), + [sym_for_stmt] = STATE(556), + [sym_foreach_stmt] = STATE(556), + [sym_while_stmt] = STATE(556), + [sym_do_stmt] = STATE(556), + [sym_asm_block_stmt] = STATE(556), + [sym_ct_assert_stmt] = STATE(556), + [sym_ct_echo_stmt] = STATE(556), + [sym_ct_if_stmt] = STATE(556), + [sym__ct_switch] = STATE(1508), + [sym_ct_switch_stmt] = STATE(556), + [sym_ct_for_stmt] = STATE(556), + [sym_ct_foreach_stmt] = STATE(556), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1342), + [aux_sym_compound_stmt_repeat1] = STATE(54), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(399), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(401), + [anon_sym_const] = ACTIONS(403), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_break] = ACTIONS(409), + [anon_sym_defer] = ACTIONS(411), + [anon_sym_assert] = ACTIONS(413), + [anon_sym_nextcase] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(419), + [anon_sym_for] = ACTIONS(421), + [anon_sym_foreach] = ACTIONS(423), + [anon_sym_foreach_r] = ACTIONS(423), + [anon_sym_while] = ACTIONS(425), + [anon_sym_do] = ACTIONS(427), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(429), + [anon_sym_DOLLARassert] = ACTIONS(431), + [anon_sym_DOLLARerror] = ACTIONS(433), + [anon_sym_DOLLARecho] = ACTIONS(435), + [anon_sym_DOLLARif] = ACTIONS(437), + [anon_sym_DOLLARendif] = ACTIONS(467), + [anon_sym_DOLLARelse] = ACTIONS(467), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(443), + [anon_sym_DOLLARforeach] = ACTIONS(445), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), + }, + [33] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(33), + [sym_doc_comment] = STATE(33), + [sym_block_comment] = STATE(33), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), [sym_local_decl_storage] = STATE(1170), + [sym_const_declaration] = STATE(642), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(641), + [sym_expr_stmt] = STATE(641), + [sym_var_decl] = STATE(1985), + [sym_var_stmt] = STATE(641), + [sym_return_stmt] = STATE(641), + [sym_continue_stmt] = STATE(641), + [sym_break_stmt] = STATE(641), + [sym_defer_stmt] = STATE(641), + [sym_assert_stmt] = STATE(641), + [sym_declaration_stmt] = STATE(641), + [sym_nextcase_stmt] = STATE(641), + [sym_switch_stmt] = STATE(641), + [sym_if_stmt] = STATE(641), + [sym_for_stmt] = STATE(641), + [sym_foreach_stmt] = STATE(641), + [sym_while_stmt] = STATE(641), + [sym_do_stmt] = STATE(641), + [sym_asm_block_stmt] = STATE(641), + [sym_ct_stmt_body] = STATE(2131), + [sym_ct_assert_stmt] = STATE(641), + [sym_ct_echo_stmt] = STATE(641), + [sym_ct_if_stmt] = STATE(641), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(641), + [sym_ct_for_stmt] = STATE(641), + [sym_ct_foreach_stmt] = STATE(641), + [sym__expr] = STATE(1100), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1357), + [aux_sym_compound_stmt_repeat1] = STATE(86), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(559), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(561), + [anon_sym_const] = ACTIONS(563), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(565), + [anon_sym_continue] = ACTIONS(567), + [anon_sym_break] = ACTIONS(569), + [anon_sym_defer] = ACTIONS(571), + [anon_sym_assert] = ACTIONS(573), + [anon_sym_nextcase] = ACTIONS(575), + [anon_sym_switch] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(579), + [anon_sym_for] = ACTIONS(581), + [anon_sym_foreach] = ACTIONS(583), + [anon_sym_foreach_r] = ACTIONS(583), + [anon_sym_while] = ACTIONS(585), + [anon_sym_do] = ACTIONS(587), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(589), + [anon_sym_DOLLARassert] = ACTIONS(591), + [anon_sym_DOLLARerror] = ACTIONS(593), + [anon_sym_DOLLARecho] = ACTIONS(595), + [anon_sym_DOLLARif] = ACTIONS(597), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(599), + [anon_sym_DOLLARforeach] = ACTIONS(601), + [anon_sym_DOLLARendforeach] = ACTIONS(603), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), + }, + [34] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(34), + [sym_doc_comment] = STATE(34), + [sym_block_comment] = STATE(34), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1173), + [sym_const_declaration] = STATE(716), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(715), + [sym_expr_stmt] = STATE(715), + [sym_var_decl] = STATE(1937), + [sym_var_stmt] = STATE(715), + [sym_return_stmt] = STATE(715), + [sym_continue_stmt] = STATE(715), + [sym_break_stmt] = STATE(715), + [sym_defer_stmt] = STATE(715), + [sym_assert_stmt] = STATE(715), + [sym_declaration_stmt] = STATE(715), + [sym_nextcase_stmt] = STATE(715), + [sym_switch_stmt] = STATE(715), + [sym_if_stmt] = STATE(715), + [sym_for_stmt] = STATE(715), + [sym_foreach_stmt] = STATE(715), + [sym_while_stmt] = STATE(715), + [sym_do_stmt] = STATE(715), + [sym_asm_block_stmt] = STATE(715), + [sym_ct_stmt_body] = STATE(1908), + [sym_ct_assert_stmt] = STATE(715), + [sym_ct_echo_stmt] = STATE(715), + [sym_ct_if_stmt] = STATE(715), + [sym__ct_switch] = STATE(1545), + [sym_ct_switch_stmt] = STATE(715), + [sym_ct_for_stmt] = STATE(715), + [sym_ct_foreach_stmt] = STATE(715), + [sym__expr] = STATE(1109), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1338), + [aux_sym_compound_stmt_repeat1] = STATE(89), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(605), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(607), + [anon_sym_const] = ACTIONS(609), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_break] = ACTIONS(615), + [anon_sym_defer] = ACTIONS(617), + [anon_sym_assert] = ACTIONS(619), + [anon_sym_nextcase] = ACTIONS(621), + [anon_sym_switch] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(625), + [anon_sym_for] = ACTIONS(627), + [anon_sym_foreach] = ACTIONS(629), + [anon_sym_foreach_r] = ACTIONS(629), + [anon_sym_while] = ACTIONS(631), + [anon_sym_do] = ACTIONS(633), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(635), + [anon_sym_DOLLARassert] = ACTIONS(637), + [anon_sym_DOLLARerror] = ACTIONS(639), + [anon_sym_DOLLARecho] = ACTIONS(641), + [anon_sym_DOLLARif] = ACTIONS(643), + [anon_sym_DOLLARendif] = ACTIONS(645), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(647), + [anon_sym_DOLLARforeach] = ACTIONS(649), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), + }, + [35] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(35), + [sym_doc_comment] = STATE(35), + [sym_block_comment] = STATE(35), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1169), [sym_const_declaration] = STATE(593), - [sym_lambda_declaration] = STATE(1679), + [sym_lambda_declaration] = STATE(1480), [sym_compound_stmt] = STATE(594), [sym_expr_stmt] = STATE(594), - [sym_var_decl] = STATE(2285), + [sym_var_decl] = STATE(2089), [sym_var_stmt] = STATE(594), [sym_return_stmt] = STATE(594), [sym_continue_stmt] = STATE(594), @@ -16797,552 +19279,537 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_while_stmt] = STATE(594), [sym_do_stmt] = STATE(594), [sym_asm_block_stmt] = STATE(594), - [sym_ct_stmt_body] = STATE(2048), + [sym_ct_stmt_body] = STATE(1929), [sym_ct_assert_stmt] = STATE(594), [sym_ct_echo_stmt] = STATE(594), [sym_ct_if_stmt] = STATE(594), - [sym__ct_switch] = STATE(1604), + [sym__ct_switch] = STATE(1521), [sym_ct_switch_stmt] = STATE(594), [sym_ct_for_stmt] = STATE(594), [sym_ct_foreach_stmt] = STATE(594), - [sym__expr] = STATE(1288), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1595), - [aux_sym_compound_stmt_repeat1] = STATE(39), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(472), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(474), - [anon_sym_const] = ACTIONS(476), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(478), - [anon_sym_continue] = ACTIONS(480), - [anon_sym_break] = ACTIONS(482), - [anon_sym_defer] = ACTIONS(484), - [anon_sym_assert] = ACTIONS(486), - [anon_sym_nextcase] = ACTIONS(488), - [anon_sym_switch] = ACTIONS(490), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(492), - [anon_sym_for] = ACTIONS(494), - [anon_sym_foreach] = ACTIONS(496), - [anon_sym_foreach_r] = ACTIONS(496), - [anon_sym_while] = ACTIONS(498), - [anon_sym_do] = ACTIONS(500), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(502), - [anon_sym_DOLLARassert] = ACTIONS(504), - [anon_sym_DOLLARerror] = ACTIONS(506), - [anon_sym_DOLLARecho] = ACTIONS(508), - [anon_sym_DOLLARif] = ACTIONS(510), - [anon_sym_DOLLARendif] = ACTIONS(512), - [anon_sym_DOLLARelse] = ACTIONS(514), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(516), - [anon_sym_DOLLARforeach] = ACTIONS(518), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym__expr] = STATE(1087), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1353), + [aux_sym_compound_stmt_repeat1] = STATE(79), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(651), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(653), + [anon_sym_const] = ACTIONS(655), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(657), + [anon_sym_continue] = ACTIONS(659), + [anon_sym_break] = ACTIONS(661), + [anon_sym_defer] = ACTIONS(663), + [anon_sym_assert] = ACTIONS(665), + [anon_sym_nextcase] = ACTIONS(667), + [anon_sym_switch] = ACTIONS(669), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(671), + [anon_sym_for] = ACTIONS(673), + [anon_sym_foreach] = ACTIONS(675), + [anon_sym_foreach_r] = ACTIONS(675), + [anon_sym_while] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(681), + [anon_sym_DOLLARassert] = ACTIONS(683), + [anon_sym_DOLLARerror] = ACTIONS(685), + [anon_sym_DOLLARecho] = ACTIONS(687), + [anon_sym_DOLLARif] = ACTIONS(689), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(691), + [anon_sym_DOLLARendfor] = ACTIONS(693), + [anon_sym_DOLLARforeach] = ACTIONS(695), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, - [20] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(20), - [sym_doc_comment] = STATE(20), - [sym_block_comment] = STATE(20), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1170), - [sym_const_declaration] = STATE(593), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(594), - [sym_expr_stmt] = STATE(594), - [sym_var_decl] = STATE(2285), - [sym_var_stmt] = STATE(594), - [sym_return_stmt] = STATE(594), - [sym_continue_stmt] = STATE(594), - [sym_break_stmt] = STATE(594), - [sym_defer_stmt] = STATE(594), - [sym_assert_stmt] = STATE(594), - [sym_declaration_stmt] = STATE(594), - [sym_nextcase_stmt] = STATE(594), - [sym_switch_stmt] = STATE(594), - [sym_if_stmt] = STATE(594), - [sym_for_stmt] = STATE(594), - [sym_foreach_stmt] = STATE(594), - [sym_while_stmt] = STATE(594), - [sym_do_stmt] = STATE(594), - [sym_asm_block_stmt] = STATE(594), - [sym_ct_stmt_body] = STATE(1973), - [sym_ct_assert_stmt] = STATE(594), - [sym_ct_echo_stmt] = STATE(594), - [sym_ct_if_stmt] = STATE(594), - [sym__ct_switch] = STATE(1604), - [sym_ct_switch_stmt] = STATE(594), - [sym_ct_for_stmt] = STATE(594), - [sym_ct_foreach_stmt] = STATE(594), - [sym__expr] = STATE(1288), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1595), - [aux_sym_compound_stmt_repeat1] = STATE(39), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(472), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(474), - [anon_sym_const] = ACTIONS(476), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(478), - [anon_sym_continue] = ACTIONS(480), - [anon_sym_break] = ACTIONS(482), - [anon_sym_defer] = ACTIONS(484), - [anon_sym_assert] = ACTIONS(486), - [anon_sym_nextcase] = ACTIONS(488), - [anon_sym_switch] = ACTIONS(490), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(492), - [anon_sym_for] = ACTIONS(494), - [anon_sym_foreach] = ACTIONS(496), - [anon_sym_foreach_r] = ACTIONS(496), - [anon_sym_while] = ACTIONS(498), - [anon_sym_do] = ACTIONS(500), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(502), - [anon_sym_DOLLARassert] = ACTIONS(504), - [anon_sym_DOLLARerror] = ACTIONS(506), - [anon_sym_DOLLARecho] = ACTIONS(508), - [anon_sym_DOLLARif] = ACTIONS(510), - [anon_sym_DOLLARendif] = ACTIONS(520), - [anon_sym_DOLLARelse] = ACTIONS(522), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(516), - [anon_sym_DOLLARforeach] = ACTIONS(518), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [36] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(36), + [sym_doc_comment] = STATE(36), + [sym_block_comment] = STATE(36), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1173), + [sym_const_declaration] = STATE(716), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(715), + [sym_expr_stmt] = STATE(715), + [sym_var_decl] = STATE(1937), + [sym_var_stmt] = STATE(715), + [sym_return_stmt] = STATE(715), + [sym_continue_stmt] = STATE(715), + [sym_break_stmt] = STATE(715), + [sym_defer_stmt] = STATE(715), + [sym_assert_stmt] = STATE(715), + [sym_declaration_stmt] = STATE(715), + [sym_nextcase_stmt] = STATE(715), + [sym_switch_stmt] = STATE(715), + [sym_if_stmt] = STATE(715), + [sym_for_stmt] = STATE(715), + [sym_foreach_stmt] = STATE(715), + [sym_while_stmt] = STATE(715), + [sym_do_stmt] = STATE(715), + [sym_asm_block_stmt] = STATE(715), + [sym_ct_stmt_body] = STATE(1982), + [sym_ct_assert_stmt] = STATE(715), + [sym_ct_echo_stmt] = STATE(715), + [sym_ct_if_stmt] = STATE(715), + [sym__ct_switch] = STATE(1545), + [sym_ct_switch_stmt] = STATE(715), + [sym_ct_for_stmt] = STATE(715), + [sym_ct_foreach_stmt] = STATE(715), + [sym__expr] = STATE(1109), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1338), + [aux_sym_compound_stmt_repeat1] = STATE(89), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(605), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(607), + [anon_sym_const] = ACTIONS(609), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_break] = ACTIONS(615), + [anon_sym_defer] = ACTIONS(617), + [anon_sym_assert] = ACTIONS(619), + [anon_sym_nextcase] = ACTIONS(621), + [anon_sym_switch] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(625), + [anon_sym_for] = ACTIONS(627), + [anon_sym_foreach] = ACTIONS(629), + [anon_sym_foreach_r] = ACTIONS(629), + [anon_sym_while] = ACTIONS(631), + [anon_sym_do] = ACTIONS(633), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(635), + [anon_sym_DOLLARassert] = ACTIONS(637), + [anon_sym_DOLLARerror] = ACTIONS(639), + [anon_sym_DOLLARecho] = ACTIONS(641), + [anon_sym_DOLLARif] = ACTIONS(643), + [anon_sym_DOLLARendif] = ACTIONS(697), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(647), + [anon_sym_DOLLARforeach] = ACTIONS(649), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, - [21] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(21), - [sym_doc_comment] = STATE(21), - [sym_block_comment] = STATE(21), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), + [37] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(37), + [sym_doc_comment] = STATE(37), + [sym_block_comment] = STATE(37), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), [sym_local_decl_storage] = STATE(1170), - [sym_const_declaration] = STATE(593), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(594), - [sym_expr_stmt] = STATE(594), - [sym_var_decl] = STATE(2285), - [sym_var_stmt] = STATE(594), - [sym_return_stmt] = STATE(594), - [sym_continue_stmt] = STATE(594), - [sym_break_stmt] = STATE(594), - [sym_defer_stmt] = STATE(594), - [sym_assert_stmt] = STATE(594), - [sym_declaration_stmt] = STATE(594), - [sym_nextcase_stmt] = STATE(594), - [sym_switch_stmt] = STATE(594), - [sym_if_stmt] = STATE(594), - [sym_for_stmt] = STATE(594), - [sym_foreach_stmt] = STATE(594), - [sym_while_stmt] = STATE(594), - [sym_do_stmt] = STATE(594), - [sym_asm_block_stmt] = STATE(594), - [sym_ct_stmt_body] = STATE(1910), - [sym_ct_assert_stmt] = STATE(594), - [sym_ct_echo_stmt] = STATE(594), - [sym_ct_if_stmt] = STATE(594), - [sym__ct_switch] = STATE(1604), - [sym_ct_switch_stmt] = STATE(594), - [sym_ct_for_stmt] = STATE(594), - [sym_ct_foreach_stmt] = STATE(594), - [sym__expr] = STATE(1288), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1595), - [aux_sym_compound_stmt_repeat1] = STATE(39), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(472), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(474), - [anon_sym_const] = ACTIONS(476), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(478), - [anon_sym_continue] = ACTIONS(480), - [anon_sym_break] = ACTIONS(482), - [anon_sym_defer] = ACTIONS(484), - [anon_sym_assert] = ACTIONS(486), - [anon_sym_nextcase] = ACTIONS(488), - [anon_sym_switch] = ACTIONS(490), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(492), - [anon_sym_for] = ACTIONS(494), - [anon_sym_foreach] = ACTIONS(496), - [anon_sym_foreach_r] = ACTIONS(496), - [anon_sym_while] = ACTIONS(498), - [anon_sym_do] = ACTIONS(500), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(502), - [anon_sym_DOLLARassert] = ACTIONS(504), - [anon_sym_DOLLARerror] = ACTIONS(506), - [anon_sym_DOLLARecho] = ACTIONS(508), - [anon_sym_DOLLARif] = ACTIONS(510), - [anon_sym_DOLLARendif] = ACTIONS(524), - [anon_sym_DOLLARelse] = ACTIONS(526), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(516), - [anon_sym_DOLLARforeach] = ACTIONS(518), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_const_declaration] = STATE(642), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(641), + [sym_expr_stmt] = STATE(641), + [sym_var_decl] = STATE(1985), + [sym_var_stmt] = STATE(641), + [sym_return_stmt] = STATE(641), + [sym_continue_stmt] = STATE(641), + [sym_break_stmt] = STATE(641), + [sym_defer_stmt] = STATE(641), + [sym_assert_stmt] = STATE(641), + [sym_declaration_stmt] = STATE(641), + [sym_nextcase_stmt] = STATE(641), + [sym_switch_stmt] = STATE(641), + [sym_if_stmt] = STATE(641), + [sym_for_stmt] = STATE(641), + [sym_foreach_stmt] = STATE(641), + [sym_while_stmt] = STATE(641), + [sym_do_stmt] = STATE(641), + [sym_asm_block_stmt] = STATE(641), + [sym_ct_stmt_body] = STATE(1930), + [sym_ct_assert_stmt] = STATE(641), + [sym_ct_echo_stmt] = STATE(641), + [sym_ct_if_stmt] = STATE(641), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(641), + [sym_ct_for_stmt] = STATE(641), + [sym_ct_foreach_stmt] = STATE(641), + [sym__expr] = STATE(1100), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1357), + [aux_sym_compound_stmt_repeat1] = STATE(86), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(559), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(561), + [anon_sym_const] = ACTIONS(563), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(565), + [anon_sym_continue] = ACTIONS(567), + [anon_sym_break] = ACTIONS(569), + [anon_sym_defer] = ACTIONS(571), + [anon_sym_assert] = ACTIONS(573), + [anon_sym_nextcase] = ACTIONS(575), + [anon_sym_switch] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(579), + [anon_sym_for] = ACTIONS(581), + [anon_sym_foreach] = ACTIONS(583), + [anon_sym_foreach_r] = ACTIONS(583), + [anon_sym_while] = ACTIONS(585), + [anon_sym_do] = ACTIONS(587), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(589), + [anon_sym_DOLLARassert] = ACTIONS(591), + [anon_sym_DOLLARerror] = ACTIONS(593), + [anon_sym_DOLLARecho] = ACTIONS(595), + [anon_sym_DOLLARif] = ACTIONS(597), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(599), + [anon_sym_DOLLARforeach] = ACTIONS(601), + [anon_sym_DOLLARendforeach] = ACTIONS(699), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, - [22] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(22), - [sym_doc_comment] = STATE(22), - [sym_block_comment] = STATE(22), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1170), + [38] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(38), + [sym_doc_comment] = STATE(38), + [sym_block_comment] = STATE(38), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1169), [sym_const_declaration] = STATE(593), - [sym_lambda_declaration] = STATE(1679), + [sym_lambda_declaration] = STATE(1480), [sym_compound_stmt] = STATE(594), [sym_expr_stmt] = STATE(594), - [sym_var_decl] = STATE(2285), + [sym_var_decl] = STATE(2089), [sym_var_stmt] = STATE(594), [sym_return_stmt] = STATE(594), [sym_continue_stmt] = STATE(594), @@ -17358,552 +19825,719 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_while_stmt] = STATE(594), [sym_do_stmt] = STATE(594), [sym_asm_block_stmt] = STATE(594), - [sym_ct_stmt_body] = STATE(2028), + [sym_ct_stmt_body] = STATE(2132), [sym_ct_assert_stmt] = STATE(594), [sym_ct_echo_stmt] = STATE(594), [sym_ct_if_stmt] = STATE(594), - [sym__ct_switch] = STATE(1604), + [sym__ct_switch] = STATE(1521), [sym_ct_switch_stmt] = STATE(594), [sym_ct_for_stmt] = STATE(594), [sym_ct_foreach_stmt] = STATE(594), - [sym__expr] = STATE(1288), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1595), - [aux_sym_compound_stmt_repeat1] = STATE(39), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(472), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(474), - [anon_sym_const] = ACTIONS(476), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(478), - [anon_sym_continue] = ACTIONS(480), - [anon_sym_break] = ACTIONS(482), - [anon_sym_defer] = ACTIONS(484), - [anon_sym_assert] = ACTIONS(486), - [anon_sym_nextcase] = ACTIONS(488), - [anon_sym_switch] = ACTIONS(490), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(492), - [anon_sym_for] = ACTIONS(494), - [anon_sym_foreach] = ACTIONS(496), - [anon_sym_foreach_r] = ACTIONS(496), - [anon_sym_while] = ACTIONS(498), - [anon_sym_do] = ACTIONS(500), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(502), - [anon_sym_DOLLARassert] = ACTIONS(504), - [anon_sym_DOLLARerror] = ACTIONS(506), - [anon_sym_DOLLARecho] = ACTIONS(508), - [anon_sym_DOLLARif] = ACTIONS(510), - [anon_sym_DOLLARendif] = ACTIONS(528), - [anon_sym_DOLLARelse] = ACTIONS(530), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(516), - [anon_sym_DOLLARforeach] = ACTIONS(518), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym__expr] = STATE(1087), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1353), + [aux_sym_compound_stmt_repeat1] = STATE(79), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(651), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(653), + [anon_sym_const] = ACTIONS(655), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(657), + [anon_sym_continue] = ACTIONS(659), + [anon_sym_break] = ACTIONS(661), + [anon_sym_defer] = ACTIONS(663), + [anon_sym_assert] = ACTIONS(665), + [anon_sym_nextcase] = ACTIONS(667), + [anon_sym_switch] = ACTIONS(669), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(671), + [anon_sym_for] = ACTIONS(673), + [anon_sym_foreach] = ACTIONS(675), + [anon_sym_foreach_r] = ACTIONS(675), + [anon_sym_while] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(681), + [anon_sym_DOLLARassert] = ACTIONS(683), + [anon_sym_DOLLARerror] = ACTIONS(685), + [anon_sym_DOLLARecho] = ACTIONS(687), + [anon_sym_DOLLARif] = ACTIONS(689), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(691), + [anon_sym_DOLLARendfor] = ACTIONS(701), + [anon_sym_DOLLARforeach] = ACTIONS(695), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, - [23] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(23), - [sym_doc_comment] = STATE(23), - [sym_block_comment] = STATE(23), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1158), - [sym_const_declaration] = STATE(445), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(438), - [sym_expr_stmt] = STATE(438), - [sym_var_decl] = STATE(2324), - [sym_var_stmt] = STATE(438), - [sym_return_stmt] = STATE(438), - [sym_continue_stmt] = STATE(438), - [sym_break_stmt] = STATE(438), - [sym_defer_stmt] = STATE(438), - [sym_assert_stmt] = STATE(438), - [sym_declaration_stmt] = STATE(438), - [sym_nextcase_stmt] = STATE(438), - [sym_switch_stmt] = STATE(438), - [sym_if_stmt] = STATE(438), - [sym_for_stmt] = STATE(438), - [sym_foreach_stmt] = STATE(438), - [sym_while_stmt] = STATE(438), - [sym_do_stmt] = STATE(438), - [sym_asm_block_stmt] = STATE(438), - [sym_ct_assert_stmt] = STATE(438), - [sym_ct_echo_stmt] = STATE(438), - [sym_ct_if_stmt] = STATE(438), - [sym__ct_switch] = STATE(1606), - [sym_ct_switch_stmt] = STATE(438), - [sym_ct_for_stmt] = STATE(438), - [sym_ct_foreach_stmt] = STATE(438), - [sym__expr] = STATE(1265), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1564), - [aux_sym_compound_stmt_repeat1] = STATE(16), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(95), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(532), - [anon_sym_const] = ACTIONS(103), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_case] = ACTIONS(534), - [anon_sym_default] = ACTIONS(534), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [39] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(39), + [sym_doc_comment] = STATE(39), + [sym_block_comment] = STATE(39), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1173), + [sym_const_declaration] = STATE(716), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(715), + [sym_expr_stmt] = STATE(715), + [sym_var_decl] = STATE(1937), + [sym_var_stmt] = STATE(715), + [sym_return_stmt] = STATE(715), + [sym_continue_stmt] = STATE(715), + [sym_break_stmt] = STATE(715), + [sym_defer_stmt] = STATE(715), + [sym_assert_stmt] = STATE(715), + [sym_declaration_stmt] = STATE(715), + [sym_nextcase_stmt] = STATE(715), + [sym_switch_stmt] = STATE(715), + [sym_if_stmt] = STATE(715), + [sym_for_stmt] = STATE(715), + [sym_foreach_stmt] = STATE(715), + [sym_while_stmt] = STATE(715), + [sym_do_stmt] = STATE(715), + [sym_asm_block_stmt] = STATE(715), + [sym_ct_stmt_body] = STATE(1941), + [sym_ct_assert_stmt] = STATE(715), + [sym_ct_echo_stmt] = STATE(715), + [sym_ct_if_stmt] = STATE(715), + [sym__ct_switch] = STATE(1545), + [sym_ct_switch_stmt] = STATE(715), + [sym_ct_for_stmt] = STATE(715), + [sym_ct_foreach_stmt] = STATE(715), + [sym__expr] = STATE(1109), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1338), + [aux_sym_compound_stmt_repeat1] = STATE(89), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(605), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(607), + [anon_sym_const] = ACTIONS(609), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_break] = ACTIONS(615), + [anon_sym_defer] = ACTIONS(617), + [anon_sym_assert] = ACTIONS(619), + [anon_sym_nextcase] = ACTIONS(621), + [anon_sym_switch] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(625), + [anon_sym_for] = ACTIONS(627), + [anon_sym_foreach] = ACTIONS(629), + [anon_sym_foreach_r] = ACTIONS(629), + [anon_sym_while] = ACTIONS(631), + [anon_sym_do] = ACTIONS(633), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(635), + [anon_sym_DOLLARassert] = ACTIONS(637), + [anon_sym_DOLLARerror] = ACTIONS(639), + [anon_sym_DOLLARecho] = ACTIONS(641), + [anon_sym_DOLLARif] = ACTIONS(643), + [anon_sym_DOLLARendif] = ACTIONS(703), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(647), + [anon_sym_DOLLARforeach] = ACTIONS(649), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, - [24] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(24), - [sym_doc_comment] = STATE(24), - [sym_block_comment] = STATE(24), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1158), - [sym_const_declaration] = STATE(445), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(438), - [sym_expr_stmt] = STATE(438), - [sym_var_decl] = STATE(2324), - [sym_var_stmt] = STATE(438), - [sym_return_stmt] = STATE(438), - [sym_continue_stmt] = STATE(438), - [sym_break_stmt] = STATE(438), - [sym_defer_stmt] = STATE(438), - [sym_assert_stmt] = STATE(438), - [sym_declaration_stmt] = STATE(438), - [sym_nextcase_stmt] = STATE(438), - [sym_switch_stmt] = STATE(438), - [sym_if_stmt] = STATE(438), - [sym_for_stmt] = STATE(438), - [sym_foreach_stmt] = STATE(438), - [sym_while_stmt] = STATE(438), - [sym_do_stmt] = STATE(438), - [sym_asm_block_stmt] = STATE(438), - [sym_ct_assert_stmt] = STATE(438), - [sym_ct_echo_stmt] = STATE(438), - [sym_ct_if_stmt] = STATE(438), - [sym__ct_switch] = STATE(1606), - [sym_ct_switch_stmt] = STATE(438), - [sym_ct_for_stmt] = STATE(438), - [sym_ct_foreach_stmt] = STATE(438), - [sym__expr] = STATE(1265), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1564), - [aux_sym_compound_stmt_repeat1] = STATE(16), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(95), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(536), - [anon_sym_const] = ACTIONS(103), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_case] = ACTIONS(538), - [anon_sym_default] = ACTIONS(538), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [40] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(40), + [sym_doc_comment] = STATE(40), + [sym_block_comment] = STATE(40), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1173), + [sym_const_declaration] = STATE(716), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(715), + [sym_expr_stmt] = STATE(715), + [sym_var_decl] = STATE(1937), + [sym_var_stmt] = STATE(715), + [sym_return_stmt] = STATE(715), + [sym_continue_stmt] = STATE(715), + [sym_break_stmt] = STATE(715), + [sym_defer_stmt] = STATE(715), + [sym_assert_stmt] = STATE(715), + [sym_declaration_stmt] = STATE(715), + [sym_nextcase_stmt] = STATE(715), + [sym_switch_stmt] = STATE(715), + [sym_if_stmt] = STATE(715), + [sym_for_stmt] = STATE(715), + [sym_foreach_stmt] = STATE(715), + [sym_while_stmt] = STATE(715), + [sym_do_stmt] = STATE(715), + [sym_asm_block_stmt] = STATE(715), + [sym_ct_stmt_body] = STATE(1946), + [sym_ct_assert_stmt] = STATE(715), + [sym_ct_echo_stmt] = STATE(715), + [sym_ct_if_stmt] = STATE(715), + [sym__ct_switch] = STATE(1545), + [sym_ct_switch_stmt] = STATE(715), + [sym_ct_for_stmt] = STATE(715), + [sym_ct_foreach_stmt] = STATE(715), + [sym__expr] = STATE(1109), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1338), + [aux_sym_compound_stmt_repeat1] = STATE(89), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(605), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(607), + [anon_sym_const] = ACTIONS(609), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_break] = ACTIONS(615), + [anon_sym_defer] = ACTIONS(617), + [anon_sym_assert] = ACTIONS(619), + [anon_sym_nextcase] = ACTIONS(621), + [anon_sym_switch] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(625), + [anon_sym_for] = ACTIONS(627), + [anon_sym_foreach] = ACTIONS(629), + [anon_sym_foreach_r] = ACTIONS(629), + [anon_sym_while] = ACTIONS(631), + [anon_sym_do] = ACTIONS(633), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(635), + [anon_sym_DOLLARassert] = ACTIONS(637), + [anon_sym_DOLLARerror] = ACTIONS(639), + [anon_sym_DOLLARecho] = ACTIONS(641), + [anon_sym_DOLLARif] = ACTIONS(643), + [anon_sym_DOLLARendif] = ACTIONS(705), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(647), + [anon_sym_DOLLARforeach] = ACTIONS(649), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, - [25] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(25), - [sym_doc_comment] = STATE(25), - [sym_block_comment] = STATE(25), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), + [41] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(41), + [sym_doc_comment] = STATE(41), + [sym_block_comment] = STATE(41), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), [sym_local_decl_storage] = STATE(1170), + [sym_const_declaration] = STATE(642), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(641), + [sym_expr_stmt] = STATE(641), + [sym_var_decl] = STATE(1985), + [sym_var_stmt] = STATE(641), + [sym_return_stmt] = STATE(641), + [sym_continue_stmt] = STATE(641), + [sym_break_stmt] = STATE(641), + [sym_defer_stmt] = STATE(641), + [sym_assert_stmt] = STATE(641), + [sym_declaration_stmt] = STATE(641), + [sym_nextcase_stmt] = STATE(641), + [sym_switch_stmt] = STATE(641), + [sym_if_stmt] = STATE(641), + [sym_for_stmt] = STATE(641), + [sym_foreach_stmt] = STATE(641), + [sym_while_stmt] = STATE(641), + [sym_do_stmt] = STATE(641), + [sym_asm_block_stmt] = STATE(641), + [sym_ct_stmt_body] = STATE(1911), + [sym_ct_assert_stmt] = STATE(641), + [sym_ct_echo_stmt] = STATE(641), + [sym_ct_if_stmt] = STATE(641), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(641), + [sym_ct_for_stmt] = STATE(641), + [sym_ct_foreach_stmt] = STATE(641), + [sym__expr] = STATE(1100), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1357), + [aux_sym_compound_stmt_repeat1] = STATE(86), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(559), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(561), + [anon_sym_const] = ACTIONS(563), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(565), + [anon_sym_continue] = ACTIONS(567), + [anon_sym_break] = ACTIONS(569), + [anon_sym_defer] = ACTIONS(571), + [anon_sym_assert] = ACTIONS(573), + [anon_sym_nextcase] = ACTIONS(575), + [anon_sym_switch] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(579), + [anon_sym_for] = ACTIONS(581), + [anon_sym_foreach] = ACTIONS(583), + [anon_sym_foreach_r] = ACTIONS(583), + [anon_sym_while] = ACTIONS(585), + [anon_sym_do] = ACTIONS(587), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(589), + [anon_sym_DOLLARassert] = ACTIONS(591), + [anon_sym_DOLLARerror] = ACTIONS(593), + [anon_sym_DOLLARecho] = ACTIONS(595), + [anon_sym_DOLLARif] = ACTIONS(597), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(599), + [anon_sym_DOLLARforeach] = ACTIONS(601), + [anon_sym_DOLLARendforeach] = ACTIONS(707), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), + }, + [42] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(42), + [sym_doc_comment] = STATE(42), + [sym_block_comment] = STATE(42), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1169), [sym_const_declaration] = STATE(593), - [sym_lambda_declaration] = STATE(1679), + [sym_lambda_declaration] = STATE(1480), [sym_compound_stmt] = STATE(594), [sym_expr_stmt] = STATE(594), - [sym_var_decl] = STATE(2285), + [sym_var_decl] = STATE(2089), [sym_var_stmt] = STATE(594), [sym_return_stmt] = STATE(594), [sym_continue_stmt] = STATE(594), @@ -17919,1113 +20553,537 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_while_stmt] = STATE(594), [sym_do_stmt] = STATE(594), [sym_asm_block_stmt] = STATE(594), - [sym_ct_stmt_body] = STATE(2031), + [sym_ct_stmt_body] = STATE(1899), [sym_ct_assert_stmt] = STATE(594), [sym_ct_echo_stmt] = STATE(594), [sym_ct_if_stmt] = STATE(594), - [sym__ct_switch] = STATE(1604), + [sym__ct_switch] = STATE(1521), [sym_ct_switch_stmt] = STATE(594), [sym_ct_for_stmt] = STATE(594), [sym_ct_foreach_stmt] = STATE(594), - [sym__expr] = STATE(1288), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1595), - [aux_sym_compound_stmt_repeat1] = STATE(39), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(472), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(474), - [anon_sym_const] = ACTIONS(476), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(478), - [anon_sym_continue] = ACTIONS(480), - [anon_sym_break] = ACTIONS(482), - [anon_sym_defer] = ACTIONS(484), - [anon_sym_assert] = ACTIONS(486), - [anon_sym_nextcase] = ACTIONS(488), - [anon_sym_switch] = ACTIONS(490), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(492), - [anon_sym_for] = ACTIONS(494), - [anon_sym_foreach] = ACTIONS(496), - [anon_sym_foreach_r] = ACTIONS(496), - [anon_sym_while] = ACTIONS(498), - [anon_sym_do] = ACTIONS(500), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(502), - [anon_sym_DOLLARassert] = ACTIONS(504), - [anon_sym_DOLLARerror] = ACTIONS(506), - [anon_sym_DOLLARecho] = ACTIONS(508), - [anon_sym_DOLLARif] = ACTIONS(510), - [anon_sym_DOLLARendif] = ACTIONS(540), - [anon_sym_DOLLARelse] = ACTIONS(542), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(516), - [anon_sym_DOLLARforeach] = ACTIONS(518), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), - }, - [26] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(26), - [sym_doc_comment] = STATE(26), - [sym_block_comment] = STATE(26), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1158), - [sym_const_declaration] = STATE(445), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(438), - [sym_expr_stmt] = STATE(438), - [sym_var_decl] = STATE(2324), - [sym_var_stmt] = STATE(438), - [sym_return_stmt] = STATE(438), - [sym_continue_stmt] = STATE(438), - [sym_break_stmt] = STATE(438), - [sym_defer_stmt] = STATE(438), - [sym_assert_stmt] = STATE(438), - [sym_declaration_stmt] = STATE(438), - [sym_nextcase_stmt] = STATE(438), - [sym_switch_stmt] = STATE(438), - [sym_if_stmt] = STATE(438), - [sym_for_stmt] = STATE(438), - [sym_foreach_stmt] = STATE(438), - [sym_while_stmt] = STATE(438), - [sym_do_stmt] = STATE(438), - [sym_asm_block_stmt] = STATE(438), - [sym_ct_assert_stmt] = STATE(438), - [sym_ct_echo_stmt] = STATE(438), - [sym_ct_if_stmt] = STATE(438), - [sym__ct_switch] = STATE(1606), - [sym_ct_switch_stmt] = STATE(438), - [sym_ct_for_stmt] = STATE(438), - [sym_ct_foreach_stmt] = STATE(438), - [sym__expr] = STATE(1265), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1564), - [aux_sym_compound_stmt_repeat1] = STATE(27), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(95), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(544), - [anon_sym_const] = ACTIONS(103), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_case] = ACTIONS(546), - [anon_sym_default] = ACTIONS(546), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), - }, - [27] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(27), - [sym_doc_comment] = STATE(27), - [sym_block_comment] = STATE(27), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1158), - [sym_const_declaration] = STATE(445), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(438), - [sym_expr_stmt] = STATE(438), - [sym_var_decl] = STATE(2324), - [sym_var_stmt] = STATE(438), - [sym_return_stmt] = STATE(438), - [sym_continue_stmt] = STATE(438), - [sym_break_stmt] = STATE(438), - [sym_defer_stmt] = STATE(438), - [sym_assert_stmt] = STATE(438), - [sym_declaration_stmt] = STATE(438), - [sym_nextcase_stmt] = STATE(438), - [sym_switch_stmt] = STATE(438), - [sym_if_stmt] = STATE(438), - [sym_for_stmt] = STATE(438), - [sym_foreach_stmt] = STATE(438), - [sym_while_stmt] = STATE(438), - [sym_do_stmt] = STATE(438), - [sym_asm_block_stmt] = STATE(438), - [sym_ct_assert_stmt] = STATE(438), - [sym_ct_echo_stmt] = STATE(438), - [sym_ct_if_stmt] = STATE(438), - [sym__ct_switch] = STATE(1606), - [sym_ct_switch_stmt] = STATE(438), - [sym_ct_for_stmt] = STATE(438), - [sym_ct_foreach_stmt] = STATE(438), - [sym__expr] = STATE(1265), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1564), - [aux_sym_compound_stmt_repeat1] = STATE(16), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(95), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(548), - [anon_sym_const] = ACTIONS(103), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_case] = ACTIONS(550), - [anon_sym_default] = ACTIONS(550), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym__expr] = STATE(1087), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1353), + [aux_sym_compound_stmt_repeat1] = STATE(79), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(651), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(653), + [anon_sym_const] = ACTIONS(655), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(657), + [anon_sym_continue] = ACTIONS(659), + [anon_sym_break] = ACTIONS(661), + [anon_sym_defer] = ACTIONS(663), + [anon_sym_assert] = ACTIONS(665), + [anon_sym_nextcase] = ACTIONS(667), + [anon_sym_switch] = ACTIONS(669), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(671), + [anon_sym_for] = ACTIONS(673), + [anon_sym_foreach] = ACTIONS(675), + [anon_sym_foreach_r] = ACTIONS(675), + [anon_sym_while] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(681), + [anon_sym_DOLLARassert] = ACTIONS(683), + [anon_sym_DOLLARerror] = ACTIONS(685), + [anon_sym_DOLLARecho] = ACTIONS(687), + [anon_sym_DOLLARif] = ACTIONS(689), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(691), + [anon_sym_DOLLARendfor] = ACTIONS(709), + [anon_sym_DOLLARforeach] = ACTIONS(695), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, - [28] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(28), - [sym_doc_comment] = STATE(28), - [sym_block_comment] = STATE(28), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1158), - [sym_const_declaration] = STATE(445), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(438), - [sym_expr_stmt] = STATE(438), - [sym_var_decl] = STATE(2324), - [sym_var_stmt] = STATE(438), - [sym_return_stmt] = STATE(438), - [sym_continue_stmt] = STATE(438), - [sym_break_stmt] = STATE(438), - [sym_defer_stmt] = STATE(438), - [sym_assert_stmt] = STATE(438), - [sym_declaration_stmt] = STATE(438), - [sym_nextcase_stmt] = STATE(438), - [sym_switch_stmt] = STATE(438), - [sym_if_stmt] = STATE(438), - [sym_for_stmt] = STATE(438), - [sym_foreach_stmt] = STATE(438), - [sym_while_stmt] = STATE(438), - [sym_do_stmt] = STATE(438), - [sym_asm_block_stmt] = STATE(438), - [sym_ct_assert_stmt] = STATE(438), - [sym_ct_echo_stmt] = STATE(438), - [sym_ct_if_stmt] = STATE(438), - [sym__ct_switch] = STATE(1606), - [sym_ct_switch_stmt] = STATE(438), - [sym_ct_for_stmt] = STATE(438), - [sym_ct_foreach_stmt] = STATE(438), - [sym__expr] = STATE(1265), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1564), - [aux_sym_compound_stmt_repeat1] = STATE(24), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(95), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(552), - [anon_sym_const] = ACTIONS(103), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_case] = ACTIONS(554), - [anon_sym_default] = ACTIONS(554), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [43] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(43), + [sym_doc_comment] = STATE(43), + [sym_block_comment] = STATE(43), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1173), + [sym_const_declaration] = STATE(716), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(715), + [sym_expr_stmt] = STATE(715), + [sym_var_decl] = STATE(1937), + [sym_var_stmt] = STATE(715), + [sym_return_stmt] = STATE(715), + [sym_continue_stmt] = STATE(715), + [sym_break_stmt] = STATE(715), + [sym_defer_stmt] = STATE(715), + [sym_assert_stmt] = STATE(715), + [sym_declaration_stmt] = STATE(715), + [sym_nextcase_stmt] = STATE(715), + [sym_switch_stmt] = STATE(715), + [sym_if_stmt] = STATE(715), + [sym_for_stmt] = STATE(715), + [sym_foreach_stmt] = STATE(715), + [sym_while_stmt] = STATE(715), + [sym_do_stmt] = STATE(715), + [sym_asm_block_stmt] = STATE(715), + [sym_ct_stmt_body] = STATE(2119), + [sym_ct_assert_stmt] = STATE(715), + [sym_ct_echo_stmt] = STATE(715), + [sym_ct_if_stmt] = STATE(715), + [sym__ct_switch] = STATE(1545), + [sym_ct_switch_stmt] = STATE(715), + [sym_ct_for_stmt] = STATE(715), + [sym_ct_foreach_stmt] = STATE(715), + [sym__expr] = STATE(1109), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1338), + [aux_sym_compound_stmt_repeat1] = STATE(89), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(605), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(607), + [anon_sym_const] = ACTIONS(609), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_break] = ACTIONS(615), + [anon_sym_defer] = ACTIONS(617), + [anon_sym_assert] = ACTIONS(619), + [anon_sym_nextcase] = ACTIONS(621), + [anon_sym_switch] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(625), + [anon_sym_for] = ACTIONS(627), + [anon_sym_foreach] = ACTIONS(629), + [anon_sym_foreach_r] = ACTIONS(629), + [anon_sym_while] = ACTIONS(631), + [anon_sym_do] = ACTIONS(633), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(635), + [anon_sym_DOLLARassert] = ACTIONS(637), + [anon_sym_DOLLARerror] = ACTIONS(639), + [anon_sym_DOLLARecho] = ACTIONS(641), + [anon_sym_DOLLARif] = ACTIONS(643), + [anon_sym_DOLLARendif] = ACTIONS(711), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(647), + [anon_sym_DOLLARforeach] = ACTIONS(649), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, - [29] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(29), - [sym_doc_comment] = STATE(29), - [sym_block_comment] = STATE(29), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1158), - [sym_const_declaration] = STATE(445), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(438), - [sym_expr_stmt] = STATE(438), - [sym_var_decl] = STATE(2324), - [sym_var_stmt] = STATE(438), - [sym_return_stmt] = STATE(438), - [sym_continue_stmt] = STATE(438), - [sym_break_stmt] = STATE(438), - [sym_defer_stmt] = STATE(438), - [sym_assert_stmt] = STATE(438), - [sym_declaration_stmt] = STATE(438), - [sym_nextcase_stmt] = STATE(438), - [sym_switch_stmt] = STATE(438), - [sym_if_stmt] = STATE(438), - [sym_for_stmt] = STATE(438), - [sym_foreach_stmt] = STATE(438), - [sym_while_stmt] = STATE(438), - [sym_do_stmt] = STATE(438), - [sym_asm_block_stmt] = STATE(438), - [sym_ct_assert_stmt] = STATE(438), - [sym_ct_echo_stmt] = STATE(438), - [sym_ct_if_stmt] = STATE(438), - [sym__ct_switch] = STATE(1606), - [sym_ct_switch_stmt] = STATE(438), - [sym_ct_for_stmt] = STATE(438), - [sym_ct_foreach_stmt] = STATE(438), - [sym__expr] = STATE(1265), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1564), - [aux_sym_compound_stmt_repeat1] = STATE(23), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(95), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(556), - [anon_sym_const] = ACTIONS(103), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_case] = ACTIONS(558), - [anon_sym_default] = ACTIONS(558), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [44] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(44), + [sym_doc_comment] = STATE(44), + [sym_block_comment] = STATE(44), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1170), + [sym_const_declaration] = STATE(642), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(641), + [sym_expr_stmt] = STATE(641), + [sym_var_decl] = STATE(1985), + [sym_var_stmt] = STATE(641), + [sym_return_stmt] = STATE(641), + [sym_continue_stmt] = STATE(641), + [sym_break_stmt] = STATE(641), + [sym_defer_stmt] = STATE(641), + [sym_assert_stmt] = STATE(641), + [sym_declaration_stmt] = STATE(641), + [sym_nextcase_stmt] = STATE(641), + [sym_switch_stmt] = STATE(641), + [sym_if_stmt] = STATE(641), + [sym_for_stmt] = STATE(641), + [sym_foreach_stmt] = STATE(641), + [sym_while_stmt] = STATE(641), + [sym_do_stmt] = STATE(641), + [sym_asm_block_stmt] = STATE(641), + [sym_ct_stmt_body] = STATE(2014), + [sym_ct_assert_stmt] = STATE(641), + [sym_ct_echo_stmt] = STATE(641), + [sym_ct_if_stmt] = STATE(641), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(641), + [sym_ct_for_stmt] = STATE(641), + [sym_ct_foreach_stmt] = STATE(641), + [sym__expr] = STATE(1100), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1357), + [aux_sym_compound_stmt_repeat1] = STATE(86), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(559), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(561), + [anon_sym_const] = ACTIONS(563), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(565), + [anon_sym_continue] = ACTIONS(567), + [anon_sym_break] = ACTIONS(569), + [anon_sym_defer] = ACTIONS(571), + [anon_sym_assert] = ACTIONS(573), + [anon_sym_nextcase] = ACTIONS(575), + [anon_sym_switch] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(579), + [anon_sym_for] = ACTIONS(581), + [anon_sym_foreach] = ACTIONS(583), + [anon_sym_foreach_r] = ACTIONS(583), + [anon_sym_while] = ACTIONS(585), + [anon_sym_do] = ACTIONS(587), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(589), + [anon_sym_DOLLARassert] = ACTIONS(591), + [anon_sym_DOLLARerror] = ACTIONS(593), + [anon_sym_DOLLARecho] = ACTIONS(595), + [anon_sym_DOLLARif] = ACTIONS(597), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(599), + [anon_sym_DOLLARforeach] = ACTIONS(601), + [anon_sym_DOLLARendforeach] = ACTIONS(713), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, - [30] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(30), - [sym_doc_comment] = STATE(30), - [sym_block_comment] = STATE(30), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), + [45] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(45), + [sym_doc_comment] = STATE(45), + [sym_block_comment] = STATE(45), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), [sym_local_decl_storage] = STATE(1169), - [sym_const_declaration] = STATE(480), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(481), - [sym_expr_stmt] = STATE(481), - [sym_var_decl] = STATE(2091), - [sym_var_stmt] = STATE(481), - [sym_return_stmt] = STATE(481), - [sym_continue_stmt] = STATE(481), - [sym_break_stmt] = STATE(481), - [sym_defer_stmt] = STATE(481), - [sym_assert_stmt] = STATE(481), - [sym_declaration_stmt] = STATE(481), - [sym_nextcase_stmt] = STATE(481), - [sym_switch_stmt] = STATE(481), - [sym_if_stmt] = STATE(481), - [sym_for_stmt] = STATE(481), - [sym_foreach_stmt] = STATE(481), - [sym_while_stmt] = STATE(481), - [sym_do_stmt] = STATE(481), - [sym_asm_block_stmt] = STATE(481), - [sym_ct_assert_stmt] = STATE(481), - [sym_ct_echo_stmt] = STATE(481), - [sym_ct_if_stmt] = STATE(481), - [sym__ct_switch] = STATE(1646), - [sym_ct_switch_stmt] = STATE(481), - [sym_ct_for_stmt] = STATE(481), - [sym_ct_foreach_stmt] = STATE(481), - [sym__expr] = STATE(1271), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1647), - [aux_sym_compound_stmt_repeat1] = STATE(18), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(201), - [anon_sym_const] = ACTIONS(203), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(205), - [anon_sym_continue] = ACTIONS(207), - [anon_sym_break] = ACTIONS(209), - [anon_sym_defer] = ACTIONS(211), - [anon_sym_assert] = ACTIONS(213), - [anon_sym_nextcase] = ACTIONS(215), - [anon_sym_switch] = ACTIONS(217), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(219), - [anon_sym_for] = ACTIONS(221), - [anon_sym_foreach] = ACTIONS(223), - [anon_sym_foreach_r] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_do] = ACTIONS(227), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(229), - [anon_sym_DOLLARassert] = ACTIONS(231), - [anon_sym_DOLLARerror] = ACTIONS(233), - [anon_sym_DOLLARecho] = ACTIONS(235), - [anon_sym_DOLLARif] = ACTIONS(237), - [anon_sym_DOLLARcase] = ACTIONS(560), - [anon_sym_DOLLARdefault] = ACTIONS(560), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARendswitch] = ACTIONS(560), - [anon_sym_DOLLARfor] = ACTIONS(241), - [anon_sym_DOLLARforeach] = ACTIONS(243), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), - }, - [31] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(31), - [sym_doc_comment] = STATE(31), - [sym_block_comment] = STATE(31), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1170), [sym_const_declaration] = STATE(593), - [sym_lambda_declaration] = STATE(1679), + [sym_lambda_declaration] = STATE(1480), [sym_compound_stmt] = STATE(594), [sym_expr_stmt] = STATE(594), - [sym_var_decl] = STATE(2285), + [sym_var_decl] = STATE(2089), [sym_var_stmt] = STATE(594), [sym_return_stmt] = STATE(594), [sym_continue_stmt] = STATE(594), @@ -19041,178 +21099,355 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_while_stmt] = STATE(594), [sym_do_stmt] = STATE(594), [sym_asm_block_stmt] = STATE(594), - [sym_ct_stmt_body] = STATE(2007), + [sym_ct_stmt_body] = STATE(2040), [sym_ct_assert_stmt] = STATE(594), [sym_ct_echo_stmt] = STATE(594), [sym_ct_if_stmt] = STATE(594), - [sym__ct_switch] = STATE(1604), + [sym__ct_switch] = STATE(1521), [sym_ct_switch_stmt] = STATE(594), [sym_ct_for_stmt] = STATE(594), [sym_ct_foreach_stmt] = STATE(594), - [sym__expr] = STATE(1288), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1595), - [aux_sym_compound_stmt_repeat1] = STATE(39), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(472), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(474), - [anon_sym_const] = ACTIONS(476), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(478), - [anon_sym_continue] = ACTIONS(480), - [anon_sym_break] = ACTIONS(482), - [anon_sym_defer] = ACTIONS(484), - [anon_sym_assert] = ACTIONS(486), - [anon_sym_nextcase] = ACTIONS(488), - [anon_sym_switch] = ACTIONS(490), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(492), - [anon_sym_for] = ACTIONS(494), - [anon_sym_foreach] = ACTIONS(496), - [anon_sym_foreach_r] = ACTIONS(496), - [anon_sym_while] = ACTIONS(498), - [anon_sym_do] = ACTIONS(500), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(502), - [anon_sym_DOLLARassert] = ACTIONS(504), - [anon_sym_DOLLARerror] = ACTIONS(506), - [anon_sym_DOLLARecho] = ACTIONS(508), - [anon_sym_DOLLARif] = ACTIONS(510), - [anon_sym_DOLLARendif] = ACTIONS(562), - [anon_sym_DOLLARelse] = ACTIONS(564), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(516), - [anon_sym_DOLLARforeach] = ACTIONS(518), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym__expr] = STATE(1087), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1353), + [aux_sym_compound_stmt_repeat1] = STATE(79), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(651), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(653), + [anon_sym_const] = ACTIONS(655), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(657), + [anon_sym_continue] = ACTIONS(659), + [anon_sym_break] = ACTIONS(661), + [anon_sym_defer] = ACTIONS(663), + [anon_sym_assert] = ACTIONS(665), + [anon_sym_nextcase] = ACTIONS(667), + [anon_sym_switch] = ACTIONS(669), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(671), + [anon_sym_for] = ACTIONS(673), + [anon_sym_foreach] = ACTIONS(675), + [anon_sym_foreach_r] = ACTIONS(675), + [anon_sym_while] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(681), + [anon_sym_DOLLARassert] = ACTIONS(683), + [anon_sym_DOLLARerror] = ACTIONS(685), + [anon_sym_DOLLARecho] = ACTIONS(687), + [anon_sym_DOLLARif] = ACTIONS(689), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(691), + [anon_sym_DOLLARendfor] = ACTIONS(715), + [anon_sym_DOLLARforeach] = ACTIONS(695), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, - [32] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(32), - [sym_doc_comment] = STATE(32), - [sym_block_comment] = STATE(32), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1183), + [46] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(46), + [sym_doc_comment] = STATE(46), + [sym_block_comment] = STATE(46), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1170), + [sym_const_declaration] = STATE(642), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(641), + [sym_expr_stmt] = STATE(641), + [sym_var_decl] = STATE(1985), + [sym_var_stmt] = STATE(641), + [sym_return_stmt] = STATE(641), + [sym_continue_stmt] = STATE(641), + [sym_break_stmt] = STATE(641), + [sym_defer_stmt] = STATE(641), + [sym_assert_stmt] = STATE(641), + [sym_declaration_stmt] = STATE(641), + [sym_nextcase_stmt] = STATE(641), + [sym_switch_stmt] = STATE(641), + [sym_if_stmt] = STATE(641), + [sym_for_stmt] = STATE(641), + [sym_foreach_stmt] = STATE(641), + [sym_while_stmt] = STATE(641), + [sym_do_stmt] = STATE(641), + [sym_asm_block_stmt] = STATE(641), + [sym_ct_stmt_body] = STATE(2039), + [sym_ct_assert_stmt] = STATE(641), + [sym_ct_echo_stmt] = STATE(641), + [sym_ct_if_stmt] = STATE(641), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(641), + [sym_ct_for_stmt] = STATE(641), + [sym_ct_foreach_stmt] = STATE(641), + [sym__expr] = STATE(1100), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1357), + [aux_sym_compound_stmt_repeat1] = STATE(86), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(559), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(561), + [anon_sym_const] = ACTIONS(563), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(565), + [anon_sym_continue] = ACTIONS(567), + [anon_sym_break] = ACTIONS(569), + [anon_sym_defer] = ACTIONS(571), + [anon_sym_assert] = ACTIONS(573), + [anon_sym_nextcase] = ACTIONS(575), + [anon_sym_switch] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(579), + [anon_sym_for] = ACTIONS(581), + [anon_sym_foreach] = ACTIONS(583), + [anon_sym_foreach_r] = ACTIONS(583), + [anon_sym_while] = ACTIONS(585), + [anon_sym_do] = ACTIONS(587), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(589), + [anon_sym_DOLLARassert] = ACTIONS(591), + [anon_sym_DOLLARerror] = ACTIONS(593), + [anon_sym_DOLLARecho] = ACTIONS(595), + [anon_sym_DOLLARif] = ACTIONS(597), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(599), + [anon_sym_DOLLARforeach] = ACTIONS(601), + [anon_sym_DOLLARendforeach] = ACTIONS(717), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), + }, + [47] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(47), + [sym_doc_comment] = STATE(47), + [sym_block_comment] = STATE(47), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1173), [sym_const_declaration] = STATE(716), - [sym_lambda_declaration] = STATE(1679), + [sym_lambda_declaration] = STATE(1480), [sym_compound_stmt] = STATE(715), [sym_expr_stmt] = STATE(715), - [sym_var_decl] = STATE(2182), + [sym_var_decl] = STATE(1937), [sym_var_stmt] = STATE(715), [sym_return_stmt] = STATE(715), [sym_continue_stmt] = STATE(715), @@ -19228,921 +21463,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_while_stmt] = STATE(715), [sym_do_stmt] = STATE(715), [sym_asm_block_stmt] = STATE(715), - [sym_ct_stmt_body] = STATE(2294), + [sym_ct_stmt_body] = STATE(2109), [sym_ct_assert_stmt] = STATE(715), [sym_ct_echo_stmt] = STATE(715), [sym_ct_if_stmt] = STATE(715), - [sym__ct_switch] = STATE(1621), + [sym__ct_switch] = STATE(1545), [sym_ct_switch_stmt] = STATE(715), [sym_ct_for_stmt] = STATE(715), [sym_ct_foreach_stmt] = STATE(715), - [sym__expr] = STATE(1299), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1624), - [aux_sym_compound_stmt_repeat1] = STATE(64), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(566), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(568), - [anon_sym_const] = ACTIONS(570), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(572), - [anon_sym_continue] = ACTIONS(574), - [anon_sym_break] = ACTIONS(576), - [anon_sym_defer] = ACTIONS(578), - [anon_sym_assert] = ACTIONS(580), - [anon_sym_nextcase] = ACTIONS(582), - [anon_sym_switch] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(586), - [anon_sym_for] = ACTIONS(588), - [anon_sym_foreach] = ACTIONS(590), - [anon_sym_foreach_r] = ACTIONS(590), - [anon_sym_while] = ACTIONS(592), - [anon_sym_do] = ACTIONS(594), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(596), - [anon_sym_DOLLARassert] = ACTIONS(598), - [anon_sym_DOLLARerror] = ACTIONS(600), - [anon_sym_DOLLARecho] = ACTIONS(602), - [anon_sym_DOLLARif] = ACTIONS(604), - [anon_sym_DOLLARendif] = ACTIONS(606), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(608), - [anon_sym_DOLLARforeach] = ACTIONS(610), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), - }, - [33] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(33), - [sym_doc_comment] = STATE(33), - [sym_block_comment] = STATE(33), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1175), - [sym_const_declaration] = STATE(727), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(730), - [sym_expr_stmt] = STATE(730), - [sym_var_decl] = STATE(2279), - [sym_var_stmt] = STATE(730), - [sym_return_stmt] = STATE(730), - [sym_continue_stmt] = STATE(730), - [sym_break_stmt] = STATE(730), - [sym_defer_stmt] = STATE(730), - [sym_assert_stmt] = STATE(730), - [sym_declaration_stmt] = STATE(730), - [sym_nextcase_stmt] = STATE(730), - [sym_switch_stmt] = STATE(730), - [sym_if_stmt] = STATE(730), - [sym_for_stmt] = STATE(730), - [sym_foreach_stmt] = STATE(730), - [sym_while_stmt] = STATE(730), - [sym_do_stmt] = STATE(730), - [sym_asm_block_stmt] = STATE(730), - [sym_ct_stmt_body] = STATE(2175), - [sym_ct_assert_stmt] = STATE(730), - [sym_ct_echo_stmt] = STATE(730), - [sym_ct_if_stmt] = STATE(730), - [sym__ct_switch] = STATE(1593), - [sym_ct_switch_stmt] = STATE(730), - [sym_ct_for_stmt] = STATE(730), - [sym_ct_foreach_stmt] = STATE(730), - [sym__expr] = STATE(1275), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1596), - [aux_sym_compound_stmt_repeat1] = STATE(86), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(612), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(614), - [anon_sym_const] = ACTIONS(616), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_break] = ACTIONS(622), - [anon_sym_defer] = ACTIONS(624), - [anon_sym_assert] = ACTIONS(626), - [anon_sym_nextcase] = ACTIONS(628), - [anon_sym_switch] = ACTIONS(630), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(632), - [anon_sym_for] = ACTIONS(634), - [anon_sym_foreach] = ACTIONS(636), - [anon_sym_foreach_r] = ACTIONS(636), - [anon_sym_while] = ACTIONS(638), - [anon_sym_do] = ACTIONS(640), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(642), - [anon_sym_DOLLARassert] = ACTIONS(644), - [anon_sym_DOLLARerror] = ACTIONS(646), - [anon_sym_DOLLARecho] = ACTIONS(648), - [anon_sym_DOLLARif] = ACTIONS(650), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(652), - [anon_sym_DOLLARforeach] = ACTIONS(654), - [anon_sym_DOLLARendforeach] = ACTIONS(656), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), - }, - [34] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(34), - [sym_doc_comment] = STATE(34), - [sym_block_comment] = STATE(34), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1163), - [sym_const_declaration] = STATE(852), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(851), - [sym_expr_stmt] = STATE(851), - [sym_var_decl] = STATE(2193), - [sym_var_stmt] = STATE(851), - [sym_return_stmt] = STATE(851), - [sym_continue_stmt] = STATE(851), - [sym_break_stmt] = STATE(851), - [sym_defer_stmt] = STATE(851), - [sym_assert_stmt] = STATE(851), - [sym_declaration_stmt] = STATE(851), - [sym_nextcase_stmt] = STATE(851), - [sym_switch_stmt] = STATE(851), - [sym_if_stmt] = STATE(851), - [sym_for_stmt] = STATE(851), - [sym_foreach_stmt] = STATE(851), - [sym_while_stmt] = STATE(851), - [sym_do_stmt] = STATE(851), - [sym_asm_block_stmt] = STATE(851), - [sym_ct_stmt_body] = STATE(2176), - [sym_ct_assert_stmt] = STATE(851), - [sym_ct_echo_stmt] = STATE(851), - [sym_ct_if_stmt] = STATE(851), - [sym__ct_switch] = STATE(1557), - [sym_ct_switch_stmt] = STATE(851), - [sym_ct_for_stmt] = STATE(851), - [sym_ct_foreach_stmt] = STATE(851), - [sym__expr] = STATE(1269), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1558), - [aux_sym_compound_stmt_repeat1] = STATE(74), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(658), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(660), - [anon_sym_const] = ACTIONS(662), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(664), - [anon_sym_continue] = ACTIONS(666), - [anon_sym_break] = ACTIONS(668), - [anon_sym_defer] = ACTIONS(670), - [anon_sym_assert] = ACTIONS(672), - [anon_sym_nextcase] = ACTIONS(674), - [anon_sym_switch] = ACTIONS(676), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_foreach] = ACTIONS(682), - [anon_sym_foreach_r] = ACTIONS(682), - [anon_sym_while] = ACTIONS(684), - [anon_sym_do] = ACTIONS(686), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(688), - [anon_sym_DOLLARassert] = ACTIONS(690), - [anon_sym_DOLLARerror] = ACTIONS(692), - [anon_sym_DOLLARecho] = ACTIONS(694), - [anon_sym_DOLLARif] = ACTIONS(696), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(698), - [anon_sym_DOLLARendfor] = ACTIONS(700), - [anon_sym_DOLLARforeach] = ACTIONS(702), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), - }, - [35] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(35), - [sym_doc_comment] = STATE(35), - [sym_block_comment] = STATE(35), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1163), - [sym_const_declaration] = STATE(852), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(851), - [sym_expr_stmt] = STATE(851), - [sym_var_decl] = STATE(2193), - [sym_var_stmt] = STATE(851), - [sym_return_stmt] = STATE(851), - [sym_continue_stmt] = STATE(851), - [sym_break_stmt] = STATE(851), - [sym_defer_stmt] = STATE(851), - [sym_assert_stmt] = STATE(851), - [sym_declaration_stmt] = STATE(851), - [sym_nextcase_stmt] = STATE(851), - [sym_switch_stmt] = STATE(851), - [sym_if_stmt] = STATE(851), - [sym_for_stmt] = STATE(851), - [sym_foreach_stmt] = STATE(851), - [sym_while_stmt] = STATE(851), - [sym_do_stmt] = STATE(851), - [sym_asm_block_stmt] = STATE(851), - [sym_ct_stmt_body] = STATE(2067), - [sym_ct_assert_stmt] = STATE(851), - [sym_ct_echo_stmt] = STATE(851), - [sym_ct_if_stmt] = STATE(851), - [sym__ct_switch] = STATE(1557), - [sym_ct_switch_stmt] = STATE(851), - [sym_ct_for_stmt] = STATE(851), - [sym_ct_foreach_stmt] = STATE(851), - [sym__expr] = STATE(1269), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1558), - [aux_sym_compound_stmt_repeat1] = STATE(74), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(658), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(660), - [anon_sym_const] = ACTIONS(662), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(664), - [anon_sym_continue] = ACTIONS(666), - [anon_sym_break] = ACTIONS(668), - [anon_sym_defer] = ACTIONS(670), - [anon_sym_assert] = ACTIONS(672), - [anon_sym_nextcase] = ACTIONS(674), - [anon_sym_switch] = ACTIONS(676), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_foreach] = ACTIONS(682), - [anon_sym_foreach_r] = ACTIONS(682), - [anon_sym_while] = ACTIONS(684), - [anon_sym_do] = ACTIONS(686), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(688), - [anon_sym_DOLLARassert] = ACTIONS(690), - [anon_sym_DOLLARerror] = ACTIONS(692), - [anon_sym_DOLLARecho] = ACTIONS(694), - [anon_sym_DOLLARif] = ACTIONS(696), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(698), - [anon_sym_DOLLARendfor] = ACTIONS(704), - [anon_sym_DOLLARforeach] = ACTIONS(702), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), - }, - [36] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(36), - [sym_doc_comment] = STATE(36), - [sym_block_comment] = STATE(36), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1175), - [sym_const_declaration] = STATE(727), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(730), - [sym_expr_stmt] = STATE(730), - [sym_var_decl] = STATE(2279), - [sym_var_stmt] = STATE(730), - [sym_return_stmt] = STATE(730), - [sym_continue_stmt] = STATE(730), - [sym_break_stmt] = STATE(730), - [sym_defer_stmt] = STATE(730), - [sym_assert_stmt] = STATE(730), - [sym_declaration_stmt] = STATE(730), - [sym_nextcase_stmt] = STATE(730), - [sym_switch_stmt] = STATE(730), - [sym_if_stmt] = STATE(730), - [sym_for_stmt] = STATE(730), - [sym_foreach_stmt] = STATE(730), - [sym_while_stmt] = STATE(730), - [sym_do_stmt] = STATE(730), - [sym_asm_block_stmt] = STATE(730), - [sym_ct_stmt_body] = STATE(2068), - [sym_ct_assert_stmt] = STATE(730), - [sym_ct_echo_stmt] = STATE(730), - [sym_ct_if_stmt] = STATE(730), - [sym__ct_switch] = STATE(1593), - [sym_ct_switch_stmt] = STATE(730), - [sym_ct_for_stmt] = STATE(730), - [sym_ct_foreach_stmt] = STATE(730), - [sym__expr] = STATE(1275), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1596), - [aux_sym_compound_stmt_repeat1] = STATE(86), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(612), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(614), - [anon_sym_const] = ACTIONS(616), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_break] = ACTIONS(622), - [anon_sym_defer] = ACTIONS(624), - [anon_sym_assert] = ACTIONS(626), - [anon_sym_nextcase] = ACTIONS(628), - [anon_sym_switch] = ACTIONS(630), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(632), - [anon_sym_for] = ACTIONS(634), - [anon_sym_foreach] = ACTIONS(636), - [anon_sym_foreach_r] = ACTIONS(636), - [anon_sym_while] = ACTIONS(638), - [anon_sym_do] = ACTIONS(640), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(642), - [anon_sym_DOLLARassert] = ACTIONS(644), - [anon_sym_DOLLARerror] = ACTIONS(646), - [anon_sym_DOLLARecho] = ACTIONS(648), - [anon_sym_DOLLARif] = ACTIONS(650), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(652), - [anon_sym_DOLLARforeach] = ACTIONS(654), - [anon_sym_DOLLARendforeach] = ACTIONS(706), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym__expr] = STATE(1109), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1338), + [aux_sym_compound_stmt_repeat1] = STATE(89), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(605), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(607), + [anon_sym_const] = ACTIONS(609), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_break] = ACTIONS(615), + [anon_sym_defer] = ACTIONS(617), + [anon_sym_assert] = ACTIONS(619), + [anon_sym_nextcase] = ACTIONS(621), + [anon_sym_switch] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(625), + [anon_sym_for] = ACTIONS(627), + [anon_sym_foreach] = ACTIONS(629), + [anon_sym_foreach_r] = ACTIONS(629), + [anon_sym_while] = ACTIONS(631), + [anon_sym_do] = ACTIONS(633), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(635), + [anon_sym_DOLLARassert] = ACTIONS(637), + [anon_sym_DOLLARerror] = ACTIONS(639), + [anon_sym_DOLLARecho] = ACTIONS(641), + [anon_sym_DOLLARif] = ACTIONS(643), + [anon_sym_DOLLARendif] = ACTIONS(719), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(647), + [anon_sym_DOLLARforeach] = ACTIONS(649), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, - [37] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(37), - [sym_doc_comment] = STATE(37), - [sym_block_comment] = STATE(37), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1183), + [48] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(48), + [sym_doc_comment] = STATE(48), + [sym_block_comment] = STATE(48), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1173), [sym_const_declaration] = STATE(716), - [sym_lambda_declaration] = STATE(1679), + [sym_lambda_declaration] = STATE(1480), [sym_compound_stmt] = STATE(715), [sym_expr_stmt] = STATE(715), - [sym_var_decl] = STATE(2182), + [sym_var_decl] = STATE(1937), [sym_var_stmt] = STATE(715), [sym_return_stmt] = STATE(715), [sym_continue_stmt] = STATE(715), @@ -20158,177 +21645,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_while_stmt] = STATE(715), [sym_do_stmt] = STATE(715), [sym_asm_block_stmt] = STATE(715), - [sym_ct_stmt_body] = STATE(2116), + [sym_ct_stmt_body] = STATE(1898), [sym_ct_assert_stmt] = STATE(715), [sym_ct_echo_stmt] = STATE(715), [sym_ct_if_stmt] = STATE(715), - [sym__ct_switch] = STATE(1621), + [sym__ct_switch] = STATE(1545), [sym_ct_switch_stmt] = STATE(715), [sym_ct_for_stmt] = STATE(715), [sym_ct_foreach_stmt] = STATE(715), - [sym__expr] = STATE(1299), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1624), - [aux_sym_compound_stmt_repeat1] = STATE(64), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(566), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(568), - [anon_sym_const] = ACTIONS(570), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(572), - [anon_sym_continue] = ACTIONS(574), - [anon_sym_break] = ACTIONS(576), - [anon_sym_defer] = ACTIONS(578), - [anon_sym_assert] = ACTIONS(580), - [anon_sym_nextcase] = ACTIONS(582), - [anon_sym_switch] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(586), - [anon_sym_for] = ACTIONS(588), - [anon_sym_foreach] = ACTIONS(590), - [anon_sym_foreach_r] = ACTIONS(590), - [anon_sym_while] = ACTIONS(592), - [anon_sym_do] = ACTIONS(594), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(596), - [anon_sym_DOLLARassert] = ACTIONS(598), - [anon_sym_DOLLARerror] = ACTIONS(600), - [anon_sym_DOLLARecho] = ACTIONS(602), - [anon_sym_DOLLARif] = ACTIONS(604), - [anon_sym_DOLLARendif] = ACTIONS(708), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(608), - [anon_sym_DOLLARforeach] = ACTIONS(610), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym__expr] = STATE(1109), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1338), + [aux_sym_compound_stmt_repeat1] = STATE(89), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(605), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(607), + [anon_sym_const] = ACTIONS(609), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_break] = ACTIONS(615), + [anon_sym_defer] = ACTIONS(617), + [anon_sym_assert] = ACTIONS(619), + [anon_sym_nextcase] = ACTIONS(621), + [anon_sym_switch] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(625), + [anon_sym_for] = ACTIONS(627), + [anon_sym_foreach] = ACTIONS(629), + [anon_sym_foreach_r] = ACTIONS(629), + [anon_sym_while] = ACTIONS(631), + [anon_sym_do] = ACTIONS(633), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(635), + [anon_sym_DOLLARassert] = ACTIONS(637), + [anon_sym_DOLLARerror] = ACTIONS(639), + [anon_sym_DOLLARecho] = ACTIONS(641), + [anon_sym_DOLLARif] = ACTIONS(643), + [anon_sym_DOLLARendif] = ACTIONS(721), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(647), + [anon_sym_DOLLARforeach] = ACTIONS(649), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, - [38] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(38), - [sym_doc_comment] = STATE(38), - [sym_block_comment] = STATE(38), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1183), + [49] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(49), + [sym_doc_comment] = STATE(49), + [sym_block_comment] = STATE(49), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1173), [sym_const_declaration] = STATE(716), - [sym_lambda_declaration] = STATE(1679), + [sym_lambda_declaration] = STATE(1480), [sym_compound_stmt] = STATE(715), [sym_expr_stmt] = STATE(715), - [sym_var_decl] = STATE(2182), + [sym_var_decl] = STATE(1937), [sym_var_stmt] = STATE(715), [sym_return_stmt] = STATE(715), [sym_continue_stmt] = STATE(715), @@ -20344,177 +21827,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_while_stmt] = STATE(715), [sym_do_stmt] = STATE(715), [sym_asm_block_stmt] = STATE(715), - [sym_ct_stmt_body] = STATE(2198), + [sym_ct_stmt_body] = STATE(2029), [sym_ct_assert_stmt] = STATE(715), [sym_ct_echo_stmt] = STATE(715), [sym_ct_if_stmt] = STATE(715), - [sym__ct_switch] = STATE(1621), + [sym__ct_switch] = STATE(1545), [sym_ct_switch_stmt] = STATE(715), [sym_ct_for_stmt] = STATE(715), [sym_ct_foreach_stmt] = STATE(715), - [sym__expr] = STATE(1299), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1624), - [aux_sym_compound_stmt_repeat1] = STATE(64), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(566), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(568), - [anon_sym_const] = ACTIONS(570), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(572), - [anon_sym_continue] = ACTIONS(574), - [anon_sym_break] = ACTIONS(576), - [anon_sym_defer] = ACTIONS(578), - [anon_sym_assert] = ACTIONS(580), - [anon_sym_nextcase] = ACTIONS(582), - [anon_sym_switch] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(586), - [anon_sym_for] = ACTIONS(588), - [anon_sym_foreach] = ACTIONS(590), - [anon_sym_foreach_r] = ACTIONS(590), - [anon_sym_while] = ACTIONS(592), - [anon_sym_do] = ACTIONS(594), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(596), - [anon_sym_DOLLARassert] = ACTIONS(598), - [anon_sym_DOLLARerror] = ACTIONS(600), - [anon_sym_DOLLARecho] = ACTIONS(602), - [anon_sym_DOLLARif] = ACTIONS(604), - [anon_sym_DOLLARendif] = ACTIONS(710), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(608), - [anon_sym_DOLLARforeach] = ACTIONS(610), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym__expr] = STATE(1109), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1338), + [aux_sym_compound_stmt_repeat1] = STATE(89), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(605), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(607), + [anon_sym_const] = ACTIONS(609), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_break] = ACTIONS(615), + [anon_sym_defer] = ACTIONS(617), + [anon_sym_assert] = ACTIONS(619), + [anon_sym_nextcase] = ACTIONS(621), + [anon_sym_switch] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(625), + [anon_sym_for] = ACTIONS(627), + [anon_sym_foreach] = ACTIONS(629), + [anon_sym_foreach_r] = ACTIONS(629), + [anon_sym_while] = ACTIONS(631), + [anon_sym_do] = ACTIONS(633), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(635), + [anon_sym_DOLLARassert] = ACTIONS(637), + [anon_sym_DOLLARerror] = ACTIONS(639), + [anon_sym_DOLLARecho] = ACTIONS(641), + [anon_sym_DOLLARif] = ACTIONS(643), + [anon_sym_DOLLARendif] = ACTIONS(723), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(647), + [anon_sym_DOLLARforeach] = ACTIONS(649), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, - [39] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(39), - [sym_doc_comment] = STATE(39), - [sym_block_comment] = STATE(39), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1170), + [50] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(50), + [sym_doc_comment] = STATE(50), + [sym_block_comment] = STATE(50), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1169), [sym_const_declaration] = STATE(593), - [sym_lambda_declaration] = STATE(1679), + [sym_lambda_declaration] = STATE(1480), [sym_compound_stmt] = STATE(594), [sym_expr_stmt] = STATE(594), - [sym_var_decl] = STATE(2285), + [sym_var_decl] = STATE(2089), [sym_var_stmt] = STATE(594), [sym_return_stmt] = STATE(594), [sym_continue_stmt] = STATE(594), @@ -20530,363 +22009,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_while_stmt] = STATE(594), [sym_do_stmt] = STATE(594), [sym_asm_block_stmt] = STATE(594), + [sym_ct_stmt_body] = STATE(2011), [sym_ct_assert_stmt] = STATE(594), [sym_ct_echo_stmt] = STATE(594), [sym_ct_if_stmt] = STATE(594), - [sym__ct_switch] = STATE(1604), + [sym__ct_switch] = STATE(1521), [sym_ct_switch_stmt] = STATE(594), [sym_ct_for_stmt] = STATE(594), [sym_ct_foreach_stmt] = STATE(594), - [sym__expr] = STATE(1288), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1595), - [aux_sym_compound_stmt_repeat1] = STATE(53), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(472), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(474), - [anon_sym_const] = ACTIONS(476), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(478), - [anon_sym_continue] = ACTIONS(480), - [anon_sym_break] = ACTIONS(482), - [anon_sym_defer] = ACTIONS(484), - [anon_sym_assert] = ACTIONS(486), - [anon_sym_nextcase] = ACTIONS(488), - [anon_sym_switch] = ACTIONS(490), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(492), - [anon_sym_for] = ACTIONS(494), - [anon_sym_foreach] = ACTIONS(496), - [anon_sym_foreach_r] = ACTIONS(496), - [anon_sym_while] = ACTIONS(498), - [anon_sym_do] = ACTIONS(500), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(502), - [anon_sym_DOLLARassert] = ACTIONS(504), - [anon_sym_DOLLARerror] = ACTIONS(506), - [anon_sym_DOLLARecho] = ACTIONS(508), - [anon_sym_DOLLARif] = ACTIONS(510), - [anon_sym_DOLLARendif] = ACTIONS(560), - [anon_sym_DOLLARelse] = ACTIONS(560), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(516), - [anon_sym_DOLLARforeach] = ACTIONS(518), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), - }, - [40] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(40), - [sym_doc_comment] = STATE(40), - [sym_block_comment] = STATE(40), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1183), - [sym_const_declaration] = STATE(716), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(715), - [sym_expr_stmt] = STATE(715), - [sym_var_decl] = STATE(2182), - [sym_var_stmt] = STATE(715), - [sym_return_stmt] = STATE(715), - [sym_continue_stmt] = STATE(715), - [sym_break_stmt] = STATE(715), - [sym_defer_stmt] = STATE(715), - [sym_assert_stmt] = STATE(715), - [sym_declaration_stmt] = STATE(715), - [sym_nextcase_stmt] = STATE(715), - [sym_switch_stmt] = STATE(715), - [sym_if_stmt] = STATE(715), - [sym_for_stmt] = STATE(715), - [sym_foreach_stmt] = STATE(715), - [sym_while_stmt] = STATE(715), - [sym_do_stmt] = STATE(715), - [sym_asm_block_stmt] = STATE(715), - [sym_ct_stmt_body] = STATE(2207), - [sym_ct_assert_stmt] = STATE(715), - [sym_ct_echo_stmt] = STATE(715), - [sym_ct_if_stmt] = STATE(715), - [sym__ct_switch] = STATE(1621), - [sym_ct_switch_stmt] = STATE(715), - [sym_ct_for_stmt] = STATE(715), - [sym_ct_foreach_stmt] = STATE(715), - [sym__expr] = STATE(1299), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1624), - [aux_sym_compound_stmt_repeat1] = STATE(64), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(566), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(568), - [anon_sym_const] = ACTIONS(570), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(572), - [anon_sym_continue] = ACTIONS(574), - [anon_sym_break] = ACTIONS(576), - [anon_sym_defer] = ACTIONS(578), - [anon_sym_assert] = ACTIONS(580), - [anon_sym_nextcase] = ACTIONS(582), - [anon_sym_switch] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(586), - [anon_sym_for] = ACTIONS(588), - [anon_sym_foreach] = ACTIONS(590), - [anon_sym_foreach_r] = ACTIONS(590), - [anon_sym_while] = ACTIONS(592), - [anon_sym_do] = ACTIONS(594), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(596), - [anon_sym_DOLLARassert] = ACTIONS(598), - [anon_sym_DOLLARerror] = ACTIONS(600), - [anon_sym_DOLLARecho] = ACTIONS(602), - [anon_sym_DOLLARif] = ACTIONS(604), - [anon_sym_DOLLARendif] = ACTIONS(712), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(608), - [anon_sym_DOLLARforeach] = ACTIONS(610), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym__expr] = STATE(1087), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1353), + [aux_sym_compound_stmt_repeat1] = STATE(79), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(651), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(653), + [anon_sym_const] = ACTIONS(655), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(657), + [anon_sym_continue] = ACTIONS(659), + [anon_sym_break] = ACTIONS(661), + [anon_sym_defer] = ACTIONS(663), + [anon_sym_assert] = ACTIONS(665), + [anon_sym_nextcase] = ACTIONS(667), + [anon_sym_switch] = ACTIONS(669), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(671), + [anon_sym_for] = ACTIONS(673), + [anon_sym_foreach] = ACTIONS(675), + [anon_sym_foreach_r] = ACTIONS(675), + [anon_sym_while] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(681), + [anon_sym_DOLLARassert] = ACTIONS(683), + [anon_sym_DOLLARerror] = ACTIONS(685), + [anon_sym_DOLLARecho] = ACTIONS(687), + [anon_sym_DOLLARif] = ACTIONS(689), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(691), + [anon_sym_DOLLARendfor] = ACTIONS(725), + [anon_sym_DOLLARforeach] = ACTIONS(695), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, - [41] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(41), - [sym_doc_comment] = STATE(41), - [sym_block_comment] = STATE(41), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1183), + [51] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(51), + [sym_doc_comment] = STATE(51), + [sym_block_comment] = STATE(51), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1173), [sym_const_declaration] = STATE(716), - [sym_lambda_declaration] = STATE(1679), + [sym_lambda_declaration] = STATE(1480), [sym_compound_stmt] = STATE(715), [sym_expr_stmt] = STATE(715), - [sym_var_decl] = STATE(2182), + [sym_var_decl] = STATE(1937), [sym_var_stmt] = STATE(715), [sym_return_stmt] = STATE(715), [sym_continue_stmt] = STATE(715), @@ -20902,1293 +22191,719 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_while_stmt] = STATE(715), [sym_do_stmt] = STATE(715), [sym_asm_block_stmt] = STATE(715), - [sym_ct_stmt_body] = STATE(2076), + [sym_ct_stmt_body] = STATE(2005), [sym_ct_assert_stmt] = STATE(715), [sym_ct_echo_stmt] = STATE(715), [sym_ct_if_stmt] = STATE(715), - [sym__ct_switch] = STATE(1621), + [sym__ct_switch] = STATE(1545), [sym_ct_switch_stmt] = STATE(715), [sym_ct_for_stmt] = STATE(715), [sym_ct_foreach_stmt] = STATE(715), - [sym__expr] = STATE(1299), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1624), - [aux_sym_compound_stmt_repeat1] = STATE(64), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(566), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(568), - [anon_sym_const] = ACTIONS(570), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(572), - [anon_sym_continue] = ACTIONS(574), - [anon_sym_break] = ACTIONS(576), - [anon_sym_defer] = ACTIONS(578), - [anon_sym_assert] = ACTIONS(580), - [anon_sym_nextcase] = ACTIONS(582), - [anon_sym_switch] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(586), - [anon_sym_for] = ACTIONS(588), - [anon_sym_foreach] = ACTIONS(590), - [anon_sym_foreach_r] = ACTIONS(590), - [anon_sym_while] = ACTIONS(592), - [anon_sym_do] = ACTIONS(594), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(596), - [anon_sym_DOLLARassert] = ACTIONS(598), - [anon_sym_DOLLARerror] = ACTIONS(600), - [anon_sym_DOLLARecho] = ACTIONS(602), - [anon_sym_DOLLARif] = ACTIONS(604), - [anon_sym_DOLLARendif] = ACTIONS(714), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(608), - [anon_sym_DOLLARforeach] = ACTIONS(610), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym__expr] = STATE(1109), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1338), + [aux_sym_compound_stmt_repeat1] = STATE(89), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(605), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(607), + [anon_sym_const] = ACTIONS(609), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_break] = ACTIONS(615), + [anon_sym_defer] = ACTIONS(617), + [anon_sym_assert] = ACTIONS(619), + [anon_sym_nextcase] = ACTIONS(621), + [anon_sym_switch] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(625), + [anon_sym_for] = ACTIONS(627), + [anon_sym_foreach] = ACTIONS(629), + [anon_sym_foreach_r] = ACTIONS(629), + [anon_sym_while] = ACTIONS(631), + [anon_sym_do] = ACTIONS(633), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(635), + [anon_sym_DOLLARassert] = ACTIONS(637), + [anon_sym_DOLLARerror] = ACTIONS(639), + [anon_sym_DOLLARecho] = ACTIONS(641), + [anon_sym_DOLLARif] = ACTIONS(643), + [anon_sym_DOLLARendif] = ACTIONS(727), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(647), + [anon_sym_DOLLARforeach] = ACTIONS(649), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, - [42] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(42), - [sym_doc_comment] = STATE(42), - [sym_block_comment] = STATE(42), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1183), - [sym_const_declaration] = STATE(716), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(715), - [sym_expr_stmt] = STATE(715), - [sym_var_decl] = STATE(2182), - [sym_var_stmt] = STATE(715), - [sym_return_stmt] = STATE(715), - [sym_continue_stmt] = STATE(715), - [sym_break_stmt] = STATE(715), - [sym_defer_stmt] = STATE(715), - [sym_assert_stmt] = STATE(715), - [sym_declaration_stmt] = STATE(715), - [sym_nextcase_stmt] = STATE(715), - [sym_switch_stmt] = STATE(715), - [sym_if_stmt] = STATE(715), - [sym_for_stmt] = STATE(715), - [sym_foreach_stmt] = STATE(715), - [sym_while_stmt] = STATE(715), - [sym_do_stmt] = STATE(715), - [sym_asm_block_stmt] = STATE(715), - [sym_ct_stmt_body] = STATE(2081), - [sym_ct_assert_stmt] = STATE(715), - [sym_ct_echo_stmt] = STATE(715), - [sym_ct_if_stmt] = STATE(715), - [sym__ct_switch] = STATE(1621), - [sym_ct_switch_stmt] = STATE(715), - [sym_ct_for_stmt] = STATE(715), - [sym_ct_foreach_stmt] = STATE(715), - [sym__expr] = STATE(1299), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1624), - [aux_sym_compound_stmt_repeat1] = STATE(64), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(566), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(568), - [anon_sym_const] = ACTIONS(570), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(572), - [anon_sym_continue] = ACTIONS(574), - [anon_sym_break] = ACTIONS(576), - [anon_sym_defer] = ACTIONS(578), - [anon_sym_assert] = ACTIONS(580), - [anon_sym_nextcase] = ACTIONS(582), - [anon_sym_switch] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(586), - [anon_sym_for] = ACTIONS(588), - [anon_sym_foreach] = ACTIONS(590), - [anon_sym_foreach_r] = ACTIONS(590), - [anon_sym_while] = ACTIONS(592), - [anon_sym_do] = ACTIONS(594), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(596), - [anon_sym_DOLLARassert] = ACTIONS(598), - [anon_sym_DOLLARerror] = ACTIONS(600), - [anon_sym_DOLLARecho] = ACTIONS(602), - [anon_sym_DOLLARif] = ACTIONS(604), - [anon_sym_DOLLARendif] = ACTIONS(716), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(608), - [anon_sym_DOLLARforeach] = ACTIONS(610), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), - }, - [43] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(43), - [sym_doc_comment] = STATE(43), - [sym_block_comment] = STATE(43), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1183), - [sym_const_declaration] = STATE(716), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(715), - [sym_expr_stmt] = STATE(715), - [sym_var_decl] = STATE(2182), - [sym_var_stmt] = STATE(715), - [sym_return_stmt] = STATE(715), - [sym_continue_stmt] = STATE(715), - [sym_break_stmt] = STATE(715), - [sym_defer_stmt] = STATE(715), - [sym_assert_stmt] = STATE(715), - [sym_declaration_stmt] = STATE(715), - [sym_nextcase_stmt] = STATE(715), - [sym_switch_stmt] = STATE(715), - [sym_if_stmt] = STATE(715), - [sym_for_stmt] = STATE(715), - [sym_foreach_stmt] = STATE(715), - [sym_while_stmt] = STATE(715), - [sym_do_stmt] = STATE(715), - [sym_asm_block_stmt] = STATE(715), - [sym_ct_stmt_body] = STATE(2204), - [sym_ct_assert_stmt] = STATE(715), - [sym_ct_echo_stmt] = STATE(715), - [sym_ct_if_stmt] = STATE(715), - [sym__ct_switch] = STATE(1621), - [sym_ct_switch_stmt] = STATE(715), - [sym_ct_for_stmt] = STATE(715), - [sym_ct_foreach_stmt] = STATE(715), - [sym__expr] = STATE(1299), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1624), - [aux_sym_compound_stmt_repeat1] = STATE(64), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(566), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(568), - [anon_sym_const] = ACTIONS(570), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(572), - [anon_sym_continue] = ACTIONS(574), - [anon_sym_break] = ACTIONS(576), - [anon_sym_defer] = ACTIONS(578), - [anon_sym_assert] = ACTIONS(580), - [anon_sym_nextcase] = ACTIONS(582), - [anon_sym_switch] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(586), - [anon_sym_for] = ACTIONS(588), - [anon_sym_foreach] = ACTIONS(590), - [anon_sym_foreach_r] = ACTIONS(590), - [anon_sym_while] = ACTIONS(592), - [anon_sym_do] = ACTIONS(594), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(596), - [anon_sym_DOLLARassert] = ACTIONS(598), - [anon_sym_DOLLARerror] = ACTIONS(600), - [anon_sym_DOLLARecho] = ACTIONS(602), - [anon_sym_DOLLARif] = ACTIONS(604), - [anon_sym_DOLLARendif] = ACTIONS(718), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(608), - [anon_sym_DOLLARforeach] = ACTIONS(610), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), - }, - [44] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(44), - [sym_doc_comment] = STATE(44), - [sym_block_comment] = STATE(44), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1183), - [sym_const_declaration] = STATE(716), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(715), - [sym_expr_stmt] = STATE(715), - [sym_var_decl] = STATE(2182), - [sym_var_stmt] = STATE(715), - [sym_return_stmt] = STATE(715), - [sym_continue_stmt] = STATE(715), - [sym_break_stmt] = STATE(715), - [sym_defer_stmt] = STATE(715), - [sym_assert_stmt] = STATE(715), - [sym_declaration_stmt] = STATE(715), - [sym_nextcase_stmt] = STATE(715), - [sym_switch_stmt] = STATE(715), - [sym_if_stmt] = STATE(715), - [sym_for_stmt] = STATE(715), - [sym_foreach_stmt] = STATE(715), - [sym_while_stmt] = STATE(715), - [sym_do_stmt] = STATE(715), - [sym_asm_block_stmt] = STATE(715), - [sym_ct_stmt_body] = STATE(2099), - [sym_ct_assert_stmt] = STATE(715), - [sym_ct_echo_stmt] = STATE(715), - [sym_ct_if_stmt] = STATE(715), - [sym__ct_switch] = STATE(1621), - [sym_ct_switch_stmt] = STATE(715), - [sym_ct_for_stmt] = STATE(715), - [sym_ct_foreach_stmt] = STATE(715), - [sym__expr] = STATE(1299), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1624), - [aux_sym_compound_stmt_repeat1] = STATE(64), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(566), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(568), - [anon_sym_const] = ACTIONS(570), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(572), - [anon_sym_continue] = ACTIONS(574), - [anon_sym_break] = ACTIONS(576), - [anon_sym_defer] = ACTIONS(578), - [anon_sym_assert] = ACTIONS(580), - [anon_sym_nextcase] = ACTIONS(582), - [anon_sym_switch] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(586), - [anon_sym_for] = ACTIONS(588), - [anon_sym_foreach] = ACTIONS(590), - [anon_sym_foreach_r] = ACTIONS(590), - [anon_sym_while] = ACTIONS(592), - [anon_sym_do] = ACTIONS(594), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(596), - [anon_sym_DOLLARassert] = ACTIONS(598), - [anon_sym_DOLLARerror] = ACTIONS(600), - [anon_sym_DOLLARecho] = ACTIONS(602), - [anon_sym_DOLLARif] = ACTIONS(604), - [anon_sym_DOLLARendif] = ACTIONS(720), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(608), - [anon_sym_DOLLARforeach] = ACTIONS(610), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), - }, - [45] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(45), - [sym_doc_comment] = STATE(45), - [sym_block_comment] = STATE(45), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1175), - [sym_const_declaration] = STATE(727), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(730), - [sym_expr_stmt] = STATE(730), - [sym_var_decl] = STATE(2279), - [sym_var_stmt] = STATE(730), - [sym_return_stmt] = STATE(730), - [sym_continue_stmt] = STATE(730), - [sym_break_stmt] = STATE(730), - [sym_defer_stmt] = STATE(730), - [sym_assert_stmt] = STATE(730), - [sym_declaration_stmt] = STATE(730), - [sym_nextcase_stmt] = STATE(730), - [sym_switch_stmt] = STATE(730), - [sym_if_stmt] = STATE(730), - [sym_for_stmt] = STATE(730), - [sym_foreach_stmt] = STATE(730), - [sym_while_stmt] = STATE(730), - [sym_do_stmt] = STATE(730), - [sym_asm_block_stmt] = STATE(730), - [sym_ct_stmt_body] = STATE(2073), - [sym_ct_assert_stmt] = STATE(730), - [sym_ct_echo_stmt] = STATE(730), - [sym_ct_if_stmt] = STATE(730), - [sym__ct_switch] = STATE(1593), - [sym_ct_switch_stmt] = STATE(730), - [sym_ct_for_stmt] = STATE(730), - [sym_ct_foreach_stmt] = STATE(730), - [sym__expr] = STATE(1275), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1596), - [aux_sym_compound_stmt_repeat1] = STATE(86), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(612), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(614), - [anon_sym_const] = ACTIONS(616), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_break] = ACTIONS(622), - [anon_sym_defer] = ACTIONS(624), - [anon_sym_assert] = ACTIONS(626), - [anon_sym_nextcase] = ACTIONS(628), - [anon_sym_switch] = ACTIONS(630), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(632), - [anon_sym_for] = ACTIONS(634), - [anon_sym_foreach] = ACTIONS(636), - [anon_sym_foreach_r] = ACTIONS(636), - [anon_sym_while] = ACTIONS(638), - [anon_sym_do] = ACTIONS(640), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(642), - [anon_sym_DOLLARassert] = ACTIONS(644), - [anon_sym_DOLLARerror] = ACTIONS(646), - [anon_sym_DOLLARecho] = ACTIONS(648), - [anon_sym_DOLLARif] = ACTIONS(650), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(652), - [anon_sym_DOLLARforeach] = ACTIONS(654), - [anon_sym_DOLLARendforeach] = ACTIONS(722), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [52] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(52), + [sym_doc_comment] = STATE(52), + [sym_block_comment] = STATE(52), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1169), + [sym_const_declaration] = STATE(593), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(594), + [sym_expr_stmt] = STATE(594), + [sym_var_decl] = STATE(2089), + [sym_var_stmt] = STATE(594), + [sym_return_stmt] = STATE(594), + [sym_continue_stmt] = STATE(594), + [sym_break_stmt] = STATE(594), + [sym_defer_stmt] = STATE(594), + [sym_assert_stmt] = STATE(594), + [sym_declaration_stmt] = STATE(594), + [sym_nextcase_stmt] = STATE(594), + [sym_switch_stmt] = STATE(594), + [sym_if_stmt] = STATE(594), + [sym_for_stmt] = STATE(594), + [sym_foreach_stmt] = STATE(594), + [sym_while_stmt] = STATE(594), + [sym_do_stmt] = STATE(594), + [sym_asm_block_stmt] = STATE(594), + [sym_ct_stmt_body] = STATE(2006), + [sym_ct_assert_stmt] = STATE(594), + [sym_ct_echo_stmt] = STATE(594), + [sym_ct_if_stmt] = STATE(594), + [sym__ct_switch] = STATE(1521), + [sym_ct_switch_stmt] = STATE(594), + [sym_ct_for_stmt] = STATE(594), + [sym_ct_foreach_stmt] = STATE(594), + [sym__expr] = STATE(1087), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1353), + [aux_sym_compound_stmt_repeat1] = STATE(79), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(651), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(653), + [anon_sym_const] = ACTIONS(655), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(657), + [anon_sym_continue] = ACTIONS(659), + [anon_sym_break] = ACTIONS(661), + [anon_sym_defer] = ACTIONS(663), + [anon_sym_assert] = ACTIONS(665), + [anon_sym_nextcase] = ACTIONS(667), + [anon_sym_switch] = ACTIONS(669), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(671), + [anon_sym_for] = ACTIONS(673), + [anon_sym_foreach] = ACTIONS(675), + [anon_sym_foreach_r] = ACTIONS(675), + [anon_sym_while] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(681), + [anon_sym_DOLLARassert] = ACTIONS(683), + [anon_sym_DOLLARerror] = ACTIONS(685), + [anon_sym_DOLLARecho] = ACTIONS(687), + [anon_sym_DOLLARif] = ACTIONS(689), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(691), + [anon_sym_DOLLARendfor] = ACTIONS(729), + [anon_sym_DOLLARforeach] = ACTIONS(695), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, - [46] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(46), - [sym_doc_comment] = STATE(46), - [sym_block_comment] = STATE(46), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1175), - [sym_const_declaration] = STATE(727), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(730), - [sym_expr_stmt] = STATE(730), - [sym_var_decl] = STATE(2279), - [sym_var_stmt] = STATE(730), - [sym_return_stmt] = STATE(730), - [sym_continue_stmt] = STATE(730), - [sym_break_stmt] = STATE(730), - [sym_defer_stmt] = STATE(730), - [sym_assert_stmt] = STATE(730), - [sym_declaration_stmt] = STATE(730), - [sym_nextcase_stmt] = STATE(730), - [sym_switch_stmt] = STATE(730), - [sym_if_stmt] = STATE(730), - [sym_for_stmt] = STATE(730), - [sym_foreach_stmt] = STATE(730), - [sym_while_stmt] = STATE(730), - [sym_do_stmt] = STATE(730), - [sym_asm_block_stmt] = STATE(730), - [sym_ct_stmt_body] = STATE(2218), - [sym_ct_assert_stmt] = STATE(730), - [sym_ct_echo_stmt] = STATE(730), - [sym_ct_if_stmt] = STATE(730), - [sym__ct_switch] = STATE(1593), - [sym_ct_switch_stmt] = STATE(730), - [sym_ct_for_stmt] = STATE(730), - [sym_ct_foreach_stmt] = STATE(730), - [sym__expr] = STATE(1275), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1596), + [53] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(53), + [sym_doc_comment] = STATE(53), + [sym_block_comment] = STATE(53), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1170), + [sym_const_declaration] = STATE(642), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(641), + [sym_expr_stmt] = STATE(641), + [sym_var_decl] = STATE(1985), + [sym_var_stmt] = STATE(641), + [sym_return_stmt] = STATE(641), + [sym_continue_stmt] = STATE(641), + [sym_break_stmt] = STATE(641), + [sym_defer_stmt] = STATE(641), + [sym_assert_stmt] = STATE(641), + [sym_declaration_stmt] = STATE(641), + [sym_nextcase_stmt] = STATE(641), + [sym_switch_stmt] = STATE(641), + [sym_if_stmt] = STATE(641), + [sym_for_stmt] = STATE(641), + [sym_foreach_stmt] = STATE(641), + [sym_while_stmt] = STATE(641), + [sym_do_stmt] = STATE(641), + [sym_asm_block_stmt] = STATE(641), + [sym_ct_stmt_body] = STATE(2007), + [sym_ct_assert_stmt] = STATE(641), + [sym_ct_echo_stmt] = STATE(641), + [sym_ct_if_stmt] = STATE(641), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(641), + [sym_ct_for_stmt] = STATE(641), + [sym_ct_foreach_stmt] = STATE(641), + [sym__expr] = STATE(1100), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1357), [aux_sym_compound_stmt_repeat1] = STATE(86), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(612), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(614), - [anon_sym_const] = ACTIONS(616), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_break] = ACTIONS(622), - [anon_sym_defer] = ACTIONS(624), - [anon_sym_assert] = ACTIONS(626), - [anon_sym_nextcase] = ACTIONS(628), - [anon_sym_switch] = ACTIONS(630), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(632), - [anon_sym_for] = ACTIONS(634), - [anon_sym_foreach] = ACTIONS(636), - [anon_sym_foreach_r] = ACTIONS(636), - [anon_sym_while] = ACTIONS(638), - [anon_sym_do] = ACTIONS(640), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(642), - [anon_sym_DOLLARassert] = ACTIONS(644), - [anon_sym_DOLLARerror] = ACTIONS(646), - [anon_sym_DOLLARecho] = ACTIONS(648), - [anon_sym_DOLLARif] = ACTIONS(650), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(652), - [anon_sym_DOLLARforeach] = ACTIONS(654), - [anon_sym_DOLLARendforeach] = ACTIONS(724), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(559), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(561), + [anon_sym_const] = ACTIONS(563), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(565), + [anon_sym_continue] = ACTIONS(567), + [anon_sym_break] = ACTIONS(569), + [anon_sym_defer] = ACTIONS(571), + [anon_sym_assert] = ACTIONS(573), + [anon_sym_nextcase] = ACTIONS(575), + [anon_sym_switch] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(579), + [anon_sym_for] = ACTIONS(581), + [anon_sym_foreach] = ACTIONS(583), + [anon_sym_foreach_r] = ACTIONS(583), + [anon_sym_while] = ACTIONS(585), + [anon_sym_do] = ACTIONS(587), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(589), + [anon_sym_DOLLARassert] = ACTIONS(591), + [anon_sym_DOLLARerror] = ACTIONS(593), + [anon_sym_DOLLARecho] = ACTIONS(595), + [anon_sym_DOLLARif] = ACTIONS(597), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(599), + [anon_sym_DOLLARforeach] = ACTIONS(601), + [anon_sym_DOLLARendforeach] = ACTIONS(731), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, - [47] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(47), - [sym_doc_comment] = STATE(47), - [sym_block_comment] = STATE(47), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1163), - [sym_const_declaration] = STATE(852), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(851), - [sym_expr_stmt] = STATE(851), - [sym_var_decl] = STATE(2193), - [sym_var_stmt] = STATE(851), - [sym_return_stmt] = STATE(851), - [sym_continue_stmt] = STATE(851), - [sym_break_stmt] = STATE(851), - [sym_defer_stmt] = STATE(851), - [sym_assert_stmt] = STATE(851), - [sym_declaration_stmt] = STATE(851), - [sym_nextcase_stmt] = STATE(851), - [sym_switch_stmt] = STATE(851), - [sym_if_stmt] = STATE(851), - [sym_for_stmt] = STATE(851), - [sym_foreach_stmt] = STATE(851), - [sym_while_stmt] = STATE(851), - [sym_do_stmt] = STATE(851), - [sym_asm_block_stmt] = STATE(851), - [sym_ct_stmt_body] = STATE(2119), - [sym_ct_assert_stmt] = STATE(851), - [sym_ct_echo_stmt] = STATE(851), - [sym_ct_if_stmt] = STATE(851), - [sym__ct_switch] = STATE(1557), - [sym_ct_switch_stmt] = STATE(851), - [sym_ct_for_stmt] = STATE(851), - [sym_ct_foreach_stmt] = STATE(851), - [sym__expr] = STATE(1269), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1558), - [aux_sym_compound_stmt_repeat1] = STATE(74), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(658), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(660), - [anon_sym_const] = ACTIONS(662), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(664), - [anon_sym_continue] = ACTIONS(666), - [anon_sym_break] = ACTIONS(668), - [anon_sym_defer] = ACTIONS(670), - [anon_sym_assert] = ACTIONS(672), - [anon_sym_nextcase] = ACTIONS(674), - [anon_sym_switch] = ACTIONS(676), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_foreach] = ACTIONS(682), - [anon_sym_foreach_r] = ACTIONS(682), - [anon_sym_while] = ACTIONS(684), - [anon_sym_do] = ACTIONS(686), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(688), - [anon_sym_DOLLARassert] = ACTIONS(690), - [anon_sym_DOLLARerror] = ACTIONS(692), - [anon_sym_DOLLARecho] = ACTIONS(694), - [anon_sym_DOLLARif] = ACTIONS(696), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(698), - [anon_sym_DOLLARendfor] = ACTIONS(726), - [anon_sym_DOLLARforeach] = ACTIONS(702), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [54] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(54), + [sym_doc_comment] = STATE(54), + [sym_block_comment] = STATE(54), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1165), + [sym_const_declaration] = STATE(555), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(556), + [sym_expr_stmt] = STATE(556), + [sym_var_decl] = STATE(2183), + [sym_var_stmt] = STATE(556), + [sym_return_stmt] = STATE(556), + [sym_continue_stmt] = STATE(556), + [sym_break_stmt] = STATE(556), + [sym_defer_stmt] = STATE(556), + [sym_assert_stmt] = STATE(556), + [sym_declaration_stmt] = STATE(556), + [sym_nextcase_stmt] = STATE(556), + [sym_switch_stmt] = STATE(556), + [sym_if_stmt] = STATE(556), + [sym_for_stmt] = STATE(556), + [sym_foreach_stmt] = STATE(556), + [sym_while_stmt] = STATE(556), + [sym_do_stmt] = STATE(556), + [sym_asm_block_stmt] = STATE(556), + [sym_ct_assert_stmt] = STATE(556), + [sym_ct_echo_stmt] = STATE(556), + [sym_ct_if_stmt] = STATE(556), + [sym__ct_switch] = STATE(1508), + [sym_ct_switch_stmt] = STATE(556), + [sym_ct_for_stmt] = STATE(556), + [sym_ct_foreach_stmt] = STATE(556), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1342), + [aux_sym_compound_stmt_repeat1] = STATE(54), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(243), + [sym_integer_literal] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_DQUOTE] = ACTIONS(252), + [anon_sym_BQUOTE] = ACTIONS(255), + [sym_bytes_literal] = ACTIONS(258), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(261), + [sym_at_ident] = ACTIONS(264), + [sym_hash_ident] = ACTIONS(267), + [sym_type_ident] = ACTIONS(270), + [sym_ct_type_ident] = ACTIONS(273), + [sym_const_ident] = ACTIONS(276), + [sym_builtin] = ACTIONS(246), + [anon_sym_LPAREN] = ACTIONS(279), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_static] = ACTIONS(285), + [anon_sym_tlocal] = ACTIONS(285), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(736), + [anon_sym_const] = ACTIONS(739), + [anon_sym_var] = ACTIONS(302), + [anon_sym_return] = ACTIONS(742), + [anon_sym_continue] = ACTIONS(745), + [anon_sym_break] = ACTIONS(748), + [anon_sym_defer] = ACTIONS(751), + [anon_sym_assert] = ACTIONS(754), + [anon_sym_nextcase] = ACTIONS(757), + [anon_sym_switch] = ACTIONS(760), + [anon_sym_AMP_AMP] = ACTIONS(328), + [anon_sym_if] = ACTIONS(763), + [anon_sym_for] = ACTIONS(766), + [anon_sym_foreach] = ACTIONS(769), + [anon_sym_foreach_r] = ACTIONS(769), + [anon_sym_while] = ACTIONS(772), + [anon_sym_do] = ACTIONS(775), + [anon_sym_int] = ACTIONS(346), + [anon_sym_PLUS] = ACTIONS(282), + [anon_sym_DASH] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(328), + [anon_sym_asm] = ACTIONS(778), + [anon_sym_DOLLARassert] = ACTIONS(781), + [anon_sym_DOLLARerror] = ACTIONS(784), + [anon_sym_DOLLARecho] = ACTIONS(787), + [anon_sym_DOLLARif] = ACTIONS(790), + [anon_sym_DOLLARendif] = ACTIONS(320), + [anon_sym_DOLLARelse] = ACTIONS(320), + [anon_sym_DOLLARswitch] = ACTIONS(364), + [anon_sym_DOLLARfor] = ACTIONS(793), + [anon_sym_DOLLARforeach] = ACTIONS(796), + [anon_sym_DOLLARalignof] = ACTIONS(373), + [anon_sym_DOLLARextnameof] = ACTIONS(373), + [anon_sym_DOLLARnameof] = ACTIONS(373), + [anon_sym_DOLLARoffsetof] = ACTIONS(373), + [anon_sym_DOLLARqnameof] = ACTIONS(373), + [anon_sym_DOLLARvaconst] = ACTIONS(376), + [anon_sym_DOLLARvaarg] = ACTIONS(376), + [anon_sym_DOLLARvaref] = ACTIONS(376), + [anon_sym_DOLLARvaexpr] = ACTIONS(376), + [anon_sym_true] = ACTIONS(379), + [anon_sym_false] = ACTIONS(379), + [anon_sym_null] = ACTIONS(379), + [anon_sym_DOLLARvacount] = ACTIONS(379), + [anon_sym_DOLLARappend] = ACTIONS(376), + [anon_sym_DOLLARconcat] = ACTIONS(376), + [anon_sym_DOLLAReval] = ACTIONS(376), + [anon_sym_DOLLARis_const] = ACTIONS(376), + [anon_sym_DOLLARsizeof] = ACTIONS(376), + [anon_sym_DOLLARstringify] = ACTIONS(376), + [anon_sym_DOLLARand] = ACTIONS(382), + [anon_sym_DOLLARdefined] = ACTIONS(382), + [anon_sym_DOLLARembed] = ACTIONS(382), + [anon_sym_DOLLARor] = ACTIONS(382), + [anon_sym_DOLLARfeature] = ACTIONS(385), + [anon_sym_DOLLARassignable] = ACTIONS(388), + [anon_sym_BANG] = ACTIONS(328), + [anon_sym_TILDE] = ACTIONS(328), + [anon_sym_PLUS_PLUS] = ACTIONS(328), + [anon_sym_DASH_DASH] = ACTIONS(328), + [anon_sym_typeid] = ACTIONS(346), + [anon_sym_LBRACE_PIPE] = ACTIONS(391), + [anon_sym_void] = ACTIONS(346), + [anon_sym_bool] = ACTIONS(346), + [anon_sym_char] = ACTIONS(346), + [anon_sym_ichar] = ACTIONS(346), + [anon_sym_short] = ACTIONS(346), + [anon_sym_ushort] = ACTIONS(346), + [anon_sym_uint] = ACTIONS(346), + [anon_sym_long] = ACTIONS(346), + [anon_sym_ulong] = ACTIONS(346), + [anon_sym_int128] = ACTIONS(346), + [anon_sym_uint128] = ACTIONS(346), + [anon_sym_float] = ACTIONS(346), + [anon_sym_double] = ACTIONS(346), + [anon_sym_float16] = ACTIONS(346), + [anon_sym_bfloat16] = ACTIONS(346), + [anon_sym_float128] = ACTIONS(346), + [anon_sym_iptr] = ACTIONS(346), + [anon_sym_uptr] = ACTIONS(346), + [anon_sym_isz] = ACTIONS(346), + [anon_sym_usz] = ACTIONS(346), + [anon_sym_anyfault] = ACTIONS(346), + [anon_sym_any] = ACTIONS(346), + [anon_sym_DOLLARtypeof] = ACTIONS(394), + [anon_sym_DOLLARtypefrom] = ACTIONS(394), + [anon_sym_DOLLARvatype] = ACTIONS(394), + [anon_sym_DOLLARevaltype] = ACTIONS(394), + [sym_real_literal] = ACTIONS(246), }, - [48] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(48), - [sym_doc_comment] = STATE(48), - [sym_block_comment] = STATE(48), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1183), + [55] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(55), + [sym_doc_comment] = STATE(55), + [sym_block_comment] = STATE(55), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1173), [sym_const_declaration] = STATE(716), - [sym_lambda_declaration] = STATE(1679), + [sym_lambda_declaration] = STATE(1480), [sym_compound_stmt] = STATE(715), [sym_expr_stmt] = STATE(715), - [sym_var_decl] = STATE(2182), + [sym_var_decl] = STATE(1937), [sym_var_stmt] = STATE(715), [sym_return_stmt] = STATE(715), [sym_continue_stmt] = STATE(715), @@ -22204,177 +22919,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_while_stmt] = STATE(715), [sym_do_stmt] = STATE(715), [sym_asm_block_stmt] = STATE(715), - [sym_ct_stmt_body] = STATE(2366), + [sym_ct_stmt_body] = STATE(2018), [sym_ct_assert_stmt] = STATE(715), [sym_ct_echo_stmt] = STATE(715), [sym_ct_if_stmt] = STATE(715), - [sym__ct_switch] = STATE(1621), + [sym__ct_switch] = STATE(1545), [sym_ct_switch_stmt] = STATE(715), [sym_ct_for_stmt] = STATE(715), [sym_ct_foreach_stmt] = STATE(715), - [sym__expr] = STATE(1299), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1624), - [aux_sym_compound_stmt_repeat1] = STATE(64), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(566), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(568), - [anon_sym_const] = ACTIONS(570), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(572), - [anon_sym_continue] = ACTIONS(574), - [anon_sym_break] = ACTIONS(576), - [anon_sym_defer] = ACTIONS(578), - [anon_sym_assert] = ACTIONS(580), - [anon_sym_nextcase] = ACTIONS(582), - [anon_sym_switch] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(586), - [anon_sym_for] = ACTIONS(588), - [anon_sym_foreach] = ACTIONS(590), - [anon_sym_foreach_r] = ACTIONS(590), - [anon_sym_while] = ACTIONS(592), - [anon_sym_do] = ACTIONS(594), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(596), - [anon_sym_DOLLARassert] = ACTIONS(598), - [anon_sym_DOLLARerror] = ACTIONS(600), - [anon_sym_DOLLARecho] = ACTIONS(602), - [anon_sym_DOLLARif] = ACTIONS(604), - [anon_sym_DOLLARendif] = ACTIONS(728), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(608), - [anon_sym_DOLLARforeach] = ACTIONS(610), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym__expr] = STATE(1109), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1338), + [aux_sym_compound_stmt_repeat1] = STATE(89), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(605), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(607), + [anon_sym_const] = ACTIONS(609), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_break] = ACTIONS(615), + [anon_sym_defer] = ACTIONS(617), + [anon_sym_assert] = ACTIONS(619), + [anon_sym_nextcase] = ACTIONS(621), + [anon_sym_switch] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(625), + [anon_sym_for] = ACTIONS(627), + [anon_sym_foreach] = ACTIONS(629), + [anon_sym_foreach_r] = ACTIONS(629), + [anon_sym_while] = ACTIONS(631), + [anon_sym_do] = ACTIONS(633), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(635), + [anon_sym_DOLLARassert] = ACTIONS(637), + [anon_sym_DOLLARerror] = ACTIONS(639), + [anon_sym_DOLLARecho] = ACTIONS(641), + [anon_sym_DOLLARif] = ACTIONS(643), + [anon_sym_DOLLARendif] = ACTIONS(799), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(647), + [anon_sym_DOLLARforeach] = ACTIONS(649), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, - [49] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(49), - [sym_doc_comment] = STATE(49), - [sym_block_comment] = STATE(49), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1183), + [56] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(56), + [sym_doc_comment] = STATE(56), + [sym_block_comment] = STATE(56), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1173), [sym_const_declaration] = STATE(716), - [sym_lambda_declaration] = STATE(1679), + [sym_lambda_declaration] = STATE(1480), [sym_compound_stmt] = STATE(715), [sym_expr_stmt] = STATE(715), - [sym_var_decl] = STATE(2182), + [sym_var_decl] = STATE(1937), [sym_var_stmt] = STATE(715), [sym_return_stmt] = STATE(715), [sym_continue_stmt] = STATE(715), @@ -22390,921 +23101,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_while_stmt] = STATE(715), [sym_do_stmt] = STATE(715), [sym_asm_block_stmt] = STATE(715), - [sym_ct_stmt_body] = STATE(2135), + [sym_ct_stmt_body] = STATE(2105), [sym_ct_assert_stmt] = STATE(715), [sym_ct_echo_stmt] = STATE(715), [sym_ct_if_stmt] = STATE(715), - [sym__ct_switch] = STATE(1621), + [sym__ct_switch] = STATE(1545), [sym_ct_switch_stmt] = STATE(715), [sym_ct_for_stmt] = STATE(715), [sym_ct_foreach_stmt] = STATE(715), - [sym__expr] = STATE(1299), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1624), - [aux_sym_compound_stmt_repeat1] = STATE(64), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(566), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(568), - [anon_sym_const] = ACTIONS(570), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(572), - [anon_sym_continue] = ACTIONS(574), - [anon_sym_break] = ACTIONS(576), - [anon_sym_defer] = ACTIONS(578), - [anon_sym_assert] = ACTIONS(580), - [anon_sym_nextcase] = ACTIONS(582), - [anon_sym_switch] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(586), - [anon_sym_for] = ACTIONS(588), - [anon_sym_foreach] = ACTIONS(590), - [anon_sym_foreach_r] = ACTIONS(590), - [anon_sym_while] = ACTIONS(592), - [anon_sym_do] = ACTIONS(594), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(596), - [anon_sym_DOLLARassert] = ACTIONS(598), - [anon_sym_DOLLARerror] = ACTIONS(600), - [anon_sym_DOLLARecho] = ACTIONS(602), - [anon_sym_DOLLARif] = ACTIONS(604), - [anon_sym_DOLLARendif] = ACTIONS(730), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(608), - [anon_sym_DOLLARforeach] = ACTIONS(610), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), - }, - [50] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(50), - [sym_doc_comment] = STATE(50), - [sym_block_comment] = STATE(50), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1163), - [sym_const_declaration] = STATE(852), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(851), - [sym_expr_stmt] = STATE(851), - [sym_var_decl] = STATE(2193), - [sym_var_stmt] = STATE(851), - [sym_return_stmt] = STATE(851), - [sym_continue_stmt] = STATE(851), - [sym_break_stmt] = STATE(851), - [sym_defer_stmt] = STATE(851), - [sym_assert_stmt] = STATE(851), - [sym_declaration_stmt] = STATE(851), - [sym_nextcase_stmt] = STATE(851), - [sym_switch_stmt] = STATE(851), - [sym_if_stmt] = STATE(851), - [sym_for_stmt] = STATE(851), - [sym_foreach_stmt] = STATE(851), - [sym_while_stmt] = STATE(851), - [sym_do_stmt] = STATE(851), - [sym_asm_block_stmt] = STATE(851), - [sym_ct_stmt_body] = STATE(2219), - [sym_ct_assert_stmt] = STATE(851), - [sym_ct_echo_stmt] = STATE(851), - [sym_ct_if_stmt] = STATE(851), - [sym__ct_switch] = STATE(1557), - [sym_ct_switch_stmt] = STATE(851), - [sym_ct_for_stmt] = STATE(851), - [sym_ct_foreach_stmt] = STATE(851), - [sym__expr] = STATE(1269), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1558), - [aux_sym_compound_stmt_repeat1] = STATE(74), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(658), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(660), - [anon_sym_const] = ACTIONS(662), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(664), - [anon_sym_continue] = ACTIONS(666), - [anon_sym_break] = ACTIONS(668), - [anon_sym_defer] = ACTIONS(670), - [anon_sym_assert] = ACTIONS(672), - [anon_sym_nextcase] = ACTIONS(674), - [anon_sym_switch] = ACTIONS(676), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_foreach] = ACTIONS(682), - [anon_sym_foreach_r] = ACTIONS(682), - [anon_sym_while] = ACTIONS(684), - [anon_sym_do] = ACTIONS(686), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(688), - [anon_sym_DOLLARassert] = ACTIONS(690), - [anon_sym_DOLLARerror] = ACTIONS(692), - [anon_sym_DOLLARecho] = ACTIONS(694), - [anon_sym_DOLLARif] = ACTIONS(696), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(698), - [anon_sym_DOLLARendfor] = ACTIONS(732), - [anon_sym_DOLLARforeach] = ACTIONS(702), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), - }, - [51] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(51), - [sym_doc_comment] = STATE(51), - [sym_block_comment] = STATE(51), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1175), - [sym_const_declaration] = STATE(727), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(730), - [sym_expr_stmt] = STATE(730), - [sym_var_decl] = STATE(2279), - [sym_var_stmt] = STATE(730), - [sym_return_stmt] = STATE(730), - [sym_continue_stmt] = STATE(730), - [sym_break_stmt] = STATE(730), - [sym_defer_stmt] = STATE(730), - [sym_assert_stmt] = STATE(730), - [sym_declaration_stmt] = STATE(730), - [sym_nextcase_stmt] = STATE(730), - [sym_switch_stmt] = STATE(730), - [sym_if_stmt] = STATE(730), - [sym_for_stmt] = STATE(730), - [sym_foreach_stmt] = STATE(730), - [sym_while_stmt] = STATE(730), - [sym_do_stmt] = STATE(730), - [sym_asm_block_stmt] = STATE(730), - [sym_ct_stmt_body] = STATE(2125), - [sym_ct_assert_stmt] = STATE(730), - [sym_ct_echo_stmt] = STATE(730), - [sym_ct_if_stmt] = STATE(730), - [sym__ct_switch] = STATE(1593), - [sym_ct_switch_stmt] = STATE(730), - [sym_ct_for_stmt] = STATE(730), - [sym_ct_foreach_stmt] = STATE(730), - [sym__expr] = STATE(1275), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1596), - [aux_sym_compound_stmt_repeat1] = STATE(86), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(612), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(614), - [anon_sym_const] = ACTIONS(616), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_break] = ACTIONS(622), - [anon_sym_defer] = ACTIONS(624), - [anon_sym_assert] = ACTIONS(626), - [anon_sym_nextcase] = ACTIONS(628), - [anon_sym_switch] = ACTIONS(630), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(632), - [anon_sym_for] = ACTIONS(634), - [anon_sym_foreach] = ACTIONS(636), - [anon_sym_foreach_r] = ACTIONS(636), - [anon_sym_while] = ACTIONS(638), - [anon_sym_do] = ACTIONS(640), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(642), - [anon_sym_DOLLARassert] = ACTIONS(644), - [anon_sym_DOLLARerror] = ACTIONS(646), - [anon_sym_DOLLARecho] = ACTIONS(648), - [anon_sym_DOLLARif] = ACTIONS(650), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(652), - [anon_sym_DOLLARforeach] = ACTIONS(654), - [anon_sym_DOLLARendforeach] = ACTIONS(734), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), - }, - [52] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(52), - [sym_doc_comment] = STATE(52), - [sym_block_comment] = STATE(52), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1163), - [sym_const_declaration] = STATE(852), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(851), - [sym_expr_stmt] = STATE(851), - [sym_var_decl] = STATE(2193), - [sym_var_stmt] = STATE(851), - [sym_return_stmt] = STATE(851), - [sym_continue_stmt] = STATE(851), - [sym_break_stmt] = STATE(851), - [sym_defer_stmt] = STATE(851), - [sym_assert_stmt] = STATE(851), - [sym_declaration_stmt] = STATE(851), - [sym_nextcase_stmt] = STATE(851), - [sym_switch_stmt] = STATE(851), - [sym_if_stmt] = STATE(851), - [sym_for_stmt] = STATE(851), - [sym_foreach_stmt] = STATE(851), - [sym_while_stmt] = STATE(851), - [sym_do_stmt] = STATE(851), - [sym_asm_block_stmt] = STATE(851), - [sym_ct_stmt_body] = STATE(2124), - [sym_ct_assert_stmt] = STATE(851), - [sym_ct_echo_stmt] = STATE(851), - [sym_ct_if_stmt] = STATE(851), - [sym__ct_switch] = STATE(1557), - [sym_ct_switch_stmt] = STATE(851), - [sym_ct_for_stmt] = STATE(851), - [sym_ct_foreach_stmt] = STATE(851), - [sym__expr] = STATE(1269), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1558), - [aux_sym_compound_stmt_repeat1] = STATE(74), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(658), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(660), - [anon_sym_const] = ACTIONS(662), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(664), - [anon_sym_continue] = ACTIONS(666), - [anon_sym_break] = ACTIONS(668), - [anon_sym_defer] = ACTIONS(670), - [anon_sym_assert] = ACTIONS(672), - [anon_sym_nextcase] = ACTIONS(674), - [anon_sym_switch] = ACTIONS(676), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_foreach] = ACTIONS(682), - [anon_sym_foreach_r] = ACTIONS(682), - [anon_sym_while] = ACTIONS(684), - [anon_sym_do] = ACTIONS(686), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(688), - [anon_sym_DOLLARassert] = ACTIONS(690), - [anon_sym_DOLLARerror] = ACTIONS(692), - [anon_sym_DOLLARecho] = ACTIONS(694), - [anon_sym_DOLLARif] = ACTIONS(696), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(698), - [anon_sym_DOLLARendfor] = ACTIONS(736), - [anon_sym_DOLLARforeach] = ACTIONS(702), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), - }, - [53] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(53), - [sym_doc_comment] = STATE(53), - [sym_block_comment] = STATE(53), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1170), - [sym_const_declaration] = STATE(593), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(594), - [sym_expr_stmt] = STATE(594), - [sym_var_decl] = STATE(2285), - [sym_var_stmt] = STATE(594), - [sym_return_stmt] = STATE(594), - [sym_continue_stmt] = STATE(594), - [sym_break_stmt] = STATE(594), - [sym_defer_stmt] = STATE(594), - [sym_assert_stmt] = STATE(594), - [sym_declaration_stmt] = STATE(594), - [sym_nextcase_stmt] = STATE(594), - [sym_switch_stmt] = STATE(594), - [sym_if_stmt] = STATE(594), - [sym_for_stmt] = STATE(594), - [sym_foreach_stmt] = STATE(594), - [sym_while_stmt] = STATE(594), - [sym_do_stmt] = STATE(594), - [sym_asm_block_stmt] = STATE(594), - [sym_ct_assert_stmt] = STATE(594), - [sym_ct_echo_stmt] = STATE(594), - [sym_ct_if_stmt] = STATE(594), - [sym__ct_switch] = STATE(1604), - [sym_ct_switch_stmt] = STATE(594), - [sym_ct_for_stmt] = STATE(594), - [sym_ct_foreach_stmt] = STATE(594), - [sym__expr] = STATE(1288), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1595), - [aux_sym_compound_stmt_repeat1] = STATE(53), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(247), - [sym_integer_literal] = ACTIONS(250), - [anon_sym_SQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(256), - [anon_sym_BQUOTE] = ACTIONS(259), - [sym_bytes_literal] = ACTIONS(262), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(265), - [sym_at_ident] = ACTIONS(268), - [sym_hash_ident] = ACTIONS(271), - [sym_type_ident] = ACTIONS(274), - [sym_ct_type_ident] = ACTIONS(277), - [sym_const_ident] = ACTIONS(280), - [sym_builtin] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(283), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_static] = ACTIONS(289), - [anon_sym_tlocal] = ACTIONS(289), - [anon_sym_SEMI] = ACTIONS(738), - [anon_sym_fn] = ACTIONS(295), - [anon_sym_LBRACE] = ACTIONS(741), - [anon_sym_const] = ACTIONS(744), - [anon_sym_var] = ACTIONS(306), - [anon_sym_return] = ACTIONS(747), - [anon_sym_continue] = ACTIONS(750), - [anon_sym_break] = ACTIONS(753), - [anon_sym_defer] = ACTIONS(756), - [anon_sym_assert] = ACTIONS(759), - [anon_sym_nextcase] = ACTIONS(762), - [anon_sym_switch] = ACTIONS(765), - [anon_sym_AMP_AMP] = ACTIONS(332), - [anon_sym_if] = ACTIONS(768), - [anon_sym_for] = ACTIONS(771), - [anon_sym_foreach] = ACTIONS(774), - [anon_sym_foreach_r] = ACTIONS(774), - [anon_sym_while] = ACTIONS(777), - [anon_sym_do] = ACTIONS(780), - [anon_sym_int] = ACTIONS(350), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_STAR] = ACTIONS(332), - [anon_sym_asm] = ACTIONS(783), - [anon_sym_DOLLARassert] = ACTIONS(786), - [anon_sym_DOLLARerror] = ACTIONS(789), - [anon_sym_DOLLARecho] = ACTIONS(792), - [anon_sym_DOLLARif] = ACTIONS(795), - [anon_sym_DOLLARendif] = ACTIONS(324), - [anon_sym_DOLLARelse] = ACTIONS(324), - [anon_sym_DOLLARswitch] = ACTIONS(368), - [anon_sym_DOLLARfor] = ACTIONS(798), - [anon_sym_DOLLARforeach] = ACTIONS(801), - [anon_sym_DOLLARalignof] = ACTIONS(377), - [anon_sym_DOLLARextnameof] = ACTIONS(377), - [anon_sym_DOLLARnameof] = ACTIONS(377), - [anon_sym_DOLLARoffsetof] = ACTIONS(377), - [anon_sym_DOLLARqnameof] = ACTIONS(377), - [anon_sym_DOLLARvaconst] = ACTIONS(380), - [anon_sym_DOLLARvaarg] = ACTIONS(380), - [anon_sym_DOLLARvaref] = ACTIONS(380), - [anon_sym_DOLLARvaexpr] = ACTIONS(380), - [anon_sym_true] = ACTIONS(383), - [anon_sym_false] = ACTIONS(383), - [anon_sym_null] = ACTIONS(383), - [anon_sym_DOLLARvacount] = ACTIONS(383), - [anon_sym_DOLLARappend] = ACTIONS(380), - [anon_sym_DOLLARconcat] = ACTIONS(380), - [anon_sym_DOLLAReval] = ACTIONS(380), - [anon_sym_DOLLARis_const] = ACTIONS(380), - [anon_sym_DOLLARsizeof] = ACTIONS(380), - [anon_sym_DOLLARstringify] = ACTIONS(380), - [anon_sym_DOLLARand] = ACTIONS(386), - [anon_sym_DOLLARdefined] = ACTIONS(386), - [anon_sym_DOLLARembed] = ACTIONS(386), - [anon_sym_DOLLARor] = ACTIONS(386), - [anon_sym_DOLLARfeature] = ACTIONS(389), - [anon_sym_DOLLARassignable] = ACTIONS(392), - [anon_sym_BANG] = ACTIONS(332), - [anon_sym_TILDE] = ACTIONS(332), - [anon_sym_PLUS_PLUS] = ACTIONS(332), - [anon_sym_DASH_DASH] = ACTIONS(332), - [anon_sym_typeid] = ACTIONS(350), - [anon_sym_LBRACE_PIPE] = ACTIONS(395), - [anon_sym_void] = ACTIONS(350), - [anon_sym_bool] = ACTIONS(350), - [anon_sym_char] = ACTIONS(350), - [anon_sym_ichar] = ACTIONS(350), - [anon_sym_short] = ACTIONS(350), - [anon_sym_ushort] = ACTIONS(350), - [anon_sym_uint] = ACTIONS(350), - [anon_sym_long] = ACTIONS(350), - [anon_sym_ulong] = ACTIONS(350), - [anon_sym_int128] = ACTIONS(350), - [anon_sym_uint128] = ACTIONS(350), - [anon_sym_float] = ACTIONS(350), - [anon_sym_double] = ACTIONS(350), - [anon_sym_float16] = ACTIONS(350), - [anon_sym_bfloat16] = ACTIONS(350), - [anon_sym_float128] = ACTIONS(350), - [anon_sym_iptr] = ACTIONS(350), - [anon_sym_uptr] = ACTIONS(350), - [anon_sym_isz] = ACTIONS(350), - [anon_sym_usz] = ACTIONS(350), - [anon_sym_anyfault] = ACTIONS(350), - [anon_sym_any] = ACTIONS(350), - [anon_sym_DOLLARtypeof] = ACTIONS(398), - [anon_sym_DOLLARtypefrom] = ACTIONS(401), - [anon_sym_DOLLARvatype] = ACTIONS(401), - [anon_sym_DOLLARevaltype] = ACTIONS(401), - [sym_real_literal] = ACTIONS(250), + [sym__expr] = STATE(1109), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1338), + [aux_sym_compound_stmt_repeat1] = STATE(89), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(605), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(607), + [anon_sym_const] = ACTIONS(609), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_break] = ACTIONS(615), + [anon_sym_defer] = ACTIONS(617), + [anon_sym_assert] = ACTIONS(619), + [anon_sym_nextcase] = ACTIONS(621), + [anon_sym_switch] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(625), + [anon_sym_for] = ACTIONS(627), + [anon_sym_foreach] = ACTIONS(629), + [anon_sym_foreach_r] = ACTIONS(629), + [anon_sym_while] = ACTIONS(631), + [anon_sym_do] = ACTIONS(633), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(635), + [anon_sym_DOLLARassert] = ACTIONS(637), + [anon_sym_DOLLARerror] = ACTIONS(639), + [anon_sym_DOLLARecho] = ACTIONS(641), + [anon_sym_DOLLARif] = ACTIONS(643), + [anon_sym_DOLLARendif] = ACTIONS(801), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(647), + [anon_sym_DOLLARforeach] = ACTIONS(649), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, - [54] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(54), - [sym_doc_comment] = STATE(54), - [sym_block_comment] = STATE(54), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1183), + [57] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(57), + [sym_doc_comment] = STATE(57), + [sym_block_comment] = STATE(57), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1173), [sym_const_declaration] = STATE(716), - [sym_lambda_declaration] = STATE(1679), + [sym_lambda_declaration] = STATE(1480), [sym_compound_stmt] = STATE(715), [sym_expr_stmt] = STATE(715), - [sym_var_decl] = STATE(2182), + [sym_var_decl] = STATE(1937), [sym_var_stmt] = STATE(715), [sym_return_stmt] = STATE(715), [sym_continue_stmt] = STATE(715), @@ -23320,177 +23283,354 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_while_stmt] = STATE(715), [sym_do_stmt] = STATE(715), [sym_asm_block_stmt] = STATE(715), - [sym_ct_stmt_body] = STATE(2140), + [sym_ct_stmt_body] = STATE(2023), [sym_ct_assert_stmt] = STATE(715), [sym_ct_echo_stmt] = STATE(715), [sym_ct_if_stmt] = STATE(715), - [sym__ct_switch] = STATE(1621), + [sym__ct_switch] = STATE(1545), [sym_ct_switch_stmt] = STATE(715), [sym_ct_for_stmt] = STATE(715), [sym_ct_foreach_stmt] = STATE(715), - [sym__expr] = STATE(1299), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1624), - [aux_sym_compound_stmt_repeat1] = STATE(64), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(566), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(568), - [anon_sym_const] = ACTIONS(570), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(572), - [anon_sym_continue] = ACTIONS(574), - [anon_sym_break] = ACTIONS(576), - [anon_sym_defer] = ACTIONS(578), - [anon_sym_assert] = ACTIONS(580), - [anon_sym_nextcase] = ACTIONS(582), - [anon_sym_switch] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(586), - [anon_sym_for] = ACTIONS(588), - [anon_sym_foreach] = ACTIONS(590), - [anon_sym_foreach_r] = ACTIONS(590), - [anon_sym_while] = ACTIONS(592), - [anon_sym_do] = ACTIONS(594), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(596), - [anon_sym_DOLLARassert] = ACTIONS(598), - [anon_sym_DOLLARerror] = ACTIONS(600), - [anon_sym_DOLLARecho] = ACTIONS(602), - [anon_sym_DOLLARif] = ACTIONS(604), - [anon_sym_DOLLARendif] = ACTIONS(804), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(608), - [anon_sym_DOLLARforeach] = ACTIONS(610), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym__expr] = STATE(1109), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1338), + [aux_sym_compound_stmt_repeat1] = STATE(89), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(605), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(607), + [anon_sym_const] = ACTIONS(609), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_break] = ACTIONS(615), + [anon_sym_defer] = ACTIONS(617), + [anon_sym_assert] = ACTIONS(619), + [anon_sym_nextcase] = ACTIONS(621), + [anon_sym_switch] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(625), + [anon_sym_for] = ACTIONS(627), + [anon_sym_foreach] = ACTIONS(629), + [anon_sym_foreach_r] = ACTIONS(629), + [anon_sym_while] = ACTIONS(631), + [anon_sym_do] = ACTIONS(633), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(635), + [anon_sym_DOLLARassert] = ACTIONS(637), + [anon_sym_DOLLARerror] = ACTIONS(639), + [anon_sym_DOLLARecho] = ACTIONS(641), + [anon_sym_DOLLARif] = ACTIONS(643), + [anon_sym_DOLLARendif] = ACTIONS(803), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(647), + [anon_sym_DOLLARforeach] = ACTIONS(649), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, - [55] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(55), - [sym_doc_comment] = STATE(55), - [sym_block_comment] = STATE(55), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1183), + [58] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(58), + [sym_doc_comment] = STATE(58), + [sym_block_comment] = STATE(58), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1162), + [sym_const_declaration] = STATE(364), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(396), + [sym_expr_stmt] = STATE(396), + [sym_var_decl] = STATE(2193), + [sym_var_stmt] = STATE(396), + [sym_return_stmt] = STATE(396), + [sym_continue_stmt] = STATE(396), + [sym_break_stmt] = STATE(396), + [sym_defer_stmt] = STATE(396), + [sym_assert_stmt] = STATE(396), + [sym_declaration_stmt] = STATE(396), + [sym_nextcase_stmt] = STATE(396), + [sym_switch_stmt] = STATE(396), + [sym_if_stmt] = STATE(396), + [sym_for_stmt] = STATE(396), + [sym_foreach_stmt] = STATE(396), + [sym_while_stmt] = STATE(396), + [sym_do_stmt] = STATE(396), + [sym_asm_block_stmt] = STATE(396), + [sym_ct_assert_stmt] = STATE(396), + [sym_ct_echo_stmt] = STATE(396), + [sym_ct_if_stmt] = STATE(396), + [sym__ct_switch] = STATE(1544), + [sym_ct_switch_stmt] = STATE(396), + [sym_ct_for_stmt] = STATE(396), + [sym_ct_foreach_stmt] = STATE(396), + [sym__expr] = STATE(1093), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1351), + [aux_sym_compound_stmt_repeat1] = STATE(72), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(93), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_RBRACE] = ACTIONS(805), + [anon_sym_const] = ACTIONS(101), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), + }, + [59] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(59), + [sym_doc_comment] = STATE(59), + [sym_block_comment] = STATE(59), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1173), [sym_const_declaration] = STATE(716), - [sym_lambda_declaration] = STATE(1679), + [sym_lambda_declaration] = STATE(1480), [sym_compound_stmt] = STATE(715), [sym_expr_stmt] = STATE(715), - [sym_var_decl] = STATE(2182), + [sym_var_decl] = STATE(1937), [sym_var_stmt] = STATE(715), [sym_return_stmt] = STATE(715), [sym_continue_stmt] = STATE(715), @@ -23506,4989 +23646,3792 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_while_stmt] = STATE(715), [sym_do_stmt] = STATE(715), [sym_asm_block_stmt] = STATE(715), - [sym_ct_stmt_body] = STATE(2305), [sym_ct_assert_stmt] = STATE(715), [sym_ct_echo_stmt] = STATE(715), [sym_ct_if_stmt] = STATE(715), - [sym__ct_switch] = STATE(1621), + [sym__ct_switch] = STATE(1545), [sym_ct_switch_stmt] = STATE(715), [sym_ct_for_stmt] = STATE(715), [sym_ct_foreach_stmt] = STATE(715), - [sym__expr] = STATE(1299), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1624), - [aux_sym_compound_stmt_repeat1] = STATE(64), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(566), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(568), - [anon_sym_const] = ACTIONS(570), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(572), - [anon_sym_continue] = ACTIONS(574), - [anon_sym_break] = ACTIONS(576), - [anon_sym_defer] = ACTIONS(578), - [anon_sym_assert] = ACTIONS(580), - [anon_sym_nextcase] = ACTIONS(582), - [anon_sym_switch] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(586), - [anon_sym_for] = ACTIONS(588), - [anon_sym_foreach] = ACTIONS(590), - [anon_sym_foreach_r] = ACTIONS(590), - [anon_sym_while] = ACTIONS(592), - [anon_sym_do] = ACTIONS(594), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(596), - [anon_sym_DOLLARassert] = ACTIONS(598), - [anon_sym_DOLLARerror] = ACTIONS(600), - [anon_sym_DOLLARecho] = ACTIONS(602), - [anon_sym_DOLLARif] = ACTIONS(604), - [anon_sym_DOLLARendif] = ACTIONS(806), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(608), - [anon_sym_DOLLARforeach] = ACTIONS(610), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), - }, - [56] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(56), - [sym_doc_comment] = STATE(56), - [sym_block_comment] = STATE(56), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1175), - [sym_const_declaration] = STATE(727), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(730), - [sym_expr_stmt] = STATE(730), - [sym_var_decl] = STATE(2279), - [sym_var_stmt] = STATE(730), - [sym_return_stmt] = STATE(730), - [sym_continue_stmt] = STATE(730), - [sym_break_stmt] = STATE(730), - [sym_defer_stmt] = STATE(730), - [sym_assert_stmt] = STATE(730), - [sym_declaration_stmt] = STATE(730), - [sym_nextcase_stmt] = STATE(730), - [sym_switch_stmt] = STATE(730), - [sym_if_stmt] = STATE(730), - [sym_for_stmt] = STATE(730), - [sym_foreach_stmt] = STATE(730), - [sym_while_stmt] = STATE(730), - [sym_do_stmt] = STATE(730), - [sym_asm_block_stmt] = STATE(730), - [sym_ct_stmt_body] = STATE(2315), - [sym_ct_assert_stmt] = STATE(730), - [sym_ct_echo_stmt] = STATE(730), - [sym_ct_if_stmt] = STATE(730), - [sym__ct_switch] = STATE(1593), - [sym_ct_switch_stmt] = STATE(730), - [sym_ct_for_stmt] = STATE(730), - [sym_ct_foreach_stmt] = STATE(730), - [sym__expr] = STATE(1275), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1596), - [aux_sym_compound_stmt_repeat1] = STATE(86), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(612), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(614), - [anon_sym_const] = ACTIONS(616), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_break] = ACTIONS(622), - [anon_sym_defer] = ACTIONS(624), - [anon_sym_assert] = ACTIONS(626), - [anon_sym_nextcase] = ACTIONS(628), - [anon_sym_switch] = ACTIONS(630), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(632), - [anon_sym_for] = ACTIONS(634), - [anon_sym_foreach] = ACTIONS(636), - [anon_sym_foreach_r] = ACTIONS(636), - [anon_sym_while] = ACTIONS(638), - [anon_sym_do] = ACTIONS(640), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(642), - [anon_sym_DOLLARassert] = ACTIONS(644), - [anon_sym_DOLLARerror] = ACTIONS(646), - [anon_sym_DOLLARecho] = ACTIONS(648), - [anon_sym_DOLLARif] = ACTIONS(650), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(652), - [anon_sym_DOLLARforeach] = ACTIONS(654), - [anon_sym_DOLLARendforeach] = ACTIONS(808), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), - }, - [57] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(57), - [sym_doc_comment] = STATE(57), - [sym_block_comment] = STATE(57), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1163), - [sym_const_declaration] = STATE(852), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(851), - [sym_expr_stmt] = STATE(851), - [sym_var_decl] = STATE(2193), - [sym_var_stmt] = STATE(851), - [sym_return_stmt] = STATE(851), - [sym_continue_stmt] = STATE(851), - [sym_break_stmt] = STATE(851), - [sym_defer_stmt] = STATE(851), - [sym_assert_stmt] = STATE(851), - [sym_declaration_stmt] = STATE(851), - [sym_nextcase_stmt] = STATE(851), - [sym_switch_stmt] = STATE(851), - [sym_if_stmt] = STATE(851), - [sym_for_stmt] = STATE(851), - [sym_foreach_stmt] = STATE(851), - [sym_while_stmt] = STATE(851), - [sym_do_stmt] = STATE(851), - [sym_asm_block_stmt] = STATE(851), - [sym_ct_stmt_body] = STATE(2321), - [sym_ct_assert_stmt] = STATE(851), - [sym_ct_echo_stmt] = STATE(851), - [sym_ct_if_stmt] = STATE(851), - [sym__ct_switch] = STATE(1557), - [sym_ct_switch_stmt] = STATE(851), - [sym_ct_for_stmt] = STATE(851), - [sym_ct_foreach_stmt] = STATE(851), - [sym__expr] = STATE(1269), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1558), - [aux_sym_compound_stmt_repeat1] = STATE(74), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(658), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(660), - [anon_sym_const] = ACTIONS(662), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(664), - [anon_sym_continue] = ACTIONS(666), - [anon_sym_break] = ACTIONS(668), - [anon_sym_defer] = ACTIONS(670), - [anon_sym_assert] = ACTIONS(672), - [anon_sym_nextcase] = ACTIONS(674), - [anon_sym_switch] = ACTIONS(676), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_foreach] = ACTIONS(682), - [anon_sym_foreach_r] = ACTIONS(682), - [anon_sym_while] = ACTIONS(684), - [anon_sym_do] = ACTIONS(686), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(688), - [anon_sym_DOLLARassert] = ACTIONS(690), - [anon_sym_DOLLARerror] = ACTIONS(692), - [anon_sym_DOLLARecho] = ACTIONS(694), - [anon_sym_DOLLARif] = ACTIONS(696), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(698), - [anon_sym_DOLLARendfor] = ACTIONS(810), - [anon_sym_DOLLARforeach] = ACTIONS(702), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), - }, - [58] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(58), - [sym_doc_comment] = STATE(58), - [sym_block_comment] = STATE(58), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1175), - [sym_const_declaration] = STATE(727), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(510), - [sym_expr_stmt] = STATE(667), - [sym_var_decl] = STATE(2279), - [sym_var_stmt] = STATE(667), - [sym_return_stmt] = STATE(667), - [sym_continue_stmt] = STATE(667), - [sym_break_stmt] = STATE(667), - [sym_defer_stmt] = STATE(667), - [sym_assert_stmt] = STATE(667), - [sym_declaration_stmt] = STATE(667), - [sym_nextcase_stmt] = STATE(667), - [sym_switch_body] = STATE(510), - [sym_switch_stmt] = STATE(667), - [sym__if_body] = STATE(641), - [sym_if_stmt] = STATE(667), - [sym_for_stmt] = STATE(667), - [sym_foreach_stmt] = STATE(667), - [sym_while_stmt] = STATE(667), - [sym_do_stmt] = STATE(667), - [sym_asm_block_stmt] = STATE(667), - [sym_ct_assert_stmt] = STATE(667), - [sym_ct_echo_stmt] = STATE(667), - [sym_ct_if_stmt] = STATE(667), - [sym__ct_switch] = STATE(1593), - [sym_ct_switch_stmt] = STATE(667), - [sym_ct_for_stmt] = STATE(667), - [sym_ct_foreach_stmt] = STATE(667), - [sym__expr] = STATE(1275), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1596), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(812), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(814), - [anon_sym_const] = ACTIONS(616), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_break] = ACTIONS(622), - [anon_sym_defer] = ACTIONS(624), - [anon_sym_assert] = ACTIONS(626), - [anon_sym_nextcase] = ACTIONS(628), - [anon_sym_switch] = ACTIONS(630), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(632), - [anon_sym_for] = ACTIONS(634), - [anon_sym_foreach] = ACTIONS(636), - [anon_sym_foreach_r] = ACTIONS(636), - [anon_sym_while] = ACTIONS(638), - [anon_sym_do] = ACTIONS(640), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(642), - [anon_sym_DOLLARassert] = ACTIONS(644), - [anon_sym_DOLLARerror] = ACTIONS(646), - [anon_sym_DOLLARecho] = ACTIONS(648), - [anon_sym_DOLLARif] = ACTIONS(650), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(652), - [anon_sym_DOLLARforeach] = ACTIONS(654), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), - }, - [59] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(59), - [sym_doc_comment] = STATE(59), - [sym_block_comment] = STATE(59), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1169), - [sym_const_declaration] = STATE(480), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(389), - [sym_expr_stmt] = STATE(508), - [sym_var_decl] = STATE(2091), - [sym_var_stmt] = STATE(508), - [sym_return_stmt] = STATE(508), - [sym_continue_stmt] = STATE(508), - [sym_break_stmt] = STATE(508), - [sym_defer_stmt] = STATE(508), - [sym_assert_stmt] = STATE(508), - [sym_declaration_stmt] = STATE(508), - [sym_nextcase_stmt] = STATE(508), - [sym_switch_body] = STATE(389), - [sym_switch_stmt] = STATE(508), - [sym__if_body] = STATE(467), - [sym_if_stmt] = STATE(508), - [sym_for_stmt] = STATE(508), - [sym_foreach_stmt] = STATE(508), - [sym_while_stmt] = STATE(508), - [sym_do_stmt] = STATE(508), - [sym_asm_block_stmt] = STATE(508), - [sym_ct_assert_stmt] = STATE(508), - [sym_ct_echo_stmt] = STATE(508), - [sym_ct_if_stmt] = STATE(508), - [sym__ct_switch] = STATE(1646), - [sym_ct_switch_stmt] = STATE(508), - [sym_ct_for_stmt] = STATE(508), - [sym_ct_foreach_stmt] = STATE(508), - [sym__expr] = STATE(1271), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1647), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(816), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_const] = ACTIONS(203), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(205), - [anon_sym_continue] = ACTIONS(207), - [anon_sym_break] = ACTIONS(209), - [anon_sym_defer] = ACTIONS(211), - [anon_sym_assert] = ACTIONS(213), - [anon_sym_nextcase] = ACTIONS(215), - [anon_sym_switch] = ACTIONS(217), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(219), - [anon_sym_for] = ACTIONS(221), - [anon_sym_foreach] = ACTIONS(223), - [anon_sym_foreach_r] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_do] = ACTIONS(227), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(229), - [anon_sym_DOLLARassert] = ACTIONS(231), - [anon_sym_DOLLARerror] = ACTIONS(233), - [anon_sym_DOLLARecho] = ACTIONS(235), - [anon_sym_DOLLARif] = ACTIONS(237), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(241), - [anon_sym_DOLLARforeach] = ACTIONS(243), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym__expr] = STATE(1109), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1338), + [aux_sym_compound_stmt_repeat1] = STATE(59), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(243), + [sym_integer_literal] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_DQUOTE] = ACTIONS(252), + [anon_sym_BQUOTE] = ACTIONS(255), + [sym_bytes_literal] = ACTIONS(258), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(261), + [sym_at_ident] = ACTIONS(264), + [sym_hash_ident] = ACTIONS(267), + [sym_type_ident] = ACTIONS(270), + [sym_ct_type_ident] = ACTIONS(273), + [sym_const_ident] = ACTIONS(276), + [sym_builtin] = ACTIONS(246), + [anon_sym_LPAREN] = ACTIONS(279), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_static] = ACTIONS(285), + [anon_sym_tlocal] = ACTIONS(285), + [anon_sym_SEMI] = ACTIONS(807), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_const] = ACTIONS(813), + [anon_sym_var] = ACTIONS(302), + [anon_sym_return] = ACTIONS(816), + [anon_sym_continue] = ACTIONS(819), + [anon_sym_break] = ACTIONS(822), + [anon_sym_defer] = ACTIONS(825), + [anon_sym_assert] = ACTIONS(828), + [anon_sym_nextcase] = ACTIONS(831), + [anon_sym_switch] = ACTIONS(834), + [anon_sym_AMP_AMP] = ACTIONS(328), + [anon_sym_if] = ACTIONS(837), + [anon_sym_for] = ACTIONS(840), + [anon_sym_foreach] = ACTIONS(843), + [anon_sym_foreach_r] = ACTIONS(843), + [anon_sym_while] = ACTIONS(846), + [anon_sym_do] = ACTIONS(849), + [anon_sym_int] = ACTIONS(346), + [anon_sym_PLUS] = ACTIONS(282), + [anon_sym_DASH] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(328), + [anon_sym_asm] = ACTIONS(852), + [anon_sym_DOLLARassert] = ACTIONS(855), + [anon_sym_DOLLARerror] = ACTIONS(858), + [anon_sym_DOLLARecho] = ACTIONS(861), + [anon_sym_DOLLARif] = ACTIONS(864), + [anon_sym_DOLLARendif] = ACTIONS(320), + [anon_sym_DOLLARswitch] = ACTIONS(364), + [anon_sym_DOLLARfor] = ACTIONS(867), + [anon_sym_DOLLARforeach] = ACTIONS(870), + [anon_sym_DOLLARalignof] = ACTIONS(373), + [anon_sym_DOLLARextnameof] = ACTIONS(373), + [anon_sym_DOLLARnameof] = ACTIONS(373), + [anon_sym_DOLLARoffsetof] = ACTIONS(373), + [anon_sym_DOLLARqnameof] = ACTIONS(373), + [anon_sym_DOLLARvaconst] = ACTIONS(376), + [anon_sym_DOLLARvaarg] = ACTIONS(376), + [anon_sym_DOLLARvaref] = ACTIONS(376), + [anon_sym_DOLLARvaexpr] = ACTIONS(376), + [anon_sym_true] = ACTIONS(379), + [anon_sym_false] = ACTIONS(379), + [anon_sym_null] = ACTIONS(379), + [anon_sym_DOLLARvacount] = ACTIONS(379), + [anon_sym_DOLLARappend] = ACTIONS(376), + [anon_sym_DOLLARconcat] = ACTIONS(376), + [anon_sym_DOLLAReval] = ACTIONS(376), + [anon_sym_DOLLARis_const] = ACTIONS(376), + [anon_sym_DOLLARsizeof] = ACTIONS(376), + [anon_sym_DOLLARstringify] = ACTIONS(376), + [anon_sym_DOLLARand] = ACTIONS(382), + [anon_sym_DOLLARdefined] = ACTIONS(382), + [anon_sym_DOLLARembed] = ACTIONS(382), + [anon_sym_DOLLARor] = ACTIONS(382), + [anon_sym_DOLLARfeature] = ACTIONS(385), + [anon_sym_DOLLARassignable] = ACTIONS(388), + [anon_sym_BANG] = ACTIONS(328), + [anon_sym_TILDE] = ACTIONS(328), + [anon_sym_PLUS_PLUS] = ACTIONS(328), + [anon_sym_DASH_DASH] = ACTIONS(328), + [anon_sym_typeid] = ACTIONS(346), + [anon_sym_LBRACE_PIPE] = ACTIONS(391), + [anon_sym_void] = ACTIONS(346), + [anon_sym_bool] = ACTIONS(346), + [anon_sym_char] = ACTIONS(346), + [anon_sym_ichar] = ACTIONS(346), + [anon_sym_short] = ACTIONS(346), + [anon_sym_ushort] = ACTIONS(346), + [anon_sym_uint] = ACTIONS(346), + [anon_sym_long] = ACTIONS(346), + [anon_sym_ulong] = ACTIONS(346), + [anon_sym_int128] = ACTIONS(346), + [anon_sym_uint128] = ACTIONS(346), + [anon_sym_float] = ACTIONS(346), + [anon_sym_double] = ACTIONS(346), + [anon_sym_float16] = ACTIONS(346), + [anon_sym_bfloat16] = ACTIONS(346), + [anon_sym_float128] = ACTIONS(346), + [anon_sym_iptr] = ACTIONS(346), + [anon_sym_uptr] = ACTIONS(346), + [anon_sym_isz] = ACTIONS(346), + [anon_sym_usz] = ACTIONS(346), + [anon_sym_anyfault] = ACTIONS(346), + [anon_sym_any] = ACTIONS(346), + [anon_sym_DOLLARtypeof] = ACTIONS(394), + [anon_sym_DOLLARtypefrom] = ACTIONS(394), + [anon_sym_DOLLARvatype] = ACTIONS(394), + [anon_sym_DOLLARevaltype] = ACTIONS(394), + [sym_real_literal] = ACTIONS(246), }, [60] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(60), [sym_doc_comment] = STATE(60), [sym_block_comment] = STATE(60), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1158), - [sym_const_declaration] = STATE(445), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(387), - [sym_expr_stmt] = STATE(393), - [sym_var_decl] = STATE(2324), - [sym_var_stmt] = STATE(393), - [sym_return_stmt] = STATE(393), - [sym_continue_stmt] = STATE(393), - [sym_break_stmt] = STATE(393), - [sym_defer_stmt] = STATE(393), - [sym_assert_stmt] = STATE(393), - [sym_declaration_stmt] = STATE(393), - [sym_nextcase_stmt] = STATE(393), - [sym_switch_body] = STATE(387), - [sym_switch_stmt] = STATE(393), - [sym__if_body] = STATE(441), - [sym_if_stmt] = STATE(393), - [sym_for_stmt] = STATE(393), - [sym_foreach_stmt] = STATE(393), - [sym_while_stmt] = STATE(393), - [sym_do_stmt] = STATE(393), - [sym_asm_block_stmt] = STATE(393), - [sym_ct_assert_stmt] = STATE(393), - [sym_ct_echo_stmt] = STATE(393), - [sym_ct_if_stmt] = STATE(393), - [sym__ct_switch] = STATE(1606), - [sym_ct_switch_stmt] = STATE(393), - [sym_ct_for_stmt] = STATE(393), - [sym_ct_foreach_stmt] = STATE(393), - [sym__expr] = STATE(1265), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1564), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(820), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(822), - [anon_sym_const] = ACTIONS(103), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1162), + [sym_const_declaration] = STATE(364), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(396), + [sym_expr_stmt] = STATE(396), + [sym_var_decl] = STATE(2193), + [sym_var_stmt] = STATE(396), + [sym_return_stmt] = STATE(396), + [sym_continue_stmt] = STATE(396), + [sym_break_stmt] = STATE(396), + [sym_defer_stmt] = STATE(396), + [sym_assert_stmt] = STATE(396), + [sym_declaration_stmt] = STATE(396), + [sym_nextcase_stmt] = STATE(396), + [sym_switch_stmt] = STATE(396), + [sym_if_stmt] = STATE(396), + [sym_for_stmt] = STATE(396), + [sym_foreach_stmt] = STATE(396), + [sym_while_stmt] = STATE(396), + [sym_do_stmt] = STATE(396), + [sym_asm_block_stmt] = STATE(396), + [sym_ct_assert_stmt] = STATE(396), + [sym_ct_echo_stmt] = STATE(396), + [sym_ct_if_stmt] = STATE(396), + [sym__ct_switch] = STATE(1544), + [sym_ct_switch_stmt] = STATE(396), + [sym_ct_for_stmt] = STATE(396), + [sym_ct_foreach_stmt] = STATE(396), + [sym__expr] = STATE(1093), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1351), + [aux_sym_compound_stmt_repeat1] = STATE(97), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(93), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_RBRACE] = ACTIONS(873), + [anon_sym_const] = ACTIONS(101), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [61] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(61), [sym_doc_comment] = STATE(61), [sym_block_comment] = STATE(61), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1163), - [sym_const_declaration] = STATE(852), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(839), - [sym_expr_stmt] = STATE(839), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1162), + [sym_const_declaration] = STATE(364), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(396), + [sym_expr_stmt] = STATE(396), [sym_var_decl] = STATE(2193), - [sym_var_stmt] = STATE(839), - [sym_return_stmt] = STATE(839), - [sym_continue_stmt] = STATE(839), - [sym_break_stmt] = STATE(839), - [sym_defer_stmt] = STATE(839), - [sym_assert_stmt] = STATE(839), - [sym_declaration_stmt] = STATE(839), - [sym_nextcase_stmt] = STATE(839), - [sym_switch_stmt] = STATE(839), - [sym_if_stmt] = STATE(839), - [sym_for_stmt] = STATE(839), - [sym_foreach_stmt] = STATE(839), - [sym_while_stmt] = STATE(839), - [sym_do_stmt] = STATE(839), - [sym_asm_block_stmt] = STATE(839), - [sym_ct_assert_stmt] = STATE(839), - [sym_ct_echo_stmt] = STATE(839), - [sym_ct_if_stmt] = STATE(839), - [sym__ct_switch] = STATE(1557), - [sym_ct_switch_stmt] = STATE(839), - [sym_ct_for_stmt] = STATE(839), - [sym_ct_foreach_stmt] = STATE(839), - [sym__expr] = STATE(1269), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1558), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(824), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(660), - [anon_sym_const] = ACTIONS(662), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(664), - [anon_sym_continue] = ACTIONS(666), - [anon_sym_break] = ACTIONS(668), - [anon_sym_defer] = ACTIONS(670), - [anon_sym_try] = ACTIONS(826), - [anon_sym_catch] = ACTIONS(826), - [anon_sym_assert] = ACTIONS(672), - [anon_sym_nextcase] = ACTIONS(674), - [anon_sym_switch] = ACTIONS(676), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_foreach] = ACTIONS(682), - [anon_sym_foreach_r] = ACTIONS(682), - [anon_sym_while] = ACTIONS(684), - [anon_sym_do] = ACTIONS(686), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(688), - [anon_sym_DOLLARassert] = ACTIONS(690), - [anon_sym_DOLLARerror] = ACTIONS(692), - [anon_sym_DOLLARecho] = ACTIONS(694), - [anon_sym_DOLLARif] = ACTIONS(696), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(698), - [anon_sym_DOLLARforeach] = ACTIONS(702), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_var_stmt] = STATE(396), + [sym_return_stmt] = STATE(396), + [sym_continue_stmt] = STATE(396), + [sym_break_stmt] = STATE(396), + [sym_defer_stmt] = STATE(396), + [sym_assert_stmt] = STATE(396), + [sym_declaration_stmt] = STATE(396), + [sym_nextcase_stmt] = STATE(396), + [sym_switch_stmt] = STATE(396), + [sym_if_stmt] = STATE(396), + [sym_for_stmt] = STATE(396), + [sym_foreach_stmt] = STATE(396), + [sym_while_stmt] = STATE(396), + [sym_do_stmt] = STATE(396), + [sym_asm_block_stmt] = STATE(396), + [sym_ct_assert_stmt] = STATE(396), + [sym_ct_echo_stmt] = STATE(396), + [sym_ct_if_stmt] = STATE(396), + [sym__ct_switch] = STATE(1544), + [sym_ct_switch_stmt] = STATE(396), + [sym_ct_for_stmt] = STATE(396), + [sym_ct_foreach_stmt] = STATE(396), + [sym__expr] = STATE(1093), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1351), + [aux_sym_compound_stmt_repeat1] = STATE(16), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(93), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_RBRACE] = ACTIONS(875), + [anon_sym_const] = ACTIONS(101), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [62] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(62), [sym_doc_comment] = STATE(62), [sym_block_comment] = STATE(62), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1175), - [sym_const_declaration] = STATE(727), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(730), - [sym_expr_stmt] = STATE(730), - [sym_var_decl] = STATE(2279), - [sym_var_stmt] = STATE(730), - [sym_return_stmt] = STATE(730), - [sym_continue_stmt] = STATE(730), - [sym_break_stmt] = STATE(730), - [sym_defer_stmt] = STATE(730), - [sym_assert_stmt] = STATE(730), - [sym_declaration_stmt] = STATE(730), - [sym_nextcase_stmt] = STATE(730), - [sym_switch_stmt] = STATE(730), - [sym_if_stmt] = STATE(730), - [sym_for_stmt] = STATE(730), - [sym_foreach_stmt] = STATE(730), - [sym_while_stmt] = STATE(730), - [sym_do_stmt] = STATE(730), - [sym_asm_block_stmt] = STATE(730), - [sym_ct_assert_stmt] = STATE(730), - [sym_ct_echo_stmt] = STATE(730), - [sym_ct_if_stmt] = STATE(730), - [sym__ct_switch] = STATE(1593), - [sym_ct_switch_stmt] = STATE(730), - [sym_ct_for_stmt] = STATE(730), - [sym_ct_foreach_stmt] = STATE(730), - [sym__expr] = STATE(1275), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1596), - [aux_sym_compound_stmt_repeat1] = STATE(62), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(247), - [sym_integer_literal] = ACTIONS(250), - [anon_sym_SQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(256), - [anon_sym_BQUOTE] = ACTIONS(259), - [sym_bytes_literal] = ACTIONS(262), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(265), - [sym_at_ident] = ACTIONS(268), - [sym_hash_ident] = ACTIONS(271), - [sym_type_ident] = ACTIONS(274), - [sym_ct_type_ident] = ACTIONS(277), - [sym_const_ident] = ACTIONS(280), - [sym_builtin] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(283), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_static] = ACTIONS(289), - [anon_sym_tlocal] = ACTIONS(289), - [anon_sym_SEMI] = ACTIONS(828), - [anon_sym_fn] = ACTIONS(295), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_const] = ACTIONS(834), - [anon_sym_var] = ACTIONS(306), - [anon_sym_return] = ACTIONS(837), - [anon_sym_continue] = ACTIONS(840), - [anon_sym_break] = ACTIONS(843), - [anon_sym_defer] = ACTIONS(846), - [anon_sym_assert] = ACTIONS(849), - [anon_sym_nextcase] = ACTIONS(852), - [anon_sym_switch] = ACTIONS(855), - [anon_sym_AMP_AMP] = ACTIONS(332), - [anon_sym_if] = ACTIONS(858), - [anon_sym_for] = ACTIONS(861), - [anon_sym_foreach] = ACTIONS(864), - [anon_sym_foreach_r] = ACTIONS(864), - [anon_sym_while] = ACTIONS(867), - [anon_sym_do] = ACTIONS(870), - [anon_sym_int] = ACTIONS(350), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_STAR] = ACTIONS(332), - [anon_sym_asm] = ACTIONS(873), - [anon_sym_DOLLARassert] = ACTIONS(876), - [anon_sym_DOLLARerror] = ACTIONS(879), - [anon_sym_DOLLARecho] = ACTIONS(882), - [anon_sym_DOLLARif] = ACTIONS(885), - [anon_sym_DOLLARswitch] = ACTIONS(368), - [anon_sym_DOLLARfor] = ACTIONS(888), - [anon_sym_DOLLARforeach] = ACTIONS(891), - [anon_sym_DOLLARendforeach] = ACTIONS(324), - [anon_sym_DOLLARalignof] = ACTIONS(377), - [anon_sym_DOLLARextnameof] = ACTIONS(377), - [anon_sym_DOLLARnameof] = ACTIONS(377), - [anon_sym_DOLLARoffsetof] = ACTIONS(377), - [anon_sym_DOLLARqnameof] = ACTIONS(377), - [anon_sym_DOLLARvaconst] = ACTIONS(380), - [anon_sym_DOLLARvaarg] = ACTIONS(380), - [anon_sym_DOLLARvaref] = ACTIONS(380), - [anon_sym_DOLLARvaexpr] = ACTIONS(380), - [anon_sym_true] = ACTIONS(383), - [anon_sym_false] = ACTIONS(383), - [anon_sym_null] = ACTIONS(383), - [anon_sym_DOLLARvacount] = ACTIONS(383), - [anon_sym_DOLLARappend] = ACTIONS(380), - [anon_sym_DOLLARconcat] = ACTIONS(380), - [anon_sym_DOLLAReval] = ACTIONS(380), - [anon_sym_DOLLARis_const] = ACTIONS(380), - [anon_sym_DOLLARsizeof] = ACTIONS(380), - [anon_sym_DOLLARstringify] = ACTIONS(380), - [anon_sym_DOLLARand] = ACTIONS(386), - [anon_sym_DOLLARdefined] = ACTIONS(386), - [anon_sym_DOLLARembed] = ACTIONS(386), - [anon_sym_DOLLARor] = ACTIONS(386), - [anon_sym_DOLLARfeature] = ACTIONS(389), - [anon_sym_DOLLARassignable] = ACTIONS(392), - [anon_sym_BANG] = ACTIONS(332), - [anon_sym_TILDE] = ACTIONS(332), - [anon_sym_PLUS_PLUS] = ACTIONS(332), - [anon_sym_DASH_DASH] = ACTIONS(332), - [anon_sym_typeid] = ACTIONS(350), - [anon_sym_LBRACE_PIPE] = ACTIONS(395), - [anon_sym_void] = ACTIONS(350), - [anon_sym_bool] = ACTIONS(350), - [anon_sym_char] = ACTIONS(350), - [anon_sym_ichar] = ACTIONS(350), - [anon_sym_short] = ACTIONS(350), - [anon_sym_ushort] = ACTIONS(350), - [anon_sym_uint] = ACTIONS(350), - [anon_sym_long] = ACTIONS(350), - [anon_sym_ulong] = ACTIONS(350), - [anon_sym_int128] = ACTIONS(350), - [anon_sym_uint128] = ACTIONS(350), - [anon_sym_float] = ACTIONS(350), - [anon_sym_double] = ACTIONS(350), - [anon_sym_float16] = ACTIONS(350), - [anon_sym_bfloat16] = ACTIONS(350), - [anon_sym_float128] = ACTIONS(350), - [anon_sym_iptr] = ACTIONS(350), - [anon_sym_uptr] = ACTIONS(350), - [anon_sym_isz] = ACTIONS(350), - [anon_sym_usz] = ACTIONS(350), - [anon_sym_anyfault] = ACTIONS(350), - [anon_sym_any] = ACTIONS(350), - [anon_sym_DOLLARtypeof] = ACTIONS(398), - [anon_sym_DOLLARtypefrom] = ACTIONS(401), - [anon_sym_DOLLARvatype] = ACTIONS(401), - [anon_sym_DOLLARevaltype] = ACTIONS(401), - [sym_real_literal] = ACTIONS(250), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1162), + [sym_const_declaration] = STATE(364), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(396), + [sym_expr_stmt] = STATE(396), + [sym_var_decl] = STATE(2193), + [sym_var_stmt] = STATE(396), + [sym_return_stmt] = STATE(396), + [sym_continue_stmt] = STATE(396), + [sym_break_stmt] = STATE(396), + [sym_defer_stmt] = STATE(396), + [sym_assert_stmt] = STATE(396), + [sym_declaration_stmt] = STATE(396), + [sym_nextcase_stmt] = STATE(396), + [sym_switch_stmt] = STATE(396), + [sym_if_stmt] = STATE(396), + [sym_for_stmt] = STATE(396), + [sym_foreach_stmt] = STATE(396), + [sym_while_stmt] = STATE(396), + [sym_do_stmt] = STATE(396), + [sym_asm_block_stmt] = STATE(396), + [sym_ct_assert_stmt] = STATE(396), + [sym_ct_echo_stmt] = STATE(396), + [sym_ct_if_stmt] = STATE(396), + [sym__ct_switch] = STATE(1544), + [sym_ct_switch_stmt] = STATE(396), + [sym_ct_for_stmt] = STATE(396), + [sym_ct_foreach_stmt] = STATE(396), + [sym__expr] = STATE(1093), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1351), + [aux_sym_compound_stmt_repeat1] = STATE(61), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(93), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_RBRACE] = ACTIONS(877), + [anon_sym_const] = ACTIONS(101), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [63] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(63), [sym_doc_comment] = STATE(63), [sym_block_comment] = STATE(63), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1158), - [sym_const_declaration] = STATE(445), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(438), - [sym_expr_stmt] = STATE(438), - [sym_var_decl] = STATE(2324), - [sym_var_stmt] = STATE(438), - [sym_return_stmt] = STATE(438), - [sym_continue_stmt] = STATE(438), - [sym_break_stmt] = STATE(438), - [sym_defer_stmt] = STATE(438), - [sym_assert_stmt] = STATE(438), - [sym_declaration_stmt] = STATE(438), - [sym_nextcase_stmt] = STATE(438), - [sym_switch_stmt] = STATE(438), - [sym_if_stmt] = STATE(438), - [sym_for_stmt] = STATE(438), - [sym_foreach_stmt] = STATE(438), - [sym_while_stmt] = STATE(438), - [sym_do_stmt] = STATE(438), - [sym_asm_block_stmt] = STATE(438), - [sym_ct_assert_stmt] = STATE(438), - [sym_ct_echo_stmt] = STATE(438), - [sym_ct_if_stmt] = STATE(438), - [sym__ct_switch] = STATE(1606), - [sym_ct_switch_stmt] = STATE(438), - [sym_ct_for_stmt] = STATE(438), - [sym_ct_foreach_stmt] = STATE(438), - [sym__expr] = STATE(1265), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1564), - [aux_sym_compound_stmt_repeat1] = STATE(65), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(95), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(894), - [anon_sym_const] = ACTIONS(103), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1165), + [sym_const_declaration] = STATE(555), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(545), + [sym_expr_stmt] = STATE(545), + [sym_var_decl] = STATE(2183), + [sym_var_stmt] = STATE(545), + [sym_return_stmt] = STATE(545), + [sym_continue_stmt] = STATE(545), + [sym_break_stmt] = STATE(545), + [sym_defer_stmt] = STATE(545), + [sym_assert_stmt] = STATE(545), + [sym_declaration_stmt] = STATE(545), + [sym_nextcase_stmt] = STATE(545), + [sym_switch_stmt] = STATE(545), + [sym_if_stmt] = STATE(545), + [sym_for_stmt] = STATE(545), + [sym_foreach_stmt] = STATE(545), + [sym_while_stmt] = STATE(545), + [sym_do_stmt] = STATE(545), + [sym_asm_block_stmt] = STATE(545), + [sym_ct_assert_stmt] = STATE(545), + [sym_ct_echo_stmt] = STATE(545), + [sym_ct_if_stmt] = STATE(545), + [sym__ct_switch] = STATE(1508), + [sym_ct_switch_stmt] = STATE(545), + [sym_ct_for_stmt] = STATE(545), + [sym_ct_foreach_stmt] = STATE(545), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1342), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(879), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(401), + [anon_sym_const] = ACTIONS(403), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_break] = ACTIONS(409), + [anon_sym_defer] = ACTIONS(411), + [anon_sym_try] = ACTIONS(881), + [anon_sym_catch] = ACTIONS(881), + [anon_sym_assert] = ACTIONS(413), + [anon_sym_nextcase] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(419), + [anon_sym_for] = ACTIONS(421), + [anon_sym_foreach] = ACTIONS(423), + [anon_sym_foreach_r] = ACTIONS(423), + [anon_sym_while] = ACTIONS(425), + [anon_sym_do] = ACTIONS(427), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(429), + [anon_sym_DOLLARassert] = ACTIONS(431), + [anon_sym_DOLLARerror] = ACTIONS(433), + [anon_sym_DOLLARecho] = ACTIONS(435), + [anon_sym_DOLLARif] = ACTIONS(437), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(443), + [anon_sym_DOLLARforeach] = ACTIONS(445), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [64] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(64), [sym_doc_comment] = STATE(64), [sym_block_comment] = STATE(64), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1183), - [sym_const_declaration] = STATE(716), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(715), - [sym_expr_stmt] = STATE(715), - [sym_var_decl] = STATE(2182), - [sym_var_stmt] = STATE(715), - [sym_return_stmt] = STATE(715), - [sym_continue_stmt] = STATE(715), - [sym_break_stmt] = STATE(715), - [sym_defer_stmt] = STATE(715), - [sym_assert_stmt] = STATE(715), - [sym_declaration_stmt] = STATE(715), - [sym_nextcase_stmt] = STATE(715), - [sym_switch_stmt] = STATE(715), - [sym_if_stmt] = STATE(715), - [sym_for_stmt] = STATE(715), - [sym_foreach_stmt] = STATE(715), - [sym_while_stmt] = STATE(715), - [sym_do_stmt] = STATE(715), - [sym_asm_block_stmt] = STATE(715), - [sym_ct_assert_stmt] = STATE(715), - [sym_ct_echo_stmt] = STATE(715), - [sym_ct_if_stmt] = STATE(715), - [sym__ct_switch] = STATE(1621), - [sym_ct_switch_stmt] = STATE(715), - [sym_ct_for_stmt] = STATE(715), - [sym_ct_foreach_stmt] = STATE(715), - [sym__expr] = STATE(1299), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1624), - [aux_sym_compound_stmt_repeat1] = STATE(68), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(566), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(568), - [anon_sym_const] = ACTIONS(570), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(572), - [anon_sym_continue] = ACTIONS(574), - [anon_sym_break] = ACTIONS(576), - [anon_sym_defer] = ACTIONS(578), - [anon_sym_assert] = ACTIONS(580), - [anon_sym_nextcase] = ACTIONS(582), - [anon_sym_switch] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(586), - [anon_sym_for] = ACTIONS(588), - [anon_sym_foreach] = ACTIONS(590), - [anon_sym_foreach_r] = ACTIONS(590), - [anon_sym_while] = ACTIONS(592), - [anon_sym_do] = ACTIONS(594), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(596), - [anon_sym_DOLLARassert] = ACTIONS(598), - [anon_sym_DOLLARerror] = ACTIONS(600), - [anon_sym_DOLLARecho] = ACTIONS(602), - [anon_sym_DOLLARif] = ACTIONS(604), - [anon_sym_DOLLARendif] = ACTIONS(560), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(608), - [anon_sym_DOLLARforeach] = ACTIONS(610), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1162), + [sym_const_declaration] = STATE(364), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(332), + [sym_expr_stmt] = STATE(400), + [sym_var_decl] = STATE(2193), + [sym_var_stmt] = STATE(400), + [sym_return_stmt] = STATE(400), + [sym_continue_stmt] = STATE(400), + [sym_break_stmt] = STATE(400), + [sym_defer_stmt] = STATE(400), + [sym_assert_stmt] = STATE(400), + [sym_declaration_stmt] = STATE(400), + [sym_nextcase_stmt] = STATE(400), + [sym_switch_body] = STATE(332), + [sym_switch_stmt] = STATE(400), + [sym__if_body] = STATE(398), + [sym_if_stmt] = STATE(400), + [sym_for_stmt] = STATE(400), + [sym_foreach_stmt] = STATE(400), + [sym_while_stmt] = STATE(400), + [sym_do_stmt] = STATE(400), + [sym_asm_block_stmt] = STATE(400), + [sym_ct_assert_stmt] = STATE(400), + [sym_ct_echo_stmt] = STATE(400), + [sym_ct_if_stmt] = STATE(400), + [sym__ct_switch] = STATE(1544), + [sym_ct_switch_stmt] = STATE(400), + [sym_ct_for_stmt] = STATE(400), + [sym_ct_foreach_stmt] = STATE(400), + [sym__expr] = STATE(1093), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1351), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(883), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_const] = ACTIONS(101), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [65] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(65), [sym_doc_comment] = STATE(65), [sym_block_comment] = STATE(65), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1158), - [sym_const_declaration] = STATE(445), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(438), - [sym_expr_stmt] = STATE(438), - [sym_var_decl] = STATE(2324), - [sym_var_stmt] = STATE(438), - [sym_return_stmt] = STATE(438), - [sym_continue_stmt] = STATE(438), - [sym_break_stmt] = STATE(438), - [sym_defer_stmt] = STATE(438), - [sym_assert_stmt] = STATE(438), - [sym_declaration_stmt] = STATE(438), - [sym_nextcase_stmt] = STATE(438), - [sym_switch_stmt] = STATE(438), - [sym_if_stmt] = STATE(438), - [sym_for_stmt] = STATE(438), - [sym_foreach_stmt] = STATE(438), - [sym_while_stmt] = STATE(438), - [sym_do_stmt] = STATE(438), - [sym_asm_block_stmt] = STATE(438), - [sym_ct_assert_stmt] = STATE(438), - [sym_ct_echo_stmt] = STATE(438), - [sym_ct_if_stmt] = STATE(438), - [sym__ct_switch] = STATE(1606), - [sym_ct_switch_stmt] = STATE(438), - [sym_ct_for_stmt] = STATE(438), - [sym_ct_foreach_stmt] = STATE(438), - [sym__expr] = STATE(1265), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1564), - [aux_sym_compound_stmt_repeat1] = STATE(16), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(95), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(896), - [anon_sym_const] = ACTIONS(103), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1162), + [sym_const_declaration] = STATE(364), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(396), + [sym_expr_stmt] = STATE(396), + [sym_var_decl] = STATE(2193), + [sym_var_stmt] = STATE(396), + [sym_return_stmt] = STATE(396), + [sym_continue_stmt] = STATE(396), + [sym_break_stmt] = STATE(396), + [sym_defer_stmt] = STATE(396), + [sym_assert_stmt] = STATE(396), + [sym_declaration_stmt] = STATE(396), + [sym_nextcase_stmt] = STATE(396), + [sym_switch_stmt] = STATE(396), + [sym_if_stmt] = STATE(396), + [sym_for_stmt] = STATE(396), + [sym_foreach_stmt] = STATE(396), + [sym_while_stmt] = STATE(396), + [sym_do_stmt] = STATE(396), + [sym_asm_block_stmt] = STATE(396), + [sym_ct_assert_stmt] = STATE(396), + [sym_ct_echo_stmt] = STATE(396), + [sym_ct_if_stmt] = STATE(396), + [sym__ct_switch] = STATE(1544), + [sym_ct_switch_stmt] = STATE(396), + [sym_ct_for_stmt] = STATE(396), + [sym_ct_foreach_stmt] = STATE(396), + [sym__expr] = STATE(1093), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1351), + [aux_sym_compound_stmt_repeat1] = STATE(66), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(93), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_RBRACE] = ACTIONS(887), + [anon_sym_const] = ACTIONS(101), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [66] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(66), [sym_doc_comment] = STATE(66), [sym_block_comment] = STATE(66), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1163), - [sym_const_declaration] = STATE(852), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(521), - [sym_expr_stmt] = STATE(816), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1162), + [sym_const_declaration] = STATE(364), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(396), + [sym_expr_stmt] = STATE(396), [sym_var_decl] = STATE(2193), - [sym_var_stmt] = STATE(816), - [sym_return_stmt] = STATE(816), - [sym_continue_stmt] = STATE(816), - [sym_break_stmt] = STATE(816), - [sym_defer_stmt] = STATE(816), - [sym_assert_stmt] = STATE(816), - [sym_declaration_stmt] = STATE(816), - [sym_nextcase_stmt] = STATE(816), - [sym_switch_body] = STATE(521), - [sym_switch_stmt] = STATE(816), - [sym__if_body] = STATE(811), - [sym_if_stmt] = STATE(816), - [sym_for_stmt] = STATE(816), - [sym_foreach_stmt] = STATE(816), - [sym_while_stmt] = STATE(816), - [sym_do_stmt] = STATE(816), - [sym_asm_block_stmt] = STATE(816), - [sym_ct_assert_stmt] = STATE(816), - [sym_ct_echo_stmt] = STATE(816), - [sym_ct_if_stmt] = STATE(816), - [sym__ct_switch] = STATE(1557), - [sym_ct_switch_stmt] = STATE(816), - [sym_ct_for_stmt] = STATE(816), - [sym_ct_foreach_stmt] = STATE(816), - [sym__expr] = STATE(1269), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1558), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(898), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(900), - [anon_sym_const] = ACTIONS(662), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(664), - [anon_sym_continue] = ACTIONS(666), - [anon_sym_break] = ACTIONS(668), - [anon_sym_defer] = ACTIONS(670), - [anon_sym_assert] = ACTIONS(672), - [anon_sym_nextcase] = ACTIONS(674), - [anon_sym_switch] = ACTIONS(676), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_foreach] = ACTIONS(682), - [anon_sym_foreach_r] = ACTIONS(682), - [anon_sym_while] = ACTIONS(684), - [anon_sym_do] = ACTIONS(686), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(688), - [anon_sym_DOLLARassert] = ACTIONS(690), - [anon_sym_DOLLARerror] = ACTIONS(692), - [anon_sym_DOLLARecho] = ACTIONS(694), - [anon_sym_DOLLARif] = ACTIONS(696), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(698), - [anon_sym_DOLLARforeach] = ACTIONS(702), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_var_stmt] = STATE(396), + [sym_return_stmt] = STATE(396), + [sym_continue_stmt] = STATE(396), + [sym_break_stmt] = STATE(396), + [sym_defer_stmt] = STATE(396), + [sym_assert_stmt] = STATE(396), + [sym_declaration_stmt] = STATE(396), + [sym_nextcase_stmt] = STATE(396), + [sym_switch_stmt] = STATE(396), + [sym_if_stmt] = STATE(396), + [sym_for_stmt] = STATE(396), + [sym_foreach_stmt] = STATE(396), + [sym_while_stmt] = STATE(396), + [sym_do_stmt] = STATE(396), + [sym_asm_block_stmt] = STATE(396), + [sym_ct_assert_stmt] = STATE(396), + [sym_ct_echo_stmt] = STATE(396), + [sym_ct_if_stmt] = STATE(396), + [sym__ct_switch] = STATE(1544), + [sym_ct_switch_stmt] = STATE(396), + [sym_ct_for_stmt] = STATE(396), + [sym_ct_foreach_stmt] = STATE(396), + [sym__expr] = STATE(1093), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1351), + [aux_sym_compound_stmt_repeat1] = STATE(16), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(93), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_RBRACE] = ACTIONS(889), + [anon_sym_const] = ACTIONS(101), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [67] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(67), [sym_doc_comment] = STATE(67), [sym_block_comment] = STATE(67), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1175), - [sym_const_declaration] = STATE(727), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(705), - [sym_expr_stmt] = STATE(705), - [sym_var_decl] = STATE(2279), - [sym_var_stmt] = STATE(705), - [sym_return_stmt] = STATE(705), - [sym_continue_stmt] = STATE(705), - [sym_break_stmt] = STATE(705), - [sym_defer_stmt] = STATE(705), - [sym_assert_stmt] = STATE(705), - [sym_declaration_stmt] = STATE(705), - [sym_nextcase_stmt] = STATE(705), - [sym_switch_stmt] = STATE(705), - [sym_if_stmt] = STATE(705), - [sym_for_stmt] = STATE(705), - [sym_foreach_stmt] = STATE(705), - [sym_while_stmt] = STATE(705), - [sym_do_stmt] = STATE(705), - [sym_asm_block_stmt] = STATE(705), - [sym_ct_assert_stmt] = STATE(705), - [sym_ct_echo_stmt] = STATE(705), - [sym_ct_if_stmt] = STATE(705), - [sym__ct_switch] = STATE(1593), - [sym_ct_switch_stmt] = STATE(705), - [sym_ct_for_stmt] = STATE(705), - [sym_ct_foreach_stmt] = STATE(705), - [sym__expr] = STATE(1275), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1596), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(902), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(614), - [anon_sym_const] = ACTIONS(616), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_break] = ACTIONS(622), - [anon_sym_defer] = ACTIONS(624), - [anon_sym_try] = ACTIONS(904), - [anon_sym_catch] = ACTIONS(904), - [anon_sym_assert] = ACTIONS(626), - [anon_sym_nextcase] = ACTIONS(628), - [anon_sym_switch] = ACTIONS(630), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(632), - [anon_sym_for] = ACTIONS(634), - [anon_sym_foreach] = ACTIONS(636), - [anon_sym_foreach_r] = ACTIONS(636), - [anon_sym_while] = ACTIONS(638), - [anon_sym_do] = ACTIONS(640), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(642), - [anon_sym_DOLLARassert] = ACTIONS(644), - [anon_sym_DOLLARerror] = ACTIONS(646), - [anon_sym_DOLLARecho] = ACTIONS(648), - [anon_sym_DOLLARif] = ACTIONS(650), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(652), - [anon_sym_DOLLARforeach] = ACTIONS(654), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1170), + [sym_const_declaration] = STATE(642), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(456), + [sym_expr_stmt] = STATE(651), + [sym_var_decl] = STATE(1985), + [sym_var_stmt] = STATE(651), + [sym_return_stmt] = STATE(651), + [sym_continue_stmt] = STATE(651), + [sym_break_stmt] = STATE(651), + [sym_defer_stmt] = STATE(651), + [sym_assert_stmt] = STATE(651), + [sym_declaration_stmt] = STATE(651), + [sym_nextcase_stmt] = STATE(651), + [sym_switch_body] = STATE(456), + [sym_switch_stmt] = STATE(651), + [sym__if_body] = STATE(672), + [sym_if_stmt] = STATE(651), + [sym_for_stmt] = STATE(651), + [sym_foreach_stmt] = STATE(651), + [sym_while_stmt] = STATE(651), + [sym_do_stmt] = STATE(651), + [sym_asm_block_stmt] = STATE(651), + [sym_ct_assert_stmt] = STATE(651), + [sym_ct_echo_stmt] = STATE(651), + [sym_ct_if_stmt] = STATE(651), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(651), + [sym_ct_for_stmt] = STATE(651), + [sym_ct_foreach_stmt] = STATE(651), + [sym__expr] = STATE(1100), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1357), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(891), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(893), + [anon_sym_const] = ACTIONS(563), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(565), + [anon_sym_continue] = ACTIONS(567), + [anon_sym_break] = ACTIONS(569), + [anon_sym_defer] = ACTIONS(571), + [anon_sym_assert] = ACTIONS(573), + [anon_sym_nextcase] = ACTIONS(575), + [anon_sym_switch] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(579), + [anon_sym_for] = ACTIONS(581), + [anon_sym_foreach] = ACTIONS(583), + [anon_sym_foreach_r] = ACTIONS(583), + [anon_sym_while] = ACTIONS(585), + [anon_sym_do] = ACTIONS(587), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(589), + [anon_sym_DOLLARassert] = ACTIONS(591), + [anon_sym_DOLLARerror] = ACTIONS(593), + [anon_sym_DOLLARecho] = ACTIONS(595), + [anon_sym_DOLLARif] = ACTIONS(597), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(599), + [anon_sym_DOLLARforeach] = ACTIONS(601), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [68] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(68), [sym_doc_comment] = STATE(68), [sym_block_comment] = STATE(68), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1183), - [sym_const_declaration] = STATE(716), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(715), - [sym_expr_stmt] = STATE(715), - [sym_var_decl] = STATE(2182), - [sym_var_stmt] = STATE(715), - [sym_return_stmt] = STATE(715), - [sym_continue_stmt] = STATE(715), - [sym_break_stmt] = STATE(715), - [sym_defer_stmt] = STATE(715), - [sym_assert_stmt] = STATE(715), - [sym_declaration_stmt] = STATE(715), - [sym_nextcase_stmt] = STATE(715), - [sym_switch_stmt] = STATE(715), - [sym_if_stmt] = STATE(715), - [sym_for_stmt] = STATE(715), - [sym_foreach_stmt] = STATE(715), - [sym_while_stmt] = STATE(715), - [sym_do_stmt] = STATE(715), - [sym_asm_block_stmt] = STATE(715), - [sym_ct_assert_stmt] = STATE(715), - [sym_ct_echo_stmt] = STATE(715), - [sym_ct_if_stmt] = STATE(715), - [sym__ct_switch] = STATE(1621), - [sym_ct_switch_stmt] = STATE(715), - [sym_ct_for_stmt] = STATE(715), - [sym_ct_foreach_stmt] = STATE(715), - [sym__expr] = STATE(1299), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1624), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1170), + [sym_const_declaration] = STATE(642), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(641), + [sym_expr_stmt] = STATE(641), + [sym_var_decl] = STATE(1985), + [sym_var_stmt] = STATE(641), + [sym_return_stmt] = STATE(641), + [sym_continue_stmt] = STATE(641), + [sym_break_stmt] = STATE(641), + [sym_defer_stmt] = STATE(641), + [sym_assert_stmt] = STATE(641), + [sym_declaration_stmt] = STATE(641), + [sym_nextcase_stmt] = STATE(641), + [sym_switch_stmt] = STATE(641), + [sym_if_stmt] = STATE(641), + [sym_for_stmt] = STATE(641), + [sym_foreach_stmt] = STATE(641), + [sym_while_stmt] = STATE(641), + [sym_do_stmt] = STATE(641), + [sym_asm_block_stmt] = STATE(641), + [sym_ct_assert_stmt] = STATE(641), + [sym_ct_echo_stmt] = STATE(641), + [sym_ct_if_stmt] = STATE(641), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(641), + [sym_ct_for_stmt] = STATE(641), + [sym_ct_foreach_stmt] = STATE(641), + [sym__expr] = STATE(1100), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1357), [aux_sym_compound_stmt_repeat1] = STATE(68), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(247), - [sym_integer_literal] = ACTIONS(250), - [anon_sym_SQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(256), - [anon_sym_BQUOTE] = ACTIONS(259), - [sym_bytes_literal] = ACTIONS(262), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(265), - [sym_at_ident] = ACTIONS(268), - [sym_hash_ident] = ACTIONS(271), - [sym_type_ident] = ACTIONS(274), - [sym_ct_type_ident] = ACTIONS(277), - [sym_const_ident] = ACTIONS(280), - [sym_builtin] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(283), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_static] = ACTIONS(289), - [anon_sym_tlocal] = ACTIONS(289), - [anon_sym_SEMI] = ACTIONS(906), - [anon_sym_fn] = ACTIONS(295), - [anon_sym_LBRACE] = ACTIONS(909), - [anon_sym_const] = ACTIONS(912), - [anon_sym_var] = ACTIONS(306), - [anon_sym_return] = ACTIONS(915), - [anon_sym_continue] = ACTIONS(918), - [anon_sym_break] = ACTIONS(921), - [anon_sym_defer] = ACTIONS(924), - [anon_sym_assert] = ACTIONS(927), - [anon_sym_nextcase] = ACTIONS(930), - [anon_sym_switch] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(332), - [anon_sym_if] = ACTIONS(936), - [anon_sym_for] = ACTIONS(939), - [anon_sym_foreach] = ACTIONS(942), - [anon_sym_foreach_r] = ACTIONS(942), - [anon_sym_while] = ACTIONS(945), - [anon_sym_do] = ACTIONS(948), - [anon_sym_int] = ACTIONS(350), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_STAR] = ACTIONS(332), - [anon_sym_asm] = ACTIONS(951), - [anon_sym_DOLLARassert] = ACTIONS(954), - [anon_sym_DOLLARerror] = ACTIONS(957), - [anon_sym_DOLLARecho] = ACTIONS(960), - [anon_sym_DOLLARif] = ACTIONS(963), - [anon_sym_DOLLARendif] = ACTIONS(324), - [anon_sym_DOLLARswitch] = ACTIONS(368), - [anon_sym_DOLLARfor] = ACTIONS(966), - [anon_sym_DOLLARforeach] = ACTIONS(969), - [anon_sym_DOLLARalignof] = ACTIONS(377), - [anon_sym_DOLLARextnameof] = ACTIONS(377), - [anon_sym_DOLLARnameof] = ACTIONS(377), - [anon_sym_DOLLARoffsetof] = ACTIONS(377), - [anon_sym_DOLLARqnameof] = ACTIONS(377), - [anon_sym_DOLLARvaconst] = ACTIONS(380), - [anon_sym_DOLLARvaarg] = ACTIONS(380), - [anon_sym_DOLLARvaref] = ACTIONS(380), - [anon_sym_DOLLARvaexpr] = ACTIONS(380), - [anon_sym_true] = ACTIONS(383), - [anon_sym_false] = ACTIONS(383), - [anon_sym_null] = ACTIONS(383), - [anon_sym_DOLLARvacount] = ACTIONS(383), - [anon_sym_DOLLARappend] = ACTIONS(380), - [anon_sym_DOLLARconcat] = ACTIONS(380), - [anon_sym_DOLLAReval] = ACTIONS(380), - [anon_sym_DOLLARis_const] = ACTIONS(380), - [anon_sym_DOLLARsizeof] = ACTIONS(380), - [anon_sym_DOLLARstringify] = ACTIONS(380), - [anon_sym_DOLLARand] = ACTIONS(386), - [anon_sym_DOLLARdefined] = ACTIONS(386), - [anon_sym_DOLLARembed] = ACTIONS(386), - [anon_sym_DOLLARor] = ACTIONS(386), - [anon_sym_DOLLARfeature] = ACTIONS(389), - [anon_sym_DOLLARassignable] = ACTIONS(392), - [anon_sym_BANG] = ACTIONS(332), - [anon_sym_TILDE] = ACTIONS(332), - [anon_sym_PLUS_PLUS] = ACTIONS(332), - [anon_sym_DASH_DASH] = ACTIONS(332), - [anon_sym_typeid] = ACTIONS(350), - [anon_sym_LBRACE_PIPE] = ACTIONS(395), - [anon_sym_void] = ACTIONS(350), - [anon_sym_bool] = ACTIONS(350), - [anon_sym_char] = ACTIONS(350), - [anon_sym_ichar] = ACTIONS(350), - [anon_sym_short] = ACTIONS(350), - [anon_sym_ushort] = ACTIONS(350), - [anon_sym_uint] = ACTIONS(350), - [anon_sym_long] = ACTIONS(350), - [anon_sym_ulong] = ACTIONS(350), - [anon_sym_int128] = ACTIONS(350), - [anon_sym_uint128] = ACTIONS(350), - [anon_sym_float] = ACTIONS(350), - [anon_sym_double] = ACTIONS(350), - [anon_sym_float16] = ACTIONS(350), - [anon_sym_bfloat16] = ACTIONS(350), - [anon_sym_float128] = ACTIONS(350), - [anon_sym_iptr] = ACTIONS(350), - [anon_sym_uptr] = ACTIONS(350), - [anon_sym_isz] = ACTIONS(350), - [anon_sym_usz] = ACTIONS(350), - [anon_sym_anyfault] = ACTIONS(350), - [anon_sym_any] = ACTIONS(350), - [anon_sym_DOLLARtypeof] = ACTIONS(398), - [anon_sym_DOLLARtypefrom] = ACTIONS(401), - [anon_sym_DOLLARvatype] = ACTIONS(401), - [anon_sym_DOLLARevaltype] = ACTIONS(401), - [sym_real_literal] = ACTIONS(250), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(243), + [sym_integer_literal] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_DQUOTE] = ACTIONS(252), + [anon_sym_BQUOTE] = ACTIONS(255), + [sym_bytes_literal] = ACTIONS(258), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(261), + [sym_at_ident] = ACTIONS(264), + [sym_hash_ident] = ACTIONS(267), + [sym_type_ident] = ACTIONS(270), + [sym_ct_type_ident] = ACTIONS(273), + [sym_const_ident] = ACTIONS(276), + [sym_builtin] = ACTIONS(246), + [anon_sym_LPAREN] = ACTIONS(279), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_static] = ACTIONS(285), + [anon_sym_tlocal] = ACTIONS(285), + [anon_sym_SEMI] = ACTIONS(895), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(898), + [anon_sym_const] = ACTIONS(901), + [anon_sym_var] = ACTIONS(302), + [anon_sym_return] = ACTIONS(904), + [anon_sym_continue] = ACTIONS(907), + [anon_sym_break] = ACTIONS(910), + [anon_sym_defer] = ACTIONS(913), + [anon_sym_assert] = ACTIONS(916), + [anon_sym_nextcase] = ACTIONS(919), + [anon_sym_switch] = ACTIONS(922), + [anon_sym_AMP_AMP] = ACTIONS(328), + [anon_sym_if] = ACTIONS(925), + [anon_sym_for] = ACTIONS(928), + [anon_sym_foreach] = ACTIONS(931), + [anon_sym_foreach_r] = ACTIONS(931), + [anon_sym_while] = ACTIONS(934), + [anon_sym_do] = ACTIONS(937), + [anon_sym_int] = ACTIONS(346), + [anon_sym_PLUS] = ACTIONS(282), + [anon_sym_DASH] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(328), + [anon_sym_asm] = ACTIONS(940), + [anon_sym_DOLLARassert] = ACTIONS(943), + [anon_sym_DOLLARerror] = ACTIONS(946), + [anon_sym_DOLLARecho] = ACTIONS(949), + [anon_sym_DOLLARif] = ACTIONS(952), + [anon_sym_DOLLARswitch] = ACTIONS(364), + [anon_sym_DOLLARfor] = ACTIONS(955), + [anon_sym_DOLLARforeach] = ACTIONS(958), + [anon_sym_DOLLARendforeach] = ACTIONS(320), + [anon_sym_DOLLARalignof] = ACTIONS(373), + [anon_sym_DOLLARextnameof] = ACTIONS(373), + [anon_sym_DOLLARnameof] = ACTIONS(373), + [anon_sym_DOLLARoffsetof] = ACTIONS(373), + [anon_sym_DOLLARqnameof] = ACTIONS(373), + [anon_sym_DOLLARvaconst] = ACTIONS(376), + [anon_sym_DOLLARvaarg] = ACTIONS(376), + [anon_sym_DOLLARvaref] = ACTIONS(376), + [anon_sym_DOLLARvaexpr] = ACTIONS(376), + [anon_sym_true] = ACTIONS(379), + [anon_sym_false] = ACTIONS(379), + [anon_sym_null] = ACTIONS(379), + [anon_sym_DOLLARvacount] = ACTIONS(379), + [anon_sym_DOLLARappend] = ACTIONS(376), + [anon_sym_DOLLARconcat] = ACTIONS(376), + [anon_sym_DOLLAReval] = ACTIONS(376), + [anon_sym_DOLLARis_const] = ACTIONS(376), + [anon_sym_DOLLARsizeof] = ACTIONS(376), + [anon_sym_DOLLARstringify] = ACTIONS(376), + [anon_sym_DOLLARand] = ACTIONS(382), + [anon_sym_DOLLARdefined] = ACTIONS(382), + [anon_sym_DOLLARembed] = ACTIONS(382), + [anon_sym_DOLLARor] = ACTIONS(382), + [anon_sym_DOLLARfeature] = ACTIONS(385), + [anon_sym_DOLLARassignable] = ACTIONS(388), + [anon_sym_BANG] = ACTIONS(328), + [anon_sym_TILDE] = ACTIONS(328), + [anon_sym_PLUS_PLUS] = ACTIONS(328), + [anon_sym_DASH_DASH] = ACTIONS(328), + [anon_sym_typeid] = ACTIONS(346), + [anon_sym_LBRACE_PIPE] = ACTIONS(391), + [anon_sym_void] = ACTIONS(346), + [anon_sym_bool] = ACTIONS(346), + [anon_sym_char] = ACTIONS(346), + [anon_sym_ichar] = ACTIONS(346), + [anon_sym_short] = ACTIONS(346), + [anon_sym_ushort] = ACTIONS(346), + [anon_sym_uint] = ACTIONS(346), + [anon_sym_long] = ACTIONS(346), + [anon_sym_ulong] = ACTIONS(346), + [anon_sym_int128] = ACTIONS(346), + [anon_sym_uint128] = ACTIONS(346), + [anon_sym_float] = ACTIONS(346), + [anon_sym_double] = ACTIONS(346), + [anon_sym_float16] = ACTIONS(346), + [anon_sym_bfloat16] = ACTIONS(346), + [anon_sym_float128] = ACTIONS(346), + [anon_sym_iptr] = ACTIONS(346), + [anon_sym_uptr] = ACTIONS(346), + [anon_sym_isz] = ACTIONS(346), + [anon_sym_usz] = ACTIONS(346), + [anon_sym_anyfault] = ACTIONS(346), + [anon_sym_any] = ACTIONS(346), + [anon_sym_DOLLARtypeof] = ACTIONS(394), + [anon_sym_DOLLARtypefrom] = ACTIONS(394), + [anon_sym_DOLLARvatype] = ACTIONS(394), + [anon_sym_DOLLARevaltype] = ACTIONS(394), + [sym_real_literal] = ACTIONS(246), }, [69] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(69), [sym_doc_comment] = STATE(69), [sym_block_comment] = STATE(69), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1183), - [sym_const_declaration] = STATE(716), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(517), - [sym_expr_stmt] = STATE(849), - [sym_var_decl] = STATE(2182), - [sym_var_stmt] = STATE(849), - [sym_return_stmt] = STATE(849), - [sym_continue_stmt] = STATE(849), - [sym_break_stmt] = STATE(849), - [sym_defer_stmt] = STATE(849), - [sym_assert_stmt] = STATE(849), - [sym_declaration_stmt] = STATE(849), - [sym_nextcase_stmt] = STATE(849), - [sym_switch_body] = STATE(517), - [sym_switch_stmt] = STATE(849), - [sym__if_body] = STATE(789), - [sym_if_stmt] = STATE(849), - [sym_for_stmt] = STATE(849), - [sym_foreach_stmt] = STATE(849), - [sym_while_stmt] = STATE(849), - [sym_do_stmt] = STATE(849), - [sym_asm_block_stmt] = STATE(849), - [sym_ct_assert_stmt] = STATE(849), - [sym_ct_echo_stmt] = STATE(849), - [sym_ct_if_stmt] = STATE(849), - [sym__ct_switch] = STATE(1621), - [sym_ct_switch_stmt] = STATE(849), - [sym_ct_for_stmt] = STATE(849), - [sym_ct_foreach_stmt] = STATE(849), - [sym__expr] = STATE(1299), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1624), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(972), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(974), - [anon_sym_const] = ACTIONS(570), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(572), - [anon_sym_continue] = ACTIONS(574), - [anon_sym_break] = ACTIONS(576), - [anon_sym_defer] = ACTIONS(578), - [anon_sym_assert] = ACTIONS(580), - [anon_sym_nextcase] = ACTIONS(582), - [anon_sym_switch] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(586), - [anon_sym_for] = ACTIONS(588), - [anon_sym_foreach] = ACTIONS(590), - [anon_sym_foreach_r] = ACTIONS(590), - [anon_sym_while] = ACTIONS(592), - [anon_sym_do] = ACTIONS(594), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(596), - [anon_sym_DOLLARassert] = ACTIONS(598), - [anon_sym_DOLLARerror] = ACTIONS(600), - [anon_sym_DOLLARecho] = ACTIONS(602), - [anon_sym_DOLLARif] = ACTIONS(604), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(608), - [anon_sym_DOLLARforeach] = ACTIONS(610), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1162), + [sym_const_declaration] = STATE(364), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(373), + [sym_expr_stmt] = STATE(373), + [sym_var_decl] = STATE(2193), + [sym_var_stmt] = STATE(373), + [sym_return_stmt] = STATE(373), + [sym_continue_stmt] = STATE(373), + [sym_break_stmt] = STATE(373), + [sym_defer_stmt] = STATE(373), + [sym_assert_stmt] = STATE(373), + [sym_declaration_stmt] = STATE(373), + [sym_nextcase_stmt] = STATE(373), + [sym_switch_stmt] = STATE(373), + [sym_if_stmt] = STATE(373), + [sym_for_stmt] = STATE(373), + [sym_foreach_stmt] = STATE(373), + [sym_while_stmt] = STATE(373), + [sym_do_stmt] = STATE(373), + [sym_asm_block_stmt] = STATE(373), + [sym_ct_assert_stmt] = STATE(373), + [sym_ct_echo_stmt] = STATE(373), + [sym_ct_if_stmt] = STATE(373), + [sym__ct_switch] = STATE(1544), + [sym_ct_switch_stmt] = STATE(373), + [sym_ct_for_stmt] = STATE(373), + [sym_ct_foreach_stmt] = STATE(373), + [sym__expr] = STATE(1093), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1351), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_const] = ACTIONS(101), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_try] = ACTIONS(963), + [anon_sym_catch] = ACTIONS(963), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [70] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(70), [sym_doc_comment] = STATE(70), [sym_block_comment] = STATE(70), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1158), - [sym_const_declaration] = STATE(445), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(438), - [sym_expr_stmt] = STATE(438), - [sym_var_decl] = STATE(2324), - [sym_var_stmt] = STATE(438), - [sym_return_stmt] = STATE(438), - [sym_continue_stmt] = STATE(438), - [sym_break_stmt] = STATE(438), - [sym_defer_stmt] = STATE(438), - [sym_assert_stmt] = STATE(438), - [sym_declaration_stmt] = STATE(438), - [sym_nextcase_stmt] = STATE(438), - [sym_switch_stmt] = STATE(438), - [sym_if_stmt] = STATE(438), - [sym_for_stmt] = STATE(438), - [sym_foreach_stmt] = STATE(438), - [sym_while_stmt] = STATE(438), - [sym_do_stmt] = STATE(438), - [sym_asm_block_stmt] = STATE(438), - [sym_ct_assert_stmt] = STATE(438), - [sym_ct_echo_stmt] = STATE(438), - [sym_ct_if_stmt] = STATE(438), - [sym__ct_switch] = STATE(1606), - [sym_ct_switch_stmt] = STATE(438), - [sym_ct_for_stmt] = STATE(438), - [sym_ct_foreach_stmt] = STATE(438), - [sym__expr] = STATE(1265), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1564), - [aux_sym_compound_stmt_repeat1] = STATE(71), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(95), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(976), - [anon_sym_const] = ACTIONS(103), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1165), + [sym_const_declaration] = STATE(555), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(356), + [sym_expr_stmt] = STATE(529), + [sym_var_decl] = STATE(2183), + [sym_var_stmt] = STATE(529), + [sym_return_stmt] = STATE(529), + [sym_continue_stmt] = STATE(529), + [sym_break_stmt] = STATE(529), + [sym_defer_stmt] = STATE(529), + [sym_assert_stmt] = STATE(529), + [sym_declaration_stmt] = STATE(529), + [sym_nextcase_stmt] = STATE(529), + [sym_switch_body] = STATE(356), + [sym_switch_stmt] = STATE(529), + [sym__if_body] = STATE(495), + [sym_if_stmt] = STATE(529), + [sym_for_stmt] = STATE(529), + [sym_foreach_stmt] = STATE(529), + [sym_while_stmt] = STATE(529), + [sym_do_stmt] = STATE(529), + [sym_asm_block_stmt] = STATE(529), + [sym_ct_assert_stmt] = STATE(529), + [sym_ct_echo_stmt] = STATE(529), + [sym_ct_if_stmt] = STATE(529), + [sym__ct_switch] = STATE(1508), + [sym_ct_switch_stmt] = STATE(529), + [sym_ct_for_stmt] = STATE(529), + [sym_ct_foreach_stmt] = STATE(529), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1342), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(965), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(967), + [anon_sym_const] = ACTIONS(403), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_break] = ACTIONS(409), + [anon_sym_defer] = ACTIONS(411), + [anon_sym_assert] = ACTIONS(413), + [anon_sym_nextcase] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(419), + [anon_sym_for] = ACTIONS(421), + [anon_sym_foreach] = ACTIONS(423), + [anon_sym_foreach_r] = ACTIONS(423), + [anon_sym_while] = ACTIONS(425), + [anon_sym_do] = ACTIONS(427), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(429), + [anon_sym_DOLLARassert] = ACTIONS(431), + [anon_sym_DOLLARerror] = ACTIONS(433), + [anon_sym_DOLLARecho] = ACTIONS(435), + [anon_sym_DOLLARif] = ACTIONS(437), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(443), + [anon_sym_DOLLARforeach] = ACTIONS(445), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [71] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(71), [sym_doc_comment] = STATE(71), [sym_block_comment] = STATE(71), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1158), - [sym_const_declaration] = STATE(445), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(438), - [sym_expr_stmt] = STATE(438), - [sym_var_decl] = STATE(2324), - [sym_var_stmt] = STATE(438), - [sym_return_stmt] = STATE(438), - [sym_continue_stmt] = STATE(438), - [sym_break_stmt] = STATE(438), - [sym_defer_stmt] = STATE(438), - [sym_assert_stmt] = STATE(438), - [sym_declaration_stmt] = STATE(438), - [sym_nextcase_stmt] = STATE(438), - [sym_switch_stmt] = STATE(438), - [sym_if_stmt] = STATE(438), - [sym_for_stmt] = STATE(438), - [sym_foreach_stmt] = STATE(438), - [sym_while_stmt] = STATE(438), - [sym_do_stmt] = STATE(438), - [sym_asm_block_stmt] = STATE(438), - [sym_ct_assert_stmt] = STATE(438), - [sym_ct_echo_stmt] = STATE(438), - [sym_ct_if_stmt] = STATE(438), - [sym__ct_switch] = STATE(1606), - [sym_ct_switch_stmt] = STATE(438), - [sym_ct_for_stmt] = STATE(438), - [sym_ct_foreach_stmt] = STATE(438), - [sym__expr] = STATE(1265), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1564), - [aux_sym_compound_stmt_repeat1] = STATE(16), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(95), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(978), - [anon_sym_const] = ACTIONS(103), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1173), + [sym_const_declaration] = STATE(716), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(462), + [sym_expr_stmt] = STATE(745), + [sym_var_decl] = STATE(1937), + [sym_var_stmt] = STATE(745), + [sym_return_stmt] = STATE(745), + [sym_continue_stmt] = STATE(745), + [sym_break_stmt] = STATE(745), + [sym_defer_stmt] = STATE(745), + [sym_assert_stmt] = STATE(745), + [sym_declaration_stmt] = STATE(745), + [sym_nextcase_stmt] = STATE(745), + [sym_switch_body] = STATE(462), + [sym_switch_stmt] = STATE(745), + [sym__if_body] = STATE(763), + [sym_if_stmt] = STATE(745), + [sym_for_stmt] = STATE(745), + [sym_foreach_stmt] = STATE(745), + [sym_while_stmt] = STATE(745), + [sym_do_stmt] = STATE(745), + [sym_asm_block_stmt] = STATE(745), + [sym_ct_assert_stmt] = STATE(745), + [sym_ct_echo_stmt] = STATE(745), + [sym_ct_if_stmt] = STATE(745), + [sym__ct_switch] = STATE(1545), + [sym_ct_switch_stmt] = STATE(745), + [sym_ct_for_stmt] = STATE(745), + [sym_ct_foreach_stmt] = STATE(745), + [sym__expr] = STATE(1109), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1338), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(969), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(971), + [anon_sym_const] = ACTIONS(609), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_break] = ACTIONS(615), + [anon_sym_defer] = ACTIONS(617), + [anon_sym_assert] = ACTIONS(619), + [anon_sym_nextcase] = ACTIONS(621), + [anon_sym_switch] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(625), + [anon_sym_for] = ACTIONS(627), + [anon_sym_foreach] = ACTIONS(629), + [anon_sym_foreach_r] = ACTIONS(629), + [anon_sym_while] = ACTIONS(631), + [anon_sym_do] = ACTIONS(633), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(635), + [anon_sym_DOLLARassert] = ACTIONS(637), + [anon_sym_DOLLARerror] = ACTIONS(639), + [anon_sym_DOLLARecho] = ACTIONS(641), + [anon_sym_DOLLARif] = ACTIONS(643), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(647), + [anon_sym_DOLLARforeach] = ACTIONS(649), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [72] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(72), [sym_doc_comment] = STATE(72), [sym_block_comment] = STATE(72), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1175), - [sym_const_declaration] = STATE(727), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(510), - [sym_expr_stmt] = STATE(667), - [sym_var_decl] = STATE(2279), - [sym_var_stmt] = STATE(667), - [sym_return_stmt] = STATE(667), - [sym_continue_stmt] = STATE(667), - [sym_break_stmt] = STATE(667), - [sym_defer_stmt] = STATE(667), - [sym_assert_stmt] = STATE(667), - [sym_declaration_stmt] = STATE(667), - [sym_nextcase_stmt] = STATE(667), - [sym_switch_body] = STATE(510), - [sym_switch_stmt] = STATE(667), - [sym__if_body] = STATE(665), - [sym_if_stmt] = STATE(667), - [sym_for_stmt] = STATE(667), - [sym_foreach_stmt] = STATE(667), - [sym_while_stmt] = STATE(667), - [sym_do_stmt] = STATE(667), - [sym_asm_block_stmt] = STATE(667), - [sym_ct_assert_stmt] = STATE(667), - [sym_ct_echo_stmt] = STATE(667), - [sym_ct_if_stmt] = STATE(667), - [sym__ct_switch] = STATE(1593), - [sym_ct_switch_stmt] = STATE(667), - [sym_ct_for_stmt] = STATE(667), - [sym_ct_foreach_stmt] = STATE(667), - [sym__expr] = STATE(1275), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1596), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(812), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(814), - [anon_sym_const] = ACTIONS(616), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_break] = ACTIONS(622), - [anon_sym_defer] = ACTIONS(624), - [anon_sym_assert] = ACTIONS(626), - [anon_sym_nextcase] = ACTIONS(628), - [anon_sym_switch] = ACTIONS(630), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(632), - [anon_sym_for] = ACTIONS(634), - [anon_sym_foreach] = ACTIONS(636), - [anon_sym_foreach_r] = ACTIONS(636), - [anon_sym_while] = ACTIONS(638), - [anon_sym_do] = ACTIONS(640), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(642), - [anon_sym_DOLLARassert] = ACTIONS(644), - [anon_sym_DOLLARerror] = ACTIONS(646), - [anon_sym_DOLLARecho] = ACTIONS(648), - [anon_sym_DOLLARif] = ACTIONS(650), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(652), - [anon_sym_DOLLARforeach] = ACTIONS(654), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1162), + [sym_const_declaration] = STATE(364), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(396), + [sym_expr_stmt] = STATE(396), + [sym_var_decl] = STATE(2193), + [sym_var_stmt] = STATE(396), + [sym_return_stmt] = STATE(396), + [sym_continue_stmt] = STATE(396), + [sym_break_stmt] = STATE(396), + [sym_defer_stmt] = STATE(396), + [sym_assert_stmt] = STATE(396), + [sym_declaration_stmt] = STATE(396), + [sym_nextcase_stmt] = STATE(396), + [sym_switch_stmt] = STATE(396), + [sym_if_stmt] = STATE(396), + [sym_for_stmt] = STATE(396), + [sym_foreach_stmt] = STATE(396), + [sym_while_stmt] = STATE(396), + [sym_do_stmt] = STATE(396), + [sym_asm_block_stmt] = STATE(396), + [sym_ct_assert_stmt] = STATE(396), + [sym_ct_echo_stmt] = STATE(396), + [sym_ct_if_stmt] = STATE(396), + [sym__ct_switch] = STATE(1544), + [sym_ct_switch_stmt] = STATE(396), + [sym_ct_for_stmt] = STATE(396), + [sym_ct_foreach_stmt] = STATE(396), + [sym__expr] = STATE(1093), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1351), + [aux_sym_compound_stmt_repeat1] = STATE(16), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(93), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_RBRACE] = ACTIONS(973), + [anon_sym_const] = ACTIONS(101), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [73] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(73), [sym_doc_comment] = STATE(73), [sym_block_comment] = STATE(73), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1170), - [sym_const_declaration] = STATE(593), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(403), - [sym_expr_stmt] = STATE(601), - [sym_var_decl] = STATE(2285), - [sym_var_stmt] = STATE(601), - [sym_return_stmt] = STATE(601), - [sym_continue_stmt] = STATE(601), - [sym_break_stmt] = STATE(601), - [sym_defer_stmt] = STATE(601), - [sym_assert_stmt] = STATE(601), - [sym_declaration_stmt] = STATE(601), - [sym_nextcase_stmt] = STATE(601), - [sym_switch_body] = STATE(403), - [sym_switch_stmt] = STATE(601), - [sym__if_body] = STATE(603), - [sym_if_stmt] = STATE(601), - [sym_for_stmt] = STATE(601), - [sym_foreach_stmt] = STATE(601), - [sym_while_stmt] = STATE(601), - [sym_do_stmt] = STATE(601), - [sym_asm_block_stmt] = STATE(601), - [sym_ct_assert_stmt] = STATE(601), - [sym_ct_echo_stmt] = STATE(601), - [sym_ct_if_stmt] = STATE(601), - [sym__ct_switch] = STATE(1604), - [sym_ct_switch_stmt] = STATE(601), - [sym_ct_for_stmt] = STATE(601), - [sym_ct_foreach_stmt] = STATE(601), - [sym__expr] = STATE(1288), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1595), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(980), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(982), - [anon_sym_const] = ACTIONS(476), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(478), - [anon_sym_continue] = ACTIONS(480), - [anon_sym_break] = ACTIONS(482), - [anon_sym_defer] = ACTIONS(484), - [anon_sym_assert] = ACTIONS(486), - [anon_sym_nextcase] = ACTIONS(488), - [anon_sym_switch] = ACTIONS(490), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(492), - [anon_sym_for] = ACTIONS(494), - [anon_sym_foreach] = ACTIONS(496), - [anon_sym_foreach_r] = ACTIONS(496), - [anon_sym_while] = ACTIONS(498), - [anon_sym_do] = ACTIONS(500), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(502), - [anon_sym_DOLLARassert] = ACTIONS(504), - [anon_sym_DOLLARerror] = ACTIONS(506), - [anon_sym_DOLLARecho] = ACTIONS(508), - [anon_sym_DOLLARif] = ACTIONS(510), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(516), - [anon_sym_DOLLARforeach] = ACTIONS(518), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1165), + [sym_const_declaration] = STATE(555), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(356), + [sym_expr_stmt] = STATE(529), + [sym_var_decl] = STATE(2183), + [sym_var_stmt] = STATE(529), + [sym_return_stmt] = STATE(529), + [sym_continue_stmt] = STATE(529), + [sym_break_stmt] = STATE(529), + [sym_defer_stmt] = STATE(529), + [sym_assert_stmt] = STATE(529), + [sym_declaration_stmt] = STATE(529), + [sym_nextcase_stmt] = STATE(529), + [sym_switch_body] = STATE(356), + [sym_switch_stmt] = STATE(529), + [sym__if_body] = STATE(523), + [sym_if_stmt] = STATE(529), + [sym_for_stmt] = STATE(529), + [sym_foreach_stmt] = STATE(529), + [sym_while_stmt] = STATE(529), + [sym_do_stmt] = STATE(529), + [sym_asm_block_stmt] = STATE(529), + [sym_ct_assert_stmt] = STATE(529), + [sym_ct_echo_stmt] = STATE(529), + [sym_ct_if_stmt] = STATE(529), + [sym__ct_switch] = STATE(1508), + [sym_ct_switch_stmt] = STATE(529), + [sym_ct_for_stmt] = STATE(529), + [sym_ct_foreach_stmt] = STATE(529), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1342), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(965), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(967), + [anon_sym_const] = ACTIONS(403), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_break] = ACTIONS(409), + [anon_sym_defer] = ACTIONS(411), + [anon_sym_assert] = ACTIONS(413), + [anon_sym_nextcase] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(419), + [anon_sym_for] = ACTIONS(421), + [anon_sym_foreach] = ACTIONS(423), + [anon_sym_foreach_r] = ACTIONS(423), + [anon_sym_while] = ACTIONS(425), + [anon_sym_do] = ACTIONS(427), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(429), + [anon_sym_DOLLARassert] = ACTIONS(431), + [anon_sym_DOLLARerror] = ACTIONS(433), + [anon_sym_DOLLARecho] = ACTIONS(435), + [anon_sym_DOLLARif] = ACTIONS(437), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(443), + [anon_sym_DOLLARforeach] = ACTIONS(445), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [74] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(74), [sym_doc_comment] = STATE(74), [sym_block_comment] = STATE(74), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1163), - [sym_const_declaration] = STATE(852), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(851), - [sym_expr_stmt] = STATE(851), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1162), + [sym_const_declaration] = STATE(364), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(396), + [sym_expr_stmt] = STATE(396), [sym_var_decl] = STATE(2193), - [sym_var_stmt] = STATE(851), - [sym_return_stmt] = STATE(851), - [sym_continue_stmt] = STATE(851), - [sym_break_stmt] = STATE(851), - [sym_defer_stmt] = STATE(851), - [sym_assert_stmt] = STATE(851), - [sym_declaration_stmt] = STATE(851), - [sym_nextcase_stmt] = STATE(851), - [sym_switch_stmt] = STATE(851), - [sym_if_stmt] = STATE(851), - [sym_for_stmt] = STATE(851), - [sym_foreach_stmt] = STATE(851), - [sym_while_stmt] = STATE(851), - [sym_do_stmt] = STATE(851), - [sym_asm_block_stmt] = STATE(851), - [sym_ct_assert_stmt] = STATE(851), - [sym_ct_echo_stmt] = STATE(851), - [sym_ct_if_stmt] = STATE(851), - [sym__ct_switch] = STATE(1557), - [sym_ct_switch_stmt] = STATE(851), - [sym_ct_for_stmt] = STATE(851), - [sym_ct_foreach_stmt] = STATE(851), - [sym__expr] = STATE(1269), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1558), - [aux_sym_compound_stmt_repeat1] = STATE(80), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(658), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(660), - [anon_sym_const] = ACTIONS(662), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(664), - [anon_sym_continue] = ACTIONS(666), - [anon_sym_break] = ACTIONS(668), - [anon_sym_defer] = ACTIONS(670), - [anon_sym_assert] = ACTIONS(672), - [anon_sym_nextcase] = ACTIONS(674), - [anon_sym_switch] = ACTIONS(676), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_foreach] = ACTIONS(682), - [anon_sym_foreach_r] = ACTIONS(682), - [anon_sym_while] = ACTIONS(684), - [anon_sym_do] = ACTIONS(686), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(688), - [anon_sym_DOLLARassert] = ACTIONS(690), - [anon_sym_DOLLARerror] = ACTIONS(692), - [anon_sym_DOLLARecho] = ACTIONS(694), - [anon_sym_DOLLARif] = ACTIONS(696), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(698), - [anon_sym_DOLLARendfor] = ACTIONS(560), - [anon_sym_DOLLARforeach] = ACTIONS(702), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_var_stmt] = STATE(396), + [sym_return_stmt] = STATE(396), + [sym_continue_stmt] = STATE(396), + [sym_break_stmt] = STATE(396), + [sym_defer_stmt] = STATE(396), + [sym_assert_stmt] = STATE(396), + [sym_declaration_stmt] = STATE(396), + [sym_nextcase_stmt] = STATE(396), + [sym_switch_stmt] = STATE(396), + [sym_if_stmt] = STATE(396), + [sym_for_stmt] = STATE(396), + [sym_foreach_stmt] = STATE(396), + [sym_while_stmt] = STATE(396), + [sym_do_stmt] = STATE(396), + [sym_asm_block_stmt] = STATE(396), + [sym_ct_assert_stmt] = STATE(396), + [sym_ct_echo_stmt] = STATE(396), + [sym_ct_if_stmt] = STATE(396), + [sym__ct_switch] = STATE(1544), + [sym_ct_switch_stmt] = STATE(396), + [sym_ct_for_stmt] = STATE(396), + [sym_ct_foreach_stmt] = STATE(396), + [sym__expr] = STATE(1093), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1351), + [aux_sym_compound_stmt_repeat1] = STATE(16), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(93), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_RBRACE] = ACTIONS(975), + [anon_sym_const] = ACTIONS(101), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [75] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(75), [sym_doc_comment] = STATE(75), [sym_block_comment] = STATE(75), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1183), - [sym_const_declaration] = STATE(716), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(736), - [sym_expr_stmt] = STATE(736), - [sym_var_decl] = STATE(2182), - [sym_var_stmt] = STATE(736), - [sym_return_stmt] = STATE(736), - [sym_continue_stmt] = STATE(736), - [sym_break_stmt] = STATE(736), - [sym_defer_stmt] = STATE(736), - [sym_assert_stmt] = STATE(736), - [sym_declaration_stmt] = STATE(736), - [sym_nextcase_stmt] = STATE(736), - [sym_switch_stmt] = STATE(736), - [sym_if_stmt] = STATE(736), - [sym_for_stmt] = STATE(736), - [sym_foreach_stmt] = STATE(736), - [sym_while_stmt] = STATE(736), - [sym_do_stmt] = STATE(736), - [sym_asm_block_stmt] = STATE(736), - [sym_ct_assert_stmt] = STATE(736), - [sym_ct_echo_stmt] = STATE(736), - [sym_ct_if_stmt] = STATE(736), - [sym__ct_switch] = STATE(1621), - [sym_ct_switch_stmt] = STATE(736), - [sym_ct_for_stmt] = STATE(736), - [sym_ct_foreach_stmt] = STATE(736), - [sym__expr] = STATE(1299), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1624), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(984), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(568), - [anon_sym_const] = ACTIONS(570), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(572), - [anon_sym_continue] = ACTIONS(574), - [anon_sym_break] = ACTIONS(576), - [anon_sym_defer] = ACTIONS(578), - [anon_sym_try] = ACTIONS(986), - [anon_sym_catch] = ACTIONS(986), - [anon_sym_assert] = ACTIONS(580), - [anon_sym_nextcase] = ACTIONS(582), - [anon_sym_switch] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(586), - [anon_sym_for] = ACTIONS(588), - [anon_sym_foreach] = ACTIONS(590), - [anon_sym_foreach_r] = ACTIONS(590), - [anon_sym_while] = ACTIONS(592), - [anon_sym_do] = ACTIONS(594), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(596), - [anon_sym_DOLLARassert] = ACTIONS(598), - [anon_sym_DOLLARerror] = ACTIONS(600), - [anon_sym_DOLLARecho] = ACTIONS(602), - [anon_sym_DOLLARif] = ACTIONS(604), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(608), - [anon_sym_DOLLARforeach] = ACTIONS(610), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1175), + [sym_const_declaration] = STATE(446), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(333), + [sym_expr_stmt] = STATE(413), + [sym_var_decl] = STATE(1961), + [sym_var_stmt] = STATE(413), + [sym_return_stmt] = STATE(413), + [sym_continue_stmt] = STATE(413), + [sym_break_stmt] = STATE(413), + [sym_defer_stmt] = STATE(413), + [sym_assert_stmt] = STATE(413), + [sym_declaration_stmt] = STATE(413), + [sym_nextcase_stmt] = STATE(413), + [sym_switch_body] = STATE(333), + [sym_switch_stmt] = STATE(413), + [sym__if_body] = STATE(468), + [sym_if_stmt] = STATE(413), + [sym_for_stmt] = STATE(413), + [sym_foreach_stmt] = STATE(413), + [sym_while_stmt] = STATE(413), + [sym_do_stmt] = STATE(413), + [sym_asm_block_stmt] = STATE(413), + [sym_ct_assert_stmt] = STATE(413), + [sym_ct_echo_stmt] = STATE(413), + [sym_ct_if_stmt] = STATE(413), + [sym__ct_switch] = STATE(1566), + [sym_ct_switch_stmt] = STATE(413), + [sym_ct_for_stmt] = STATE(413), + [sym_ct_foreach_stmt] = STATE(413), + [sym__expr] = STATE(1092), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1346), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(977), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(979), + [anon_sym_const] = ACTIONS(199), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(201), + [anon_sym_continue] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_defer] = ACTIONS(207), + [anon_sym_assert] = ACTIONS(209), + [anon_sym_nextcase] = ACTIONS(211), + [anon_sym_switch] = ACTIONS(213), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(215), + [anon_sym_for] = ACTIONS(217), + [anon_sym_foreach] = ACTIONS(219), + [anon_sym_foreach_r] = ACTIONS(219), + [anon_sym_while] = ACTIONS(221), + [anon_sym_do] = ACTIONS(223), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(225), + [anon_sym_DOLLARassert] = ACTIONS(227), + [anon_sym_DOLLARerror] = ACTIONS(229), + [anon_sym_DOLLARecho] = ACTIONS(231), + [anon_sym_DOLLARif] = ACTIONS(233), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(237), + [anon_sym_DOLLARforeach] = ACTIONS(239), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [76] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(76), [sym_doc_comment] = STATE(76), [sym_block_comment] = STATE(76), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1158), - [sym_const_declaration] = STATE(445), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(438), - [sym_expr_stmt] = STATE(438), - [sym_var_decl] = STATE(2324), - [sym_var_stmt] = STATE(438), - [sym_return_stmt] = STATE(438), - [sym_continue_stmt] = STATE(438), - [sym_break_stmt] = STATE(438), - [sym_defer_stmt] = STATE(438), - [sym_assert_stmt] = STATE(438), - [sym_declaration_stmt] = STATE(438), - [sym_nextcase_stmt] = STATE(438), - [sym_switch_stmt] = STATE(438), - [sym_if_stmt] = STATE(438), - [sym_for_stmt] = STATE(438), - [sym_foreach_stmt] = STATE(438), - [sym_while_stmt] = STATE(438), - [sym_do_stmt] = STATE(438), - [sym_asm_block_stmt] = STATE(438), - [sym_ct_assert_stmt] = STATE(438), - [sym_ct_echo_stmt] = STATE(438), - [sym_ct_if_stmt] = STATE(438), - [sym__ct_switch] = STATE(1606), - [sym_ct_switch_stmt] = STATE(438), - [sym_ct_for_stmt] = STATE(438), - [sym_ct_foreach_stmt] = STATE(438), - [sym__expr] = STATE(1265), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1564), - [aux_sym_compound_stmt_repeat1] = STATE(77), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(95), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(988), - [anon_sym_const] = ACTIONS(103), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1170), + [sym_const_declaration] = STATE(642), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(652), + [sym_expr_stmt] = STATE(652), + [sym_var_decl] = STATE(1985), + [sym_var_stmt] = STATE(652), + [sym_return_stmt] = STATE(652), + [sym_continue_stmt] = STATE(652), + [sym_break_stmt] = STATE(652), + [sym_defer_stmt] = STATE(652), + [sym_assert_stmt] = STATE(652), + [sym_declaration_stmt] = STATE(652), + [sym_nextcase_stmt] = STATE(652), + [sym_switch_stmt] = STATE(652), + [sym_if_stmt] = STATE(652), + [sym_for_stmt] = STATE(652), + [sym_foreach_stmt] = STATE(652), + [sym_while_stmt] = STATE(652), + [sym_do_stmt] = STATE(652), + [sym_asm_block_stmt] = STATE(652), + [sym_ct_assert_stmt] = STATE(652), + [sym_ct_echo_stmt] = STATE(652), + [sym_ct_if_stmt] = STATE(652), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(652), + [sym_ct_for_stmt] = STATE(652), + [sym_ct_foreach_stmt] = STATE(652), + [sym__expr] = STATE(1100), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1357), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(981), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(561), + [anon_sym_const] = ACTIONS(563), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(565), + [anon_sym_continue] = ACTIONS(567), + [anon_sym_break] = ACTIONS(569), + [anon_sym_defer] = ACTIONS(571), + [anon_sym_try] = ACTIONS(983), + [anon_sym_catch] = ACTIONS(983), + [anon_sym_assert] = ACTIONS(573), + [anon_sym_nextcase] = ACTIONS(575), + [anon_sym_switch] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(579), + [anon_sym_for] = ACTIONS(581), + [anon_sym_foreach] = ACTIONS(583), + [anon_sym_foreach_r] = ACTIONS(583), + [anon_sym_while] = ACTIONS(585), + [anon_sym_do] = ACTIONS(587), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(589), + [anon_sym_DOLLARassert] = ACTIONS(591), + [anon_sym_DOLLARerror] = ACTIONS(593), + [anon_sym_DOLLARecho] = ACTIONS(595), + [anon_sym_DOLLARif] = ACTIONS(597), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(599), + [anon_sym_DOLLARforeach] = ACTIONS(601), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [77] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(77), [sym_doc_comment] = STATE(77), [sym_block_comment] = STATE(77), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1158), - [sym_const_declaration] = STATE(445), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(438), - [sym_expr_stmt] = STATE(438), - [sym_var_decl] = STATE(2324), - [sym_var_stmt] = STATE(438), - [sym_return_stmt] = STATE(438), - [sym_continue_stmt] = STATE(438), - [sym_break_stmt] = STATE(438), - [sym_defer_stmt] = STATE(438), - [sym_assert_stmt] = STATE(438), - [sym_declaration_stmt] = STATE(438), - [sym_nextcase_stmt] = STATE(438), - [sym_switch_stmt] = STATE(438), - [sym_if_stmt] = STATE(438), - [sym_for_stmt] = STATE(438), - [sym_foreach_stmt] = STATE(438), - [sym_while_stmt] = STATE(438), - [sym_do_stmt] = STATE(438), - [sym_asm_block_stmt] = STATE(438), - [sym_ct_assert_stmt] = STATE(438), - [sym_ct_echo_stmt] = STATE(438), - [sym_ct_if_stmt] = STATE(438), - [sym__ct_switch] = STATE(1606), - [sym_ct_switch_stmt] = STATE(438), - [sym_ct_for_stmt] = STATE(438), - [sym_ct_foreach_stmt] = STATE(438), - [sym__expr] = STATE(1265), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1564), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1162), + [sym_const_declaration] = STATE(364), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(396), + [sym_expr_stmt] = STATE(396), + [sym_var_decl] = STATE(2193), + [sym_var_stmt] = STATE(396), + [sym_return_stmt] = STATE(396), + [sym_continue_stmt] = STATE(396), + [sym_break_stmt] = STATE(396), + [sym_defer_stmt] = STATE(396), + [sym_assert_stmt] = STATE(396), + [sym_declaration_stmt] = STATE(396), + [sym_nextcase_stmt] = STATE(396), + [sym_switch_stmt] = STATE(396), + [sym_if_stmt] = STATE(396), + [sym_for_stmt] = STATE(396), + [sym_foreach_stmt] = STATE(396), + [sym_while_stmt] = STATE(396), + [sym_do_stmt] = STATE(396), + [sym_asm_block_stmt] = STATE(396), + [sym_ct_assert_stmt] = STATE(396), + [sym_ct_echo_stmt] = STATE(396), + [sym_ct_if_stmt] = STATE(396), + [sym__ct_switch] = STATE(1544), + [sym_ct_switch_stmt] = STATE(396), + [sym_ct_for_stmt] = STATE(396), + [sym_ct_foreach_stmt] = STATE(396), + [sym__expr] = STATE(1093), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1351), [aux_sym_compound_stmt_repeat1] = STATE(16), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(95), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(990), - [anon_sym_const] = ACTIONS(103), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(93), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_const] = ACTIONS(101), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_PIPE_RBRACE] = ACTIONS(985), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [78] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(78), [sym_doc_comment] = STATE(78), [sym_block_comment] = STATE(78), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1158), - [sym_const_declaration] = STATE(445), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(387), - [sym_expr_stmt] = STATE(393), - [sym_var_decl] = STATE(2324), - [sym_var_stmt] = STATE(393), - [sym_return_stmt] = STATE(393), - [sym_continue_stmt] = STATE(393), - [sym_break_stmt] = STATE(393), - [sym_defer_stmt] = STATE(393), - [sym_assert_stmt] = STATE(393), - [sym_declaration_stmt] = STATE(393), - [sym_nextcase_stmt] = STATE(393), - [sym_switch_body] = STATE(387), - [sym_switch_stmt] = STATE(393), - [sym__if_body] = STATE(396), - [sym_if_stmt] = STATE(393), - [sym_for_stmt] = STATE(393), - [sym_foreach_stmt] = STATE(393), - [sym_while_stmt] = STATE(393), - [sym_do_stmt] = STATE(393), - [sym_asm_block_stmt] = STATE(393), - [sym_ct_assert_stmt] = STATE(393), - [sym_ct_echo_stmt] = STATE(393), - [sym_ct_if_stmt] = STATE(393), - [sym__ct_switch] = STATE(1606), - [sym_ct_switch_stmt] = STATE(393), - [sym_ct_for_stmt] = STATE(393), - [sym_ct_foreach_stmt] = STATE(393), - [sym__expr] = STATE(1265), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1564), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(820), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(822), - [anon_sym_const] = ACTIONS(103), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1162), + [sym_const_declaration] = STATE(364), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(332), + [sym_expr_stmt] = STATE(400), + [sym_var_decl] = STATE(2193), + [sym_var_stmt] = STATE(400), + [sym_return_stmt] = STATE(400), + [sym_continue_stmt] = STATE(400), + [sym_break_stmt] = STATE(400), + [sym_defer_stmt] = STATE(400), + [sym_assert_stmt] = STATE(400), + [sym_declaration_stmt] = STATE(400), + [sym_nextcase_stmt] = STATE(400), + [sym_switch_body] = STATE(332), + [sym_switch_stmt] = STATE(400), + [sym__if_body] = STATE(338), + [sym_if_stmt] = STATE(400), + [sym_for_stmt] = STATE(400), + [sym_foreach_stmt] = STATE(400), + [sym_while_stmt] = STATE(400), + [sym_do_stmt] = STATE(400), + [sym_asm_block_stmt] = STATE(400), + [sym_ct_assert_stmt] = STATE(400), + [sym_ct_echo_stmt] = STATE(400), + [sym_ct_if_stmt] = STATE(400), + [sym__ct_switch] = STATE(1544), + [sym_ct_switch_stmt] = STATE(400), + [sym_ct_for_stmt] = STATE(400), + [sym_ct_foreach_stmt] = STATE(400), + [sym__expr] = STATE(1093), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1351), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(883), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_const] = ACTIONS(101), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [79] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(79), [sym_doc_comment] = STATE(79), [sym_block_comment] = STATE(79), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1158), - [sym_const_declaration] = STATE(445), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(460), - [sym_expr_stmt] = STATE(460), - [sym_var_decl] = STATE(2324), - [sym_var_stmt] = STATE(460), - [sym_return_stmt] = STATE(460), - [sym_continue_stmt] = STATE(460), - [sym_break_stmt] = STATE(460), - [sym_defer_stmt] = STATE(460), - [sym_assert_stmt] = STATE(460), - [sym_declaration_stmt] = STATE(460), - [sym_nextcase_stmt] = STATE(460), - [sym_switch_stmt] = STATE(460), - [sym_if_stmt] = STATE(460), - [sym_for_stmt] = STATE(460), - [sym_foreach_stmt] = STATE(460), - [sym_while_stmt] = STATE(460), - [sym_do_stmt] = STATE(460), - [sym_asm_block_stmt] = STATE(460), - [sym_ct_assert_stmt] = STATE(460), - [sym_ct_echo_stmt] = STATE(460), - [sym_ct_if_stmt] = STATE(460), - [sym__ct_switch] = STATE(1606), - [sym_ct_switch_stmt] = STATE(460), - [sym_ct_for_stmt] = STATE(460), - [sym_ct_foreach_stmt] = STATE(460), - [sym__expr] = STATE(1265), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1564), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(992), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_const] = ACTIONS(103), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_try] = ACTIONS(994), - [anon_sym_catch] = ACTIONS(994), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1169), + [sym_const_declaration] = STATE(593), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(594), + [sym_expr_stmt] = STATE(594), + [sym_var_decl] = STATE(2089), + [sym_var_stmt] = STATE(594), + [sym_return_stmt] = STATE(594), + [sym_continue_stmt] = STATE(594), + [sym_break_stmt] = STATE(594), + [sym_defer_stmt] = STATE(594), + [sym_assert_stmt] = STATE(594), + [sym_declaration_stmt] = STATE(594), + [sym_nextcase_stmt] = STATE(594), + [sym_switch_stmt] = STATE(594), + [sym_if_stmt] = STATE(594), + [sym_for_stmt] = STATE(594), + [sym_foreach_stmt] = STATE(594), + [sym_while_stmt] = STATE(594), + [sym_do_stmt] = STATE(594), + [sym_asm_block_stmt] = STATE(594), + [sym_ct_assert_stmt] = STATE(594), + [sym_ct_echo_stmt] = STATE(594), + [sym_ct_if_stmt] = STATE(594), + [sym__ct_switch] = STATE(1521), + [sym_ct_switch_stmt] = STATE(594), + [sym_ct_for_stmt] = STATE(594), + [sym_ct_foreach_stmt] = STATE(594), + [sym__expr] = STATE(1087), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1353), + [aux_sym_compound_stmt_repeat1] = STATE(96), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(651), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(653), + [anon_sym_const] = ACTIONS(655), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(657), + [anon_sym_continue] = ACTIONS(659), + [anon_sym_break] = ACTIONS(661), + [anon_sym_defer] = ACTIONS(663), + [anon_sym_assert] = ACTIONS(665), + [anon_sym_nextcase] = ACTIONS(667), + [anon_sym_switch] = ACTIONS(669), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(671), + [anon_sym_for] = ACTIONS(673), + [anon_sym_foreach] = ACTIONS(675), + [anon_sym_foreach_r] = ACTIONS(675), + [anon_sym_while] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(681), + [anon_sym_DOLLARassert] = ACTIONS(683), + [anon_sym_DOLLARerror] = ACTIONS(685), + [anon_sym_DOLLARecho] = ACTIONS(687), + [anon_sym_DOLLARif] = ACTIONS(689), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(691), + [anon_sym_DOLLARendfor] = ACTIONS(467), + [anon_sym_DOLLARforeach] = ACTIONS(695), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [80] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(80), [sym_doc_comment] = STATE(80), [sym_block_comment] = STATE(80), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1163), - [sym_const_declaration] = STATE(852), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(851), - [sym_expr_stmt] = STATE(851), - [sym_var_decl] = STATE(2193), - [sym_var_stmt] = STATE(851), - [sym_return_stmt] = STATE(851), - [sym_continue_stmt] = STATE(851), - [sym_break_stmt] = STATE(851), - [sym_defer_stmt] = STATE(851), - [sym_assert_stmt] = STATE(851), - [sym_declaration_stmt] = STATE(851), - [sym_nextcase_stmt] = STATE(851), - [sym_switch_stmt] = STATE(851), - [sym_if_stmt] = STATE(851), - [sym_for_stmt] = STATE(851), - [sym_foreach_stmt] = STATE(851), - [sym_while_stmt] = STATE(851), - [sym_do_stmt] = STATE(851), - [sym_asm_block_stmt] = STATE(851), - [sym_ct_assert_stmt] = STATE(851), - [sym_ct_echo_stmt] = STATE(851), - [sym_ct_if_stmt] = STATE(851), - [sym__ct_switch] = STATE(1557), - [sym_ct_switch_stmt] = STATE(851), - [sym_ct_for_stmt] = STATE(851), - [sym_ct_foreach_stmt] = STATE(851), - [sym__expr] = STATE(1269), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1558), - [aux_sym_compound_stmt_repeat1] = STATE(80), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(247), - [sym_integer_literal] = ACTIONS(250), - [anon_sym_SQUOTE] = ACTIONS(253), - [anon_sym_DQUOTE] = ACTIONS(256), - [anon_sym_BQUOTE] = ACTIONS(259), - [sym_bytes_literal] = ACTIONS(262), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(265), - [sym_at_ident] = ACTIONS(268), - [sym_hash_ident] = ACTIONS(271), - [sym_type_ident] = ACTIONS(274), - [sym_ct_type_ident] = ACTIONS(277), - [sym_const_ident] = ACTIONS(280), - [sym_builtin] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(283), - [anon_sym_AMP] = ACTIONS(286), - [anon_sym_static] = ACTIONS(289), - [anon_sym_tlocal] = ACTIONS(289), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_fn] = ACTIONS(295), - [anon_sym_LBRACE] = ACTIONS(999), - [anon_sym_const] = ACTIONS(1002), - [anon_sym_var] = ACTIONS(306), - [anon_sym_return] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1008), - [anon_sym_break] = ACTIONS(1011), - [anon_sym_defer] = ACTIONS(1014), - [anon_sym_assert] = ACTIONS(1017), - [anon_sym_nextcase] = ACTIONS(1020), - [anon_sym_switch] = ACTIONS(1023), - [anon_sym_AMP_AMP] = ACTIONS(332), - [anon_sym_if] = ACTIONS(1026), - [anon_sym_for] = ACTIONS(1029), - [anon_sym_foreach] = ACTIONS(1032), - [anon_sym_foreach_r] = ACTIONS(1032), - [anon_sym_while] = ACTIONS(1035), - [anon_sym_do] = ACTIONS(1038), - [anon_sym_int] = ACTIONS(350), - [anon_sym_PLUS] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(286), - [anon_sym_STAR] = ACTIONS(332), - [anon_sym_asm] = ACTIONS(1041), - [anon_sym_DOLLARassert] = ACTIONS(1044), - [anon_sym_DOLLARerror] = ACTIONS(1047), - [anon_sym_DOLLARecho] = ACTIONS(1050), - [anon_sym_DOLLARif] = ACTIONS(1053), - [anon_sym_DOLLARswitch] = ACTIONS(368), - [anon_sym_DOLLARfor] = ACTIONS(1056), - [anon_sym_DOLLARendfor] = ACTIONS(324), - [anon_sym_DOLLARforeach] = ACTIONS(1059), - [anon_sym_DOLLARalignof] = ACTIONS(377), - [anon_sym_DOLLARextnameof] = ACTIONS(377), - [anon_sym_DOLLARnameof] = ACTIONS(377), - [anon_sym_DOLLARoffsetof] = ACTIONS(377), - [anon_sym_DOLLARqnameof] = ACTIONS(377), - [anon_sym_DOLLARvaconst] = ACTIONS(380), - [anon_sym_DOLLARvaarg] = ACTIONS(380), - [anon_sym_DOLLARvaref] = ACTIONS(380), - [anon_sym_DOLLARvaexpr] = ACTIONS(380), - [anon_sym_true] = ACTIONS(383), - [anon_sym_false] = ACTIONS(383), - [anon_sym_null] = ACTIONS(383), - [anon_sym_DOLLARvacount] = ACTIONS(383), - [anon_sym_DOLLARappend] = ACTIONS(380), - [anon_sym_DOLLARconcat] = ACTIONS(380), - [anon_sym_DOLLAReval] = ACTIONS(380), - [anon_sym_DOLLARis_const] = ACTIONS(380), - [anon_sym_DOLLARsizeof] = ACTIONS(380), - [anon_sym_DOLLARstringify] = ACTIONS(380), - [anon_sym_DOLLARand] = ACTIONS(386), - [anon_sym_DOLLARdefined] = ACTIONS(386), - [anon_sym_DOLLARembed] = ACTIONS(386), - [anon_sym_DOLLARor] = ACTIONS(386), - [anon_sym_DOLLARfeature] = ACTIONS(389), - [anon_sym_DOLLARassignable] = ACTIONS(392), - [anon_sym_BANG] = ACTIONS(332), - [anon_sym_TILDE] = ACTIONS(332), - [anon_sym_PLUS_PLUS] = ACTIONS(332), - [anon_sym_DASH_DASH] = ACTIONS(332), - [anon_sym_typeid] = ACTIONS(350), - [anon_sym_LBRACE_PIPE] = ACTIONS(395), - [anon_sym_void] = ACTIONS(350), - [anon_sym_bool] = ACTIONS(350), - [anon_sym_char] = ACTIONS(350), - [anon_sym_ichar] = ACTIONS(350), - [anon_sym_short] = ACTIONS(350), - [anon_sym_ushort] = ACTIONS(350), - [anon_sym_uint] = ACTIONS(350), - [anon_sym_long] = ACTIONS(350), - [anon_sym_ulong] = ACTIONS(350), - [anon_sym_int128] = ACTIONS(350), - [anon_sym_uint128] = ACTIONS(350), - [anon_sym_float] = ACTIONS(350), - [anon_sym_double] = ACTIONS(350), - [anon_sym_float16] = ACTIONS(350), - [anon_sym_bfloat16] = ACTIONS(350), - [anon_sym_float128] = ACTIONS(350), - [anon_sym_iptr] = ACTIONS(350), - [anon_sym_uptr] = ACTIONS(350), - [anon_sym_isz] = ACTIONS(350), - [anon_sym_usz] = ACTIONS(350), - [anon_sym_anyfault] = ACTIONS(350), - [anon_sym_any] = ACTIONS(350), - [anon_sym_DOLLARtypeof] = ACTIONS(398), - [anon_sym_DOLLARtypefrom] = ACTIONS(401), - [anon_sym_DOLLARvatype] = ACTIONS(401), - [anon_sym_DOLLARevaltype] = ACTIONS(401), - [sym_real_literal] = ACTIONS(250), - }, - [81] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(81), - [sym_doc_comment] = STATE(81), - [sym_block_comment] = STATE(81), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1163), - [sym_const_declaration] = STATE(852), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(521), - [sym_expr_stmt] = STATE(816), - [sym_var_decl] = STATE(2193), - [sym_var_stmt] = STATE(816), - [sym_return_stmt] = STATE(816), - [sym_continue_stmt] = STATE(816), - [sym_break_stmt] = STATE(816), - [sym_defer_stmt] = STATE(816), - [sym_assert_stmt] = STATE(816), - [sym_declaration_stmt] = STATE(816), - [sym_nextcase_stmt] = STATE(816), - [sym_switch_body] = STATE(521), - [sym_switch_stmt] = STATE(816), - [sym__if_body] = STATE(770), - [sym_if_stmt] = STATE(816), - [sym_for_stmt] = STATE(816), - [sym_foreach_stmt] = STATE(816), - [sym_while_stmt] = STATE(816), - [sym_do_stmt] = STATE(816), - [sym_asm_block_stmt] = STATE(816), - [sym_ct_assert_stmt] = STATE(816), - [sym_ct_echo_stmt] = STATE(816), - [sym_ct_if_stmt] = STATE(816), - [sym__ct_switch] = STATE(1557), - [sym_ct_switch_stmt] = STATE(816), - [sym_ct_for_stmt] = STATE(816), - [sym_ct_foreach_stmt] = STATE(816), - [sym__expr] = STATE(1269), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1558), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(898), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(900), - [anon_sym_const] = ACTIONS(662), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(664), - [anon_sym_continue] = ACTIONS(666), - [anon_sym_break] = ACTIONS(668), - [anon_sym_defer] = ACTIONS(670), - [anon_sym_assert] = ACTIONS(672), - [anon_sym_nextcase] = ACTIONS(674), - [anon_sym_switch] = ACTIONS(676), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_foreach] = ACTIONS(682), - [anon_sym_foreach_r] = ACTIONS(682), - [anon_sym_while] = ACTIONS(684), - [anon_sym_do] = ACTIONS(686), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(688), - [anon_sym_DOLLARassert] = ACTIONS(690), - [anon_sym_DOLLARerror] = ACTIONS(692), - [anon_sym_DOLLARecho] = ACTIONS(694), - [anon_sym_DOLLARif] = ACTIONS(696), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(698), - [anon_sym_DOLLARforeach] = ACTIONS(702), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), - }, - [82] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(82), - [sym_doc_comment] = STATE(82), - [sym_block_comment] = STATE(82), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1158), - [sym_const_declaration] = STATE(445), - [sym_lambda_declaration] = STATE(1679), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1175), + [sym_const_declaration] = STATE(446), + [sym_lambda_declaration] = STATE(1480), [sym_compound_stmt] = STATE(438), [sym_expr_stmt] = STATE(438), - [sym_var_decl] = STATE(2324), + [sym_var_decl] = STATE(1961), [sym_var_stmt] = STATE(438), [sym_return_stmt] = STATE(438), [sym_continue_stmt] = STATE(438), @@ -28507,4595 +27450,4320 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_assert_stmt] = STATE(438), [sym_ct_echo_stmt] = STATE(438), [sym_ct_if_stmt] = STATE(438), - [sym__ct_switch] = STATE(1606), + [sym__ct_switch] = STATE(1566), [sym_ct_switch_stmt] = STATE(438), [sym_ct_for_stmt] = STATE(438), [sym_ct_foreach_stmt] = STATE(438), - [sym__expr] = STATE(1265), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1564), - [aux_sym_compound_stmt_repeat1] = STATE(16), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(95), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(1062), - [anon_sym_const] = ACTIONS(103), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym__expr] = STATE(1092), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1346), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(987), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(197), + [anon_sym_const] = ACTIONS(199), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(201), + [anon_sym_continue] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_defer] = ACTIONS(207), + [anon_sym_try] = ACTIONS(989), + [anon_sym_catch] = ACTIONS(989), + [anon_sym_assert] = ACTIONS(209), + [anon_sym_nextcase] = ACTIONS(211), + [anon_sym_switch] = ACTIONS(213), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(215), + [anon_sym_for] = ACTIONS(217), + [anon_sym_foreach] = ACTIONS(219), + [anon_sym_foreach_r] = ACTIONS(219), + [anon_sym_while] = ACTIONS(221), + [anon_sym_do] = ACTIONS(223), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(225), + [anon_sym_DOLLARassert] = ACTIONS(227), + [anon_sym_DOLLARerror] = ACTIONS(229), + [anon_sym_DOLLARecho] = ACTIONS(231), + [anon_sym_DOLLARif] = ACTIONS(233), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(237), + [anon_sym_DOLLARforeach] = ACTIONS(239), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), + }, + [81] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(81), + [sym_doc_comment] = STATE(81), + [sym_block_comment] = STATE(81), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1169), + [sym_const_declaration] = STATE(593), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(441), + [sym_expr_stmt] = STATE(590), + [sym_var_decl] = STATE(2089), + [sym_var_stmt] = STATE(590), + [sym_return_stmt] = STATE(590), + [sym_continue_stmt] = STATE(590), + [sym_break_stmt] = STATE(590), + [sym_defer_stmt] = STATE(590), + [sym_assert_stmt] = STATE(590), + [sym_declaration_stmt] = STATE(590), + [sym_nextcase_stmt] = STATE(590), + [sym_switch_body] = STATE(441), + [sym_switch_stmt] = STATE(590), + [sym__if_body] = STATE(588), + [sym_if_stmt] = STATE(590), + [sym_for_stmt] = STATE(590), + [sym_foreach_stmt] = STATE(590), + [sym_while_stmt] = STATE(590), + [sym_do_stmt] = STATE(590), + [sym_asm_block_stmt] = STATE(590), + [sym_ct_assert_stmt] = STATE(590), + [sym_ct_echo_stmt] = STATE(590), + [sym_ct_if_stmt] = STATE(590), + [sym__ct_switch] = STATE(1521), + [sym_ct_switch_stmt] = STATE(590), + [sym_ct_for_stmt] = STATE(590), + [sym_ct_foreach_stmt] = STATE(590), + [sym__expr] = STATE(1087), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1353), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(991), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(993), + [anon_sym_const] = ACTIONS(655), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(657), + [anon_sym_continue] = ACTIONS(659), + [anon_sym_break] = ACTIONS(661), + [anon_sym_defer] = ACTIONS(663), + [anon_sym_assert] = ACTIONS(665), + [anon_sym_nextcase] = ACTIONS(667), + [anon_sym_switch] = ACTIONS(669), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(671), + [anon_sym_for] = ACTIONS(673), + [anon_sym_foreach] = ACTIONS(675), + [anon_sym_foreach_r] = ACTIONS(675), + [anon_sym_while] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(681), + [anon_sym_DOLLARassert] = ACTIONS(683), + [anon_sym_DOLLARerror] = ACTIONS(685), + [anon_sym_DOLLARecho] = ACTIONS(687), + [anon_sym_DOLLARif] = ACTIONS(689), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(691), + [anon_sym_DOLLARforeach] = ACTIONS(695), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), + }, + [82] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(82), + [sym_doc_comment] = STATE(82), + [sym_block_comment] = STATE(82), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1170), + [sym_const_declaration] = STATE(642), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(456), + [sym_expr_stmt] = STATE(651), + [sym_var_decl] = STATE(1985), + [sym_var_stmt] = STATE(651), + [sym_return_stmt] = STATE(651), + [sym_continue_stmt] = STATE(651), + [sym_break_stmt] = STATE(651), + [sym_defer_stmt] = STATE(651), + [sym_assert_stmt] = STATE(651), + [sym_declaration_stmt] = STATE(651), + [sym_nextcase_stmt] = STATE(651), + [sym_switch_body] = STATE(456), + [sym_switch_stmt] = STATE(651), + [sym__if_body] = STATE(689), + [sym_if_stmt] = STATE(651), + [sym_for_stmt] = STATE(651), + [sym_foreach_stmt] = STATE(651), + [sym_while_stmt] = STATE(651), + [sym_do_stmt] = STATE(651), + [sym_asm_block_stmt] = STATE(651), + [sym_ct_assert_stmt] = STATE(651), + [sym_ct_echo_stmt] = STATE(651), + [sym_ct_if_stmt] = STATE(651), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(651), + [sym_ct_for_stmt] = STATE(651), + [sym_ct_foreach_stmt] = STATE(651), + [sym__expr] = STATE(1100), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1357), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(891), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(893), + [anon_sym_const] = ACTIONS(563), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(565), + [anon_sym_continue] = ACTIONS(567), + [anon_sym_break] = ACTIONS(569), + [anon_sym_defer] = ACTIONS(571), + [anon_sym_assert] = ACTIONS(573), + [anon_sym_nextcase] = ACTIONS(575), + [anon_sym_switch] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(579), + [anon_sym_for] = ACTIONS(581), + [anon_sym_foreach] = ACTIONS(583), + [anon_sym_foreach_r] = ACTIONS(583), + [anon_sym_while] = ACTIONS(585), + [anon_sym_do] = ACTIONS(587), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(589), + [anon_sym_DOLLARassert] = ACTIONS(591), + [anon_sym_DOLLARerror] = ACTIONS(593), + [anon_sym_DOLLARecho] = ACTIONS(595), + [anon_sym_DOLLARif] = ACTIONS(597), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(599), + [anon_sym_DOLLARforeach] = ACTIONS(601), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [83] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(83), [sym_doc_comment] = STATE(83), [sym_block_comment] = STATE(83), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1158), - [sym_const_declaration] = STATE(445), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(438), - [sym_expr_stmt] = STATE(438), - [sym_var_decl] = STATE(2324), - [sym_var_stmt] = STATE(438), - [sym_return_stmt] = STATE(438), - [sym_continue_stmt] = STATE(438), - [sym_break_stmt] = STATE(438), - [sym_defer_stmt] = STATE(438), - [sym_assert_stmt] = STATE(438), - [sym_declaration_stmt] = STATE(438), - [sym_nextcase_stmt] = STATE(438), - [sym_switch_stmt] = STATE(438), - [sym_if_stmt] = STATE(438), - [sym_for_stmt] = STATE(438), - [sym_foreach_stmt] = STATE(438), - [sym_while_stmt] = STATE(438), - [sym_do_stmt] = STATE(438), - [sym_asm_block_stmt] = STATE(438), - [sym_ct_assert_stmt] = STATE(438), - [sym_ct_echo_stmt] = STATE(438), - [sym_ct_if_stmt] = STATE(438), - [sym__ct_switch] = STATE(1606), - [sym_ct_switch_stmt] = STATE(438), - [sym_ct_for_stmt] = STATE(438), - [sym_ct_foreach_stmt] = STATE(438), - [sym__expr] = STATE(1265), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1564), - [aux_sym_compound_stmt_repeat1] = STATE(16), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(95), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(1064), - [anon_sym_const] = ACTIONS(103), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1162), + [sym_const_declaration] = STATE(364), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(396), + [sym_expr_stmt] = STATE(396), + [sym_var_decl] = STATE(2193), + [sym_var_stmt] = STATE(396), + [sym_return_stmt] = STATE(396), + [sym_continue_stmt] = STATE(396), + [sym_break_stmt] = STATE(396), + [sym_defer_stmt] = STATE(396), + [sym_assert_stmt] = STATE(396), + [sym_declaration_stmt] = STATE(396), + [sym_nextcase_stmt] = STATE(396), + [sym_switch_stmt] = STATE(396), + [sym_if_stmt] = STATE(396), + [sym_for_stmt] = STATE(396), + [sym_foreach_stmt] = STATE(396), + [sym_while_stmt] = STATE(396), + [sym_do_stmt] = STATE(396), + [sym_asm_block_stmt] = STATE(396), + [sym_ct_assert_stmt] = STATE(396), + [sym_ct_echo_stmt] = STATE(396), + [sym_ct_if_stmt] = STATE(396), + [sym__ct_switch] = STATE(1544), + [sym_ct_switch_stmt] = STATE(396), + [sym_ct_for_stmt] = STATE(396), + [sym_ct_foreach_stmt] = STATE(396), + [sym__expr] = STATE(1093), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1351), + [aux_sym_compound_stmt_repeat1] = STATE(74), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(93), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_RBRACE] = ACTIONS(995), + [anon_sym_const] = ACTIONS(101), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [84] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(84), [sym_doc_comment] = STATE(84), [sym_block_comment] = STATE(84), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1158), - [sym_const_declaration] = STATE(445), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(438), - [sym_expr_stmt] = STATE(438), - [sym_var_decl] = STATE(2324), - [sym_var_stmt] = STATE(438), - [sym_return_stmt] = STATE(438), - [sym_continue_stmt] = STATE(438), - [sym_break_stmt] = STATE(438), - [sym_defer_stmt] = STATE(438), - [sym_assert_stmt] = STATE(438), - [sym_declaration_stmt] = STATE(438), - [sym_nextcase_stmt] = STATE(438), - [sym_switch_stmt] = STATE(438), - [sym_if_stmt] = STATE(438), - [sym_for_stmt] = STATE(438), - [sym_foreach_stmt] = STATE(438), - [sym_while_stmt] = STATE(438), - [sym_do_stmt] = STATE(438), - [sym_asm_block_stmt] = STATE(438), - [sym_ct_assert_stmt] = STATE(438), - [sym_ct_echo_stmt] = STATE(438), - [sym_ct_if_stmt] = STATE(438), - [sym__ct_switch] = STATE(1606), - [sym_ct_switch_stmt] = STATE(438), - [sym_ct_for_stmt] = STATE(438), - [sym_ct_foreach_stmt] = STATE(438), - [sym__expr] = STATE(1265), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1564), - [aux_sym_compound_stmt_repeat1] = STATE(83), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(95), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(1066), - [anon_sym_const] = ACTIONS(103), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1162), + [sym_const_declaration] = STATE(364), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(396), + [sym_expr_stmt] = STATE(396), + [sym_var_decl] = STATE(2193), + [sym_var_stmt] = STATE(396), + [sym_return_stmt] = STATE(396), + [sym_continue_stmt] = STATE(396), + [sym_break_stmt] = STATE(396), + [sym_defer_stmt] = STATE(396), + [sym_assert_stmt] = STATE(396), + [sym_declaration_stmt] = STATE(396), + [sym_nextcase_stmt] = STATE(396), + [sym_switch_stmt] = STATE(396), + [sym_if_stmt] = STATE(396), + [sym_for_stmt] = STATE(396), + [sym_foreach_stmt] = STATE(396), + [sym_while_stmt] = STATE(396), + [sym_do_stmt] = STATE(396), + [sym_asm_block_stmt] = STATE(396), + [sym_ct_assert_stmt] = STATE(396), + [sym_ct_echo_stmt] = STATE(396), + [sym_ct_if_stmt] = STATE(396), + [sym__ct_switch] = STATE(1544), + [sym_ct_switch_stmt] = STATE(396), + [sym_ct_for_stmt] = STATE(396), + [sym_ct_foreach_stmt] = STATE(396), + [sym__expr] = STATE(1093), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1351), + [aux_sym_compound_stmt_repeat1] = STATE(16), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(93), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_RBRACE] = ACTIONS(997), + [anon_sym_const] = ACTIONS(101), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [85] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(85), [sym_doc_comment] = STATE(85), [sym_block_comment] = STATE(85), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1183), - [sym_const_declaration] = STATE(716), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(517), - [sym_expr_stmt] = STATE(849), - [sym_var_decl] = STATE(2182), - [sym_var_stmt] = STATE(849), - [sym_return_stmt] = STATE(849), - [sym_continue_stmt] = STATE(849), - [sym_break_stmt] = STATE(849), - [sym_defer_stmt] = STATE(849), - [sym_assert_stmt] = STATE(849), - [sym_declaration_stmt] = STATE(849), - [sym_nextcase_stmt] = STATE(849), - [sym_switch_body] = STATE(517), - [sym_switch_stmt] = STATE(849), - [sym__if_body] = STATE(853), - [sym_if_stmt] = STATE(849), - [sym_for_stmt] = STATE(849), - [sym_foreach_stmt] = STATE(849), - [sym_while_stmt] = STATE(849), - [sym_do_stmt] = STATE(849), - [sym_asm_block_stmt] = STATE(849), - [sym_ct_assert_stmt] = STATE(849), - [sym_ct_echo_stmt] = STATE(849), - [sym_ct_if_stmt] = STATE(849), - [sym__ct_switch] = STATE(1621), - [sym_ct_switch_stmt] = STATE(849), - [sym_ct_for_stmt] = STATE(849), - [sym_ct_foreach_stmt] = STATE(849), - [sym__expr] = STATE(1299), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1624), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(972), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(974), - [anon_sym_const] = ACTIONS(570), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(572), - [anon_sym_continue] = ACTIONS(574), - [anon_sym_break] = ACTIONS(576), - [anon_sym_defer] = ACTIONS(578), - [anon_sym_assert] = ACTIONS(580), - [anon_sym_nextcase] = ACTIONS(582), - [anon_sym_switch] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(586), - [anon_sym_for] = ACTIONS(588), - [anon_sym_foreach] = ACTIONS(590), - [anon_sym_foreach_r] = ACTIONS(590), - [anon_sym_while] = ACTIONS(592), - [anon_sym_do] = ACTIONS(594), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(596), - [anon_sym_DOLLARassert] = ACTIONS(598), - [anon_sym_DOLLARerror] = ACTIONS(600), - [anon_sym_DOLLARecho] = ACTIONS(602), - [anon_sym_DOLLARif] = ACTIONS(604), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(608), - [anon_sym_DOLLARforeach] = ACTIONS(610), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1162), + [sym_const_declaration] = STATE(364), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(396), + [sym_expr_stmt] = STATE(396), + [sym_var_decl] = STATE(2193), + [sym_var_stmt] = STATE(396), + [sym_return_stmt] = STATE(396), + [sym_continue_stmt] = STATE(396), + [sym_break_stmt] = STATE(396), + [sym_defer_stmt] = STATE(396), + [sym_assert_stmt] = STATE(396), + [sym_declaration_stmt] = STATE(396), + [sym_nextcase_stmt] = STATE(396), + [sym_switch_stmt] = STATE(396), + [sym_if_stmt] = STATE(396), + [sym_for_stmt] = STATE(396), + [sym_foreach_stmt] = STATE(396), + [sym_while_stmt] = STATE(396), + [sym_do_stmt] = STATE(396), + [sym_asm_block_stmt] = STATE(396), + [sym_ct_assert_stmt] = STATE(396), + [sym_ct_echo_stmt] = STATE(396), + [sym_ct_if_stmt] = STATE(396), + [sym__ct_switch] = STATE(1544), + [sym_ct_switch_stmt] = STATE(396), + [sym_ct_for_stmt] = STATE(396), + [sym_ct_foreach_stmt] = STATE(396), + [sym__expr] = STATE(1093), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1351), + [aux_sym_compound_stmt_repeat1] = STATE(84), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(93), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_RBRACE] = ACTIONS(999), + [anon_sym_const] = ACTIONS(101), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [86] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(86), [sym_doc_comment] = STATE(86), [sym_block_comment] = STATE(86), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1175), - [sym_const_declaration] = STATE(727), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(730), - [sym_expr_stmt] = STATE(730), - [sym_var_decl] = STATE(2279), - [sym_var_stmt] = STATE(730), - [sym_return_stmt] = STATE(730), - [sym_continue_stmt] = STATE(730), - [sym_break_stmt] = STATE(730), - [sym_defer_stmt] = STATE(730), - [sym_assert_stmt] = STATE(730), - [sym_declaration_stmt] = STATE(730), - [sym_nextcase_stmt] = STATE(730), - [sym_switch_stmt] = STATE(730), - [sym_if_stmt] = STATE(730), - [sym_for_stmt] = STATE(730), - [sym_foreach_stmt] = STATE(730), - [sym_while_stmt] = STATE(730), - [sym_do_stmt] = STATE(730), - [sym_asm_block_stmt] = STATE(730), - [sym_ct_assert_stmt] = STATE(730), - [sym_ct_echo_stmt] = STATE(730), - [sym_ct_if_stmt] = STATE(730), - [sym__ct_switch] = STATE(1593), - [sym_ct_switch_stmt] = STATE(730), - [sym_ct_for_stmt] = STATE(730), - [sym_ct_foreach_stmt] = STATE(730), - [sym__expr] = STATE(1275), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1596), - [aux_sym_compound_stmt_repeat1] = STATE(62), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(612), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(614), - [anon_sym_const] = ACTIONS(616), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_break] = ACTIONS(622), - [anon_sym_defer] = ACTIONS(624), - [anon_sym_assert] = ACTIONS(626), - [anon_sym_nextcase] = ACTIONS(628), - [anon_sym_switch] = ACTIONS(630), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(632), - [anon_sym_for] = ACTIONS(634), - [anon_sym_foreach] = ACTIONS(636), - [anon_sym_foreach_r] = ACTIONS(636), - [anon_sym_while] = ACTIONS(638), - [anon_sym_do] = ACTIONS(640), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(642), - [anon_sym_DOLLARassert] = ACTIONS(644), - [anon_sym_DOLLARerror] = ACTIONS(646), - [anon_sym_DOLLARecho] = ACTIONS(648), - [anon_sym_DOLLARif] = ACTIONS(650), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(652), - [anon_sym_DOLLARforeach] = ACTIONS(654), - [anon_sym_DOLLARendforeach] = ACTIONS(560), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1170), + [sym_const_declaration] = STATE(642), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(641), + [sym_expr_stmt] = STATE(641), + [sym_var_decl] = STATE(1985), + [sym_var_stmt] = STATE(641), + [sym_return_stmt] = STATE(641), + [sym_continue_stmt] = STATE(641), + [sym_break_stmt] = STATE(641), + [sym_defer_stmt] = STATE(641), + [sym_assert_stmt] = STATE(641), + [sym_declaration_stmt] = STATE(641), + [sym_nextcase_stmt] = STATE(641), + [sym_switch_stmt] = STATE(641), + [sym_if_stmt] = STATE(641), + [sym_for_stmt] = STATE(641), + [sym_foreach_stmt] = STATE(641), + [sym_while_stmt] = STATE(641), + [sym_do_stmt] = STATE(641), + [sym_asm_block_stmt] = STATE(641), + [sym_ct_assert_stmt] = STATE(641), + [sym_ct_echo_stmt] = STATE(641), + [sym_ct_if_stmt] = STATE(641), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(641), + [sym_ct_for_stmt] = STATE(641), + [sym_ct_foreach_stmt] = STATE(641), + [sym__expr] = STATE(1100), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1357), + [aux_sym_compound_stmt_repeat1] = STATE(68), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(559), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(561), + [anon_sym_const] = ACTIONS(563), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(565), + [anon_sym_continue] = ACTIONS(567), + [anon_sym_break] = ACTIONS(569), + [anon_sym_defer] = ACTIONS(571), + [anon_sym_assert] = ACTIONS(573), + [anon_sym_nextcase] = ACTIONS(575), + [anon_sym_switch] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(579), + [anon_sym_for] = ACTIONS(581), + [anon_sym_foreach] = ACTIONS(583), + [anon_sym_foreach_r] = ACTIONS(583), + [anon_sym_while] = ACTIONS(585), + [anon_sym_do] = ACTIONS(587), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(589), + [anon_sym_DOLLARassert] = ACTIONS(591), + [anon_sym_DOLLARerror] = ACTIONS(593), + [anon_sym_DOLLARecho] = ACTIONS(595), + [anon_sym_DOLLARif] = ACTIONS(597), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(599), + [anon_sym_DOLLARforeach] = ACTIONS(601), + [anon_sym_DOLLARendforeach] = ACTIONS(467), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [87] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(87), [sym_doc_comment] = STATE(87), [sym_block_comment] = STATE(87), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1170), - [sym_const_declaration] = STATE(593), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(403), - [sym_expr_stmt] = STATE(601), - [sym_var_decl] = STATE(2285), - [sym_var_stmt] = STATE(601), - [sym_return_stmt] = STATE(601), - [sym_continue_stmt] = STATE(601), - [sym_break_stmt] = STATE(601), - [sym_defer_stmt] = STATE(601), - [sym_assert_stmt] = STATE(601), - [sym_declaration_stmt] = STATE(601), - [sym_nextcase_stmt] = STATE(601), - [sym_switch_body] = STATE(403), - [sym_switch_stmt] = STATE(601), - [sym__if_body] = STATE(624), - [sym_if_stmt] = STATE(601), - [sym_for_stmt] = STATE(601), - [sym_foreach_stmt] = STATE(601), - [sym_while_stmt] = STATE(601), - [sym_do_stmt] = STATE(601), - [sym_asm_block_stmt] = STATE(601), - [sym_ct_assert_stmt] = STATE(601), - [sym_ct_echo_stmt] = STATE(601), - [sym_ct_if_stmt] = STATE(601), - [sym__ct_switch] = STATE(1604), - [sym_ct_switch_stmt] = STATE(601), - [sym_ct_for_stmt] = STATE(601), - [sym_ct_foreach_stmt] = STATE(601), - [sym__expr] = STATE(1288), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1595), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(980), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(982), - [anon_sym_const] = ACTIONS(476), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(478), - [anon_sym_continue] = ACTIONS(480), - [anon_sym_break] = ACTIONS(482), - [anon_sym_defer] = ACTIONS(484), - [anon_sym_assert] = ACTIONS(486), - [anon_sym_nextcase] = ACTIONS(488), - [anon_sym_switch] = ACTIONS(490), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(492), - [anon_sym_for] = ACTIONS(494), - [anon_sym_foreach] = ACTIONS(496), - [anon_sym_foreach_r] = ACTIONS(496), - [anon_sym_while] = ACTIONS(498), - [anon_sym_do] = ACTIONS(500), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(502), - [anon_sym_DOLLARassert] = ACTIONS(504), - [anon_sym_DOLLARerror] = ACTIONS(506), - [anon_sym_DOLLARecho] = ACTIONS(508), - [anon_sym_DOLLARif] = ACTIONS(510), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(516), - [anon_sym_DOLLARforeach] = ACTIONS(518), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1175), + [sym_const_declaration] = STATE(446), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(333), + [sym_expr_stmt] = STATE(413), + [sym_var_decl] = STATE(1961), + [sym_var_stmt] = STATE(413), + [sym_return_stmt] = STATE(413), + [sym_continue_stmt] = STATE(413), + [sym_break_stmt] = STATE(413), + [sym_defer_stmt] = STATE(413), + [sym_assert_stmt] = STATE(413), + [sym_declaration_stmt] = STATE(413), + [sym_nextcase_stmt] = STATE(413), + [sym_switch_body] = STATE(333), + [sym_switch_stmt] = STATE(413), + [sym__if_body] = STATE(421), + [sym_if_stmt] = STATE(413), + [sym_for_stmt] = STATE(413), + [sym_foreach_stmt] = STATE(413), + [sym_while_stmt] = STATE(413), + [sym_do_stmt] = STATE(413), + [sym_asm_block_stmt] = STATE(413), + [sym_ct_assert_stmt] = STATE(413), + [sym_ct_echo_stmt] = STATE(413), + [sym_ct_if_stmt] = STATE(413), + [sym__ct_switch] = STATE(1566), + [sym_ct_switch_stmt] = STATE(413), + [sym_ct_for_stmt] = STATE(413), + [sym_ct_foreach_stmt] = STATE(413), + [sym__expr] = STATE(1092), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1346), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(977), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(979), + [anon_sym_const] = ACTIONS(199), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(201), + [anon_sym_continue] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_defer] = ACTIONS(207), + [anon_sym_assert] = ACTIONS(209), + [anon_sym_nextcase] = ACTIONS(211), + [anon_sym_switch] = ACTIONS(213), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(215), + [anon_sym_for] = ACTIONS(217), + [anon_sym_foreach] = ACTIONS(219), + [anon_sym_foreach_r] = ACTIONS(219), + [anon_sym_while] = ACTIONS(221), + [anon_sym_do] = ACTIONS(223), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(225), + [anon_sym_DOLLARassert] = ACTIONS(227), + [anon_sym_DOLLARerror] = ACTIONS(229), + [anon_sym_DOLLARecho] = ACTIONS(231), + [anon_sym_DOLLARif] = ACTIONS(233), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(237), + [anon_sym_DOLLARforeach] = ACTIONS(239), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [88] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(88), [sym_doc_comment] = STATE(88), [sym_block_comment] = STATE(88), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1158), - [sym_const_declaration] = STATE(445), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(438), - [sym_expr_stmt] = STATE(438), - [sym_var_decl] = STATE(2324), - [sym_var_stmt] = STATE(438), - [sym_return_stmt] = STATE(438), - [sym_continue_stmt] = STATE(438), - [sym_break_stmt] = STATE(438), - [sym_defer_stmt] = STATE(438), - [sym_assert_stmt] = STATE(438), - [sym_declaration_stmt] = STATE(438), - [sym_nextcase_stmt] = STATE(438), - [sym_switch_stmt] = STATE(438), - [sym_if_stmt] = STATE(438), - [sym_for_stmt] = STATE(438), - [sym_foreach_stmt] = STATE(438), - [sym_while_stmt] = STATE(438), - [sym_do_stmt] = STATE(438), - [sym_asm_block_stmt] = STATE(438), - [sym_ct_assert_stmt] = STATE(438), - [sym_ct_echo_stmt] = STATE(438), - [sym_ct_if_stmt] = STATE(438), - [sym__ct_switch] = STATE(1606), - [sym_ct_switch_stmt] = STATE(438), - [sym_ct_for_stmt] = STATE(438), - [sym_ct_foreach_stmt] = STATE(438), - [sym__expr] = STATE(1265), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1564), - [aux_sym_compound_stmt_repeat1] = STATE(93), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(95), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(1068), - [anon_sym_const] = ACTIONS(103), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1169), + [sym_const_declaration] = STATE(593), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(582), + [sym_expr_stmt] = STATE(582), + [sym_var_decl] = STATE(2089), + [sym_var_stmt] = STATE(582), + [sym_return_stmt] = STATE(582), + [sym_continue_stmt] = STATE(582), + [sym_break_stmt] = STATE(582), + [sym_defer_stmt] = STATE(582), + [sym_assert_stmt] = STATE(582), + [sym_declaration_stmt] = STATE(582), + [sym_nextcase_stmt] = STATE(582), + [sym_switch_stmt] = STATE(582), + [sym_if_stmt] = STATE(582), + [sym_for_stmt] = STATE(582), + [sym_foreach_stmt] = STATE(582), + [sym_while_stmt] = STATE(582), + [sym_do_stmt] = STATE(582), + [sym_asm_block_stmt] = STATE(582), + [sym_ct_assert_stmt] = STATE(582), + [sym_ct_echo_stmt] = STATE(582), + [sym_ct_if_stmt] = STATE(582), + [sym__ct_switch] = STATE(1521), + [sym_ct_switch_stmt] = STATE(582), + [sym_ct_for_stmt] = STATE(582), + [sym_ct_foreach_stmt] = STATE(582), + [sym__expr] = STATE(1087), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1353), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(1001), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(653), + [anon_sym_const] = ACTIONS(655), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(657), + [anon_sym_continue] = ACTIONS(659), + [anon_sym_break] = ACTIONS(661), + [anon_sym_defer] = ACTIONS(663), + [anon_sym_try] = ACTIONS(1003), + [anon_sym_catch] = ACTIONS(1003), + [anon_sym_assert] = ACTIONS(665), + [anon_sym_nextcase] = ACTIONS(667), + [anon_sym_switch] = ACTIONS(669), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(671), + [anon_sym_for] = ACTIONS(673), + [anon_sym_foreach] = ACTIONS(675), + [anon_sym_foreach_r] = ACTIONS(675), + [anon_sym_while] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(681), + [anon_sym_DOLLARassert] = ACTIONS(683), + [anon_sym_DOLLARerror] = ACTIONS(685), + [anon_sym_DOLLARecho] = ACTIONS(687), + [anon_sym_DOLLARif] = ACTIONS(689), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(691), + [anon_sym_DOLLARforeach] = ACTIONS(695), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [89] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(89), [sym_doc_comment] = STATE(89), [sym_block_comment] = STATE(89), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1158), - [sym_const_declaration] = STATE(445), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(438), - [sym_expr_stmt] = STATE(438), - [sym_var_decl] = STATE(2324), - [sym_var_stmt] = STATE(438), - [sym_return_stmt] = STATE(438), - [sym_continue_stmt] = STATE(438), - [sym_break_stmt] = STATE(438), - [sym_defer_stmt] = STATE(438), - [sym_assert_stmt] = STATE(438), - [sym_declaration_stmt] = STATE(438), - [sym_nextcase_stmt] = STATE(438), - [sym_switch_stmt] = STATE(438), - [sym_if_stmt] = STATE(438), - [sym_for_stmt] = STATE(438), - [sym_foreach_stmt] = STATE(438), - [sym_while_stmt] = STATE(438), - [sym_do_stmt] = STATE(438), - [sym_asm_block_stmt] = STATE(438), - [sym_ct_assert_stmt] = STATE(438), - [sym_ct_echo_stmt] = STATE(438), - [sym_ct_if_stmt] = STATE(438), - [sym__ct_switch] = STATE(1606), - [sym_ct_switch_stmt] = STATE(438), - [sym_ct_for_stmt] = STATE(438), - [sym_ct_foreach_stmt] = STATE(438), - [sym__expr] = STATE(1265), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1564), - [aux_sym_compound_stmt_repeat1] = STATE(16), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(95), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(1070), - [anon_sym_const] = ACTIONS(103), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1173), + [sym_const_declaration] = STATE(716), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(715), + [sym_expr_stmt] = STATE(715), + [sym_var_decl] = STATE(1937), + [sym_var_stmt] = STATE(715), + [sym_return_stmt] = STATE(715), + [sym_continue_stmt] = STATE(715), + [sym_break_stmt] = STATE(715), + [sym_defer_stmt] = STATE(715), + [sym_assert_stmt] = STATE(715), + [sym_declaration_stmt] = STATE(715), + [sym_nextcase_stmt] = STATE(715), + [sym_switch_stmt] = STATE(715), + [sym_if_stmt] = STATE(715), + [sym_for_stmt] = STATE(715), + [sym_foreach_stmt] = STATE(715), + [sym_while_stmt] = STATE(715), + [sym_do_stmt] = STATE(715), + [sym_asm_block_stmt] = STATE(715), + [sym_ct_assert_stmt] = STATE(715), + [sym_ct_echo_stmt] = STATE(715), + [sym_ct_if_stmt] = STATE(715), + [sym__ct_switch] = STATE(1545), + [sym_ct_switch_stmt] = STATE(715), + [sym_ct_for_stmt] = STATE(715), + [sym_ct_foreach_stmt] = STATE(715), + [sym__expr] = STATE(1109), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1338), + [aux_sym_compound_stmt_repeat1] = STATE(59), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(605), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(607), + [anon_sym_const] = ACTIONS(609), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_break] = ACTIONS(615), + [anon_sym_defer] = ACTIONS(617), + [anon_sym_assert] = ACTIONS(619), + [anon_sym_nextcase] = ACTIONS(621), + [anon_sym_switch] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(625), + [anon_sym_for] = ACTIONS(627), + [anon_sym_foreach] = ACTIONS(629), + [anon_sym_foreach_r] = ACTIONS(629), + [anon_sym_while] = ACTIONS(631), + [anon_sym_do] = ACTIONS(633), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(635), + [anon_sym_DOLLARassert] = ACTIONS(637), + [anon_sym_DOLLARerror] = ACTIONS(639), + [anon_sym_DOLLARecho] = ACTIONS(641), + [anon_sym_DOLLARif] = ACTIONS(643), + [anon_sym_DOLLARendif] = ACTIONS(467), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(647), + [anon_sym_DOLLARforeach] = ACTIONS(649), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [90] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(90), [sym_doc_comment] = STATE(90), [sym_block_comment] = STATE(90), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1158), - [sym_const_declaration] = STATE(445), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(438), - [sym_expr_stmt] = STATE(438), - [sym_var_decl] = STATE(2324), - [sym_var_stmt] = STATE(438), - [sym_return_stmt] = STATE(438), - [sym_continue_stmt] = STATE(438), - [sym_break_stmt] = STATE(438), - [sym_defer_stmt] = STATE(438), - [sym_assert_stmt] = STATE(438), - [sym_declaration_stmt] = STATE(438), - [sym_nextcase_stmt] = STATE(438), - [sym_switch_stmt] = STATE(438), - [sym_if_stmt] = STATE(438), - [sym_for_stmt] = STATE(438), - [sym_foreach_stmt] = STATE(438), - [sym_while_stmt] = STATE(438), - [sym_do_stmt] = STATE(438), - [sym_asm_block_stmt] = STATE(438), - [sym_ct_assert_stmt] = STATE(438), - [sym_ct_echo_stmt] = STATE(438), - [sym_ct_if_stmt] = STATE(438), - [sym__ct_switch] = STATE(1606), - [sym_ct_switch_stmt] = STATE(438), - [sym_ct_for_stmt] = STATE(438), - [sym_ct_foreach_stmt] = STATE(438), - [sym__expr] = STATE(1265), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1564), - [aux_sym_compound_stmt_repeat1] = STATE(89), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(95), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(1072), - [anon_sym_const] = ACTIONS(103), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1169), + [sym_const_declaration] = STATE(593), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(441), + [sym_expr_stmt] = STATE(590), + [sym_var_decl] = STATE(2089), + [sym_var_stmt] = STATE(590), + [sym_return_stmt] = STATE(590), + [sym_continue_stmt] = STATE(590), + [sym_break_stmt] = STATE(590), + [sym_defer_stmt] = STATE(590), + [sym_assert_stmt] = STATE(590), + [sym_declaration_stmt] = STATE(590), + [sym_nextcase_stmt] = STATE(590), + [sym_switch_body] = STATE(441), + [sym_switch_stmt] = STATE(590), + [sym__if_body] = STATE(616), + [sym_if_stmt] = STATE(590), + [sym_for_stmt] = STATE(590), + [sym_foreach_stmt] = STATE(590), + [sym_while_stmt] = STATE(590), + [sym_do_stmt] = STATE(590), + [sym_asm_block_stmt] = STATE(590), + [sym_ct_assert_stmt] = STATE(590), + [sym_ct_echo_stmt] = STATE(590), + [sym_ct_if_stmt] = STATE(590), + [sym__ct_switch] = STATE(1521), + [sym_ct_switch_stmt] = STATE(590), + [sym_ct_for_stmt] = STATE(590), + [sym_ct_foreach_stmt] = STATE(590), + [sym__expr] = STATE(1087), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1353), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(991), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(993), + [anon_sym_const] = ACTIONS(655), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(657), + [anon_sym_continue] = ACTIONS(659), + [anon_sym_break] = ACTIONS(661), + [anon_sym_defer] = ACTIONS(663), + [anon_sym_assert] = ACTIONS(665), + [anon_sym_nextcase] = ACTIONS(667), + [anon_sym_switch] = ACTIONS(669), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(671), + [anon_sym_for] = ACTIONS(673), + [anon_sym_foreach] = ACTIONS(675), + [anon_sym_foreach_r] = ACTIONS(675), + [anon_sym_while] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(681), + [anon_sym_DOLLARassert] = ACTIONS(683), + [anon_sym_DOLLARerror] = ACTIONS(685), + [anon_sym_DOLLARecho] = ACTIONS(687), + [anon_sym_DOLLARif] = ACTIONS(689), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(691), + [anon_sym_DOLLARforeach] = ACTIONS(695), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [91] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(91), [sym_doc_comment] = STATE(91), [sym_block_comment] = STATE(91), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1169), - [sym_const_declaration] = STATE(480), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(389), - [sym_expr_stmt] = STATE(508), - [sym_var_decl] = STATE(2091), - [sym_var_stmt] = STATE(508), - [sym_return_stmt] = STATE(508), - [sym_continue_stmt] = STATE(508), - [sym_break_stmt] = STATE(508), - [sym_defer_stmt] = STATE(508), - [sym_assert_stmt] = STATE(508), - [sym_declaration_stmt] = STATE(508), - [sym_nextcase_stmt] = STATE(508), - [sym_switch_body] = STATE(389), - [sym_switch_stmt] = STATE(508), - [sym__if_body] = STATE(533), - [sym_if_stmt] = STATE(508), - [sym_for_stmt] = STATE(508), - [sym_foreach_stmt] = STATE(508), - [sym_while_stmt] = STATE(508), - [sym_do_stmt] = STATE(508), - [sym_asm_block_stmt] = STATE(508), - [sym_ct_assert_stmt] = STATE(508), - [sym_ct_echo_stmt] = STATE(508), - [sym_ct_if_stmt] = STATE(508), - [sym__ct_switch] = STATE(1646), - [sym_ct_switch_stmt] = STATE(508), - [sym_ct_for_stmt] = STATE(508), - [sym_ct_foreach_stmt] = STATE(508), - [sym__expr] = STATE(1271), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1647), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(816), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_const] = ACTIONS(203), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(205), - [anon_sym_continue] = ACTIONS(207), - [anon_sym_break] = ACTIONS(209), - [anon_sym_defer] = ACTIONS(211), - [anon_sym_assert] = ACTIONS(213), - [anon_sym_nextcase] = ACTIONS(215), - [anon_sym_switch] = ACTIONS(217), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(219), - [anon_sym_for] = ACTIONS(221), - [anon_sym_foreach] = ACTIONS(223), - [anon_sym_foreach_r] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_do] = ACTIONS(227), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(229), - [anon_sym_DOLLARassert] = ACTIONS(231), - [anon_sym_DOLLARerror] = ACTIONS(233), - [anon_sym_DOLLARecho] = ACTIONS(235), - [anon_sym_DOLLARif] = ACTIONS(237), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(241), - [anon_sym_DOLLARforeach] = ACTIONS(243), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1173), + [sym_const_declaration] = STATE(716), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(462), + [sym_expr_stmt] = STATE(745), + [sym_var_decl] = STATE(1937), + [sym_var_stmt] = STATE(745), + [sym_return_stmt] = STATE(745), + [sym_continue_stmt] = STATE(745), + [sym_break_stmt] = STATE(745), + [sym_defer_stmt] = STATE(745), + [sym_assert_stmt] = STATE(745), + [sym_declaration_stmt] = STATE(745), + [sym_nextcase_stmt] = STATE(745), + [sym_switch_body] = STATE(462), + [sym_switch_stmt] = STATE(745), + [sym__if_body] = STATE(746), + [sym_if_stmt] = STATE(745), + [sym_for_stmt] = STATE(745), + [sym_foreach_stmt] = STATE(745), + [sym_while_stmt] = STATE(745), + [sym_do_stmt] = STATE(745), + [sym_asm_block_stmt] = STATE(745), + [sym_ct_assert_stmt] = STATE(745), + [sym_ct_echo_stmt] = STATE(745), + [sym_ct_if_stmt] = STATE(745), + [sym__ct_switch] = STATE(1545), + [sym_ct_switch_stmt] = STATE(745), + [sym_ct_for_stmt] = STATE(745), + [sym_ct_foreach_stmt] = STATE(745), + [sym__expr] = STATE(1109), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1338), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(969), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(971), + [anon_sym_const] = ACTIONS(609), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_break] = ACTIONS(615), + [anon_sym_defer] = ACTIONS(617), + [anon_sym_assert] = ACTIONS(619), + [anon_sym_nextcase] = ACTIONS(621), + [anon_sym_switch] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(625), + [anon_sym_for] = ACTIONS(627), + [anon_sym_foreach] = ACTIONS(629), + [anon_sym_foreach_r] = ACTIONS(629), + [anon_sym_while] = ACTIONS(631), + [anon_sym_do] = ACTIONS(633), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(635), + [anon_sym_DOLLARassert] = ACTIONS(637), + [anon_sym_DOLLARerror] = ACTIONS(639), + [anon_sym_DOLLARecho] = ACTIONS(641), + [anon_sym_DOLLARif] = ACTIONS(643), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(647), + [anon_sym_DOLLARforeach] = ACTIONS(649), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [92] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(92), [sym_doc_comment] = STATE(92), [sym_block_comment] = STATE(92), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1158), - [sym_const_declaration] = STATE(445), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(438), - [sym_expr_stmt] = STATE(438), - [sym_var_decl] = STATE(2324), - [sym_var_stmt] = STATE(438), - [sym_return_stmt] = STATE(438), - [sym_continue_stmt] = STATE(438), - [sym_break_stmt] = STATE(438), - [sym_defer_stmt] = STATE(438), - [sym_assert_stmt] = STATE(438), - [sym_declaration_stmt] = STATE(438), - [sym_nextcase_stmt] = STATE(438), - [sym_switch_stmt] = STATE(438), - [sym_if_stmt] = STATE(438), - [sym_for_stmt] = STATE(438), - [sym_foreach_stmt] = STATE(438), - [sym_while_stmt] = STATE(438), - [sym_do_stmt] = STATE(438), - [sym_asm_block_stmt] = STATE(438), - [sym_ct_assert_stmt] = STATE(438), - [sym_ct_echo_stmt] = STATE(438), - [sym_ct_if_stmt] = STATE(438), - [sym__ct_switch] = STATE(1606), - [sym_ct_switch_stmt] = STATE(438), - [sym_ct_for_stmt] = STATE(438), - [sym_ct_foreach_stmt] = STATE(438), - [sym__expr] = STATE(1265), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1564), - [aux_sym_compound_stmt_repeat1] = STATE(95), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(95), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_const] = ACTIONS(103), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_PIPE_RBRACE] = ACTIONS(1074), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1162), + [sym_const_declaration] = STATE(364), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(396), + [sym_expr_stmt] = STATE(396), + [sym_var_decl] = STATE(2193), + [sym_var_stmt] = STATE(396), + [sym_return_stmt] = STATE(396), + [sym_continue_stmt] = STATE(396), + [sym_break_stmt] = STATE(396), + [sym_defer_stmt] = STATE(396), + [sym_assert_stmt] = STATE(396), + [sym_declaration_stmt] = STATE(396), + [sym_nextcase_stmt] = STATE(396), + [sym_switch_stmt] = STATE(396), + [sym_if_stmt] = STATE(396), + [sym_for_stmt] = STATE(396), + [sym_foreach_stmt] = STATE(396), + [sym_while_stmt] = STATE(396), + [sym_do_stmt] = STATE(396), + [sym_asm_block_stmt] = STATE(396), + [sym_ct_assert_stmt] = STATE(396), + [sym_ct_echo_stmt] = STATE(396), + [sym_ct_if_stmt] = STATE(396), + [sym__ct_switch] = STATE(1544), + [sym_ct_switch_stmt] = STATE(396), + [sym_ct_for_stmt] = STATE(396), + [sym_ct_foreach_stmt] = STATE(396), + [sym__expr] = STATE(1093), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1351), + [aux_sym_compound_stmt_repeat1] = STATE(77), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(93), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_const] = ACTIONS(101), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_PIPE_RBRACE] = ACTIONS(1005), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [93] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(93), [sym_doc_comment] = STATE(93), [sym_block_comment] = STATE(93), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1158), - [sym_const_declaration] = STATE(445), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(438), - [sym_expr_stmt] = STATE(438), - [sym_var_decl] = STATE(2324), - [sym_var_stmt] = STATE(438), - [sym_return_stmt] = STATE(438), - [sym_continue_stmt] = STATE(438), - [sym_break_stmt] = STATE(438), - [sym_defer_stmt] = STATE(438), - [sym_assert_stmt] = STATE(438), - [sym_declaration_stmt] = STATE(438), - [sym_nextcase_stmt] = STATE(438), - [sym_switch_stmt] = STATE(438), - [sym_if_stmt] = STATE(438), - [sym_for_stmt] = STATE(438), - [sym_foreach_stmt] = STATE(438), - [sym_while_stmt] = STATE(438), - [sym_do_stmt] = STATE(438), - [sym_asm_block_stmt] = STATE(438), - [sym_ct_assert_stmt] = STATE(438), - [sym_ct_echo_stmt] = STATE(438), - [sym_ct_if_stmt] = STATE(438), - [sym__ct_switch] = STATE(1606), - [sym_ct_switch_stmt] = STATE(438), - [sym_ct_for_stmt] = STATE(438), - [sym_ct_foreach_stmt] = STATE(438), - [sym__expr] = STATE(1265), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1564), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1162), + [sym_const_declaration] = STATE(364), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(396), + [sym_expr_stmt] = STATE(396), + [sym_var_decl] = STATE(2193), + [sym_var_stmt] = STATE(396), + [sym_return_stmt] = STATE(396), + [sym_continue_stmt] = STATE(396), + [sym_break_stmt] = STATE(396), + [sym_defer_stmt] = STATE(396), + [sym_assert_stmt] = STATE(396), + [sym_declaration_stmt] = STATE(396), + [sym_nextcase_stmt] = STATE(396), + [sym_switch_stmt] = STATE(396), + [sym_if_stmt] = STATE(396), + [sym_for_stmt] = STATE(396), + [sym_foreach_stmt] = STATE(396), + [sym_while_stmt] = STATE(396), + [sym_do_stmt] = STATE(396), + [sym_asm_block_stmt] = STATE(396), + [sym_ct_assert_stmt] = STATE(396), + [sym_ct_echo_stmt] = STATE(396), + [sym_ct_if_stmt] = STATE(396), + [sym__ct_switch] = STATE(1544), + [sym_ct_switch_stmt] = STATE(396), + [sym_ct_for_stmt] = STATE(396), + [sym_ct_foreach_stmt] = STATE(396), + [sym__expr] = STATE(1093), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1351), [aux_sym_compound_stmt_repeat1] = STATE(16), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(95), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(1076), - [anon_sym_const] = ACTIONS(103), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(93), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_RBRACE] = ACTIONS(1007), + [anon_sym_const] = ACTIONS(101), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [94] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(94), [sym_doc_comment] = STATE(94), [sym_block_comment] = STATE(94), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1170), - [sym_const_declaration] = STATE(593), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(573), - [sym_expr_stmt] = STATE(573), - [sym_var_decl] = STATE(2285), - [sym_var_stmt] = STATE(573), - [sym_return_stmt] = STATE(573), - [sym_continue_stmt] = STATE(573), - [sym_break_stmt] = STATE(573), - [sym_defer_stmt] = STATE(573), - [sym_assert_stmt] = STATE(573), - [sym_declaration_stmt] = STATE(573), - [sym_nextcase_stmt] = STATE(573), - [sym_switch_stmt] = STATE(573), - [sym_if_stmt] = STATE(573), - [sym_for_stmt] = STATE(573), - [sym_foreach_stmt] = STATE(573), - [sym_while_stmt] = STATE(573), - [sym_do_stmt] = STATE(573), - [sym_asm_block_stmt] = STATE(573), - [sym_ct_assert_stmt] = STATE(573), - [sym_ct_echo_stmt] = STATE(573), - [sym_ct_if_stmt] = STATE(573), - [sym__ct_switch] = STATE(1604), - [sym_ct_switch_stmt] = STATE(573), - [sym_ct_for_stmt] = STATE(573), - [sym_ct_foreach_stmt] = STATE(573), - [sym__expr] = STATE(1288), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1595), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1078), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(474), - [anon_sym_const] = ACTIONS(476), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(478), - [anon_sym_continue] = ACTIONS(480), - [anon_sym_break] = ACTIONS(482), - [anon_sym_defer] = ACTIONS(484), - [anon_sym_try] = ACTIONS(1080), - [anon_sym_catch] = ACTIONS(1080), - [anon_sym_assert] = ACTIONS(486), - [anon_sym_nextcase] = ACTIONS(488), - [anon_sym_switch] = ACTIONS(490), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(492), - [anon_sym_for] = ACTIONS(494), - [anon_sym_foreach] = ACTIONS(496), - [anon_sym_foreach_r] = ACTIONS(496), - [anon_sym_while] = ACTIONS(498), - [anon_sym_do] = ACTIONS(500), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(502), - [anon_sym_DOLLARassert] = ACTIONS(504), - [anon_sym_DOLLARerror] = ACTIONS(506), - [anon_sym_DOLLARecho] = ACTIONS(508), - [anon_sym_DOLLARif] = ACTIONS(510), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(516), - [anon_sym_DOLLARforeach] = ACTIONS(518), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1162), + [sym_const_declaration] = STATE(364), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(396), + [sym_expr_stmt] = STATE(396), + [sym_var_decl] = STATE(2193), + [sym_var_stmt] = STATE(396), + [sym_return_stmt] = STATE(396), + [sym_continue_stmt] = STATE(396), + [sym_break_stmt] = STATE(396), + [sym_defer_stmt] = STATE(396), + [sym_assert_stmt] = STATE(396), + [sym_declaration_stmt] = STATE(396), + [sym_nextcase_stmt] = STATE(396), + [sym_switch_stmt] = STATE(396), + [sym_if_stmt] = STATE(396), + [sym_for_stmt] = STATE(396), + [sym_foreach_stmt] = STATE(396), + [sym_while_stmt] = STATE(396), + [sym_do_stmt] = STATE(396), + [sym_asm_block_stmt] = STATE(396), + [sym_ct_assert_stmt] = STATE(396), + [sym_ct_echo_stmt] = STATE(396), + [sym_ct_if_stmt] = STATE(396), + [sym__ct_switch] = STATE(1544), + [sym_ct_switch_stmt] = STATE(396), + [sym_ct_for_stmt] = STATE(396), + [sym_ct_foreach_stmt] = STATE(396), + [sym__expr] = STATE(1093), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1351), + [aux_sym_compound_stmt_repeat1] = STATE(93), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(93), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_RBRACE] = ACTIONS(1009), + [anon_sym_const] = ACTIONS(101), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [95] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(95), [sym_doc_comment] = STATE(95), [sym_block_comment] = STATE(95), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1158), - [sym_const_declaration] = STATE(445), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(438), - [sym_expr_stmt] = STATE(438), - [sym_var_decl] = STATE(2324), - [sym_var_stmt] = STATE(438), - [sym_return_stmt] = STATE(438), - [sym_continue_stmt] = STATE(438), - [sym_break_stmt] = STATE(438), - [sym_defer_stmt] = STATE(438), - [sym_assert_stmt] = STATE(438), - [sym_declaration_stmt] = STATE(438), - [sym_nextcase_stmt] = STATE(438), - [sym_switch_stmt] = STATE(438), - [sym_if_stmt] = STATE(438), - [sym_for_stmt] = STATE(438), - [sym_foreach_stmt] = STATE(438), - [sym_while_stmt] = STATE(438), - [sym_do_stmt] = STATE(438), - [sym_asm_block_stmt] = STATE(438), - [sym_ct_assert_stmt] = STATE(438), - [sym_ct_echo_stmt] = STATE(438), - [sym_ct_if_stmt] = STATE(438), - [sym__ct_switch] = STATE(1606), - [sym_ct_switch_stmt] = STATE(438), - [sym_ct_for_stmt] = STATE(438), - [sym_ct_foreach_stmt] = STATE(438), - [sym__expr] = STATE(1265), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1564), - [aux_sym_compound_stmt_repeat1] = STATE(16), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(95), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_const] = ACTIONS(103), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_PIPE_RBRACE] = ACTIONS(1082), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1173), + [sym_const_declaration] = STATE(716), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(726), + [sym_expr_stmt] = STATE(726), + [sym_var_decl] = STATE(1937), + [sym_var_stmt] = STATE(726), + [sym_return_stmt] = STATE(726), + [sym_continue_stmt] = STATE(726), + [sym_break_stmt] = STATE(726), + [sym_defer_stmt] = STATE(726), + [sym_assert_stmt] = STATE(726), + [sym_declaration_stmt] = STATE(726), + [sym_nextcase_stmt] = STATE(726), + [sym_switch_stmt] = STATE(726), + [sym_if_stmt] = STATE(726), + [sym_for_stmt] = STATE(726), + [sym_foreach_stmt] = STATE(726), + [sym_while_stmt] = STATE(726), + [sym_do_stmt] = STATE(726), + [sym_asm_block_stmt] = STATE(726), + [sym_ct_assert_stmt] = STATE(726), + [sym_ct_echo_stmt] = STATE(726), + [sym_ct_if_stmt] = STATE(726), + [sym__ct_switch] = STATE(1545), + [sym_ct_switch_stmt] = STATE(726), + [sym_ct_for_stmt] = STATE(726), + [sym_ct_foreach_stmt] = STATE(726), + [sym__expr] = STATE(1109), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1338), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(1011), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(607), + [anon_sym_const] = ACTIONS(609), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_break] = ACTIONS(615), + [anon_sym_defer] = ACTIONS(617), + [anon_sym_try] = ACTIONS(1013), + [anon_sym_catch] = ACTIONS(1013), + [anon_sym_assert] = ACTIONS(619), + [anon_sym_nextcase] = ACTIONS(621), + [anon_sym_switch] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(625), + [anon_sym_for] = ACTIONS(627), + [anon_sym_foreach] = ACTIONS(629), + [anon_sym_foreach_r] = ACTIONS(629), + [anon_sym_while] = ACTIONS(631), + [anon_sym_do] = ACTIONS(633), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(635), + [anon_sym_DOLLARassert] = ACTIONS(637), + [anon_sym_DOLLARerror] = ACTIONS(639), + [anon_sym_DOLLARecho] = ACTIONS(641), + [anon_sym_DOLLARif] = ACTIONS(643), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(647), + [anon_sym_DOLLARforeach] = ACTIONS(649), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [96] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(96), [sym_doc_comment] = STATE(96), [sym_block_comment] = STATE(96), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), [sym_local_decl_storage] = STATE(1169), - [sym_const_declaration] = STATE(480), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(476), - [sym_expr_stmt] = STATE(476), - [sym_var_decl] = STATE(2091), - [sym_var_stmt] = STATE(476), - [sym_return_stmt] = STATE(476), - [sym_continue_stmt] = STATE(476), - [sym_break_stmt] = STATE(476), - [sym_defer_stmt] = STATE(476), - [sym_assert_stmt] = STATE(476), - [sym_declaration_stmt] = STATE(476), - [sym_nextcase_stmt] = STATE(476), - [sym_switch_stmt] = STATE(476), - [sym_if_stmt] = STATE(476), - [sym_for_stmt] = STATE(476), - [sym_foreach_stmt] = STATE(476), - [sym_while_stmt] = STATE(476), - [sym_do_stmt] = STATE(476), - [sym_asm_block_stmt] = STATE(476), - [sym_ct_assert_stmt] = STATE(476), - [sym_ct_echo_stmt] = STATE(476), - [sym_ct_if_stmt] = STATE(476), - [sym__ct_switch] = STATE(1646), - [sym_ct_switch_stmt] = STATE(476), - [sym_ct_for_stmt] = STATE(476), - [sym_ct_foreach_stmt] = STATE(476), - [sym__expr] = STATE(1271), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1647), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1084), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(201), - [anon_sym_const] = ACTIONS(203), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(205), - [anon_sym_continue] = ACTIONS(207), - [anon_sym_break] = ACTIONS(209), - [anon_sym_defer] = ACTIONS(211), - [anon_sym_try] = ACTIONS(1086), - [anon_sym_catch] = ACTIONS(1086), - [anon_sym_assert] = ACTIONS(213), - [anon_sym_nextcase] = ACTIONS(215), - [anon_sym_switch] = ACTIONS(217), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(219), - [anon_sym_for] = ACTIONS(221), - [anon_sym_foreach] = ACTIONS(223), - [anon_sym_foreach_r] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_do] = ACTIONS(227), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(229), - [anon_sym_DOLLARassert] = ACTIONS(231), - [anon_sym_DOLLARerror] = ACTIONS(233), - [anon_sym_DOLLARecho] = ACTIONS(235), - [anon_sym_DOLLARif] = ACTIONS(237), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(241), - [anon_sym_DOLLARforeach] = ACTIONS(243), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_const_declaration] = STATE(593), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(594), + [sym_expr_stmt] = STATE(594), + [sym_var_decl] = STATE(2089), + [sym_var_stmt] = STATE(594), + [sym_return_stmt] = STATE(594), + [sym_continue_stmt] = STATE(594), + [sym_break_stmt] = STATE(594), + [sym_defer_stmt] = STATE(594), + [sym_assert_stmt] = STATE(594), + [sym_declaration_stmt] = STATE(594), + [sym_nextcase_stmt] = STATE(594), + [sym_switch_stmt] = STATE(594), + [sym_if_stmt] = STATE(594), + [sym_for_stmt] = STATE(594), + [sym_foreach_stmt] = STATE(594), + [sym_while_stmt] = STATE(594), + [sym_do_stmt] = STATE(594), + [sym_asm_block_stmt] = STATE(594), + [sym_ct_assert_stmt] = STATE(594), + [sym_ct_echo_stmt] = STATE(594), + [sym_ct_if_stmt] = STATE(594), + [sym__ct_switch] = STATE(1521), + [sym_ct_switch_stmt] = STATE(594), + [sym_ct_for_stmt] = STATE(594), + [sym_ct_foreach_stmt] = STATE(594), + [sym__expr] = STATE(1087), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1353), + [aux_sym_compound_stmt_repeat1] = STATE(96), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(243), + [sym_integer_literal] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_DQUOTE] = ACTIONS(252), + [anon_sym_BQUOTE] = ACTIONS(255), + [sym_bytes_literal] = ACTIONS(258), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(261), + [sym_at_ident] = ACTIONS(264), + [sym_hash_ident] = ACTIONS(267), + [sym_type_ident] = ACTIONS(270), + [sym_ct_type_ident] = ACTIONS(273), + [sym_const_ident] = ACTIONS(276), + [sym_builtin] = ACTIONS(246), + [anon_sym_LPAREN] = ACTIONS(279), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_static] = ACTIONS(285), + [anon_sym_tlocal] = ACTIONS(285), + [anon_sym_SEMI] = ACTIONS(1015), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_const] = ACTIONS(1021), + [anon_sym_var] = ACTIONS(302), + [anon_sym_return] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1027), + [anon_sym_break] = ACTIONS(1030), + [anon_sym_defer] = ACTIONS(1033), + [anon_sym_assert] = ACTIONS(1036), + [anon_sym_nextcase] = ACTIONS(1039), + [anon_sym_switch] = ACTIONS(1042), + [anon_sym_AMP_AMP] = ACTIONS(328), + [anon_sym_if] = ACTIONS(1045), + [anon_sym_for] = ACTIONS(1048), + [anon_sym_foreach] = ACTIONS(1051), + [anon_sym_foreach_r] = ACTIONS(1051), + [anon_sym_while] = ACTIONS(1054), + [anon_sym_do] = ACTIONS(1057), + [anon_sym_int] = ACTIONS(346), + [anon_sym_PLUS] = ACTIONS(282), + [anon_sym_DASH] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(328), + [anon_sym_asm] = ACTIONS(1060), + [anon_sym_DOLLARassert] = ACTIONS(1063), + [anon_sym_DOLLARerror] = ACTIONS(1066), + [anon_sym_DOLLARecho] = ACTIONS(1069), + [anon_sym_DOLLARif] = ACTIONS(1072), + [anon_sym_DOLLARswitch] = ACTIONS(364), + [anon_sym_DOLLARfor] = ACTIONS(1075), + [anon_sym_DOLLARendfor] = ACTIONS(320), + [anon_sym_DOLLARforeach] = ACTIONS(1078), + [anon_sym_DOLLARalignof] = ACTIONS(373), + [anon_sym_DOLLARextnameof] = ACTIONS(373), + [anon_sym_DOLLARnameof] = ACTIONS(373), + [anon_sym_DOLLARoffsetof] = ACTIONS(373), + [anon_sym_DOLLARqnameof] = ACTIONS(373), + [anon_sym_DOLLARvaconst] = ACTIONS(376), + [anon_sym_DOLLARvaarg] = ACTIONS(376), + [anon_sym_DOLLARvaref] = ACTIONS(376), + [anon_sym_DOLLARvaexpr] = ACTIONS(376), + [anon_sym_true] = ACTIONS(379), + [anon_sym_false] = ACTIONS(379), + [anon_sym_null] = ACTIONS(379), + [anon_sym_DOLLARvacount] = ACTIONS(379), + [anon_sym_DOLLARappend] = ACTIONS(376), + [anon_sym_DOLLARconcat] = ACTIONS(376), + [anon_sym_DOLLAReval] = ACTIONS(376), + [anon_sym_DOLLARis_const] = ACTIONS(376), + [anon_sym_DOLLARsizeof] = ACTIONS(376), + [anon_sym_DOLLARstringify] = ACTIONS(376), + [anon_sym_DOLLARand] = ACTIONS(382), + [anon_sym_DOLLARdefined] = ACTIONS(382), + [anon_sym_DOLLARembed] = ACTIONS(382), + [anon_sym_DOLLARor] = ACTIONS(382), + [anon_sym_DOLLARfeature] = ACTIONS(385), + [anon_sym_DOLLARassignable] = ACTIONS(388), + [anon_sym_BANG] = ACTIONS(328), + [anon_sym_TILDE] = ACTIONS(328), + [anon_sym_PLUS_PLUS] = ACTIONS(328), + [anon_sym_DASH_DASH] = ACTIONS(328), + [anon_sym_typeid] = ACTIONS(346), + [anon_sym_LBRACE_PIPE] = ACTIONS(391), + [anon_sym_void] = ACTIONS(346), + [anon_sym_bool] = ACTIONS(346), + [anon_sym_char] = ACTIONS(346), + [anon_sym_ichar] = ACTIONS(346), + [anon_sym_short] = ACTIONS(346), + [anon_sym_ushort] = ACTIONS(346), + [anon_sym_uint] = ACTIONS(346), + [anon_sym_long] = ACTIONS(346), + [anon_sym_ulong] = ACTIONS(346), + [anon_sym_int128] = ACTIONS(346), + [anon_sym_uint128] = ACTIONS(346), + [anon_sym_float] = ACTIONS(346), + [anon_sym_double] = ACTIONS(346), + [anon_sym_float16] = ACTIONS(346), + [anon_sym_bfloat16] = ACTIONS(346), + [anon_sym_float128] = ACTIONS(346), + [anon_sym_iptr] = ACTIONS(346), + [anon_sym_uptr] = ACTIONS(346), + [anon_sym_isz] = ACTIONS(346), + [anon_sym_usz] = ACTIONS(346), + [anon_sym_anyfault] = ACTIONS(346), + [anon_sym_any] = ACTIONS(346), + [anon_sym_DOLLARtypeof] = ACTIONS(394), + [anon_sym_DOLLARtypefrom] = ACTIONS(394), + [anon_sym_DOLLARvatype] = ACTIONS(394), + [anon_sym_DOLLARevaltype] = ACTIONS(394), + [sym_real_literal] = ACTIONS(246), }, [97] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(97), [sym_doc_comment] = STATE(97), [sym_block_comment] = STATE(97), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1158), - [sym_const_declaration] = STATE(445), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(438), - [sym_expr_stmt] = STATE(438), - [sym_var_decl] = STATE(2324), - [sym_var_stmt] = STATE(438), - [sym_return_stmt] = STATE(438), - [sym_continue_stmt] = STATE(438), - [sym_break_stmt] = STATE(438), - [sym_defer_stmt] = STATE(438), - [sym_assert_stmt] = STATE(438), - [sym_declaration_stmt] = STATE(438), - [sym_nextcase_stmt] = STATE(438), - [sym_switch_stmt] = STATE(438), - [sym_if_stmt] = STATE(438), - [sym_for_stmt] = STATE(438), - [sym_foreach_stmt] = STATE(438), - [sym_while_stmt] = STATE(438), - [sym_do_stmt] = STATE(438), - [sym_asm_block_stmt] = STATE(438), - [sym_ct_assert_stmt] = STATE(438), - [sym_ct_echo_stmt] = STATE(438), - [sym_ct_if_stmt] = STATE(438), - [sym__ct_switch] = STATE(1606), - [sym_ct_switch_stmt] = STATE(438), - [sym_ct_for_stmt] = STATE(438), - [sym_ct_foreach_stmt] = STATE(438), - [sym__expr] = STATE(1265), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1564), - [aux_sym_compound_stmt_repeat1] = STATE(82), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(95), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(1088), - [anon_sym_const] = ACTIONS(103), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1162), + [sym_const_declaration] = STATE(364), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(396), + [sym_expr_stmt] = STATE(396), + [sym_var_decl] = STATE(2193), + [sym_var_stmt] = STATE(396), + [sym_return_stmt] = STATE(396), + [sym_continue_stmt] = STATE(396), + [sym_break_stmt] = STATE(396), + [sym_defer_stmt] = STATE(396), + [sym_assert_stmt] = STATE(396), + [sym_declaration_stmt] = STATE(396), + [sym_nextcase_stmt] = STATE(396), + [sym_switch_stmt] = STATE(396), + [sym_if_stmt] = STATE(396), + [sym_for_stmt] = STATE(396), + [sym_foreach_stmt] = STATE(396), + [sym_while_stmt] = STATE(396), + [sym_do_stmt] = STATE(396), + [sym_asm_block_stmt] = STATE(396), + [sym_ct_assert_stmt] = STATE(396), + [sym_ct_echo_stmt] = STATE(396), + [sym_ct_if_stmt] = STATE(396), + [sym__ct_switch] = STATE(1544), + [sym_ct_switch_stmt] = STATE(396), + [sym_ct_for_stmt] = STATE(396), + [sym_ct_foreach_stmt] = STATE(396), + [sym__expr] = STATE(1093), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1351), + [aux_sym_compound_stmt_repeat1] = STATE(16), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(93), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_RBRACE] = ACTIONS(1081), + [anon_sym_const] = ACTIONS(101), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [98] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(98), [sym_doc_comment] = STATE(98), [sym_block_comment] = STATE(98), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1170), - [sym_const_declaration] = STATE(593), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(620), - [sym_expr_stmt] = STATE(620), - [sym_var_decl] = STATE(2285), - [sym_var_stmt] = STATE(620), - [sym_return_stmt] = STATE(620), - [sym_continue_stmt] = STATE(620), - [sym_break_stmt] = STATE(620), - [sym_defer_stmt] = STATE(620), - [sym_assert_stmt] = STATE(620), - [sym_declaration_stmt] = STATE(620), - [sym_nextcase_stmt] = STATE(620), - [sym_switch_stmt] = STATE(620), - [sym_if_stmt] = STATE(620), - [sym_for_stmt] = STATE(620), - [sym_foreach_stmt] = STATE(620), - [sym_while_stmt] = STATE(620), - [sym_do_stmt] = STATE(620), - [sym_asm_block_stmt] = STATE(620), - [sym_ct_assert_stmt] = STATE(620), - [sym_ct_echo_stmt] = STATE(620), - [sym_ct_if_stmt] = STATE(620), - [sym__ct_switch] = STATE(1604), - [sym_ct_switch_stmt] = STATE(620), - [sym_ct_for_stmt] = STATE(620), - [sym_ct_foreach_stmt] = STATE(620), - [sym__expr] = STATE(1288), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1595), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1090), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(474), - [anon_sym_const] = ACTIONS(476), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(478), - [anon_sym_continue] = ACTIONS(480), - [anon_sym_break] = ACTIONS(482), - [anon_sym_defer] = ACTIONS(484), - [anon_sym_assert] = ACTIONS(486), - [anon_sym_nextcase] = ACTIONS(488), - [anon_sym_switch] = ACTIONS(490), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(492), - [anon_sym_for] = ACTIONS(494), - [anon_sym_foreach] = ACTIONS(496), - [anon_sym_foreach_r] = ACTIONS(496), - [anon_sym_while] = ACTIONS(498), - [anon_sym_do] = ACTIONS(500), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(502), - [anon_sym_DOLLARassert] = ACTIONS(504), - [anon_sym_DOLLARerror] = ACTIONS(506), - [anon_sym_DOLLARecho] = ACTIONS(508), - [anon_sym_DOLLARif] = ACTIONS(510), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(516), - [anon_sym_DOLLARforeach] = ACTIONS(518), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1162), + [sym_const_declaration] = STATE(364), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(342), + [sym_expr_stmt] = STATE(342), + [sym_var_decl] = STATE(2193), + [sym_var_stmt] = STATE(342), + [sym_return_stmt] = STATE(342), + [sym_continue_stmt] = STATE(342), + [sym_break_stmt] = STATE(342), + [sym_defer_stmt] = STATE(342), + [sym_assert_stmt] = STATE(342), + [sym_declaration_stmt] = STATE(342), + [sym_nextcase_stmt] = STATE(342), + [sym_switch_stmt] = STATE(342), + [sym_if_stmt] = STATE(342), + [sym_for_stmt] = STATE(342), + [sym_foreach_stmt] = STATE(342), + [sym_while_stmt] = STATE(342), + [sym_do_stmt] = STATE(342), + [sym_asm_block_stmt] = STATE(342), + [sym_ct_assert_stmt] = STATE(342), + [sym_ct_echo_stmt] = STATE(342), + [sym_ct_if_stmt] = STATE(342), + [sym__ct_switch] = STATE(1544), + [sym_ct_switch_stmt] = STATE(342), + [sym_ct_for_stmt] = STATE(342), + [sym_ct_foreach_stmt] = STATE(342), + [sym__expr] = STATE(1093), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1351), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(1083), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_const] = ACTIONS(101), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [99] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(99), [sym_doc_comment] = STATE(99), [sym_block_comment] = STATE(99), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1158), - [sym_const_declaration] = STATE(445), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(465), - [sym_expr_stmt] = STATE(465), - [sym_var_decl] = STATE(2324), - [sym_var_stmt] = STATE(465), - [sym_return_stmt] = STATE(465), - [sym_continue_stmt] = STATE(465), - [sym_break_stmt] = STATE(465), - [sym_defer_stmt] = STATE(465), - [sym_assert_stmt] = STATE(465), - [sym_declaration_stmt] = STATE(465), - [sym_nextcase_stmt] = STATE(465), - [sym_switch_stmt] = STATE(465), - [sym_if_stmt] = STATE(465), - [sym_for_stmt] = STATE(465), - [sym_foreach_stmt] = STATE(465), - [sym_while_stmt] = STATE(465), - [sym_do_stmt] = STATE(465), - [sym_asm_block_stmt] = STATE(465), - [sym_ct_assert_stmt] = STATE(465), - [sym_ct_echo_stmt] = STATE(465), - [sym_ct_if_stmt] = STATE(465), - [sym__ct_switch] = STATE(1606), - [sym_ct_switch_stmt] = STATE(465), - [sym_ct_for_stmt] = STATE(465), - [sym_ct_foreach_stmt] = STATE(465), - [sym__expr] = STATE(1265), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1564), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1092), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_const] = ACTIONS(103), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1169), + [sym_const_declaration] = STATE(593), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(617), + [sym_expr_stmt] = STATE(617), + [sym_var_decl] = STATE(2089), + [sym_var_stmt] = STATE(617), + [sym_return_stmt] = STATE(617), + [sym_continue_stmt] = STATE(617), + [sym_break_stmt] = STATE(617), + [sym_defer_stmt] = STATE(617), + [sym_assert_stmt] = STATE(617), + [sym_declaration_stmt] = STATE(617), + [sym_nextcase_stmt] = STATE(617), + [sym_switch_stmt] = STATE(617), + [sym_if_stmt] = STATE(617), + [sym_for_stmt] = STATE(617), + [sym_foreach_stmt] = STATE(617), + [sym_while_stmt] = STATE(617), + [sym_do_stmt] = STATE(617), + [sym_asm_block_stmt] = STATE(617), + [sym_ct_assert_stmt] = STATE(617), + [sym_ct_echo_stmt] = STATE(617), + [sym_ct_if_stmt] = STATE(617), + [sym__ct_switch] = STATE(1521), + [sym_ct_switch_stmt] = STATE(617), + [sym_ct_for_stmt] = STATE(617), + [sym_ct_foreach_stmt] = STATE(617), + [sym__expr] = STATE(1087), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1353), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(1085), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(653), + [anon_sym_const] = ACTIONS(655), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(657), + [anon_sym_continue] = ACTIONS(659), + [anon_sym_break] = ACTIONS(661), + [anon_sym_defer] = ACTIONS(663), + [anon_sym_assert] = ACTIONS(665), + [anon_sym_nextcase] = ACTIONS(667), + [anon_sym_switch] = ACTIONS(669), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(671), + [anon_sym_for] = ACTIONS(673), + [anon_sym_foreach] = ACTIONS(675), + [anon_sym_foreach_r] = ACTIONS(675), + [anon_sym_while] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(681), + [anon_sym_DOLLARassert] = ACTIONS(683), + [anon_sym_DOLLARerror] = ACTIONS(685), + [anon_sym_DOLLARecho] = ACTIONS(687), + [anon_sym_DOLLARif] = ACTIONS(689), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(691), + [anon_sym_DOLLARforeach] = ACTIONS(695), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [100] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(100), [sym_doc_comment] = STATE(100), [sym_block_comment] = STATE(100), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1163), - [sym_const_declaration] = STATE(852), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(823), - [sym_expr_stmt] = STATE(823), - [sym_var_decl] = STATE(2193), - [sym_var_stmt] = STATE(823), - [sym_return_stmt] = STATE(823), - [sym_continue_stmt] = STATE(823), - [sym_break_stmt] = STATE(823), - [sym_defer_stmt] = STATE(823), - [sym_assert_stmt] = STATE(823), - [sym_declaration_stmt] = STATE(823), - [sym_nextcase_stmt] = STATE(823), - [sym_switch_stmt] = STATE(823), - [sym_if_stmt] = STATE(823), - [sym_for_stmt] = STATE(823), - [sym_foreach_stmt] = STATE(823), - [sym_while_stmt] = STATE(823), - [sym_do_stmt] = STATE(823), - [sym_asm_block_stmt] = STATE(823), - [sym_ct_assert_stmt] = STATE(823), - [sym_ct_echo_stmt] = STATE(823), - [sym_ct_if_stmt] = STATE(823), - [sym__ct_switch] = STATE(1557), - [sym_ct_switch_stmt] = STATE(823), - [sym_ct_for_stmt] = STATE(823), - [sym_ct_foreach_stmt] = STATE(823), - [sym__expr] = STATE(1269), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1558), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1094), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(660), - [anon_sym_const] = ACTIONS(662), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(664), - [anon_sym_continue] = ACTIONS(666), - [anon_sym_break] = ACTIONS(668), - [anon_sym_defer] = ACTIONS(670), - [anon_sym_assert] = ACTIONS(672), - [anon_sym_nextcase] = ACTIONS(674), - [anon_sym_switch] = ACTIONS(676), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_foreach] = ACTIONS(682), - [anon_sym_foreach_r] = ACTIONS(682), - [anon_sym_while] = ACTIONS(684), - [anon_sym_do] = ACTIONS(686), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(688), - [anon_sym_DOLLARassert] = ACTIONS(690), - [anon_sym_DOLLARerror] = ACTIONS(692), - [anon_sym_DOLLARecho] = ACTIONS(694), - [anon_sym_DOLLARif] = ACTIONS(696), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(698), - [anon_sym_DOLLARforeach] = ACTIONS(702), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1165), + [sym_const_declaration] = STATE(555), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(503), + [sym_expr_stmt] = STATE(503), + [sym_var_decl] = STATE(2183), + [sym_var_stmt] = STATE(503), + [sym_return_stmt] = STATE(503), + [sym_continue_stmt] = STATE(503), + [sym_break_stmt] = STATE(503), + [sym_defer_stmt] = STATE(503), + [sym_assert_stmt] = STATE(503), + [sym_declaration_stmt] = STATE(503), + [sym_nextcase_stmt] = STATE(503), + [sym_switch_stmt] = STATE(503), + [sym_if_stmt] = STATE(503), + [sym_for_stmt] = STATE(503), + [sym_foreach_stmt] = STATE(503), + [sym_while_stmt] = STATE(503), + [sym_do_stmt] = STATE(503), + [sym_asm_block_stmt] = STATE(503), + [sym_ct_assert_stmt] = STATE(503), + [sym_ct_echo_stmt] = STATE(503), + [sym_ct_if_stmt] = STATE(503), + [sym__ct_switch] = STATE(1508), + [sym_ct_switch_stmt] = STATE(503), + [sym_ct_for_stmt] = STATE(503), + [sym_ct_foreach_stmt] = STATE(503), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1342), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(401), + [anon_sym_const] = ACTIONS(403), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_break] = ACTIONS(409), + [anon_sym_defer] = ACTIONS(411), + [anon_sym_assert] = ACTIONS(413), + [anon_sym_nextcase] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(419), + [anon_sym_for] = ACTIONS(421), + [anon_sym_foreach] = ACTIONS(423), + [anon_sym_foreach_r] = ACTIONS(423), + [anon_sym_while] = ACTIONS(425), + [anon_sym_do] = ACTIONS(427), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(429), + [anon_sym_DOLLARassert] = ACTIONS(431), + [anon_sym_DOLLARerror] = ACTIONS(433), + [anon_sym_DOLLARecho] = ACTIONS(435), + [anon_sym_DOLLARif] = ACTIONS(437), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(443), + [anon_sym_DOLLARforeach] = ACTIONS(445), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [101] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(101), [sym_doc_comment] = STATE(101), [sym_block_comment] = STATE(101), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1163), - [sym_const_declaration] = STATE(852), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(808), - [sym_expr_stmt] = STATE(808), - [sym_var_decl] = STATE(2193), - [sym_var_stmt] = STATE(808), - [sym_return_stmt] = STATE(808), - [sym_continue_stmt] = STATE(808), - [sym_break_stmt] = STATE(808), - [sym_defer_stmt] = STATE(808), - [sym_assert_stmt] = STATE(808), - [sym_declaration_stmt] = STATE(808), - [sym_nextcase_stmt] = STATE(808), - [sym_switch_stmt] = STATE(808), - [sym_if_stmt] = STATE(808), - [sym_for_stmt] = STATE(808), - [sym_foreach_stmt] = STATE(808), - [sym_while_stmt] = STATE(808), - [sym_do_stmt] = STATE(808), - [sym_asm_block_stmt] = STATE(808), - [sym_ct_assert_stmt] = STATE(808), - [sym_ct_echo_stmt] = STATE(808), - [sym_ct_if_stmt] = STATE(808), - [sym__ct_switch] = STATE(1557), - [sym_ct_switch_stmt] = STATE(808), - [sym_ct_for_stmt] = STATE(808), - [sym_ct_foreach_stmt] = STATE(808), - [sym__expr] = STATE(1269), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1558), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1096), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(660), - [anon_sym_const] = ACTIONS(662), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(664), - [anon_sym_continue] = ACTIONS(666), - [anon_sym_break] = ACTIONS(668), - [anon_sym_defer] = ACTIONS(670), - [anon_sym_assert] = ACTIONS(672), - [anon_sym_nextcase] = ACTIONS(674), - [anon_sym_switch] = ACTIONS(676), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_foreach] = ACTIONS(682), - [anon_sym_foreach_r] = ACTIONS(682), - [anon_sym_while] = ACTIONS(684), - [anon_sym_do] = ACTIONS(686), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(688), - [anon_sym_DOLLARassert] = ACTIONS(690), - [anon_sym_DOLLARerror] = ACTIONS(692), - [anon_sym_DOLLARecho] = ACTIONS(694), - [anon_sym_DOLLARif] = ACTIONS(696), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(698), - [anon_sym_DOLLARforeach] = ACTIONS(702), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1173), + [sym_const_declaration] = STATE(716), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(749), + [sym_expr_stmt] = STATE(749), + [sym_var_decl] = STATE(1937), + [sym_var_stmt] = STATE(749), + [sym_return_stmt] = STATE(749), + [sym_continue_stmt] = STATE(749), + [sym_break_stmt] = STATE(749), + [sym_defer_stmt] = STATE(749), + [sym_assert_stmt] = STATE(749), + [sym_declaration_stmt] = STATE(749), + [sym_nextcase_stmt] = STATE(749), + [sym_switch_stmt] = STATE(749), + [sym_if_stmt] = STATE(749), + [sym_for_stmt] = STATE(749), + [sym_foreach_stmt] = STATE(749), + [sym_while_stmt] = STATE(749), + [sym_do_stmt] = STATE(749), + [sym_asm_block_stmt] = STATE(749), + [sym_ct_assert_stmt] = STATE(749), + [sym_ct_echo_stmt] = STATE(749), + [sym_ct_if_stmt] = STATE(749), + [sym__ct_switch] = STATE(1545), + [sym_ct_switch_stmt] = STATE(749), + [sym_ct_for_stmt] = STATE(749), + [sym_ct_foreach_stmt] = STATE(749), + [sym__expr] = STATE(1109), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1338), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(1089), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(607), + [anon_sym_const] = ACTIONS(609), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_break] = ACTIONS(615), + [anon_sym_defer] = ACTIONS(617), + [anon_sym_assert] = ACTIONS(619), + [anon_sym_nextcase] = ACTIONS(621), + [anon_sym_switch] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(625), + [anon_sym_for] = ACTIONS(627), + [anon_sym_foreach] = ACTIONS(629), + [anon_sym_foreach_r] = ACTIONS(629), + [anon_sym_while] = ACTIONS(631), + [anon_sym_do] = ACTIONS(633), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(635), + [anon_sym_DOLLARassert] = ACTIONS(637), + [anon_sym_DOLLARerror] = ACTIONS(639), + [anon_sym_DOLLARecho] = ACTIONS(641), + [anon_sym_DOLLARif] = ACTIONS(643), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(647), + [anon_sym_DOLLARforeach] = ACTIONS(649), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [102] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(102), [sym_doc_comment] = STATE(102), [sym_block_comment] = STATE(102), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1163), - [sym_const_declaration] = STATE(852), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(807), - [sym_expr_stmt] = STATE(807), - [sym_var_decl] = STATE(2193), - [sym_var_stmt] = STATE(807), - [sym_return_stmt] = STATE(807), - [sym_continue_stmt] = STATE(807), - [sym_break_stmt] = STATE(807), - [sym_defer_stmt] = STATE(807), - [sym_assert_stmt] = STATE(807), - [sym_declaration_stmt] = STATE(807), - [sym_nextcase_stmt] = STATE(807), - [sym_switch_stmt] = STATE(807), - [sym_if_stmt] = STATE(807), - [sym_for_stmt] = STATE(807), - [sym_foreach_stmt] = STATE(807), - [sym_while_stmt] = STATE(807), - [sym_do_stmt] = STATE(807), - [sym_asm_block_stmt] = STATE(807), - [sym_ct_assert_stmt] = STATE(807), - [sym_ct_echo_stmt] = STATE(807), - [sym_ct_if_stmt] = STATE(807), - [sym__ct_switch] = STATE(1557), - [sym_ct_switch_stmt] = STATE(807), - [sym_ct_for_stmt] = STATE(807), - [sym_ct_foreach_stmt] = STATE(807), - [sym__expr] = STATE(1269), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1558), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1098), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(660), - [anon_sym_const] = ACTIONS(662), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(664), - [anon_sym_continue] = ACTIONS(666), - [anon_sym_break] = ACTIONS(668), - [anon_sym_defer] = ACTIONS(670), - [anon_sym_assert] = ACTIONS(672), - [anon_sym_nextcase] = ACTIONS(674), - [anon_sym_switch] = ACTIONS(676), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_foreach] = ACTIONS(682), - [anon_sym_foreach_r] = ACTIONS(682), - [anon_sym_while] = ACTIONS(684), - [anon_sym_do] = ACTIONS(686), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(688), - [anon_sym_DOLLARassert] = ACTIONS(690), - [anon_sym_DOLLARerror] = ACTIONS(692), - [anon_sym_DOLLARecho] = ACTIONS(694), - [anon_sym_DOLLARif] = ACTIONS(696), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(698), - [anon_sym_DOLLARforeach] = ACTIONS(702), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1165), + [sym_const_declaration] = STATE(555), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(499), + [sym_expr_stmt] = STATE(499), + [sym_var_decl] = STATE(2183), + [sym_var_stmt] = STATE(499), + [sym_return_stmt] = STATE(499), + [sym_continue_stmt] = STATE(499), + [sym_break_stmt] = STATE(499), + [sym_defer_stmt] = STATE(499), + [sym_assert_stmt] = STATE(499), + [sym_declaration_stmt] = STATE(499), + [sym_nextcase_stmt] = STATE(499), + [sym_switch_stmt] = STATE(499), + [sym_if_stmt] = STATE(499), + [sym_for_stmt] = STATE(499), + [sym_foreach_stmt] = STATE(499), + [sym_while_stmt] = STATE(499), + [sym_do_stmt] = STATE(499), + [sym_asm_block_stmt] = STATE(499), + [sym_ct_assert_stmt] = STATE(499), + [sym_ct_echo_stmt] = STATE(499), + [sym_ct_if_stmt] = STATE(499), + [sym__ct_switch] = STATE(1508), + [sym_ct_switch_stmt] = STATE(499), + [sym_ct_for_stmt] = STATE(499), + [sym_ct_foreach_stmt] = STATE(499), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1342), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(1091), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(401), + [anon_sym_const] = ACTIONS(403), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_break] = ACTIONS(409), + [anon_sym_defer] = ACTIONS(411), + [anon_sym_assert] = ACTIONS(413), + [anon_sym_nextcase] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(419), + [anon_sym_for] = ACTIONS(421), + [anon_sym_foreach] = ACTIONS(423), + [anon_sym_foreach_r] = ACTIONS(423), + [anon_sym_while] = ACTIONS(425), + [anon_sym_do] = ACTIONS(427), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(429), + [anon_sym_DOLLARassert] = ACTIONS(431), + [anon_sym_DOLLARerror] = ACTIONS(433), + [anon_sym_DOLLARecho] = ACTIONS(435), + [anon_sym_DOLLARif] = ACTIONS(437), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(443), + [anon_sym_DOLLARforeach] = ACTIONS(445), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [103] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(103), [sym_doc_comment] = STATE(103), [sym_block_comment] = STATE(103), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1169), - [sym_const_declaration] = STATE(480), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(519), - [sym_expr_stmt] = STATE(519), - [sym_var_decl] = STATE(2091), - [sym_var_stmt] = STATE(519), - [sym_return_stmt] = STATE(519), - [sym_continue_stmt] = STATE(519), - [sym_break_stmt] = STATE(519), - [sym_defer_stmt] = STATE(519), - [sym_assert_stmt] = STATE(519), - [sym_declaration_stmt] = STATE(519), - [sym_nextcase_stmt] = STATE(519), - [sym_switch_stmt] = STATE(519), - [sym_if_stmt] = STATE(519), - [sym_for_stmt] = STATE(519), - [sym_foreach_stmt] = STATE(519), - [sym_while_stmt] = STATE(519), - [sym_do_stmt] = STATE(519), - [sym_asm_block_stmt] = STATE(519), - [sym_ct_assert_stmt] = STATE(519), - [sym_ct_echo_stmt] = STATE(519), - [sym_ct_if_stmt] = STATE(519), - [sym__ct_switch] = STATE(1646), - [sym_ct_switch_stmt] = STATE(519), - [sym_ct_for_stmt] = STATE(519), - [sym_ct_foreach_stmt] = STATE(519), - [sym__expr] = STATE(1271), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1647), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(201), - [anon_sym_const] = ACTIONS(203), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(205), - [anon_sym_continue] = ACTIONS(207), - [anon_sym_break] = ACTIONS(209), - [anon_sym_defer] = ACTIONS(211), - [anon_sym_assert] = ACTIONS(213), - [anon_sym_nextcase] = ACTIONS(215), - [anon_sym_switch] = ACTIONS(217), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(219), - [anon_sym_for] = ACTIONS(221), - [anon_sym_foreach] = ACTIONS(223), - [anon_sym_foreach_r] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_do] = ACTIONS(227), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(229), - [anon_sym_DOLLARassert] = ACTIONS(231), - [anon_sym_DOLLARerror] = ACTIONS(233), - [anon_sym_DOLLARecho] = ACTIONS(235), - [anon_sym_DOLLARif] = ACTIONS(237), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(241), - [anon_sym_DOLLARforeach] = ACTIONS(243), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1173), + [sym_const_declaration] = STATE(716), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(748), + [sym_expr_stmt] = STATE(748), + [sym_var_decl] = STATE(1937), + [sym_var_stmt] = STATE(748), + [sym_return_stmt] = STATE(748), + [sym_continue_stmt] = STATE(748), + [sym_break_stmt] = STATE(748), + [sym_defer_stmt] = STATE(748), + [sym_assert_stmt] = STATE(748), + [sym_declaration_stmt] = STATE(748), + [sym_nextcase_stmt] = STATE(748), + [sym_switch_stmt] = STATE(748), + [sym_if_stmt] = STATE(748), + [sym_for_stmt] = STATE(748), + [sym_foreach_stmt] = STATE(748), + [sym_while_stmt] = STATE(748), + [sym_do_stmt] = STATE(748), + [sym_asm_block_stmt] = STATE(748), + [sym_ct_assert_stmt] = STATE(748), + [sym_ct_echo_stmt] = STATE(748), + [sym_ct_if_stmt] = STATE(748), + [sym__ct_switch] = STATE(1545), + [sym_ct_switch_stmt] = STATE(748), + [sym_ct_for_stmt] = STATE(748), + [sym_ct_foreach_stmt] = STATE(748), + [sym__expr] = STATE(1109), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1338), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(1093), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(607), + [anon_sym_const] = ACTIONS(609), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_break] = ACTIONS(615), + [anon_sym_defer] = ACTIONS(617), + [anon_sym_assert] = ACTIONS(619), + [anon_sym_nextcase] = ACTIONS(621), + [anon_sym_switch] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(625), + [anon_sym_for] = ACTIONS(627), + [anon_sym_foreach] = ACTIONS(629), + [anon_sym_foreach_r] = ACTIONS(629), + [anon_sym_while] = ACTIONS(631), + [anon_sym_do] = ACTIONS(633), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(635), + [anon_sym_DOLLARassert] = ACTIONS(637), + [anon_sym_DOLLARerror] = ACTIONS(639), + [anon_sym_DOLLARecho] = ACTIONS(641), + [anon_sym_DOLLARif] = ACTIONS(643), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(647), + [anon_sym_DOLLARforeach] = ACTIONS(649), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [104] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(104), [sym_doc_comment] = STATE(104), [sym_block_comment] = STATE(104), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1169), - [sym_const_declaration] = STATE(480), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(518), - [sym_expr_stmt] = STATE(518), - [sym_var_decl] = STATE(2091), - [sym_var_stmt] = STATE(518), - [sym_return_stmt] = STATE(518), - [sym_continue_stmt] = STATE(518), - [sym_break_stmt] = STATE(518), - [sym_defer_stmt] = STATE(518), - [sym_assert_stmt] = STATE(518), - [sym_declaration_stmt] = STATE(518), - [sym_nextcase_stmt] = STATE(518), - [sym_switch_stmt] = STATE(518), - [sym_if_stmt] = STATE(518), - [sym_for_stmt] = STATE(518), - [sym_foreach_stmt] = STATE(518), - [sym_while_stmt] = STATE(518), - [sym_do_stmt] = STATE(518), - [sym_asm_block_stmt] = STATE(518), - [sym_ct_assert_stmt] = STATE(518), - [sym_ct_echo_stmt] = STATE(518), - [sym_ct_if_stmt] = STATE(518), - [sym__ct_switch] = STATE(1646), - [sym_ct_switch_stmt] = STATE(518), - [sym_ct_for_stmt] = STATE(518), - [sym_ct_foreach_stmt] = STATE(518), - [sym__expr] = STATE(1271), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1647), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1102), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(201), - [anon_sym_const] = ACTIONS(203), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(205), - [anon_sym_continue] = ACTIONS(207), - [anon_sym_break] = ACTIONS(209), - [anon_sym_defer] = ACTIONS(211), - [anon_sym_assert] = ACTIONS(213), - [anon_sym_nextcase] = ACTIONS(215), - [anon_sym_switch] = ACTIONS(217), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(219), - [anon_sym_for] = ACTIONS(221), - [anon_sym_foreach] = ACTIONS(223), - [anon_sym_foreach_r] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_do] = ACTIONS(227), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(229), - [anon_sym_DOLLARassert] = ACTIONS(231), - [anon_sym_DOLLARerror] = ACTIONS(233), - [anon_sym_DOLLARecho] = ACTIONS(235), - [anon_sym_DOLLARif] = ACTIONS(237), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(241), - [anon_sym_DOLLARforeach] = ACTIONS(243), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), - }, - [105] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(105), - [sym_doc_comment] = STATE(105), - [sym_block_comment] = STATE(105), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1163), - [sym_const_declaration] = STATE(852), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(806), - [sym_expr_stmt] = STATE(806), - [sym_var_decl] = STATE(2193), - [sym_var_stmt] = STATE(806), - [sym_return_stmt] = STATE(806), - [sym_continue_stmt] = STATE(806), - [sym_break_stmt] = STATE(806), - [sym_defer_stmt] = STATE(806), - [sym_assert_stmt] = STATE(806), - [sym_declaration_stmt] = STATE(806), - [sym_nextcase_stmt] = STATE(806), - [sym_switch_stmt] = STATE(806), - [sym_if_stmt] = STATE(806), - [sym_for_stmt] = STATE(806), - [sym_foreach_stmt] = STATE(806), - [sym_while_stmt] = STATE(806), - [sym_do_stmt] = STATE(806), - [sym_asm_block_stmt] = STATE(806), - [sym_ct_assert_stmt] = STATE(806), - [sym_ct_echo_stmt] = STATE(806), - [sym_ct_if_stmt] = STATE(806), - [sym__ct_switch] = STATE(1557), - [sym_ct_switch_stmt] = STATE(806), - [sym_ct_for_stmt] = STATE(806), - [sym_ct_foreach_stmt] = STATE(806), - [sym__expr] = STATE(1269), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1558), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1104), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(660), - [anon_sym_const] = ACTIONS(662), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(664), - [anon_sym_continue] = ACTIONS(666), - [anon_sym_break] = ACTIONS(668), - [anon_sym_defer] = ACTIONS(670), - [anon_sym_assert] = ACTIONS(672), - [anon_sym_nextcase] = ACTIONS(674), - [anon_sym_switch] = ACTIONS(676), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_foreach] = ACTIONS(682), - [anon_sym_foreach_r] = ACTIONS(682), - [anon_sym_while] = ACTIONS(684), - [anon_sym_do] = ACTIONS(686), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(688), - [anon_sym_DOLLARassert] = ACTIONS(690), - [anon_sym_DOLLARerror] = ACTIONS(692), - [anon_sym_DOLLARecho] = ACTIONS(694), - [anon_sym_DOLLARif] = ACTIONS(696), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(698), - [anon_sym_DOLLARforeach] = ACTIONS(702), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), - }, - [106] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(106), - [sym_doc_comment] = STATE(106), - [sym_block_comment] = STATE(106), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1169), - [sym_const_declaration] = STATE(480), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(514), - [sym_expr_stmt] = STATE(514), - [sym_var_decl] = STATE(2091), - [sym_var_stmt] = STATE(514), - [sym_return_stmt] = STATE(514), - [sym_continue_stmt] = STATE(514), - [sym_break_stmt] = STATE(514), - [sym_defer_stmt] = STATE(514), - [sym_assert_stmt] = STATE(514), - [sym_declaration_stmt] = STATE(514), - [sym_nextcase_stmt] = STATE(514), - [sym_switch_stmt] = STATE(514), - [sym_if_stmt] = STATE(514), - [sym_for_stmt] = STATE(514), - [sym_foreach_stmt] = STATE(514), - [sym_while_stmt] = STATE(514), - [sym_do_stmt] = STATE(514), - [sym_asm_block_stmt] = STATE(514), - [sym_ct_assert_stmt] = STATE(514), - [sym_ct_echo_stmt] = STATE(514), - [sym_ct_if_stmt] = STATE(514), - [sym__ct_switch] = STATE(1646), - [sym_ct_switch_stmt] = STATE(514), - [sym_ct_for_stmt] = STATE(514), - [sym_ct_foreach_stmt] = STATE(514), - [sym__expr] = STATE(1271), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1647), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1106), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(201), - [anon_sym_const] = ACTIONS(203), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(205), - [anon_sym_continue] = ACTIONS(207), - [anon_sym_break] = ACTIONS(209), - [anon_sym_defer] = ACTIONS(211), - [anon_sym_assert] = ACTIONS(213), - [anon_sym_nextcase] = ACTIONS(215), - [anon_sym_switch] = ACTIONS(217), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(219), - [anon_sym_for] = ACTIONS(221), - [anon_sym_foreach] = ACTIONS(223), - [anon_sym_foreach_r] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_do] = ACTIONS(227), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(229), - [anon_sym_DOLLARassert] = ACTIONS(231), - [anon_sym_DOLLARerror] = ACTIONS(233), - [anon_sym_DOLLARecho] = ACTIONS(235), - [anon_sym_DOLLARif] = ACTIONS(237), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(241), - [anon_sym_DOLLARforeach] = ACTIONS(243), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), - }, - [107] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(107), - [sym_doc_comment] = STATE(107), - [sym_block_comment] = STATE(107), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1169), - [sym_const_declaration] = STATE(480), - [sym_lambda_declaration] = STATE(1679), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1165), + [sym_const_declaration] = STATE(555), + [sym_lambda_declaration] = STATE(1480), [sym_compound_stmt] = STATE(500), [sym_expr_stmt] = STATE(500), - [sym_var_decl] = STATE(2091), + [sym_var_decl] = STATE(2183), [sym_var_stmt] = STATE(500), [sym_return_stmt] = STATE(500), [sym_continue_stmt] = STATE(500), @@ -33114,537 +31782,1599 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_assert_stmt] = STATE(500), [sym_ct_echo_stmt] = STATE(500), [sym_ct_if_stmt] = STATE(500), - [sym__ct_switch] = STATE(1646), + [sym__ct_switch] = STATE(1508), [sym_ct_switch_stmt] = STATE(500), [sym_ct_for_stmt] = STATE(500), [sym_ct_foreach_stmt] = STATE(500), - [sym__expr] = STATE(1271), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1647), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1108), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(201), - [anon_sym_const] = ACTIONS(203), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(205), - [anon_sym_continue] = ACTIONS(207), - [anon_sym_break] = ACTIONS(209), - [anon_sym_defer] = ACTIONS(211), - [anon_sym_assert] = ACTIONS(213), - [anon_sym_nextcase] = ACTIONS(215), - [anon_sym_switch] = ACTIONS(217), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(219), - [anon_sym_for] = ACTIONS(221), - [anon_sym_foreach] = ACTIONS(223), - [anon_sym_foreach_r] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_do] = ACTIONS(227), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(229), - [anon_sym_DOLLARassert] = ACTIONS(231), - [anon_sym_DOLLARerror] = ACTIONS(233), - [anon_sym_DOLLARecho] = ACTIONS(235), - [anon_sym_DOLLARif] = ACTIONS(237), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(241), - [anon_sym_DOLLARforeach] = ACTIONS(243), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1342), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(1095), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(401), + [anon_sym_const] = ACTIONS(403), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_break] = ACTIONS(409), + [anon_sym_defer] = ACTIONS(411), + [anon_sym_assert] = ACTIONS(413), + [anon_sym_nextcase] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(419), + [anon_sym_for] = ACTIONS(421), + [anon_sym_foreach] = ACTIONS(423), + [anon_sym_foreach_r] = ACTIONS(423), + [anon_sym_while] = ACTIONS(425), + [anon_sym_do] = ACTIONS(427), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(429), + [anon_sym_DOLLARassert] = ACTIONS(431), + [anon_sym_DOLLARerror] = ACTIONS(433), + [anon_sym_DOLLARecho] = ACTIONS(435), + [anon_sym_DOLLARif] = ACTIONS(437), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(443), + [anon_sym_DOLLARforeach] = ACTIONS(445), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), + }, + [105] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(105), + [sym_doc_comment] = STATE(105), + [sym_block_comment] = STATE(105), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1173), + [sym_const_declaration] = STATE(716), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(747), + [sym_expr_stmt] = STATE(747), + [sym_var_decl] = STATE(1937), + [sym_var_stmt] = STATE(747), + [sym_return_stmt] = STATE(747), + [sym_continue_stmt] = STATE(747), + [sym_break_stmt] = STATE(747), + [sym_defer_stmt] = STATE(747), + [sym_assert_stmt] = STATE(747), + [sym_declaration_stmt] = STATE(747), + [sym_nextcase_stmt] = STATE(747), + [sym_switch_stmt] = STATE(747), + [sym_if_stmt] = STATE(747), + [sym_for_stmt] = STATE(747), + [sym_foreach_stmt] = STATE(747), + [sym_while_stmt] = STATE(747), + [sym_do_stmt] = STATE(747), + [sym_asm_block_stmt] = STATE(747), + [sym_ct_assert_stmt] = STATE(747), + [sym_ct_echo_stmt] = STATE(747), + [sym_ct_if_stmt] = STATE(747), + [sym__ct_switch] = STATE(1545), + [sym_ct_switch_stmt] = STATE(747), + [sym_ct_for_stmt] = STATE(747), + [sym_ct_foreach_stmt] = STATE(747), + [sym__expr] = STATE(1109), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1338), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(1097), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(607), + [anon_sym_const] = ACTIONS(609), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_break] = ACTIONS(615), + [anon_sym_defer] = ACTIONS(617), + [anon_sym_assert] = ACTIONS(619), + [anon_sym_nextcase] = ACTIONS(621), + [anon_sym_switch] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(625), + [anon_sym_for] = ACTIONS(627), + [anon_sym_foreach] = ACTIONS(629), + [anon_sym_foreach_r] = ACTIONS(629), + [anon_sym_while] = ACTIONS(631), + [anon_sym_do] = ACTIONS(633), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(635), + [anon_sym_DOLLARassert] = ACTIONS(637), + [anon_sym_DOLLARerror] = ACTIONS(639), + [anon_sym_DOLLARecho] = ACTIONS(641), + [anon_sym_DOLLARif] = ACTIONS(643), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(647), + [anon_sym_DOLLARforeach] = ACTIONS(649), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), + }, + [106] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(106), + [sym_doc_comment] = STATE(106), + [sym_block_comment] = STATE(106), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1173), + [sym_const_declaration] = STATE(716), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(764), + [sym_expr_stmt] = STATE(764), + [sym_var_decl] = STATE(1937), + [sym_var_stmt] = STATE(764), + [sym_return_stmt] = STATE(764), + [sym_continue_stmt] = STATE(764), + [sym_break_stmt] = STATE(764), + [sym_defer_stmt] = STATE(764), + [sym_assert_stmt] = STATE(764), + [sym_declaration_stmt] = STATE(764), + [sym_nextcase_stmt] = STATE(764), + [sym_switch_stmt] = STATE(764), + [sym_if_stmt] = STATE(764), + [sym_for_stmt] = STATE(764), + [sym_foreach_stmt] = STATE(764), + [sym_while_stmt] = STATE(764), + [sym_do_stmt] = STATE(764), + [sym_asm_block_stmt] = STATE(764), + [sym_ct_assert_stmt] = STATE(764), + [sym_ct_echo_stmt] = STATE(764), + [sym_ct_if_stmt] = STATE(764), + [sym__ct_switch] = STATE(1545), + [sym_ct_switch_stmt] = STATE(764), + [sym_ct_for_stmt] = STATE(764), + [sym_ct_foreach_stmt] = STATE(764), + [sym__expr] = STATE(1109), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1338), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(1099), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(607), + [anon_sym_const] = ACTIONS(609), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_break] = ACTIONS(615), + [anon_sym_defer] = ACTIONS(617), + [anon_sym_assert] = ACTIONS(619), + [anon_sym_nextcase] = ACTIONS(621), + [anon_sym_switch] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(625), + [anon_sym_for] = ACTIONS(627), + [anon_sym_foreach] = ACTIONS(629), + [anon_sym_foreach_r] = ACTIONS(629), + [anon_sym_while] = ACTIONS(631), + [anon_sym_do] = ACTIONS(633), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(635), + [anon_sym_DOLLARassert] = ACTIONS(637), + [anon_sym_DOLLARerror] = ACTIONS(639), + [anon_sym_DOLLARecho] = ACTIONS(641), + [anon_sym_DOLLARif] = ACTIONS(643), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(647), + [anon_sym_DOLLARforeach] = ACTIONS(649), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), + }, + [107] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(107), + [sym_doc_comment] = STATE(107), + [sym_block_comment] = STATE(107), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1173), + [sym_const_declaration] = STATE(716), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(738), + [sym_expr_stmt] = STATE(738), + [sym_var_decl] = STATE(1937), + [sym_var_stmt] = STATE(738), + [sym_return_stmt] = STATE(738), + [sym_continue_stmt] = STATE(738), + [sym_break_stmt] = STATE(738), + [sym_defer_stmt] = STATE(738), + [sym_assert_stmt] = STATE(738), + [sym_declaration_stmt] = STATE(738), + [sym_nextcase_stmt] = STATE(738), + [sym_switch_stmt] = STATE(738), + [sym_if_stmt] = STATE(738), + [sym_for_stmt] = STATE(738), + [sym_foreach_stmt] = STATE(738), + [sym_while_stmt] = STATE(738), + [sym_do_stmt] = STATE(738), + [sym_asm_block_stmt] = STATE(738), + [sym_ct_assert_stmt] = STATE(738), + [sym_ct_echo_stmt] = STATE(738), + [sym_ct_if_stmt] = STATE(738), + [sym__ct_switch] = STATE(1545), + [sym_ct_switch_stmt] = STATE(738), + [sym_ct_for_stmt] = STATE(738), + [sym_ct_foreach_stmt] = STATE(738), + [sym__expr] = STATE(1109), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1338), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(1101), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(607), + [anon_sym_const] = ACTIONS(609), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_break] = ACTIONS(615), + [anon_sym_defer] = ACTIONS(617), + [anon_sym_assert] = ACTIONS(619), + [anon_sym_nextcase] = ACTIONS(621), + [anon_sym_switch] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(625), + [anon_sym_for] = ACTIONS(627), + [anon_sym_foreach] = ACTIONS(629), + [anon_sym_foreach_r] = ACTIONS(629), + [anon_sym_while] = ACTIONS(631), + [anon_sym_do] = ACTIONS(633), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(635), + [anon_sym_DOLLARassert] = ACTIONS(637), + [anon_sym_DOLLARerror] = ACTIONS(639), + [anon_sym_DOLLARecho] = ACTIONS(641), + [anon_sym_DOLLARif] = ACTIONS(643), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(647), + [anon_sym_DOLLARforeach] = ACTIONS(649), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [108] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(108), [sym_doc_comment] = STATE(108), [sym_block_comment] = STATE(108), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1163), - [sym_const_declaration] = STATE(852), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(769), - [sym_expr_stmt] = STATE(769), - [sym_var_decl] = STATE(2193), - [sym_var_stmt] = STATE(769), - [sym_return_stmt] = STATE(769), - [sym_continue_stmt] = STATE(769), - [sym_break_stmt] = STATE(769), - [sym_defer_stmt] = STATE(769), - [sym_assert_stmt] = STATE(769), - [sym_declaration_stmt] = STATE(769), - [sym_nextcase_stmt] = STATE(769), - [sym_switch_stmt] = STATE(769), - [sym_if_stmt] = STATE(769), - [sym_for_stmt] = STATE(769), - [sym_foreach_stmt] = STATE(769), - [sym_while_stmt] = STATE(769), - [sym_do_stmt] = STATE(769), - [sym_asm_block_stmt] = STATE(769), - [sym_ct_assert_stmt] = STATE(769), - [sym_ct_echo_stmt] = STATE(769), - [sym_ct_if_stmt] = STATE(769), - [sym__ct_switch] = STATE(1557), - [sym_ct_switch_stmt] = STATE(769), - [sym_ct_for_stmt] = STATE(769), - [sym_ct_foreach_stmt] = STATE(769), - [sym__expr] = STATE(1269), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1558), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1110), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(660), - [anon_sym_const] = ACTIONS(662), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(664), - [anon_sym_continue] = ACTIONS(666), - [anon_sym_break] = ACTIONS(668), - [anon_sym_defer] = ACTIONS(670), - [anon_sym_assert] = ACTIONS(672), - [anon_sym_nextcase] = ACTIONS(674), - [anon_sym_switch] = ACTIONS(676), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_foreach] = ACTIONS(682), - [anon_sym_foreach_r] = ACTIONS(682), - [anon_sym_while] = ACTIONS(684), - [anon_sym_do] = ACTIONS(686), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(688), - [anon_sym_DOLLARassert] = ACTIONS(690), - [anon_sym_DOLLARerror] = ACTIONS(692), - [anon_sym_DOLLARecho] = ACTIONS(694), - [anon_sym_DOLLARif] = ACTIONS(696), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(698), - [anon_sym_DOLLARforeach] = ACTIONS(702), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1170), + [sym_const_declaration] = STATE(642), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(692), + [sym_expr_stmt] = STATE(692), + [sym_var_decl] = STATE(1985), + [sym_var_stmt] = STATE(692), + [sym_return_stmt] = STATE(692), + [sym_continue_stmt] = STATE(692), + [sym_break_stmt] = STATE(692), + [sym_defer_stmt] = STATE(692), + [sym_assert_stmt] = STATE(692), + [sym_declaration_stmt] = STATE(692), + [sym_nextcase_stmt] = STATE(692), + [sym_switch_stmt] = STATE(692), + [sym_if_stmt] = STATE(692), + [sym_for_stmt] = STATE(692), + [sym_foreach_stmt] = STATE(692), + [sym_while_stmt] = STATE(692), + [sym_do_stmt] = STATE(692), + [sym_asm_block_stmt] = STATE(692), + [sym_ct_assert_stmt] = STATE(692), + [sym_ct_echo_stmt] = STATE(692), + [sym_ct_if_stmt] = STATE(692), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(692), + [sym_ct_for_stmt] = STATE(692), + [sym_ct_foreach_stmt] = STATE(692), + [sym__expr] = STATE(1100), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1357), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(561), + [anon_sym_const] = ACTIONS(563), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(565), + [anon_sym_continue] = ACTIONS(567), + [anon_sym_break] = ACTIONS(569), + [anon_sym_defer] = ACTIONS(571), + [anon_sym_assert] = ACTIONS(573), + [anon_sym_nextcase] = ACTIONS(575), + [anon_sym_switch] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(579), + [anon_sym_for] = ACTIONS(581), + [anon_sym_foreach] = ACTIONS(583), + [anon_sym_foreach_r] = ACTIONS(583), + [anon_sym_while] = ACTIONS(585), + [anon_sym_do] = ACTIONS(587), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(589), + [anon_sym_DOLLARassert] = ACTIONS(591), + [anon_sym_DOLLARerror] = ACTIONS(593), + [anon_sym_DOLLARecho] = ACTIONS(595), + [anon_sym_DOLLARif] = ACTIONS(597), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(599), + [anon_sym_DOLLARforeach] = ACTIONS(601), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [109] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(109), [sym_doc_comment] = STATE(109), [sym_block_comment] = STATE(109), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1163), - [sym_const_declaration] = STATE(852), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(767), - [sym_expr_stmt] = STATE(767), - [sym_var_decl] = STATE(2193), - [sym_var_stmt] = STATE(767), - [sym_return_stmt] = STATE(767), - [sym_continue_stmt] = STATE(767), - [sym_break_stmt] = STATE(767), - [sym_defer_stmt] = STATE(767), - [sym_assert_stmt] = STATE(767), - [sym_declaration_stmt] = STATE(767), - [sym_nextcase_stmt] = STATE(767), - [sym_switch_stmt] = STATE(767), - [sym_if_stmt] = STATE(767), - [sym_for_stmt] = STATE(767), - [sym_foreach_stmt] = STATE(767), - [sym_while_stmt] = STATE(767), - [sym_do_stmt] = STATE(767), - [sym_asm_block_stmt] = STATE(767), - [sym_ct_assert_stmt] = STATE(767), - [sym_ct_echo_stmt] = STATE(767), - [sym_ct_if_stmt] = STATE(767), - [sym__ct_switch] = STATE(1557), - [sym_ct_switch_stmt] = STATE(767), - [sym_ct_for_stmt] = STATE(767), - [sym_ct_foreach_stmt] = STATE(767), - [sym__expr] = STATE(1269), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1558), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1112), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(660), - [anon_sym_const] = ACTIONS(662), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(664), - [anon_sym_continue] = ACTIONS(666), - [anon_sym_break] = ACTIONS(668), - [anon_sym_defer] = ACTIONS(670), - [anon_sym_assert] = ACTIONS(672), - [anon_sym_nextcase] = ACTIONS(674), - [anon_sym_switch] = ACTIONS(676), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_foreach] = ACTIONS(682), - [anon_sym_foreach_r] = ACTIONS(682), - [anon_sym_while] = ACTIONS(684), - [anon_sym_do] = ACTIONS(686), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(688), - [anon_sym_DOLLARassert] = ACTIONS(690), - [anon_sym_DOLLARerror] = ACTIONS(692), - [anon_sym_DOLLARecho] = ACTIONS(694), - [anon_sym_DOLLARif] = ACTIONS(696), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(698), - [anon_sym_DOLLARforeach] = ACTIONS(702), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1165), + [sym_const_declaration] = STATE(555), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(501), + [sym_expr_stmt] = STATE(501), + [sym_var_decl] = STATE(2183), + [sym_var_stmt] = STATE(501), + [sym_return_stmt] = STATE(501), + [sym_continue_stmt] = STATE(501), + [sym_break_stmt] = STATE(501), + [sym_defer_stmt] = STATE(501), + [sym_assert_stmt] = STATE(501), + [sym_declaration_stmt] = STATE(501), + [sym_nextcase_stmt] = STATE(501), + [sym_switch_stmt] = STATE(501), + [sym_if_stmt] = STATE(501), + [sym_for_stmt] = STATE(501), + [sym_foreach_stmt] = STATE(501), + [sym_while_stmt] = STATE(501), + [sym_do_stmt] = STATE(501), + [sym_asm_block_stmt] = STATE(501), + [sym_ct_assert_stmt] = STATE(501), + [sym_ct_echo_stmt] = STATE(501), + [sym_ct_if_stmt] = STATE(501), + [sym__ct_switch] = STATE(1508), + [sym_ct_switch_stmt] = STATE(501), + [sym_ct_for_stmt] = STATE(501), + [sym_ct_foreach_stmt] = STATE(501), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1342), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(1105), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(401), + [anon_sym_const] = ACTIONS(403), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_break] = ACTIONS(409), + [anon_sym_defer] = ACTIONS(411), + [anon_sym_assert] = ACTIONS(413), + [anon_sym_nextcase] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(419), + [anon_sym_for] = ACTIONS(421), + [anon_sym_foreach] = ACTIONS(423), + [anon_sym_foreach_r] = ACTIONS(423), + [anon_sym_while] = ACTIONS(425), + [anon_sym_do] = ACTIONS(427), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(429), + [anon_sym_DOLLARassert] = ACTIONS(431), + [anon_sym_DOLLARerror] = ACTIONS(433), + [anon_sym_DOLLARecho] = ACTIONS(435), + [anon_sym_DOLLARif] = ACTIONS(437), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(443), + [anon_sym_DOLLARforeach] = ACTIONS(445), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [110] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(110), [sym_doc_comment] = STATE(110), [sym_block_comment] = STATE(110), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1163), - [sym_const_declaration] = STATE(852), - [sym_lambda_declaration] = STATE(1679), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1170), + [sym_const_declaration] = STATE(642), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(691), + [sym_expr_stmt] = STATE(691), + [sym_var_decl] = STATE(1985), + [sym_var_stmt] = STATE(691), + [sym_return_stmt] = STATE(691), + [sym_continue_stmt] = STATE(691), + [sym_break_stmt] = STATE(691), + [sym_defer_stmt] = STATE(691), + [sym_assert_stmt] = STATE(691), + [sym_declaration_stmt] = STATE(691), + [sym_nextcase_stmt] = STATE(691), + [sym_switch_stmt] = STATE(691), + [sym_if_stmt] = STATE(691), + [sym_for_stmt] = STATE(691), + [sym_foreach_stmt] = STATE(691), + [sym_while_stmt] = STATE(691), + [sym_do_stmt] = STATE(691), + [sym_asm_block_stmt] = STATE(691), + [sym_ct_assert_stmt] = STATE(691), + [sym_ct_echo_stmt] = STATE(691), + [sym_ct_if_stmt] = STATE(691), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(691), + [sym_ct_for_stmt] = STATE(691), + [sym_ct_foreach_stmt] = STATE(691), + [sym__expr] = STATE(1100), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1357), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(1107), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(561), + [anon_sym_const] = ACTIONS(563), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(565), + [anon_sym_continue] = ACTIONS(567), + [anon_sym_break] = ACTIONS(569), + [anon_sym_defer] = ACTIONS(571), + [anon_sym_assert] = ACTIONS(573), + [anon_sym_nextcase] = ACTIONS(575), + [anon_sym_switch] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(579), + [anon_sym_for] = ACTIONS(581), + [anon_sym_foreach] = ACTIONS(583), + [anon_sym_foreach_r] = ACTIONS(583), + [anon_sym_while] = ACTIONS(585), + [anon_sym_do] = ACTIONS(587), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(589), + [anon_sym_DOLLARassert] = ACTIONS(591), + [anon_sym_DOLLARerror] = ACTIONS(593), + [anon_sym_DOLLARecho] = ACTIONS(595), + [anon_sym_DOLLARif] = ACTIONS(597), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(599), + [anon_sym_DOLLARforeach] = ACTIONS(601), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), + }, + [111] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(111), + [sym_doc_comment] = STATE(111), + [sym_block_comment] = STATE(111), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1170), + [sym_const_declaration] = STATE(642), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(690), + [sym_expr_stmt] = STATE(690), + [sym_var_decl] = STATE(1985), + [sym_var_stmt] = STATE(690), + [sym_return_stmt] = STATE(690), + [sym_continue_stmt] = STATE(690), + [sym_break_stmt] = STATE(690), + [sym_defer_stmt] = STATE(690), + [sym_assert_stmt] = STATE(690), + [sym_declaration_stmt] = STATE(690), + [sym_nextcase_stmt] = STATE(690), + [sym_switch_stmt] = STATE(690), + [sym_if_stmt] = STATE(690), + [sym_for_stmt] = STATE(690), + [sym_foreach_stmt] = STATE(690), + [sym_while_stmt] = STATE(690), + [sym_do_stmt] = STATE(690), + [sym_asm_block_stmt] = STATE(690), + [sym_ct_assert_stmt] = STATE(690), + [sym_ct_echo_stmt] = STATE(690), + [sym_ct_if_stmt] = STATE(690), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(690), + [sym_ct_for_stmt] = STATE(690), + [sym_ct_foreach_stmt] = STATE(690), + [sym__expr] = STATE(1100), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1357), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(1109), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(561), + [anon_sym_const] = ACTIONS(563), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(565), + [anon_sym_continue] = ACTIONS(567), + [anon_sym_break] = ACTIONS(569), + [anon_sym_defer] = ACTIONS(571), + [anon_sym_assert] = ACTIONS(573), + [anon_sym_nextcase] = ACTIONS(575), + [anon_sym_switch] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(579), + [anon_sym_for] = ACTIONS(581), + [anon_sym_foreach] = ACTIONS(583), + [anon_sym_foreach_r] = ACTIONS(583), + [anon_sym_while] = ACTIONS(585), + [anon_sym_do] = ACTIONS(587), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(589), + [anon_sym_DOLLARassert] = ACTIONS(591), + [anon_sym_DOLLARerror] = ACTIONS(593), + [anon_sym_DOLLARecho] = ACTIONS(595), + [anon_sym_DOLLARif] = ACTIONS(597), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(599), + [anon_sym_DOLLARforeach] = ACTIONS(601), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), + }, + [112] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(112), + [sym_doc_comment] = STATE(112), + [sym_block_comment] = STATE(112), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1165), + [sym_const_declaration] = STATE(555), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(524), + [sym_expr_stmt] = STATE(524), + [sym_var_decl] = STATE(2183), + [sym_var_stmt] = STATE(524), + [sym_return_stmt] = STATE(524), + [sym_continue_stmt] = STATE(524), + [sym_break_stmt] = STATE(524), + [sym_defer_stmt] = STATE(524), + [sym_assert_stmt] = STATE(524), + [sym_declaration_stmt] = STATE(524), + [sym_nextcase_stmt] = STATE(524), + [sym_switch_stmt] = STATE(524), + [sym_if_stmt] = STATE(524), + [sym_for_stmt] = STATE(524), + [sym_foreach_stmt] = STATE(524), + [sym_while_stmt] = STATE(524), + [sym_do_stmt] = STATE(524), + [sym_asm_block_stmt] = STATE(524), + [sym_ct_assert_stmt] = STATE(524), + [sym_ct_echo_stmt] = STATE(524), + [sym_ct_if_stmt] = STATE(524), + [sym__ct_switch] = STATE(1508), + [sym_ct_switch_stmt] = STATE(524), + [sym_ct_for_stmt] = STATE(524), + [sym_ct_foreach_stmt] = STATE(524), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1342), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(1111), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(401), + [anon_sym_const] = ACTIONS(403), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_break] = ACTIONS(409), + [anon_sym_defer] = ACTIONS(411), + [anon_sym_assert] = ACTIONS(413), + [anon_sym_nextcase] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(419), + [anon_sym_for] = ACTIONS(421), + [anon_sym_foreach] = ACTIONS(423), + [anon_sym_foreach_r] = ACTIONS(423), + [anon_sym_while] = ACTIONS(425), + [anon_sym_do] = ACTIONS(427), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(429), + [anon_sym_DOLLARassert] = ACTIONS(431), + [anon_sym_DOLLARerror] = ACTIONS(433), + [anon_sym_DOLLARecho] = ACTIONS(435), + [anon_sym_DOLLARif] = ACTIONS(437), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(443), + [anon_sym_DOLLARforeach] = ACTIONS(445), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), + }, + [113] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(113), + [sym_doc_comment] = STATE(113), + [sym_block_comment] = STATE(113), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1173), + [sym_const_declaration] = STATE(716), + [sym_lambda_declaration] = STATE(1480), [sym_compound_stmt] = STATE(766), [sym_expr_stmt] = STATE(766), - [sym_var_decl] = STATE(2193), + [sym_var_decl] = STATE(1937), [sym_var_stmt] = STATE(766), [sym_return_stmt] = STATE(766), [sym_continue_stmt] = STATE(766), @@ -33663,5599 +33393,4943 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_assert_stmt] = STATE(766), [sym_ct_echo_stmt] = STATE(766), [sym_ct_if_stmt] = STATE(766), - [sym__ct_switch] = STATE(1557), + [sym__ct_switch] = STATE(1545), [sym_ct_switch_stmt] = STATE(766), [sym_ct_for_stmt] = STATE(766), [sym_ct_foreach_stmt] = STATE(766), - [sym__expr] = STATE(1269), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1558), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1114), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(660), - [anon_sym_const] = ACTIONS(662), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(664), - [anon_sym_continue] = ACTIONS(666), - [anon_sym_break] = ACTIONS(668), - [anon_sym_defer] = ACTIONS(670), - [anon_sym_assert] = ACTIONS(672), - [anon_sym_nextcase] = ACTIONS(674), - [anon_sym_switch] = ACTIONS(676), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(678), - [anon_sym_for] = ACTIONS(680), - [anon_sym_foreach] = ACTIONS(682), - [anon_sym_foreach_r] = ACTIONS(682), - [anon_sym_while] = ACTIONS(684), - [anon_sym_do] = ACTIONS(686), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(688), - [anon_sym_DOLLARassert] = ACTIONS(690), - [anon_sym_DOLLARerror] = ACTIONS(692), - [anon_sym_DOLLARecho] = ACTIONS(694), - [anon_sym_DOLLARif] = ACTIONS(696), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(698), - [anon_sym_DOLLARforeach] = ACTIONS(702), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), - }, - [111] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(111), - [sym_doc_comment] = STATE(111), - [sym_block_comment] = STATE(111), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1158), - [sym_const_declaration] = STATE(445), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(457), - [sym_expr_stmt] = STATE(457), - [sym_var_decl] = STATE(2324), - [sym_var_stmt] = STATE(457), - [sym_return_stmt] = STATE(457), - [sym_continue_stmt] = STATE(457), - [sym_break_stmt] = STATE(457), - [sym_defer_stmt] = STATE(457), - [sym_assert_stmt] = STATE(457), - [sym_declaration_stmt] = STATE(457), - [sym_nextcase_stmt] = STATE(457), - [sym_switch_stmt] = STATE(457), - [sym_if_stmt] = STATE(457), - [sym_for_stmt] = STATE(457), - [sym_foreach_stmt] = STATE(457), - [sym_while_stmt] = STATE(457), - [sym_do_stmt] = STATE(457), - [sym_asm_block_stmt] = STATE(457), - [sym_ct_assert_stmt] = STATE(457), - [sym_ct_echo_stmt] = STATE(457), - [sym_ct_if_stmt] = STATE(457), - [sym__ct_switch] = STATE(1606), - [sym_ct_switch_stmt] = STATE(457), - [sym_ct_for_stmt] = STATE(457), - [sym_ct_foreach_stmt] = STATE(457), - [sym__expr] = STATE(1265), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1564), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1116), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_const] = ACTIONS(103), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), - }, - [112] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(112), - [sym_doc_comment] = STATE(112), - [sym_block_comment] = STATE(112), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1158), - [sym_const_declaration] = STATE(445), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(462), - [sym_expr_stmt] = STATE(462), - [sym_var_decl] = STATE(2324), - [sym_var_stmt] = STATE(462), - [sym_return_stmt] = STATE(462), - [sym_continue_stmt] = STATE(462), - [sym_break_stmt] = STATE(462), - [sym_defer_stmt] = STATE(462), - [sym_assert_stmt] = STATE(462), - [sym_declaration_stmt] = STATE(462), - [sym_nextcase_stmt] = STATE(462), - [sym_switch_stmt] = STATE(462), - [sym_if_stmt] = STATE(462), - [sym_for_stmt] = STATE(462), - [sym_foreach_stmt] = STATE(462), - [sym_while_stmt] = STATE(462), - [sym_do_stmt] = STATE(462), - [sym_asm_block_stmt] = STATE(462), - [sym_ct_assert_stmt] = STATE(462), - [sym_ct_echo_stmt] = STATE(462), - [sym_ct_if_stmt] = STATE(462), - [sym__ct_switch] = STATE(1606), - [sym_ct_switch_stmt] = STATE(462), - [sym_ct_for_stmt] = STATE(462), - [sym_ct_foreach_stmt] = STATE(462), - [sym__expr] = STATE(1265), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1564), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1118), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_const] = ACTIONS(103), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), - }, - [113] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(113), - [sym_doc_comment] = STATE(113), - [sym_block_comment] = STATE(113), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1158), - [sym_const_declaration] = STATE(445), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(399), - [sym_expr_stmt] = STATE(399), - [sym_var_decl] = STATE(2324), - [sym_var_stmt] = STATE(399), - [sym_return_stmt] = STATE(399), - [sym_continue_stmt] = STATE(399), - [sym_break_stmt] = STATE(399), - [sym_defer_stmt] = STATE(399), - [sym_assert_stmt] = STATE(399), - [sym_declaration_stmt] = STATE(399), - [sym_nextcase_stmt] = STATE(399), - [sym_switch_stmt] = STATE(399), - [sym_if_stmt] = STATE(399), - [sym_for_stmt] = STATE(399), - [sym_foreach_stmt] = STATE(399), - [sym_while_stmt] = STATE(399), - [sym_do_stmt] = STATE(399), - [sym_asm_block_stmt] = STATE(399), - [sym_ct_assert_stmt] = STATE(399), - [sym_ct_echo_stmt] = STATE(399), - [sym_ct_if_stmt] = STATE(399), - [sym__ct_switch] = STATE(1606), - [sym_ct_switch_stmt] = STATE(399), - [sym_ct_for_stmt] = STATE(399), - [sym_ct_foreach_stmt] = STATE(399), - [sym__expr] = STATE(1265), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1564), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1120), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_const] = ACTIONS(103), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym__expr] = STATE(1109), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1338), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(1113), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(607), + [anon_sym_const] = ACTIONS(609), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_break] = ACTIONS(615), + [anon_sym_defer] = ACTIONS(617), + [anon_sym_assert] = ACTIONS(619), + [anon_sym_nextcase] = ACTIONS(621), + [anon_sym_switch] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(625), + [anon_sym_for] = ACTIONS(627), + [anon_sym_foreach] = ACTIONS(629), + [anon_sym_foreach_r] = ACTIONS(629), + [anon_sym_while] = ACTIONS(631), + [anon_sym_do] = ACTIONS(633), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(635), + [anon_sym_DOLLARassert] = ACTIONS(637), + [anon_sym_DOLLARerror] = ACTIONS(639), + [anon_sym_DOLLARecho] = ACTIONS(641), + [anon_sym_DOLLARif] = ACTIONS(643), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(647), + [anon_sym_DOLLARforeach] = ACTIONS(649), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [114] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(114), [sym_doc_comment] = STATE(114), [sym_block_comment] = STATE(114), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1175), - [sym_const_declaration] = STATE(727), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(676), - [sym_expr_stmt] = STATE(676), - [sym_var_decl] = STATE(2279), - [sym_var_stmt] = STATE(676), - [sym_return_stmt] = STATE(676), - [sym_continue_stmt] = STATE(676), - [sym_break_stmt] = STATE(676), - [sym_defer_stmt] = STATE(676), - [sym_assert_stmt] = STATE(676), - [sym_declaration_stmt] = STATE(676), - [sym_nextcase_stmt] = STATE(676), - [sym_switch_stmt] = STATE(676), - [sym_if_stmt] = STATE(676), - [sym_for_stmt] = STATE(676), - [sym_foreach_stmt] = STATE(676), - [sym_while_stmt] = STATE(676), - [sym_do_stmt] = STATE(676), - [sym_asm_block_stmt] = STATE(676), - [sym_ct_assert_stmt] = STATE(676), - [sym_ct_echo_stmt] = STATE(676), - [sym_ct_if_stmt] = STATE(676), - [sym__ct_switch] = STATE(1593), - [sym_ct_switch_stmt] = STATE(676), - [sym_ct_for_stmt] = STATE(676), - [sym_ct_foreach_stmt] = STATE(676), - [sym__expr] = STATE(1275), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1596), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1122), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(614), - [anon_sym_const] = ACTIONS(616), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_break] = ACTIONS(622), - [anon_sym_defer] = ACTIONS(624), - [anon_sym_assert] = ACTIONS(626), - [anon_sym_nextcase] = ACTIONS(628), - [anon_sym_switch] = ACTIONS(630), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(632), - [anon_sym_for] = ACTIONS(634), - [anon_sym_foreach] = ACTIONS(636), - [anon_sym_foreach_r] = ACTIONS(636), - [anon_sym_while] = ACTIONS(638), - [anon_sym_do] = ACTIONS(640), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(642), - [anon_sym_DOLLARassert] = ACTIONS(644), - [anon_sym_DOLLARerror] = ACTIONS(646), - [anon_sym_DOLLARecho] = ACTIONS(648), - [anon_sym_DOLLARif] = ACTIONS(650), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(652), - [anon_sym_DOLLARforeach] = ACTIONS(654), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1165), + [sym_const_declaration] = STATE(555), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(525), + [sym_expr_stmt] = STATE(525), + [sym_var_decl] = STATE(2183), + [sym_var_stmt] = STATE(525), + [sym_return_stmt] = STATE(525), + [sym_continue_stmt] = STATE(525), + [sym_break_stmt] = STATE(525), + [sym_defer_stmt] = STATE(525), + [sym_assert_stmt] = STATE(525), + [sym_declaration_stmt] = STATE(525), + [sym_nextcase_stmt] = STATE(525), + [sym_switch_stmt] = STATE(525), + [sym_if_stmt] = STATE(525), + [sym_for_stmt] = STATE(525), + [sym_foreach_stmt] = STATE(525), + [sym_while_stmt] = STATE(525), + [sym_do_stmt] = STATE(525), + [sym_asm_block_stmt] = STATE(525), + [sym_ct_assert_stmt] = STATE(525), + [sym_ct_echo_stmt] = STATE(525), + [sym_ct_if_stmt] = STATE(525), + [sym__ct_switch] = STATE(1508), + [sym_ct_switch_stmt] = STATE(525), + [sym_ct_for_stmt] = STATE(525), + [sym_ct_foreach_stmt] = STATE(525), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1342), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(1115), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(401), + [anon_sym_const] = ACTIONS(403), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_break] = ACTIONS(409), + [anon_sym_defer] = ACTIONS(411), + [anon_sym_assert] = ACTIONS(413), + [anon_sym_nextcase] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(419), + [anon_sym_for] = ACTIONS(421), + [anon_sym_foreach] = ACTIONS(423), + [anon_sym_foreach_r] = ACTIONS(423), + [anon_sym_while] = ACTIONS(425), + [anon_sym_do] = ACTIONS(427), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(429), + [anon_sym_DOLLARassert] = ACTIONS(431), + [anon_sym_DOLLARerror] = ACTIONS(433), + [anon_sym_DOLLARecho] = ACTIONS(435), + [anon_sym_DOLLARif] = ACTIONS(437), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(443), + [anon_sym_DOLLARforeach] = ACTIONS(445), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [115] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(115), [sym_doc_comment] = STATE(115), [sym_block_comment] = STATE(115), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1183), - [sym_const_declaration] = STATE(716), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(778), - [sym_expr_stmt] = STATE(778), - [sym_var_decl] = STATE(2182), - [sym_var_stmt] = STATE(778), - [sym_return_stmt] = STATE(778), - [sym_continue_stmt] = STATE(778), - [sym_break_stmt] = STATE(778), - [sym_defer_stmt] = STATE(778), - [sym_assert_stmt] = STATE(778), - [sym_declaration_stmt] = STATE(778), - [sym_nextcase_stmt] = STATE(778), - [sym_switch_stmt] = STATE(778), - [sym_if_stmt] = STATE(778), - [sym_for_stmt] = STATE(778), - [sym_foreach_stmt] = STATE(778), - [sym_while_stmt] = STATE(778), - [sym_do_stmt] = STATE(778), - [sym_asm_block_stmt] = STATE(778), - [sym_ct_assert_stmt] = STATE(778), - [sym_ct_echo_stmt] = STATE(778), - [sym_ct_if_stmt] = STATE(778), - [sym__ct_switch] = STATE(1621), - [sym_ct_switch_stmt] = STATE(778), - [sym_ct_for_stmt] = STATE(778), - [sym_ct_foreach_stmt] = STATE(778), - [sym__expr] = STATE(1299), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1624), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1124), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(568), - [anon_sym_const] = ACTIONS(570), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(572), - [anon_sym_continue] = ACTIONS(574), - [anon_sym_break] = ACTIONS(576), - [anon_sym_defer] = ACTIONS(578), - [anon_sym_assert] = ACTIONS(580), - [anon_sym_nextcase] = ACTIONS(582), - [anon_sym_switch] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(586), - [anon_sym_for] = ACTIONS(588), - [anon_sym_foreach] = ACTIONS(590), - [anon_sym_foreach_r] = ACTIONS(590), - [anon_sym_while] = ACTIONS(592), - [anon_sym_do] = ACTIONS(594), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(596), - [anon_sym_DOLLARassert] = ACTIONS(598), - [anon_sym_DOLLARerror] = ACTIONS(600), - [anon_sym_DOLLARecho] = ACTIONS(602), - [anon_sym_DOLLARif] = ACTIONS(604), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(608), - [anon_sym_DOLLARforeach] = ACTIONS(610), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1175), + [sym_const_declaration] = STATE(446), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(448), + [sym_expr_stmt] = STATE(448), + [sym_var_decl] = STATE(1961), + [sym_var_stmt] = STATE(448), + [sym_return_stmt] = STATE(448), + [sym_continue_stmt] = STATE(448), + [sym_break_stmt] = STATE(448), + [sym_defer_stmt] = STATE(448), + [sym_assert_stmt] = STATE(448), + [sym_declaration_stmt] = STATE(448), + [sym_nextcase_stmt] = STATE(448), + [sym_switch_stmt] = STATE(448), + [sym_if_stmt] = STATE(448), + [sym_for_stmt] = STATE(448), + [sym_foreach_stmt] = STATE(448), + [sym_while_stmt] = STATE(448), + [sym_do_stmt] = STATE(448), + [sym_asm_block_stmt] = STATE(448), + [sym_ct_assert_stmt] = STATE(448), + [sym_ct_echo_stmt] = STATE(448), + [sym_ct_if_stmt] = STATE(448), + [sym__ct_switch] = STATE(1566), + [sym_ct_switch_stmt] = STATE(448), + [sym_ct_for_stmt] = STATE(448), + [sym_ct_foreach_stmt] = STATE(448), + [sym__expr] = STATE(1092), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1346), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(1117), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(197), + [anon_sym_const] = ACTIONS(199), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(201), + [anon_sym_continue] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_defer] = ACTIONS(207), + [anon_sym_assert] = ACTIONS(209), + [anon_sym_nextcase] = ACTIONS(211), + [anon_sym_switch] = ACTIONS(213), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(215), + [anon_sym_for] = ACTIONS(217), + [anon_sym_foreach] = ACTIONS(219), + [anon_sym_foreach_r] = ACTIONS(219), + [anon_sym_while] = ACTIONS(221), + [anon_sym_do] = ACTIONS(223), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(225), + [anon_sym_DOLLARassert] = ACTIONS(227), + [anon_sym_DOLLARerror] = ACTIONS(229), + [anon_sym_DOLLARecho] = ACTIONS(231), + [anon_sym_DOLLARif] = ACTIONS(233), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(237), + [anon_sym_DOLLARforeach] = ACTIONS(239), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [116] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(116), [sym_doc_comment] = STATE(116), [sym_block_comment] = STATE(116), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1183), - [sym_const_declaration] = STATE(716), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(783), - [sym_expr_stmt] = STATE(783), - [sym_var_decl] = STATE(2182), - [sym_var_stmt] = STATE(783), - [sym_return_stmt] = STATE(783), - [sym_continue_stmt] = STATE(783), - [sym_break_stmt] = STATE(783), - [sym_defer_stmt] = STATE(783), - [sym_assert_stmt] = STATE(783), - [sym_declaration_stmt] = STATE(783), - [sym_nextcase_stmt] = STATE(783), - [sym_switch_stmt] = STATE(783), - [sym_if_stmt] = STATE(783), - [sym_for_stmt] = STATE(783), - [sym_foreach_stmt] = STATE(783), - [sym_while_stmt] = STATE(783), - [sym_do_stmt] = STATE(783), - [sym_asm_block_stmt] = STATE(783), - [sym_ct_assert_stmt] = STATE(783), - [sym_ct_echo_stmt] = STATE(783), - [sym_ct_if_stmt] = STATE(783), - [sym__ct_switch] = STATE(1621), - [sym_ct_switch_stmt] = STATE(783), - [sym_ct_for_stmt] = STATE(783), - [sym_ct_foreach_stmt] = STATE(783), - [sym__expr] = STATE(1299), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1624), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1126), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(568), - [anon_sym_const] = ACTIONS(570), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(572), - [anon_sym_continue] = ACTIONS(574), - [anon_sym_break] = ACTIONS(576), - [anon_sym_defer] = ACTIONS(578), - [anon_sym_assert] = ACTIONS(580), - [anon_sym_nextcase] = ACTIONS(582), - [anon_sym_switch] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(586), - [anon_sym_for] = ACTIONS(588), - [anon_sym_foreach] = ACTIONS(590), - [anon_sym_foreach_r] = ACTIONS(590), - [anon_sym_while] = ACTIONS(592), - [anon_sym_do] = ACTIONS(594), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(596), - [anon_sym_DOLLARassert] = ACTIONS(598), - [anon_sym_DOLLARerror] = ACTIONS(600), - [anon_sym_DOLLARecho] = ACTIONS(602), - [anon_sym_DOLLARif] = ACTIONS(604), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(608), - [anon_sym_DOLLARforeach] = ACTIONS(610), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1175), + [sym_const_declaration] = STATE(446), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(466), + [sym_expr_stmt] = STATE(466), + [sym_var_decl] = STATE(1961), + [sym_var_stmt] = STATE(466), + [sym_return_stmt] = STATE(466), + [sym_continue_stmt] = STATE(466), + [sym_break_stmt] = STATE(466), + [sym_defer_stmt] = STATE(466), + [sym_assert_stmt] = STATE(466), + [sym_declaration_stmt] = STATE(466), + [sym_nextcase_stmt] = STATE(466), + [sym_switch_stmt] = STATE(466), + [sym_if_stmt] = STATE(466), + [sym_for_stmt] = STATE(466), + [sym_foreach_stmt] = STATE(466), + [sym_while_stmt] = STATE(466), + [sym_do_stmt] = STATE(466), + [sym_asm_block_stmt] = STATE(466), + [sym_ct_assert_stmt] = STATE(466), + [sym_ct_echo_stmt] = STATE(466), + [sym_ct_if_stmt] = STATE(466), + [sym__ct_switch] = STATE(1566), + [sym_ct_switch_stmt] = STATE(466), + [sym_ct_for_stmt] = STATE(466), + [sym_ct_foreach_stmt] = STATE(466), + [sym__expr] = STATE(1092), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1346), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(1119), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(197), + [anon_sym_const] = ACTIONS(199), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(201), + [anon_sym_continue] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_defer] = ACTIONS(207), + [anon_sym_assert] = ACTIONS(209), + [anon_sym_nextcase] = ACTIONS(211), + [anon_sym_switch] = ACTIONS(213), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(215), + [anon_sym_for] = ACTIONS(217), + [anon_sym_foreach] = ACTIONS(219), + [anon_sym_foreach_r] = ACTIONS(219), + [anon_sym_while] = ACTIONS(221), + [anon_sym_do] = ACTIONS(223), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(225), + [anon_sym_DOLLARassert] = ACTIONS(227), + [anon_sym_DOLLARerror] = ACTIONS(229), + [anon_sym_DOLLARecho] = ACTIONS(231), + [anon_sym_DOLLARif] = ACTIONS(233), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(237), + [anon_sym_DOLLARforeach] = ACTIONS(239), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [117] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(117), [sym_doc_comment] = STATE(117), [sym_block_comment] = STATE(117), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1183), - [sym_const_declaration] = STATE(716), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(787), - [sym_expr_stmt] = STATE(787), - [sym_var_decl] = STATE(2182), - [sym_var_stmt] = STATE(787), - [sym_return_stmt] = STATE(787), - [sym_continue_stmt] = STATE(787), - [sym_break_stmt] = STATE(787), - [sym_defer_stmt] = STATE(787), - [sym_assert_stmt] = STATE(787), - [sym_declaration_stmt] = STATE(787), - [sym_nextcase_stmt] = STATE(787), - [sym_switch_stmt] = STATE(787), - [sym_if_stmt] = STATE(787), - [sym_for_stmt] = STATE(787), - [sym_foreach_stmt] = STATE(787), - [sym_while_stmt] = STATE(787), - [sym_do_stmt] = STATE(787), - [sym_asm_block_stmt] = STATE(787), - [sym_ct_assert_stmt] = STATE(787), - [sym_ct_echo_stmt] = STATE(787), - [sym_ct_if_stmt] = STATE(787), - [sym__ct_switch] = STATE(1621), - [sym_ct_switch_stmt] = STATE(787), - [sym_ct_for_stmt] = STATE(787), - [sym_ct_foreach_stmt] = STATE(787), - [sym__expr] = STATE(1299), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1624), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1128), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(568), - [anon_sym_const] = ACTIONS(570), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(572), - [anon_sym_continue] = ACTIONS(574), - [anon_sym_break] = ACTIONS(576), - [anon_sym_defer] = ACTIONS(578), - [anon_sym_assert] = ACTIONS(580), - [anon_sym_nextcase] = ACTIONS(582), - [anon_sym_switch] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(586), - [anon_sym_for] = ACTIONS(588), - [anon_sym_foreach] = ACTIONS(590), - [anon_sym_foreach_r] = ACTIONS(590), - [anon_sym_while] = ACTIONS(592), - [anon_sym_do] = ACTIONS(594), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(596), - [anon_sym_DOLLARassert] = ACTIONS(598), - [anon_sym_DOLLARerror] = ACTIONS(600), - [anon_sym_DOLLARecho] = ACTIONS(602), - [anon_sym_DOLLARif] = ACTIONS(604), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(608), - [anon_sym_DOLLARforeach] = ACTIONS(610), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1170), + [sym_const_declaration] = STATE(642), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(675), + [sym_expr_stmt] = STATE(675), + [sym_var_decl] = STATE(1985), + [sym_var_stmt] = STATE(675), + [sym_return_stmt] = STATE(675), + [sym_continue_stmt] = STATE(675), + [sym_break_stmt] = STATE(675), + [sym_defer_stmt] = STATE(675), + [sym_assert_stmt] = STATE(675), + [sym_declaration_stmt] = STATE(675), + [sym_nextcase_stmt] = STATE(675), + [sym_switch_stmt] = STATE(675), + [sym_if_stmt] = STATE(675), + [sym_for_stmt] = STATE(675), + [sym_foreach_stmt] = STATE(675), + [sym_while_stmt] = STATE(675), + [sym_do_stmt] = STATE(675), + [sym_asm_block_stmt] = STATE(675), + [sym_ct_assert_stmt] = STATE(675), + [sym_ct_echo_stmt] = STATE(675), + [sym_ct_if_stmt] = STATE(675), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(675), + [sym_ct_for_stmt] = STATE(675), + [sym_ct_foreach_stmt] = STATE(675), + [sym__expr] = STATE(1100), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1357), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(1121), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(561), + [anon_sym_const] = ACTIONS(563), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(565), + [anon_sym_continue] = ACTIONS(567), + [anon_sym_break] = ACTIONS(569), + [anon_sym_defer] = ACTIONS(571), + [anon_sym_assert] = ACTIONS(573), + [anon_sym_nextcase] = ACTIONS(575), + [anon_sym_switch] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(579), + [anon_sym_for] = ACTIONS(581), + [anon_sym_foreach] = ACTIONS(583), + [anon_sym_foreach_r] = ACTIONS(583), + [anon_sym_while] = ACTIONS(585), + [anon_sym_do] = ACTIONS(587), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(589), + [anon_sym_DOLLARassert] = ACTIONS(591), + [anon_sym_DOLLARerror] = ACTIONS(593), + [anon_sym_DOLLARecho] = ACTIONS(595), + [anon_sym_DOLLARif] = ACTIONS(597), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(599), + [anon_sym_DOLLARforeach] = ACTIONS(601), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [118] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(118), [sym_doc_comment] = STATE(118), [sym_block_comment] = STATE(118), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1170), - [sym_const_declaration] = STATE(593), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(548), - [sym_expr_stmt] = STATE(548), - [sym_var_decl] = STATE(2285), - [sym_var_stmt] = STATE(548), - [sym_return_stmt] = STATE(548), - [sym_continue_stmt] = STATE(548), - [sym_break_stmt] = STATE(548), - [sym_defer_stmt] = STATE(548), - [sym_assert_stmt] = STATE(548), - [sym_declaration_stmt] = STATE(548), - [sym_nextcase_stmt] = STATE(548), - [sym_switch_stmt] = STATE(548), - [sym_if_stmt] = STATE(548), - [sym_for_stmt] = STATE(548), - [sym_foreach_stmt] = STATE(548), - [sym_while_stmt] = STATE(548), - [sym_do_stmt] = STATE(548), - [sym_asm_block_stmt] = STATE(548), - [sym_ct_assert_stmt] = STATE(548), - [sym_ct_echo_stmt] = STATE(548), - [sym_ct_if_stmt] = STATE(548), - [sym__ct_switch] = STATE(1604), - [sym_ct_switch_stmt] = STATE(548), - [sym_ct_for_stmt] = STATE(548), - [sym_ct_foreach_stmt] = STATE(548), - [sym__expr] = STATE(1288), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1595), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1130), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(474), - [anon_sym_const] = ACTIONS(476), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(478), - [anon_sym_continue] = ACTIONS(480), - [anon_sym_break] = ACTIONS(482), - [anon_sym_defer] = ACTIONS(484), - [anon_sym_assert] = ACTIONS(486), - [anon_sym_nextcase] = ACTIONS(488), - [anon_sym_switch] = ACTIONS(490), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(492), - [anon_sym_for] = ACTIONS(494), - [anon_sym_foreach] = ACTIONS(496), - [anon_sym_foreach_r] = ACTIONS(496), - [anon_sym_while] = ACTIONS(498), - [anon_sym_do] = ACTIONS(500), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(502), - [anon_sym_DOLLARassert] = ACTIONS(504), - [anon_sym_DOLLARerror] = ACTIONS(506), - [anon_sym_DOLLARecho] = ACTIONS(508), - [anon_sym_DOLLARif] = ACTIONS(510), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(516), - [anon_sym_DOLLARforeach] = ACTIONS(518), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1175), + [sym_const_declaration] = STATE(446), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(465), + [sym_expr_stmt] = STATE(465), + [sym_var_decl] = STATE(1961), + [sym_var_stmt] = STATE(465), + [sym_return_stmt] = STATE(465), + [sym_continue_stmt] = STATE(465), + [sym_break_stmt] = STATE(465), + [sym_defer_stmt] = STATE(465), + [sym_assert_stmt] = STATE(465), + [sym_declaration_stmt] = STATE(465), + [sym_nextcase_stmt] = STATE(465), + [sym_switch_stmt] = STATE(465), + [sym_if_stmt] = STATE(465), + [sym_for_stmt] = STATE(465), + [sym_foreach_stmt] = STATE(465), + [sym_while_stmt] = STATE(465), + [sym_do_stmt] = STATE(465), + [sym_asm_block_stmt] = STATE(465), + [sym_ct_assert_stmt] = STATE(465), + [sym_ct_echo_stmt] = STATE(465), + [sym_ct_if_stmt] = STATE(465), + [sym__ct_switch] = STATE(1566), + [sym_ct_switch_stmt] = STATE(465), + [sym_ct_for_stmt] = STATE(465), + [sym_ct_foreach_stmt] = STATE(465), + [sym__expr] = STATE(1092), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1346), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(1123), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(197), + [anon_sym_const] = ACTIONS(199), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(201), + [anon_sym_continue] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_defer] = ACTIONS(207), + [anon_sym_assert] = ACTIONS(209), + [anon_sym_nextcase] = ACTIONS(211), + [anon_sym_switch] = ACTIONS(213), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(215), + [anon_sym_for] = ACTIONS(217), + [anon_sym_foreach] = ACTIONS(219), + [anon_sym_foreach_r] = ACTIONS(219), + [anon_sym_while] = ACTIONS(221), + [anon_sym_do] = ACTIONS(223), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(225), + [anon_sym_DOLLARassert] = ACTIONS(227), + [anon_sym_DOLLARerror] = ACTIONS(229), + [anon_sym_DOLLARecho] = ACTIONS(231), + [anon_sym_DOLLARif] = ACTIONS(233), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(237), + [anon_sym_DOLLARforeach] = ACTIONS(239), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [119] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(119), [sym_doc_comment] = STATE(119), [sym_block_comment] = STATE(119), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), [sym_local_decl_storage] = STATE(1170), - [sym_const_declaration] = STATE(593), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(602), - [sym_expr_stmt] = STATE(602), - [sym_var_decl] = STATE(2285), - [sym_var_stmt] = STATE(602), - [sym_return_stmt] = STATE(602), - [sym_continue_stmt] = STATE(602), - [sym_break_stmt] = STATE(602), - [sym_defer_stmt] = STATE(602), - [sym_assert_stmt] = STATE(602), - [sym_declaration_stmt] = STATE(602), - [sym_nextcase_stmt] = STATE(602), - [sym_switch_stmt] = STATE(602), - [sym_if_stmt] = STATE(602), - [sym_for_stmt] = STATE(602), - [sym_foreach_stmt] = STATE(602), - [sym_while_stmt] = STATE(602), - [sym_do_stmt] = STATE(602), - [sym_asm_block_stmt] = STATE(602), - [sym_ct_assert_stmt] = STATE(602), - [sym_ct_echo_stmt] = STATE(602), - [sym_ct_if_stmt] = STATE(602), - [sym__ct_switch] = STATE(1604), - [sym_ct_switch_stmt] = STATE(602), - [sym_ct_for_stmt] = STATE(602), - [sym_ct_foreach_stmt] = STATE(602), - [sym__expr] = STATE(1288), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1595), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1132), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(474), - [anon_sym_const] = ACTIONS(476), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(478), - [anon_sym_continue] = ACTIONS(480), - [anon_sym_break] = ACTIONS(482), - [anon_sym_defer] = ACTIONS(484), - [anon_sym_assert] = ACTIONS(486), - [anon_sym_nextcase] = ACTIONS(488), - [anon_sym_switch] = ACTIONS(490), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(492), - [anon_sym_for] = ACTIONS(494), - [anon_sym_foreach] = ACTIONS(496), - [anon_sym_foreach_r] = ACTIONS(496), - [anon_sym_while] = ACTIONS(498), - [anon_sym_do] = ACTIONS(500), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(502), - [anon_sym_DOLLARassert] = ACTIONS(504), - [anon_sym_DOLLARerror] = ACTIONS(506), - [anon_sym_DOLLARecho] = ACTIONS(508), - [anon_sym_DOLLARif] = ACTIONS(510), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(516), - [anon_sym_DOLLARforeach] = ACTIONS(518), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_const_declaration] = STATE(642), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(674), + [sym_expr_stmt] = STATE(674), + [sym_var_decl] = STATE(1985), + [sym_var_stmt] = STATE(674), + [sym_return_stmt] = STATE(674), + [sym_continue_stmt] = STATE(674), + [sym_break_stmt] = STATE(674), + [sym_defer_stmt] = STATE(674), + [sym_assert_stmt] = STATE(674), + [sym_declaration_stmt] = STATE(674), + [sym_nextcase_stmt] = STATE(674), + [sym_switch_stmt] = STATE(674), + [sym_if_stmt] = STATE(674), + [sym_for_stmt] = STATE(674), + [sym_foreach_stmt] = STATE(674), + [sym_while_stmt] = STATE(674), + [sym_do_stmt] = STATE(674), + [sym_asm_block_stmt] = STATE(674), + [sym_ct_assert_stmt] = STATE(674), + [sym_ct_echo_stmt] = STATE(674), + [sym_ct_if_stmt] = STATE(674), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(674), + [sym_ct_for_stmt] = STATE(674), + [sym_ct_foreach_stmt] = STATE(674), + [sym__expr] = STATE(1100), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1357), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(561), + [anon_sym_const] = ACTIONS(563), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(565), + [anon_sym_continue] = ACTIONS(567), + [anon_sym_break] = ACTIONS(569), + [anon_sym_defer] = ACTIONS(571), + [anon_sym_assert] = ACTIONS(573), + [anon_sym_nextcase] = ACTIONS(575), + [anon_sym_switch] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(579), + [anon_sym_for] = ACTIONS(581), + [anon_sym_foreach] = ACTIONS(583), + [anon_sym_foreach_r] = ACTIONS(583), + [anon_sym_while] = ACTIONS(585), + [anon_sym_do] = ACTIONS(587), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(589), + [anon_sym_DOLLARassert] = ACTIONS(591), + [anon_sym_DOLLARerror] = ACTIONS(593), + [anon_sym_DOLLARecho] = ACTIONS(595), + [anon_sym_DOLLARif] = ACTIONS(597), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(599), + [anon_sym_DOLLARforeach] = ACTIONS(601), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [120] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(120), [sym_doc_comment] = STATE(120), [sym_block_comment] = STATE(120), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1158), - [sym_const_declaration] = STATE(445), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(404), - [sym_expr_stmt] = STATE(404), - [sym_var_decl] = STATE(2324), - [sym_var_stmt] = STATE(404), - [sym_return_stmt] = STATE(404), - [sym_continue_stmt] = STATE(404), - [sym_break_stmt] = STATE(404), - [sym_defer_stmt] = STATE(404), - [sym_assert_stmt] = STATE(404), - [sym_declaration_stmt] = STATE(404), - [sym_nextcase_stmt] = STATE(404), - [sym_switch_stmt] = STATE(404), - [sym_if_stmt] = STATE(404), - [sym_for_stmt] = STATE(404), - [sym_foreach_stmt] = STATE(404), - [sym_while_stmt] = STATE(404), - [sym_do_stmt] = STATE(404), - [sym_asm_block_stmt] = STATE(404), - [sym_ct_assert_stmt] = STATE(404), - [sym_ct_echo_stmt] = STATE(404), - [sym_ct_if_stmt] = STATE(404), - [sym__ct_switch] = STATE(1606), - [sym_ct_switch_stmt] = STATE(404), - [sym_ct_for_stmt] = STATE(404), - [sym_ct_foreach_stmt] = STATE(404), - [sym__expr] = STATE(1265), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1564), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1134), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_const] = ACTIONS(103), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1170), + [sym_const_declaration] = STATE(642), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(673), + [sym_expr_stmt] = STATE(673), + [sym_var_decl] = STATE(1985), + [sym_var_stmt] = STATE(673), + [sym_return_stmt] = STATE(673), + [sym_continue_stmt] = STATE(673), + [sym_break_stmt] = STATE(673), + [sym_defer_stmt] = STATE(673), + [sym_assert_stmt] = STATE(673), + [sym_declaration_stmt] = STATE(673), + [sym_nextcase_stmt] = STATE(673), + [sym_switch_stmt] = STATE(673), + [sym_if_stmt] = STATE(673), + [sym_for_stmt] = STATE(673), + [sym_foreach_stmt] = STATE(673), + [sym_while_stmt] = STATE(673), + [sym_do_stmt] = STATE(673), + [sym_asm_block_stmt] = STATE(673), + [sym_ct_assert_stmt] = STATE(673), + [sym_ct_echo_stmt] = STATE(673), + [sym_ct_if_stmt] = STATE(673), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(673), + [sym_ct_for_stmt] = STATE(673), + [sym_ct_foreach_stmt] = STATE(673), + [sym__expr] = STATE(1100), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1357), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(1127), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(561), + [anon_sym_const] = ACTIONS(563), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(565), + [anon_sym_continue] = ACTIONS(567), + [anon_sym_break] = ACTIONS(569), + [anon_sym_defer] = ACTIONS(571), + [anon_sym_assert] = ACTIONS(573), + [anon_sym_nextcase] = ACTIONS(575), + [anon_sym_switch] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(579), + [anon_sym_for] = ACTIONS(581), + [anon_sym_foreach] = ACTIONS(583), + [anon_sym_foreach_r] = ACTIONS(583), + [anon_sym_while] = ACTIONS(585), + [anon_sym_do] = ACTIONS(587), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(589), + [anon_sym_DOLLARassert] = ACTIONS(591), + [anon_sym_DOLLARerror] = ACTIONS(593), + [anon_sym_DOLLARecho] = ACTIONS(595), + [anon_sym_DOLLARif] = ACTIONS(597), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(599), + [anon_sym_DOLLARforeach] = ACTIONS(601), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [121] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(121), [sym_doc_comment] = STATE(121), [sym_block_comment] = STATE(121), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1170), - [sym_const_declaration] = STATE(593), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(599), - [sym_expr_stmt] = STATE(599), - [sym_var_decl] = STATE(2285), - [sym_var_stmt] = STATE(599), - [sym_return_stmt] = STATE(599), - [sym_continue_stmt] = STATE(599), - [sym_break_stmt] = STATE(599), - [sym_defer_stmt] = STATE(599), - [sym_assert_stmt] = STATE(599), - [sym_declaration_stmt] = STATE(599), - [sym_nextcase_stmt] = STATE(599), - [sym_switch_stmt] = STATE(599), - [sym_if_stmt] = STATE(599), - [sym_for_stmt] = STATE(599), - [sym_foreach_stmt] = STATE(599), - [sym_while_stmt] = STATE(599), - [sym_do_stmt] = STATE(599), - [sym_asm_block_stmt] = STATE(599), - [sym_ct_assert_stmt] = STATE(599), - [sym_ct_echo_stmt] = STATE(599), - [sym_ct_if_stmt] = STATE(599), - [sym__ct_switch] = STATE(1604), - [sym_ct_switch_stmt] = STATE(599), - [sym_ct_for_stmt] = STATE(599), - [sym_ct_foreach_stmt] = STATE(599), - [sym__expr] = STATE(1288), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1595), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1136), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(474), - [anon_sym_const] = ACTIONS(476), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(478), - [anon_sym_continue] = ACTIONS(480), - [anon_sym_break] = ACTIONS(482), - [anon_sym_defer] = ACTIONS(484), - [anon_sym_assert] = ACTIONS(486), - [anon_sym_nextcase] = ACTIONS(488), - [anon_sym_switch] = ACTIONS(490), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(492), - [anon_sym_for] = ACTIONS(494), - [anon_sym_foreach] = ACTIONS(496), - [anon_sym_foreach_r] = ACTIONS(496), - [anon_sym_while] = ACTIONS(498), - [anon_sym_do] = ACTIONS(500), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(502), - [anon_sym_DOLLARassert] = ACTIONS(504), - [anon_sym_DOLLARerror] = ACTIONS(506), - [anon_sym_DOLLARecho] = ACTIONS(508), - [anon_sym_DOLLARif] = ACTIONS(510), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(516), - [anon_sym_DOLLARforeach] = ACTIONS(518), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1175), + [sym_const_declaration] = STATE(446), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(457), + [sym_expr_stmt] = STATE(457), + [sym_var_decl] = STATE(1961), + [sym_var_stmt] = STATE(457), + [sym_return_stmt] = STATE(457), + [sym_continue_stmt] = STATE(457), + [sym_break_stmt] = STATE(457), + [sym_defer_stmt] = STATE(457), + [sym_assert_stmt] = STATE(457), + [sym_declaration_stmt] = STATE(457), + [sym_nextcase_stmt] = STATE(457), + [sym_switch_stmt] = STATE(457), + [sym_if_stmt] = STATE(457), + [sym_for_stmt] = STATE(457), + [sym_foreach_stmt] = STATE(457), + [sym_while_stmt] = STATE(457), + [sym_do_stmt] = STATE(457), + [sym_asm_block_stmt] = STATE(457), + [sym_ct_assert_stmt] = STATE(457), + [sym_ct_echo_stmt] = STATE(457), + [sym_ct_if_stmt] = STATE(457), + [sym__ct_switch] = STATE(1566), + [sym_ct_switch_stmt] = STATE(457), + [sym_ct_for_stmt] = STATE(457), + [sym_ct_foreach_stmt] = STATE(457), + [sym__expr] = STATE(1092), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1346), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(1129), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(197), + [anon_sym_const] = ACTIONS(199), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(201), + [anon_sym_continue] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_defer] = ACTIONS(207), + [anon_sym_assert] = ACTIONS(209), + [anon_sym_nextcase] = ACTIONS(211), + [anon_sym_switch] = ACTIONS(213), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(215), + [anon_sym_for] = ACTIONS(217), + [anon_sym_foreach] = ACTIONS(219), + [anon_sym_foreach_r] = ACTIONS(219), + [anon_sym_while] = ACTIONS(221), + [anon_sym_do] = ACTIONS(223), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(225), + [anon_sym_DOLLARassert] = ACTIONS(227), + [anon_sym_DOLLARerror] = ACTIONS(229), + [anon_sym_DOLLARecho] = ACTIONS(231), + [anon_sym_DOLLARif] = ACTIONS(233), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(237), + [anon_sym_DOLLARforeach] = ACTIONS(239), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [122] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(122), [sym_doc_comment] = STATE(122), [sym_block_comment] = STATE(122), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1175), - [sym_const_declaration] = STATE(727), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(663), - [sym_expr_stmt] = STATE(663), - [sym_var_decl] = STATE(2279), - [sym_var_stmt] = STATE(663), - [sym_return_stmt] = STATE(663), - [sym_continue_stmt] = STATE(663), - [sym_break_stmt] = STATE(663), - [sym_defer_stmt] = STATE(663), - [sym_assert_stmt] = STATE(663), - [sym_declaration_stmt] = STATE(663), - [sym_nextcase_stmt] = STATE(663), - [sym_switch_stmt] = STATE(663), - [sym_if_stmt] = STATE(663), - [sym_for_stmt] = STATE(663), - [sym_foreach_stmt] = STATE(663), - [sym_while_stmt] = STATE(663), - [sym_do_stmt] = STATE(663), - [sym_asm_block_stmt] = STATE(663), - [sym_ct_assert_stmt] = STATE(663), - [sym_ct_echo_stmt] = STATE(663), - [sym_ct_if_stmt] = STATE(663), - [sym__ct_switch] = STATE(1593), - [sym_ct_switch_stmt] = STATE(663), - [sym_ct_for_stmt] = STATE(663), - [sym_ct_foreach_stmt] = STATE(663), - [sym__expr] = STATE(1275), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1596), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1138), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(614), - [anon_sym_const] = ACTIONS(616), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_break] = ACTIONS(622), - [anon_sym_defer] = ACTIONS(624), - [anon_sym_assert] = ACTIONS(626), - [anon_sym_nextcase] = ACTIONS(628), - [anon_sym_switch] = ACTIONS(630), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(632), - [anon_sym_for] = ACTIONS(634), - [anon_sym_foreach] = ACTIONS(636), - [anon_sym_foreach_r] = ACTIONS(636), - [anon_sym_while] = ACTIONS(638), - [anon_sym_do] = ACTIONS(640), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(642), - [anon_sym_DOLLARassert] = ACTIONS(644), - [anon_sym_DOLLARerror] = ACTIONS(646), - [anon_sym_DOLLARecho] = ACTIONS(648), - [anon_sym_DOLLARif] = ACTIONS(650), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(652), - [anon_sym_DOLLARforeach] = ACTIONS(654), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1170), + [sym_const_declaration] = STATE(642), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(664), + [sym_expr_stmt] = STATE(664), + [sym_var_decl] = STATE(1985), + [sym_var_stmt] = STATE(664), + [sym_return_stmt] = STATE(664), + [sym_continue_stmt] = STATE(664), + [sym_break_stmt] = STATE(664), + [sym_defer_stmt] = STATE(664), + [sym_assert_stmt] = STATE(664), + [sym_declaration_stmt] = STATE(664), + [sym_nextcase_stmt] = STATE(664), + [sym_switch_stmt] = STATE(664), + [sym_if_stmt] = STATE(664), + [sym_for_stmt] = STATE(664), + [sym_foreach_stmt] = STATE(664), + [sym_while_stmt] = STATE(664), + [sym_do_stmt] = STATE(664), + [sym_asm_block_stmt] = STATE(664), + [sym_ct_assert_stmt] = STATE(664), + [sym_ct_echo_stmt] = STATE(664), + [sym_ct_if_stmt] = STATE(664), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(664), + [sym_ct_for_stmt] = STATE(664), + [sym_ct_foreach_stmt] = STATE(664), + [sym__expr] = STATE(1100), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1357), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(561), + [anon_sym_const] = ACTIONS(563), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(565), + [anon_sym_continue] = ACTIONS(567), + [anon_sym_break] = ACTIONS(569), + [anon_sym_defer] = ACTIONS(571), + [anon_sym_assert] = ACTIONS(573), + [anon_sym_nextcase] = ACTIONS(575), + [anon_sym_switch] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(579), + [anon_sym_for] = ACTIONS(581), + [anon_sym_foreach] = ACTIONS(583), + [anon_sym_foreach_r] = ACTIONS(583), + [anon_sym_while] = ACTIONS(585), + [anon_sym_do] = ACTIONS(587), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(589), + [anon_sym_DOLLARassert] = ACTIONS(591), + [anon_sym_DOLLARerror] = ACTIONS(593), + [anon_sym_DOLLARecho] = ACTIONS(595), + [anon_sym_DOLLARif] = ACTIONS(597), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(599), + [anon_sym_DOLLARforeach] = ACTIONS(601), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [123] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(123), [sym_doc_comment] = STATE(123), [sym_block_comment] = STATE(123), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), [sym_local_decl_storage] = STATE(1175), - [sym_const_declaration] = STATE(727), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(662), - [sym_expr_stmt] = STATE(662), - [sym_var_decl] = STATE(2279), - [sym_var_stmt] = STATE(662), - [sym_return_stmt] = STATE(662), - [sym_continue_stmt] = STATE(662), - [sym_break_stmt] = STATE(662), - [sym_defer_stmt] = STATE(662), - [sym_assert_stmt] = STATE(662), - [sym_declaration_stmt] = STATE(662), - [sym_nextcase_stmt] = STATE(662), - [sym_switch_stmt] = STATE(662), - [sym_if_stmt] = STATE(662), - [sym_for_stmt] = STATE(662), - [sym_foreach_stmt] = STATE(662), - [sym_while_stmt] = STATE(662), - [sym_do_stmt] = STATE(662), - [sym_asm_block_stmt] = STATE(662), - [sym_ct_assert_stmt] = STATE(662), - [sym_ct_echo_stmt] = STATE(662), - [sym_ct_if_stmt] = STATE(662), - [sym__ct_switch] = STATE(1593), - [sym_ct_switch_stmt] = STATE(662), - [sym_ct_for_stmt] = STATE(662), - [sym_ct_foreach_stmt] = STATE(662), - [sym__expr] = STATE(1275), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1596), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1140), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(614), - [anon_sym_const] = ACTIONS(616), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_break] = ACTIONS(622), - [anon_sym_defer] = ACTIONS(624), - [anon_sym_assert] = ACTIONS(626), - [anon_sym_nextcase] = ACTIONS(628), - [anon_sym_switch] = ACTIONS(630), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(632), - [anon_sym_for] = ACTIONS(634), - [anon_sym_foreach] = ACTIONS(636), - [anon_sym_foreach_r] = ACTIONS(636), - [anon_sym_while] = ACTIONS(638), - [anon_sym_do] = ACTIONS(640), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(642), - [anon_sym_DOLLARassert] = ACTIONS(644), - [anon_sym_DOLLARerror] = ACTIONS(646), - [anon_sym_DOLLARecho] = ACTIONS(648), - [anon_sym_DOLLARif] = ACTIONS(650), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(652), - [anon_sym_DOLLARforeach] = ACTIONS(654), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_const_declaration] = STATE(446), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(423), + [sym_expr_stmt] = STATE(423), + [sym_var_decl] = STATE(1961), + [sym_var_stmt] = STATE(423), + [sym_return_stmt] = STATE(423), + [sym_continue_stmt] = STATE(423), + [sym_break_stmt] = STATE(423), + [sym_defer_stmt] = STATE(423), + [sym_assert_stmt] = STATE(423), + [sym_declaration_stmt] = STATE(423), + [sym_nextcase_stmt] = STATE(423), + [sym_switch_stmt] = STATE(423), + [sym_if_stmt] = STATE(423), + [sym_for_stmt] = STATE(423), + [sym_foreach_stmt] = STATE(423), + [sym_while_stmt] = STATE(423), + [sym_do_stmt] = STATE(423), + [sym_asm_block_stmt] = STATE(423), + [sym_ct_assert_stmt] = STATE(423), + [sym_ct_echo_stmt] = STATE(423), + [sym_ct_if_stmt] = STATE(423), + [sym__ct_switch] = STATE(1566), + [sym_ct_switch_stmt] = STATE(423), + [sym_ct_for_stmt] = STATE(423), + [sym_ct_foreach_stmt] = STATE(423), + [sym__expr] = STATE(1092), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1346), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(1133), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(197), + [anon_sym_const] = ACTIONS(199), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(201), + [anon_sym_continue] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_defer] = ACTIONS(207), + [anon_sym_assert] = ACTIONS(209), + [anon_sym_nextcase] = ACTIONS(211), + [anon_sym_switch] = ACTIONS(213), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(215), + [anon_sym_for] = ACTIONS(217), + [anon_sym_foreach] = ACTIONS(219), + [anon_sym_foreach_r] = ACTIONS(219), + [anon_sym_while] = ACTIONS(221), + [anon_sym_do] = ACTIONS(223), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(225), + [anon_sym_DOLLARassert] = ACTIONS(227), + [anon_sym_DOLLARerror] = ACTIONS(229), + [anon_sym_DOLLARecho] = ACTIONS(231), + [anon_sym_DOLLARif] = ACTIONS(233), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(237), + [anon_sym_DOLLARforeach] = ACTIONS(239), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [124] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(124), [sym_doc_comment] = STATE(124), [sym_block_comment] = STATE(124), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1169), - [sym_const_declaration] = STATE(480), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(534), - [sym_expr_stmt] = STATE(534), - [sym_var_decl] = STATE(2091), - [sym_var_stmt] = STATE(534), - [sym_return_stmt] = STATE(534), - [sym_continue_stmt] = STATE(534), - [sym_break_stmt] = STATE(534), - [sym_defer_stmt] = STATE(534), - [sym_assert_stmt] = STATE(534), - [sym_declaration_stmt] = STATE(534), - [sym_nextcase_stmt] = STATE(534), - [sym_switch_stmt] = STATE(534), - [sym_if_stmt] = STATE(534), - [sym_for_stmt] = STATE(534), - [sym_foreach_stmt] = STATE(534), - [sym_while_stmt] = STATE(534), - [sym_do_stmt] = STATE(534), - [sym_asm_block_stmt] = STATE(534), - [sym_ct_assert_stmt] = STATE(534), - [sym_ct_echo_stmt] = STATE(534), - [sym_ct_if_stmt] = STATE(534), - [sym__ct_switch] = STATE(1646), - [sym_ct_switch_stmt] = STATE(534), - [sym_ct_for_stmt] = STATE(534), - [sym_ct_foreach_stmt] = STATE(534), - [sym__expr] = STATE(1271), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1647), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1142), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(201), - [anon_sym_const] = ACTIONS(203), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(205), - [anon_sym_continue] = ACTIONS(207), - [anon_sym_break] = ACTIONS(209), - [anon_sym_defer] = ACTIONS(211), - [anon_sym_assert] = ACTIONS(213), - [anon_sym_nextcase] = ACTIONS(215), - [anon_sym_switch] = ACTIONS(217), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(219), - [anon_sym_for] = ACTIONS(221), - [anon_sym_foreach] = ACTIONS(223), - [anon_sym_foreach_r] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_do] = ACTIONS(227), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(229), - [anon_sym_DOLLARassert] = ACTIONS(231), - [anon_sym_DOLLARerror] = ACTIONS(233), - [anon_sym_DOLLARecho] = ACTIONS(235), - [anon_sym_DOLLARif] = ACTIONS(237), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(241), - [anon_sym_DOLLARforeach] = ACTIONS(243), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1165), + [sym_const_declaration] = STATE(555), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(527), + [sym_expr_stmt] = STATE(527), + [sym_var_decl] = STATE(2183), + [sym_var_stmt] = STATE(527), + [sym_return_stmt] = STATE(527), + [sym_continue_stmt] = STATE(527), + [sym_break_stmt] = STATE(527), + [sym_defer_stmt] = STATE(527), + [sym_assert_stmt] = STATE(527), + [sym_declaration_stmt] = STATE(527), + [sym_nextcase_stmt] = STATE(527), + [sym_switch_stmt] = STATE(527), + [sym_if_stmt] = STATE(527), + [sym_for_stmt] = STATE(527), + [sym_foreach_stmt] = STATE(527), + [sym_while_stmt] = STATE(527), + [sym_do_stmt] = STATE(527), + [sym_asm_block_stmt] = STATE(527), + [sym_ct_assert_stmt] = STATE(527), + [sym_ct_echo_stmt] = STATE(527), + [sym_ct_if_stmt] = STATE(527), + [sym__ct_switch] = STATE(1508), + [sym_ct_switch_stmt] = STATE(527), + [sym_ct_for_stmt] = STATE(527), + [sym_ct_foreach_stmt] = STATE(527), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1342), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(1135), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(401), + [anon_sym_const] = ACTIONS(403), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_break] = ACTIONS(409), + [anon_sym_defer] = ACTIONS(411), + [anon_sym_assert] = ACTIONS(413), + [anon_sym_nextcase] = ACTIONS(415), + [anon_sym_switch] = ACTIONS(417), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(419), + [anon_sym_for] = ACTIONS(421), + [anon_sym_foreach] = ACTIONS(423), + [anon_sym_foreach_r] = ACTIONS(423), + [anon_sym_while] = ACTIONS(425), + [anon_sym_do] = ACTIONS(427), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(429), + [anon_sym_DOLLARassert] = ACTIONS(431), + [anon_sym_DOLLARerror] = ACTIONS(433), + [anon_sym_DOLLARecho] = ACTIONS(435), + [anon_sym_DOLLARif] = ACTIONS(437), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(443), + [anon_sym_DOLLARforeach] = ACTIONS(445), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [125] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(125), [sym_doc_comment] = STATE(125), [sym_block_comment] = STATE(125), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1170), - [sym_const_declaration] = STATE(593), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(623), - [sym_expr_stmt] = STATE(623), - [sym_var_decl] = STATE(2285), - [sym_var_stmt] = STATE(623), - [sym_return_stmt] = STATE(623), - [sym_continue_stmt] = STATE(623), - [sym_break_stmt] = STATE(623), - [sym_defer_stmt] = STATE(623), - [sym_assert_stmt] = STATE(623), - [sym_declaration_stmt] = STATE(623), - [sym_nextcase_stmt] = STATE(623), - [sym_switch_stmt] = STATE(623), - [sym_if_stmt] = STATE(623), - [sym_for_stmt] = STATE(623), - [sym_foreach_stmt] = STATE(623), - [sym_while_stmt] = STATE(623), - [sym_do_stmt] = STATE(623), - [sym_asm_block_stmt] = STATE(623), - [sym_ct_assert_stmt] = STATE(623), - [sym_ct_echo_stmt] = STATE(623), - [sym_ct_if_stmt] = STATE(623), - [sym__ct_switch] = STATE(1604), - [sym_ct_switch_stmt] = STATE(623), - [sym_ct_for_stmt] = STATE(623), - [sym_ct_foreach_stmt] = STATE(623), - [sym__expr] = STATE(1288), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1595), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1144), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(474), - [anon_sym_const] = ACTIONS(476), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(478), - [anon_sym_continue] = ACTIONS(480), - [anon_sym_break] = ACTIONS(482), - [anon_sym_defer] = ACTIONS(484), - [anon_sym_assert] = ACTIONS(486), - [anon_sym_nextcase] = ACTIONS(488), - [anon_sym_switch] = ACTIONS(490), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(492), - [anon_sym_for] = ACTIONS(494), - [anon_sym_foreach] = ACTIONS(496), - [anon_sym_foreach_r] = ACTIONS(496), - [anon_sym_while] = ACTIONS(498), - [anon_sym_do] = ACTIONS(500), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(502), - [anon_sym_DOLLARassert] = ACTIONS(504), - [anon_sym_DOLLARerror] = ACTIONS(506), - [anon_sym_DOLLARecho] = ACTIONS(508), - [anon_sym_DOLLARif] = ACTIONS(510), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(516), - [anon_sym_DOLLARforeach] = ACTIONS(518), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1175), + [sym_const_declaration] = STATE(446), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(424), + [sym_expr_stmt] = STATE(424), + [sym_var_decl] = STATE(1961), + [sym_var_stmt] = STATE(424), + [sym_return_stmt] = STATE(424), + [sym_continue_stmt] = STATE(424), + [sym_break_stmt] = STATE(424), + [sym_defer_stmt] = STATE(424), + [sym_assert_stmt] = STATE(424), + [sym_declaration_stmt] = STATE(424), + [sym_nextcase_stmt] = STATE(424), + [sym_switch_stmt] = STATE(424), + [sym_if_stmt] = STATE(424), + [sym_for_stmt] = STATE(424), + [sym_foreach_stmt] = STATE(424), + [sym_while_stmt] = STATE(424), + [sym_do_stmt] = STATE(424), + [sym_asm_block_stmt] = STATE(424), + [sym_ct_assert_stmt] = STATE(424), + [sym_ct_echo_stmt] = STATE(424), + [sym_ct_if_stmt] = STATE(424), + [sym__ct_switch] = STATE(1566), + [sym_ct_switch_stmt] = STATE(424), + [sym_ct_for_stmt] = STATE(424), + [sym_ct_foreach_stmt] = STATE(424), + [sym__expr] = STATE(1092), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1346), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(1137), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(197), + [anon_sym_const] = ACTIONS(199), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(201), + [anon_sym_continue] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_defer] = ACTIONS(207), + [anon_sym_assert] = ACTIONS(209), + [anon_sym_nextcase] = ACTIONS(211), + [anon_sym_switch] = ACTIONS(213), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(215), + [anon_sym_for] = ACTIONS(217), + [anon_sym_foreach] = ACTIONS(219), + [anon_sym_foreach_r] = ACTIONS(219), + [anon_sym_while] = ACTIONS(221), + [anon_sym_do] = ACTIONS(223), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(225), + [anon_sym_DOLLARassert] = ACTIONS(227), + [anon_sym_DOLLARerror] = ACTIONS(229), + [anon_sym_DOLLARecho] = ACTIONS(231), + [anon_sym_DOLLARif] = ACTIONS(233), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(237), + [anon_sym_DOLLARforeach] = ACTIONS(239), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [126] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(126), [sym_doc_comment] = STATE(126), [sym_block_comment] = STATE(126), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1170), - [sym_const_declaration] = STATE(593), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(622), - [sym_expr_stmt] = STATE(622), - [sym_var_decl] = STATE(2285), - [sym_var_stmt] = STATE(622), - [sym_return_stmt] = STATE(622), - [sym_continue_stmt] = STATE(622), - [sym_break_stmt] = STATE(622), - [sym_defer_stmt] = STATE(622), - [sym_assert_stmt] = STATE(622), - [sym_declaration_stmt] = STATE(622), - [sym_nextcase_stmt] = STATE(622), - [sym_switch_stmt] = STATE(622), - [sym_if_stmt] = STATE(622), - [sym_for_stmt] = STATE(622), - [sym_foreach_stmt] = STATE(622), - [sym_while_stmt] = STATE(622), - [sym_do_stmt] = STATE(622), - [sym_asm_block_stmt] = STATE(622), - [sym_ct_assert_stmt] = STATE(622), - [sym_ct_echo_stmt] = STATE(622), - [sym_ct_if_stmt] = STATE(622), - [sym__ct_switch] = STATE(1604), - [sym_ct_switch_stmt] = STATE(622), - [sym_ct_for_stmt] = STATE(622), - [sym_ct_foreach_stmt] = STATE(622), - [sym__expr] = STATE(1288), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1595), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1146), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(474), - [anon_sym_const] = ACTIONS(476), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(478), - [anon_sym_continue] = ACTIONS(480), - [anon_sym_break] = ACTIONS(482), - [anon_sym_defer] = ACTIONS(484), - [anon_sym_assert] = ACTIONS(486), - [anon_sym_nextcase] = ACTIONS(488), - [anon_sym_switch] = ACTIONS(490), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(492), - [anon_sym_for] = ACTIONS(494), - [anon_sym_foreach] = ACTIONS(496), - [anon_sym_foreach_r] = ACTIONS(496), - [anon_sym_while] = ACTIONS(498), - [anon_sym_do] = ACTIONS(500), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(502), - [anon_sym_DOLLARassert] = ACTIONS(504), - [anon_sym_DOLLARerror] = ACTIONS(506), - [anon_sym_DOLLARecho] = ACTIONS(508), - [anon_sym_DOLLARif] = ACTIONS(510), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(516), - [anon_sym_DOLLARforeach] = ACTIONS(518), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1162), + [sym_const_declaration] = STATE(364), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(387), + [sym_expr_stmt] = STATE(387), + [sym_var_decl] = STATE(2193), + [sym_var_stmt] = STATE(387), + [sym_return_stmt] = STATE(387), + [sym_continue_stmt] = STATE(387), + [sym_break_stmt] = STATE(387), + [sym_defer_stmt] = STATE(387), + [sym_assert_stmt] = STATE(387), + [sym_declaration_stmt] = STATE(387), + [sym_nextcase_stmt] = STATE(387), + [sym_switch_stmt] = STATE(387), + [sym_if_stmt] = STATE(387), + [sym_for_stmt] = STATE(387), + [sym_foreach_stmt] = STATE(387), + [sym_while_stmt] = STATE(387), + [sym_do_stmt] = STATE(387), + [sym_asm_block_stmt] = STATE(387), + [sym_ct_assert_stmt] = STATE(387), + [sym_ct_echo_stmt] = STATE(387), + [sym_ct_if_stmt] = STATE(387), + [sym__ct_switch] = STATE(1544), + [sym_ct_switch_stmt] = STATE(387), + [sym_ct_for_stmt] = STATE(387), + [sym_ct_foreach_stmt] = STATE(387), + [sym__expr] = STATE(1093), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1351), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(1139), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_const] = ACTIONS(101), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [127] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(127), [sym_doc_comment] = STATE(127), [sym_block_comment] = STATE(127), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1175), - [sym_const_declaration] = STATE(727), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(661), - [sym_expr_stmt] = STATE(661), - [sym_var_decl] = STATE(2279), - [sym_var_stmt] = STATE(661), - [sym_return_stmt] = STATE(661), - [sym_continue_stmt] = STATE(661), - [sym_break_stmt] = STATE(661), - [sym_defer_stmt] = STATE(661), - [sym_assert_stmt] = STATE(661), - [sym_declaration_stmt] = STATE(661), - [sym_nextcase_stmt] = STATE(661), - [sym_switch_stmt] = STATE(661), - [sym_if_stmt] = STATE(661), - [sym_for_stmt] = STATE(661), - [sym_foreach_stmt] = STATE(661), - [sym_while_stmt] = STATE(661), - [sym_do_stmt] = STATE(661), - [sym_asm_block_stmt] = STATE(661), - [sym_ct_assert_stmt] = STATE(661), - [sym_ct_echo_stmt] = STATE(661), - [sym_ct_if_stmt] = STATE(661), - [sym__ct_switch] = STATE(1593), - [sym_ct_switch_stmt] = STATE(661), - [sym_ct_for_stmt] = STATE(661), - [sym_ct_foreach_stmt] = STATE(661), - [sym__expr] = STATE(1275), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1596), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1148), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(614), - [anon_sym_const] = ACTIONS(616), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_break] = ACTIONS(622), - [anon_sym_defer] = ACTIONS(624), - [anon_sym_assert] = ACTIONS(626), - [anon_sym_nextcase] = ACTIONS(628), - [anon_sym_switch] = ACTIONS(630), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(632), - [anon_sym_for] = ACTIONS(634), - [anon_sym_foreach] = ACTIONS(636), - [anon_sym_foreach_r] = ACTIONS(636), - [anon_sym_while] = ACTIONS(638), - [anon_sym_do] = ACTIONS(640), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(642), - [anon_sym_DOLLARassert] = ACTIONS(644), - [anon_sym_DOLLARerror] = ACTIONS(646), - [anon_sym_DOLLARecho] = ACTIONS(648), - [anon_sym_DOLLARif] = ACTIONS(650), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(652), - [anon_sym_DOLLARforeach] = ACTIONS(654), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1162), + [sym_const_declaration] = STATE(364), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(388), + [sym_expr_stmt] = STATE(388), + [sym_var_decl] = STATE(2193), + [sym_var_stmt] = STATE(388), + [sym_return_stmt] = STATE(388), + [sym_continue_stmt] = STATE(388), + [sym_break_stmt] = STATE(388), + [sym_defer_stmt] = STATE(388), + [sym_assert_stmt] = STATE(388), + [sym_declaration_stmt] = STATE(388), + [sym_nextcase_stmt] = STATE(388), + [sym_switch_stmt] = STATE(388), + [sym_if_stmt] = STATE(388), + [sym_for_stmt] = STATE(388), + [sym_foreach_stmt] = STATE(388), + [sym_while_stmt] = STATE(388), + [sym_do_stmt] = STATE(388), + [sym_asm_block_stmt] = STATE(388), + [sym_ct_assert_stmt] = STATE(388), + [sym_ct_echo_stmt] = STATE(388), + [sym_ct_if_stmt] = STATE(388), + [sym__ct_switch] = STATE(1544), + [sym_ct_switch_stmt] = STATE(388), + [sym_ct_for_stmt] = STATE(388), + [sym_ct_foreach_stmt] = STATE(388), + [sym__expr] = STATE(1093), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1351), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(1141), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_const] = ACTIONS(101), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [128] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(128), [sym_doc_comment] = STATE(128), [sym_block_comment] = STATE(128), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1183), - [sym_const_declaration] = STATE(716), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(836), - [sym_expr_stmt] = STATE(836), - [sym_var_decl] = STATE(2182), - [sym_var_stmt] = STATE(836), - [sym_return_stmt] = STATE(836), - [sym_continue_stmt] = STATE(836), - [sym_break_stmt] = STATE(836), - [sym_defer_stmt] = STATE(836), - [sym_assert_stmt] = STATE(836), - [sym_declaration_stmt] = STATE(836), - [sym_nextcase_stmt] = STATE(836), - [sym_switch_stmt] = STATE(836), - [sym_if_stmt] = STATE(836), - [sym_for_stmt] = STATE(836), - [sym_foreach_stmt] = STATE(836), - [sym_while_stmt] = STATE(836), - [sym_do_stmt] = STATE(836), - [sym_asm_block_stmt] = STATE(836), - [sym_ct_assert_stmt] = STATE(836), - [sym_ct_echo_stmt] = STATE(836), - [sym_ct_if_stmt] = STATE(836), - [sym__ct_switch] = STATE(1621), - [sym_ct_switch_stmt] = STATE(836), - [sym_ct_for_stmt] = STATE(836), - [sym_ct_foreach_stmt] = STATE(836), - [sym__expr] = STATE(1299), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1624), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1150), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(568), - [anon_sym_const] = ACTIONS(570), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(572), - [anon_sym_continue] = ACTIONS(574), - [anon_sym_break] = ACTIONS(576), - [anon_sym_defer] = ACTIONS(578), - [anon_sym_assert] = ACTIONS(580), - [anon_sym_nextcase] = ACTIONS(582), - [anon_sym_switch] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(586), - [anon_sym_for] = ACTIONS(588), - [anon_sym_foreach] = ACTIONS(590), - [anon_sym_foreach_r] = ACTIONS(590), - [anon_sym_while] = ACTIONS(592), - [anon_sym_do] = ACTIONS(594), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(596), - [anon_sym_DOLLARassert] = ACTIONS(598), - [anon_sym_DOLLARerror] = ACTIONS(600), - [anon_sym_DOLLARecho] = ACTIONS(602), - [anon_sym_DOLLARif] = ACTIONS(604), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(608), - [anon_sym_DOLLARforeach] = ACTIONS(610), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1175), + [sym_const_declaration] = STATE(446), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(425), + [sym_expr_stmt] = STATE(425), + [sym_var_decl] = STATE(1961), + [sym_var_stmt] = STATE(425), + [sym_return_stmt] = STATE(425), + [sym_continue_stmt] = STATE(425), + [sym_break_stmt] = STATE(425), + [sym_defer_stmt] = STATE(425), + [sym_assert_stmt] = STATE(425), + [sym_declaration_stmt] = STATE(425), + [sym_nextcase_stmt] = STATE(425), + [sym_switch_stmt] = STATE(425), + [sym_if_stmt] = STATE(425), + [sym_for_stmt] = STATE(425), + [sym_foreach_stmt] = STATE(425), + [sym_while_stmt] = STATE(425), + [sym_do_stmt] = STATE(425), + [sym_asm_block_stmt] = STATE(425), + [sym_ct_assert_stmt] = STATE(425), + [sym_ct_echo_stmt] = STATE(425), + [sym_ct_if_stmt] = STATE(425), + [sym__ct_switch] = STATE(1566), + [sym_ct_switch_stmt] = STATE(425), + [sym_ct_for_stmt] = STATE(425), + [sym_ct_foreach_stmt] = STATE(425), + [sym__expr] = STATE(1092), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1346), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(1143), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(197), + [anon_sym_const] = ACTIONS(199), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(201), + [anon_sym_continue] = ACTIONS(203), + [anon_sym_break] = ACTIONS(205), + [anon_sym_defer] = ACTIONS(207), + [anon_sym_assert] = ACTIONS(209), + [anon_sym_nextcase] = ACTIONS(211), + [anon_sym_switch] = ACTIONS(213), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(215), + [anon_sym_for] = ACTIONS(217), + [anon_sym_foreach] = ACTIONS(219), + [anon_sym_foreach_r] = ACTIONS(219), + [anon_sym_while] = ACTIONS(221), + [anon_sym_do] = ACTIONS(223), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(225), + [anon_sym_DOLLARassert] = ACTIONS(227), + [anon_sym_DOLLARerror] = ACTIONS(229), + [anon_sym_DOLLARecho] = ACTIONS(231), + [anon_sym_DOLLARif] = ACTIONS(233), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(237), + [anon_sym_DOLLARforeach] = ACTIONS(239), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [129] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(129), [sym_doc_comment] = STATE(129), [sym_block_comment] = STATE(129), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1183), - [sym_const_declaration] = STATE(716), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(842), - [sym_expr_stmt] = STATE(842), - [sym_var_decl] = STATE(2182), - [sym_var_stmt] = STATE(842), - [sym_return_stmt] = STATE(842), - [sym_continue_stmt] = STATE(842), - [sym_break_stmt] = STATE(842), - [sym_defer_stmt] = STATE(842), - [sym_assert_stmt] = STATE(842), - [sym_declaration_stmt] = STATE(842), - [sym_nextcase_stmt] = STATE(842), - [sym_switch_stmt] = STATE(842), - [sym_if_stmt] = STATE(842), - [sym_for_stmt] = STATE(842), - [sym_foreach_stmt] = STATE(842), - [sym_while_stmt] = STATE(842), - [sym_do_stmt] = STATE(842), - [sym_asm_block_stmt] = STATE(842), - [sym_ct_assert_stmt] = STATE(842), - [sym_ct_echo_stmt] = STATE(842), - [sym_ct_if_stmt] = STATE(842), - [sym__ct_switch] = STATE(1621), - [sym_ct_switch_stmt] = STATE(842), - [sym_ct_for_stmt] = STATE(842), - [sym_ct_foreach_stmt] = STATE(842), - [sym__expr] = STATE(1299), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1624), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1152), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(568), - [anon_sym_const] = ACTIONS(570), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(572), - [anon_sym_continue] = ACTIONS(574), - [anon_sym_break] = ACTIONS(576), - [anon_sym_defer] = ACTIONS(578), - [anon_sym_assert] = ACTIONS(580), - [anon_sym_nextcase] = ACTIONS(582), - [anon_sym_switch] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(586), - [anon_sym_for] = ACTIONS(588), - [anon_sym_foreach] = ACTIONS(590), - [anon_sym_foreach_r] = ACTIONS(590), - [anon_sym_while] = ACTIONS(592), - [anon_sym_do] = ACTIONS(594), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(596), - [anon_sym_DOLLARassert] = ACTIONS(598), - [anon_sym_DOLLARerror] = ACTIONS(600), - [anon_sym_DOLLARecho] = ACTIONS(602), - [anon_sym_DOLLARif] = ACTIONS(604), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(608), - [anon_sym_DOLLARforeach] = ACTIONS(610), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1162), + [sym_const_declaration] = STATE(364), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(393), + [sym_expr_stmt] = STATE(393), + [sym_var_decl] = STATE(2193), + [sym_var_stmt] = STATE(393), + [sym_return_stmt] = STATE(393), + [sym_continue_stmt] = STATE(393), + [sym_break_stmt] = STATE(393), + [sym_defer_stmt] = STATE(393), + [sym_assert_stmt] = STATE(393), + [sym_declaration_stmt] = STATE(393), + [sym_nextcase_stmt] = STATE(393), + [sym_switch_stmt] = STATE(393), + [sym_if_stmt] = STATE(393), + [sym_for_stmt] = STATE(393), + [sym_foreach_stmt] = STATE(393), + [sym_while_stmt] = STATE(393), + [sym_do_stmt] = STATE(393), + [sym_asm_block_stmt] = STATE(393), + [sym_ct_assert_stmt] = STATE(393), + [sym_ct_echo_stmt] = STATE(393), + [sym_ct_if_stmt] = STATE(393), + [sym__ct_switch] = STATE(1544), + [sym_ct_switch_stmt] = STATE(393), + [sym_ct_for_stmt] = STATE(393), + [sym_ct_foreach_stmt] = STATE(393), + [sym__expr] = STATE(1093), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1351), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(1145), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_const] = ACTIONS(101), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [130] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(130), [sym_doc_comment] = STATE(130), [sym_block_comment] = STATE(130), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1183), - [sym_const_declaration] = STATE(716), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(850), - [sym_expr_stmt] = STATE(850), - [sym_var_decl] = STATE(2182), - [sym_var_stmt] = STATE(850), - [sym_return_stmt] = STATE(850), - [sym_continue_stmt] = STATE(850), - [sym_break_stmt] = STATE(850), - [sym_defer_stmt] = STATE(850), - [sym_assert_stmt] = STATE(850), - [sym_declaration_stmt] = STATE(850), - [sym_nextcase_stmt] = STATE(850), - [sym_switch_stmt] = STATE(850), - [sym_if_stmt] = STATE(850), - [sym_for_stmt] = STATE(850), - [sym_foreach_stmt] = STATE(850), - [sym_while_stmt] = STATE(850), - [sym_do_stmt] = STATE(850), - [sym_asm_block_stmt] = STATE(850), - [sym_ct_assert_stmt] = STATE(850), - [sym_ct_echo_stmt] = STATE(850), - [sym_ct_if_stmt] = STATE(850), - [sym__ct_switch] = STATE(1621), - [sym_ct_switch_stmt] = STATE(850), - [sym_ct_for_stmt] = STATE(850), - [sym_ct_foreach_stmt] = STATE(850), - [sym__expr] = STATE(1299), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1624), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1154), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(568), - [anon_sym_const] = ACTIONS(570), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(572), - [anon_sym_continue] = ACTIONS(574), - [anon_sym_break] = ACTIONS(576), - [anon_sym_defer] = ACTIONS(578), - [anon_sym_assert] = ACTIONS(580), - [anon_sym_nextcase] = ACTIONS(582), - [anon_sym_switch] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(586), - [anon_sym_for] = ACTIONS(588), - [anon_sym_foreach] = ACTIONS(590), - [anon_sym_foreach_r] = ACTIONS(590), - [anon_sym_while] = ACTIONS(592), - [anon_sym_do] = ACTIONS(594), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(596), - [anon_sym_DOLLARassert] = ACTIONS(598), - [anon_sym_DOLLARerror] = ACTIONS(600), - [anon_sym_DOLLARecho] = ACTIONS(602), - [anon_sym_DOLLARif] = ACTIONS(604), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(608), - [anon_sym_DOLLARforeach] = ACTIONS(610), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1162), + [sym_const_declaration] = STATE(364), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(337), + [sym_expr_stmt] = STATE(337), + [sym_var_decl] = STATE(2193), + [sym_var_stmt] = STATE(337), + [sym_return_stmt] = STATE(337), + [sym_continue_stmt] = STATE(337), + [sym_break_stmt] = STATE(337), + [sym_defer_stmt] = STATE(337), + [sym_assert_stmt] = STATE(337), + [sym_declaration_stmt] = STATE(337), + [sym_nextcase_stmt] = STATE(337), + [sym_switch_stmt] = STATE(337), + [sym_if_stmt] = STATE(337), + [sym_for_stmt] = STATE(337), + [sym_foreach_stmt] = STATE(337), + [sym_while_stmt] = STATE(337), + [sym_do_stmt] = STATE(337), + [sym_asm_block_stmt] = STATE(337), + [sym_ct_assert_stmt] = STATE(337), + [sym_ct_echo_stmt] = STATE(337), + [sym_ct_if_stmt] = STATE(337), + [sym__ct_switch] = STATE(1544), + [sym_ct_switch_stmt] = STATE(337), + [sym_ct_for_stmt] = STATE(337), + [sym_ct_foreach_stmt] = STATE(337), + [sym__expr] = STATE(1093), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1351), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(1147), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_const] = ACTIONS(101), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [131] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(131), [sym_doc_comment] = STATE(131), [sym_block_comment] = STATE(131), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), [sym_local_decl_storage] = STATE(1169), - [sym_const_declaration] = STATE(480), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(535), - [sym_expr_stmt] = STATE(535), - [sym_var_decl] = STATE(2091), - [sym_var_stmt] = STATE(535), - [sym_return_stmt] = STATE(535), - [sym_continue_stmt] = STATE(535), - [sym_break_stmt] = STATE(535), - [sym_defer_stmt] = STATE(535), - [sym_assert_stmt] = STATE(535), - [sym_declaration_stmt] = STATE(535), - [sym_nextcase_stmt] = STATE(535), - [sym_switch_stmt] = STATE(535), - [sym_if_stmt] = STATE(535), - [sym_for_stmt] = STATE(535), - [sym_foreach_stmt] = STATE(535), - [sym_while_stmt] = STATE(535), - [sym_do_stmt] = STATE(535), - [sym_asm_block_stmt] = STATE(535), - [sym_ct_assert_stmt] = STATE(535), - [sym_ct_echo_stmt] = STATE(535), - [sym_ct_if_stmt] = STATE(535), - [sym__ct_switch] = STATE(1646), - [sym_ct_switch_stmt] = STATE(535), - [sym_ct_for_stmt] = STATE(535), - [sym_ct_foreach_stmt] = STATE(535), - [sym__expr] = STATE(1271), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1647), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1156), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(201), - [anon_sym_const] = ACTIONS(203), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(205), - [anon_sym_continue] = ACTIONS(207), - [anon_sym_break] = ACTIONS(209), - [anon_sym_defer] = ACTIONS(211), - [anon_sym_assert] = ACTIONS(213), - [anon_sym_nextcase] = ACTIONS(215), - [anon_sym_switch] = ACTIONS(217), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(219), - [anon_sym_for] = ACTIONS(221), - [anon_sym_foreach] = ACTIONS(223), - [anon_sym_foreach_r] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_do] = ACTIONS(227), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(229), - [anon_sym_DOLLARassert] = ACTIONS(231), - [anon_sym_DOLLARerror] = ACTIONS(233), - [anon_sym_DOLLARecho] = ACTIONS(235), - [anon_sym_DOLLARif] = ACTIONS(237), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(241), - [anon_sym_DOLLARforeach] = ACTIONS(243), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_const_declaration] = STATE(593), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(606), + [sym_expr_stmt] = STATE(606), + [sym_var_decl] = STATE(2089), + [sym_var_stmt] = STATE(606), + [sym_return_stmt] = STATE(606), + [sym_continue_stmt] = STATE(606), + [sym_break_stmt] = STATE(606), + [sym_defer_stmt] = STATE(606), + [sym_assert_stmt] = STATE(606), + [sym_declaration_stmt] = STATE(606), + [sym_nextcase_stmt] = STATE(606), + [sym_switch_stmt] = STATE(606), + [sym_if_stmt] = STATE(606), + [sym_for_stmt] = STATE(606), + [sym_foreach_stmt] = STATE(606), + [sym_while_stmt] = STATE(606), + [sym_do_stmt] = STATE(606), + [sym_asm_block_stmt] = STATE(606), + [sym_ct_assert_stmt] = STATE(606), + [sym_ct_echo_stmt] = STATE(606), + [sym_ct_if_stmt] = STATE(606), + [sym__ct_switch] = STATE(1521), + [sym_ct_switch_stmt] = STATE(606), + [sym_ct_for_stmt] = STATE(606), + [sym_ct_foreach_stmt] = STATE(606), + [sym__expr] = STATE(1087), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1353), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(1149), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(653), + [anon_sym_const] = ACTIONS(655), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(657), + [anon_sym_continue] = ACTIONS(659), + [anon_sym_break] = ACTIONS(661), + [anon_sym_defer] = ACTIONS(663), + [anon_sym_assert] = ACTIONS(665), + [anon_sym_nextcase] = ACTIONS(667), + [anon_sym_switch] = ACTIONS(669), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(671), + [anon_sym_for] = ACTIONS(673), + [anon_sym_foreach] = ACTIONS(675), + [anon_sym_foreach_r] = ACTIONS(675), + [anon_sym_while] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(681), + [anon_sym_DOLLARassert] = ACTIONS(683), + [anon_sym_DOLLARerror] = ACTIONS(685), + [anon_sym_DOLLARecho] = ACTIONS(687), + [anon_sym_DOLLARif] = ACTIONS(689), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(691), + [anon_sym_DOLLARforeach] = ACTIONS(695), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [132] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(132), [sym_doc_comment] = STATE(132), [sym_block_comment] = STATE(132), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1169), - [sym_const_declaration] = STATE(480), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(536), - [sym_expr_stmt] = STATE(536), - [sym_var_decl] = STATE(2091), - [sym_var_stmt] = STATE(536), - [sym_return_stmt] = STATE(536), - [sym_continue_stmt] = STATE(536), - [sym_break_stmt] = STATE(536), - [sym_defer_stmt] = STATE(536), - [sym_assert_stmt] = STATE(536), - [sym_declaration_stmt] = STATE(536), - [sym_nextcase_stmt] = STATE(536), - [sym_switch_stmt] = STATE(536), - [sym_if_stmt] = STATE(536), - [sym_for_stmt] = STATE(536), - [sym_foreach_stmt] = STATE(536), - [sym_while_stmt] = STATE(536), - [sym_do_stmt] = STATE(536), - [sym_asm_block_stmt] = STATE(536), - [sym_ct_assert_stmt] = STATE(536), - [sym_ct_echo_stmt] = STATE(536), - [sym_ct_if_stmt] = STATE(536), - [sym__ct_switch] = STATE(1646), - [sym_ct_switch_stmt] = STATE(536), - [sym_ct_for_stmt] = STATE(536), - [sym_ct_foreach_stmt] = STATE(536), - [sym__expr] = STATE(1271), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1647), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1158), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(201), - [anon_sym_const] = ACTIONS(203), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(205), - [anon_sym_continue] = ACTIONS(207), - [anon_sym_break] = ACTIONS(209), - [anon_sym_defer] = ACTIONS(211), - [anon_sym_assert] = ACTIONS(213), - [anon_sym_nextcase] = ACTIONS(215), - [anon_sym_switch] = ACTIONS(217), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(219), - [anon_sym_for] = ACTIONS(221), - [anon_sym_foreach] = ACTIONS(223), - [anon_sym_foreach_r] = ACTIONS(223), - [anon_sym_while] = ACTIONS(225), - [anon_sym_do] = ACTIONS(227), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(229), - [anon_sym_DOLLARassert] = ACTIONS(231), - [anon_sym_DOLLARerror] = ACTIONS(233), - [anon_sym_DOLLARecho] = ACTIONS(235), - [anon_sym_DOLLARif] = ACTIONS(237), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(241), - [anon_sym_DOLLARforeach] = ACTIONS(243), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1162), + [sym_const_declaration] = STATE(364), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(341), + [sym_expr_stmt] = STATE(341), + [sym_var_decl] = STATE(2193), + [sym_var_stmt] = STATE(341), + [sym_return_stmt] = STATE(341), + [sym_continue_stmt] = STATE(341), + [sym_break_stmt] = STATE(341), + [sym_defer_stmt] = STATE(341), + [sym_assert_stmt] = STATE(341), + [sym_declaration_stmt] = STATE(341), + [sym_nextcase_stmt] = STATE(341), + [sym_switch_stmt] = STATE(341), + [sym_if_stmt] = STATE(341), + [sym_for_stmt] = STATE(341), + [sym_foreach_stmt] = STATE(341), + [sym_while_stmt] = STATE(341), + [sym_do_stmt] = STATE(341), + [sym_asm_block_stmt] = STATE(341), + [sym_ct_assert_stmt] = STATE(341), + [sym_ct_echo_stmt] = STATE(341), + [sym_ct_if_stmt] = STATE(341), + [sym__ct_switch] = STATE(1544), + [sym_ct_switch_stmt] = STATE(341), + [sym_ct_for_stmt] = STATE(341), + [sym_ct_foreach_stmt] = STATE(341), + [sym__expr] = STATE(1093), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1351), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(1151), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_const] = ACTIONS(101), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [133] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(133), [sym_doc_comment] = STATE(133), [sym_block_comment] = STATE(133), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1158), - [sym_const_declaration] = STATE(445), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(449), - [sym_expr_stmt] = STATE(449), - [sym_var_decl] = STATE(2324), - [sym_var_stmt] = STATE(449), - [sym_return_stmt] = STATE(449), - [sym_continue_stmt] = STATE(449), - [sym_break_stmt] = STATE(449), - [sym_defer_stmt] = STATE(449), - [sym_assert_stmt] = STATE(449), - [sym_declaration_stmt] = STATE(449), - [sym_nextcase_stmt] = STATE(449), - [sym_switch_stmt] = STATE(449), - [sym_if_stmt] = STATE(449), - [sym_for_stmt] = STATE(449), - [sym_foreach_stmt] = STATE(449), - [sym_while_stmt] = STATE(449), - [sym_do_stmt] = STATE(449), - [sym_asm_block_stmt] = STATE(449), - [sym_ct_assert_stmt] = STATE(449), - [sym_ct_echo_stmt] = STATE(449), - [sym_ct_if_stmt] = STATE(449), - [sym__ct_switch] = STATE(1606), - [sym_ct_switch_stmt] = STATE(449), - [sym_ct_for_stmt] = STATE(449), - [sym_ct_foreach_stmt] = STATE(449), - [sym__expr] = STATE(1265), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1564), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1160), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_const] = ACTIONS(103), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1169), + [sym_const_declaration] = STATE(593), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(619), + [sym_expr_stmt] = STATE(619), + [sym_var_decl] = STATE(2089), + [sym_var_stmt] = STATE(619), + [sym_return_stmt] = STATE(619), + [sym_continue_stmt] = STATE(619), + [sym_break_stmt] = STATE(619), + [sym_defer_stmt] = STATE(619), + [sym_assert_stmt] = STATE(619), + [sym_declaration_stmt] = STATE(619), + [sym_nextcase_stmt] = STATE(619), + [sym_switch_stmt] = STATE(619), + [sym_if_stmt] = STATE(619), + [sym_for_stmt] = STATE(619), + [sym_foreach_stmt] = STATE(619), + [sym_while_stmt] = STATE(619), + [sym_do_stmt] = STATE(619), + [sym_asm_block_stmt] = STATE(619), + [sym_ct_assert_stmt] = STATE(619), + [sym_ct_echo_stmt] = STATE(619), + [sym_ct_if_stmt] = STATE(619), + [sym__ct_switch] = STATE(1521), + [sym_ct_switch_stmt] = STATE(619), + [sym_ct_for_stmt] = STATE(619), + [sym_ct_foreach_stmt] = STATE(619), + [sym__expr] = STATE(1087), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1353), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(1153), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(653), + [anon_sym_const] = ACTIONS(655), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(657), + [anon_sym_continue] = ACTIONS(659), + [anon_sym_break] = ACTIONS(661), + [anon_sym_defer] = ACTIONS(663), + [anon_sym_assert] = ACTIONS(665), + [anon_sym_nextcase] = ACTIONS(667), + [anon_sym_switch] = ACTIONS(669), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(671), + [anon_sym_for] = ACTIONS(673), + [anon_sym_foreach] = ACTIONS(675), + [anon_sym_foreach_r] = ACTIONS(675), + [anon_sym_while] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(681), + [anon_sym_DOLLARassert] = ACTIONS(683), + [anon_sym_DOLLARerror] = ACTIONS(685), + [anon_sym_DOLLARecho] = ACTIONS(687), + [anon_sym_DOLLARif] = ACTIONS(689), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(691), + [anon_sym_DOLLARforeach] = ACTIONS(695), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [134] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(134), [sym_doc_comment] = STATE(134), [sym_block_comment] = STATE(134), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1158), - [sym_const_declaration] = STATE(445), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(401), - [sym_expr_stmt] = STATE(401), - [sym_var_decl] = STATE(2324), - [sym_var_stmt] = STATE(401), - [sym_return_stmt] = STATE(401), - [sym_continue_stmt] = STATE(401), - [sym_break_stmt] = STATE(401), - [sym_defer_stmt] = STATE(401), - [sym_assert_stmt] = STATE(401), - [sym_declaration_stmt] = STATE(401), - [sym_nextcase_stmt] = STATE(401), - [sym_switch_stmt] = STATE(401), - [sym_if_stmt] = STATE(401), - [sym_for_stmt] = STATE(401), - [sym_foreach_stmt] = STATE(401), - [sym_while_stmt] = STATE(401), - [sym_do_stmt] = STATE(401), - [sym_asm_block_stmt] = STATE(401), - [sym_ct_assert_stmt] = STATE(401), - [sym_ct_echo_stmt] = STATE(401), - [sym_ct_if_stmt] = STATE(401), - [sym__ct_switch] = STATE(1606), - [sym_ct_switch_stmt] = STATE(401), - [sym_ct_for_stmt] = STATE(401), - [sym_ct_foreach_stmt] = STATE(401), - [sym__expr] = STATE(1265), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1564), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1162), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_const] = ACTIONS(103), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1169), + [sym_const_declaration] = STATE(593), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(618), + [sym_expr_stmt] = STATE(618), + [sym_var_decl] = STATE(2089), + [sym_var_stmt] = STATE(618), + [sym_return_stmt] = STATE(618), + [sym_continue_stmt] = STATE(618), + [sym_break_stmt] = STATE(618), + [sym_defer_stmt] = STATE(618), + [sym_assert_stmt] = STATE(618), + [sym_declaration_stmt] = STATE(618), + [sym_nextcase_stmt] = STATE(618), + [sym_switch_stmt] = STATE(618), + [sym_if_stmt] = STATE(618), + [sym_for_stmt] = STATE(618), + [sym_foreach_stmt] = STATE(618), + [sym_while_stmt] = STATE(618), + [sym_do_stmt] = STATE(618), + [sym_asm_block_stmt] = STATE(618), + [sym_ct_assert_stmt] = STATE(618), + [sym_ct_echo_stmt] = STATE(618), + [sym_ct_if_stmt] = STATE(618), + [sym__ct_switch] = STATE(1521), + [sym_ct_switch_stmt] = STATE(618), + [sym_ct_for_stmt] = STATE(618), + [sym_ct_foreach_stmt] = STATE(618), + [sym__expr] = STATE(1087), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1353), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(1155), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(653), + [anon_sym_const] = ACTIONS(655), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(657), + [anon_sym_continue] = ACTIONS(659), + [anon_sym_break] = ACTIONS(661), + [anon_sym_defer] = ACTIONS(663), + [anon_sym_assert] = ACTIONS(665), + [anon_sym_nextcase] = ACTIONS(667), + [anon_sym_switch] = ACTIONS(669), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(671), + [anon_sym_for] = ACTIONS(673), + [anon_sym_foreach] = ACTIONS(675), + [anon_sym_foreach_r] = ACTIONS(675), + [anon_sym_while] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(681), + [anon_sym_DOLLARassert] = ACTIONS(683), + [anon_sym_DOLLARerror] = ACTIONS(685), + [anon_sym_DOLLARecho] = ACTIONS(687), + [anon_sym_DOLLARif] = ACTIONS(689), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(691), + [anon_sym_DOLLARforeach] = ACTIONS(695), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [135] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(135), [sym_doc_comment] = STATE(135), [sym_block_comment] = STATE(135), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1175), - [sym_const_declaration] = STATE(727), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(637), - [sym_expr_stmt] = STATE(637), - [sym_var_decl] = STATE(2279), - [sym_var_stmt] = STATE(637), - [sym_return_stmt] = STATE(637), - [sym_continue_stmt] = STATE(637), - [sym_break_stmt] = STATE(637), - [sym_defer_stmt] = STATE(637), - [sym_assert_stmt] = STATE(637), - [sym_declaration_stmt] = STATE(637), - [sym_nextcase_stmt] = STATE(637), - [sym_switch_stmt] = STATE(637), - [sym_if_stmt] = STATE(637), - [sym_for_stmt] = STATE(637), - [sym_foreach_stmt] = STATE(637), - [sym_while_stmt] = STATE(637), - [sym_do_stmt] = STATE(637), - [sym_asm_block_stmt] = STATE(637), - [sym_ct_assert_stmt] = STATE(637), - [sym_ct_echo_stmt] = STATE(637), - [sym_ct_if_stmt] = STATE(637), - [sym__ct_switch] = STATE(1593), - [sym_ct_switch_stmt] = STATE(637), - [sym_ct_for_stmt] = STATE(637), - [sym_ct_foreach_stmt] = STATE(637), - [sym__expr] = STATE(1275), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1596), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1164), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(614), - [anon_sym_const] = ACTIONS(616), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_break] = ACTIONS(622), - [anon_sym_defer] = ACTIONS(624), - [anon_sym_assert] = ACTIONS(626), - [anon_sym_nextcase] = ACTIONS(628), - [anon_sym_switch] = ACTIONS(630), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(632), - [anon_sym_for] = ACTIONS(634), - [anon_sym_foreach] = ACTIONS(636), - [anon_sym_foreach_r] = ACTIONS(636), - [anon_sym_while] = ACTIONS(638), - [anon_sym_do] = ACTIONS(640), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(642), - [anon_sym_DOLLARassert] = ACTIONS(644), - [anon_sym_DOLLARerror] = ACTIONS(646), - [anon_sym_DOLLARecho] = ACTIONS(648), - [anon_sym_DOLLARif] = ACTIONS(650), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(652), - [anon_sym_DOLLARforeach] = ACTIONS(654), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1173), + [sym_const_declaration] = STATE(716), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(765), + [sym_expr_stmt] = STATE(765), + [sym_var_decl] = STATE(1937), + [sym_var_stmt] = STATE(765), + [sym_return_stmt] = STATE(765), + [sym_continue_stmt] = STATE(765), + [sym_break_stmt] = STATE(765), + [sym_defer_stmt] = STATE(765), + [sym_assert_stmt] = STATE(765), + [sym_declaration_stmt] = STATE(765), + [sym_nextcase_stmt] = STATE(765), + [sym_switch_stmt] = STATE(765), + [sym_if_stmt] = STATE(765), + [sym_for_stmt] = STATE(765), + [sym_foreach_stmt] = STATE(765), + [sym_while_stmt] = STATE(765), + [sym_do_stmt] = STATE(765), + [sym_asm_block_stmt] = STATE(765), + [sym_ct_assert_stmt] = STATE(765), + [sym_ct_echo_stmt] = STATE(765), + [sym_ct_if_stmt] = STATE(765), + [sym__ct_switch] = STATE(1545), + [sym_ct_switch_stmt] = STATE(765), + [sym_ct_for_stmt] = STATE(765), + [sym_ct_foreach_stmt] = STATE(765), + [sym__expr] = STATE(1109), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1338), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(1157), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(607), + [anon_sym_const] = ACTIONS(609), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_break] = ACTIONS(615), + [anon_sym_defer] = ACTIONS(617), + [anon_sym_assert] = ACTIONS(619), + [anon_sym_nextcase] = ACTIONS(621), + [anon_sym_switch] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(625), + [anon_sym_for] = ACTIONS(627), + [anon_sym_foreach] = ACTIONS(629), + [anon_sym_foreach_r] = ACTIONS(629), + [anon_sym_while] = ACTIONS(631), + [anon_sym_do] = ACTIONS(633), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(635), + [anon_sym_DOLLARassert] = ACTIONS(637), + [anon_sym_DOLLARerror] = ACTIONS(639), + [anon_sym_DOLLARecho] = ACTIONS(641), + [anon_sym_DOLLARif] = ACTIONS(643), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(647), + [anon_sym_DOLLARforeach] = ACTIONS(649), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [136] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(136), [sym_doc_comment] = STATE(136), [sym_block_comment] = STATE(136), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1175), - [sym_const_declaration] = STATE(727), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(636), - [sym_expr_stmt] = STATE(636), - [sym_var_decl] = STATE(2279), - [sym_var_stmt] = STATE(636), - [sym_return_stmt] = STATE(636), - [sym_continue_stmt] = STATE(636), - [sym_break_stmt] = STATE(636), - [sym_defer_stmt] = STATE(636), - [sym_assert_stmt] = STATE(636), - [sym_declaration_stmt] = STATE(636), - [sym_nextcase_stmt] = STATE(636), - [sym_switch_stmt] = STATE(636), - [sym_if_stmt] = STATE(636), - [sym_for_stmt] = STATE(636), - [sym_foreach_stmt] = STATE(636), - [sym_while_stmt] = STATE(636), - [sym_do_stmt] = STATE(636), - [sym_asm_block_stmt] = STATE(636), - [sym_ct_assert_stmt] = STATE(636), - [sym_ct_echo_stmt] = STATE(636), - [sym_ct_if_stmt] = STATE(636), - [sym__ct_switch] = STATE(1593), - [sym_ct_switch_stmt] = STATE(636), - [sym_ct_for_stmt] = STATE(636), - [sym_ct_foreach_stmt] = STATE(636), - [sym__expr] = STATE(1275), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1596), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1166), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(614), - [anon_sym_const] = ACTIONS(616), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_break] = ACTIONS(622), - [anon_sym_defer] = ACTIONS(624), - [anon_sym_assert] = ACTIONS(626), - [anon_sym_nextcase] = ACTIONS(628), - [anon_sym_switch] = ACTIONS(630), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(632), - [anon_sym_for] = ACTIONS(634), - [anon_sym_foreach] = ACTIONS(636), - [anon_sym_foreach_r] = ACTIONS(636), - [anon_sym_while] = ACTIONS(638), - [anon_sym_do] = ACTIONS(640), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(642), - [anon_sym_DOLLARassert] = ACTIONS(644), - [anon_sym_DOLLARerror] = ACTIONS(646), - [anon_sym_DOLLARecho] = ACTIONS(648), - [anon_sym_DOLLARif] = ACTIONS(650), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(652), - [anon_sym_DOLLARforeach] = ACTIONS(654), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1169), + [sym_const_declaration] = STATE(593), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(586), + [sym_expr_stmt] = STATE(586), + [sym_var_decl] = STATE(2089), + [sym_var_stmt] = STATE(586), + [sym_return_stmt] = STATE(586), + [sym_continue_stmt] = STATE(586), + [sym_break_stmt] = STATE(586), + [sym_defer_stmt] = STATE(586), + [sym_assert_stmt] = STATE(586), + [sym_declaration_stmt] = STATE(586), + [sym_nextcase_stmt] = STATE(586), + [sym_switch_stmt] = STATE(586), + [sym_if_stmt] = STATE(586), + [sym_for_stmt] = STATE(586), + [sym_foreach_stmt] = STATE(586), + [sym_while_stmt] = STATE(586), + [sym_do_stmt] = STATE(586), + [sym_asm_block_stmt] = STATE(586), + [sym_ct_assert_stmt] = STATE(586), + [sym_ct_echo_stmt] = STATE(586), + [sym_ct_if_stmt] = STATE(586), + [sym__ct_switch] = STATE(1521), + [sym_ct_switch_stmt] = STATE(586), + [sym_ct_for_stmt] = STATE(586), + [sym_ct_foreach_stmt] = STATE(586), + [sym__expr] = STATE(1087), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1353), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(1159), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(653), + [anon_sym_const] = ACTIONS(655), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(657), + [anon_sym_continue] = ACTIONS(659), + [anon_sym_break] = ACTIONS(661), + [anon_sym_defer] = ACTIONS(663), + [anon_sym_assert] = ACTIONS(665), + [anon_sym_nextcase] = ACTIONS(667), + [anon_sym_switch] = ACTIONS(669), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(671), + [anon_sym_for] = ACTIONS(673), + [anon_sym_foreach] = ACTIONS(675), + [anon_sym_foreach_r] = ACTIONS(675), + [anon_sym_while] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(681), + [anon_sym_DOLLARassert] = ACTIONS(683), + [anon_sym_DOLLARerror] = ACTIONS(685), + [anon_sym_DOLLARecho] = ACTIONS(687), + [anon_sym_DOLLARif] = ACTIONS(689), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(691), + [anon_sym_DOLLARforeach] = ACTIONS(695), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [137] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(137), [sym_doc_comment] = STATE(137), [sym_block_comment] = STATE(137), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1183), - [sym_const_declaration] = STATE(716), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(788), - [sym_expr_stmt] = STATE(788), - [sym_var_decl] = STATE(2182), - [sym_var_stmt] = STATE(788), - [sym_return_stmt] = STATE(788), - [sym_continue_stmt] = STATE(788), - [sym_break_stmt] = STATE(788), - [sym_defer_stmt] = STATE(788), - [sym_assert_stmt] = STATE(788), - [sym_declaration_stmt] = STATE(788), - [sym_nextcase_stmt] = STATE(788), - [sym_switch_stmt] = STATE(788), - [sym_if_stmt] = STATE(788), - [sym_for_stmt] = STATE(788), - [sym_foreach_stmt] = STATE(788), - [sym_while_stmt] = STATE(788), - [sym_do_stmt] = STATE(788), - [sym_asm_block_stmt] = STATE(788), - [sym_ct_assert_stmt] = STATE(788), - [sym_ct_echo_stmt] = STATE(788), - [sym_ct_if_stmt] = STATE(788), - [sym__ct_switch] = STATE(1621), - [sym_ct_switch_stmt] = STATE(788), - [sym_ct_for_stmt] = STATE(788), - [sym_ct_foreach_stmt] = STATE(788), - [sym__expr] = STATE(1299), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1624), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(568), - [anon_sym_const] = ACTIONS(570), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(572), - [anon_sym_continue] = ACTIONS(574), - [anon_sym_break] = ACTIONS(576), - [anon_sym_defer] = ACTIONS(578), - [anon_sym_assert] = ACTIONS(580), - [anon_sym_nextcase] = ACTIONS(582), - [anon_sym_switch] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(586), - [anon_sym_for] = ACTIONS(588), - [anon_sym_foreach] = ACTIONS(590), - [anon_sym_foreach_r] = ACTIONS(590), - [anon_sym_while] = ACTIONS(592), - [anon_sym_do] = ACTIONS(594), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(596), - [anon_sym_DOLLARassert] = ACTIONS(598), - [anon_sym_DOLLARerror] = ACTIONS(600), - [anon_sym_DOLLARecho] = ACTIONS(602), - [anon_sym_DOLLARif] = ACTIONS(604), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(608), - [anon_sym_DOLLARforeach] = ACTIONS(610), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1169), + [sym_const_declaration] = STATE(593), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(580), + [sym_expr_stmt] = STATE(580), + [sym_var_decl] = STATE(2089), + [sym_var_stmt] = STATE(580), + [sym_return_stmt] = STATE(580), + [sym_continue_stmt] = STATE(580), + [sym_break_stmt] = STATE(580), + [sym_defer_stmt] = STATE(580), + [sym_assert_stmt] = STATE(580), + [sym_declaration_stmt] = STATE(580), + [sym_nextcase_stmt] = STATE(580), + [sym_switch_stmt] = STATE(580), + [sym_if_stmt] = STATE(580), + [sym_for_stmt] = STATE(580), + [sym_foreach_stmt] = STATE(580), + [sym_while_stmt] = STATE(580), + [sym_do_stmt] = STATE(580), + [sym_asm_block_stmt] = STATE(580), + [sym_ct_assert_stmt] = STATE(580), + [sym_ct_echo_stmt] = STATE(580), + [sym_ct_if_stmt] = STATE(580), + [sym__ct_switch] = STATE(1521), + [sym_ct_switch_stmt] = STATE(580), + [sym_ct_for_stmt] = STATE(580), + [sym_ct_foreach_stmt] = STATE(580), + [sym__expr] = STATE(1087), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1353), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(1161), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(653), + [anon_sym_const] = ACTIONS(655), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(657), + [anon_sym_continue] = ACTIONS(659), + [anon_sym_break] = ACTIONS(661), + [anon_sym_defer] = ACTIONS(663), + [anon_sym_assert] = ACTIONS(665), + [anon_sym_nextcase] = ACTIONS(667), + [anon_sym_switch] = ACTIONS(669), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(671), + [anon_sym_for] = ACTIONS(673), + [anon_sym_foreach] = ACTIONS(675), + [anon_sym_foreach_r] = ACTIONS(675), + [anon_sym_while] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(681), + [anon_sym_DOLLARassert] = ACTIONS(683), + [anon_sym_DOLLARerror] = ACTIONS(685), + [anon_sym_DOLLARecho] = ACTIONS(687), + [anon_sym_DOLLARif] = ACTIONS(689), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(691), + [anon_sym_DOLLARforeach] = ACTIONS(695), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [138] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(138), [sym_doc_comment] = STATE(138), [sym_block_comment] = STATE(138), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1175), - [sym_const_declaration] = STATE(727), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(634), - [sym_expr_stmt] = STATE(634), - [sym_var_decl] = STATE(2279), - [sym_var_stmt] = STATE(634), - [sym_return_stmt] = STATE(634), - [sym_continue_stmt] = STATE(634), - [sym_break_stmt] = STATE(634), - [sym_defer_stmt] = STATE(634), - [sym_assert_stmt] = STATE(634), - [sym_declaration_stmt] = STATE(634), - [sym_nextcase_stmt] = STATE(634), - [sym_switch_stmt] = STATE(634), - [sym_if_stmt] = STATE(634), - [sym_for_stmt] = STATE(634), - [sym_foreach_stmt] = STATE(634), - [sym_while_stmt] = STATE(634), - [sym_do_stmt] = STATE(634), - [sym_asm_block_stmt] = STATE(634), - [sym_ct_assert_stmt] = STATE(634), - [sym_ct_echo_stmt] = STATE(634), - [sym_ct_if_stmt] = STATE(634), - [sym__ct_switch] = STATE(1593), - [sym_ct_switch_stmt] = STATE(634), - [sym_ct_for_stmt] = STATE(634), - [sym_ct_foreach_stmt] = STATE(634), - [sym__expr] = STATE(1275), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1596), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1170), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(614), - [anon_sym_const] = ACTIONS(616), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_break] = ACTIONS(622), - [anon_sym_defer] = ACTIONS(624), - [anon_sym_assert] = ACTIONS(626), - [anon_sym_nextcase] = ACTIONS(628), - [anon_sym_switch] = ACTIONS(630), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(632), - [anon_sym_for] = ACTIONS(634), - [anon_sym_foreach] = ACTIONS(636), - [anon_sym_foreach_r] = ACTIONS(636), - [anon_sym_while] = ACTIONS(638), - [anon_sym_do] = ACTIONS(640), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(642), - [anon_sym_DOLLARassert] = ACTIONS(644), - [anon_sym_DOLLARerror] = ACTIONS(646), - [anon_sym_DOLLARecho] = ACTIONS(648), - [anon_sym_DOLLARif] = ACTIONS(650), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(652), - [anon_sym_DOLLARforeach] = ACTIONS(654), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1169), + [sym_const_declaration] = STATE(593), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(576), + [sym_expr_stmt] = STATE(576), + [sym_var_decl] = STATE(2089), + [sym_var_stmt] = STATE(576), + [sym_return_stmt] = STATE(576), + [sym_continue_stmt] = STATE(576), + [sym_break_stmt] = STATE(576), + [sym_defer_stmt] = STATE(576), + [sym_assert_stmt] = STATE(576), + [sym_declaration_stmt] = STATE(576), + [sym_nextcase_stmt] = STATE(576), + [sym_switch_stmt] = STATE(576), + [sym_if_stmt] = STATE(576), + [sym_for_stmt] = STATE(576), + [sym_foreach_stmt] = STATE(576), + [sym_while_stmt] = STATE(576), + [sym_do_stmt] = STATE(576), + [sym_asm_block_stmt] = STATE(576), + [sym_ct_assert_stmt] = STATE(576), + [sym_ct_echo_stmt] = STATE(576), + [sym_ct_if_stmt] = STATE(576), + [sym__ct_switch] = STATE(1521), + [sym_ct_switch_stmt] = STATE(576), + [sym_ct_for_stmt] = STATE(576), + [sym_ct_foreach_stmt] = STATE(576), + [sym__expr] = STATE(1087), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1353), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(1163), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(653), + [anon_sym_const] = ACTIONS(655), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(657), + [anon_sym_continue] = ACTIONS(659), + [anon_sym_break] = ACTIONS(661), + [anon_sym_defer] = ACTIONS(663), + [anon_sym_assert] = ACTIONS(665), + [anon_sym_nextcase] = ACTIONS(667), + [anon_sym_switch] = ACTIONS(669), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(671), + [anon_sym_for] = ACTIONS(673), + [anon_sym_foreach] = ACTIONS(675), + [anon_sym_foreach_r] = ACTIONS(675), + [anon_sym_while] = ACTIONS(677), + [anon_sym_do] = ACTIONS(679), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(681), + [anon_sym_DOLLARassert] = ACTIONS(683), + [anon_sym_DOLLARerror] = ACTIONS(685), + [anon_sym_DOLLARecho] = ACTIONS(687), + [anon_sym_DOLLARif] = ACTIONS(689), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(691), + [anon_sym_DOLLARforeach] = ACTIONS(695), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [139] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(139), [sym_doc_comment] = STATE(139), [sym_block_comment] = STATE(139), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_local_decl_storage] = STATE(1170), - [sym_const_declaration] = STATE(593), - [sym_lambda_declaration] = STATE(1679), - [sym_compound_stmt] = STATE(555), - [sym_expr_stmt] = STATE(555), - [sym_var_decl] = STATE(2285), - [sym_var_stmt] = STATE(555), - [sym_return_stmt] = STATE(555), - [sym_continue_stmt] = STATE(555), - [sym_break_stmt] = STATE(555), - [sym_defer_stmt] = STATE(555), - [sym_assert_stmt] = STATE(555), - [sym_declaration_stmt] = STATE(555), - [sym_nextcase_stmt] = STATE(555), - [sym_switch_stmt] = STATE(555), - [sym_if_stmt] = STATE(555), - [sym_for_stmt] = STATE(555), - [sym_foreach_stmt] = STATE(555), - [sym_while_stmt] = STATE(555), - [sym_do_stmt] = STATE(555), - [sym_asm_block_stmt] = STATE(555), - [sym_ct_assert_stmt] = STATE(555), - [sym_ct_echo_stmt] = STATE(555), - [sym_ct_if_stmt] = STATE(555), - [sym__ct_switch] = STATE(1604), - [sym_ct_switch_stmt] = STATE(555), - [sym_ct_for_stmt] = STATE(555), - [sym_ct_foreach_stmt] = STATE(555), - [sym__expr] = STATE(1288), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1595), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1172), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(474), - [anon_sym_const] = ACTIONS(476), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(478), - [anon_sym_continue] = ACTIONS(480), - [anon_sym_break] = ACTIONS(482), - [anon_sym_defer] = ACTIONS(484), - [anon_sym_assert] = ACTIONS(486), - [anon_sym_nextcase] = ACTIONS(488), - [anon_sym_switch] = ACTIONS(490), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(492), - [anon_sym_for] = ACTIONS(494), - [anon_sym_foreach] = ACTIONS(496), - [anon_sym_foreach_r] = ACTIONS(496), - [anon_sym_while] = ACTIONS(498), - [anon_sym_do] = ACTIONS(500), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(502), - [anon_sym_DOLLARassert] = ACTIONS(504), - [anon_sym_DOLLARerror] = ACTIONS(506), - [anon_sym_DOLLARecho] = ACTIONS(508), - [anon_sym_DOLLARif] = ACTIONS(510), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(516), - [anon_sym_DOLLARforeach] = ACTIONS(518), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_local_decl_storage] = STATE(1162), + [sym_const_declaration] = STATE(364), + [sym_lambda_declaration] = STATE(1480), + [sym_compound_stmt] = STATE(343), + [sym_expr_stmt] = STATE(343), + [sym_var_decl] = STATE(2193), + [sym_var_stmt] = STATE(343), + [sym_return_stmt] = STATE(343), + [sym_continue_stmt] = STATE(343), + [sym_break_stmt] = STATE(343), + [sym_defer_stmt] = STATE(343), + [sym_assert_stmt] = STATE(343), + [sym_declaration_stmt] = STATE(343), + [sym_nextcase_stmt] = STATE(343), + [sym_switch_stmt] = STATE(343), + [sym_if_stmt] = STATE(343), + [sym_for_stmt] = STATE(343), + [sym_foreach_stmt] = STATE(343), + [sym_while_stmt] = STATE(343), + [sym_do_stmt] = STATE(343), + [sym_asm_block_stmt] = STATE(343), + [sym_ct_assert_stmt] = STATE(343), + [sym_ct_echo_stmt] = STATE(343), + [sym_ct_if_stmt] = STATE(343), + [sym__ct_switch] = STATE(1544), + [sym_ct_switch_stmt] = STATE(343), + [sym_ct_for_stmt] = STATE(343), + [sym_ct_foreach_stmt] = STATE(343), + [sym__expr] = STATE(1093), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1351), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_static] = ACTIONS(91), + [anon_sym_tlocal] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(1165), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_const] = ACTIONS(101), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [140] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(140), [sym_doc_comment] = STATE(140), [sym_block_comment] = STATE(140), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1285), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1078), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_COMMA] = ACTIONS(1174), - [anon_sym_EQ] = ACTIONS(1176), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_RPAREN] = ACTIONS(1174), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_RBRACK] = ACTIONS(1174), - [anon_sym_SEMI] = ACTIONS(1174), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_RBRACE] = ACTIONS(1174), - [anon_sym_COLON] = ACTIONS(1174), - [anon_sym_DOT_DOT] = ACTIONS(1174), - [anon_sym_DOT] = ACTIONS(1176), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_COMMA] = ACTIONS(1167), + [anon_sym_LPAREN_LT] = ACTIONS(1167), + [anon_sym_GT_RPAREN] = ACTIONS(1167), + [anon_sym_EQ] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_RPAREN] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(1167), + [anon_sym_RBRACK] = ACTIONS(1167), + [anon_sym_SEMI] = ACTIONS(1167), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_RBRACE] = ACTIONS(1167), + [anon_sym_COLON] = ACTIONS(1167), + [anon_sym_DOT_DOT] = ACTIONS(1167), + [anon_sym_DOT] = ACTIONS(1169), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_LT_LT] = ACTIONS(1176), - [anon_sym_GT_GT] = ACTIONS(1176), - [anon_sym_STAR] = ACTIONS(89), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_PLUS_EQ] = ACTIONS(1174), - [anon_sym_DASH_EQ] = ACTIONS(1174), - [anon_sym_STAR_EQ] = ACTIONS(1174), - [anon_sym_SLASH_EQ] = ACTIONS(1174), - [anon_sym_PERCENT_EQ] = ACTIONS(1174), - [anon_sym_LT_LT_EQ] = ACTIONS(1174), - [anon_sym_GT_GT_EQ] = ACTIONS(1174), - [anon_sym_AMP_EQ] = ACTIONS(1174), - [anon_sym_CARET_EQ] = ACTIONS(1174), - [anon_sym_PIPE_EQ] = ACTIONS(1174), - [anon_sym_QMARK] = ACTIONS(1176), - [anon_sym_QMARK_COLON] = ACTIONS(1174), - [anon_sym_QMARK_QMARK] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_PERCENT] = ACTIONS(1176), - [anon_sym_PIPE] = ACTIONS(1176), - [anon_sym_CARET] = ACTIONS(1176), - [anon_sym_EQ_EQ] = ACTIONS(1174), - [anon_sym_BANG_EQ] = ACTIONS(1174), - [anon_sym_GT] = ACTIONS(1176), - [anon_sym_GT_EQ] = ACTIONS(1174), - [anon_sym_LT_EQ] = ACTIONS(1174), - [anon_sym_LT] = ACTIONS(1176), - [anon_sym_PIPE_PIPE] = ACTIONS(1174), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_LT_LT] = ACTIONS(1169), + [anon_sym_GT_GT] = ACTIONS(1169), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_PLUS_EQ] = ACTIONS(1167), + [anon_sym_DASH_EQ] = ACTIONS(1167), + [anon_sym_STAR_EQ] = ACTIONS(1167), + [anon_sym_SLASH_EQ] = ACTIONS(1167), + [anon_sym_PERCENT_EQ] = ACTIONS(1167), + [anon_sym_LT_LT_EQ] = ACTIONS(1167), + [anon_sym_GT_GT_EQ] = ACTIONS(1167), + [anon_sym_AMP_EQ] = ACTIONS(1167), + [anon_sym_CARET_EQ] = ACTIONS(1167), + [anon_sym_PIPE_EQ] = ACTIONS(1167), + [anon_sym_QMARK] = ACTIONS(1169), + [anon_sym_QMARK_COLON] = ACTIONS(1167), + [anon_sym_QMARK_QMARK] = ACTIONS(1167), + [anon_sym_BANG] = ACTIONS(1175), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(1169), + [anon_sym_PERCENT] = ACTIONS(1169), + [anon_sym_PIPE] = ACTIONS(1169), + [anon_sym_CARET] = ACTIONS(1169), + [anon_sym_EQ_EQ] = ACTIONS(1167), + [anon_sym_BANG_EQ] = ACTIONS(1167), + [anon_sym_GT] = ACTIONS(1169), + [anon_sym_GT_EQ] = ACTIONS(1167), + [anon_sym_LT_EQ] = ACTIONS(1167), + [anon_sym_LT] = ACTIONS(1169), + [anon_sym_PIPE_PIPE] = ACTIONS(1167), + [anon_sym_BANG_BANG] = ACTIONS(1167), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -39278,2057 +38352,2029 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [anon_sym_GT_RBRACK] = ACTIONS(1174), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [anon_sym_GT_RBRACK] = ACTIONS(1167), + [sym_real_literal] = ACTIONS(61), }, [141] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), [sym_line_comment] = STATE(141), [sym_doc_comment] = STATE(141), [sym_block_comment] = STATE(141), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1291), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_COMMA] = ACTIONS(1174), - [anon_sym_GT_RPAREN] = ACTIONS(1174), - [anon_sym_EQ] = ACTIONS(1176), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_RPAREN] = ACTIONS(1174), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_RBRACE] = ACTIONS(1174), - [anon_sym_DOT] = ACTIONS(1174), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_LT_LT] = ACTIONS(1176), - [anon_sym_GT_GT] = ACTIONS(1176), - [anon_sym_STAR] = ACTIONS(89), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_PLUS_EQ] = ACTIONS(1174), - [anon_sym_DASH_EQ] = ACTIONS(1174), - [anon_sym_STAR_EQ] = ACTIONS(1174), - [anon_sym_SLASH_EQ] = ACTIONS(1174), - [anon_sym_PERCENT_EQ] = ACTIONS(1174), - [anon_sym_LT_LT_EQ] = ACTIONS(1174), - [anon_sym_GT_GT_EQ] = ACTIONS(1174), - [anon_sym_AMP_EQ] = ACTIONS(1174), - [anon_sym_CARET_EQ] = ACTIONS(1174), - [anon_sym_PIPE_EQ] = ACTIONS(1174), - [anon_sym_QMARK] = ACTIONS(1176), - [anon_sym_QMARK_COLON] = ACTIONS(1174), - [anon_sym_QMARK_QMARK] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_PERCENT] = ACTIONS(1176), - [anon_sym_PIPE] = ACTIONS(1176), - [anon_sym_CARET] = ACTIONS(1176), - [anon_sym_EQ_EQ] = ACTIONS(1174), - [anon_sym_BANG_EQ] = ACTIONS(1174), - [anon_sym_GT] = ACTIONS(1176), - [anon_sym_GT_EQ] = ACTIONS(1174), - [anon_sym_LT_EQ] = ACTIONS(1174), - [anon_sym_LT] = ACTIONS(1176), - [anon_sym_PIPE_PIPE] = ACTIONS(1174), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [sym_ident] = ACTIONS(1179), + [sym_integer_literal] = ACTIONS(1181), + [anon_sym_SQUOTE] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1181), + [anon_sym_BQUOTE] = ACTIONS(1181), + [sym_bytes_literal] = ACTIONS(1181), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1179), + [sym_at_ident] = ACTIONS(1181), + [sym_hash_ident] = ACTIONS(1181), + [sym_type_ident] = ACTIONS(1181), + [sym_ct_type_ident] = ACTIONS(1181), + [sym_const_ident] = ACTIONS(1179), + [sym_builtin] = ACTIONS(1181), + [anon_sym_LPAREN_LT] = ACTIONS(1183), + [anon_sym_EQ] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_AMP] = ACTIONS(1179), + [anon_sym_LBRACK] = ACTIONS(1183), + [anon_sym_static] = ACTIONS(1179), + [anon_sym_tlocal] = ACTIONS(1179), + [anon_sym_SEMI] = ACTIONS(1181), + [anon_sym_fn] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_RBRACE] = ACTIONS(1181), + [anon_sym_const] = ACTIONS(1179), + [anon_sym_DOT] = ACTIONS(1183), + [anon_sym_var] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_defer] = ACTIONS(1179), + [anon_sym_assert] = ACTIONS(1179), + [anon_sym_case] = ACTIONS(1179), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_nextcase] = ACTIONS(1179), + [anon_sym_switch] = ACTIONS(1179), + [anon_sym_AMP_AMP] = ACTIONS(1181), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_else] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_foreach] = ACTIONS(1179), + [anon_sym_foreach_r] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_int] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1179), + [anon_sym_LT_LT] = ACTIONS(1185), + [anon_sym_GT_GT] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1179), + [anon_sym_asm] = ACTIONS(1179), + [anon_sym_DOLLARassert] = ACTIONS(1179), + [anon_sym_DOLLARerror] = ACTIONS(1179), + [anon_sym_DOLLARecho] = ACTIONS(1179), + [anon_sym_DOLLARif] = ACTIONS(1179), + [anon_sym_DOLLARswitch] = ACTIONS(1179), + [anon_sym_DOLLARfor] = ACTIONS(1179), + [anon_sym_DOLLARforeach] = ACTIONS(1179), + [anon_sym_DOLLARalignof] = ACTIONS(1179), + [anon_sym_DOLLARextnameof] = ACTIONS(1179), + [anon_sym_DOLLARnameof] = ACTIONS(1179), + [anon_sym_DOLLARoffsetof] = ACTIONS(1179), + [anon_sym_DOLLARqnameof] = ACTIONS(1179), + [anon_sym_DOLLARvaconst] = ACTIONS(1179), + [anon_sym_DOLLARvaarg] = ACTIONS(1179), + [anon_sym_DOLLARvaref] = ACTIONS(1179), + [anon_sym_DOLLARvaexpr] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_DOLLARvacount] = ACTIONS(1179), + [anon_sym_DOLLARappend] = ACTIONS(1179), + [anon_sym_DOLLARconcat] = ACTIONS(1179), + [anon_sym_DOLLAReval] = ACTIONS(1179), + [anon_sym_DOLLARis_const] = ACTIONS(1179), + [anon_sym_DOLLARsizeof] = ACTIONS(1179), + [anon_sym_DOLLARstringify] = ACTIONS(1179), + [anon_sym_DOLLARand] = ACTIONS(1179), + [anon_sym_DOLLARdefined] = ACTIONS(1179), + [anon_sym_DOLLARembed] = ACTIONS(1179), + [anon_sym_DOLLARor] = ACTIONS(1179), + [anon_sym_DOLLARfeature] = ACTIONS(1179), + [anon_sym_DOLLARassignable] = ACTIONS(1179), + [anon_sym_PLUS_EQ] = ACTIONS(1183), + [anon_sym_DASH_EQ] = ACTIONS(1183), + [anon_sym_STAR_EQ] = ACTIONS(1183), + [anon_sym_SLASH_EQ] = ACTIONS(1183), + [anon_sym_PERCENT_EQ] = ACTIONS(1183), + [anon_sym_LT_LT_EQ] = ACTIONS(1183), + [anon_sym_GT_GT_EQ] = ACTIONS(1183), + [anon_sym_AMP_EQ] = ACTIONS(1183), + [anon_sym_CARET_EQ] = ACTIONS(1183), + [anon_sym_PIPE_EQ] = ACTIONS(1183), + [anon_sym_QMARK] = ACTIONS(1185), + [anon_sym_QMARK_COLON] = ACTIONS(1183), + [anon_sym_QMARK_QMARK] = ACTIONS(1183), + [anon_sym_BANG] = ACTIONS(1179), + [anon_sym_TILDE] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(1181), + [anon_sym_DASH_DASH] = ACTIONS(1181), + [anon_sym_SLASH] = ACTIONS(1185), + [anon_sym_PERCENT] = ACTIONS(1185), + [anon_sym_PIPE] = ACTIONS(1185), + [anon_sym_CARET] = ACTIONS(1185), + [anon_sym_EQ_EQ] = ACTIONS(1183), + [anon_sym_BANG_EQ] = ACTIONS(1183), + [anon_sym_GT] = ACTIONS(1185), + [anon_sym_GT_EQ] = ACTIONS(1183), + [anon_sym_LT_EQ] = ACTIONS(1183), + [anon_sym_LT] = ACTIONS(1185), + [anon_sym_PIPE_PIPE] = ACTIONS(1183), + [anon_sym_BANG_BANG] = ACTIONS(1183), + [anon_sym_typeid] = ACTIONS(1179), + [anon_sym_LBRACE_PIPE] = ACTIONS(1181), + [anon_sym_PIPE_RBRACE] = ACTIONS(1181), + [anon_sym_void] = ACTIONS(1179), + [anon_sym_bool] = ACTIONS(1179), + [anon_sym_char] = ACTIONS(1179), + [anon_sym_ichar] = ACTIONS(1179), + [anon_sym_short] = ACTIONS(1179), + [anon_sym_ushort] = ACTIONS(1179), + [anon_sym_uint] = ACTIONS(1179), + [anon_sym_long] = ACTIONS(1179), + [anon_sym_ulong] = ACTIONS(1179), + [anon_sym_int128] = ACTIONS(1179), + [anon_sym_uint128] = ACTIONS(1179), + [anon_sym_float] = ACTIONS(1179), + [anon_sym_double] = ACTIONS(1179), + [anon_sym_float16] = ACTIONS(1179), + [anon_sym_bfloat16] = ACTIONS(1179), + [anon_sym_float128] = ACTIONS(1179), + [anon_sym_iptr] = ACTIONS(1179), + [anon_sym_uptr] = ACTIONS(1179), + [anon_sym_isz] = ACTIONS(1179), + [anon_sym_usz] = ACTIONS(1179), + [anon_sym_anyfault] = ACTIONS(1179), + [anon_sym_any] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1179), + [anon_sym_DOLLARtypefrom] = ACTIONS(1179), + [anon_sym_DOLLARvatype] = ACTIONS(1179), + [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [sym_real_literal] = ACTIONS(1181), }, [142] = { [sym_line_comment] = STATE(142), [sym_doc_comment] = STATE(142), [sym_block_comment] = STATE(142), - [sym_ident] = ACTIONS(1186), - [sym_integer_literal] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym_DQUOTE] = ACTIONS(1188), - [anon_sym_BQUOTE] = ACTIONS(1188), - [sym_bytes_literal] = ACTIONS(1188), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1186), - [sym_at_ident] = ACTIONS(1188), - [sym_hash_ident] = ACTIONS(1188), - [sym_type_ident] = ACTIONS(1188), - [sym_ct_type_ident] = ACTIONS(1188), - [sym_const_ident] = ACTIONS(1186), - [sym_builtin] = ACTIONS(1188), - [anon_sym_LPAREN_LT] = ACTIONS(1190), - [anon_sym_EQ] = ACTIONS(1192), - [anon_sym_LPAREN] = ACTIONS(1186), - [anon_sym_AMP] = ACTIONS(1186), - [anon_sym_LBRACK] = ACTIONS(1190), - [anon_sym_static] = ACTIONS(1186), - [anon_sym_tlocal] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1188), - [anon_sym_fn] = ACTIONS(1186), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_RBRACE] = ACTIONS(1188), - [anon_sym_const] = ACTIONS(1186), - [anon_sym_DOT] = ACTIONS(1190), - [anon_sym_var] = ACTIONS(1186), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1186), - [anon_sym_defer] = ACTIONS(1186), - [anon_sym_assert] = ACTIONS(1186), - [anon_sym_case] = ACTIONS(1186), - [anon_sym_default] = ACTIONS(1186), - [anon_sym_nextcase] = ACTIONS(1186), - [anon_sym_switch] = ACTIONS(1186), - [anon_sym_AMP_AMP] = ACTIONS(1188), - [anon_sym_if] = ACTIONS(1186), - [anon_sym_else] = ACTIONS(1186), - [anon_sym_for] = ACTIONS(1186), - [anon_sym_foreach] = ACTIONS(1186), - [anon_sym_foreach_r] = ACTIONS(1186), - [anon_sym_while] = ACTIONS(1186), - [anon_sym_do] = ACTIONS(1186), - [anon_sym_int] = ACTIONS(1186), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_LT_LT] = ACTIONS(1192), - [anon_sym_GT_GT] = ACTIONS(1192), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_asm] = ACTIONS(1186), - [anon_sym_DOLLARassert] = ACTIONS(1186), - [anon_sym_DOLLARerror] = ACTIONS(1186), - [anon_sym_DOLLARecho] = ACTIONS(1186), - [anon_sym_DOLLARif] = ACTIONS(1186), - [anon_sym_DOLLARswitch] = ACTIONS(1186), - [anon_sym_DOLLARfor] = ACTIONS(1186), - [anon_sym_DOLLARforeach] = ACTIONS(1186), - [anon_sym_DOLLARalignof] = ACTIONS(1186), - [anon_sym_DOLLARextnameof] = ACTIONS(1186), - [anon_sym_DOLLARnameof] = ACTIONS(1186), - [anon_sym_DOLLARoffsetof] = ACTIONS(1186), - [anon_sym_DOLLARqnameof] = ACTIONS(1186), - [anon_sym_DOLLARvaconst] = ACTIONS(1186), - [anon_sym_DOLLARvaarg] = ACTIONS(1186), - [anon_sym_DOLLARvaref] = ACTIONS(1186), - [anon_sym_DOLLARvaexpr] = ACTIONS(1186), - [anon_sym_true] = ACTIONS(1186), - [anon_sym_false] = ACTIONS(1186), - [anon_sym_null] = ACTIONS(1186), - [anon_sym_DOLLARvacount] = ACTIONS(1186), - [anon_sym_DOLLARappend] = ACTIONS(1186), - [anon_sym_DOLLARconcat] = ACTIONS(1186), - [anon_sym_DOLLAReval] = ACTIONS(1186), - [anon_sym_DOLLARis_const] = ACTIONS(1186), - [anon_sym_DOLLARsizeof] = ACTIONS(1186), - [anon_sym_DOLLARstringify] = ACTIONS(1186), - [anon_sym_DOLLARand] = ACTIONS(1186), - [anon_sym_DOLLARdefined] = ACTIONS(1186), - [anon_sym_DOLLARembed] = ACTIONS(1186), - [anon_sym_DOLLARor] = ACTIONS(1186), - [anon_sym_DOLLARfeature] = ACTIONS(1186), - [anon_sym_DOLLARassignable] = ACTIONS(1186), - [anon_sym_PLUS_EQ] = ACTIONS(1190), - [anon_sym_DASH_EQ] = ACTIONS(1190), - [anon_sym_STAR_EQ] = ACTIONS(1190), - [anon_sym_SLASH_EQ] = ACTIONS(1190), - [anon_sym_PERCENT_EQ] = ACTIONS(1190), - [anon_sym_LT_LT_EQ] = ACTIONS(1190), - [anon_sym_GT_GT_EQ] = ACTIONS(1190), - [anon_sym_AMP_EQ] = ACTIONS(1190), - [anon_sym_CARET_EQ] = ACTIONS(1190), - [anon_sym_PIPE_EQ] = ACTIONS(1190), - [anon_sym_QMARK] = ACTIONS(1192), - [anon_sym_QMARK_COLON] = ACTIONS(1190), - [anon_sym_QMARK_QMARK] = ACTIONS(1190), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_PLUS_PLUS] = ACTIONS(1188), - [anon_sym_DASH_DASH] = ACTIONS(1188), - [anon_sym_SLASH] = ACTIONS(1192), - [anon_sym_PERCENT] = ACTIONS(1192), - [anon_sym_PIPE] = ACTIONS(1192), - [anon_sym_CARET] = ACTIONS(1192), - [anon_sym_EQ_EQ] = ACTIONS(1190), - [anon_sym_BANG_EQ] = ACTIONS(1190), - [anon_sym_GT] = ACTIONS(1192), - [anon_sym_GT_EQ] = ACTIONS(1190), - [anon_sym_LT_EQ] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(1192), - [anon_sym_PIPE_PIPE] = ACTIONS(1190), - [anon_sym_BANG_BANG] = ACTIONS(1190), - [anon_sym_typeid] = ACTIONS(1186), - [anon_sym_LBRACE_PIPE] = ACTIONS(1188), - [anon_sym_PIPE_RBRACE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1186), - [anon_sym_bool] = ACTIONS(1186), - [anon_sym_char] = ACTIONS(1186), - [anon_sym_ichar] = ACTIONS(1186), - [anon_sym_short] = ACTIONS(1186), - [anon_sym_ushort] = ACTIONS(1186), - [anon_sym_uint] = ACTIONS(1186), - [anon_sym_long] = ACTIONS(1186), - [anon_sym_ulong] = ACTIONS(1186), - [anon_sym_int128] = ACTIONS(1186), - [anon_sym_uint128] = ACTIONS(1186), - [anon_sym_float] = ACTIONS(1186), - [anon_sym_double] = ACTIONS(1186), - [anon_sym_float16] = ACTIONS(1186), - [anon_sym_bfloat16] = ACTIONS(1186), - [anon_sym_float128] = ACTIONS(1186), - [anon_sym_iptr] = ACTIONS(1186), - [anon_sym_uptr] = ACTIONS(1186), - [anon_sym_isz] = ACTIONS(1186), - [anon_sym_usz] = ACTIONS(1186), - [anon_sym_anyfault] = ACTIONS(1186), - [anon_sym_any] = ACTIONS(1186), - [anon_sym_DOLLARtypeof] = ACTIONS(1186), - [anon_sym_DOLLARtypefrom] = ACTIONS(1186), - [anon_sym_DOLLARvatype] = ACTIONS(1186), - [anon_sym_DOLLARevaltype] = ACTIONS(1186), - [sym_real_literal] = ACTIONS(1188), + [sym_ident] = ACTIONS(1179), + [sym_integer_literal] = ACTIONS(1181), + [anon_sym_SQUOTE] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1181), + [anon_sym_BQUOTE] = ACTIONS(1181), + [sym_bytes_literal] = ACTIONS(1181), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1179), + [sym_at_ident] = ACTIONS(1181), + [sym_hash_ident] = ACTIONS(1181), + [sym_type_ident] = ACTIONS(1181), + [sym_ct_type_ident] = ACTIONS(1181), + [sym_const_ident] = ACTIONS(1179), + [sym_builtin] = ACTIONS(1181), + [anon_sym_COMMA] = ACTIONS(1183), + [anon_sym_LPAREN_LT] = ACTIONS(1183), + [anon_sym_EQ] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_AMP] = ACTIONS(1179), + [anon_sym_LBRACK] = ACTIONS(1183), + [anon_sym_static] = ACTIONS(1179), + [anon_sym_tlocal] = ACTIONS(1179), + [anon_sym_SEMI] = ACTIONS(1181), + [anon_sym_fn] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_RBRACE] = ACTIONS(1181), + [anon_sym_const] = ACTIONS(1179), + [anon_sym_DOT] = ACTIONS(1183), + [anon_sym_var] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_defer] = ACTIONS(1179), + [anon_sym_assert] = ACTIONS(1179), + [anon_sym_case] = ACTIONS(1179), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_nextcase] = ACTIONS(1179), + [anon_sym_switch] = ACTIONS(1179), + [anon_sym_AMP_AMP] = ACTIONS(1181), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_foreach] = ACTIONS(1179), + [anon_sym_foreach_r] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_int] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1179), + [anon_sym_LT_LT] = ACTIONS(1185), + [anon_sym_GT_GT] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1179), + [anon_sym_asm] = ACTIONS(1179), + [anon_sym_DOLLARassert] = ACTIONS(1179), + [anon_sym_DOLLARerror] = ACTIONS(1179), + [anon_sym_DOLLARecho] = ACTIONS(1179), + [anon_sym_DOLLARif] = ACTIONS(1179), + [anon_sym_DOLLARswitch] = ACTIONS(1179), + [anon_sym_DOLLARfor] = ACTIONS(1179), + [anon_sym_DOLLARforeach] = ACTIONS(1179), + [anon_sym_DOLLARalignof] = ACTIONS(1179), + [anon_sym_DOLLARextnameof] = ACTIONS(1179), + [anon_sym_DOLLARnameof] = ACTIONS(1179), + [anon_sym_DOLLARoffsetof] = ACTIONS(1179), + [anon_sym_DOLLARqnameof] = ACTIONS(1179), + [anon_sym_DOLLARvaconst] = ACTIONS(1179), + [anon_sym_DOLLARvaarg] = ACTIONS(1179), + [anon_sym_DOLLARvaref] = ACTIONS(1179), + [anon_sym_DOLLARvaexpr] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_DOLLARvacount] = ACTIONS(1179), + [anon_sym_DOLLARappend] = ACTIONS(1179), + [anon_sym_DOLLARconcat] = ACTIONS(1179), + [anon_sym_DOLLAReval] = ACTIONS(1179), + [anon_sym_DOLLARis_const] = ACTIONS(1179), + [anon_sym_DOLLARsizeof] = ACTIONS(1179), + [anon_sym_DOLLARstringify] = ACTIONS(1179), + [anon_sym_DOLLARand] = ACTIONS(1179), + [anon_sym_DOLLARdefined] = ACTIONS(1179), + [anon_sym_DOLLARembed] = ACTIONS(1179), + [anon_sym_DOLLARor] = ACTIONS(1179), + [anon_sym_DOLLARfeature] = ACTIONS(1179), + [anon_sym_DOLLARassignable] = ACTIONS(1179), + [anon_sym_PLUS_EQ] = ACTIONS(1183), + [anon_sym_DASH_EQ] = ACTIONS(1183), + [anon_sym_STAR_EQ] = ACTIONS(1183), + [anon_sym_SLASH_EQ] = ACTIONS(1183), + [anon_sym_PERCENT_EQ] = ACTIONS(1183), + [anon_sym_LT_LT_EQ] = ACTIONS(1183), + [anon_sym_GT_GT_EQ] = ACTIONS(1183), + [anon_sym_AMP_EQ] = ACTIONS(1183), + [anon_sym_CARET_EQ] = ACTIONS(1183), + [anon_sym_PIPE_EQ] = ACTIONS(1183), + [anon_sym_QMARK] = ACTIONS(1185), + [anon_sym_QMARK_COLON] = ACTIONS(1183), + [anon_sym_QMARK_QMARK] = ACTIONS(1183), + [anon_sym_BANG] = ACTIONS(1179), + [anon_sym_TILDE] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(1181), + [anon_sym_DASH_DASH] = ACTIONS(1181), + [anon_sym_SLASH] = ACTIONS(1185), + [anon_sym_PERCENT] = ACTIONS(1185), + [anon_sym_PIPE] = ACTIONS(1185), + [anon_sym_CARET] = ACTIONS(1185), + [anon_sym_EQ_EQ] = ACTIONS(1183), + [anon_sym_BANG_EQ] = ACTIONS(1183), + [anon_sym_GT] = ACTIONS(1185), + [anon_sym_GT_EQ] = ACTIONS(1183), + [anon_sym_LT_EQ] = ACTIONS(1183), + [anon_sym_LT] = ACTIONS(1185), + [anon_sym_PIPE_PIPE] = ACTIONS(1183), + [anon_sym_BANG_BANG] = ACTIONS(1183), + [anon_sym_typeid] = ACTIONS(1179), + [anon_sym_LBRACE_PIPE] = ACTIONS(1181), + [anon_sym_PIPE_RBRACE] = ACTIONS(1181), + [anon_sym_void] = ACTIONS(1179), + [anon_sym_bool] = ACTIONS(1179), + [anon_sym_char] = ACTIONS(1179), + [anon_sym_ichar] = ACTIONS(1179), + [anon_sym_short] = ACTIONS(1179), + [anon_sym_ushort] = ACTIONS(1179), + [anon_sym_uint] = ACTIONS(1179), + [anon_sym_long] = ACTIONS(1179), + [anon_sym_ulong] = ACTIONS(1179), + [anon_sym_int128] = ACTIONS(1179), + [anon_sym_uint128] = ACTIONS(1179), + [anon_sym_float] = ACTIONS(1179), + [anon_sym_double] = ACTIONS(1179), + [anon_sym_float16] = ACTIONS(1179), + [anon_sym_bfloat16] = ACTIONS(1179), + [anon_sym_float128] = ACTIONS(1179), + [anon_sym_iptr] = ACTIONS(1179), + [anon_sym_uptr] = ACTIONS(1179), + [anon_sym_isz] = ACTIONS(1179), + [anon_sym_usz] = ACTIONS(1179), + [anon_sym_anyfault] = ACTIONS(1179), + [anon_sym_any] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1179), + [anon_sym_DOLLARtypefrom] = ACTIONS(1179), + [anon_sym_DOLLARvatype] = ACTIONS(1179), + [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [sym_real_literal] = ACTIONS(1181), }, [143] = { [sym_line_comment] = STATE(143), [sym_doc_comment] = STATE(143), [sym_block_comment] = STATE(143), - [sym_ident] = ACTIONS(1186), - [sym_integer_literal] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym_DQUOTE] = ACTIONS(1188), - [anon_sym_BQUOTE] = ACTIONS(1188), - [sym_bytes_literal] = ACTIONS(1188), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1186), - [sym_at_ident] = ACTIONS(1188), - [sym_hash_ident] = ACTIONS(1188), - [sym_type_ident] = ACTIONS(1188), - [sym_ct_type_ident] = ACTIONS(1188), - [sym_const_ident] = ACTIONS(1186), - [sym_builtin] = ACTIONS(1188), - [anon_sym_COMMA] = ACTIONS(1190), - [anon_sym_LPAREN_LT] = ACTIONS(1190), - [anon_sym_EQ] = ACTIONS(1192), - [anon_sym_LPAREN] = ACTIONS(1186), - [anon_sym_AMP] = ACTIONS(1186), - [anon_sym_LBRACK] = ACTIONS(1190), - [anon_sym_static] = ACTIONS(1186), - [anon_sym_tlocal] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1188), - [anon_sym_fn] = ACTIONS(1186), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_RBRACE] = ACTIONS(1188), - [anon_sym_const] = ACTIONS(1186), - [anon_sym_DOT] = ACTIONS(1190), - [anon_sym_var] = ACTIONS(1186), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1186), - [anon_sym_defer] = ACTIONS(1186), - [anon_sym_assert] = ACTIONS(1186), - [anon_sym_case] = ACTIONS(1186), - [anon_sym_default] = ACTIONS(1186), - [anon_sym_nextcase] = ACTIONS(1186), - [anon_sym_switch] = ACTIONS(1186), - [anon_sym_AMP_AMP] = ACTIONS(1188), - [anon_sym_if] = ACTIONS(1186), - [anon_sym_for] = ACTIONS(1186), - [anon_sym_foreach] = ACTIONS(1186), - [anon_sym_foreach_r] = ACTIONS(1186), - [anon_sym_while] = ACTIONS(1186), - [anon_sym_do] = ACTIONS(1186), - [anon_sym_int] = ACTIONS(1186), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_LT_LT] = ACTIONS(1192), - [anon_sym_GT_GT] = ACTIONS(1192), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_asm] = ACTIONS(1186), - [anon_sym_DOLLARassert] = ACTIONS(1186), - [anon_sym_DOLLARerror] = ACTIONS(1186), - [anon_sym_DOLLARecho] = ACTIONS(1186), - [anon_sym_DOLLARif] = ACTIONS(1186), - [anon_sym_DOLLARswitch] = ACTIONS(1186), - [anon_sym_DOLLARfor] = ACTIONS(1186), - [anon_sym_DOLLARforeach] = ACTIONS(1186), - [anon_sym_DOLLARalignof] = ACTIONS(1186), - [anon_sym_DOLLARextnameof] = ACTIONS(1186), - [anon_sym_DOLLARnameof] = ACTIONS(1186), - [anon_sym_DOLLARoffsetof] = ACTIONS(1186), - [anon_sym_DOLLARqnameof] = ACTIONS(1186), - [anon_sym_DOLLARvaconst] = ACTIONS(1186), - [anon_sym_DOLLARvaarg] = ACTIONS(1186), - [anon_sym_DOLLARvaref] = ACTIONS(1186), - [anon_sym_DOLLARvaexpr] = ACTIONS(1186), - [anon_sym_true] = ACTIONS(1186), - [anon_sym_false] = ACTIONS(1186), - [anon_sym_null] = ACTIONS(1186), - [anon_sym_DOLLARvacount] = ACTIONS(1186), - [anon_sym_DOLLARappend] = ACTIONS(1186), - [anon_sym_DOLLARconcat] = ACTIONS(1186), - [anon_sym_DOLLAReval] = ACTIONS(1186), - [anon_sym_DOLLARis_const] = ACTIONS(1186), - [anon_sym_DOLLARsizeof] = ACTIONS(1186), - [anon_sym_DOLLARstringify] = ACTIONS(1186), - [anon_sym_DOLLARand] = ACTIONS(1186), - [anon_sym_DOLLARdefined] = ACTIONS(1186), - [anon_sym_DOLLARembed] = ACTIONS(1186), - [anon_sym_DOLLARor] = ACTIONS(1186), - [anon_sym_DOLLARfeature] = ACTIONS(1186), - [anon_sym_DOLLARassignable] = ACTIONS(1186), - [anon_sym_PLUS_EQ] = ACTIONS(1190), - [anon_sym_DASH_EQ] = ACTIONS(1190), - [anon_sym_STAR_EQ] = ACTIONS(1190), - [anon_sym_SLASH_EQ] = ACTIONS(1190), - [anon_sym_PERCENT_EQ] = ACTIONS(1190), - [anon_sym_LT_LT_EQ] = ACTIONS(1190), - [anon_sym_GT_GT_EQ] = ACTIONS(1190), - [anon_sym_AMP_EQ] = ACTIONS(1190), - [anon_sym_CARET_EQ] = ACTIONS(1190), - [anon_sym_PIPE_EQ] = ACTIONS(1190), - [anon_sym_QMARK] = ACTIONS(1192), - [anon_sym_QMARK_COLON] = ACTIONS(1190), - [anon_sym_QMARK_QMARK] = ACTIONS(1190), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_PLUS_PLUS] = ACTIONS(1188), - [anon_sym_DASH_DASH] = ACTIONS(1188), - [anon_sym_SLASH] = ACTIONS(1192), - [anon_sym_PERCENT] = ACTIONS(1192), - [anon_sym_PIPE] = ACTIONS(1192), - [anon_sym_CARET] = ACTIONS(1192), - [anon_sym_EQ_EQ] = ACTIONS(1190), - [anon_sym_BANG_EQ] = ACTIONS(1190), - [anon_sym_GT] = ACTIONS(1192), - [anon_sym_GT_EQ] = ACTIONS(1190), - [anon_sym_LT_EQ] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(1192), - [anon_sym_PIPE_PIPE] = ACTIONS(1190), - [anon_sym_BANG_BANG] = ACTIONS(1190), - [anon_sym_typeid] = ACTIONS(1186), - [anon_sym_LBRACE_PIPE] = ACTIONS(1188), - [anon_sym_PIPE_RBRACE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1186), - [anon_sym_bool] = ACTIONS(1186), - [anon_sym_char] = ACTIONS(1186), - [anon_sym_ichar] = ACTIONS(1186), - [anon_sym_short] = ACTIONS(1186), - [anon_sym_ushort] = ACTIONS(1186), - [anon_sym_uint] = ACTIONS(1186), - [anon_sym_long] = ACTIONS(1186), - [anon_sym_ulong] = ACTIONS(1186), - [anon_sym_int128] = ACTIONS(1186), - [anon_sym_uint128] = ACTIONS(1186), - [anon_sym_float] = ACTIONS(1186), - [anon_sym_double] = ACTIONS(1186), - [anon_sym_float16] = ACTIONS(1186), - [anon_sym_bfloat16] = ACTIONS(1186), - [anon_sym_float128] = ACTIONS(1186), - [anon_sym_iptr] = ACTIONS(1186), - [anon_sym_uptr] = ACTIONS(1186), - [anon_sym_isz] = ACTIONS(1186), - [anon_sym_usz] = ACTIONS(1186), - [anon_sym_anyfault] = ACTIONS(1186), - [anon_sym_any] = ACTIONS(1186), - [anon_sym_DOLLARtypeof] = ACTIONS(1186), - [anon_sym_DOLLARtypefrom] = ACTIONS(1186), - [anon_sym_DOLLARvatype] = ACTIONS(1186), - [anon_sym_DOLLARevaltype] = ACTIONS(1186), - [sym_real_literal] = ACTIONS(1188), + [sym_ident] = ACTIONS(1179), + [sym_integer_literal] = ACTIONS(1181), + [anon_sym_SQUOTE] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1181), + [anon_sym_BQUOTE] = ACTIONS(1181), + [sym_bytes_literal] = ACTIONS(1181), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1179), + [sym_at_ident] = ACTIONS(1181), + [sym_hash_ident] = ACTIONS(1181), + [sym_type_ident] = ACTIONS(1181), + [sym_ct_type_ident] = ACTIONS(1181), + [sym_const_ident] = ACTIONS(1179), + [sym_builtin] = ACTIONS(1181), + [anon_sym_LPAREN_LT] = ACTIONS(1183), + [anon_sym_EQ] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_AMP] = ACTIONS(1179), + [anon_sym_LBRACK] = ACTIONS(1183), + [anon_sym_static] = ACTIONS(1179), + [anon_sym_tlocal] = ACTIONS(1179), + [anon_sym_SEMI] = ACTIONS(1181), + [anon_sym_fn] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [anon_sym_DOT] = ACTIONS(1183), + [anon_sym_var] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_defer] = ACTIONS(1179), + [anon_sym_assert] = ACTIONS(1179), + [anon_sym_nextcase] = ACTIONS(1179), + [anon_sym_switch] = ACTIONS(1179), + [anon_sym_AMP_AMP] = ACTIONS(1181), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_else] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_foreach] = ACTIONS(1179), + [anon_sym_foreach_r] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_int] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1179), + [anon_sym_LT_LT] = ACTIONS(1185), + [anon_sym_GT_GT] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1179), + [anon_sym_asm] = ACTIONS(1179), + [anon_sym_DOLLARassert] = ACTIONS(1179), + [anon_sym_DOLLARerror] = ACTIONS(1179), + [anon_sym_DOLLARecho] = ACTIONS(1179), + [anon_sym_DOLLARif] = ACTIONS(1179), + [anon_sym_DOLLARcase] = ACTIONS(1179), + [anon_sym_DOLLARdefault] = ACTIONS(1179), + [anon_sym_DOLLARswitch] = ACTIONS(1179), + [anon_sym_DOLLARendswitch] = ACTIONS(1179), + [anon_sym_DOLLARfor] = ACTIONS(1179), + [anon_sym_DOLLARforeach] = ACTIONS(1179), + [anon_sym_DOLLARalignof] = ACTIONS(1179), + [anon_sym_DOLLARextnameof] = ACTIONS(1179), + [anon_sym_DOLLARnameof] = ACTIONS(1179), + [anon_sym_DOLLARoffsetof] = ACTIONS(1179), + [anon_sym_DOLLARqnameof] = ACTIONS(1179), + [anon_sym_DOLLARvaconst] = ACTIONS(1179), + [anon_sym_DOLLARvaarg] = ACTIONS(1179), + [anon_sym_DOLLARvaref] = ACTIONS(1179), + [anon_sym_DOLLARvaexpr] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_DOLLARvacount] = ACTIONS(1179), + [anon_sym_DOLLARappend] = ACTIONS(1179), + [anon_sym_DOLLARconcat] = ACTIONS(1179), + [anon_sym_DOLLAReval] = ACTIONS(1179), + [anon_sym_DOLLARis_const] = ACTIONS(1179), + [anon_sym_DOLLARsizeof] = ACTIONS(1179), + [anon_sym_DOLLARstringify] = ACTIONS(1179), + [anon_sym_DOLLARand] = ACTIONS(1179), + [anon_sym_DOLLARdefined] = ACTIONS(1179), + [anon_sym_DOLLARembed] = ACTIONS(1179), + [anon_sym_DOLLARor] = ACTIONS(1179), + [anon_sym_DOLLARfeature] = ACTIONS(1179), + [anon_sym_DOLLARassignable] = ACTIONS(1179), + [anon_sym_PLUS_EQ] = ACTIONS(1183), + [anon_sym_DASH_EQ] = ACTIONS(1183), + [anon_sym_STAR_EQ] = ACTIONS(1183), + [anon_sym_SLASH_EQ] = ACTIONS(1183), + [anon_sym_PERCENT_EQ] = ACTIONS(1183), + [anon_sym_LT_LT_EQ] = ACTIONS(1183), + [anon_sym_GT_GT_EQ] = ACTIONS(1183), + [anon_sym_AMP_EQ] = ACTIONS(1183), + [anon_sym_CARET_EQ] = ACTIONS(1183), + [anon_sym_PIPE_EQ] = ACTIONS(1183), + [anon_sym_QMARK] = ACTIONS(1185), + [anon_sym_QMARK_COLON] = ACTIONS(1183), + [anon_sym_QMARK_QMARK] = ACTIONS(1183), + [anon_sym_BANG] = ACTIONS(1179), + [anon_sym_TILDE] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(1181), + [anon_sym_DASH_DASH] = ACTIONS(1181), + [anon_sym_SLASH] = ACTIONS(1185), + [anon_sym_PERCENT] = ACTIONS(1185), + [anon_sym_PIPE] = ACTIONS(1185), + [anon_sym_CARET] = ACTIONS(1185), + [anon_sym_EQ_EQ] = ACTIONS(1183), + [anon_sym_BANG_EQ] = ACTIONS(1183), + [anon_sym_GT] = ACTIONS(1185), + [anon_sym_GT_EQ] = ACTIONS(1183), + [anon_sym_LT_EQ] = ACTIONS(1183), + [anon_sym_LT] = ACTIONS(1185), + [anon_sym_PIPE_PIPE] = ACTIONS(1183), + [anon_sym_BANG_BANG] = ACTIONS(1183), + [anon_sym_typeid] = ACTIONS(1179), + [anon_sym_LBRACE_PIPE] = ACTIONS(1181), + [anon_sym_void] = ACTIONS(1179), + [anon_sym_bool] = ACTIONS(1179), + [anon_sym_char] = ACTIONS(1179), + [anon_sym_ichar] = ACTIONS(1179), + [anon_sym_short] = ACTIONS(1179), + [anon_sym_ushort] = ACTIONS(1179), + [anon_sym_uint] = ACTIONS(1179), + [anon_sym_long] = ACTIONS(1179), + [anon_sym_ulong] = ACTIONS(1179), + [anon_sym_int128] = ACTIONS(1179), + [anon_sym_uint128] = ACTIONS(1179), + [anon_sym_float] = ACTIONS(1179), + [anon_sym_double] = ACTIONS(1179), + [anon_sym_float16] = ACTIONS(1179), + [anon_sym_bfloat16] = ACTIONS(1179), + [anon_sym_float128] = ACTIONS(1179), + [anon_sym_iptr] = ACTIONS(1179), + [anon_sym_uptr] = ACTIONS(1179), + [anon_sym_isz] = ACTIONS(1179), + [anon_sym_usz] = ACTIONS(1179), + [anon_sym_anyfault] = ACTIONS(1179), + [anon_sym_any] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1179), + [anon_sym_DOLLARtypefrom] = ACTIONS(1179), + [anon_sym_DOLLARvatype] = ACTIONS(1179), + [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [sym_real_literal] = ACTIONS(1181), }, [144] = { [sym_line_comment] = STATE(144), [sym_doc_comment] = STATE(144), [sym_block_comment] = STATE(144), - [sym_ident] = ACTIONS(1186), - [sym_integer_literal] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym_DQUOTE] = ACTIONS(1188), - [anon_sym_BQUOTE] = ACTIONS(1188), - [sym_bytes_literal] = ACTIONS(1188), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1186), - [sym_at_ident] = ACTIONS(1188), - [sym_hash_ident] = ACTIONS(1188), - [sym_type_ident] = ACTIONS(1188), - [sym_ct_type_ident] = ACTIONS(1188), - [sym_const_ident] = ACTIONS(1186), - [sym_builtin] = ACTIONS(1188), - [anon_sym_LPAREN_LT] = ACTIONS(1190), - [anon_sym_EQ] = ACTIONS(1192), - [anon_sym_LPAREN] = ACTIONS(1186), - [anon_sym_AMP] = ACTIONS(1186), - [anon_sym_LBRACK] = ACTIONS(1190), - [anon_sym_static] = ACTIONS(1186), - [anon_sym_tlocal] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1188), - [anon_sym_fn] = ACTIONS(1186), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_const] = ACTIONS(1186), - [anon_sym_DOT] = ACTIONS(1190), - [anon_sym_var] = ACTIONS(1186), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1186), - [anon_sym_defer] = ACTIONS(1186), - [anon_sym_assert] = ACTIONS(1186), - [anon_sym_nextcase] = ACTIONS(1186), - [anon_sym_switch] = ACTIONS(1186), - [anon_sym_AMP_AMP] = ACTIONS(1188), - [anon_sym_if] = ACTIONS(1186), - [anon_sym_else] = ACTIONS(1186), - [anon_sym_for] = ACTIONS(1186), - [anon_sym_foreach] = ACTIONS(1186), - [anon_sym_foreach_r] = ACTIONS(1186), - [anon_sym_while] = ACTIONS(1186), - [anon_sym_do] = ACTIONS(1186), - [anon_sym_int] = ACTIONS(1186), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_LT_LT] = ACTIONS(1192), - [anon_sym_GT_GT] = ACTIONS(1192), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_asm] = ACTIONS(1186), - [anon_sym_DOLLARassert] = ACTIONS(1186), - [anon_sym_DOLLARerror] = ACTIONS(1186), - [anon_sym_DOLLARecho] = ACTIONS(1186), - [anon_sym_DOLLARif] = ACTIONS(1186), - [anon_sym_DOLLARcase] = ACTIONS(1186), - [anon_sym_DOLLARdefault] = ACTIONS(1186), - [anon_sym_DOLLARswitch] = ACTIONS(1186), - [anon_sym_DOLLARendswitch] = ACTIONS(1186), - [anon_sym_DOLLARfor] = ACTIONS(1186), - [anon_sym_DOLLARforeach] = ACTIONS(1186), - [anon_sym_DOLLARalignof] = ACTIONS(1186), - [anon_sym_DOLLARextnameof] = ACTIONS(1186), - [anon_sym_DOLLARnameof] = ACTIONS(1186), - [anon_sym_DOLLARoffsetof] = ACTIONS(1186), - [anon_sym_DOLLARqnameof] = ACTIONS(1186), - [anon_sym_DOLLARvaconst] = ACTIONS(1186), - [anon_sym_DOLLARvaarg] = ACTIONS(1186), - [anon_sym_DOLLARvaref] = ACTIONS(1186), - [anon_sym_DOLLARvaexpr] = ACTIONS(1186), - [anon_sym_true] = ACTIONS(1186), - [anon_sym_false] = ACTIONS(1186), - [anon_sym_null] = ACTIONS(1186), - [anon_sym_DOLLARvacount] = ACTIONS(1186), - [anon_sym_DOLLARappend] = ACTIONS(1186), - [anon_sym_DOLLARconcat] = ACTIONS(1186), - [anon_sym_DOLLAReval] = ACTIONS(1186), - [anon_sym_DOLLARis_const] = ACTIONS(1186), - [anon_sym_DOLLARsizeof] = ACTIONS(1186), - [anon_sym_DOLLARstringify] = ACTIONS(1186), - [anon_sym_DOLLARand] = ACTIONS(1186), - [anon_sym_DOLLARdefined] = ACTIONS(1186), - [anon_sym_DOLLARembed] = ACTIONS(1186), - [anon_sym_DOLLARor] = ACTIONS(1186), - [anon_sym_DOLLARfeature] = ACTIONS(1186), - [anon_sym_DOLLARassignable] = ACTIONS(1186), - [anon_sym_PLUS_EQ] = ACTIONS(1190), - [anon_sym_DASH_EQ] = ACTIONS(1190), - [anon_sym_STAR_EQ] = ACTIONS(1190), - [anon_sym_SLASH_EQ] = ACTIONS(1190), - [anon_sym_PERCENT_EQ] = ACTIONS(1190), - [anon_sym_LT_LT_EQ] = ACTIONS(1190), - [anon_sym_GT_GT_EQ] = ACTIONS(1190), - [anon_sym_AMP_EQ] = ACTIONS(1190), - [anon_sym_CARET_EQ] = ACTIONS(1190), - [anon_sym_PIPE_EQ] = ACTIONS(1190), - [anon_sym_QMARK] = ACTIONS(1192), - [anon_sym_QMARK_COLON] = ACTIONS(1190), - [anon_sym_QMARK_QMARK] = ACTIONS(1190), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_PLUS_PLUS] = ACTIONS(1188), - [anon_sym_DASH_DASH] = ACTIONS(1188), - [anon_sym_SLASH] = ACTIONS(1192), - [anon_sym_PERCENT] = ACTIONS(1192), - [anon_sym_PIPE] = ACTIONS(1192), - [anon_sym_CARET] = ACTIONS(1192), - [anon_sym_EQ_EQ] = ACTIONS(1190), - [anon_sym_BANG_EQ] = ACTIONS(1190), - [anon_sym_GT] = ACTIONS(1192), - [anon_sym_GT_EQ] = ACTIONS(1190), - [anon_sym_LT_EQ] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(1192), - [anon_sym_PIPE_PIPE] = ACTIONS(1190), - [anon_sym_BANG_BANG] = ACTIONS(1190), - [anon_sym_typeid] = ACTIONS(1186), - [anon_sym_LBRACE_PIPE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1186), - [anon_sym_bool] = ACTIONS(1186), - [anon_sym_char] = ACTIONS(1186), - [anon_sym_ichar] = ACTIONS(1186), - [anon_sym_short] = ACTIONS(1186), - [anon_sym_ushort] = ACTIONS(1186), - [anon_sym_uint] = ACTIONS(1186), - [anon_sym_long] = ACTIONS(1186), - [anon_sym_ulong] = ACTIONS(1186), - [anon_sym_int128] = ACTIONS(1186), - [anon_sym_uint128] = ACTIONS(1186), - [anon_sym_float] = ACTIONS(1186), - [anon_sym_double] = ACTIONS(1186), - [anon_sym_float16] = ACTIONS(1186), - [anon_sym_bfloat16] = ACTIONS(1186), - [anon_sym_float128] = ACTIONS(1186), - [anon_sym_iptr] = ACTIONS(1186), - [anon_sym_uptr] = ACTIONS(1186), - [anon_sym_isz] = ACTIONS(1186), - [anon_sym_usz] = ACTIONS(1186), - [anon_sym_anyfault] = ACTIONS(1186), - [anon_sym_any] = ACTIONS(1186), - [anon_sym_DOLLARtypeof] = ACTIONS(1186), - [anon_sym_DOLLARtypefrom] = ACTIONS(1186), - [anon_sym_DOLLARvatype] = ACTIONS(1186), - [anon_sym_DOLLARevaltype] = ACTIONS(1186), - [sym_real_literal] = ACTIONS(1188), + [sym_ident] = ACTIONS(1179), + [sym_integer_literal] = ACTIONS(1181), + [anon_sym_SQUOTE] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1181), + [anon_sym_BQUOTE] = ACTIONS(1181), + [sym_bytes_literal] = ACTIONS(1181), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1179), + [sym_at_ident] = ACTIONS(1181), + [sym_hash_ident] = ACTIONS(1181), + [sym_type_ident] = ACTIONS(1181), + [sym_ct_type_ident] = ACTIONS(1181), + [sym_const_ident] = ACTIONS(1179), + [sym_builtin] = ACTIONS(1181), + [anon_sym_LPAREN_LT] = ACTIONS(1183), + [anon_sym_EQ] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_AMP] = ACTIONS(1179), + [anon_sym_LBRACK] = ACTIONS(1183), + [anon_sym_static] = ACTIONS(1179), + [anon_sym_tlocal] = ACTIONS(1179), + [anon_sym_SEMI] = ACTIONS(1181), + [anon_sym_fn] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [anon_sym_DOT] = ACTIONS(1183), + [anon_sym_var] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_defer] = ACTIONS(1179), + [anon_sym_assert] = ACTIONS(1179), + [anon_sym_nextcase] = ACTIONS(1179), + [anon_sym_switch] = ACTIONS(1179), + [anon_sym_AMP_AMP] = ACTIONS(1181), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_foreach] = ACTIONS(1179), + [anon_sym_foreach_r] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_int] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1179), + [anon_sym_LT_LT] = ACTIONS(1185), + [anon_sym_GT_GT] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1179), + [anon_sym_asm] = ACTIONS(1179), + [anon_sym_DOLLARassert] = ACTIONS(1179), + [anon_sym_DOLLARerror] = ACTIONS(1179), + [anon_sym_DOLLARecho] = ACTIONS(1179), + [anon_sym_DOLLARif] = ACTIONS(1179), + [anon_sym_DOLLARcase] = ACTIONS(1179), + [anon_sym_DOLLARdefault] = ACTIONS(1179), + [anon_sym_DOLLARswitch] = ACTIONS(1179), + [anon_sym_DOLLARendswitch] = ACTIONS(1179), + [anon_sym_DOLLARfor] = ACTIONS(1179), + [anon_sym_DOLLARforeach] = ACTIONS(1179), + [anon_sym_DOLLARalignof] = ACTIONS(1179), + [anon_sym_DOLLARextnameof] = ACTIONS(1179), + [anon_sym_DOLLARnameof] = ACTIONS(1179), + [anon_sym_DOLLARoffsetof] = ACTIONS(1179), + [anon_sym_DOLLARqnameof] = ACTIONS(1179), + [anon_sym_DOLLARvaconst] = ACTIONS(1179), + [anon_sym_DOLLARvaarg] = ACTIONS(1179), + [anon_sym_DOLLARvaref] = ACTIONS(1179), + [anon_sym_DOLLARvaexpr] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_DOLLARvacount] = ACTIONS(1179), + [anon_sym_DOLLARappend] = ACTIONS(1179), + [anon_sym_DOLLARconcat] = ACTIONS(1179), + [anon_sym_DOLLAReval] = ACTIONS(1179), + [anon_sym_DOLLARis_const] = ACTIONS(1179), + [anon_sym_DOLLARsizeof] = ACTIONS(1179), + [anon_sym_DOLLARstringify] = ACTIONS(1179), + [anon_sym_DOLLARand] = ACTIONS(1179), + [anon_sym_DOLLARdefined] = ACTIONS(1179), + [anon_sym_DOLLARembed] = ACTIONS(1179), + [anon_sym_DOLLARor] = ACTIONS(1179), + [anon_sym_DOLLARfeature] = ACTIONS(1179), + [anon_sym_DOLLARassignable] = ACTIONS(1179), + [anon_sym_PLUS_EQ] = ACTIONS(1183), + [anon_sym_DASH_EQ] = ACTIONS(1183), + [anon_sym_STAR_EQ] = ACTIONS(1183), + [anon_sym_SLASH_EQ] = ACTIONS(1183), + [anon_sym_PERCENT_EQ] = ACTIONS(1183), + [anon_sym_LT_LT_EQ] = ACTIONS(1183), + [anon_sym_GT_GT_EQ] = ACTIONS(1183), + [anon_sym_AMP_EQ] = ACTIONS(1183), + [anon_sym_CARET_EQ] = ACTIONS(1183), + [anon_sym_PIPE_EQ] = ACTIONS(1183), + [anon_sym_QMARK] = ACTIONS(1185), + [anon_sym_QMARK_COLON] = ACTIONS(1183), + [anon_sym_QMARK_QMARK] = ACTIONS(1183), + [anon_sym_BANG] = ACTIONS(1179), + [anon_sym_TILDE] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(1181), + [anon_sym_DASH_DASH] = ACTIONS(1181), + [anon_sym_SLASH] = ACTIONS(1185), + [anon_sym_PERCENT] = ACTIONS(1185), + [anon_sym_PIPE] = ACTIONS(1185), + [anon_sym_CARET] = ACTIONS(1185), + [anon_sym_EQ_EQ] = ACTIONS(1183), + [anon_sym_BANG_EQ] = ACTIONS(1183), + [anon_sym_GT] = ACTIONS(1185), + [anon_sym_GT_EQ] = ACTIONS(1183), + [anon_sym_LT_EQ] = ACTIONS(1183), + [anon_sym_LT] = ACTIONS(1185), + [anon_sym_PIPE_PIPE] = ACTIONS(1183), + [anon_sym_BANG_BANG] = ACTIONS(1183), + [anon_sym_typeid] = ACTIONS(1179), + [anon_sym_LBRACE_PIPE] = ACTIONS(1181), + [anon_sym_void] = ACTIONS(1179), + [anon_sym_bool] = ACTIONS(1179), + [anon_sym_char] = ACTIONS(1179), + [anon_sym_ichar] = ACTIONS(1179), + [anon_sym_short] = ACTIONS(1179), + [anon_sym_ushort] = ACTIONS(1179), + [anon_sym_uint] = ACTIONS(1179), + [anon_sym_long] = ACTIONS(1179), + [anon_sym_ulong] = ACTIONS(1179), + [anon_sym_int128] = ACTIONS(1179), + [anon_sym_uint128] = ACTIONS(1179), + [anon_sym_float] = ACTIONS(1179), + [anon_sym_double] = ACTIONS(1179), + [anon_sym_float16] = ACTIONS(1179), + [anon_sym_bfloat16] = ACTIONS(1179), + [anon_sym_float128] = ACTIONS(1179), + [anon_sym_iptr] = ACTIONS(1179), + [anon_sym_uptr] = ACTIONS(1179), + [anon_sym_isz] = ACTIONS(1179), + [anon_sym_usz] = ACTIONS(1179), + [anon_sym_anyfault] = ACTIONS(1179), + [anon_sym_any] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1179), + [anon_sym_DOLLARtypefrom] = ACTIONS(1179), + [anon_sym_DOLLARvatype] = ACTIONS(1179), + [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [sym_real_literal] = ACTIONS(1181), }, [145] = { [sym_line_comment] = STATE(145), [sym_doc_comment] = STATE(145), [sym_block_comment] = STATE(145), - [sym_ident] = ACTIONS(1186), - [sym_integer_literal] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym_DQUOTE] = ACTIONS(1188), - [anon_sym_BQUOTE] = ACTIONS(1188), - [sym_bytes_literal] = ACTIONS(1188), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1186), - [sym_at_ident] = ACTIONS(1188), - [sym_hash_ident] = ACTIONS(1188), - [sym_type_ident] = ACTIONS(1188), - [sym_ct_type_ident] = ACTIONS(1188), - [sym_const_ident] = ACTIONS(1186), - [sym_builtin] = ACTIONS(1188), - [anon_sym_LPAREN_LT] = ACTIONS(1190), - [anon_sym_EQ] = ACTIONS(1192), - [anon_sym_LPAREN] = ACTIONS(1186), - [anon_sym_AMP] = ACTIONS(1186), - [anon_sym_LBRACK] = ACTIONS(1190), - [anon_sym_static] = ACTIONS(1186), - [anon_sym_tlocal] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1188), - [anon_sym_fn] = ACTIONS(1186), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_const] = ACTIONS(1186), - [anon_sym_DOT] = ACTIONS(1190), - [anon_sym_var] = ACTIONS(1186), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1186), - [anon_sym_defer] = ACTIONS(1186), - [anon_sym_assert] = ACTIONS(1186), - [anon_sym_nextcase] = ACTIONS(1186), - [anon_sym_switch] = ACTIONS(1186), - [anon_sym_AMP_AMP] = ACTIONS(1188), - [anon_sym_if] = ACTIONS(1186), - [anon_sym_else] = ACTIONS(1186), - [anon_sym_for] = ACTIONS(1186), - [anon_sym_foreach] = ACTIONS(1186), - [anon_sym_foreach_r] = ACTIONS(1186), - [anon_sym_while] = ACTIONS(1186), - [anon_sym_do] = ACTIONS(1186), - [anon_sym_int] = ACTIONS(1186), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_LT_LT] = ACTIONS(1192), - [anon_sym_GT_GT] = ACTIONS(1192), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_asm] = ACTIONS(1186), - [anon_sym_DOLLARassert] = ACTIONS(1186), - [anon_sym_DOLLARerror] = ACTIONS(1186), - [anon_sym_DOLLARecho] = ACTIONS(1186), - [anon_sym_DOLLARif] = ACTIONS(1186), - [anon_sym_DOLLARendif] = ACTIONS(1186), - [anon_sym_DOLLARelse] = ACTIONS(1186), - [anon_sym_DOLLARswitch] = ACTIONS(1186), - [anon_sym_DOLLARfor] = ACTIONS(1186), - [anon_sym_DOLLARforeach] = ACTIONS(1186), - [anon_sym_DOLLARalignof] = ACTIONS(1186), - [anon_sym_DOLLARextnameof] = ACTIONS(1186), - [anon_sym_DOLLARnameof] = ACTIONS(1186), - [anon_sym_DOLLARoffsetof] = ACTIONS(1186), - [anon_sym_DOLLARqnameof] = ACTIONS(1186), - [anon_sym_DOLLARvaconst] = ACTIONS(1186), - [anon_sym_DOLLARvaarg] = ACTIONS(1186), - [anon_sym_DOLLARvaref] = ACTIONS(1186), - [anon_sym_DOLLARvaexpr] = ACTIONS(1186), - [anon_sym_true] = ACTIONS(1186), - [anon_sym_false] = ACTIONS(1186), - [anon_sym_null] = ACTIONS(1186), - [anon_sym_DOLLARvacount] = ACTIONS(1186), - [anon_sym_DOLLARappend] = ACTIONS(1186), - [anon_sym_DOLLARconcat] = ACTIONS(1186), - [anon_sym_DOLLAReval] = ACTIONS(1186), - [anon_sym_DOLLARis_const] = ACTIONS(1186), - [anon_sym_DOLLARsizeof] = ACTIONS(1186), - [anon_sym_DOLLARstringify] = ACTIONS(1186), - [anon_sym_DOLLARand] = ACTIONS(1186), - [anon_sym_DOLLARdefined] = ACTIONS(1186), - [anon_sym_DOLLARembed] = ACTIONS(1186), - [anon_sym_DOLLARor] = ACTIONS(1186), - [anon_sym_DOLLARfeature] = ACTIONS(1186), - [anon_sym_DOLLARassignable] = ACTIONS(1186), - [anon_sym_PLUS_EQ] = ACTIONS(1190), - [anon_sym_DASH_EQ] = ACTIONS(1190), - [anon_sym_STAR_EQ] = ACTIONS(1190), - [anon_sym_SLASH_EQ] = ACTIONS(1190), - [anon_sym_PERCENT_EQ] = ACTIONS(1190), - [anon_sym_LT_LT_EQ] = ACTIONS(1190), - [anon_sym_GT_GT_EQ] = ACTIONS(1190), - [anon_sym_AMP_EQ] = ACTIONS(1190), - [anon_sym_CARET_EQ] = ACTIONS(1190), - [anon_sym_PIPE_EQ] = ACTIONS(1190), - [anon_sym_QMARK] = ACTIONS(1192), - [anon_sym_QMARK_COLON] = ACTIONS(1190), - [anon_sym_QMARK_QMARK] = ACTIONS(1190), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_PLUS_PLUS] = ACTIONS(1188), - [anon_sym_DASH_DASH] = ACTIONS(1188), - [anon_sym_SLASH] = ACTIONS(1192), - [anon_sym_PERCENT] = ACTIONS(1192), - [anon_sym_PIPE] = ACTIONS(1192), - [anon_sym_CARET] = ACTIONS(1192), - [anon_sym_EQ_EQ] = ACTIONS(1190), - [anon_sym_BANG_EQ] = ACTIONS(1190), - [anon_sym_GT] = ACTIONS(1192), - [anon_sym_GT_EQ] = ACTIONS(1190), - [anon_sym_LT_EQ] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(1192), - [anon_sym_PIPE_PIPE] = ACTIONS(1190), - [anon_sym_BANG_BANG] = ACTIONS(1190), - [anon_sym_typeid] = ACTIONS(1186), - [anon_sym_LBRACE_PIPE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1186), - [anon_sym_bool] = ACTIONS(1186), - [anon_sym_char] = ACTIONS(1186), - [anon_sym_ichar] = ACTIONS(1186), - [anon_sym_short] = ACTIONS(1186), - [anon_sym_ushort] = ACTIONS(1186), - [anon_sym_uint] = ACTIONS(1186), - [anon_sym_long] = ACTIONS(1186), - [anon_sym_ulong] = ACTIONS(1186), - [anon_sym_int128] = ACTIONS(1186), - [anon_sym_uint128] = ACTIONS(1186), - [anon_sym_float] = ACTIONS(1186), - [anon_sym_double] = ACTIONS(1186), - [anon_sym_float16] = ACTIONS(1186), - [anon_sym_bfloat16] = ACTIONS(1186), - [anon_sym_float128] = ACTIONS(1186), - [anon_sym_iptr] = ACTIONS(1186), - [anon_sym_uptr] = ACTIONS(1186), - [anon_sym_isz] = ACTIONS(1186), - [anon_sym_usz] = ACTIONS(1186), - [anon_sym_anyfault] = ACTIONS(1186), - [anon_sym_any] = ACTIONS(1186), - [anon_sym_DOLLARtypeof] = ACTIONS(1186), - [anon_sym_DOLLARtypefrom] = ACTIONS(1186), - [anon_sym_DOLLARvatype] = ACTIONS(1186), - [anon_sym_DOLLARevaltype] = ACTIONS(1186), - [sym_real_literal] = ACTIONS(1188), + [sym_ident] = ACTIONS(1179), + [sym_integer_literal] = ACTIONS(1181), + [anon_sym_SQUOTE] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1181), + [anon_sym_BQUOTE] = ACTIONS(1181), + [sym_bytes_literal] = ACTIONS(1181), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1179), + [sym_at_ident] = ACTIONS(1181), + [sym_hash_ident] = ACTIONS(1181), + [sym_type_ident] = ACTIONS(1181), + [sym_ct_type_ident] = ACTIONS(1181), + [sym_const_ident] = ACTIONS(1179), + [sym_builtin] = ACTIONS(1181), + [anon_sym_LPAREN_LT] = ACTIONS(1183), + [anon_sym_EQ] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_AMP] = ACTIONS(1179), + [anon_sym_LBRACK] = ACTIONS(1183), + [anon_sym_static] = ACTIONS(1179), + [anon_sym_tlocal] = ACTIONS(1179), + [anon_sym_SEMI] = ACTIONS(1181), + [anon_sym_fn] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [anon_sym_DOT] = ACTIONS(1183), + [anon_sym_var] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_defer] = ACTIONS(1179), + [anon_sym_assert] = ACTIONS(1179), + [anon_sym_nextcase] = ACTIONS(1179), + [anon_sym_switch] = ACTIONS(1179), + [anon_sym_AMP_AMP] = ACTIONS(1181), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_else] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_foreach] = ACTIONS(1179), + [anon_sym_foreach_r] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_int] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1179), + [anon_sym_LT_LT] = ACTIONS(1185), + [anon_sym_GT_GT] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1179), + [anon_sym_asm] = ACTIONS(1179), + [anon_sym_DOLLARassert] = ACTIONS(1179), + [anon_sym_DOLLARerror] = ACTIONS(1179), + [anon_sym_DOLLARecho] = ACTIONS(1179), + [anon_sym_DOLLARif] = ACTIONS(1179), + [anon_sym_DOLLARendif] = ACTIONS(1179), + [anon_sym_DOLLARelse] = ACTIONS(1179), + [anon_sym_DOLLARswitch] = ACTIONS(1179), + [anon_sym_DOLLARfor] = ACTIONS(1179), + [anon_sym_DOLLARforeach] = ACTIONS(1179), + [anon_sym_DOLLARalignof] = ACTIONS(1179), + [anon_sym_DOLLARextnameof] = ACTIONS(1179), + [anon_sym_DOLLARnameof] = ACTIONS(1179), + [anon_sym_DOLLARoffsetof] = ACTIONS(1179), + [anon_sym_DOLLARqnameof] = ACTIONS(1179), + [anon_sym_DOLLARvaconst] = ACTIONS(1179), + [anon_sym_DOLLARvaarg] = ACTIONS(1179), + [anon_sym_DOLLARvaref] = ACTIONS(1179), + [anon_sym_DOLLARvaexpr] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_DOLLARvacount] = ACTIONS(1179), + [anon_sym_DOLLARappend] = ACTIONS(1179), + [anon_sym_DOLLARconcat] = ACTIONS(1179), + [anon_sym_DOLLAReval] = ACTIONS(1179), + [anon_sym_DOLLARis_const] = ACTIONS(1179), + [anon_sym_DOLLARsizeof] = ACTIONS(1179), + [anon_sym_DOLLARstringify] = ACTIONS(1179), + [anon_sym_DOLLARand] = ACTIONS(1179), + [anon_sym_DOLLARdefined] = ACTIONS(1179), + [anon_sym_DOLLARembed] = ACTIONS(1179), + [anon_sym_DOLLARor] = ACTIONS(1179), + [anon_sym_DOLLARfeature] = ACTIONS(1179), + [anon_sym_DOLLARassignable] = ACTIONS(1179), + [anon_sym_PLUS_EQ] = ACTIONS(1183), + [anon_sym_DASH_EQ] = ACTIONS(1183), + [anon_sym_STAR_EQ] = ACTIONS(1183), + [anon_sym_SLASH_EQ] = ACTIONS(1183), + [anon_sym_PERCENT_EQ] = ACTIONS(1183), + [anon_sym_LT_LT_EQ] = ACTIONS(1183), + [anon_sym_GT_GT_EQ] = ACTIONS(1183), + [anon_sym_AMP_EQ] = ACTIONS(1183), + [anon_sym_CARET_EQ] = ACTIONS(1183), + [anon_sym_PIPE_EQ] = ACTIONS(1183), + [anon_sym_QMARK] = ACTIONS(1185), + [anon_sym_QMARK_COLON] = ACTIONS(1183), + [anon_sym_QMARK_QMARK] = ACTIONS(1183), + [anon_sym_BANG] = ACTIONS(1179), + [anon_sym_TILDE] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(1181), + [anon_sym_DASH_DASH] = ACTIONS(1181), + [anon_sym_SLASH] = ACTIONS(1185), + [anon_sym_PERCENT] = ACTIONS(1185), + [anon_sym_PIPE] = ACTIONS(1185), + [anon_sym_CARET] = ACTIONS(1185), + [anon_sym_EQ_EQ] = ACTIONS(1183), + [anon_sym_BANG_EQ] = ACTIONS(1183), + [anon_sym_GT] = ACTIONS(1185), + [anon_sym_GT_EQ] = ACTIONS(1183), + [anon_sym_LT_EQ] = ACTIONS(1183), + [anon_sym_LT] = ACTIONS(1185), + [anon_sym_PIPE_PIPE] = ACTIONS(1183), + [anon_sym_BANG_BANG] = ACTIONS(1183), + [anon_sym_typeid] = ACTIONS(1179), + [anon_sym_LBRACE_PIPE] = ACTIONS(1181), + [anon_sym_void] = ACTIONS(1179), + [anon_sym_bool] = ACTIONS(1179), + [anon_sym_char] = ACTIONS(1179), + [anon_sym_ichar] = ACTIONS(1179), + [anon_sym_short] = ACTIONS(1179), + [anon_sym_ushort] = ACTIONS(1179), + [anon_sym_uint] = ACTIONS(1179), + [anon_sym_long] = ACTIONS(1179), + [anon_sym_ulong] = ACTIONS(1179), + [anon_sym_int128] = ACTIONS(1179), + [anon_sym_uint128] = ACTIONS(1179), + [anon_sym_float] = ACTIONS(1179), + [anon_sym_double] = ACTIONS(1179), + [anon_sym_float16] = ACTIONS(1179), + [anon_sym_bfloat16] = ACTIONS(1179), + [anon_sym_float128] = ACTIONS(1179), + [anon_sym_iptr] = ACTIONS(1179), + [anon_sym_uptr] = ACTIONS(1179), + [anon_sym_isz] = ACTIONS(1179), + [anon_sym_usz] = ACTIONS(1179), + [anon_sym_anyfault] = ACTIONS(1179), + [anon_sym_any] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1179), + [anon_sym_DOLLARtypefrom] = ACTIONS(1179), + [anon_sym_DOLLARvatype] = ACTIONS(1179), + [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [sym_real_literal] = ACTIONS(1181), }, [146] = { [sym_line_comment] = STATE(146), [sym_doc_comment] = STATE(146), [sym_block_comment] = STATE(146), - [sym_ident] = ACTIONS(1186), - [sym_integer_literal] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym_DQUOTE] = ACTIONS(1188), - [anon_sym_BQUOTE] = ACTIONS(1188), - [sym_bytes_literal] = ACTIONS(1188), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1186), - [sym_at_ident] = ACTIONS(1188), - [sym_hash_ident] = ACTIONS(1188), - [sym_type_ident] = ACTIONS(1188), - [sym_ct_type_ident] = ACTIONS(1188), - [sym_const_ident] = ACTIONS(1186), - [sym_builtin] = ACTIONS(1188), - [anon_sym_LPAREN_LT] = ACTIONS(1190), - [anon_sym_EQ] = ACTIONS(1192), - [anon_sym_LPAREN] = ACTIONS(1186), - [anon_sym_AMP] = ACTIONS(1186), - [anon_sym_LBRACK] = ACTIONS(1190), - [anon_sym_static] = ACTIONS(1186), - [anon_sym_tlocal] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1188), - [anon_sym_fn] = ACTIONS(1186), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_const] = ACTIONS(1186), - [anon_sym_DOT] = ACTIONS(1190), - [anon_sym_var] = ACTIONS(1186), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1186), - [anon_sym_defer] = ACTIONS(1186), - [anon_sym_assert] = ACTIONS(1186), - [anon_sym_nextcase] = ACTIONS(1186), - [anon_sym_switch] = ACTIONS(1186), - [anon_sym_AMP_AMP] = ACTIONS(1188), - [anon_sym_if] = ACTIONS(1186), - [anon_sym_for] = ACTIONS(1186), - [anon_sym_foreach] = ACTIONS(1186), - [anon_sym_foreach_r] = ACTIONS(1186), - [anon_sym_while] = ACTIONS(1186), - [anon_sym_do] = ACTIONS(1186), - [anon_sym_int] = ACTIONS(1186), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_LT_LT] = ACTIONS(1192), - [anon_sym_GT_GT] = ACTIONS(1192), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_asm] = ACTIONS(1186), - [anon_sym_DOLLARassert] = ACTIONS(1186), - [anon_sym_DOLLARerror] = ACTIONS(1186), - [anon_sym_DOLLARecho] = ACTIONS(1186), - [anon_sym_DOLLARif] = ACTIONS(1186), - [anon_sym_DOLLARcase] = ACTIONS(1186), - [anon_sym_DOLLARdefault] = ACTIONS(1186), - [anon_sym_DOLLARswitch] = ACTIONS(1186), - [anon_sym_DOLLARendswitch] = ACTIONS(1186), - [anon_sym_DOLLARfor] = ACTIONS(1186), - [anon_sym_DOLLARforeach] = ACTIONS(1186), - [anon_sym_DOLLARalignof] = ACTIONS(1186), - [anon_sym_DOLLARextnameof] = ACTIONS(1186), - [anon_sym_DOLLARnameof] = ACTIONS(1186), - [anon_sym_DOLLARoffsetof] = ACTIONS(1186), - [anon_sym_DOLLARqnameof] = ACTIONS(1186), - [anon_sym_DOLLARvaconst] = ACTIONS(1186), - [anon_sym_DOLLARvaarg] = ACTIONS(1186), - [anon_sym_DOLLARvaref] = ACTIONS(1186), - [anon_sym_DOLLARvaexpr] = ACTIONS(1186), - [anon_sym_true] = ACTIONS(1186), - [anon_sym_false] = ACTIONS(1186), - [anon_sym_null] = ACTIONS(1186), - [anon_sym_DOLLARvacount] = ACTIONS(1186), - [anon_sym_DOLLARappend] = ACTIONS(1186), - [anon_sym_DOLLARconcat] = ACTIONS(1186), - [anon_sym_DOLLAReval] = ACTIONS(1186), - [anon_sym_DOLLARis_const] = ACTIONS(1186), - [anon_sym_DOLLARsizeof] = ACTIONS(1186), - [anon_sym_DOLLARstringify] = ACTIONS(1186), - [anon_sym_DOLLARand] = ACTIONS(1186), - [anon_sym_DOLLARdefined] = ACTIONS(1186), - [anon_sym_DOLLARembed] = ACTIONS(1186), - [anon_sym_DOLLARor] = ACTIONS(1186), - [anon_sym_DOLLARfeature] = ACTIONS(1186), - [anon_sym_DOLLARassignable] = ACTIONS(1186), - [anon_sym_PLUS_EQ] = ACTIONS(1190), - [anon_sym_DASH_EQ] = ACTIONS(1190), - [anon_sym_STAR_EQ] = ACTIONS(1190), - [anon_sym_SLASH_EQ] = ACTIONS(1190), - [anon_sym_PERCENT_EQ] = ACTIONS(1190), - [anon_sym_LT_LT_EQ] = ACTIONS(1190), - [anon_sym_GT_GT_EQ] = ACTIONS(1190), - [anon_sym_AMP_EQ] = ACTIONS(1190), - [anon_sym_CARET_EQ] = ACTIONS(1190), - [anon_sym_PIPE_EQ] = ACTIONS(1190), - [anon_sym_QMARK] = ACTIONS(1192), - [anon_sym_QMARK_COLON] = ACTIONS(1190), - [anon_sym_QMARK_QMARK] = ACTIONS(1190), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_PLUS_PLUS] = ACTIONS(1188), - [anon_sym_DASH_DASH] = ACTIONS(1188), - [anon_sym_SLASH] = ACTIONS(1192), - [anon_sym_PERCENT] = ACTIONS(1192), - [anon_sym_PIPE] = ACTIONS(1192), - [anon_sym_CARET] = ACTIONS(1192), - [anon_sym_EQ_EQ] = ACTIONS(1190), - [anon_sym_BANG_EQ] = ACTIONS(1190), - [anon_sym_GT] = ACTIONS(1192), - [anon_sym_GT_EQ] = ACTIONS(1190), - [anon_sym_LT_EQ] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(1192), - [anon_sym_PIPE_PIPE] = ACTIONS(1190), - [anon_sym_BANG_BANG] = ACTIONS(1190), - [anon_sym_typeid] = ACTIONS(1186), - [anon_sym_LBRACE_PIPE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1186), - [anon_sym_bool] = ACTIONS(1186), - [anon_sym_char] = ACTIONS(1186), - [anon_sym_ichar] = ACTIONS(1186), - [anon_sym_short] = ACTIONS(1186), - [anon_sym_ushort] = ACTIONS(1186), - [anon_sym_uint] = ACTIONS(1186), - [anon_sym_long] = ACTIONS(1186), - [anon_sym_ulong] = ACTIONS(1186), - [anon_sym_int128] = ACTIONS(1186), - [anon_sym_uint128] = ACTIONS(1186), - [anon_sym_float] = ACTIONS(1186), - [anon_sym_double] = ACTIONS(1186), - [anon_sym_float16] = ACTIONS(1186), - [anon_sym_bfloat16] = ACTIONS(1186), - [anon_sym_float128] = ACTIONS(1186), - [anon_sym_iptr] = ACTIONS(1186), - [anon_sym_uptr] = ACTIONS(1186), - [anon_sym_isz] = ACTIONS(1186), - [anon_sym_usz] = ACTIONS(1186), - [anon_sym_anyfault] = ACTIONS(1186), - [anon_sym_any] = ACTIONS(1186), - [anon_sym_DOLLARtypeof] = ACTIONS(1186), - [anon_sym_DOLLARtypefrom] = ACTIONS(1186), - [anon_sym_DOLLARvatype] = ACTIONS(1186), - [anon_sym_DOLLARevaltype] = ACTIONS(1186), - [sym_real_literal] = ACTIONS(1188), + [sym_ident] = ACTIONS(1179), + [sym_integer_literal] = ACTIONS(1181), + [anon_sym_SQUOTE] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1181), + [anon_sym_BQUOTE] = ACTIONS(1181), + [sym_bytes_literal] = ACTIONS(1181), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1179), + [sym_at_ident] = ACTIONS(1181), + [sym_hash_ident] = ACTIONS(1181), + [sym_type_ident] = ACTIONS(1181), + [sym_ct_type_ident] = ACTIONS(1181), + [sym_const_ident] = ACTIONS(1179), + [sym_builtin] = ACTIONS(1181), + [anon_sym_LPAREN_LT] = ACTIONS(1183), + [anon_sym_EQ] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_AMP] = ACTIONS(1179), + [anon_sym_LBRACK] = ACTIONS(1183), + [anon_sym_static] = ACTIONS(1179), + [anon_sym_tlocal] = ACTIONS(1179), + [anon_sym_SEMI] = ACTIONS(1181), + [anon_sym_fn] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [anon_sym_DOT] = ACTIONS(1183), + [anon_sym_var] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_defer] = ACTIONS(1179), + [anon_sym_assert] = ACTIONS(1179), + [anon_sym_nextcase] = ACTIONS(1179), + [anon_sym_switch] = ACTIONS(1179), + [anon_sym_AMP_AMP] = ACTIONS(1181), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_else] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_foreach] = ACTIONS(1179), + [anon_sym_foreach_r] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_int] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1179), + [anon_sym_LT_LT] = ACTIONS(1185), + [anon_sym_GT_GT] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1179), + [anon_sym_asm] = ACTIONS(1179), + [anon_sym_DOLLARassert] = ACTIONS(1179), + [anon_sym_DOLLARerror] = ACTIONS(1179), + [anon_sym_DOLLARecho] = ACTIONS(1179), + [anon_sym_DOLLARif] = ACTIONS(1179), + [anon_sym_DOLLARswitch] = ACTIONS(1179), + [anon_sym_DOLLARfor] = ACTIONS(1179), + [anon_sym_DOLLARforeach] = ACTIONS(1179), + [anon_sym_DOLLARendforeach] = ACTIONS(1179), + [anon_sym_DOLLARalignof] = ACTIONS(1179), + [anon_sym_DOLLARextnameof] = ACTIONS(1179), + [anon_sym_DOLLARnameof] = ACTIONS(1179), + [anon_sym_DOLLARoffsetof] = ACTIONS(1179), + [anon_sym_DOLLARqnameof] = ACTIONS(1179), + [anon_sym_DOLLARvaconst] = ACTIONS(1179), + [anon_sym_DOLLARvaarg] = ACTIONS(1179), + [anon_sym_DOLLARvaref] = ACTIONS(1179), + [anon_sym_DOLLARvaexpr] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_DOLLARvacount] = ACTIONS(1179), + [anon_sym_DOLLARappend] = ACTIONS(1179), + [anon_sym_DOLLARconcat] = ACTIONS(1179), + [anon_sym_DOLLAReval] = ACTIONS(1179), + [anon_sym_DOLLARis_const] = ACTIONS(1179), + [anon_sym_DOLLARsizeof] = ACTIONS(1179), + [anon_sym_DOLLARstringify] = ACTIONS(1179), + [anon_sym_DOLLARand] = ACTIONS(1179), + [anon_sym_DOLLARdefined] = ACTIONS(1179), + [anon_sym_DOLLARembed] = ACTIONS(1179), + [anon_sym_DOLLARor] = ACTIONS(1179), + [anon_sym_DOLLARfeature] = ACTIONS(1179), + [anon_sym_DOLLARassignable] = ACTIONS(1179), + [anon_sym_PLUS_EQ] = ACTIONS(1183), + [anon_sym_DASH_EQ] = ACTIONS(1183), + [anon_sym_STAR_EQ] = ACTIONS(1183), + [anon_sym_SLASH_EQ] = ACTIONS(1183), + [anon_sym_PERCENT_EQ] = ACTIONS(1183), + [anon_sym_LT_LT_EQ] = ACTIONS(1183), + [anon_sym_GT_GT_EQ] = ACTIONS(1183), + [anon_sym_AMP_EQ] = ACTIONS(1183), + [anon_sym_CARET_EQ] = ACTIONS(1183), + [anon_sym_PIPE_EQ] = ACTIONS(1183), + [anon_sym_QMARK] = ACTIONS(1185), + [anon_sym_QMARK_COLON] = ACTIONS(1183), + [anon_sym_QMARK_QMARK] = ACTIONS(1183), + [anon_sym_BANG] = ACTIONS(1179), + [anon_sym_TILDE] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(1181), + [anon_sym_DASH_DASH] = ACTIONS(1181), + [anon_sym_SLASH] = ACTIONS(1185), + [anon_sym_PERCENT] = ACTIONS(1185), + [anon_sym_PIPE] = ACTIONS(1185), + [anon_sym_CARET] = ACTIONS(1185), + [anon_sym_EQ_EQ] = ACTIONS(1183), + [anon_sym_BANG_EQ] = ACTIONS(1183), + [anon_sym_GT] = ACTIONS(1185), + [anon_sym_GT_EQ] = ACTIONS(1183), + [anon_sym_LT_EQ] = ACTIONS(1183), + [anon_sym_LT] = ACTIONS(1185), + [anon_sym_PIPE_PIPE] = ACTIONS(1183), + [anon_sym_BANG_BANG] = ACTIONS(1183), + [anon_sym_typeid] = ACTIONS(1179), + [anon_sym_LBRACE_PIPE] = ACTIONS(1181), + [anon_sym_void] = ACTIONS(1179), + [anon_sym_bool] = ACTIONS(1179), + [anon_sym_char] = ACTIONS(1179), + [anon_sym_ichar] = ACTIONS(1179), + [anon_sym_short] = ACTIONS(1179), + [anon_sym_ushort] = ACTIONS(1179), + [anon_sym_uint] = ACTIONS(1179), + [anon_sym_long] = ACTIONS(1179), + [anon_sym_ulong] = ACTIONS(1179), + [anon_sym_int128] = ACTIONS(1179), + [anon_sym_uint128] = ACTIONS(1179), + [anon_sym_float] = ACTIONS(1179), + [anon_sym_double] = ACTIONS(1179), + [anon_sym_float16] = ACTIONS(1179), + [anon_sym_bfloat16] = ACTIONS(1179), + [anon_sym_float128] = ACTIONS(1179), + [anon_sym_iptr] = ACTIONS(1179), + [anon_sym_uptr] = ACTIONS(1179), + [anon_sym_isz] = ACTIONS(1179), + [anon_sym_usz] = ACTIONS(1179), + [anon_sym_anyfault] = ACTIONS(1179), + [anon_sym_any] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1179), + [anon_sym_DOLLARtypefrom] = ACTIONS(1179), + [anon_sym_DOLLARvatype] = ACTIONS(1179), + [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [sym_real_literal] = ACTIONS(1181), }, [147] = { [sym_line_comment] = STATE(147), [sym_doc_comment] = STATE(147), [sym_block_comment] = STATE(147), - [sym_ident] = ACTIONS(1186), - [sym_integer_literal] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym_DQUOTE] = ACTIONS(1188), - [anon_sym_BQUOTE] = ACTIONS(1188), - [sym_bytes_literal] = ACTIONS(1188), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1186), - [sym_at_ident] = ACTIONS(1188), - [sym_hash_ident] = ACTIONS(1188), - [sym_type_ident] = ACTIONS(1188), - [sym_ct_type_ident] = ACTIONS(1188), - [sym_const_ident] = ACTIONS(1186), - [sym_builtin] = ACTIONS(1188), - [anon_sym_LPAREN_LT] = ACTIONS(1190), - [anon_sym_EQ] = ACTIONS(1192), - [anon_sym_LPAREN] = ACTIONS(1186), - [anon_sym_AMP] = ACTIONS(1186), - [anon_sym_LBRACK] = ACTIONS(1190), - [anon_sym_static] = ACTIONS(1186), - [anon_sym_tlocal] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1188), - [anon_sym_fn] = ACTIONS(1186), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_const] = ACTIONS(1186), - [anon_sym_DOT] = ACTIONS(1190), - [anon_sym_var] = ACTIONS(1186), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1186), - [anon_sym_defer] = ACTIONS(1186), - [anon_sym_assert] = ACTIONS(1186), - [anon_sym_nextcase] = ACTIONS(1186), - [anon_sym_switch] = ACTIONS(1186), - [anon_sym_AMP_AMP] = ACTIONS(1188), - [anon_sym_if] = ACTIONS(1186), - [anon_sym_for] = ACTIONS(1186), - [anon_sym_foreach] = ACTIONS(1186), - [anon_sym_foreach_r] = ACTIONS(1186), - [anon_sym_while] = ACTIONS(1186), - [anon_sym_do] = ACTIONS(1186), - [anon_sym_int] = ACTIONS(1186), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_LT_LT] = ACTIONS(1192), - [anon_sym_GT_GT] = ACTIONS(1192), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_asm] = ACTIONS(1186), - [anon_sym_DOLLARassert] = ACTIONS(1186), - [anon_sym_DOLLARerror] = ACTIONS(1186), - [anon_sym_DOLLARecho] = ACTIONS(1186), - [anon_sym_DOLLARif] = ACTIONS(1186), - [anon_sym_DOLLARendif] = ACTIONS(1186), - [anon_sym_DOLLARelse] = ACTIONS(1186), - [anon_sym_DOLLARswitch] = ACTIONS(1186), - [anon_sym_DOLLARfor] = ACTIONS(1186), - [anon_sym_DOLLARforeach] = ACTIONS(1186), - [anon_sym_DOLLARalignof] = ACTIONS(1186), - [anon_sym_DOLLARextnameof] = ACTIONS(1186), - [anon_sym_DOLLARnameof] = ACTIONS(1186), - [anon_sym_DOLLARoffsetof] = ACTIONS(1186), - [anon_sym_DOLLARqnameof] = ACTIONS(1186), - [anon_sym_DOLLARvaconst] = ACTIONS(1186), - [anon_sym_DOLLARvaarg] = ACTIONS(1186), - [anon_sym_DOLLARvaref] = ACTIONS(1186), - [anon_sym_DOLLARvaexpr] = ACTIONS(1186), - [anon_sym_true] = ACTIONS(1186), - [anon_sym_false] = ACTIONS(1186), - [anon_sym_null] = ACTIONS(1186), - [anon_sym_DOLLARvacount] = ACTIONS(1186), - [anon_sym_DOLLARappend] = ACTIONS(1186), - [anon_sym_DOLLARconcat] = ACTIONS(1186), - [anon_sym_DOLLAReval] = ACTIONS(1186), - [anon_sym_DOLLARis_const] = ACTIONS(1186), - [anon_sym_DOLLARsizeof] = ACTIONS(1186), - [anon_sym_DOLLARstringify] = ACTIONS(1186), - [anon_sym_DOLLARand] = ACTIONS(1186), - [anon_sym_DOLLARdefined] = ACTIONS(1186), - [anon_sym_DOLLARembed] = ACTIONS(1186), - [anon_sym_DOLLARor] = ACTIONS(1186), - [anon_sym_DOLLARfeature] = ACTIONS(1186), - [anon_sym_DOLLARassignable] = ACTIONS(1186), - [anon_sym_PLUS_EQ] = ACTIONS(1190), - [anon_sym_DASH_EQ] = ACTIONS(1190), - [anon_sym_STAR_EQ] = ACTIONS(1190), - [anon_sym_SLASH_EQ] = ACTIONS(1190), - [anon_sym_PERCENT_EQ] = ACTIONS(1190), - [anon_sym_LT_LT_EQ] = ACTIONS(1190), - [anon_sym_GT_GT_EQ] = ACTIONS(1190), - [anon_sym_AMP_EQ] = ACTIONS(1190), - [anon_sym_CARET_EQ] = ACTIONS(1190), - [anon_sym_PIPE_EQ] = ACTIONS(1190), - [anon_sym_QMARK] = ACTIONS(1192), - [anon_sym_QMARK_COLON] = ACTIONS(1190), - [anon_sym_QMARK_QMARK] = ACTIONS(1190), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_PLUS_PLUS] = ACTIONS(1188), - [anon_sym_DASH_DASH] = ACTIONS(1188), - [anon_sym_SLASH] = ACTIONS(1192), - [anon_sym_PERCENT] = ACTIONS(1192), - [anon_sym_PIPE] = ACTIONS(1192), - [anon_sym_CARET] = ACTIONS(1192), - [anon_sym_EQ_EQ] = ACTIONS(1190), - [anon_sym_BANG_EQ] = ACTIONS(1190), - [anon_sym_GT] = ACTIONS(1192), - [anon_sym_GT_EQ] = ACTIONS(1190), - [anon_sym_LT_EQ] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(1192), - [anon_sym_PIPE_PIPE] = ACTIONS(1190), - [anon_sym_BANG_BANG] = ACTIONS(1190), - [anon_sym_typeid] = ACTIONS(1186), - [anon_sym_LBRACE_PIPE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1186), - [anon_sym_bool] = ACTIONS(1186), - [anon_sym_char] = ACTIONS(1186), - [anon_sym_ichar] = ACTIONS(1186), - [anon_sym_short] = ACTIONS(1186), - [anon_sym_ushort] = ACTIONS(1186), - [anon_sym_uint] = ACTIONS(1186), - [anon_sym_long] = ACTIONS(1186), - [anon_sym_ulong] = ACTIONS(1186), - [anon_sym_int128] = ACTIONS(1186), - [anon_sym_uint128] = ACTIONS(1186), - [anon_sym_float] = ACTIONS(1186), - [anon_sym_double] = ACTIONS(1186), - [anon_sym_float16] = ACTIONS(1186), - [anon_sym_bfloat16] = ACTIONS(1186), - [anon_sym_float128] = ACTIONS(1186), - [anon_sym_iptr] = ACTIONS(1186), - [anon_sym_uptr] = ACTIONS(1186), - [anon_sym_isz] = ACTIONS(1186), - [anon_sym_usz] = ACTIONS(1186), - [anon_sym_anyfault] = ACTIONS(1186), - [anon_sym_any] = ACTIONS(1186), - [anon_sym_DOLLARtypeof] = ACTIONS(1186), - [anon_sym_DOLLARtypefrom] = ACTIONS(1186), - [anon_sym_DOLLARvatype] = ACTIONS(1186), - [anon_sym_DOLLARevaltype] = ACTIONS(1186), - [sym_real_literal] = ACTIONS(1188), + [sym_ident] = ACTIONS(1179), + [sym_integer_literal] = ACTIONS(1181), + [anon_sym_SQUOTE] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1181), + [anon_sym_BQUOTE] = ACTIONS(1181), + [sym_bytes_literal] = ACTIONS(1181), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1179), + [sym_at_ident] = ACTIONS(1181), + [sym_hash_ident] = ACTIONS(1181), + [sym_type_ident] = ACTIONS(1181), + [sym_ct_type_ident] = ACTIONS(1181), + [sym_const_ident] = ACTIONS(1179), + [sym_builtin] = ACTIONS(1181), + [anon_sym_LPAREN_LT] = ACTIONS(1183), + [anon_sym_EQ] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_AMP] = ACTIONS(1179), + [anon_sym_LBRACK] = ACTIONS(1183), + [anon_sym_static] = ACTIONS(1179), + [anon_sym_tlocal] = ACTIONS(1179), + [anon_sym_SEMI] = ACTIONS(1181), + [anon_sym_fn] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [anon_sym_DOT] = ACTIONS(1183), + [anon_sym_var] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_defer] = ACTIONS(1179), + [anon_sym_assert] = ACTIONS(1179), + [anon_sym_nextcase] = ACTIONS(1179), + [anon_sym_switch] = ACTIONS(1179), + [anon_sym_AMP_AMP] = ACTIONS(1181), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_else] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_foreach] = ACTIONS(1179), + [anon_sym_foreach_r] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_int] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1179), + [anon_sym_LT_LT] = ACTIONS(1185), + [anon_sym_GT_GT] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1179), + [anon_sym_asm] = ACTIONS(1179), + [anon_sym_DOLLARassert] = ACTIONS(1179), + [anon_sym_DOLLARerror] = ACTIONS(1179), + [anon_sym_DOLLARecho] = ACTIONS(1179), + [anon_sym_DOLLARif] = ACTIONS(1179), + [anon_sym_DOLLARswitch] = ACTIONS(1179), + [anon_sym_DOLLARfor] = ACTIONS(1179), + [anon_sym_DOLLARendfor] = ACTIONS(1179), + [anon_sym_DOLLARforeach] = ACTIONS(1179), + [anon_sym_DOLLARalignof] = ACTIONS(1179), + [anon_sym_DOLLARextnameof] = ACTIONS(1179), + [anon_sym_DOLLARnameof] = ACTIONS(1179), + [anon_sym_DOLLARoffsetof] = ACTIONS(1179), + [anon_sym_DOLLARqnameof] = ACTIONS(1179), + [anon_sym_DOLLARvaconst] = ACTIONS(1179), + [anon_sym_DOLLARvaarg] = ACTIONS(1179), + [anon_sym_DOLLARvaref] = ACTIONS(1179), + [anon_sym_DOLLARvaexpr] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_DOLLARvacount] = ACTIONS(1179), + [anon_sym_DOLLARappend] = ACTIONS(1179), + [anon_sym_DOLLARconcat] = ACTIONS(1179), + [anon_sym_DOLLAReval] = ACTIONS(1179), + [anon_sym_DOLLARis_const] = ACTIONS(1179), + [anon_sym_DOLLARsizeof] = ACTIONS(1179), + [anon_sym_DOLLARstringify] = ACTIONS(1179), + [anon_sym_DOLLARand] = ACTIONS(1179), + [anon_sym_DOLLARdefined] = ACTIONS(1179), + [anon_sym_DOLLARembed] = ACTIONS(1179), + [anon_sym_DOLLARor] = ACTIONS(1179), + [anon_sym_DOLLARfeature] = ACTIONS(1179), + [anon_sym_DOLLARassignable] = ACTIONS(1179), + [anon_sym_PLUS_EQ] = ACTIONS(1183), + [anon_sym_DASH_EQ] = ACTIONS(1183), + [anon_sym_STAR_EQ] = ACTIONS(1183), + [anon_sym_SLASH_EQ] = ACTIONS(1183), + [anon_sym_PERCENT_EQ] = ACTIONS(1183), + [anon_sym_LT_LT_EQ] = ACTIONS(1183), + [anon_sym_GT_GT_EQ] = ACTIONS(1183), + [anon_sym_AMP_EQ] = ACTIONS(1183), + [anon_sym_CARET_EQ] = ACTIONS(1183), + [anon_sym_PIPE_EQ] = ACTIONS(1183), + [anon_sym_QMARK] = ACTIONS(1185), + [anon_sym_QMARK_COLON] = ACTIONS(1183), + [anon_sym_QMARK_QMARK] = ACTIONS(1183), + [anon_sym_BANG] = ACTIONS(1179), + [anon_sym_TILDE] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(1181), + [anon_sym_DASH_DASH] = ACTIONS(1181), + [anon_sym_SLASH] = ACTIONS(1185), + [anon_sym_PERCENT] = ACTIONS(1185), + [anon_sym_PIPE] = ACTIONS(1185), + [anon_sym_CARET] = ACTIONS(1185), + [anon_sym_EQ_EQ] = ACTIONS(1183), + [anon_sym_BANG_EQ] = ACTIONS(1183), + [anon_sym_GT] = ACTIONS(1185), + [anon_sym_GT_EQ] = ACTIONS(1183), + [anon_sym_LT_EQ] = ACTIONS(1183), + [anon_sym_LT] = ACTIONS(1185), + [anon_sym_PIPE_PIPE] = ACTIONS(1183), + [anon_sym_BANG_BANG] = ACTIONS(1183), + [anon_sym_typeid] = ACTIONS(1179), + [anon_sym_LBRACE_PIPE] = ACTIONS(1181), + [anon_sym_void] = ACTIONS(1179), + [anon_sym_bool] = ACTIONS(1179), + [anon_sym_char] = ACTIONS(1179), + [anon_sym_ichar] = ACTIONS(1179), + [anon_sym_short] = ACTIONS(1179), + [anon_sym_ushort] = ACTIONS(1179), + [anon_sym_uint] = ACTIONS(1179), + [anon_sym_long] = ACTIONS(1179), + [anon_sym_ulong] = ACTIONS(1179), + [anon_sym_int128] = ACTIONS(1179), + [anon_sym_uint128] = ACTIONS(1179), + [anon_sym_float] = ACTIONS(1179), + [anon_sym_double] = ACTIONS(1179), + [anon_sym_float16] = ACTIONS(1179), + [anon_sym_bfloat16] = ACTIONS(1179), + [anon_sym_float128] = ACTIONS(1179), + [anon_sym_iptr] = ACTIONS(1179), + [anon_sym_uptr] = ACTIONS(1179), + [anon_sym_isz] = ACTIONS(1179), + [anon_sym_usz] = ACTIONS(1179), + [anon_sym_anyfault] = ACTIONS(1179), + [anon_sym_any] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1179), + [anon_sym_DOLLARtypefrom] = ACTIONS(1179), + [anon_sym_DOLLARvatype] = ACTIONS(1179), + [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [sym_real_literal] = ACTIONS(1181), }, [148] = { [sym_line_comment] = STATE(148), [sym_doc_comment] = STATE(148), [sym_block_comment] = STATE(148), - [sym_ident] = ACTIONS(1186), - [sym_integer_literal] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym_DQUOTE] = ACTIONS(1188), - [anon_sym_BQUOTE] = ACTIONS(1188), - [sym_bytes_literal] = ACTIONS(1188), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1186), - [sym_at_ident] = ACTIONS(1188), - [sym_hash_ident] = ACTIONS(1188), - [sym_type_ident] = ACTIONS(1188), - [sym_ct_type_ident] = ACTIONS(1188), - [sym_const_ident] = ACTIONS(1186), - [sym_builtin] = ACTIONS(1188), - [anon_sym_LPAREN_LT] = ACTIONS(1190), - [anon_sym_EQ] = ACTIONS(1192), - [anon_sym_LPAREN] = ACTIONS(1186), - [anon_sym_AMP] = ACTIONS(1186), - [anon_sym_LBRACK] = ACTIONS(1190), - [anon_sym_static] = ACTIONS(1186), - [anon_sym_tlocal] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1188), - [anon_sym_fn] = ACTIONS(1186), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_const] = ACTIONS(1186), - [anon_sym_DOT] = ACTIONS(1190), - [anon_sym_var] = ACTIONS(1186), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1186), - [anon_sym_defer] = ACTIONS(1186), - [anon_sym_assert] = ACTIONS(1186), - [anon_sym_nextcase] = ACTIONS(1186), - [anon_sym_switch] = ACTIONS(1186), - [anon_sym_AMP_AMP] = ACTIONS(1188), - [anon_sym_if] = ACTIONS(1186), - [anon_sym_else] = ACTIONS(1186), - [anon_sym_for] = ACTIONS(1186), - [anon_sym_foreach] = ACTIONS(1186), - [anon_sym_foreach_r] = ACTIONS(1186), - [anon_sym_while] = ACTIONS(1186), - [anon_sym_do] = ACTIONS(1186), - [anon_sym_int] = ACTIONS(1186), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_LT_LT] = ACTIONS(1192), - [anon_sym_GT_GT] = ACTIONS(1192), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_asm] = ACTIONS(1186), - [anon_sym_DOLLARassert] = ACTIONS(1186), - [anon_sym_DOLLARerror] = ACTIONS(1186), - [anon_sym_DOLLARecho] = ACTIONS(1186), - [anon_sym_DOLLARif] = ACTIONS(1186), - [anon_sym_DOLLARendif] = ACTIONS(1186), - [anon_sym_DOLLARswitch] = ACTIONS(1186), - [anon_sym_DOLLARfor] = ACTIONS(1186), - [anon_sym_DOLLARforeach] = ACTIONS(1186), - [anon_sym_DOLLARalignof] = ACTIONS(1186), - [anon_sym_DOLLARextnameof] = ACTIONS(1186), - [anon_sym_DOLLARnameof] = ACTIONS(1186), - [anon_sym_DOLLARoffsetof] = ACTIONS(1186), - [anon_sym_DOLLARqnameof] = ACTIONS(1186), - [anon_sym_DOLLARvaconst] = ACTIONS(1186), - [anon_sym_DOLLARvaarg] = ACTIONS(1186), - [anon_sym_DOLLARvaref] = ACTIONS(1186), - [anon_sym_DOLLARvaexpr] = ACTIONS(1186), - [anon_sym_true] = ACTIONS(1186), - [anon_sym_false] = ACTIONS(1186), - [anon_sym_null] = ACTIONS(1186), - [anon_sym_DOLLARvacount] = ACTIONS(1186), - [anon_sym_DOLLARappend] = ACTIONS(1186), - [anon_sym_DOLLARconcat] = ACTIONS(1186), - [anon_sym_DOLLAReval] = ACTIONS(1186), - [anon_sym_DOLLARis_const] = ACTIONS(1186), - [anon_sym_DOLLARsizeof] = ACTIONS(1186), - [anon_sym_DOLLARstringify] = ACTIONS(1186), - [anon_sym_DOLLARand] = ACTIONS(1186), - [anon_sym_DOLLARdefined] = ACTIONS(1186), - [anon_sym_DOLLARembed] = ACTIONS(1186), - [anon_sym_DOLLARor] = ACTIONS(1186), - [anon_sym_DOLLARfeature] = ACTIONS(1186), - [anon_sym_DOLLARassignable] = ACTIONS(1186), - [anon_sym_PLUS_EQ] = ACTIONS(1190), - [anon_sym_DASH_EQ] = ACTIONS(1190), - [anon_sym_STAR_EQ] = ACTIONS(1190), - [anon_sym_SLASH_EQ] = ACTIONS(1190), - [anon_sym_PERCENT_EQ] = ACTIONS(1190), - [anon_sym_LT_LT_EQ] = ACTIONS(1190), - [anon_sym_GT_GT_EQ] = ACTIONS(1190), - [anon_sym_AMP_EQ] = ACTIONS(1190), - [anon_sym_CARET_EQ] = ACTIONS(1190), - [anon_sym_PIPE_EQ] = ACTIONS(1190), - [anon_sym_QMARK] = ACTIONS(1192), - [anon_sym_QMARK_COLON] = ACTIONS(1190), - [anon_sym_QMARK_QMARK] = ACTIONS(1190), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_PLUS_PLUS] = ACTIONS(1188), - [anon_sym_DASH_DASH] = ACTIONS(1188), - [anon_sym_SLASH] = ACTIONS(1192), - [anon_sym_PERCENT] = ACTIONS(1192), - [anon_sym_PIPE] = ACTIONS(1192), - [anon_sym_CARET] = ACTIONS(1192), - [anon_sym_EQ_EQ] = ACTIONS(1190), - [anon_sym_BANG_EQ] = ACTIONS(1190), - [anon_sym_GT] = ACTIONS(1192), - [anon_sym_GT_EQ] = ACTIONS(1190), - [anon_sym_LT_EQ] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(1192), - [anon_sym_PIPE_PIPE] = ACTIONS(1190), - [anon_sym_BANG_BANG] = ACTIONS(1190), - [anon_sym_typeid] = ACTIONS(1186), - [anon_sym_LBRACE_PIPE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1186), - [anon_sym_bool] = ACTIONS(1186), - [anon_sym_char] = ACTIONS(1186), - [anon_sym_ichar] = ACTIONS(1186), - [anon_sym_short] = ACTIONS(1186), - [anon_sym_ushort] = ACTIONS(1186), - [anon_sym_uint] = ACTIONS(1186), - [anon_sym_long] = ACTIONS(1186), - [anon_sym_ulong] = ACTIONS(1186), - [anon_sym_int128] = ACTIONS(1186), - [anon_sym_uint128] = ACTIONS(1186), - [anon_sym_float] = ACTIONS(1186), - [anon_sym_double] = ACTIONS(1186), - [anon_sym_float16] = ACTIONS(1186), - [anon_sym_bfloat16] = ACTIONS(1186), - [anon_sym_float128] = ACTIONS(1186), - [anon_sym_iptr] = ACTIONS(1186), - [anon_sym_uptr] = ACTIONS(1186), - [anon_sym_isz] = ACTIONS(1186), - [anon_sym_usz] = ACTIONS(1186), - [anon_sym_anyfault] = ACTIONS(1186), - [anon_sym_any] = ACTIONS(1186), - [anon_sym_DOLLARtypeof] = ACTIONS(1186), - [anon_sym_DOLLARtypefrom] = ACTIONS(1186), - [anon_sym_DOLLARvatype] = ACTIONS(1186), - [anon_sym_DOLLARevaltype] = ACTIONS(1186), - [sym_real_literal] = ACTIONS(1188), + [sym_ident] = ACTIONS(1179), + [sym_integer_literal] = ACTIONS(1181), + [anon_sym_SQUOTE] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1181), + [anon_sym_BQUOTE] = ACTIONS(1181), + [sym_bytes_literal] = ACTIONS(1181), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1179), + [sym_at_ident] = ACTIONS(1181), + [sym_hash_ident] = ACTIONS(1181), + [sym_type_ident] = ACTIONS(1181), + [sym_ct_type_ident] = ACTIONS(1181), + [sym_const_ident] = ACTIONS(1179), + [sym_builtin] = ACTIONS(1181), + [anon_sym_LPAREN_LT] = ACTIONS(1183), + [anon_sym_EQ] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_AMP] = ACTIONS(1179), + [anon_sym_LBRACK] = ACTIONS(1183), + [anon_sym_static] = ACTIONS(1179), + [anon_sym_tlocal] = ACTIONS(1179), + [anon_sym_SEMI] = ACTIONS(1181), + [anon_sym_fn] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [anon_sym_DOT] = ACTIONS(1183), + [anon_sym_var] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_defer] = ACTIONS(1179), + [anon_sym_assert] = ACTIONS(1179), + [anon_sym_nextcase] = ACTIONS(1179), + [anon_sym_switch] = ACTIONS(1179), + [anon_sym_AMP_AMP] = ACTIONS(1181), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_foreach] = ACTIONS(1179), + [anon_sym_foreach_r] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_int] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1179), + [anon_sym_LT_LT] = ACTIONS(1185), + [anon_sym_GT_GT] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1179), + [anon_sym_asm] = ACTIONS(1179), + [anon_sym_DOLLARassert] = ACTIONS(1179), + [anon_sym_DOLLARerror] = ACTIONS(1179), + [anon_sym_DOLLARecho] = ACTIONS(1179), + [anon_sym_DOLLARif] = ACTIONS(1179), + [anon_sym_DOLLARendif] = ACTIONS(1179), + [anon_sym_DOLLARelse] = ACTIONS(1179), + [anon_sym_DOLLARswitch] = ACTIONS(1179), + [anon_sym_DOLLARfor] = ACTIONS(1179), + [anon_sym_DOLLARforeach] = ACTIONS(1179), + [anon_sym_DOLLARalignof] = ACTIONS(1179), + [anon_sym_DOLLARextnameof] = ACTIONS(1179), + [anon_sym_DOLLARnameof] = ACTIONS(1179), + [anon_sym_DOLLARoffsetof] = ACTIONS(1179), + [anon_sym_DOLLARqnameof] = ACTIONS(1179), + [anon_sym_DOLLARvaconst] = ACTIONS(1179), + [anon_sym_DOLLARvaarg] = ACTIONS(1179), + [anon_sym_DOLLARvaref] = ACTIONS(1179), + [anon_sym_DOLLARvaexpr] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_DOLLARvacount] = ACTIONS(1179), + [anon_sym_DOLLARappend] = ACTIONS(1179), + [anon_sym_DOLLARconcat] = ACTIONS(1179), + [anon_sym_DOLLAReval] = ACTIONS(1179), + [anon_sym_DOLLARis_const] = ACTIONS(1179), + [anon_sym_DOLLARsizeof] = ACTIONS(1179), + [anon_sym_DOLLARstringify] = ACTIONS(1179), + [anon_sym_DOLLARand] = ACTIONS(1179), + [anon_sym_DOLLARdefined] = ACTIONS(1179), + [anon_sym_DOLLARembed] = ACTIONS(1179), + [anon_sym_DOLLARor] = ACTIONS(1179), + [anon_sym_DOLLARfeature] = ACTIONS(1179), + [anon_sym_DOLLARassignable] = ACTIONS(1179), + [anon_sym_PLUS_EQ] = ACTIONS(1183), + [anon_sym_DASH_EQ] = ACTIONS(1183), + [anon_sym_STAR_EQ] = ACTIONS(1183), + [anon_sym_SLASH_EQ] = ACTIONS(1183), + [anon_sym_PERCENT_EQ] = ACTIONS(1183), + [anon_sym_LT_LT_EQ] = ACTIONS(1183), + [anon_sym_GT_GT_EQ] = ACTIONS(1183), + [anon_sym_AMP_EQ] = ACTIONS(1183), + [anon_sym_CARET_EQ] = ACTIONS(1183), + [anon_sym_PIPE_EQ] = ACTIONS(1183), + [anon_sym_QMARK] = ACTIONS(1185), + [anon_sym_QMARK_COLON] = ACTIONS(1183), + [anon_sym_QMARK_QMARK] = ACTIONS(1183), + [anon_sym_BANG] = ACTIONS(1179), + [anon_sym_TILDE] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(1181), + [anon_sym_DASH_DASH] = ACTIONS(1181), + [anon_sym_SLASH] = ACTIONS(1185), + [anon_sym_PERCENT] = ACTIONS(1185), + [anon_sym_PIPE] = ACTIONS(1185), + [anon_sym_CARET] = ACTIONS(1185), + [anon_sym_EQ_EQ] = ACTIONS(1183), + [anon_sym_BANG_EQ] = ACTIONS(1183), + [anon_sym_GT] = ACTIONS(1185), + [anon_sym_GT_EQ] = ACTIONS(1183), + [anon_sym_LT_EQ] = ACTIONS(1183), + [anon_sym_LT] = ACTIONS(1185), + [anon_sym_PIPE_PIPE] = ACTIONS(1183), + [anon_sym_BANG_BANG] = ACTIONS(1183), + [anon_sym_typeid] = ACTIONS(1179), + [anon_sym_LBRACE_PIPE] = ACTIONS(1181), + [anon_sym_void] = ACTIONS(1179), + [anon_sym_bool] = ACTIONS(1179), + [anon_sym_char] = ACTIONS(1179), + [anon_sym_ichar] = ACTIONS(1179), + [anon_sym_short] = ACTIONS(1179), + [anon_sym_ushort] = ACTIONS(1179), + [anon_sym_uint] = ACTIONS(1179), + [anon_sym_long] = ACTIONS(1179), + [anon_sym_ulong] = ACTIONS(1179), + [anon_sym_int128] = ACTIONS(1179), + [anon_sym_uint128] = ACTIONS(1179), + [anon_sym_float] = ACTIONS(1179), + [anon_sym_double] = ACTIONS(1179), + [anon_sym_float16] = ACTIONS(1179), + [anon_sym_bfloat16] = ACTIONS(1179), + [anon_sym_float128] = ACTIONS(1179), + [anon_sym_iptr] = ACTIONS(1179), + [anon_sym_uptr] = ACTIONS(1179), + [anon_sym_isz] = ACTIONS(1179), + [anon_sym_usz] = ACTIONS(1179), + [anon_sym_anyfault] = ACTIONS(1179), + [anon_sym_any] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1179), + [anon_sym_DOLLARtypefrom] = ACTIONS(1179), + [anon_sym_DOLLARvatype] = ACTIONS(1179), + [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [sym_real_literal] = ACTIONS(1181), }, [149] = { [sym_line_comment] = STATE(149), [sym_doc_comment] = STATE(149), [sym_block_comment] = STATE(149), - [sym_ident] = ACTIONS(1186), - [sym_integer_literal] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym_DQUOTE] = ACTIONS(1188), - [anon_sym_BQUOTE] = ACTIONS(1188), - [sym_bytes_literal] = ACTIONS(1188), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1186), - [sym_at_ident] = ACTIONS(1188), - [sym_hash_ident] = ACTIONS(1188), - [sym_type_ident] = ACTIONS(1188), - [sym_ct_type_ident] = ACTIONS(1188), - [sym_const_ident] = ACTIONS(1186), - [sym_builtin] = ACTIONS(1188), - [anon_sym_LPAREN_LT] = ACTIONS(1190), - [anon_sym_EQ] = ACTIONS(1192), - [anon_sym_LPAREN] = ACTIONS(1186), - [anon_sym_AMP] = ACTIONS(1186), - [anon_sym_LBRACK] = ACTIONS(1190), - [anon_sym_static] = ACTIONS(1186), - [anon_sym_tlocal] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1188), - [anon_sym_fn] = ACTIONS(1186), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_const] = ACTIONS(1186), - [anon_sym_DOT] = ACTIONS(1190), - [anon_sym_var] = ACTIONS(1186), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1186), - [anon_sym_defer] = ACTIONS(1186), - [anon_sym_assert] = ACTIONS(1186), - [anon_sym_nextcase] = ACTIONS(1186), - [anon_sym_switch] = ACTIONS(1186), - [anon_sym_AMP_AMP] = ACTIONS(1188), - [anon_sym_if] = ACTIONS(1186), - [anon_sym_else] = ACTIONS(1186), - [anon_sym_for] = ACTIONS(1186), - [anon_sym_foreach] = ACTIONS(1186), - [anon_sym_foreach_r] = ACTIONS(1186), - [anon_sym_while] = ACTIONS(1186), - [anon_sym_do] = ACTIONS(1186), - [anon_sym_int] = ACTIONS(1186), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_LT_LT] = ACTIONS(1192), - [anon_sym_GT_GT] = ACTIONS(1192), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_asm] = ACTIONS(1186), - [anon_sym_DOLLARassert] = ACTIONS(1186), - [anon_sym_DOLLARerror] = ACTIONS(1186), - [anon_sym_DOLLARecho] = ACTIONS(1186), - [anon_sym_DOLLARif] = ACTIONS(1186), - [anon_sym_DOLLARswitch] = ACTIONS(1186), - [anon_sym_DOLLARfor] = ACTIONS(1186), - [anon_sym_DOLLARendfor] = ACTIONS(1186), - [anon_sym_DOLLARforeach] = ACTIONS(1186), - [anon_sym_DOLLARalignof] = ACTIONS(1186), - [anon_sym_DOLLARextnameof] = ACTIONS(1186), - [anon_sym_DOLLARnameof] = ACTIONS(1186), - [anon_sym_DOLLARoffsetof] = ACTIONS(1186), - [anon_sym_DOLLARqnameof] = ACTIONS(1186), - [anon_sym_DOLLARvaconst] = ACTIONS(1186), - [anon_sym_DOLLARvaarg] = ACTIONS(1186), - [anon_sym_DOLLARvaref] = ACTIONS(1186), - [anon_sym_DOLLARvaexpr] = ACTIONS(1186), - [anon_sym_true] = ACTIONS(1186), - [anon_sym_false] = ACTIONS(1186), - [anon_sym_null] = ACTIONS(1186), - [anon_sym_DOLLARvacount] = ACTIONS(1186), - [anon_sym_DOLLARappend] = ACTIONS(1186), - [anon_sym_DOLLARconcat] = ACTIONS(1186), - [anon_sym_DOLLAReval] = ACTIONS(1186), - [anon_sym_DOLLARis_const] = ACTIONS(1186), - [anon_sym_DOLLARsizeof] = ACTIONS(1186), - [anon_sym_DOLLARstringify] = ACTIONS(1186), - [anon_sym_DOLLARand] = ACTIONS(1186), - [anon_sym_DOLLARdefined] = ACTIONS(1186), - [anon_sym_DOLLARembed] = ACTIONS(1186), - [anon_sym_DOLLARor] = ACTIONS(1186), - [anon_sym_DOLLARfeature] = ACTIONS(1186), - [anon_sym_DOLLARassignable] = ACTIONS(1186), - [anon_sym_PLUS_EQ] = ACTIONS(1190), - [anon_sym_DASH_EQ] = ACTIONS(1190), - [anon_sym_STAR_EQ] = ACTIONS(1190), - [anon_sym_SLASH_EQ] = ACTIONS(1190), - [anon_sym_PERCENT_EQ] = ACTIONS(1190), - [anon_sym_LT_LT_EQ] = ACTIONS(1190), - [anon_sym_GT_GT_EQ] = ACTIONS(1190), - [anon_sym_AMP_EQ] = ACTIONS(1190), - [anon_sym_CARET_EQ] = ACTIONS(1190), - [anon_sym_PIPE_EQ] = ACTIONS(1190), - [anon_sym_QMARK] = ACTIONS(1192), - [anon_sym_QMARK_COLON] = ACTIONS(1190), - [anon_sym_QMARK_QMARK] = ACTIONS(1190), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_PLUS_PLUS] = ACTIONS(1188), - [anon_sym_DASH_DASH] = ACTIONS(1188), - [anon_sym_SLASH] = ACTIONS(1192), - [anon_sym_PERCENT] = ACTIONS(1192), - [anon_sym_PIPE] = ACTIONS(1192), - [anon_sym_CARET] = ACTIONS(1192), - [anon_sym_EQ_EQ] = ACTIONS(1190), - [anon_sym_BANG_EQ] = ACTIONS(1190), - [anon_sym_GT] = ACTIONS(1192), - [anon_sym_GT_EQ] = ACTIONS(1190), - [anon_sym_LT_EQ] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(1192), - [anon_sym_PIPE_PIPE] = ACTIONS(1190), - [anon_sym_BANG_BANG] = ACTIONS(1190), - [anon_sym_typeid] = ACTIONS(1186), - [anon_sym_LBRACE_PIPE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1186), - [anon_sym_bool] = ACTIONS(1186), - [anon_sym_char] = ACTIONS(1186), - [anon_sym_ichar] = ACTIONS(1186), - [anon_sym_short] = ACTIONS(1186), - [anon_sym_ushort] = ACTIONS(1186), - [anon_sym_uint] = ACTIONS(1186), - [anon_sym_long] = ACTIONS(1186), - [anon_sym_ulong] = ACTIONS(1186), - [anon_sym_int128] = ACTIONS(1186), - [anon_sym_uint128] = ACTIONS(1186), - [anon_sym_float] = ACTIONS(1186), - [anon_sym_double] = ACTIONS(1186), - [anon_sym_float16] = ACTIONS(1186), - [anon_sym_bfloat16] = ACTIONS(1186), - [anon_sym_float128] = ACTIONS(1186), - [anon_sym_iptr] = ACTIONS(1186), - [anon_sym_uptr] = ACTIONS(1186), - [anon_sym_isz] = ACTIONS(1186), - [anon_sym_usz] = ACTIONS(1186), - [anon_sym_anyfault] = ACTIONS(1186), - [anon_sym_any] = ACTIONS(1186), - [anon_sym_DOLLARtypeof] = ACTIONS(1186), - [anon_sym_DOLLARtypefrom] = ACTIONS(1186), - [anon_sym_DOLLARvatype] = ACTIONS(1186), - [anon_sym_DOLLARevaltype] = ACTIONS(1186), - [sym_real_literal] = ACTIONS(1188), + [sym_ident] = ACTIONS(1179), + [sym_integer_literal] = ACTIONS(1181), + [anon_sym_SQUOTE] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1181), + [anon_sym_BQUOTE] = ACTIONS(1181), + [sym_bytes_literal] = ACTIONS(1181), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1179), + [sym_at_ident] = ACTIONS(1181), + [sym_hash_ident] = ACTIONS(1181), + [sym_type_ident] = ACTIONS(1181), + [sym_ct_type_ident] = ACTIONS(1181), + [sym_const_ident] = ACTIONS(1179), + [sym_builtin] = ACTIONS(1181), + [anon_sym_LPAREN_LT] = ACTIONS(1183), + [anon_sym_EQ] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_AMP] = ACTIONS(1179), + [anon_sym_LBRACK] = ACTIONS(1183), + [anon_sym_static] = ACTIONS(1179), + [anon_sym_tlocal] = ACTIONS(1179), + [anon_sym_SEMI] = ACTIONS(1181), + [anon_sym_fn] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [anon_sym_DOT] = ACTIONS(1183), + [anon_sym_var] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_defer] = ACTIONS(1179), + [anon_sym_assert] = ACTIONS(1179), + [anon_sym_nextcase] = ACTIONS(1179), + [anon_sym_switch] = ACTIONS(1179), + [anon_sym_AMP_AMP] = ACTIONS(1181), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_else] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_foreach] = ACTIONS(1179), + [anon_sym_foreach_r] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_int] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1179), + [anon_sym_LT_LT] = ACTIONS(1185), + [anon_sym_GT_GT] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1179), + [anon_sym_asm] = ACTIONS(1179), + [anon_sym_DOLLARassert] = ACTIONS(1179), + [anon_sym_DOLLARerror] = ACTIONS(1179), + [anon_sym_DOLLARecho] = ACTIONS(1179), + [anon_sym_DOLLARif] = ACTIONS(1179), + [anon_sym_DOLLARendif] = ACTIONS(1179), + [anon_sym_DOLLARswitch] = ACTIONS(1179), + [anon_sym_DOLLARfor] = ACTIONS(1179), + [anon_sym_DOLLARforeach] = ACTIONS(1179), + [anon_sym_DOLLARalignof] = ACTIONS(1179), + [anon_sym_DOLLARextnameof] = ACTIONS(1179), + [anon_sym_DOLLARnameof] = ACTIONS(1179), + [anon_sym_DOLLARoffsetof] = ACTIONS(1179), + [anon_sym_DOLLARqnameof] = ACTIONS(1179), + [anon_sym_DOLLARvaconst] = ACTIONS(1179), + [anon_sym_DOLLARvaarg] = ACTIONS(1179), + [anon_sym_DOLLARvaref] = ACTIONS(1179), + [anon_sym_DOLLARvaexpr] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_DOLLARvacount] = ACTIONS(1179), + [anon_sym_DOLLARappend] = ACTIONS(1179), + [anon_sym_DOLLARconcat] = ACTIONS(1179), + [anon_sym_DOLLAReval] = ACTIONS(1179), + [anon_sym_DOLLARis_const] = ACTIONS(1179), + [anon_sym_DOLLARsizeof] = ACTIONS(1179), + [anon_sym_DOLLARstringify] = ACTIONS(1179), + [anon_sym_DOLLARand] = ACTIONS(1179), + [anon_sym_DOLLARdefined] = ACTIONS(1179), + [anon_sym_DOLLARembed] = ACTIONS(1179), + [anon_sym_DOLLARor] = ACTIONS(1179), + [anon_sym_DOLLARfeature] = ACTIONS(1179), + [anon_sym_DOLLARassignable] = ACTIONS(1179), + [anon_sym_PLUS_EQ] = ACTIONS(1183), + [anon_sym_DASH_EQ] = ACTIONS(1183), + [anon_sym_STAR_EQ] = ACTIONS(1183), + [anon_sym_SLASH_EQ] = ACTIONS(1183), + [anon_sym_PERCENT_EQ] = ACTIONS(1183), + [anon_sym_LT_LT_EQ] = ACTIONS(1183), + [anon_sym_GT_GT_EQ] = ACTIONS(1183), + [anon_sym_AMP_EQ] = ACTIONS(1183), + [anon_sym_CARET_EQ] = ACTIONS(1183), + [anon_sym_PIPE_EQ] = ACTIONS(1183), + [anon_sym_QMARK] = ACTIONS(1185), + [anon_sym_QMARK_COLON] = ACTIONS(1183), + [anon_sym_QMARK_QMARK] = ACTIONS(1183), + [anon_sym_BANG] = ACTIONS(1179), + [anon_sym_TILDE] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(1181), + [anon_sym_DASH_DASH] = ACTIONS(1181), + [anon_sym_SLASH] = ACTIONS(1185), + [anon_sym_PERCENT] = ACTIONS(1185), + [anon_sym_PIPE] = ACTIONS(1185), + [anon_sym_CARET] = ACTIONS(1185), + [anon_sym_EQ_EQ] = ACTIONS(1183), + [anon_sym_BANG_EQ] = ACTIONS(1183), + [anon_sym_GT] = ACTIONS(1185), + [anon_sym_GT_EQ] = ACTIONS(1183), + [anon_sym_LT_EQ] = ACTIONS(1183), + [anon_sym_LT] = ACTIONS(1185), + [anon_sym_PIPE_PIPE] = ACTIONS(1183), + [anon_sym_BANG_BANG] = ACTIONS(1183), + [anon_sym_typeid] = ACTIONS(1179), + [anon_sym_LBRACE_PIPE] = ACTIONS(1181), + [anon_sym_void] = ACTIONS(1179), + [anon_sym_bool] = ACTIONS(1179), + [anon_sym_char] = ACTIONS(1179), + [anon_sym_ichar] = ACTIONS(1179), + [anon_sym_short] = ACTIONS(1179), + [anon_sym_ushort] = ACTIONS(1179), + [anon_sym_uint] = ACTIONS(1179), + [anon_sym_long] = ACTIONS(1179), + [anon_sym_ulong] = ACTIONS(1179), + [anon_sym_int128] = ACTIONS(1179), + [anon_sym_uint128] = ACTIONS(1179), + [anon_sym_float] = ACTIONS(1179), + [anon_sym_double] = ACTIONS(1179), + [anon_sym_float16] = ACTIONS(1179), + [anon_sym_bfloat16] = ACTIONS(1179), + [anon_sym_float128] = ACTIONS(1179), + [anon_sym_iptr] = ACTIONS(1179), + [anon_sym_uptr] = ACTIONS(1179), + [anon_sym_isz] = ACTIONS(1179), + [anon_sym_usz] = ACTIONS(1179), + [anon_sym_anyfault] = ACTIONS(1179), + [anon_sym_any] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1179), + [anon_sym_DOLLARtypefrom] = ACTIONS(1179), + [anon_sym_DOLLARvatype] = ACTIONS(1179), + [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [sym_real_literal] = ACTIONS(1181), }, [150] = { [sym_line_comment] = STATE(150), [sym_doc_comment] = STATE(150), [sym_block_comment] = STATE(150), - [sym_ident] = ACTIONS(1186), - [sym_integer_literal] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym_DQUOTE] = ACTIONS(1188), - [anon_sym_BQUOTE] = ACTIONS(1188), - [sym_bytes_literal] = ACTIONS(1188), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1186), - [sym_at_ident] = ACTIONS(1188), - [sym_hash_ident] = ACTIONS(1188), - [sym_type_ident] = ACTIONS(1188), - [sym_ct_type_ident] = ACTIONS(1188), - [sym_const_ident] = ACTIONS(1186), - [sym_builtin] = ACTIONS(1188), - [anon_sym_LPAREN_LT] = ACTIONS(1190), - [anon_sym_EQ] = ACTIONS(1192), - [anon_sym_LPAREN] = ACTIONS(1186), - [anon_sym_AMP] = ACTIONS(1186), - [anon_sym_LBRACK] = ACTIONS(1190), - [anon_sym_static] = ACTIONS(1186), - [anon_sym_tlocal] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1188), - [anon_sym_fn] = ACTIONS(1186), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_const] = ACTIONS(1186), - [anon_sym_DOT] = ACTIONS(1190), - [anon_sym_var] = ACTIONS(1186), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1186), - [anon_sym_defer] = ACTIONS(1186), - [anon_sym_assert] = ACTIONS(1186), - [anon_sym_nextcase] = ACTIONS(1186), - [anon_sym_switch] = ACTIONS(1186), - [anon_sym_AMP_AMP] = ACTIONS(1188), - [anon_sym_if] = ACTIONS(1186), - [anon_sym_else] = ACTIONS(1186), - [anon_sym_for] = ACTIONS(1186), - [anon_sym_foreach] = ACTIONS(1186), - [anon_sym_foreach_r] = ACTIONS(1186), - [anon_sym_while] = ACTIONS(1186), - [anon_sym_do] = ACTIONS(1186), - [anon_sym_int] = ACTIONS(1186), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_LT_LT] = ACTIONS(1192), - [anon_sym_GT_GT] = ACTIONS(1192), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_asm] = ACTIONS(1186), - [anon_sym_DOLLARassert] = ACTIONS(1186), - [anon_sym_DOLLARerror] = ACTIONS(1186), - [anon_sym_DOLLARecho] = ACTIONS(1186), - [anon_sym_DOLLARif] = ACTIONS(1186), - [anon_sym_DOLLARswitch] = ACTIONS(1186), - [anon_sym_DOLLARfor] = ACTIONS(1186), - [anon_sym_DOLLARforeach] = ACTIONS(1186), - [anon_sym_DOLLARendforeach] = ACTIONS(1186), - [anon_sym_DOLLARalignof] = ACTIONS(1186), - [anon_sym_DOLLARextnameof] = ACTIONS(1186), - [anon_sym_DOLLARnameof] = ACTIONS(1186), - [anon_sym_DOLLARoffsetof] = ACTIONS(1186), - [anon_sym_DOLLARqnameof] = ACTIONS(1186), - [anon_sym_DOLLARvaconst] = ACTIONS(1186), - [anon_sym_DOLLARvaarg] = ACTIONS(1186), - [anon_sym_DOLLARvaref] = ACTIONS(1186), - [anon_sym_DOLLARvaexpr] = ACTIONS(1186), - [anon_sym_true] = ACTIONS(1186), - [anon_sym_false] = ACTIONS(1186), - [anon_sym_null] = ACTIONS(1186), - [anon_sym_DOLLARvacount] = ACTIONS(1186), - [anon_sym_DOLLARappend] = ACTIONS(1186), - [anon_sym_DOLLARconcat] = ACTIONS(1186), - [anon_sym_DOLLAReval] = ACTIONS(1186), - [anon_sym_DOLLARis_const] = ACTIONS(1186), - [anon_sym_DOLLARsizeof] = ACTIONS(1186), - [anon_sym_DOLLARstringify] = ACTIONS(1186), - [anon_sym_DOLLARand] = ACTIONS(1186), - [anon_sym_DOLLARdefined] = ACTIONS(1186), - [anon_sym_DOLLARembed] = ACTIONS(1186), - [anon_sym_DOLLARor] = ACTIONS(1186), - [anon_sym_DOLLARfeature] = ACTIONS(1186), - [anon_sym_DOLLARassignable] = ACTIONS(1186), - [anon_sym_PLUS_EQ] = ACTIONS(1190), - [anon_sym_DASH_EQ] = ACTIONS(1190), - [anon_sym_STAR_EQ] = ACTIONS(1190), - [anon_sym_SLASH_EQ] = ACTIONS(1190), - [anon_sym_PERCENT_EQ] = ACTIONS(1190), - [anon_sym_LT_LT_EQ] = ACTIONS(1190), - [anon_sym_GT_GT_EQ] = ACTIONS(1190), - [anon_sym_AMP_EQ] = ACTIONS(1190), - [anon_sym_CARET_EQ] = ACTIONS(1190), - [anon_sym_PIPE_EQ] = ACTIONS(1190), - [anon_sym_QMARK] = ACTIONS(1192), - [anon_sym_QMARK_COLON] = ACTIONS(1190), - [anon_sym_QMARK_QMARK] = ACTIONS(1190), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_PLUS_PLUS] = ACTIONS(1188), - [anon_sym_DASH_DASH] = ACTIONS(1188), - [anon_sym_SLASH] = ACTIONS(1192), - [anon_sym_PERCENT] = ACTIONS(1192), - [anon_sym_PIPE] = ACTIONS(1192), - [anon_sym_CARET] = ACTIONS(1192), - [anon_sym_EQ_EQ] = ACTIONS(1190), - [anon_sym_BANG_EQ] = ACTIONS(1190), - [anon_sym_GT] = ACTIONS(1192), - [anon_sym_GT_EQ] = ACTIONS(1190), - [anon_sym_LT_EQ] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(1192), - [anon_sym_PIPE_PIPE] = ACTIONS(1190), - [anon_sym_BANG_BANG] = ACTIONS(1190), - [anon_sym_typeid] = ACTIONS(1186), - [anon_sym_LBRACE_PIPE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1186), - [anon_sym_bool] = ACTIONS(1186), - [anon_sym_char] = ACTIONS(1186), - [anon_sym_ichar] = ACTIONS(1186), - [anon_sym_short] = ACTIONS(1186), - [anon_sym_ushort] = ACTIONS(1186), - [anon_sym_uint] = ACTIONS(1186), - [anon_sym_long] = ACTIONS(1186), - [anon_sym_ulong] = ACTIONS(1186), - [anon_sym_int128] = ACTIONS(1186), - [anon_sym_uint128] = ACTIONS(1186), - [anon_sym_float] = ACTIONS(1186), - [anon_sym_double] = ACTIONS(1186), - [anon_sym_float16] = ACTIONS(1186), - [anon_sym_bfloat16] = ACTIONS(1186), - [anon_sym_float128] = ACTIONS(1186), - [anon_sym_iptr] = ACTIONS(1186), - [anon_sym_uptr] = ACTIONS(1186), - [anon_sym_isz] = ACTIONS(1186), - [anon_sym_usz] = ACTIONS(1186), - [anon_sym_anyfault] = ACTIONS(1186), - [anon_sym_any] = ACTIONS(1186), - [anon_sym_DOLLARtypeof] = ACTIONS(1186), - [anon_sym_DOLLARtypefrom] = ACTIONS(1186), - [anon_sym_DOLLARvatype] = ACTIONS(1186), - [anon_sym_DOLLARevaltype] = ACTIONS(1186), - [sym_real_literal] = ACTIONS(1188), + [sym_ident] = ACTIONS(1179), + [sym_integer_literal] = ACTIONS(1181), + [anon_sym_SQUOTE] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1181), + [anon_sym_BQUOTE] = ACTIONS(1181), + [sym_bytes_literal] = ACTIONS(1181), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1179), + [sym_at_ident] = ACTIONS(1181), + [sym_hash_ident] = ACTIONS(1181), + [sym_type_ident] = ACTIONS(1181), + [sym_ct_type_ident] = ACTIONS(1181), + [sym_const_ident] = ACTIONS(1179), + [sym_builtin] = ACTIONS(1181), + [anon_sym_LPAREN_LT] = ACTIONS(1183), + [anon_sym_EQ] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_AMP] = ACTIONS(1179), + [anon_sym_LBRACK] = ACTIONS(1183), + [anon_sym_static] = ACTIONS(1179), + [anon_sym_tlocal] = ACTIONS(1179), + [anon_sym_SEMI] = ACTIONS(1181), + [anon_sym_fn] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [anon_sym_DOT] = ACTIONS(1183), + [anon_sym_var] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_defer] = ACTIONS(1179), + [anon_sym_assert] = ACTIONS(1179), + [anon_sym_nextcase] = ACTIONS(1179), + [anon_sym_switch] = ACTIONS(1179), + [anon_sym_AMP_AMP] = ACTIONS(1181), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_foreach] = ACTIONS(1179), + [anon_sym_foreach_r] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_int] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1179), + [anon_sym_LT_LT] = ACTIONS(1185), + [anon_sym_GT_GT] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1179), + [anon_sym_asm] = ACTIONS(1179), + [anon_sym_DOLLARassert] = ACTIONS(1179), + [anon_sym_DOLLARerror] = ACTIONS(1179), + [anon_sym_DOLLARecho] = ACTIONS(1179), + [anon_sym_DOLLARif] = ACTIONS(1179), + [anon_sym_DOLLARswitch] = ACTIONS(1179), + [anon_sym_DOLLARfor] = ACTIONS(1179), + [anon_sym_DOLLARendfor] = ACTIONS(1179), + [anon_sym_DOLLARforeach] = ACTIONS(1179), + [anon_sym_DOLLARalignof] = ACTIONS(1179), + [anon_sym_DOLLARextnameof] = ACTIONS(1179), + [anon_sym_DOLLARnameof] = ACTIONS(1179), + [anon_sym_DOLLARoffsetof] = ACTIONS(1179), + [anon_sym_DOLLARqnameof] = ACTIONS(1179), + [anon_sym_DOLLARvaconst] = ACTIONS(1179), + [anon_sym_DOLLARvaarg] = ACTIONS(1179), + [anon_sym_DOLLARvaref] = ACTIONS(1179), + [anon_sym_DOLLARvaexpr] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_DOLLARvacount] = ACTIONS(1179), + [anon_sym_DOLLARappend] = ACTIONS(1179), + [anon_sym_DOLLARconcat] = ACTIONS(1179), + [anon_sym_DOLLAReval] = ACTIONS(1179), + [anon_sym_DOLLARis_const] = ACTIONS(1179), + [anon_sym_DOLLARsizeof] = ACTIONS(1179), + [anon_sym_DOLLARstringify] = ACTIONS(1179), + [anon_sym_DOLLARand] = ACTIONS(1179), + [anon_sym_DOLLARdefined] = ACTIONS(1179), + [anon_sym_DOLLARembed] = ACTIONS(1179), + [anon_sym_DOLLARor] = ACTIONS(1179), + [anon_sym_DOLLARfeature] = ACTIONS(1179), + [anon_sym_DOLLARassignable] = ACTIONS(1179), + [anon_sym_PLUS_EQ] = ACTIONS(1183), + [anon_sym_DASH_EQ] = ACTIONS(1183), + [anon_sym_STAR_EQ] = ACTIONS(1183), + [anon_sym_SLASH_EQ] = ACTIONS(1183), + [anon_sym_PERCENT_EQ] = ACTIONS(1183), + [anon_sym_LT_LT_EQ] = ACTIONS(1183), + [anon_sym_GT_GT_EQ] = ACTIONS(1183), + [anon_sym_AMP_EQ] = ACTIONS(1183), + [anon_sym_CARET_EQ] = ACTIONS(1183), + [anon_sym_PIPE_EQ] = ACTIONS(1183), + [anon_sym_QMARK] = ACTIONS(1185), + [anon_sym_QMARK_COLON] = ACTIONS(1183), + [anon_sym_QMARK_QMARK] = ACTIONS(1183), + [anon_sym_BANG] = ACTIONS(1179), + [anon_sym_TILDE] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(1181), + [anon_sym_DASH_DASH] = ACTIONS(1181), + [anon_sym_SLASH] = ACTIONS(1185), + [anon_sym_PERCENT] = ACTIONS(1185), + [anon_sym_PIPE] = ACTIONS(1185), + [anon_sym_CARET] = ACTIONS(1185), + [anon_sym_EQ_EQ] = ACTIONS(1183), + [anon_sym_BANG_EQ] = ACTIONS(1183), + [anon_sym_GT] = ACTIONS(1185), + [anon_sym_GT_EQ] = ACTIONS(1183), + [anon_sym_LT_EQ] = ACTIONS(1183), + [anon_sym_LT] = ACTIONS(1185), + [anon_sym_PIPE_PIPE] = ACTIONS(1183), + [anon_sym_BANG_BANG] = ACTIONS(1183), + [anon_sym_typeid] = ACTIONS(1179), + [anon_sym_LBRACE_PIPE] = ACTIONS(1181), + [anon_sym_void] = ACTIONS(1179), + [anon_sym_bool] = ACTIONS(1179), + [anon_sym_char] = ACTIONS(1179), + [anon_sym_ichar] = ACTIONS(1179), + [anon_sym_short] = ACTIONS(1179), + [anon_sym_ushort] = ACTIONS(1179), + [anon_sym_uint] = ACTIONS(1179), + [anon_sym_long] = ACTIONS(1179), + [anon_sym_ulong] = ACTIONS(1179), + [anon_sym_int128] = ACTIONS(1179), + [anon_sym_uint128] = ACTIONS(1179), + [anon_sym_float] = ACTIONS(1179), + [anon_sym_double] = ACTIONS(1179), + [anon_sym_float16] = ACTIONS(1179), + [anon_sym_bfloat16] = ACTIONS(1179), + [anon_sym_float128] = ACTIONS(1179), + [anon_sym_iptr] = ACTIONS(1179), + [anon_sym_uptr] = ACTIONS(1179), + [anon_sym_isz] = ACTIONS(1179), + [anon_sym_usz] = ACTIONS(1179), + [anon_sym_anyfault] = ACTIONS(1179), + [anon_sym_any] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1179), + [anon_sym_DOLLARtypefrom] = ACTIONS(1179), + [anon_sym_DOLLARvatype] = ACTIONS(1179), + [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [sym_real_literal] = ACTIONS(1181), }, [151] = { [sym_line_comment] = STATE(151), [sym_doc_comment] = STATE(151), [sym_block_comment] = STATE(151), - [sym_ident] = ACTIONS(1186), - [sym_integer_literal] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym_DQUOTE] = ACTIONS(1188), - [anon_sym_BQUOTE] = ACTIONS(1188), - [sym_bytes_literal] = ACTIONS(1188), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1186), - [sym_at_ident] = ACTIONS(1188), - [sym_hash_ident] = ACTIONS(1188), - [sym_type_ident] = ACTIONS(1188), - [sym_ct_type_ident] = ACTIONS(1188), - [sym_const_ident] = ACTIONS(1186), - [sym_builtin] = ACTIONS(1188), - [anon_sym_LPAREN_LT] = ACTIONS(1190), - [anon_sym_EQ] = ACTIONS(1192), - [anon_sym_LPAREN] = ACTIONS(1186), - [anon_sym_AMP] = ACTIONS(1186), - [anon_sym_LBRACK] = ACTIONS(1190), - [anon_sym_static] = ACTIONS(1186), - [anon_sym_tlocal] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1188), - [anon_sym_fn] = ACTIONS(1186), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_const] = ACTIONS(1186), - [anon_sym_DOT] = ACTIONS(1190), - [anon_sym_var] = ACTIONS(1186), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1186), - [anon_sym_defer] = ACTIONS(1186), - [anon_sym_assert] = ACTIONS(1186), - [anon_sym_nextcase] = ACTIONS(1186), - [anon_sym_switch] = ACTIONS(1186), - [anon_sym_AMP_AMP] = ACTIONS(1188), - [anon_sym_if] = ACTIONS(1186), - [anon_sym_for] = ACTIONS(1186), - [anon_sym_foreach] = ACTIONS(1186), - [anon_sym_foreach_r] = ACTIONS(1186), - [anon_sym_while] = ACTIONS(1186), - [anon_sym_do] = ACTIONS(1186), - [anon_sym_int] = ACTIONS(1186), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_LT_LT] = ACTIONS(1192), - [anon_sym_GT_GT] = ACTIONS(1192), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_asm] = ACTIONS(1186), - [anon_sym_DOLLARassert] = ACTIONS(1186), - [anon_sym_DOLLARerror] = ACTIONS(1186), - [anon_sym_DOLLARecho] = ACTIONS(1186), - [anon_sym_DOLLARif] = ACTIONS(1186), - [anon_sym_DOLLARswitch] = ACTIONS(1186), - [anon_sym_DOLLARfor] = ACTIONS(1186), - [anon_sym_DOLLARforeach] = ACTIONS(1186), - [anon_sym_DOLLARendforeach] = ACTIONS(1186), - [anon_sym_DOLLARalignof] = ACTIONS(1186), - [anon_sym_DOLLARextnameof] = ACTIONS(1186), - [anon_sym_DOLLARnameof] = ACTIONS(1186), - [anon_sym_DOLLARoffsetof] = ACTIONS(1186), - [anon_sym_DOLLARqnameof] = ACTIONS(1186), - [anon_sym_DOLLARvaconst] = ACTIONS(1186), - [anon_sym_DOLLARvaarg] = ACTIONS(1186), - [anon_sym_DOLLARvaref] = ACTIONS(1186), - [anon_sym_DOLLARvaexpr] = ACTIONS(1186), - [anon_sym_true] = ACTIONS(1186), - [anon_sym_false] = ACTIONS(1186), - [anon_sym_null] = ACTIONS(1186), - [anon_sym_DOLLARvacount] = ACTIONS(1186), - [anon_sym_DOLLARappend] = ACTIONS(1186), - [anon_sym_DOLLARconcat] = ACTIONS(1186), - [anon_sym_DOLLAReval] = ACTIONS(1186), - [anon_sym_DOLLARis_const] = ACTIONS(1186), - [anon_sym_DOLLARsizeof] = ACTIONS(1186), - [anon_sym_DOLLARstringify] = ACTIONS(1186), - [anon_sym_DOLLARand] = ACTIONS(1186), - [anon_sym_DOLLARdefined] = ACTIONS(1186), - [anon_sym_DOLLARembed] = ACTIONS(1186), - [anon_sym_DOLLARor] = ACTIONS(1186), - [anon_sym_DOLLARfeature] = ACTIONS(1186), - [anon_sym_DOLLARassignable] = ACTIONS(1186), - [anon_sym_PLUS_EQ] = ACTIONS(1190), - [anon_sym_DASH_EQ] = ACTIONS(1190), - [anon_sym_STAR_EQ] = ACTIONS(1190), - [anon_sym_SLASH_EQ] = ACTIONS(1190), - [anon_sym_PERCENT_EQ] = ACTIONS(1190), - [anon_sym_LT_LT_EQ] = ACTIONS(1190), - [anon_sym_GT_GT_EQ] = ACTIONS(1190), - [anon_sym_AMP_EQ] = ACTIONS(1190), - [anon_sym_CARET_EQ] = ACTIONS(1190), - [anon_sym_PIPE_EQ] = ACTIONS(1190), - [anon_sym_QMARK] = ACTIONS(1192), - [anon_sym_QMARK_COLON] = ACTIONS(1190), - [anon_sym_QMARK_QMARK] = ACTIONS(1190), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_PLUS_PLUS] = ACTIONS(1188), - [anon_sym_DASH_DASH] = ACTIONS(1188), - [anon_sym_SLASH] = ACTIONS(1192), - [anon_sym_PERCENT] = ACTIONS(1192), - [anon_sym_PIPE] = ACTIONS(1192), - [anon_sym_CARET] = ACTIONS(1192), - [anon_sym_EQ_EQ] = ACTIONS(1190), - [anon_sym_BANG_EQ] = ACTIONS(1190), - [anon_sym_GT] = ACTIONS(1192), - [anon_sym_GT_EQ] = ACTIONS(1190), - [anon_sym_LT_EQ] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(1192), - [anon_sym_PIPE_PIPE] = ACTIONS(1190), - [anon_sym_BANG_BANG] = ACTIONS(1190), - [anon_sym_typeid] = ACTIONS(1186), - [anon_sym_LBRACE_PIPE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1186), - [anon_sym_bool] = ACTIONS(1186), - [anon_sym_char] = ACTIONS(1186), - [anon_sym_ichar] = ACTIONS(1186), - [anon_sym_short] = ACTIONS(1186), - [anon_sym_ushort] = ACTIONS(1186), - [anon_sym_uint] = ACTIONS(1186), - [anon_sym_long] = ACTIONS(1186), - [anon_sym_ulong] = ACTIONS(1186), - [anon_sym_int128] = ACTIONS(1186), - [anon_sym_uint128] = ACTIONS(1186), - [anon_sym_float] = ACTIONS(1186), - [anon_sym_double] = ACTIONS(1186), - [anon_sym_float16] = ACTIONS(1186), - [anon_sym_bfloat16] = ACTIONS(1186), - [anon_sym_float128] = ACTIONS(1186), - [anon_sym_iptr] = ACTIONS(1186), - [anon_sym_uptr] = ACTIONS(1186), - [anon_sym_isz] = ACTIONS(1186), - [anon_sym_usz] = ACTIONS(1186), - [anon_sym_anyfault] = ACTIONS(1186), - [anon_sym_any] = ACTIONS(1186), - [anon_sym_DOLLARtypeof] = ACTIONS(1186), - [anon_sym_DOLLARtypefrom] = ACTIONS(1186), - [anon_sym_DOLLARvatype] = ACTIONS(1186), - [anon_sym_DOLLARevaltype] = ACTIONS(1186), - [sym_real_literal] = ACTIONS(1188), + [sym_ident] = ACTIONS(1179), + [sym_integer_literal] = ACTIONS(1181), + [anon_sym_SQUOTE] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1181), + [anon_sym_BQUOTE] = ACTIONS(1181), + [sym_bytes_literal] = ACTIONS(1181), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1179), + [sym_at_ident] = ACTIONS(1181), + [sym_hash_ident] = ACTIONS(1181), + [sym_type_ident] = ACTIONS(1181), + [sym_ct_type_ident] = ACTIONS(1181), + [sym_const_ident] = ACTIONS(1179), + [sym_builtin] = ACTIONS(1181), + [anon_sym_LPAREN_LT] = ACTIONS(1183), + [anon_sym_EQ] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_AMP] = ACTIONS(1179), + [anon_sym_LBRACK] = ACTIONS(1183), + [anon_sym_static] = ACTIONS(1179), + [anon_sym_tlocal] = ACTIONS(1179), + [anon_sym_SEMI] = ACTIONS(1181), + [anon_sym_fn] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [anon_sym_DOT] = ACTIONS(1183), + [anon_sym_var] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_defer] = ACTIONS(1179), + [anon_sym_assert] = ACTIONS(1179), + [anon_sym_nextcase] = ACTIONS(1179), + [anon_sym_switch] = ACTIONS(1179), + [anon_sym_AMP_AMP] = ACTIONS(1181), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_foreach] = ACTIONS(1179), + [anon_sym_foreach_r] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_int] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1179), + [anon_sym_LT_LT] = ACTIONS(1185), + [anon_sym_GT_GT] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1179), + [anon_sym_asm] = ACTIONS(1179), + [anon_sym_DOLLARassert] = ACTIONS(1179), + [anon_sym_DOLLARerror] = ACTIONS(1179), + [anon_sym_DOLLARecho] = ACTIONS(1179), + [anon_sym_DOLLARif] = ACTIONS(1179), + [anon_sym_DOLLARswitch] = ACTIONS(1179), + [anon_sym_DOLLARfor] = ACTIONS(1179), + [anon_sym_DOLLARforeach] = ACTIONS(1179), + [anon_sym_DOLLARendforeach] = ACTIONS(1179), + [anon_sym_DOLLARalignof] = ACTIONS(1179), + [anon_sym_DOLLARextnameof] = ACTIONS(1179), + [anon_sym_DOLLARnameof] = ACTIONS(1179), + [anon_sym_DOLLARoffsetof] = ACTIONS(1179), + [anon_sym_DOLLARqnameof] = ACTIONS(1179), + [anon_sym_DOLLARvaconst] = ACTIONS(1179), + [anon_sym_DOLLARvaarg] = ACTIONS(1179), + [anon_sym_DOLLARvaref] = ACTIONS(1179), + [anon_sym_DOLLARvaexpr] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_DOLLARvacount] = ACTIONS(1179), + [anon_sym_DOLLARappend] = ACTIONS(1179), + [anon_sym_DOLLARconcat] = ACTIONS(1179), + [anon_sym_DOLLAReval] = ACTIONS(1179), + [anon_sym_DOLLARis_const] = ACTIONS(1179), + [anon_sym_DOLLARsizeof] = ACTIONS(1179), + [anon_sym_DOLLARstringify] = ACTIONS(1179), + [anon_sym_DOLLARand] = ACTIONS(1179), + [anon_sym_DOLLARdefined] = ACTIONS(1179), + [anon_sym_DOLLARembed] = ACTIONS(1179), + [anon_sym_DOLLARor] = ACTIONS(1179), + [anon_sym_DOLLARfeature] = ACTIONS(1179), + [anon_sym_DOLLARassignable] = ACTIONS(1179), + [anon_sym_PLUS_EQ] = ACTIONS(1183), + [anon_sym_DASH_EQ] = ACTIONS(1183), + [anon_sym_STAR_EQ] = ACTIONS(1183), + [anon_sym_SLASH_EQ] = ACTIONS(1183), + [anon_sym_PERCENT_EQ] = ACTIONS(1183), + [anon_sym_LT_LT_EQ] = ACTIONS(1183), + [anon_sym_GT_GT_EQ] = ACTIONS(1183), + [anon_sym_AMP_EQ] = ACTIONS(1183), + [anon_sym_CARET_EQ] = ACTIONS(1183), + [anon_sym_PIPE_EQ] = ACTIONS(1183), + [anon_sym_QMARK] = ACTIONS(1185), + [anon_sym_QMARK_COLON] = ACTIONS(1183), + [anon_sym_QMARK_QMARK] = ACTIONS(1183), + [anon_sym_BANG] = ACTIONS(1179), + [anon_sym_TILDE] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(1181), + [anon_sym_DASH_DASH] = ACTIONS(1181), + [anon_sym_SLASH] = ACTIONS(1185), + [anon_sym_PERCENT] = ACTIONS(1185), + [anon_sym_PIPE] = ACTIONS(1185), + [anon_sym_CARET] = ACTIONS(1185), + [anon_sym_EQ_EQ] = ACTIONS(1183), + [anon_sym_BANG_EQ] = ACTIONS(1183), + [anon_sym_GT] = ACTIONS(1185), + [anon_sym_GT_EQ] = ACTIONS(1183), + [anon_sym_LT_EQ] = ACTIONS(1183), + [anon_sym_LT] = ACTIONS(1185), + [anon_sym_PIPE_PIPE] = ACTIONS(1183), + [anon_sym_BANG_BANG] = ACTIONS(1183), + [anon_sym_typeid] = ACTIONS(1179), + [anon_sym_LBRACE_PIPE] = ACTIONS(1181), + [anon_sym_void] = ACTIONS(1179), + [anon_sym_bool] = ACTIONS(1179), + [anon_sym_char] = ACTIONS(1179), + [anon_sym_ichar] = ACTIONS(1179), + [anon_sym_short] = ACTIONS(1179), + [anon_sym_ushort] = ACTIONS(1179), + [anon_sym_uint] = ACTIONS(1179), + [anon_sym_long] = ACTIONS(1179), + [anon_sym_ulong] = ACTIONS(1179), + [anon_sym_int128] = ACTIONS(1179), + [anon_sym_uint128] = ACTIONS(1179), + [anon_sym_float] = ACTIONS(1179), + [anon_sym_double] = ACTIONS(1179), + [anon_sym_float16] = ACTIONS(1179), + [anon_sym_bfloat16] = ACTIONS(1179), + [anon_sym_float128] = ACTIONS(1179), + [anon_sym_iptr] = ACTIONS(1179), + [anon_sym_uptr] = ACTIONS(1179), + [anon_sym_isz] = ACTIONS(1179), + [anon_sym_usz] = ACTIONS(1179), + [anon_sym_anyfault] = ACTIONS(1179), + [anon_sym_any] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1179), + [anon_sym_DOLLARtypefrom] = ACTIONS(1179), + [anon_sym_DOLLARvatype] = ACTIONS(1179), + [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [sym_real_literal] = ACTIONS(1181), }, [152] = { [sym_line_comment] = STATE(152), [sym_doc_comment] = STATE(152), [sym_block_comment] = STATE(152), - [sym_ident] = ACTIONS(1186), - [sym_integer_literal] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym_DQUOTE] = ACTIONS(1188), - [anon_sym_BQUOTE] = ACTIONS(1188), - [sym_bytes_literal] = ACTIONS(1188), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1186), - [sym_at_ident] = ACTIONS(1188), - [sym_hash_ident] = ACTIONS(1188), - [sym_type_ident] = ACTIONS(1188), - [sym_ct_type_ident] = ACTIONS(1188), - [sym_const_ident] = ACTIONS(1186), - [sym_builtin] = ACTIONS(1188), - [anon_sym_LPAREN_LT] = ACTIONS(1190), - [anon_sym_EQ] = ACTIONS(1192), - [anon_sym_LPAREN] = ACTIONS(1186), - [anon_sym_AMP] = ACTIONS(1186), - [anon_sym_LBRACK] = ACTIONS(1190), - [anon_sym_static] = ACTIONS(1186), - [anon_sym_tlocal] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1188), - [anon_sym_fn] = ACTIONS(1186), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_const] = ACTIONS(1186), - [anon_sym_DOT] = ACTIONS(1190), - [anon_sym_var] = ACTIONS(1186), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1186), - [anon_sym_defer] = ACTIONS(1186), - [anon_sym_assert] = ACTIONS(1186), - [anon_sym_nextcase] = ACTIONS(1186), - [anon_sym_switch] = ACTIONS(1186), - [anon_sym_AMP_AMP] = ACTIONS(1188), - [anon_sym_if] = ACTIONS(1186), - [anon_sym_for] = ACTIONS(1186), - [anon_sym_foreach] = ACTIONS(1186), - [anon_sym_foreach_r] = ACTIONS(1186), - [anon_sym_while] = ACTIONS(1186), - [anon_sym_do] = ACTIONS(1186), - [anon_sym_int] = ACTIONS(1186), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_LT_LT] = ACTIONS(1192), - [anon_sym_GT_GT] = ACTIONS(1192), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_asm] = ACTIONS(1186), - [anon_sym_DOLLARassert] = ACTIONS(1186), - [anon_sym_DOLLARerror] = ACTIONS(1186), - [anon_sym_DOLLARecho] = ACTIONS(1186), - [anon_sym_DOLLARif] = ACTIONS(1186), - [anon_sym_DOLLARendif] = ACTIONS(1186), - [anon_sym_DOLLARswitch] = ACTIONS(1186), - [anon_sym_DOLLARfor] = ACTIONS(1186), - [anon_sym_DOLLARforeach] = ACTIONS(1186), - [anon_sym_DOLLARalignof] = ACTIONS(1186), - [anon_sym_DOLLARextnameof] = ACTIONS(1186), - [anon_sym_DOLLARnameof] = ACTIONS(1186), - [anon_sym_DOLLARoffsetof] = ACTIONS(1186), - [anon_sym_DOLLARqnameof] = ACTIONS(1186), - [anon_sym_DOLLARvaconst] = ACTIONS(1186), - [anon_sym_DOLLARvaarg] = ACTIONS(1186), - [anon_sym_DOLLARvaref] = ACTIONS(1186), - [anon_sym_DOLLARvaexpr] = ACTIONS(1186), - [anon_sym_true] = ACTIONS(1186), - [anon_sym_false] = ACTIONS(1186), - [anon_sym_null] = ACTIONS(1186), - [anon_sym_DOLLARvacount] = ACTIONS(1186), - [anon_sym_DOLLARappend] = ACTIONS(1186), - [anon_sym_DOLLARconcat] = ACTIONS(1186), - [anon_sym_DOLLAReval] = ACTIONS(1186), - [anon_sym_DOLLARis_const] = ACTIONS(1186), - [anon_sym_DOLLARsizeof] = ACTIONS(1186), - [anon_sym_DOLLARstringify] = ACTIONS(1186), - [anon_sym_DOLLARand] = ACTIONS(1186), - [anon_sym_DOLLARdefined] = ACTIONS(1186), - [anon_sym_DOLLARembed] = ACTIONS(1186), - [anon_sym_DOLLARor] = ACTIONS(1186), - [anon_sym_DOLLARfeature] = ACTIONS(1186), - [anon_sym_DOLLARassignable] = ACTIONS(1186), - [anon_sym_PLUS_EQ] = ACTIONS(1190), - [anon_sym_DASH_EQ] = ACTIONS(1190), - [anon_sym_STAR_EQ] = ACTIONS(1190), - [anon_sym_SLASH_EQ] = ACTIONS(1190), - [anon_sym_PERCENT_EQ] = ACTIONS(1190), - [anon_sym_LT_LT_EQ] = ACTIONS(1190), - [anon_sym_GT_GT_EQ] = ACTIONS(1190), - [anon_sym_AMP_EQ] = ACTIONS(1190), - [anon_sym_CARET_EQ] = ACTIONS(1190), - [anon_sym_PIPE_EQ] = ACTIONS(1190), - [anon_sym_QMARK] = ACTIONS(1192), - [anon_sym_QMARK_COLON] = ACTIONS(1190), - [anon_sym_QMARK_QMARK] = ACTIONS(1190), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_PLUS_PLUS] = ACTIONS(1188), - [anon_sym_DASH_DASH] = ACTIONS(1188), - [anon_sym_SLASH] = ACTIONS(1192), - [anon_sym_PERCENT] = ACTIONS(1192), - [anon_sym_PIPE] = ACTIONS(1192), - [anon_sym_CARET] = ACTIONS(1192), - [anon_sym_EQ_EQ] = ACTIONS(1190), - [anon_sym_BANG_EQ] = ACTIONS(1190), - [anon_sym_GT] = ACTIONS(1192), - [anon_sym_GT_EQ] = ACTIONS(1190), - [anon_sym_LT_EQ] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(1192), - [anon_sym_PIPE_PIPE] = ACTIONS(1190), - [anon_sym_BANG_BANG] = ACTIONS(1190), - [anon_sym_typeid] = ACTIONS(1186), - [anon_sym_LBRACE_PIPE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1186), - [anon_sym_bool] = ACTIONS(1186), - [anon_sym_char] = ACTIONS(1186), - [anon_sym_ichar] = ACTIONS(1186), - [anon_sym_short] = ACTIONS(1186), - [anon_sym_ushort] = ACTIONS(1186), - [anon_sym_uint] = ACTIONS(1186), - [anon_sym_long] = ACTIONS(1186), - [anon_sym_ulong] = ACTIONS(1186), - [anon_sym_int128] = ACTIONS(1186), - [anon_sym_uint128] = ACTIONS(1186), - [anon_sym_float] = ACTIONS(1186), - [anon_sym_double] = ACTIONS(1186), - [anon_sym_float16] = ACTIONS(1186), - [anon_sym_bfloat16] = ACTIONS(1186), - [anon_sym_float128] = ACTIONS(1186), - [anon_sym_iptr] = ACTIONS(1186), - [anon_sym_uptr] = ACTIONS(1186), - [anon_sym_isz] = ACTIONS(1186), - [anon_sym_usz] = ACTIONS(1186), - [anon_sym_anyfault] = ACTIONS(1186), - [anon_sym_any] = ACTIONS(1186), - [anon_sym_DOLLARtypeof] = ACTIONS(1186), - [anon_sym_DOLLARtypefrom] = ACTIONS(1186), - [anon_sym_DOLLARvatype] = ACTIONS(1186), - [anon_sym_DOLLARevaltype] = ACTIONS(1186), - [sym_real_literal] = ACTIONS(1188), + [sym_ident] = ACTIONS(1179), + [sym_integer_literal] = ACTIONS(1181), + [anon_sym_SQUOTE] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1181), + [anon_sym_BQUOTE] = ACTIONS(1181), + [sym_bytes_literal] = ACTIONS(1181), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1179), + [sym_at_ident] = ACTIONS(1181), + [sym_hash_ident] = ACTIONS(1181), + [sym_type_ident] = ACTIONS(1181), + [sym_ct_type_ident] = ACTIONS(1181), + [sym_const_ident] = ACTIONS(1179), + [sym_builtin] = ACTIONS(1181), + [anon_sym_LPAREN_LT] = ACTIONS(1183), + [anon_sym_EQ] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_AMP] = ACTIONS(1179), + [anon_sym_LBRACK] = ACTIONS(1183), + [anon_sym_static] = ACTIONS(1179), + [anon_sym_tlocal] = ACTIONS(1179), + [anon_sym_SEMI] = ACTIONS(1181), + [anon_sym_fn] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [anon_sym_DOT] = ACTIONS(1183), + [anon_sym_var] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_defer] = ACTIONS(1179), + [anon_sym_assert] = ACTIONS(1179), + [anon_sym_nextcase] = ACTIONS(1179), + [anon_sym_switch] = ACTIONS(1179), + [anon_sym_AMP_AMP] = ACTIONS(1181), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_foreach] = ACTIONS(1179), + [anon_sym_foreach_r] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_int] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1179), + [anon_sym_LT_LT] = ACTIONS(1185), + [anon_sym_GT_GT] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1179), + [anon_sym_asm] = ACTIONS(1179), + [anon_sym_DOLLARassert] = ACTIONS(1179), + [anon_sym_DOLLARerror] = ACTIONS(1179), + [anon_sym_DOLLARecho] = ACTIONS(1179), + [anon_sym_DOLLARif] = ACTIONS(1179), + [anon_sym_DOLLARendif] = ACTIONS(1179), + [anon_sym_DOLLARswitch] = ACTIONS(1179), + [anon_sym_DOLLARfor] = ACTIONS(1179), + [anon_sym_DOLLARforeach] = ACTIONS(1179), + [anon_sym_DOLLARalignof] = ACTIONS(1179), + [anon_sym_DOLLARextnameof] = ACTIONS(1179), + [anon_sym_DOLLARnameof] = ACTIONS(1179), + [anon_sym_DOLLARoffsetof] = ACTIONS(1179), + [anon_sym_DOLLARqnameof] = ACTIONS(1179), + [anon_sym_DOLLARvaconst] = ACTIONS(1179), + [anon_sym_DOLLARvaarg] = ACTIONS(1179), + [anon_sym_DOLLARvaref] = ACTIONS(1179), + [anon_sym_DOLLARvaexpr] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_DOLLARvacount] = ACTIONS(1179), + [anon_sym_DOLLARappend] = ACTIONS(1179), + [anon_sym_DOLLARconcat] = ACTIONS(1179), + [anon_sym_DOLLAReval] = ACTIONS(1179), + [anon_sym_DOLLARis_const] = ACTIONS(1179), + [anon_sym_DOLLARsizeof] = ACTIONS(1179), + [anon_sym_DOLLARstringify] = ACTIONS(1179), + [anon_sym_DOLLARand] = ACTIONS(1179), + [anon_sym_DOLLARdefined] = ACTIONS(1179), + [anon_sym_DOLLARembed] = ACTIONS(1179), + [anon_sym_DOLLARor] = ACTIONS(1179), + [anon_sym_DOLLARfeature] = ACTIONS(1179), + [anon_sym_DOLLARassignable] = ACTIONS(1179), + [anon_sym_PLUS_EQ] = ACTIONS(1183), + [anon_sym_DASH_EQ] = ACTIONS(1183), + [anon_sym_STAR_EQ] = ACTIONS(1183), + [anon_sym_SLASH_EQ] = ACTIONS(1183), + [anon_sym_PERCENT_EQ] = ACTIONS(1183), + [anon_sym_LT_LT_EQ] = ACTIONS(1183), + [anon_sym_GT_GT_EQ] = ACTIONS(1183), + [anon_sym_AMP_EQ] = ACTIONS(1183), + [anon_sym_CARET_EQ] = ACTIONS(1183), + [anon_sym_PIPE_EQ] = ACTIONS(1183), + [anon_sym_QMARK] = ACTIONS(1185), + [anon_sym_QMARK_COLON] = ACTIONS(1183), + [anon_sym_QMARK_QMARK] = ACTIONS(1183), + [anon_sym_BANG] = ACTIONS(1179), + [anon_sym_TILDE] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(1181), + [anon_sym_DASH_DASH] = ACTIONS(1181), + [anon_sym_SLASH] = ACTIONS(1185), + [anon_sym_PERCENT] = ACTIONS(1185), + [anon_sym_PIPE] = ACTIONS(1185), + [anon_sym_CARET] = ACTIONS(1185), + [anon_sym_EQ_EQ] = ACTIONS(1183), + [anon_sym_BANG_EQ] = ACTIONS(1183), + [anon_sym_GT] = ACTIONS(1185), + [anon_sym_GT_EQ] = ACTIONS(1183), + [anon_sym_LT_EQ] = ACTIONS(1183), + [anon_sym_LT] = ACTIONS(1185), + [anon_sym_PIPE_PIPE] = ACTIONS(1183), + [anon_sym_BANG_BANG] = ACTIONS(1183), + [anon_sym_typeid] = ACTIONS(1179), + [anon_sym_LBRACE_PIPE] = ACTIONS(1181), + [anon_sym_void] = ACTIONS(1179), + [anon_sym_bool] = ACTIONS(1179), + [anon_sym_char] = ACTIONS(1179), + [anon_sym_ichar] = ACTIONS(1179), + [anon_sym_short] = ACTIONS(1179), + [anon_sym_ushort] = ACTIONS(1179), + [anon_sym_uint] = ACTIONS(1179), + [anon_sym_long] = ACTIONS(1179), + [anon_sym_ulong] = ACTIONS(1179), + [anon_sym_int128] = ACTIONS(1179), + [anon_sym_uint128] = ACTIONS(1179), + [anon_sym_float] = ACTIONS(1179), + [anon_sym_double] = ACTIONS(1179), + [anon_sym_float16] = ACTIONS(1179), + [anon_sym_bfloat16] = ACTIONS(1179), + [anon_sym_float128] = ACTIONS(1179), + [anon_sym_iptr] = ACTIONS(1179), + [anon_sym_uptr] = ACTIONS(1179), + [anon_sym_isz] = ACTIONS(1179), + [anon_sym_usz] = ACTIONS(1179), + [anon_sym_anyfault] = ACTIONS(1179), + [anon_sym_any] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1179), + [anon_sym_DOLLARtypefrom] = ACTIONS(1179), + [anon_sym_DOLLARvatype] = ACTIONS(1179), + [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [sym_real_literal] = ACTIONS(1181), }, [153] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(153), [sym_doc_comment] = STATE(153), [sym_block_comment] = STATE(153), - [sym_ident] = ACTIONS(1186), - [sym_integer_literal] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym_DQUOTE] = ACTIONS(1188), - [anon_sym_BQUOTE] = ACTIONS(1188), - [sym_bytes_literal] = ACTIONS(1188), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1186), - [sym_at_ident] = ACTIONS(1188), - [sym_hash_ident] = ACTIONS(1188), - [sym_type_ident] = ACTIONS(1188), - [sym_ct_type_ident] = ACTIONS(1188), - [sym_const_ident] = ACTIONS(1186), - [sym_builtin] = ACTIONS(1188), - [anon_sym_LPAREN_LT] = ACTIONS(1190), - [anon_sym_EQ] = ACTIONS(1192), - [anon_sym_LPAREN] = ACTIONS(1186), - [anon_sym_AMP] = ACTIONS(1186), - [anon_sym_LBRACK] = ACTIONS(1190), - [anon_sym_static] = ACTIONS(1186), - [anon_sym_tlocal] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1188), - [anon_sym_fn] = ACTIONS(1186), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_const] = ACTIONS(1186), - [anon_sym_DOT] = ACTIONS(1190), - [anon_sym_var] = ACTIONS(1186), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1186), - [anon_sym_defer] = ACTIONS(1186), - [anon_sym_assert] = ACTIONS(1186), - [anon_sym_nextcase] = ACTIONS(1186), - [anon_sym_switch] = ACTIONS(1186), - [anon_sym_AMP_AMP] = ACTIONS(1188), - [anon_sym_if] = ACTIONS(1186), - [anon_sym_for] = ACTIONS(1186), - [anon_sym_foreach] = ACTIONS(1186), - [anon_sym_foreach_r] = ACTIONS(1186), - [anon_sym_while] = ACTIONS(1186), - [anon_sym_do] = ACTIONS(1186), - [anon_sym_int] = ACTIONS(1186), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_LT_LT] = ACTIONS(1192), - [anon_sym_GT_GT] = ACTIONS(1192), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_asm] = ACTIONS(1186), - [anon_sym_DOLLARassert] = ACTIONS(1186), - [anon_sym_DOLLARerror] = ACTIONS(1186), - [anon_sym_DOLLARecho] = ACTIONS(1186), - [anon_sym_DOLLARif] = ACTIONS(1186), - [anon_sym_DOLLARswitch] = ACTIONS(1186), - [anon_sym_DOLLARfor] = ACTIONS(1186), - [anon_sym_DOLLARendfor] = ACTIONS(1186), - [anon_sym_DOLLARforeach] = ACTIONS(1186), - [anon_sym_DOLLARalignof] = ACTIONS(1186), - [anon_sym_DOLLARextnameof] = ACTIONS(1186), - [anon_sym_DOLLARnameof] = ACTIONS(1186), - [anon_sym_DOLLARoffsetof] = ACTIONS(1186), - [anon_sym_DOLLARqnameof] = ACTIONS(1186), - [anon_sym_DOLLARvaconst] = ACTIONS(1186), - [anon_sym_DOLLARvaarg] = ACTIONS(1186), - [anon_sym_DOLLARvaref] = ACTIONS(1186), - [anon_sym_DOLLARvaexpr] = ACTIONS(1186), - [anon_sym_true] = ACTIONS(1186), - [anon_sym_false] = ACTIONS(1186), - [anon_sym_null] = ACTIONS(1186), - [anon_sym_DOLLARvacount] = ACTIONS(1186), - [anon_sym_DOLLARappend] = ACTIONS(1186), - [anon_sym_DOLLARconcat] = ACTIONS(1186), - [anon_sym_DOLLAReval] = ACTIONS(1186), - [anon_sym_DOLLARis_const] = ACTIONS(1186), - [anon_sym_DOLLARsizeof] = ACTIONS(1186), - [anon_sym_DOLLARstringify] = ACTIONS(1186), - [anon_sym_DOLLARand] = ACTIONS(1186), - [anon_sym_DOLLARdefined] = ACTIONS(1186), - [anon_sym_DOLLARembed] = ACTIONS(1186), - [anon_sym_DOLLARor] = ACTIONS(1186), - [anon_sym_DOLLARfeature] = ACTIONS(1186), - [anon_sym_DOLLARassignable] = ACTIONS(1186), - [anon_sym_PLUS_EQ] = ACTIONS(1190), - [anon_sym_DASH_EQ] = ACTIONS(1190), - [anon_sym_STAR_EQ] = ACTIONS(1190), - [anon_sym_SLASH_EQ] = ACTIONS(1190), - [anon_sym_PERCENT_EQ] = ACTIONS(1190), - [anon_sym_LT_LT_EQ] = ACTIONS(1190), - [anon_sym_GT_GT_EQ] = ACTIONS(1190), - [anon_sym_AMP_EQ] = ACTIONS(1190), - [anon_sym_CARET_EQ] = ACTIONS(1190), - [anon_sym_PIPE_EQ] = ACTIONS(1190), - [anon_sym_QMARK] = ACTIONS(1192), - [anon_sym_QMARK_COLON] = ACTIONS(1190), - [anon_sym_QMARK_QMARK] = ACTIONS(1190), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_PLUS_PLUS] = ACTIONS(1188), - [anon_sym_DASH_DASH] = ACTIONS(1188), - [anon_sym_SLASH] = ACTIONS(1192), - [anon_sym_PERCENT] = ACTIONS(1192), - [anon_sym_PIPE] = ACTIONS(1192), - [anon_sym_CARET] = ACTIONS(1192), - [anon_sym_EQ_EQ] = ACTIONS(1190), - [anon_sym_BANG_EQ] = ACTIONS(1190), - [anon_sym_GT] = ACTIONS(1192), - [anon_sym_GT_EQ] = ACTIONS(1190), - [anon_sym_LT_EQ] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(1192), - [anon_sym_PIPE_PIPE] = ACTIONS(1190), - [anon_sym_BANG_BANG] = ACTIONS(1190), - [anon_sym_typeid] = ACTIONS(1186), - [anon_sym_LBRACE_PIPE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1186), - [anon_sym_bool] = ACTIONS(1186), - [anon_sym_char] = ACTIONS(1186), - [anon_sym_ichar] = ACTIONS(1186), - [anon_sym_short] = ACTIONS(1186), - [anon_sym_ushort] = ACTIONS(1186), - [anon_sym_uint] = ACTIONS(1186), - [anon_sym_long] = ACTIONS(1186), - [anon_sym_ulong] = ACTIONS(1186), - [anon_sym_int128] = ACTIONS(1186), - [anon_sym_uint128] = ACTIONS(1186), - [anon_sym_float] = ACTIONS(1186), - [anon_sym_double] = ACTIONS(1186), - [anon_sym_float16] = ACTIONS(1186), - [anon_sym_bfloat16] = ACTIONS(1186), - [anon_sym_float128] = ACTIONS(1186), - [anon_sym_iptr] = ACTIONS(1186), - [anon_sym_uptr] = ACTIONS(1186), - [anon_sym_isz] = ACTIONS(1186), - [anon_sym_usz] = ACTIONS(1186), - [anon_sym_anyfault] = ACTIONS(1186), - [anon_sym_any] = ACTIONS(1186), - [anon_sym_DOLLARtypeof] = ACTIONS(1186), - [anon_sym_DOLLARtypefrom] = ACTIONS(1186), - [anon_sym_DOLLARvatype] = ACTIONS(1186), - [anon_sym_DOLLARevaltype] = ACTIONS(1186), - [sym_real_literal] = ACTIONS(1188), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1028), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_param_path_element] = STATE(1345), + [sym_param_path] = STATE(1419), + [sym_arg] = STATE(1452), + [sym__call_arg_list] = STATE(1891), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1347), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [aux_sym_param_path_repeat1] = STATE(1324), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(13), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(1187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(1189), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_DOT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_int] = ACTIONS(45), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_DOLLARvasplat] = ACTIONS(167), + [anon_sym_typeid] = ACTIONS(45), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(45), + [anon_sym_bool] = ACTIONS(45), + [anon_sym_char] = ACTIONS(45), + [anon_sym_ichar] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_ushort] = ACTIONS(45), + [anon_sym_uint] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_ulong] = ACTIONS(45), + [anon_sym_int128] = ACTIONS(45), + [anon_sym_uint128] = ACTIONS(45), + [anon_sym_float] = ACTIONS(45), + [anon_sym_double] = ACTIONS(45), + [anon_sym_float16] = ACTIONS(45), + [anon_sym_bfloat16] = ACTIONS(45), + [anon_sym_float128] = ACTIONS(45), + [anon_sym_iptr] = ACTIONS(45), + [anon_sym_uptr] = ACTIONS(45), + [anon_sym_isz] = ACTIONS(45), + [anon_sym_usz] = ACTIONS(45), + [anon_sym_anyfault] = ACTIONS(45), + [anon_sym_any] = ACTIONS(45), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, [154] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(154), [sym_doc_comment] = STATE(154), [sym_block_comment] = STATE(154), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1241), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_param_path_element] = STATE(1455), - [sym_param_path] = STATE(1629), - [sym_arg] = STATE(1597), - [sym__call_arg_list] = STATE(2186), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1447), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [aux_sym_param_path_repeat1] = STATE(1434), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1028), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_param_path_element] = STATE(1345), + [sym_param_path] = STATE(1419), + [sym_arg] = STATE(1472), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1347), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [aux_sym_param_path_repeat1] = STATE(1324), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_RPAREN] = ACTIONS(1194), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1196), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(91), - [anon_sym_SEMI] = ACTIONS(1198), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_DOT] = ACTIONS(105), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(1191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_DOT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_DOLLARvasplat] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_DOLLARvasplat] = ACTIONS(167), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -41351,822 +40397,664 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, [155] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(155), [sym_doc_comment] = STATE(155), [sym_block_comment] = STATE(155), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym__cond] = STATE(2216), - [sym_lambda_declaration] = STATE(1679), - [sym_var_decl] = STATE(1849), - [sym_catch_unwrap] = STATE(1981), - [sym_try_unwrap] = STATE(1766), - [sym__try_unwrap_chain] = STATE(1986), - [sym__decl_or_expr] = STATE(1765), - [sym__expr] = STATE(1242), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1761), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_SEMI] = ACTIONS(1200), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_var] = ACTIONS(107), - [anon_sym_try] = ACTIONS(1202), - [anon_sym_catch] = ACTIONS(1204), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym__cond] = STATE(2074), + [sym_lambda_declaration] = STATE(1480), + [sym_var_decl] = STATE(1607), + [sym_catch_unwrap] = STATE(1853), + [sym_try_unwrap] = STATE(1477), + [sym__try_unwrap_chain] = STATE(1856), + [sym__decl_or_expr] = STATE(1481), + [sym__expr] = STATE(1047), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1383), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_SEMI] = ACTIONS(1195), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_var] = ACTIONS(105), + [anon_sym_try] = ACTIONS(1197), + [anon_sym_catch] = ACTIONS(1199), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [156] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(156), [sym_doc_comment] = STATE(156), [sym_block_comment] = STATE(156), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym__cond] = STATE(2211), - [sym_lambda_declaration] = STATE(1679), - [sym_var_decl] = STATE(1849), - [sym_catch_unwrap] = STATE(1981), - [sym_try_unwrap] = STATE(1766), - [sym__try_unwrap_chain] = STATE(1986), - [sym__decl_or_expr] = STATE(1765), - [sym__expr] = STATE(1242), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1761), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_SEMI] = ACTIONS(1206), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_var] = ACTIONS(107), - [anon_sym_try] = ACTIONS(1202), - [anon_sym_catch] = ACTIONS(1204), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym__cond] = STATE(2071), + [sym_lambda_declaration] = STATE(1480), + [sym_var_decl] = STATE(1607), + [sym_catch_unwrap] = STATE(1853), + [sym_try_unwrap] = STATE(1477), + [sym__try_unwrap_chain] = STATE(1856), + [sym__decl_or_expr] = STATE(1481), + [sym__expr] = STATE(1047), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1383), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_SEMI] = ACTIONS(1201), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_var] = ACTIONS(105), + [anon_sym_try] = ACTIONS(1197), + [anon_sym_catch] = ACTIONS(1199), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [157] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(157), [sym_doc_comment] = STATE(157), [sym_block_comment] = STATE(157), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym__cond] = STATE(2311), - [sym_lambda_declaration] = STATE(1679), - [sym_var_decl] = STATE(1849), - [sym_catch_unwrap] = STATE(1981), - [sym_try_unwrap] = STATE(1766), - [sym__try_unwrap_chain] = STATE(1986), - [sym__decl_or_expr] = STATE(1765), - [sym__expr] = STATE(1242), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1761), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_SEMI] = ACTIONS(1208), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_var] = ACTIONS(107), - [anon_sym_try] = ACTIONS(1202), - [anon_sym_catch] = ACTIONS(1204), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym__cond] = STATE(2000), + [sym_lambda_declaration] = STATE(1480), + [sym_var_decl] = STATE(1607), + [sym_catch_unwrap] = STATE(1853), + [sym_try_unwrap] = STATE(1477), + [sym__try_unwrap_chain] = STATE(1856), + [sym__decl_or_expr] = STATE(1481), + [sym__expr] = STATE(1047), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1383), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_SEMI] = ACTIONS(1203), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_var] = ACTIONS(105), + [anon_sym_try] = ACTIONS(1197), + [anon_sym_catch] = ACTIONS(1199), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [158] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(158), [sym_doc_comment] = STATE(158), [sym_block_comment] = STATE(158), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym__cond] = STATE(2184), - [sym_lambda_declaration] = STATE(1679), - [sym_var_decl] = STATE(1849), - [sym_catch_unwrap] = STATE(1981), - [sym_try_unwrap] = STATE(1766), - [sym__try_unwrap_chain] = STATE(1986), - [sym__decl_or_expr] = STATE(1765), - [sym__expr] = STATE(1242), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1761), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_SEMI] = ACTIONS(1210), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_var] = ACTIONS(107), - [anon_sym_try] = ACTIONS(1202), - [anon_sym_catch] = ACTIONS(1204), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym__cond] = STATE(2138), + [sym_lambda_declaration] = STATE(1480), + [sym_var_decl] = STATE(1607), + [sym_catch_unwrap] = STATE(1853), + [sym_try_unwrap] = STATE(1477), + [sym__try_unwrap_chain] = STATE(1856), + [sym__decl_or_expr] = STATE(1481), + [sym__expr] = STATE(1047), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1383), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_SEMI] = ACTIONS(1205), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_var] = ACTIONS(105), + [anon_sym_try] = ACTIONS(1197), + [anon_sym_catch] = ACTIONS(1199), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [159] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(159), [sym_doc_comment] = STATE(159), [sym_block_comment] = STATE(159), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym__cond] = STATE(2210), - [sym_lambda_declaration] = STATE(1645), - [sym_var_decl] = STATE(1849), - [sym_catch_unwrap] = STATE(1981), - [sym_try_unwrap] = STATE(1691), - [sym__try_unwrap_chain] = STATE(1986), - [sym__decl_or_expr] = STATE(1872), - [sym__expr] = STATE(1247), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1846), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_var] = ACTIONS(1214), - [anon_sym_try] = ACTIONS(1216), - [anon_sym_catch] = ACTIONS(1218), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), - }, - [160] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(160), - [sym_doc_comment] = STATE(160), - [sym_block_comment] = STATE(160), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1241), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_param_path_element] = STATE(1455), - [sym_param_path] = STATE(1629), - [sym_arg] = STATE(1667), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1447), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [aux_sym_param_path_repeat1] = STATE(1434), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1028), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_param_path_element] = STATE(1345), + [sym_param_path] = STATE(1419), + [sym_arg] = STATE(1472), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1347), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [aux_sym_param_path_repeat1] = STATE(1324), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_RPAREN] = ACTIONS(1220), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1196), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(91), - [anon_sym_SEMI] = ACTIONS(1222), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_DOT] = ACTIONS(105), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(1207), + [anon_sym_DOT_DOT_DOT] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(1209), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_DOT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_DOLLARvasplat] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_DOLLARvasplat] = ACTIONS(167), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -42189,262 +41077,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), + }, + [160] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(160), + [sym_doc_comment] = STATE(160), + [sym_block_comment] = STATE(160), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym__cond] = STATE(1940), + [sym_lambda_declaration] = STATE(1480), + [sym_var_decl] = STATE(1607), + [sym_catch_unwrap] = STATE(1853), + [sym_try_unwrap] = STATE(1477), + [sym__try_unwrap_chain] = STATE(1856), + [sym__decl_or_expr] = STATE(1481), + [sym__expr] = STATE(1047), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1383), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_var] = ACTIONS(105), + [anon_sym_try] = ACTIONS(1197), + [anon_sym_catch] = ACTIONS(1199), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [161] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(161), [sym_doc_comment] = STATE(161), [sym_block_comment] = STATE(161), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym__cond] = STATE(2225), - [sym_lambda_declaration] = STATE(1645), - [sym_var_decl] = STATE(1849), - [sym_catch_unwrap] = STATE(1981), - [sym_try_unwrap] = STATE(1691), - [sym__try_unwrap_chain] = STATE(1986), - [sym__decl_or_expr] = STATE(1872), - [sym__expr] = STATE(1247), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1846), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_var] = ACTIONS(1214), - [anon_sym_try] = ACTIONS(1216), - [anon_sym_catch] = ACTIONS(1218), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), - }, - [162] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(162), - [sym_doc_comment] = STATE(162), - [sym_block_comment] = STATE(162), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1241), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_param_path_element] = STATE(1455), - [sym_param_path] = STATE(1629), - [sym_arg] = STATE(1667), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1447), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [aux_sym_param_path_repeat1] = STATE(1434), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1028), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_param_path_element] = STATE(1345), + [sym_param_path] = STATE(1419), + [sym_arg] = STATE(1684), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1347), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [aux_sym_param_path_repeat1] = STATE(1324), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_RPAREN] = ACTIONS(1224), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1196), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(91), - [anon_sym_SEMI] = ACTIONS(1226), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_DOT] = ACTIONS(105), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_DOT_DOT_DOT] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_RBRACE] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_DOLLARvasplat] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_DOLLARvasplat] = ACTIONS(167), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -42467,122 +41347,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [163] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(163), - [sym_doc_comment] = STATE(163), - [sym_block_comment] = STATE(163), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1245), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_param_path_element] = STATE(1455), - [sym_param_path] = STATE(1784), - [sym_arg] = STATE(1783), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1447), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [aux_sym_param_path_repeat1] = STATE(1434), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [162] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(162), + [sym_doc_comment] = STATE(162), + [sym_block_comment] = STATE(162), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1028), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_param_path_element] = STATE(1345), + [sym_param_path] = STATE(1419), + [sym_arg] = STATE(1472), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1347), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [aux_sym_param_path_repeat1] = STATE(1324), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_DOT_DOT_DOT] = ACTIONS(87), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(91), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_RBRACE] = ACTIONS(1228), - [anon_sym_DOT] = ACTIONS(105), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_DOT_DOT_DOT] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_RBRACE] = ACTIONS(1213), + [anon_sym_DOT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_DOLLARvasplat] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_DOLLARvasplat] = ACTIONS(167), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -42605,260 +41482,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [164] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(164), - [sym_doc_comment] = STATE(164), - [sym_block_comment] = STATE(164), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_lambda_declaration] = STATE(1679), - [sym_var_decl] = STATE(1849), - [sym_catch_unwrap] = STATE(1929), - [sym_try_unwrap] = STATE(1766), - [sym__try_unwrap_chain] = STATE(1925), - [sym__decl_or_expr] = STATE(1718), - [sym__expr] = STATE(1242), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1761), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_var] = ACTIONS(107), - [anon_sym_try] = ACTIONS(1202), - [anon_sym_catch] = ACTIONS(1204), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), - }, - [165] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(165), - [sym_doc_comment] = STATE(165), - [sym_block_comment] = STATE(165), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1245), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_param_path_element] = STATE(1455), - [sym_param_path] = STATE(1784), - [sym_arg] = STATE(1750), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1447), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [aux_sym_param_path_repeat1] = STATE(1434), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [163] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(163), + [sym_doc_comment] = STATE(163), + [sym_block_comment] = STATE(163), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1028), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_param_path_element] = STATE(1345), + [sym_param_path] = STATE(1419), + [sym_arg] = STATE(1472), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1347), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [aux_sym_param_path_repeat1] = STATE(1324), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_DOT_DOT_DOT] = ACTIONS(87), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(91), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_RBRACE] = ACTIONS(1228), - [anon_sym_DOT] = ACTIONS(105), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_DOT_DOT_DOT] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_RBRACE] = ACTIONS(1215), + [anon_sym_DOT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_DOLLARvasplat] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_DOLLARvasplat] = ACTIONS(167), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -42881,122 +41617,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [166] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(166), - [sym_doc_comment] = STATE(166), - [sym_block_comment] = STATE(166), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1245), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_param_path_element] = STATE(1455), - [sym_param_path] = STATE(1784), - [sym_arg] = STATE(1667), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1447), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [aux_sym_param_path_repeat1] = STATE(1434), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [164] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(164), + [sym_doc_comment] = STATE(164), + [sym_block_comment] = STATE(164), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1028), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_param_path_element] = STATE(1345), + [sym_param_path] = STATE(1419), + [sym_arg] = STATE(1472), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1347), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [aux_sym_param_path_repeat1] = STATE(1324), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_DOT_DOT_DOT] = ACTIONS(87), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(91), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_RBRACE] = ACTIONS(1230), - [anon_sym_DOT] = ACTIONS(105), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_DOT_DOT_DOT] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_RBRACE] = ACTIONS(1217), + [anon_sym_DOT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_DOLLARvasplat] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_DOLLARvasplat] = ACTIONS(167), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -43019,260 +41752,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), - }, - [167] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(167), - [sym_doc_comment] = STATE(167), - [sym_block_comment] = STATE(167), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_lambda_declaration] = STATE(1679), - [sym_var_decl] = STATE(1849), - [sym_catch_unwrap] = STATE(1889), - [sym_try_unwrap] = STATE(1766), - [sym__try_unwrap_chain] = STATE(1892), - [sym__decl_or_expr] = STATE(1718), - [sym__expr] = STATE(1242), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1761), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_var] = ACTIONS(107), - [anon_sym_try] = ACTIONS(1202), - [anon_sym_catch] = ACTIONS(1204), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [168] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(168), - [sym_doc_comment] = STATE(168), - [sym_block_comment] = STATE(168), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1245), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_param_path_element] = STATE(1455), - [sym_param_path] = STATE(1784), - [sym_arg] = STATE(1667), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1447), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [aux_sym_param_path_repeat1] = STATE(1434), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [165] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(165), + [sym_doc_comment] = STATE(165), + [sym_block_comment] = STATE(165), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1028), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_param_path_element] = STATE(1345), + [sym_param_path] = STATE(1419), + [sym_arg] = STATE(1472), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1347), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [aux_sym_param_path_repeat1] = STATE(1324), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_DOT_DOT_DOT] = ACTIONS(87), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(91), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_RBRACE] = ACTIONS(1232), - [anon_sym_DOT] = ACTIONS(105), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_DOT_DOT_DOT] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_RBRACE] = ACTIONS(1219), + [anon_sym_DOT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_DOLLARvasplat] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_DOLLARvasplat] = ACTIONS(167), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -43295,122 +41887,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [169] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(169), - [sym_doc_comment] = STATE(169), - [sym_block_comment] = STATE(169), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1245), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_param_path_element] = STATE(1455), - [sym_param_path] = STATE(1784), - [sym_arg] = STATE(1667), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1447), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [aux_sym_param_path_repeat1] = STATE(1434), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [166] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(166), + [sym_doc_comment] = STATE(166), + [sym_block_comment] = STATE(166), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym__cond] = STATE(2137), + [sym_lambda_declaration] = STATE(1480), + [sym_var_decl] = STATE(1607), + [sym_catch_unwrap] = STATE(1853), + [sym_try_unwrap] = STATE(1477), + [sym__try_unwrap_chain] = STATE(1856), + [sym__decl_or_expr] = STATE(1481), + [sym__expr] = STATE(1047), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1383), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_var] = ACTIONS(105), + [anon_sym_try] = ACTIONS(1197), + [anon_sym_catch] = ACTIONS(1199), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), + }, + [167] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(167), + [sym_doc_comment] = STATE(167), + [sym_block_comment] = STATE(167), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1028), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_param_path_element] = STATE(1345), + [sym_param_path] = STATE(1419), + [sym_arg] = STATE(1591), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1347), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [aux_sym_param_path_repeat1] = STATE(1324), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_DOT_DOT_DOT] = ACTIONS(87), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(91), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_RBRACE] = ACTIONS(1234), - [anon_sym_DOT] = ACTIONS(105), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_DOT_DOT_DOT] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_RBRACE] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_DOLLARvasplat] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_DOLLARvasplat] = ACTIONS(167), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -43433,398 +42157,252 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [170] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(170), - [sym_doc_comment] = STATE(170), - [sym_block_comment] = STATE(170), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_lambda_declaration] = STATE(1645), - [sym_var_decl] = STATE(1849), - [sym_catch_unwrap] = STATE(1929), - [sym_try_unwrap] = STATE(1691), - [sym__try_unwrap_chain] = STATE(1925), - [sym__decl_or_expr] = STATE(1718), - [sym__expr] = STATE(1247), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1846), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_var] = ACTIONS(1214), - [anon_sym_try] = ACTIONS(1216), - [anon_sym_catch] = ACTIONS(1218), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), - }, - [171] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(171), - [sym_doc_comment] = STATE(171), - [sym_block_comment] = STATE(171), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_lambda_declaration] = STATE(1645), - [sym_var_decl] = STATE(1849), - [sym_catch_unwrap] = STATE(1889), - [sym_try_unwrap] = STATE(1691), - [sym__try_unwrap_chain] = STATE(1892), - [sym__decl_or_expr] = STATE(1718), - [sym__expr] = STATE(1247), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1846), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_var] = ACTIONS(1214), - [anon_sym_try] = ACTIONS(1216), - [anon_sym_catch] = ACTIONS(1218), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [168] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(168), + [sym_doc_comment] = STATE(168), + [sym_block_comment] = STATE(168), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_lambda_declaration] = STATE(1480), + [sym_var_decl] = STATE(1607), + [sym_catch_unwrap] = STATE(1776), + [sym_try_unwrap] = STATE(1477), + [sym__try_unwrap_chain] = STATE(1777), + [sym__decl_or_expr] = STATE(1666), + [sym__expr] = STATE(1047), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1383), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_var] = ACTIONS(105), + [anon_sym_try] = ACTIONS(1197), + [anon_sym_catch] = ACTIONS(1199), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, - [172] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(172), - [sym_doc_comment] = STATE(172), - [sym_block_comment] = STATE(172), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1245), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_param_path_element] = STATE(1455), - [sym_param_path] = STATE(1784), - [sym_arg] = STATE(1667), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1447), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [aux_sym_param_path_repeat1] = STATE(1434), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [169] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(169), + [sym_doc_comment] = STATE(169), + [sym_block_comment] = STATE(169), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1028), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_param_path_element] = STATE(1345), + [sym_param_path] = STATE(1419), + [sym_arg] = STATE(1843), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1347), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [aux_sym_param_path_repeat1] = STATE(1324), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_DOT_DOT_DOT] = ACTIONS(87), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(91), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_RBRACE] = ACTIONS(1236), - [anon_sym_DOT] = ACTIONS(105), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_DOT_DOT_DOT] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1221), + [anon_sym_DOT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_DOLLARvasplat] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_DOLLARvasplat] = ACTIONS(167), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -43847,121 +42425,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [173] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(173), - [sym_doc_comment] = STATE(173), - [sym_block_comment] = STATE(173), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1245), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_param_path_element] = STATE(1455), - [sym_param_path] = STATE(1784), - [sym_arg] = STATE(2026), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1447), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [aux_sym_param_path_repeat1] = STATE(1434), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [170] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(170), + [sym_doc_comment] = STATE(170), + [sym_block_comment] = STATE(170), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1028), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_param_path_element] = STATE(1345), + [sym_param_path] = STATE(1419), + [sym_arg] = STATE(1472), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1347), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [aux_sym_param_path_repeat1] = STATE(1324), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_DOT_DOT_DOT] = ACTIONS(87), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(91), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_DOT] = ACTIONS(105), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_DOT_DOT_DOT] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_DOT] = ACTIONS(103), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_DOLLARvasplat] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_DOLLARvasplat] = ACTIONS(167), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -43984,121 +42559,250 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [174] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(174), - [sym_doc_comment] = STATE(174), - [sym_block_comment] = STATE(174), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1245), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_param_path_element] = STATE(1455), - [sym_param_path] = STATE(1784), - [sym_arg] = STATE(1667), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1447), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [aux_sym_param_path_repeat1] = STATE(1434), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [171] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(171), + [sym_doc_comment] = STATE(171), + [sym_block_comment] = STATE(171), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_lambda_declaration] = STATE(1480), + [sym_var_decl] = STATE(1607), + [sym_catch_unwrap] = STATE(1884), + [sym_try_unwrap] = STATE(1477), + [sym__try_unwrap_chain] = STATE(1882), + [sym__decl_or_expr] = STATE(1666), + [sym__expr] = STATE(1047), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1383), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_var] = ACTIONS(105), + [anon_sym_try] = ACTIONS(1197), + [anon_sym_catch] = ACTIONS(1199), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), + }, + [172] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(172), + [sym_doc_comment] = STATE(172), + [sym_block_comment] = STATE(172), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1020), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym__range_loc] = STATE(1846), + [sym_range_expr] = STATE(1927), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_DOT_DOT_DOT] = ACTIONS(87), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(91), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_DOT] = ACTIONS(105), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(1223), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_COLON] = ACTIONS(1225), + [anon_sym_DOT_DOT] = ACTIONS(1227), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_DOLLARvasplat] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_CARET] = ACTIONS(1229), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -44121,526 +42825,901 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), + }, + [173] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(173), + [sym_doc_comment] = STATE(173), + [sym_block_comment] = STATE(173), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_lambda_declaration] = STATE(1480), + [sym_var_decl] = STATE(1607), + [sym__decl_or_expr] = STATE(1465), + [sym_comma_decl_or_expr] = STATE(1926), + [sym__expr] = STATE(1047), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1383), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(1231), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_var] = ACTIONS(105), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), + }, + [174] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(174), + [sym_doc_comment] = STATE(174), + [sym_block_comment] = STATE(174), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_lambda_declaration] = STATE(1480), + [sym_var_decl] = STATE(1607), + [sym__decl_or_expr] = STATE(1465), + [sym_comma_decl_or_expr] = STATE(1897), + [sym__expr] = STATE(1047), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1383), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(1233), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_var] = ACTIONS(105), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [175] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(175), [sym_doc_comment] = STATE(175), [sym_block_comment] = STATE(175), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1241), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_param_path_element] = STATE(1455), - [sym_param_path] = STATE(1629), - [sym_arg] = STATE(1667), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1447), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [aux_sym_param_path_repeat1] = STATE(1434), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1196), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(91), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_DOT] = ACTIONS(105), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_DOLLARvasplat] = ACTIONS(169), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_lambda_declaration] = STATE(1480), + [sym_var_decl] = STATE(1607), + [sym__decl_or_expr] = STATE(1465), + [sym_comma_decl_or_expr] = STATE(2114), + [sym__expr] = STATE(1047), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1383), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(1235), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_var] = ACTIONS(105), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [176] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(176), [sym_doc_comment] = STATE(176), [sym_block_comment] = STATE(176), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_lambda_declaration] = STATE(1645), - [sym_var_decl] = STATE(1849), - [sym__decl_or_expr] = STATE(1764), - [sym_comma_decl_or_expr] = STATE(2130), - [sym__expr] = STATE(1247), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1846), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_RPAREN] = ACTIONS(1240), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_var] = ACTIONS(1214), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_lambda_declaration] = STATE(1480), + [sym_var_decl] = STATE(1607), + [sym__decl_or_expr] = STATE(1465), + [sym_comma_decl_or_expr] = STATE(2103), + [sym__expr] = STATE(1047), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1383), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(1237), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_var] = ACTIONS(105), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [177] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(177), [sym_doc_comment] = STATE(177), [sym_block_comment] = STATE(177), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_lambda_declaration] = STATE(1645), - [sym_var_decl] = STATE(1849), - [sym__decl_or_expr] = STATE(1764), - [sym_comma_decl_or_expr] = STATE(2338), - [sym__expr] = STATE(1247), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1846), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_RPAREN] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_var] = ACTIONS(1214), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_lambda_declaration] = STATE(1480), + [sym_var_decl] = STATE(1607), + [sym__decl_or_expr] = STATE(1465), + [sym_comma_decl_or_expr] = STATE(2003), + [sym__expr] = STATE(1047), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1383), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(1239), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_var] = ACTIONS(105), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [178] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(178), [sym_doc_comment] = STATE(178), [sym_block_comment] = STATE(178), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1232), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym__range_loc] = STATE(1956), - [sym_range_expr] = STATE(2246), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_lambda_declaration] = STATE(1480), + [sym_var_decl] = STATE(1607), + [sym__decl_or_expr] = STATE(1465), + [sym_comma_decl_or_expr] = STATE(2101), + [sym__expr] = STATE(1047), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1383), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(1241), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_var] = ACTIONS(105), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), + }, + [179] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(179), + [sym_doc_comment] = STATE(179), + [sym_block_comment] = STATE(179), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1020), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym__range_loc] = STATE(1685), + [sym_range_expr] = STATE(2061), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_RPAREN] = ACTIONS(1244), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_COLON] = ACTIONS(1246), - [anon_sym_DOT_DOT] = ACTIONS(1248), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_COLON] = ACTIONS(1225), + [anon_sym_DOT_DOT] = ACTIONS(1227), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_CARET] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_CARET] = ACTIONS(1229), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -44663,1198 +43742,1028 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), - }, - [179] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(179), - [sym_doc_comment] = STATE(179), - [sym_block_comment] = STATE(179), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_lambda_declaration] = STATE(1645), - [sym_var_decl] = STATE(1849), - [sym__decl_or_expr] = STATE(1764), - [sym_comma_decl_or_expr] = STATE(2332), - [sym__expr] = STATE(1247), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1846), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_RPAREN] = ACTIONS(1252), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_var] = ACTIONS(1214), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, [180] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(180), [sym_doc_comment] = STATE(180), [sym_block_comment] = STATE(180), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_lambda_declaration] = STATE(1645), - [sym_var_decl] = STATE(1849), - [sym__decl_or_expr] = STATE(1764), - [sym_comma_decl_or_expr] = STATE(2141), - [sym__expr] = STATE(1247), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1846), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_RPAREN] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_var] = ACTIONS(1214), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_lambda_declaration] = STATE(1480), + [sym_var_decl] = STATE(1607), + [sym__decl_or_expr] = STATE(1465), + [sym_comma_decl_or_expr] = STATE(2083), + [sym__expr] = STATE(1047), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1383), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_SEMI] = ACTIONS(1243), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_var] = ACTIONS(105), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [181] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(181), [sym_doc_comment] = STATE(181), [sym_block_comment] = STATE(181), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_lambda_declaration] = STATE(1645), - [sym_var_decl] = STATE(1849), - [sym__decl_or_expr] = STATE(1764), - [sym_comma_decl_or_expr] = STATE(2133), - [sym__expr] = STATE(1247), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1846), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_RPAREN] = ACTIONS(1256), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_var] = ACTIONS(1214), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_lambda_declaration] = STATE(1480), + [sym_var_decl] = STATE(1607), + [sym__decl_or_expr] = STATE(1465), + [sym_comma_decl_or_expr] = STATE(2098), + [sym__expr] = STATE(1047), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1383), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(1245), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_var] = ACTIONS(105), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [182] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(182), [sym_doc_comment] = STATE(182), [sym_block_comment] = STATE(182), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_lambda_declaration] = STATE(1679), - [sym_var_decl] = STATE(1849), - [sym__decl_or_expr] = STATE(1834), - [sym_comma_decl_or_expr] = STATE(2353), - [sym__expr] = STATE(1242), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1761), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_SEMI] = ACTIONS(1258), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_var] = ACTIONS(107), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_lambda_declaration] = STATE(1480), + [sym_var_decl] = STATE(1607), + [sym__decl_or_expr] = STATE(1465), + [sym_comma_decl_or_expr] = STATE(1925), + [sym__expr] = STATE(1047), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1383), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(1247), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_var] = ACTIONS(105), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [183] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(183), [sym_doc_comment] = STATE(183), [sym_block_comment] = STATE(183), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_lambda_declaration] = STATE(1679), - [sym_var_decl] = STATE(1849), - [sym__decl_or_expr] = STATE(1834), - [sym_comma_decl_or_expr] = STATE(2157), - [sym__expr] = STATE(1242), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1761), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_SEMI] = ACTIONS(1260), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_var] = ACTIONS(107), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_lambda_declaration] = STATE(1480), + [sym_var_decl] = STATE(1607), + [sym__decl_or_expr] = STATE(1465), + [sym_comma_decl_or_expr] = STATE(2206), + [sym__expr] = STATE(1047), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1383), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_SEMI] = ACTIONS(1249), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_var] = ACTIONS(105), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [184] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(184), [sym_doc_comment] = STATE(184), [sym_block_comment] = STATE(184), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_lambda_declaration] = STATE(1645), - [sym_var_decl] = STATE(1849), - [sym__decl_or_expr] = STATE(1764), - [sym_comma_decl_or_expr] = STATE(2295), - [sym__expr] = STATE(1247), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1846), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_RPAREN] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_var] = ACTIONS(1214), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym__attribute_operator_expr] = STATE(1818), + [sym_attr_param] = STATE(1630), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1121), + [sym__constant_expr] = STATE(1817), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(1061), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(1058), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(1059), + [sym_lambda_expr] = STATE(1059), + [sym_elvis_orelse_expr] = STATE(1059), + [sym_optional_expr] = STATE(1059), + [sym_cast_expr] = STATE(1059), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(1059), + [sym_binary_expr] = STATE(1059), + [sym_call_expr] = STATE(1059), + [sym_update_expr] = STATE(1059), + [sym_rethrow_expr] = STATE(1059), + [sym_trailing_generic_expr] = STATE(1059), + [sym_subscript_expr] = STATE(1059), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(13), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(1251), + [anon_sym_LBRACK] = ACTIONS(1253), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_int] = ACTIONS(45), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(45), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(45), + [anon_sym_bool] = ACTIONS(45), + [anon_sym_char] = ACTIONS(45), + [anon_sym_ichar] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_ushort] = ACTIONS(45), + [anon_sym_uint] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_ulong] = ACTIONS(45), + [anon_sym_int128] = ACTIONS(45), + [anon_sym_uint128] = ACTIONS(45), + [anon_sym_float] = ACTIONS(45), + [anon_sym_double] = ACTIONS(45), + [anon_sym_float16] = ACTIONS(45), + [anon_sym_bfloat16] = ACTIONS(45), + [anon_sym_float128] = ACTIONS(45), + [anon_sym_iptr] = ACTIONS(45), + [anon_sym_uptr] = ACTIONS(45), + [anon_sym_isz] = ACTIONS(45), + [anon_sym_usz] = ACTIONS(45), + [anon_sym_anyfault] = ACTIONS(45), + [anon_sym_any] = ACTIONS(45), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, [185] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(185), [sym_doc_comment] = STATE(185), [sym_block_comment] = STATE(185), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_lambda_declaration] = STATE(1645), - [sym_var_decl] = STATE(1849), - [sym__decl_or_expr] = STATE(1764), - [sym_comma_decl_or_expr] = STATE(2072), - [sym__expr] = STATE(1247), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1846), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_RPAREN] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_var] = ACTIONS(1214), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym__attribute_operator_expr] = STATE(1818), + [sym_attr_param] = STATE(1889), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1121), + [sym__constant_expr] = STATE(1817), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(1061), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(1058), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(1059), + [sym_lambda_expr] = STATE(1059), + [sym_elvis_orelse_expr] = STATE(1059), + [sym_optional_expr] = STATE(1059), + [sym_cast_expr] = STATE(1059), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(1059), + [sym_binary_expr] = STATE(1059), + [sym_call_expr] = STATE(1059), + [sym_update_expr] = STATE(1059), + [sym_rethrow_expr] = STATE(1059), + [sym_trailing_generic_expr] = STATE(1059), + [sym_subscript_expr] = STATE(1059), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(13), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(1251), + [anon_sym_LBRACK] = ACTIONS(1253), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_int] = ACTIONS(45), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(45), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(45), + [anon_sym_bool] = ACTIONS(45), + [anon_sym_char] = ACTIONS(45), + [anon_sym_ichar] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_ushort] = ACTIONS(45), + [anon_sym_uint] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_ulong] = ACTIONS(45), + [anon_sym_int128] = ACTIONS(45), + [anon_sym_uint128] = ACTIONS(45), + [anon_sym_float] = ACTIONS(45), + [anon_sym_double] = ACTIONS(45), + [anon_sym_float16] = ACTIONS(45), + [anon_sym_bfloat16] = ACTIONS(45), + [anon_sym_float128] = ACTIONS(45), + [anon_sym_iptr] = ACTIONS(45), + [anon_sym_uptr] = ACTIONS(45), + [anon_sym_isz] = ACTIONS(45), + [anon_sym_usz] = ACTIONS(45), + [anon_sym_anyfault] = ACTIONS(45), + [anon_sym_any] = ACTIONS(45), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, [186] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(186), [sym_doc_comment] = STATE(186), [sym_block_comment] = STATE(186), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_lambda_declaration] = STATE(1645), - [sym_var_decl] = STATE(1849), - [sym__decl_or_expr] = STATE(1764), - [sym_comma_decl_or_expr] = STATE(2318), - [sym__expr] = STATE(1247), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1846), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_RPAREN] = ACTIONS(1266), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_var] = ACTIONS(1214), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1020), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym__range_loc] = STATE(1733), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(13), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(1255), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_RBRACK] = ACTIONS(1255), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_int] = ACTIONS(45), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_typeid] = ACTIONS(45), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(45), + [anon_sym_bool] = ACTIONS(45), + [anon_sym_char] = ACTIONS(45), + [anon_sym_ichar] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_ushort] = ACTIONS(45), + [anon_sym_uint] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_ulong] = ACTIONS(45), + [anon_sym_int128] = ACTIONS(45), + [anon_sym_uint128] = ACTIONS(45), + [anon_sym_float] = ACTIONS(45), + [anon_sym_double] = ACTIONS(45), + [anon_sym_float16] = ACTIONS(45), + [anon_sym_bfloat16] = ACTIONS(45), + [anon_sym_float128] = ACTIONS(45), + [anon_sym_iptr] = ACTIONS(45), + [anon_sym_uptr] = ACTIONS(45), + [anon_sym_isz] = ACTIONS(45), + [anon_sym_usz] = ACTIONS(45), + [anon_sym_anyfault] = ACTIONS(45), + [anon_sym_any] = ACTIONS(45), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, [187] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(187), [sym_doc_comment] = STATE(187), [sym_block_comment] = STATE(187), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1232), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym__range_loc] = STATE(1843), - [sym_range_expr] = STATE(2191), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1020), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym__range_loc] = STATE(1731), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_COLON] = ACTIONS(1268), - [anon_sym_DOT_DOT] = ACTIONS(1270), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(1255), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_RBRACK] = ACTIONS(1255), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_CARET] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_CARET] = ACTIONS(1229), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -45877,117 +44786,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, [188] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(188), [sym_doc_comment] = STATE(188), [sym_block_comment] = STATE(188), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym_label_target] = STATE(2350), - [sym__expr] = STATE(1294), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1457), - [sym__type_optional] = STATE(2347), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1020), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym__range_loc] = STATE(1721), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(1272), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_SEMI] = ACTIONS(1274), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_default] = ACTIONS(1276), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_RBRACK] = ACTIONS(1257), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_CARET] = ACTIONS(1229), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -46010,117 +44916,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, [189] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(189), [sym_doc_comment] = STATE(189), [sym_block_comment] = STATE(189), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym_label_target] = STATE(2364), - [sym__expr] = STATE(1280), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1457), - [sym__type_optional] = STATE(2268), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym_label_target] = STATE(2222), + [sym__expr] = STATE(1118), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1490), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(1272), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_SEMI] = ACTIONS(1278), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(1259), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_SEMI] = ACTIONS(1261), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_default] = ACTIONS(1263), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -46143,117 +45045,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, [190] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(190), [sym_doc_comment] = STATE(190), [sym_block_comment] = STATE(190), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym_label_target] = STATE(2151), - [sym__expr] = STATE(1274), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1457), - [sym__type_optional] = STATE(2153), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym_label_target] = STATE(2210), + [sym__expr] = STATE(1080), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1500), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(1272), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_SEMI] = ACTIONS(1282), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_default] = ACTIONS(1284), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(1259), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_SEMI] = ACTIONS(1265), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -46276,117 +45174,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, [191] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(191), [sym_doc_comment] = STATE(191), [sym_block_comment] = STATE(191), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym_label_target] = STATE(2368), - [sym__expr] = STATE(1254), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1457), - [sym__type_optional] = STATE(2143), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym_label_target] = STATE(2203), + [sym__expr] = STATE(1079), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1474), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(1272), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_SEMI] = ACTIONS(1286), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(1259), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_SEMI] = ACTIONS(1269), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_default] = ACTIONS(1271), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -46409,117 +45303,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, [192] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(192), [sym_doc_comment] = STATE(192), [sym_block_comment] = STATE(192), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym_label_target] = STATE(2360), - [sym__expr] = STATE(1287), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1457), - [sym__type_optional] = STATE(2358), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1547), + [sym__rel_or_lambda_expr] = STATE(1674), + [sym_try_unwrap] = STATE(1669), + [sym__expr] = STATE(1063), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(1272), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_SEMI] = ACTIONS(1290), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_default] = ACTIONS(1292), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_try] = ACTIONS(1197), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -46542,383 +45432,242 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, [193] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(193), [sym_doc_comment] = STATE(193), [sym_block_comment] = STATE(193), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_lambda_declaration] = STATE(1679), - [sym_var_decl] = STATE(1849), - [sym__decl_or_expr] = STATE(1718), - [sym__expr] = STATE(1242), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1761), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_var] = ACTIONS(107), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym_label_target] = STATE(2097), + [sym__expr] = STATE(1089), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1567), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(13), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(1259), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_SEMI] = ACTIONS(1273), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_default] = ACTIONS(1275), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_int] = ACTIONS(45), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(45), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(45), + [anon_sym_bool] = ACTIONS(45), + [anon_sym_char] = ACTIONS(45), + [anon_sym_ichar] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_ushort] = ACTIONS(45), + [anon_sym_uint] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_ulong] = ACTIONS(45), + [anon_sym_int128] = ACTIONS(45), + [anon_sym_uint128] = ACTIONS(45), + [anon_sym_float] = ACTIONS(45), + [anon_sym_double] = ACTIONS(45), + [anon_sym_float16] = ACTIONS(45), + [anon_sym_bfloat16] = ACTIONS(45), + [anon_sym_float128] = ACTIONS(45), + [anon_sym_iptr] = ACTIONS(45), + [anon_sym_uptr] = ACTIONS(45), + [anon_sym_isz] = ACTIONS(45), + [anon_sym_usz] = ACTIONS(45), + [anon_sym_anyfault] = ACTIONS(45), + [anon_sym_any] = ACTIONS(45), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, [194] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(194), [sym_doc_comment] = STATE(194), [sym_block_comment] = STATE(194), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1446), - [sym_lambda_declaration] = STATE(1645), - [sym_var_decl] = STATE(1849), - [sym__decl_or_expr] = STATE(1718), - [sym__expr] = STATE(1247), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1306), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1309), - [sym_base_type] = STATE(1304), - [sym_type] = STATE(1463), - [sym__type_optional] = STATE(1846), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_var] = ACTIONS(1214), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(173), - [anon_sym_DOLLARtypefrom] = ACTIONS(175), - [anon_sym_DOLLARvatype] = ACTIONS(175), - [anon_sym_DOLLARevaltype] = ACTIONS(175), - [sym_real_literal] = ACTIONS(63), - }, - [195] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(195), - [sym_doc_comment] = STATE(195), - [sym_block_comment] = STATE(195), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym_label_target] = STATE(2372), - [sym__expr] = STATE(1273), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1457), - [sym__type_optional] = STATE(2098), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym_label_target] = STATE(2218), + [sym__expr] = STATE(1095), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1483), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(1272), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_default] = ACTIONS(1296), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(1259), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_SEMI] = ACTIONS(1277), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_default] = ACTIONS(1279), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -46941,116 +45690,242 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), + }, + [195] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(195), + [sym_doc_comment] = STATE(195), + [sym_block_comment] = STATE(195), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1350), + [sym_lambda_declaration] = STATE(1480), + [sym_var_decl] = STATE(1607), + [sym__decl_or_expr] = STATE(1666), + [sym__expr] = STATE(1047), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(1200), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1208), + [sym_base_type] = STATE(1199), + [sym_type] = STATE(1383), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), + [sym_type_ident] = ACTIONS(77), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_var] = ACTIONS(105), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [sym_real_literal] = ACTIONS(61), }, [196] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(196), [sym_doc_comment] = STATE(196), [sym_block_comment] = STATE(196), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1232), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym__range_loc] = STATE(1968), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym_label_target] = STATE(2214), + [sym__expr] = STATE(1120), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1464), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_RBRACK] = ACTIONS(1298), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(1259), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_SEMI] = ACTIONS(1281), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_default] = ACTIONS(1283), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_CARET] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -47073,116 +45948,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, [197] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(197), [sym_doc_comment] = STATE(197), [sym_block_comment] = STATE(197), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1581), - [sym__rel_or_lambda_expr] = STATE(1734), - [sym_try_unwrap] = STATE(1723), - [sym__expr] = STATE(1303), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(1626), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1094), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1225), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1225), - [sym_binary_expr] = STATE(1225), - [sym_call_expr] = STATE(1120), - [sym_update_expr] = STATE(1120), - [sym_rethrow_expr] = STATE(1120), - [sym_trailing_generic_expr] = STATE(1120), - [sym_subscript_expr] = STATE(1120), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1121), + [sym__constant_expr] = STATE(1615), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(1061), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(1058), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(1059), + [sym_lambda_expr] = STATE(1059), + [sym_elvis_orelse_expr] = STATE(1059), + [sym_optional_expr] = STATE(1059), + [sym_cast_expr] = STATE(1059), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(1059), + [sym_binary_expr] = STATE(1059), + [sym_call_expr] = STATE(1059), + [sym_update_expr] = STATE(1059), + [sym_rethrow_expr] = STATE(1059), + [sym_trailing_generic_expr] = STATE(1059), + [sym_subscript_expr] = STATE(1059), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_try] = ACTIONS(1202), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -47205,116 +46076,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, [198] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(198), [sym_doc_comment] = STATE(198), [sym_block_comment] = STATE(198), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1633), - [sym__rel_or_lambda_expr] = STATE(1734), - [sym_try_unwrap] = STATE(1723), - [sym__expr] = STATE(1301), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(1626), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1094), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1225), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1225), - [sym_binary_expr] = STATE(1225), - [sym_call_expr] = STATE(1120), - [sym_update_expr] = STATE(1120), - [sym_rethrow_expr] = STATE(1120), - [sym_trailing_generic_expr] = STATE(1120), - [sym_subscript_expr] = STATE(1120), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym_ct_if_cond] = STATE(19), + [sym__expr] = STATE(1121), + [sym__constant_expr] = STATE(2087), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(1061), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(1058), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(1059), + [sym_lambda_expr] = STATE(1059), + [sym_elvis_orelse_expr] = STATE(1059), + [sym_optional_expr] = STATE(1059), + [sym_cast_expr] = STATE(1059), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(1059), + [sym_binary_expr] = STATE(1059), + [sym_call_expr] = STATE(1059), + [sym_update_expr] = STATE(1059), + [sym_rethrow_expr] = STATE(1059), + [sym_trailing_generic_expr] = STATE(1059), + [sym_subscript_expr] = STATE(1059), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_try] = ACTIONS(1216), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -47337,116 +46204,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, [199] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(199), [sym_doc_comment] = STATE(199), [sym_block_comment] = STATE(199), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1232), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym__range_loc] = STATE(2049), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym_ct_if_cond] = STATE(18), + [sym__expr] = STATE(1121), + [sym__constant_expr] = STATE(2087), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(1061), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(1058), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(1059), + [sym_lambda_expr] = STATE(1059), + [sym_elvis_orelse_expr] = STATE(1059), + [sym_optional_expr] = STATE(1059), + [sym_cast_expr] = STATE(1059), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(1059), + [sym_binary_expr] = STATE(1059), + [sym_call_expr] = STATE(1059), + [sym_update_expr] = STATE(1059), + [sym_rethrow_expr] = STATE(1059), + [sym_trailing_generic_expr] = STATE(1059), + [sym_subscript_expr] = STATE(1059), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_RBRACK] = ACTIONS(1300), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_CARET] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -47469,116 +46332,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, [200] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(200), [sym_doc_comment] = STATE(200), [sym_block_comment] = STATE(200), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1232), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym__range_loc] = STATE(1970), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym_ct_if_cond] = STATE(28), + [sym__expr] = STATE(1121), + [sym__constant_expr] = STATE(2087), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(1061), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(1058), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(1059), + [sym_lambda_expr] = STATE(1059), + [sym_elvis_orelse_expr] = STATE(1059), + [sym_optional_expr] = STATE(1059), + [sym_cast_expr] = STATE(1059), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(1059), + [sym_binary_expr] = STATE(1059), + [sym_call_expr] = STATE(1059), + [sym_update_expr] = STATE(1059), + [sym_rethrow_expr] = STATE(1059), + [sym_trailing_generic_expr] = STATE(1059), + [sym_subscript_expr] = STATE(1059), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_RBRACK] = ACTIONS(1298), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_CARET] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -47601,116 +46460,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, [201] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(201), [sym_doc_comment] = STATE(201), [sym_block_comment] = STATE(201), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym__attribute_operator_expr] = STATE(1930), - [sym_attr_param] = STATE(2056), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1301), - [sym__constant_expr] = STATE(1655), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1083), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1224), - [sym_lambda_expr] = STATE(1224), - [sym_elvis_orelse_expr] = STATE(1224), - [sym_suffix_expr] = STATE(1224), - [sym_cast_expr] = STATE(1207), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1207), - [sym_binary_expr] = STATE(1207), - [sym_call_expr] = STATE(1089), - [sym_update_expr] = STATE(1089), - [sym_rethrow_expr] = STATE(1089), - [sym_trailing_generic_expr] = STATE(1089), - [sym_subscript_expr] = STATE(1089), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym_ct_if_cond] = STATE(20), + [sym__expr] = STATE(1121), + [sym__constant_expr] = STATE(2087), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(1061), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(1058), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(1059), + [sym_lambda_expr] = STATE(1059), + [sym_elvis_orelse_expr] = STATE(1059), + [sym_optional_expr] = STATE(1059), + [sym_cast_expr] = STATE(1059), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(1059), + [sym_binary_expr] = STATE(1059), + [sym_call_expr] = STATE(1059), + [sym_update_expr] = STATE(1059), + [sym_rethrow_expr] = STATE(1059), + [sym_trailing_generic_expr] = STATE(1059), + [sym_subscript_expr] = STATE(1059), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_LBRACK] = ACTIONS(1304), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -47733,116 +46588,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, [202] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(202), [sym_doc_comment] = STATE(202), [sym_block_comment] = STATE(202), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym__attribute_operator_expr] = STATE(1930), - [sym_attr_param] = STATE(1722), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1301), - [sym__constant_expr] = STATE(1655), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1083), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1224), - [sym_lambda_expr] = STATE(1224), - [sym_elvis_orelse_expr] = STATE(1224), - [sym_suffix_expr] = STATE(1224), - [sym_cast_expr] = STATE(1207), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1207), - [sym_binary_expr] = STATE(1207), - [sym_call_expr] = STATE(1089), - [sym_update_expr] = STATE(1089), - [sym_rethrow_expr] = STATE(1089), - [sym_trailing_generic_expr] = STATE(1089), - [sym_subscript_expr] = STATE(1089), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1020), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym__range_loc] = STATE(1720), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_LBRACK] = ACTIONS(1304), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_CARET] = ACTIONS(1229), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -47865,248 +46716,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, [203] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), [sym_line_comment] = STATE(203), [sym_doc_comment] = STATE(203), [sym_block_comment] = STATE(203), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1255), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym__range_loc] = STATE(2049), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_RPAREN] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_CARET] = ACTIONS(1306), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [sym_ident] = ACTIONS(1287), + [sym_integer_literal] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(1289), + [anon_sym_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1289), + [sym_bytes_literal] = ACTIONS(1289), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1287), + [sym_at_ident] = ACTIONS(1289), + [sym_hash_ident] = ACTIONS(1289), + [sym_type_ident] = ACTIONS(1289), + [sym_ct_type_ident] = ACTIONS(1289), + [sym_const_ident] = ACTIONS(1287), + [sym_builtin] = ACTIONS(1289), + [anon_sym_COMMA] = ACTIONS(1291), + [anon_sym_LPAREN_LT] = ACTIONS(1291), + [anon_sym_GT_RPAREN] = ACTIONS(1291), + [anon_sym_EQ] = ACTIONS(1293), + [anon_sym_LPAREN] = ACTIONS(1287), + [anon_sym_RPAREN] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_LBRACK] = ACTIONS(1291), + [anon_sym_RBRACK] = ACTIONS(1291), + [anon_sym_SEMI] = ACTIONS(1291), + [anon_sym_fn] = ACTIONS(1287), + [anon_sym_LBRACE] = ACTIONS(1287), + [anon_sym_RBRACE] = ACTIONS(1291), + [anon_sym_COLON] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(1291), + [anon_sym_DOT] = ACTIONS(1293), + [anon_sym_AMP_AMP] = ACTIONS(1289), + [anon_sym_int] = ACTIONS(1287), + [anon_sym_PLUS] = ACTIONS(1287), + [anon_sym_DASH] = ACTIONS(1287), + [anon_sym_LT_LT] = ACTIONS(1293), + [anon_sym_GT_GT] = ACTIONS(1293), + [anon_sym_STAR] = ACTIONS(1287), + [anon_sym_DOLLARalignof] = ACTIONS(1287), + [anon_sym_DOLLARextnameof] = ACTIONS(1287), + [anon_sym_DOLLARnameof] = ACTIONS(1287), + [anon_sym_DOLLARoffsetof] = ACTIONS(1287), + [anon_sym_DOLLARqnameof] = ACTIONS(1287), + [anon_sym_DOLLARvaconst] = ACTIONS(1287), + [anon_sym_DOLLARvaarg] = ACTIONS(1287), + [anon_sym_DOLLARvaref] = ACTIONS(1287), + [anon_sym_DOLLARvaexpr] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1287), + [anon_sym_false] = ACTIONS(1287), + [anon_sym_null] = ACTIONS(1287), + [anon_sym_DOLLARvacount] = ACTIONS(1287), + [anon_sym_DOLLARappend] = ACTIONS(1287), + [anon_sym_DOLLARconcat] = ACTIONS(1287), + [anon_sym_DOLLAReval] = ACTIONS(1287), + [anon_sym_DOLLARis_const] = ACTIONS(1287), + [anon_sym_DOLLARsizeof] = ACTIONS(1287), + [anon_sym_DOLLARstringify] = ACTIONS(1287), + [anon_sym_DOLLARand] = ACTIONS(1287), + [anon_sym_DOLLARdefined] = ACTIONS(1287), + [anon_sym_DOLLARembed] = ACTIONS(1287), + [anon_sym_DOLLARor] = ACTIONS(1287), + [anon_sym_DOLLARfeature] = ACTIONS(1287), + [anon_sym_DOLLARassignable] = ACTIONS(1287), + [anon_sym_PLUS_EQ] = ACTIONS(1291), + [anon_sym_DASH_EQ] = ACTIONS(1291), + [anon_sym_STAR_EQ] = ACTIONS(1291), + [anon_sym_SLASH_EQ] = ACTIONS(1291), + [anon_sym_PERCENT_EQ] = ACTIONS(1291), + [anon_sym_LT_LT_EQ] = ACTIONS(1291), + [anon_sym_GT_GT_EQ] = ACTIONS(1291), + [anon_sym_AMP_EQ] = ACTIONS(1291), + [anon_sym_CARET_EQ] = ACTIONS(1291), + [anon_sym_PIPE_EQ] = ACTIONS(1291), + [anon_sym_QMARK] = ACTIONS(1293), + [anon_sym_QMARK_COLON] = ACTIONS(1291), + [anon_sym_QMARK_QMARK] = ACTIONS(1291), + [anon_sym_BANG] = ACTIONS(1287), + [anon_sym_TILDE] = ACTIONS(1289), + [anon_sym_PLUS_PLUS] = ACTIONS(1289), + [anon_sym_DASH_DASH] = ACTIONS(1289), + [anon_sym_SLASH] = ACTIONS(1293), + [anon_sym_PERCENT] = ACTIONS(1293), + [anon_sym_PIPE] = ACTIONS(1293), + [anon_sym_CARET] = ACTIONS(1293), + [anon_sym_EQ_EQ] = ACTIONS(1291), + [anon_sym_BANG_EQ] = ACTIONS(1291), + [anon_sym_GT] = ACTIONS(1293), + [anon_sym_GT_EQ] = ACTIONS(1291), + [anon_sym_LT_EQ] = ACTIONS(1291), + [anon_sym_LT] = ACTIONS(1293), + [anon_sym_PIPE_PIPE] = ACTIONS(1291), + [anon_sym_BANG_BANG] = ACTIONS(1291), + [anon_sym_typeid] = ACTIONS(1287), + [anon_sym_LBRACE_PIPE] = ACTIONS(1289), + [anon_sym_void] = ACTIONS(1287), + [anon_sym_bool] = ACTIONS(1287), + [anon_sym_char] = ACTIONS(1287), + [anon_sym_ichar] = ACTIONS(1287), + [anon_sym_short] = ACTIONS(1287), + [anon_sym_ushort] = ACTIONS(1287), + [anon_sym_uint] = ACTIONS(1287), + [anon_sym_long] = ACTIONS(1287), + [anon_sym_ulong] = ACTIONS(1287), + [anon_sym_int128] = ACTIONS(1287), + [anon_sym_uint128] = ACTIONS(1287), + [anon_sym_float] = ACTIONS(1287), + [anon_sym_double] = ACTIONS(1287), + [anon_sym_float16] = ACTIONS(1287), + [anon_sym_bfloat16] = ACTIONS(1287), + [anon_sym_float128] = ACTIONS(1287), + [anon_sym_iptr] = ACTIONS(1287), + [anon_sym_uptr] = ACTIONS(1287), + [anon_sym_isz] = ACTIONS(1287), + [anon_sym_usz] = ACTIONS(1287), + [anon_sym_anyfault] = ACTIONS(1287), + [anon_sym_any] = ACTIONS(1287), + [anon_sym_DOLLARtypeof] = ACTIONS(1287), + [anon_sym_DOLLARtypefrom] = ACTIONS(1287), + [anon_sym_DOLLARvatype] = ACTIONS(1287), + [anon_sym_DOLLARevaltype] = ACTIONS(1287), + [anon_sym_GT_RBRACK] = ACTIONS(1291), + [sym_real_literal] = ACTIONS(1289), }, [204] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(204), [sym_doc_comment] = STATE(204), [sym_block_comment] = STATE(204), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1255), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym__range_loc] = STATE(1968), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym_ct_if_cond] = STATE(29), + [sym__expr] = STATE(1121), + [sym__constant_expr] = STATE(2087), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(1061), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(1058), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(1059), + [sym_lambda_expr] = STATE(1059), + [sym_elvis_orelse_expr] = STATE(1059), + [sym_optional_expr] = STATE(1059), + [sym_cast_expr] = STATE(1059), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(1059), + [sym_binary_expr] = STATE(1059), + [sym_call_expr] = STATE(1059), + [sym_update_expr] = STATE(1059), + [sym_rethrow_expr] = STATE(1059), + [sym_trailing_generic_expr] = STATE(1059), + [sym_subscript_expr] = STATE(1059), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_RPAREN] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_CARET] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -48129,116 +46972,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, [205] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(205), [sym_doc_comment] = STATE(205), [sym_block_comment] = STATE(205), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1255), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym__range_loc] = STATE(1970), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym_ct_if_cond] = STATE(27), + [sym__expr] = STATE(1121), + [sym__constant_expr] = STATE(2087), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(1061), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(1058), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(1059), + [sym_lambda_expr] = STATE(1059), + [sym_elvis_orelse_expr] = STATE(1059), + [sym_optional_expr] = STATE(1059), + [sym_cast_expr] = STATE(1059), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(1059), + [sym_binary_expr] = STATE(1059), + [sym_call_expr] = STATE(1059), + [sym_update_expr] = STATE(1059), + [sym_rethrow_expr] = STATE(1059), + [sym_trailing_generic_expr] = STATE(1059), + [sym_subscript_expr] = STATE(1059), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_RPAREN] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_CARET] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -48261,115 +47100,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, [206] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(206), [sym_doc_comment] = STATE(206), [sym_block_comment] = STATE(206), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1258), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1457), - [sym__type_optional] = STATE(2308), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1121), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_flat_path] = STATE(2124), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(1104), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_default] = ACTIONS(1308), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -48392,115 +47227,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, [207] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(207), [sym_doc_comment] = STATE(207), [sym_block_comment] = STATE(207), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1283), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1457), - [sym__type_optional] = STATE(2128), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1121), + [sym__constant_expr] = STATE(1966), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(1061), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(1058), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(1059), + [sym_lambda_expr] = STATE(1059), + [sym_elvis_orelse_expr] = STATE(1059), + [sym_optional_expr] = STATE(1059), + [sym_cast_expr] = STATE(1059), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(1059), + [sym_binary_expr] = STATE(1059), + [sym_call_expr] = STATE(1059), + [sym_update_expr] = STATE(1059), + [sym_rethrow_expr] = STATE(1059), + [sym_trailing_generic_expr] = STATE(1059), + [sym_subscript_expr] = STATE(1059), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -48523,115 +47354,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, [208] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(208), [sym_doc_comment] = STATE(208), [sym_block_comment] = STATE(208), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1255), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym__range_loc] = STATE(2047), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1121), + [sym__constant_expr] = STATE(1914), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(1061), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(1058), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(1059), + [sym_lambda_expr] = STATE(1059), + [sym_elvis_orelse_expr] = STATE(1059), + [sym_optional_expr] = STATE(1059), + [sym_cast_expr] = STATE(1059), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(1059), + [sym_binary_expr] = STATE(1059), + [sym_call_expr] = STATE(1059), + [sym_update_expr] = STATE(1059), + [sym_rethrow_expr] = STATE(1059), + [sym_trailing_generic_expr] = STATE(1059), + [sym_subscript_expr] = STATE(1059), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_CARET] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -48654,115 +47481,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, [209] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(209), [sym_doc_comment] = STATE(209), [sym_block_comment] = STATE(209), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym_case_range] = STATE(2181), - [sym__expr] = STATE(1248), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1457), - [sym__type_optional] = STATE(2181), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1121), + [sym__constant_expr] = STATE(1960), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(1061), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(1058), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(1059), + [sym_lambda_expr] = STATE(1059), + [sym_elvis_orelse_expr] = STATE(1059), + [sym_optional_expr] = STATE(1059), + [sym_cast_expr] = STATE(1059), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(1059), + [sym_binary_expr] = STATE(1059), + [sym_call_expr] = STATE(1059), + [sym_update_expr] = STATE(1059), + [sym_rethrow_expr] = STATE(1059), + [sym_trailing_generic_expr] = STATE(1059), + [sym_subscript_expr] = STATE(1059), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -48785,115 +47608,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, [210] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(210), [sym_doc_comment] = STATE(210), [sym_block_comment] = STATE(210), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1256), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1457), - [sym__type_optional] = STATE(2170), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1121), + [sym__constant_expr] = STATE(1918), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(1061), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(1058), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(1059), + [sym_lambda_expr] = STATE(1059), + [sym_elvis_orelse_expr] = STATE(1059), + [sym_optional_expr] = STATE(1059), + [sym_cast_expr] = STATE(1059), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(1059), + [sym_binary_expr] = STATE(1059), + [sym_call_expr] = STATE(1059), + [sym_update_expr] = STATE(1059), + [sym_rethrow_expr] = STATE(1059), + [sym_trailing_generic_expr] = STATE(1059), + [sym_subscript_expr] = STATE(1059), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_default] = ACTIONS(1312), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -48916,115 +47735,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, [211] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(211), [sym_doc_comment] = STATE(211), [sym_block_comment] = STATE(211), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1281), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1457), - [sym__type_optional] = STATE(2155), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1121), + [sym__constant_expr] = STATE(1917), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(1061), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(1058), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(1059), + [sym_lambda_expr] = STATE(1059), + [sym_elvis_orelse_expr] = STATE(1059), + [sym_optional_expr] = STATE(1059), + [sym_cast_expr] = STATE(1059), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(1059), + [sym_binary_expr] = STATE(1059), + [sym_call_expr] = STATE(1059), + [sym_update_expr] = STATE(1059), + [sym_rethrow_expr] = STATE(1059), + [sym_trailing_generic_expr] = STATE(1059), + [sym_subscript_expr] = STATE(1059), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -49047,115 +47862,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, [212] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(212), [sym_doc_comment] = STATE(212), [sym_block_comment] = STATE(212), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1296), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1457), - [sym__type_optional] = STATE(2208), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1121), + [sym__constant_expr] = STATE(2191), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(1061), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(1058), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(1059), + [sym_lambda_expr] = STATE(1059), + [sym_elvis_orelse_expr] = STATE(1059), + [sym_optional_expr] = STATE(1059), + [sym_cast_expr] = STATE(1059), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(1059), + [sym_binary_expr] = STATE(1059), + [sym_call_expr] = STATE(1059), + [sym_update_expr] = STATE(1059), + [sym_rethrow_expr] = STATE(1059), + [sym_trailing_generic_expr] = STATE(1059), + [sym_subscript_expr] = STATE(1059), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_default] = ACTIONS(1316), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -49178,115 +47989,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, [213] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(213), [sym_doc_comment] = STATE(213), [sym_block_comment] = STATE(213), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1266), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1457), - [sym__type_optional] = STATE(2071), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1111), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1473), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_default] = ACTIONS(1318), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_default] = ACTIONS(1295), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -49309,115 +48116,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, [214] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(214), [sym_doc_comment] = STATE(214), [sym_block_comment] = STATE(214), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1232), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym__range_loc] = STATE(2047), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1102), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1548), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_default] = ACTIONS(1297), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_CARET] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -49440,114 +48243,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, [215] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(215), [sym_doc_comment] = STATE(215), [sym_block_comment] = STATE(215), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1272), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1547), + [sym__rel_or_lambda_expr] = STATE(1647), + [sym__expr] = STATE(1063), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1546), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(1299), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -49570,114 +48370,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, [216] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(216), [sym_doc_comment] = STATE(216), [sym_block_comment] = STATE(216), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1228), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym_catch_unwrap_list] = STATE(1785), + [sym__expr] = STATE(1024), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1543), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(1301), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_RPAREN] = ACTIONS(1322), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -49700,114 +48497,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, [217] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(217), [sym_doc_comment] = STATE(217), [sym_block_comment] = STATE(217), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1581), - [sym__rel_or_lambda_expr] = STATE(1703), - [sym__expr] = STATE(1303), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(1626), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1094), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1225), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1225), - [sym_binary_expr] = STATE(1225), - [sym_call_expr] = STATE(1120), - [sym_update_expr] = STATE(1120), - [sym_rethrow_expr] = STATE(1120), - [sym_trailing_generic_expr] = STATE(1120), - [sym_subscript_expr] = STATE(1120), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1121), + [sym__constant_expr] = STATE(1957), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(1061), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(1058), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(1059), + [sym_lambda_expr] = STATE(1059), + [sym_elvis_orelse_expr] = STATE(1059), + [sym_optional_expr] = STATE(1059), + [sym_cast_expr] = STATE(1059), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(1059), + [sym_binary_expr] = STATE(1059), + [sym_call_expr] = STATE(1059), + [sym_update_expr] = STATE(1059), + [sym_rethrow_expr] = STATE(1059), + [sym_trailing_generic_expr] = STATE(1059), + [sym_subscript_expr] = STATE(1059), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -49830,114 +48624,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, [218] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(218), [sym_doc_comment] = STATE(218), [sym_block_comment] = STATE(218), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1279), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1121), + [sym__constant_expr] = STATE(1953), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(1061), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(1058), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(1059), + [sym_lambda_expr] = STATE(1059), + [sym_elvis_orelse_expr] = STATE(1059), + [sym_optional_expr] = STATE(1059), + [sym_cast_expr] = STATE(1059), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(1059), + [sym_binary_expr] = STATE(1059), + [sym_call_expr] = STATE(1059), + [sym_update_expr] = STATE(1059), + [sym_rethrow_expr] = STATE(1059), + [sym_trailing_generic_expr] = STATE(1059), + [sym_subscript_expr] = STATE(1059), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -49960,114 +48751,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, [219] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(219), [sym_doc_comment] = STATE(219), [sym_block_comment] = STATE(219), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1303), - [sym__constant_expr] = STATE(1817), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1457), - [sym__type_optional] = STATE(2065), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym_case_range] = STATE(2144), + [sym__expr] = STATE(1065), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1536), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -50090,114 +48878,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, [220] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(220), [sym_doc_comment] = STATE(220), [sym_block_comment] = STATE(220), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1303), - [sym__constant_expr] = STATE(1853), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1121), + [sym__constant_expr] = STATE(2001), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(1061), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(1058), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(1059), + [sym_lambda_expr] = STATE(1059), + [sym_elvis_orelse_expr] = STATE(1059), + [sym_optional_expr] = STATE(1059), + [sym_cast_expr] = STATE(1059), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(1059), + [sym_binary_expr] = STATE(1059), + [sym_call_expr] = STATE(1059), + [sym_update_expr] = STATE(1059), + [sym_rethrow_expr] = STATE(1059), + [sym_trailing_generic_expr] = STATE(1059), + [sym_subscript_expr] = STATE(1059), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_RBRACK] = ACTIONS(1326), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(1328), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -50220,114 +49005,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, [221] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(221), [sym_doc_comment] = STATE(221), [sym_block_comment] = STATE(221), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym_ct_if_cond] = STATE(25), - [sym__expr] = STATE(1303), - [sym__constant_expr] = STATE(1810), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1121), + [sym__constant_expr] = STATE(2058), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(1061), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(1058), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(1059), + [sym_lambda_expr] = STATE(1059), + [sym_elvis_orelse_expr] = STATE(1059), + [sym_optional_expr] = STATE(1059), + [sym_cast_expr] = STATE(1059), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(1059), + [sym_binary_expr] = STATE(1059), + [sym_call_expr] = STATE(1059), + [sym_update_expr] = STATE(1059), + [sym_rethrow_expr] = STATE(1059), + [sym_trailing_generic_expr] = STATE(1059), + [sym_subscript_expr] = STATE(1059), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -50350,114 +49132,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, [222] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(222), [sym_doc_comment] = STATE(222), [sym_block_comment] = STATE(222), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym__generic_arg_list] = STATE(2180), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1235), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1499), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1121), + [sym__constant_expr] = STATE(2002), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(1061), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(1058), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(1059), + [sym_lambda_expr] = STATE(1059), + [sym_elvis_orelse_expr] = STATE(1059), + [sym_optional_expr] = STATE(1059), + [sym_cast_expr] = STATE(1059), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(1059), + [sym_binary_expr] = STATE(1059), + [sym_call_expr] = STATE(1059), + [sym_update_expr] = STATE(1059), + [sym_rethrow_expr] = STATE(1059), + [sym_trailing_generic_expr] = STATE(1059), + [sym_subscript_expr] = STATE(1059), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -50480,114 +49259,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, [223] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(223), [sym_doc_comment] = STATE(223), [sym_block_comment] = STATE(223), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1303), - [sym__constant_expr] = STATE(1697), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1040), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_RBRACK] = ACTIONS(1330), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_RPAREN] = ACTIONS(1303), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(1332), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -50610,114 +49386,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, [224] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(224), [sym_doc_comment] = STATE(224), [sym_block_comment] = STATE(224), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1633), - [sym__rel_or_lambda_expr] = STATE(1713), - [sym__expr] = STATE(1301), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(1626), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1094), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1225), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1225), - [sym_binary_expr] = STATE(1225), - [sym_call_expr] = STATE(1120), - [sym_update_expr] = STATE(1120), - [sym_rethrow_expr] = STATE(1120), - [sym_trailing_generic_expr] = STATE(1120), - [sym_subscript_expr] = STATE(1120), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1121), + [sym__constant_expr] = STATE(1794), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(1061), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(1058), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(1059), + [sym_lambda_expr] = STATE(1059), + [sym_elvis_orelse_expr] = STATE(1059), + [sym_optional_expr] = STATE(1059), + [sym_cast_expr] = STATE(1059), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(1059), + [sym_binary_expr] = STATE(1059), + [sym_call_expr] = STATE(1059), + [sym_update_expr] = STATE(1059), + [sym_rethrow_expr] = STATE(1059), + [sym_trailing_generic_expr] = STATE(1059), + [sym_subscript_expr] = STATE(1059), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -50740,114 +49513,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, [225] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(225), [sym_doc_comment] = STATE(225), [sym_block_comment] = STATE(225), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1277), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1114), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1455), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_SEMI] = ACTIONS(1334), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_default] = ACTIONS(1305), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -50870,114 +49640,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, [226] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(226), [sym_doc_comment] = STATE(226), [sym_block_comment] = STATE(226), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1297), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1071), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_SEMI] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_SEMI] = ACTIONS(1307), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -51000,114 +49767,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, [227] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(227), [sym_doc_comment] = STATE(227), [sym_block_comment] = STATE(227), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym_catch_unwrap_list] = STATE(1913), - [sym__expr] = STATE(1303), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(1579), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1087), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1220), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1220), - [sym_binary_expr] = STATE(1220), - [sym_call_expr] = STATE(1088), - [sym_update_expr] = STATE(1088), - [sym_rethrow_expr] = STATE(1088), - [sym_trailing_generic_expr] = STATE(1088), - [sym_subscript_expr] = STATE(1088), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1121), + [sym__constant_expr] = STATE(2050), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(1061), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(1058), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(1059), + [sym_lambda_expr] = STATE(1059), + [sym_elvis_orelse_expr] = STATE(1059), + [sym_optional_expr] = STATE(1059), + [sym_cast_expr] = STATE(1059), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(1059), + [sym_binary_expr] = STATE(1059), + [sym_call_expr] = STATE(1059), + [sym_update_expr] = STATE(1059), + [sym_rethrow_expr] = STATE(1059), + [sym_trailing_generic_expr] = STATE(1059), + [sym_subscript_expr] = STATE(1059), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -51130,114 +49894,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, [228] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(228), [sym_doc_comment] = STATE(228), [sym_block_comment] = STATE(228), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym_ct_if_cond] = STATE(20), - [sym__expr] = STATE(1303), - [sym__constant_expr] = STATE(1810), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1121), + [sym__constant_expr] = STATE(1993), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(1061), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(1058), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(1059), + [sym_lambda_expr] = STATE(1059), + [sym_elvis_orelse_expr] = STATE(1059), + [sym_optional_expr] = STATE(1059), + [sym_cast_expr] = STATE(1059), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(1059), + [sym_binary_expr] = STATE(1059), + [sym_call_expr] = STATE(1059), + [sym_update_expr] = STATE(1059), + [sym_rethrow_expr] = STATE(1059), + [sym_trailing_generic_expr] = STATE(1059), + [sym_subscript_expr] = STATE(1059), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -51260,114 +50021,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, [229] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(229), [sym_doc_comment] = STATE(229), [sym_block_comment] = STATE(229), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1633), - [sym__rel_or_lambda_expr] = STATE(1703), - [sym__expr] = STATE(1301), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(1626), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1094), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1225), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1225), - [sym_binary_expr] = STATE(1225), - [sym_call_expr] = STATE(1120), - [sym_update_expr] = STATE(1120), - [sym_rethrow_expr] = STATE(1120), - [sym_trailing_generic_expr] = STATE(1120), - [sym_subscript_expr] = STATE(1120), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1121), + [sym__constant_expr] = STATE(1861), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(1061), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(1058), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(1059), + [sym_lambda_expr] = STATE(1059), + [sym_elvis_orelse_expr] = STATE(1059), + [sym_optional_expr] = STATE(1059), + [sym_cast_expr] = STATE(1059), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(1059), + [sym_binary_expr] = STATE(1059), + [sym_call_expr] = STATE(1059), + [sym_update_expr] = STATE(1059), + [sym_rethrow_expr] = STATE(1059), + [sym_trailing_generic_expr] = STATE(1059), + [sym_subscript_expr] = STATE(1059), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -51390,114 +50148,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, [230] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(230), [sym_doc_comment] = STATE(230), [sym_block_comment] = STATE(230), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1301), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_flat_path] = STATE(2278), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1070), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1091), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_SEMI] = ACTIONS(1309), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -51520,114 +50275,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, [231] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(231), [sym_doc_comment] = STATE(231), [sym_block_comment] = STATE(231), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym_ct_if_cond] = STATE(19), - [sym__expr] = STATE(1303), - [sym__constant_expr] = STATE(1810), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1121), + [sym__constant_expr] = STATE(1888), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(1061), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(1058), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(1059), + [sym_lambda_expr] = STATE(1059), + [sym_elvis_orelse_expr] = STATE(1059), + [sym_optional_expr] = STATE(1059), + [sym_cast_expr] = STATE(1059), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(1059), + [sym_binary_expr] = STATE(1059), + [sym_call_expr] = STATE(1059), + [sym_update_expr] = STATE(1059), + [sym_rethrow_expr] = STATE(1059), + [sym_trailing_generic_expr] = STATE(1059), + [sym_subscript_expr] = STATE(1059), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -51650,114 +50402,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, [232] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(232), [sym_doc_comment] = STATE(232), [sym_block_comment] = STATE(232), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym_catch_unwrap_list] = STATE(1913), - [sym__expr] = STATE(1301), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(1620), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1087), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1220), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1220), - [sym_binary_expr] = STATE(1220), - [sym_call_expr] = STATE(1088), - [sym_update_expr] = STATE(1088), - [sym_rethrow_expr] = STATE(1088), - [sym_trailing_generic_expr] = STATE(1088), - [sym_subscript_expr] = STATE(1088), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym_catch_unwrap_list] = STATE(1864), + [sym__expr] = STATE(1024), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -51780,114 +50529,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, [233] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(233), [sym_doc_comment] = STATE(233), [sym_block_comment] = STATE(233), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1303), - [sym__constant_expr] = STATE(1708), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1121), + [sym__constant_expr] = STATE(1949), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(1061), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(1058), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(1059), + [sym_lambda_expr] = STATE(1059), + [sym_elvis_orelse_expr] = STATE(1059), + [sym_optional_expr] = STATE(1059), + [sym_cast_expr] = STATE(1059), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(1059), + [sym_binary_expr] = STATE(1059), + [sym_call_expr] = STATE(1059), + [sym_update_expr] = STATE(1059), + [sym_rethrow_expr] = STATE(1059), + [sym_trailing_generic_expr] = STATE(1059), + [sym_subscript_expr] = STATE(1059), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_RBRACK] = ACTIONS(1338), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(1340), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -51910,114 +50656,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, [234] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(234), [sym_doc_comment] = STATE(234), [sym_block_comment] = STATE(234), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym_catch_unwrap_list] = STATE(1887), - [sym__expr] = STATE(1303), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(1579), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1087), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1220), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1220), - [sym_binary_expr] = STATE(1220), - [sym_call_expr] = STATE(1088), - [sym_update_expr] = STATE(1088), - [sym_rethrow_expr] = STATE(1088), - [sym_trailing_generic_expr] = STATE(1088), - [sym_subscript_expr] = STATE(1088), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1547), + [sym__rel_or_lambda_expr] = STATE(1597), + [sym__expr] = STATE(1063), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -52040,114 +50783,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, [235] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(235), [sym_doc_comment] = STATE(235), [sym_block_comment] = STATE(235), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym_ct_if_cond] = STATE(21), - [sym__expr] = STATE(1303), - [sym__constant_expr] = STATE(1810), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1121), + [sym__constant_expr] = STATE(1950), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(1061), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(1058), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(1059), + [sym_lambda_expr] = STATE(1059), + [sym_elvis_orelse_expr] = STATE(1059), + [sym_optional_expr] = STATE(1059), + [sym_cast_expr] = STATE(1059), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(1059), + [sym_binary_expr] = STATE(1059), + [sym_call_expr] = STATE(1059), + [sym_update_expr] = STATE(1059), + [sym_rethrow_expr] = STATE(1059), + [sym_trailing_generic_expr] = STATE(1059), + [sym_subscript_expr] = STATE(1059), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -52170,114 +50910,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, [236] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(236), [sym_doc_comment] = STATE(236), [sym_block_comment] = STATE(236), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym__generic_arg_list] = STATE(2236), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1235), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1499), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym__generic_arg_list] = STATE(2091), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1041), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1365), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -52300,114 +51037,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, [237] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(237), [sym_doc_comment] = STATE(237), [sym_block_comment] = STATE(237), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1301), - [sym__constant_expr] = STATE(1825), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1083), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1224), - [sym_lambda_expr] = STATE(1224), - [sym_elvis_orelse_expr] = STATE(1224), - [sym_suffix_expr] = STATE(1224), - [sym_cast_expr] = STATE(1207), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1207), - [sym_binary_expr] = STATE(1207), - [sym_call_expr] = STATE(1089), - [sym_update_expr] = STATE(1089), - [sym_rethrow_expr] = STATE(1089), - [sym_trailing_generic_expr] = STATE(1089), - [sym_subscript_expr] = STATE(1089), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1457), - [sym__type_optional] = STATE(2123), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1085), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_RBRACK] = ACTIONS(1311), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -52430,114 +51164,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, [238] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(238), [sym_doc_comment] = STATE(238), [sym_block_comment] = STATE(238), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1295), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1121), + [sym__constant_expr] = STATE(1991), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(1061), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(1058), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(1059), + [sym_lambda_expr] = STATE(1059), + [sym_elvis_orelse_expr] = STATE(1059), + [sym_optional_expr] = STATE(1059), + [sym_cast_expr] = STATE(1059), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(1059), + [sym_binary_expr] = STATE(1059), + [sym_call_expr] = STATE(1059), + [sym_update_expr] = STATE(1059), + [sym_rethrow_expr] = STATE(1059), + [sym_trailing_generic_expr] = STATE(1059), + [sym_subscript_expr] = STATE(1059), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_SEMI] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -52560,114 +51291,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, [239] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(239), [sym_doc_comment] = STATE(239), [sym_block_comment] = STATE(239), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1581), - [sym__rel_or_lambda_expr] = STATE(1713), - [sym__expr] = STATE(1303), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(1626), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1094), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1225), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1225), - [sym_binary_expr] = STATE(1225), - [sym_call_expr] = STATE(1120), - [sym_update_expr] = STATE(1120), - [sym_rethrow_expr] = STATE(1120), - [sym_trailing_generic_expr] = STATE(1120), - [sym_subscript_expr] = STATE(1120), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1097), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1486), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_default] = ACTIONS(1315), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -52690,114 +51418,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, [240] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(240), [sym_doc_comment] = STATE(240), [sym_block_comment] = STATE(240), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1253), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1121), + [sym__constant_expr] = STATE(2093), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(1061), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(1058), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(1059), + [sym_lambda_expr] = STATE(1059), + [sym_elvis_orelse_expr] = STATE(1059), + [sym_optional_expr] = STATE(1059), + [sym_cast_expr] = STATE(1059), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(1059), + [sym_binary_expr] = STATE(1059), + [sym_call_expr] = STATE(1059), + [sym_update_expr] = STATE(1059), + [sym_rethrow_expr] = STATE(1059), + [sym_trailing_generic_expr] = STATE(1059), + [sym_subscript_expr] = STATE(1059), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_SEMI] = ACTIONS(1344), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -52820,114 +51545,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, [241] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(241), [sym_doc_comment] = STATE(241), [sym_block_comment] = STATE(241), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym__generic_arg_list] = STATE(2293), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1235), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1499), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1121), + [sym__constant_expr] = STATE(1869), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(1061), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(1058), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(1059), + [sym_lambda_expr] = STATE(1059), + [sym_elvis_orelse_expr] = STATE(1059), + [sym_optional_expr] = STATE(1059), + [sym_cast_expr] = STATE(1059), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(1059), + [sym_binary_expr] = STATE(1059), + [sym_call_expr] = STATE(1059), + [sym_update_expr] = STATE(1059), + [sym_rethrow_expr] = STATE(1059), + [sym_trailing_generic_expr] = STATE(1059), + [sym_subscript_expr] = STATE(1059), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -52950,114 +51672,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, [242] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(242), [sym_doc_comment] = STATE(242), [sym_block_comment] = STATE(242), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym_catch_unwrap_list] = STATE(2008), - [sym__expr] = STATE(1303), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(1579), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1087), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1220), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1220), - [sym_binary_expr] = STATE(1220), - [sym_call_expr] = STATE(1088), - [sym_update_expr] = STATE(1088), - [sym_rethrow_expr] = STATE(1088), - [sym_trailing_generic_expr] = STATE(1088), - [sym_subscript_expr] = STATE(1088), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1677), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(1346), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1074), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1493), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_default] = ACTIONS(1317), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -53080,114 +51799,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, [243] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(243), [sym_doc_comment] = STATE(243), [sym_block_comment] = STATE(243), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym_ct_if_cond] = STATE(31), - [sym__expr] = STATE(1303), - [sym__constant_expr] = STATE(1810), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1121), + [sym__constant_expr] = STATE(1983), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(1061), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(1058), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(1059), + [sym_lambda_expr] = STATE(1059), + [sym_elvis_orelse_expr] = STATE(1059), + [sym_optional_expr] = STATE(1059), + [sym_cast_expr] = STATE(1059), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(1059), + [sym_binary_expr] = STATE(1059), + [sym_call_expr] = STATE(1059), + [sym_update_expr] = STATE(1059), + [sym_rethrow_expr] = STATE(1059), + [sym_trailing_generic_expr] = STATE(1059), + [sym_subscript_expr] = STATE(1059), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -53210,114 +51926,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, [244] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(244), [sym_doc_comment] = STATE(244), [sym_block_comment] = STATE(244), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1581), - [sym__rel_or_lambda_expr] = STATE(1777), - [sym__expr] = STATE(1303), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(1626), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1094), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1225), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1225), - [sym_binary_expr] = STATE(1225), - [sym_call_expr] = STATE(1120), - [sym_update_expr] = STATE(1120), - [sym_rethrow_expr] = STATE(1120), - [sym_trailing_generic_expr] = STATE(1120), - [sym_subscript_expr] = STATE(1120), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1671), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(1348), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1121), + [sym__constant_expr] = STATE(1787), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(1061), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(1058), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(1059), + [sym_lambda_expr] = STATE(1059), + [sym_elvis_orelse_expr] = STATE(1059), + [sym_optional_expr] = STATE(1059), + [sym_cast_expr] = STATE(1059), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(1059), + [sym_binary_expr] = STATE(1059), + [sym_call_expr] = STATE(1059), + [sym_update_expr] = STATE(1059), + [sym_rethrow_expr] = STATE(1059), + [sym_trailing_generic_expr] = STATE(1059), + [sym_subscript_expr] = STATE(1059), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -53340,1280 +52053,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, [245] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), [sym_line_comment] = STATE(245), [sym_doc_comment] = STATE(245), [sym_block_comment] = STATE(245), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1301), - [sym__constant_expr] = STATE(1524), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1083), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1224), - [sym_lambda_expr] = STATE(1224), - [sym_elvis_orelse_expr] = STATE(1224), - [sym_suffix_expr] = STATE(1224), - [sym_cast_expr] = STATE(1207), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1207), - [sym_binary_expr] = STATE(1207), - [sym_call_expr] = STATE(1089), - [sym_update_expr] = STATE(1089), - [sym_rethrow_expr] = STATE(1089), - [sym_trailing_generic_expr] = STATE(1089), - [sym_subscript_expr] = STATE(1089), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_RPAREN] = ACTIONS(1350), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), - }, - [246] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(246), - [sym_doc_comment] = STATE(246), - [sym_block_comment] = STATE(246), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym__generic_arg_list] = STATE(2274), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1235), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1499), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), - }, - [247] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(247), - [sym_doc_comment] = STATE(247), - [sym_block_comment] = STATE(247), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1633), - [sym__rel_or_lambda_expr] = STATE(1777), - [sym__expr] = STATE(1301), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(1626), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1094), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1225), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1225), - [sym_binary_expr] = STATE(1225), - [sym_call_expr] = STATE(1120), - [sym_update_expr] = STATE(1120), - [sym_rethrow_expr] = STATE(1120), - [sym_trailing_generic_expr] = STATE(1120), - [sym_subscript_expr] = STATE(1120), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1623), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(1352), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), - }, - [248] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(248), - [sym_doc_comment] = STATE(248), - [sym_block_comment] = STATE(248), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym_catch_unwrap_list] = STATE(1887), - [sym__expr] = STATE(1301), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(1620), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1087), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1220), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1220), - [sym_binary_expr] = STATE(1220), - [sym_call_expr] = STATE(1088), - [sym_update_expr] = STATE(1088), - [sym_rethrow_expr] = STATE(1088), - [sym_trailing_generic_expr] = STATE(1088), - [sym_subscript_expr] = STATE(1088), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), - }, - [249] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(249), - [sym_doc_comment] = STATE(249), - [sym_block_comment] = STATE(249), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym_catch_unwrap_list] = STATE(2008), - [sym__expr] = STATE(1301), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(1620), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1087), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1220), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1220), - [sym_binary_expr] = STATE(1220), - [sym_call_expr] = STATE(1088), - [sym_update_expr] = STATE(1088), - [sym_rethrow_expr] = STATE(1088), - [sym_trailing_generic_expr] = STATE(1088), - [sym_subscript_expr] = STATE(1088), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1619), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(1354), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), - }, - [250] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(250), - [sym_doc_comment] = STATE(250), - [sym_block_comment] = STATE(250), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym_ct_if_cond] = STATE(22), - [sym__expr] = STATE(1303), - [sym__constant_expr] = STATE(1810), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), - }, - [251] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(251), - [sym_doc_comment] = STATE(251), - [sym_block_comment] = STATE(251), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1301), - [sym__constant_expr] = STATE(1701), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1083), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1224), - [sym_lambda_expr] = STATE(1224), - [sym_elvis_orelse_expr] = STATE(1224), - [sym_suffix_expr] = STATE(1224), - [sym_cast_expr] = STATE(1207), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1207), - [sym_binary_expr] = STATE(1207), - [sym_call_expr] = STATE(1089), - [sym_update_expr] = STATE(1089), - [sym_rethrow_expr] = STATE(1089), - [sym_trailing_generic_expr] = STATE(1089), - [sym_subscript_expr] = STATE(1089), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), - }, - [252] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(252), - [sym_doc_comment] = STATE(252), - [sym_block_comment] = STATE(252), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1303), - [sym__constant_expr] = STATE(1857), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), - }, - [253] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(253), - [sym_doc_comment] = STATE(253), - [sym_block_comment] = STATE(253), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1298), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), - }, - [254] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(254), - [sym_doc_comment] = STATE(254), - [sym_block_comment] = STATE(254), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1303), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1121), [sym__constant_expr] = STATE(1710), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(1061), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(1058), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(1059), + [sym_lambda_expr] = STATE(1059), + [sym_elvis_orelse_expr] = STATE(1059), + [sym_optional_expr] = STATE(1059), + [sym_cast_expr] = STATE(1059), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(1059), + [sym_binary_expr] = STATE(1059), + [sym_call_expr] = STATE(1059), + [sym_update_expr] = STATE(1059), + [sym_rethrow_expr] = STATE(1059), + [sym_trailing_generic_expr] = STATE(1059), + [sym_subscript_expr] = STATE(1059), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(1356), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -54636,113 +52180,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [255] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(255), - [sym_doc_comment] = STATE(255), - [sym_block_comment] = STATE(255), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1230), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [246] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(246), + [sym_doc_comment] = STATE(246), + [sym_block_comment] = STATE(246), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1113), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1505), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_default] = ACTIONS(1319), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -54765,113 +52307,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [256] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(256), - [sym_doc_comment] = STATE(256), - [sym_block_comment] = STATE(256), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1284), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [247] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(247), + [sym_doc_comment] = STATE(247), + [sym_block_comment] = STATE(247), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1121), + [sym__constant_expr] = STATE(2146), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(1061), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(1058), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(1059), + [sym_lambda_expr] = STATE(1059), + [sym_elvis_orelse_expr] = STATE(1059), + [sym_optional_expr] = STATE(1059), + [sym_cast_expr] = STATE(1059), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(1059), + [sym_binary_expr] = STATE(1059), + [sym_call_expr] = STATE(1059), + [sym_update_expr] = STATE(1059), + [sym_rethrow_expr] = STATE(1059), + [sym_trailing_generic_expr] = STATE(1059), + [sym_subscript_expr] = STATE(1059), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -54894,113 +52434,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [257] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(257), - [sym_doc_comment] = STATE(257), - [sym_block_comment] = STATE(257), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1227), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [248] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(248), + [sym_doc_comment] = STATE(248), + [sym_block_comment] = STATE(248), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1121), + [sym__constant_expr] = STATE(2004), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(1061), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(1058), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(1059), + [sym_lambda_expr] = STATE(1059), + [sym_elvis_orelse_expr] = STATE(1059), + [sym_optional_expr] = STATE(1059), + [sym_cast_expr] = STATE(1059), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(1059), + [sym_binary_expr] = STATE(1059), + [sym_call_expr] = STATE(1059), + [sym_update_expr] = STATE(1059), + [sym_rethrow_expr] = STATE(1059), + [sym_trailing_generic_expr] = STATE(1059), + [sym_subscript_expr] = STATE(1059), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1492), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -55023,113 +52561,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [258] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(258), - [sym_doc_comment] = STATE(258), - [sym_block_comment] = STATE(258), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1301), - [sym__constant_expr] = STATE(1745), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1083), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1224), - [sym_lambda_expr] = STATE(1224), - [sym_elvis_orelse_expr] = STATE(1224), - [sym_suffix_expr] = STATE(1224), - [sym_cast_expr] = STATE(1207), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1207), - [sym_binary_expr] = STATE(1207), - [sym_call_expr] = STATE(1089), - [sym_update_expr] = STATE(1089), - [sym_rethrow_expr] = STATE(1089), - [sym_trailing_generic_expr] = STATE(1089), - [sym_subscript_expr] = STATE(1089), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [249] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(249), + [sym_doc_comment] = STATE(249), + [sym_block_comment] = STATE(249), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym__generic_arg_list] = STATE(2077), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1041), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1365), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -55152,113 +52688,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [259] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(259), - [sym_doc_comment] = STATE(259), - [sym_block_comment] = STATE(259), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1270), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [250] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(250), + [sym_doc_comment] = STATE(250), + [sym_block_comment] = STATE(250), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym__generic_arg_list] = STATE(2192), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1041), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1365), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -55281,113 +52815,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [260] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(260), - [sym_doc_comment] = STATE(260), - [sym_block_comment] = STATE(260), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1240), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [251] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(251), + [sym_doc_comment] = STATE(251), + [sym_block_comment] = STATE(251), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1082), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_SEMI] = ACTIONS(1321), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -55410,113 +52942,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [261] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(261), - [sym_doc_comment] = STATE(261), - [sym_block_comment] = STATE(261), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1231), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1445), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [252] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(252), + [sym_doc_comment] = STATE(252), + [sym_block_comment] = STATE(252), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym_catch_unwrap_list] = STATE(1887), + [sym__expr] = STATE(1024), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -55539,113 +53069,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [262] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(262), - [sym_doc_comment] = STATE(262), - [sym_block_comment] = STATE(262), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1166), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [253] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(253), + [sym_doc_comment] = STATE(253), + [sym_block_comment] = STATE(253), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1121), + [sym__constant_expr] = STATE(2194), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(1061), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(1058), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(1059), + [sym_lambda_expr] = STATE(1059), + [sym_elvis_orelse_expr] = STATE(1059), + [sym_optional_expr] = STATE(1059), + [sym_cast_expr] = STATE(1059), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(1059), + [sym_binary_expr] = STATE(1059), + [sym_call_expr] = STATE(1059), + [sym_update_expr] = STATE(1059), + [sym_rethrow_expr] = STATE(1059), + [sym_trailing_generic_expr] = STATE(1059), + [sym_subscript_expr] = STATE(1059), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -55668,113 +53196,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [263] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(263), - [sym_doc_comment] = STATE(263), - [sym_block_comment] = STATE(263), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1301), - [sym__constant_expr] = STATE(1763), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1083), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1224), - [sym_lambda_expr] = STATE(1224), - [sym_elvis_orelse_expr] = STATE(1224), - [sym_suffix_expr] = STATE(1224), - [sym_cast_expr] = STATE(1207), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1207), - [sym_binary_expr] = STATE(1207), - [sym_call_expr] = STATE(1089), - [sym_update_expr] = STATE(1089), - [sym_rethrow_expr] = STATE(1089), - [sym_trailing_generic_expr] = STATE(1089), - [sym_subscript_expr] = STATE(1089), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [254] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(254), + [sym_doc_comment] = STATE(254), + [sym_block_comment] = STATE(254), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1121), + [sym__constant_expr] = STATE(2026), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(1061), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(1058), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(1059), + [sym_lambda_expr] = STATE(1059), + [sym_elvis_orelse_expr] = STATE(1059), + [sym_optional_expr] = STATE(1059), + [sym_cast_expr] = STATE(1059), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(1059), + [sym_binary_expr] = STATE(1059), + [sym_call_expr] = STATE(1059), + [sym_update_expr] = STATE(1059), + [sym_rethrow_expr] = STATE(1059), + [sym_trailing_generic_expr] = STATE(1059), + [sym_subscript_expr] = STATE(1059), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -55797,113 +53323,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [264] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(264), - [sym_doc_comment] = STATE(264), - [sym_block_comment] = STATE(264), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1303), - [sym__constant_expr] = STATE(1724), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [255] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(255), + [sym_doc_comment] = STATE(255), + [sym_block_comment] = STATE(255), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1547), + [sym__rel_or_lambda_expr] = STATE(1641), + [sym__expr] = STATE(1063), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -55926,113 +53450,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [265] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(265), - [sym_doc_comment] = STATE(265), - [sym_block_comment] = STATE(265), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1301), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(1654), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1087), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1220), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1220), - [sym_binary_expr] = STATE(1220), - [sym_call_expr] = STATE(1088), - [sym_update_expr] = STATE(1088), - [sym_rethrow_expr] = STATE(1088), - [sym_trailing_generic_expr] = STATE(1088), - [sym_subscript_expr] = STATE(1088), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [256] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(256), + [sym_doc_comment] = STATE(256), + [sym_block_comment] = STATE(256), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1121), + [sym__constant_expr] = STATE(2027), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(1061), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(1058), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(1059), + [sym_lambda_expr] = STATE(1059), + [sym_elvis_orelse_expr] = STATE(1059), + [sym_optional_expr] = STATE(1059), + [sym_cast_expr] = STATE(1059), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(1059), + [sym_binary_expr] = STATE(1059), + [sym_call_expr] = STATE(1059), + [sym_update_expr] = STATE(1059), + [sym_rethrow_expr] = STATE(1059), + [sym_trailing_generic_expr] = STATE(1059), + [sym_subscript_expr] = STATE(1059), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -56055,113 +53577,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [266] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(266), - [sym_doc_comment] = STATE(266), - [sym_block_comment] = STATE(266), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1095), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [257] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(257), + [sym_doc_comment] = STATE(257), + [sym_block_comment] = STATE(257), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1121), + [sym__constant_expr] = STATE(2196), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(1061), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(1058), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(1059), + [sym_lambda_expr] = STATE(1059), + [sym_elvis_orelse_expr] = STATE(1059), + [sym_optional_expr] = STATE(1059), + [sym_cast_expr] = STATE(1059), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(1059), + [sym_binary_expr] = STATE(1059), + [sym_call_expr] = STATE(1059), + [sym_update_expr] = STATE(1059), + [sym_rethrow_expr] = STATE(1059), + [sym_trailing_generic_expr] = STATE(1059), + [sym_subscript_expr] = STATE(1059), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -56184,113 +53704,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [267] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(267), - [sym_doc_comment] = STATE(267), - [sym_block_comment] = STATE(267), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1171), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(1658), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1094), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1225), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1225), - [sym_binary_expr] = STATE(1225), - [sym_call_expr] = STATE(1120), - [sym_update_expr] = STATE(1120), - [sym_rethrow_expr] = STATE(1120), - [sym_trailing_generic_expr] = STATE(1120), - [sym_subscript_expr] = STATE(1120), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [258] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(258), + [sym_doc_comment] = STATE(258), + [sym_block_comment] = STATE(258), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1121), + [sym__constant_expr] = STATE(1855), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(1061), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(1058), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(1059), + [sym_lambda_expr] = STATE(1059), + [sym_elvis_orelse_expr] = STATE(1059), + [sym_optional_expr] = STATE(1059), + [sym_cast_expr] = STATE(1059), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(1059), + [sym_binary_expr] = STATE(1059), + [sym_call_expr] = STATE(1059), + [sym_update_expr] = STATE(1059), + [sym_rethrow_expr] = STATE(1059), + [sym_trailing_generic_expr] = STATE(1059), + [sym_subscript_expr] = STATE(1059), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -56313,113 +53831,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [268] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(268), - [sym_doc_comment] = STATE(268), - [sym_block_comment] = STATE(268), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1239), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [259] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(259), + [sym_doc_comment] = STATE(259), + [sym_block_comment] = STATE(259), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1121), + [sym__constant_expr] = STATE(2024), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(1061), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(1058), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(1059), + [sym_lambda_expr] = STATE(1059), + [sym_elvis_orelse_expr] = STATE(1059), + [sym_optional_expr] = STATE(1059), + [sym_cast_expr] = STATE(1059), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(1059), + [sym_binary_expr] = STATE(1059), + [sym_call_expr] = STATE(1059), + [sym_update_expr] = STATE(1059), + [sym_rethrow_expr] = STATE(1059), + [sym_trailing_generic_expr] = STATE(1059), + [sym_subscript_expr] = STATE(1059), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1496), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -56442,113 +53958,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [269] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(269), - [sym_doc_comment] = STATE(269), - [sym_block_comment] = STATE(269), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1093), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [260] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(260), + [sym_doc_comment] = STATE(260), + [sym_block_comment] = STATE(260), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1110), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_SEMI] = ACTIONS(1323), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -56571,113 +54085,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [270] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(270), - [sym_doc_comment] = STATE(270), - [sym_block_comment] = STATE(270), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1301), - [sym__constant_expr] = STATE(1201), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1003), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1106), - [sym_lambda_expr] = STATE(1106), - [sym_elvis_orelse_expr] = STATE(1106), - [sym_suffix_expr] = STATE(1106), - [sym_cast_expr] = STATE(1104), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1104), - [sym_binary_expr] = STATE(1104), - [sym_call_expr] = STATE(1000), - [sym_update_expr] = STATE(1000), - [sym_rethrow_expr] = STATE(1000), - [sym_trailing_generic_expr] = STATE(1000), - [sym_subscript_expr] = STATE(1000), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [261] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(261), + [sym_doc_comment] = STATE(261), + [sym_block_comment] = STATE(261), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1108), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_SEMI] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -56700,113 +54212,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [271] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(271), - [sym_doc_comment] = STATE(271), - [sym_block_comment] = STATE(271), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1097), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [262] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(262), + [sym_doc_comment] = STATE(262), + [sym_block_comment] = STATE(262), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1121), + [sym__constant_expr] = STATE(2036), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(1061), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(1058), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(1059), + [sym_lambda_expr] = STATE(1059), + [sym_elvis_orelse_expr] = STATE(1059), + [sym_optional_expr] = STATE(1059), + [sym_cast_expr] = STATE(1059), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(1059), + [sym_binary_expr] = STATE(1059), + [sym_call_expr] = STATE(1059), + [sym_update_expr] = STATE(1059), + [sym_rethrow_expr] = STATE(1059), + [sym_trailing_generic_expr] = STATE(1059), + [sym_subscript_expr] = STATE(1059), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -56829,113 +54339,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [272] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(272), - [sym_doc_comment] = STATE(272), - [sym_block_comment] = STATE(272), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1096), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [263] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(263), + [sym_doc_comment] = STATE(263), + [sym_block_comment] = STATE(263), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1121), + [sym__constant_expr] = STATE(1757), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(1061), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(1058), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(1059), + [sym_lambda_expr] = STATE(1059), + [sym_elvis_orelse_expr] = STATE(1059), + [sym_optional_expr] = STATE(1059), + [sym_cast_expr] = STATE(1059), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(1059), + [sym_binary_expr] = STATE(1059), + [sym_call_expr] = STATE(1059), + [sym_update_expr] = STATE(1059), + [sym_rethrow_expr] = STATE(1059), + [sym_trailing_generic_expr] = STATE(1059), + [sym_subscript_expr] = STATE(1059), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -56958,113 +54466,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [273] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(273), - [sym_doc_comment] = STATE(273), - [sym_block_comment] = STATE(273), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1123), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [264] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(264), + [sym_doc_comment] = STATE(264), + [sym_block_comment] = STATE(264), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1121), + [sym__constant_expr] = STATE(2069), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(1061), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(1058), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(1059), + [sym_lambda_expr] = STATE(1059), + [sym_elvis_orelse_expr] = STATE(1059), + [sym_optional_expr] = STATE(1059), + [sym_cast_expr] = STATE(1059), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(1059), + [sym_binary_expr] = STATE(1059), + [sym_call_expr] = STATE(1059), + [sym_update_expr] = STATE(1059), + [sym_rethrow_expr] = STATE(1059), + [sym_trailing_generic_expr] = STATE(1059), + [sym_subscript_expr] = STATE(1059), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -57087,113 +54593,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [274] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(274), - [sym_doc_comment] = STATE(274), - [sym_block_comment] = STATE(274), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1101), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [265] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(265), + [sym_doc_comment] = STATE(265), + [sym_block_comment] = STATE(265), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1121), + [sym__constant_expr] = STATE(2104), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(1061), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(1058), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(1059), + [sym_lambda_expr] = STATE(1059), + [sym_elvis_orelse_expr] = STATE(1059), + [sym_optional_expr] = STATE(1059), + [sym_cast_expr] = STATE(1059), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(1059), + [sym_binary_expr] = STATE(1059), + [sym_call_expr] = STATE(1059), + [sym_update_expr] = STATE(1059), + [sym_rethrow_expr] = STATE(1059), + [sym_trailing_generic_expr] = STATE(1059), + [sym_subscript_expr] = STATE(1059), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -57216,113 +54720,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [275] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(275), - [sym_doc_comment] = STATE(275), - [sym_block_comment] = STATE(275), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1102), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [266] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(266), + [sym_doc_comment] = STATE(266), + [sym_block_comment] = STATE(266), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1107), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_SEMI] = ACTIONS(1327), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -57345,113 +54847,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [276] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(276), - [sym_doc_comment] = STATE(276), - [sym_block_comment] = STATE(276), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1103), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [267] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(267), + [sym_doc_comment] = STATE(267), + [sym_block_comment] = STATE(267), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1121), + [sym__constant_expr] = STATE(2133), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(1061), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(1058), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(1059), + [sym_lambda_expr] = STATE(1059), + [sym_elvis_orelse_expr] = STATE(1059), + [sym_optional_expr] = STATE(1059), + [sym_cast_expr] = STATE(1059), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(1059), + [sym_binary_expr] = STATE(1059), + [sym_call_expr] = STATE(1059), + [sym_update_expr] = STATE(1059), + [sym_rethrow_expr] = STATE(1059), + [sym_trailing_generic_expr] = STATE(1059), + [sym_subscript_expr] = STATE(1059), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -57474,113 +54974,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [277] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(277), - [sym_doc_comment] = STATE(277), - [sym_block_comment] = STATE(277), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1108), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [268] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(268), + [sym_doc_comment] = STATE(268), + [sym_block_comment] = STATE(268), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1119), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_RBRACK] = ACTIONS(1329), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(1331), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -57603,113 +55101,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [278] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(278), - [sym_doc_comment] = STATE(278), - [sym_block_comment] = STATE(278), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1109), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [269] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(269), + [sym_doc_comment] = STATE(269), + [sym_block_comment] = STATE(269), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1121), + [sym__constant_expr] = STATE(1854), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(1061), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(1058), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(1059), + [sym_lambda_expr] = STATE(1059), + [sym_elvis_orelse_expr] = STATE(1059), + [sym_optional_expr] = STATE(1059), + [sym_cast_expr] = STATE(1059), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(1059), + [sym_binary_expr] = STATE(1059), + [sym_call_expr] = STATE(1059), + [sym_update_expr] = STATE(1059), + [sym_rethrow_expr] = STATE(1059), + [sym_trailing_generic_expr] = STATE(1059), + [sym_subscript_expr] = STATE(1059), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -57732,113 +55228,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [279] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(279), - [sym_doc_comment] = STATE(279), - [sym_block_comment] = STATE(279), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1113), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [270] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(270), + [sym_doc_comment] = STATE(270), + [sym_block_comment] = STATE(270), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1121), + [sym__constant_expr] = STATE(2162), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(1061), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(1058), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(1059), + [sym_lambda_expr] = STATE(1059), + [sym_elvis_orelse_expr] = STATE(1059), + [sym_optional_expr] = STATE(1059), + [sym_cast_expr] = STATE(1059), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(1059), + [sym_binary_expr] = STATE(1059), + [sym_call_expr] = STATE(1059), + [sym_update_expr] = STATE(1059), + [sym_rethrow_expr] = STATE(1059), + [sym_trailing_generic_expr] = STATE(1059), + [sym_subscript_expr] = STATE(1059), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -57861,113 +55355,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [280] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(280), - [sym_doc_comment] = STATE(280), - [sym_block_comment] = STATE(280), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1114), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [271] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(271), + [sym_doc_comment] = STATE(271), + [sym_block_comment] = STATE(271), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1077), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_RBRACK] = ACTIONS(1333), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(1335), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -57990,113 +55482,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [281] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(281), - [sym_doc_comment] = STATE(281), - [sym_block_comment] = STATE(281), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1115), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [272] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(272), + [sym_doc_comment] = STATE(272), + [sym_block_comment] = STATE(272), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(831), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -58119,113 +55608,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [282] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(282), - [sym_doc_comment] = STATE(282), - [sym_block_comment] = STATE(282), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1116), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [273] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(273), + [sym_doc_comment] = STATE(273), + [sym_block_comment] = STATE(273), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1075), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -58248,113 +55734,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [283] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(283), - [sym_doc_comment] = STATE(283), - [sym_block_comment] = STATE(283), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1117), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [274] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(274), + [sym_doc_comment] = STATE(274), + [sym_block_comment] = STATE(274), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1076), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(1337), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -58377,113 +55860,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [284] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(284), - [sym_doc_comment] = STATE(284), - [sym_block_comment] = STATE(284), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1118), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [275] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(275), + [sym_doc_comment] = STATE(275), + [sym_block_comment] = STATE(275), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1117), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -58506,113 +55986,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [285] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(285), - [sym_doc_comment] = STATE(285), - [sym_block_comment] = STATE(285), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1119), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [276] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(276), + [sym_doc_comment] = STATE(276), + [sym_block_comment] = STATE(276), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(931), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -58635,113 +56112,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [286] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(286), - [sym_doc_comment] = STATE(286), - [sym_block_comment] = STATE(286), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), + [277] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(277), + [sym_doc_comment] = STATE(277), + [sym_block_comment] = STATE(277), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), [sym__expr] = STATE(1121), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(1129), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -58764,113 +56238,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [287] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(287), - [sym_doc_comment] = STATE(287), - [sym_block_comment] = STATE(287), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1125), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [278] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(278), + [sym_doc_comment] = STATE(278), + [sym_block_comment] = STATE(278), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1039), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -58893,113 +56364,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [288] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(288), - [sym_doc_comment] = STATE(288), - [sym_block_comment] = STATE(288), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1184), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [279] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(279), + [sym_doc_comment] = STATE(279), + [sym_block_comment] = STATE(279), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1038), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -59022,113 +56490,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [289] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(289), - [sym_doc_comment] = STATE(289), - [sym_block_comment] = STATE(289), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1268), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1554), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [280] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(280), + [sym_doc_comment] = STATE(280), + [sym_block_comment] = STATE(280), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(873), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -59151,113 +56616,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [290] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(290), - [sym_doc_comment] = STATE(290), - [sym_block_comment] = STATE(290), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1303), - [sym__constant_expr] = STATE(1838), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [281] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(281), + [sym_doc_comment] = STATE(281), + [sym_block_comment] = STATE(281), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(872), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -59280,113 +56742,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [291] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(291), - [sym_doc_comment] = STATE(291), - [sym_block_comment] = STATE(291), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1303), - [sym__constant_expr] = STATE(1128), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1003), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1106), - [sym_lambda_expr] = STATE(1106), - [sym_elvis_orelse_expr] = STATE(1106), - [sym_suffix_expr] = STATE(1106), - [sym_cast_expr] = STATE(1104), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1104), - [sym_binary_expr] = STATE(1104), - [sym_call_expr] = STATE(1000), - [sym_update_expr] = STATE(1000), - [sym_rethrow_expr] = STATE(1000), - [sym_trailing_generic_expr] = STATE(1000), - [sym_subscript_expr] = STATE(1000), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [282] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(282), + [sym_doc_comment] = STATE(282), + [sym_block_comment] = STATE(282), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(870), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -59409,113 +56868,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [292] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(292), - [sym_doc_comment] = STATE(292), - [sym_block_comment] = STATE(292), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1303), - [sym__constant_expr] = STATE(1134), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1003), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1106), - [sym_lambda_expr] = STATE(1106), - [sym_elvis_orelse_expr] = STATE(1106), - [sym_suffix_expr] = STATE(1106), - [sym_cast_expr] = STATE(1104), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1104), - [sym_binary_expr] = STATE(1104), - [sym_call_expr] = STATE(1000), - [sym_update_expr] = STATE(1000), - [sym_rethrow_expr] = STATE(1000), - [sym_trailing_generic_expr] = STATE(1000), - [sym_subscript_expr] = STATE(1000), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [283] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(283), + [sym_doc_comment] = STATE(283), + [sym_block_comment] = STATE(283), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(869), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -59538,113 +56994,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [293] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(293), - [sym_doc_comment] = STATE(293), - [sym_block_comment] = STATE(293), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1303), - [sym__constant_expr] = STATE(1867), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [284] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(284), + [sym_doc_comment] = STATE(284), + [sym_block_comment] = STATE(284), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(868), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -59667,113 +57120,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [294] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(294), - [sym_doc_comment] = STATE(294), - [sym_block_comment] = STATE(294), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1105), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [285] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(285), + [sym_doc_comment] = STATE(285), + [sym_block_comment] = STATE(285), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(867), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -59796,113 +57246,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [295] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(295), - [sym_doc_comment] = STATE(295), - [sym_block_comment] = STATE(295), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1303), - [sym__constant_expr] = STATE(1869), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [286] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(286), + [sym_doc_comment] = STATE(286), + [sym_block_comment] = STATE(286), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(866), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -59925,113 +57372,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [296] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(296), - [sym_doc_comment] = STATE(296), - [sym_block_comment] = STATE(296), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1293), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [287] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(287), + [sym_doc_comment] = STATE(287), + [sym_block_comment] = STATE(287), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(864), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -60054,113 +57498,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [297] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(297), - [sym_doc_comment] = STATE(297), - [sym_block_comment] = STATE(297), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1303), - [sym__constant_expr] = STATE(1692), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [288] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(288), + [sym_doc_comment] = STATE(288), + [sym_block_comment] = STATE(288), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(863), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -60183,113 +57624,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [298] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(298), - [sym_doc_comment] = STATE(298), - [sym_block_comment] = STATE(298), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1301), - [sym__constant_expr] = STATE(1731), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1083), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1224), - [sym_lambda_expr] = STATE(1224), - [sym_elvis_orelse_expr] = STATE(1224), - [sym_suffix_expr] = STATE(1224), - [sym_cast_expr] = STATE(1207), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1207), - [sym_binary_expr] = STATE(1207), - [sym_call_expr] = STATE(1089), - [sym_update_expr] = STATE(1089), - [sym_rethrow_expr] = STATE(1089), - [sym_trailing_generic_expr] = STATE(1089), - [sym_subscript_expr] = STATE(1089), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [289] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(289), + [sym_doc_comment] = STATE(289), + [sym_block_comment] = STATE(289), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(862), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -60312,113 +57750,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [299] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(299), - [sym_doc_comment] = STATE(299), - [sym_block_comment] = STATE(299), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1276), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [290] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(290), + [sym_doc_comment] = STATE(290), + [sym_block_comment] = STATE(290), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(857), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -60441,113 +57876,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [300] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(300), - [sym_doc_comment] = STATE(300), - [sym_block_comment] = STATE(300), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1186), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [291] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(291), + [sym_doc_comment] = STATE(291), + [sym_block_comment] = STATE(291), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1021), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -60570,113 +58002,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [301] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(301), - [sym_doc_comment] = STATE(301), - [sym_block_comment] = STATE(301), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1261), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [292] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(292), + [sym_doc_comment] = STATE(292), + [sym_block_comment] = STATE(292), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1049), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -60699,113 +58128,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [302] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(302), - [sym_doc_comment] = STATE(302), - [sym_block_comment] = STATE(302), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1301), - [sym__constant_expr] = STATE(1196), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1003), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1106), - [sym_lambda_expr] = STATE(1106), - [sym_elvis_orelse_expr] = STATE(1106), - [sym_suffix_expr] = STATE(1106), - [sym_cast_expr] = STATE(1104), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1104), - [sym_binary_expr] = STATE(1104), - [sym_call_expr] = STATE(1000), - [sym_update_expr] = STATE(1000), - [sym_rethrow_expr] = STATE(1000), - [sym_trailing_generic_expr] = STATE(1000), - [sym_subscript_expr] = STATE(1000), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [293] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(293), + [sym_doc_comment] = STATE(293), + [sym_block_comment] = STATE(293), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(855), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -60828,113 +58254,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [303] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(303), - [sym_doc_comment] = STATE(303), - [sym_block_comment] = STATE(303), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1090), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [294] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(294), + [sym_doc_comment] = STATE(294), + [sym_block_comment] = STATE(294), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1045), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -60957,113 +58380,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [304] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(304), - [sym_doc_comment] = STATE(304), - [sym_block_comment] = STATE(304), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1301), - [sym__constant_expr] = STATE(1707), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1083), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1224), - [sym_lambda_expr] = STATE(1224), - [sym_elvis_orelse_expr] = STATE(1224), - [sym_suffix_expr] = STATE(1224), - [sym_cast_expr] = STATE(1207), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1207), - [sym_binary_expr] = STATE(1207), - [sym_call_expr] = STATE(1089), - [sym_update_expr] = STATE(1089), - [sym_rethrow_expr] = STATE(1089), - [sym_trailing_generic_expr] = STATE(1089), - [sym_subscript_expr] = STATE(1089), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [295] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(295), + [sym_doc_comment] = STATE(295), + [sym_block_comment] = STATE(295), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1042), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -61086,113 +58506,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [305] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(305), - [sym_doc_comment] = STATE(305), - [sym_block_comment] = STATE(305), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1250), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [296] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(296), + [sym_doc_comment] = STATE(296), + [sym_block_comment] = STATE(296), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1068), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1439), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -61215,113 +58632,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [306] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(306), - [sym_doc_comment] = STATE(306), - [sym_block_comment] = STATE(306), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1237), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [297] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(297), + [sym_doc_comment] = STATE(297), + [sym_block_comment] = STATE(297), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1105), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -61344,113 +58758,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [307] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(307), - [sym_doc_comment] = STATE(307), - [sym_block_comment] = STATE(307), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1303), - [sym__constant_expr] = STATE(1670), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [298] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(298), + [sym_doc_comment] = STATE(298), + [sym_block_comment] = STATE(298), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1084), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -61473,113 +58884,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [308] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(308), - [sym_doc_comment] = STATE(308), - [sym_block_comment] = STATE(308), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1303), - [sym__constant_expr] = STATE(1578), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1083), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1224), - [sym_lambda_expr] = STATE(1224), - [sym_elvis_orelse_expr] = STATE(1224), - [sym_suffix_expr] = STATE(1224), - [sym_cast_expr] = STATE(1207), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1207), - [sym_binary_expr] = STATE(1207), - [sym_call_expr] = STATE(1089), - [sym_update_expr] = STATE(1089), - [sym_rethrow_expr] = STATE(1089), - [sym_trailing_generic_expr] = STATE(1089), - [sym_subscript_expr] = STATE(1089), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [299] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(299), + [sym_doc_comment] = STATE(299), + [sym_block_comment] = STATE(299), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1044), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -61602,113 +59010,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [309] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(309), - [sym_doc_comment] = STATE(309), - [sym_block_comment] = STATE(309), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1160), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [300] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(300), + [sym_doc_comment] = STATE(300), + [sym_block_comment] = STATE(300), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1037), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -61731,113 +59136,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [310] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(310), - [sym_doc_comment] = STATE(310), - [sym_block_comment] = STATE(310), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1161), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [301] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(301), + [sym_doc_comment] = STATE(301), + [sym_block_comment] = STATE(301), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1026), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -61860,113 +59262,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [311] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(311), - [sym_doc_comment] = STATE(311), - [sym_block_comment] = STATE(311), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1259), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [302] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(302), + [sym_doc_comment] = STATE(302), + [sym_block_comment] = STATE(302), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1062), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -61989,113 +59388,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [312] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(312), - [sym_doc_comment] = STATE(312), - [sym_block_comment] = STATE(312), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1162), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [303] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(303), + [sym_doc_comment] = STATE(303), + [sym_block_comment] = STATE(303), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1086), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -62118,113 +59514,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [313] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(313), - [sym_doc_comment] = STATE(313), - [sym_block_comment] = STATE(313), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1168), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [304] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(304), + [sym_doc_comment] = STATE(304), + [sym_block_comment] = STATE(304), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1112), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1574), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -62247,371 +59640,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [314] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(314), - [sym_doc_comment] = STATE(314), - [sym_block_comment] = STATE(314), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1303), - [sym__constant_expr] = STATE(1129), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1003), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1106), - [sym_lambda_expr] = STATE(1106), - [sym_elvis_orelse_expr] = STATE(1106), - [sym_suffix_expr] = STATE(1106), - [sym_cast_expr] = STATE(1104), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1104), - [sym_binary_expr] = STATE(1104), - [sym_call_expr] = STATE(1000), - [sym_update_expr] = STATE(1000), - [sym_rethrow_expr] = STATE(1000), - [sym_trailing_generic_expr] = STATE(1000), - [sym_subscript_expr] = STATE(1000), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), - }, - [315] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(315), - [sym_doc_comment] = STATE(315), - [sym_block_comment] = STATE(315), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1172), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), - }, - [316] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(316), - [sym_doc_comment] = STATE(316), - [sym_block_comment] = STATE(316), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1178), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [305] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(305), + [sym_doc_comment] = STATE(305), + [sym_block_comment] = STATE(305), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1034), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1340), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -62634,113 +59766,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [317] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(317), - [sym_doc_comment] = STATE(317), - [sym_block_comment] = STATE(317), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1179), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [306] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(306), + [sym_doc_comment] = STATE(306), + [sym_block_comment] = STATE(306), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1121), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(1106), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -62763,113 +59892,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [318] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(318), - [sym_doc_comment] = STATE(318), - [sym_block_comment] = STATE(318), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1180), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [307] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(307), + [sym_doc_comment] = STATE(307), + [sym_block_comment] = STATE(307), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(933), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -62892,113 +60018,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [319] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(319), - [sym_doc_comment] = STATE(319), - [sym_block_comment] = STATE(319), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1182), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [308] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(308), + [sym_doc_comment] = STATE(308), + [sym_block_comment] = STATE(308), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(886), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -63021,113 +60144,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [320] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(320), - [sym_doc_comment] = STATE(320), - [sym_block_comment] = STATE(320), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1303), - [sym__constant_expr] = STATE(1651), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [309] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(309), + [sym_doc_comment] = STATE(309), + [sym_block_comment] = STATE(309), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1072), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -63150,113 +60270,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [321] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(321), - [sym_doc_comment] = STATE(321), - [sym_block_comment] = STATE(321), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1187), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [310] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(310), + [sym_doc_comment] = STATE(310), + [sym_block_comment] = STATE(310), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(907), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -63279,113 +60396,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [322] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(322), - [sym_doc_comment] = STATE(322), - [sym_block_comment] = STATE(322), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1303), - [sym__constant_expr] = STATE(1845), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [311] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(311), + [sym_doc_comment] = STATE(311), + [sym_block_comment] = STATE(311), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(924), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -63408,113 +60522,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [323] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(323), - [sym_doc_comment] = STATE(323), - [sym_block_comment] = STATE(323), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1303), - [sym__constant_expr] = STATE(1844), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [312] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(312), + [sym_doc_comment] = STATE(312), + [sym_block_comment] = STATE(312), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1096), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -63537,113 +60648,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [324] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(324), - [sym_doc_comment] = STATE(324), - [sym_block_comment] = STATE(324), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1303), - [sym__constant_expr] = STATE(1631), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [313] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(313), + [sym_doc_comment] = STATE(313), + [sym_block_comment] = STATE(313), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(890), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -63666,113 +60774,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [325] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(325), - [sym_doc_comment] = STATE(325), - [sym_block_comment] = STATE(325), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1189), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [314] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(314), + [sym_doc_comment] = STATE(314), + [sym_block_comment] = STATE(314), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1073), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -63795,113 +60900,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [326] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(326), - [sym_doc_comment] = STATE(326), - [sym_block_comment] = STATE(326), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1303), - [sym__constant_expr] = STATE(1634), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [315] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(315), + [sym_doc_comment] = STATE(315), + [sym_block_comment] = STATE(315), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1115), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(1339), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -63924,113 +61026,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [327] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(327), - [sym_doc_comment] = STATE(327), - [sym_block_comment] = STATE(327), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1191), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [316] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(316), + [sym_doc_comment] = STATE(316), + [sym_block_comment] = STATE(316), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(905), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -64053,113 +61152,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [328] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(328), - [sym_doc_comment] = STATE(328), - [sym_block_comment] = STATE(328), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1268), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1635), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [317] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(317), + [sym_doc_comment] = STATE(317), + [sym_block_comment] = STATE(317), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(908), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -64182,113 +61278,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [329] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(329), - [sym_doc_comment] = STATE(329), - [sym_block_comment] = STATE(329), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1292), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [318] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(318), + [sym_doc_comment] = STATE(318), + [sym_block_comment] = STATE(318), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1083), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(1341), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -64311,113 +61404,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [330] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(330), - [sym_doc_comment] = STATE(330), - [sym_block_comment] = STATE(330), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1192), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [319] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(319), + [sym_doc_comment] = STATE(319), + [sym_block_comment] = STATE(319), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1116), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -64440,113 +61530,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [331] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(331), - [sym_doc_comment] = STATE(331), - [sym_block_comment] = STATE(331), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1193), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [320] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(320), + [sym_doc_comment] = STATE(320), + [sym_block_comment] = STATE(320), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1099), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -64569,113 +61656,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [332] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(332), - [sym_doc_comment] = STATE(332), - [sym_block_comment] = STATE(332), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1185), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [321] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(321), + [sym_doc_comment] = STATE(321), + [sym_block_comment] = STATE(321), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(947), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -64698,113 +61782,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [333] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(333), - [sym_doc_comment] = STATE(333), - [sym_block_comment] = STATE(333), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1159), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [322] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(322), + [sym_doc_comment] = STATE(322), + [sym_block_comment] = STATE(322), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1081), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -64827,113 +61908,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [334] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(334), - [sym_doc_comment] = STATE(334), - [sym_block_comment] = STATE(334), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1173), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [323] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(323), + [sym_doc_comment] = STATE(323), + [sym_block_comment] = STATE(323), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1098), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -64956,113 +62034,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [335] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(335), - [sym_doc_comment] = STATE(335), - [sym_block_comment] = STATE(335), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1303), - [sym__constant_expr] = STATE(1821), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [324] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(324), + [sym_doc_comment] = STATE(324), + [sym_block_comment] = STATE(324), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(917), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -65085,113 +62160,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [336] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(336), - [sym_doc_comment] = STATE(336), - [sym_block_comment] = STATE(336), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1171), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [325] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(325), + [sym_doc_comment] = STATE(325), + [sym_block_comment] = STATE(325), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(918), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -65214,113 +62286,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [337] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(337), - [sym_doc_comment] = STATE(337), - [sym_block_comment] = STATE(337), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1301), - [sym__constant_expr] = STATE(1689), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1083), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1224), - [sym_lambda_expr] = STATE(1224), - [sym_elvis_orelse_expr] = STATE(1224), - [sym_suffix_expr] = STATE(1224), - [sym_cast_expr] = STATE(1207), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1207), - [sym_binary_expr] = STATE(1207), - [sym_call_expr] = STATE(1089), - [sym_update_expr] = STATE(1089), - [sym_rethrow_expr] = STATE(1089), - [sym_trailing_generic_expr] = STATE(1089), - [sym_subscript_expr] = STATE(1089), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [326] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(326), + [sym_doc_comment] = STATE(326), + [sym_block_comment] = STATE(326), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1103), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -65343,113 +62412,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [338] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(338), - [sym_doc_comment] = STATE(338), - [sym_block_comment] = STATE(338), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1286), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [327] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(327), + [sym_doc_comment] = STATE(327), + [sym_block_comment] = STATE(327), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1112), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -65472,113 +62538,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [339] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(339), - [sym_doc_comment] = STATE(339), - [sym_block_comment] = STATE(339), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1301), - [sym__constant_expr] = STATE(1551), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1083), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1224), - [sym_lambda_expr] = STATE(1224), - [sym_elvis_orelse_expr] = STATE(1224), - [sym_suffix_expr] = STATE(1224), - [sym_cast_expr] = STATE(1207), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1207), - [sym_binary_expr] = STATE(1207), - [sym_call_expr] = STATE(1089), - [sym_update_expr] = STATE(1089), - [sym_rethrow_expr] = STATE(1089), - [sym_trailing_generic_expr] = STATE(1089), - [sym_subscript_expr] = STATE(1089), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [328] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(328), + [sym_doc_comment] = STATE(328), + [sym_block_comment] = STATE(328), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(944), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -65601,113 +62664,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [340] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(340), - [sym_doc_comment] = STATE(340), - [sym_block_comment] = STATE(340), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1303), - [sym__constant_expr] = STATE(1793), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [329] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(329), + [sym_doc_comment] = STATE(329), + [sym_block_comment] = STATE(329), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1053), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -65730,113 +62790,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [341] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(341), - [sym_doc_comment] = STATE(341), - [sym_block_comment] = STATE(341), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1234), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [330] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(330), + [sym_doc_comment] = STATE(330), + [sym_block_comment] = STATE(330), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1043), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -65859,113 +62916,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), }, - [342] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), - [sym_line_comment] = STATE(342), - [sym_doc_comment] = STATE(342), - [sym_block_comment] = STATE(342), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1301), - [sym__constant_expr] = STATE(1205), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1003), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1106), - [sym_lambda_expr] = STATE(1106), - [sym_elvis_orelse_expr] = STATE(1106), - [sym_suffix_expr] = STATE(1106), - [sym_cast_expr] = STATE(1104), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1104), - [sym_binary_expr] = STATE(1104), - [sym_call_expr] = STATE(1000), - [sym_update_expr] = STATE(1000), - [sym_rethrow_expr] = STATE(1000), - [sym_trailing_generic_expr] = STATE(1000), - [sym_subscript_expr] = STATE(1000), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), + [331] = { + [sym_char_literal] = STATE(991), + [sym_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_line_comment] = STATE(331), + [sym_doc_comment] = STATE(331), + [sym_block_comment] = STATE(331), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1355), + [sym_lambda_declaration] = STATE(1480), + [sym__expr] = STATE(1090), + [sym__ident_expr] = STATE(991), + [sym__local_ident_expr] = STATE(991), + [sym_string_expr] = STATE(991), + [sym_bytes_expr] = STATE(991), + [sym_paren_expr] = STATE(991), + [sym__base_expr] = STATE(995), + [sym_module_ident_expr] = STATE(991), + [sym_module_type_ident] = STATE(989), + [sym_initializer_list] = STATE(997), + [sym_assignment_expr] = STATE(994), + [sym_ternary_expr] = STATE(994), + [sym_lambda_expr] = STATE(994), + [sym_elvis_orelse_expr] = STATE(994), + [sym_optional_expr] = STATE(994), + [sym_cast_expr] = STATE(994), + [sym__unary_op] = STATE(310), + [sym_unary_expr] = STATE(994), + [sym_binary_expr] = STATE(994), + [sym_call_expr] = STATE(994), + [sym_update_expr] = STATE(994), + [sym_rethrow_expr] = STATE(994), + [sym_trailing_generic_expr] = STATE(994), + [sym_subscript_expr] = STATE(994), + [sym_field_expr] = STATE(991), + [sym_type_access_expr] = STATE(991), + [sym_expr_block] = STATE(991), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(1611), + [aux_sym_string_expr_repeat1] = STATE(826), + [aux_sym_bytes_expr_repeat1] = STATE(960), + [sym_ident] = ACTIONS(59), + [sym_integer_literal] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [sym_bytes_literal] = ACTIONS(69), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(71), + [sym_at_ident] = ACTIONS(73), + [sym_hash_ident] = ACTIONS(75), [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), + [sym_ct_type_ident] = ACTIONS(79), + [sym_const_ident] = ACTIONS(81), + [sym_builtin] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_fn] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLARappend] = ACTIONS(157), + [anon_sym_DOLLARconcat] = ACTIONS(157), + [anon_sym_DOLLAReval] = ACTIONS(157), + [anon_sym_DOLLARis_const] = ACTIONS(157), + [anon_sym_DOLLARsizeof] = ACTIONS(157), + [anon_sym_DOLLARstringify] = ACTIONS(157), + [anon_sym_DOLLARand] = ACTIONS(161), + [anon_sym_DOLLARdefined] = ACTIONS(161), + [anon_sym_DOLLARembed] = ACTIONS(161), + [anon_sym_DOLLARor] = ACTIONS(161), + [anon_sym_DOLLARfeature] = ACTIONS(163), + [anon_sym_DOLLARassignable] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -65988,62264 +63042,56772 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [anon_sym_DOLLARtypeof] = ACTIONS(1177), + [anon_sym_DOLLARtypefrom] = ACTIONS(1177), + [anon_sym_DOLLARvatype] = ACTIONS(1177), + [anon_sym_DOLLARevaltype] = ACTIONS(1177), + [sym_real_literal] = ACTIONS(61), + }, + [332] = { + [sym_line_comment] = STATE(332), + [sym_doc_comment] = STATE(332), + [sym_block_comment] = STATE(332), + [sym_else_part] = STATE(371), + [sym_ident] = ACTIONS(1343), + [sym_integer_literal] = ACTIONS(1345), + [anon_sym_SQUOTE] = ACTIONS(1345), + [anon_sym_DQUOTE] = ACTIONS(1345), + [anon_sym_BQUOTE] = ACTIONS(1345), + [sym_bytes_literal] = ACTIONS(1345), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1343), + [sym_at_ident] = ACTIONS(1345), + [sym_hash_ident] = ACTIONS(1345), + [sym_type_ident] = ACTIONS(1345), + [sym_ct_type_ident] = ACTIONS(1345), + [sym_const_ident] = ACTIONS(1343), + [sym_builtin] = ACTIONS(1345), + [anon_sym_LPAREN] = ACTIONS(1345), + [anon_sym_AMP] = ACTIONS(1343), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_tlocal] = ACTIONS(1343), + [anon_sym_SEMI] = ACTIONS(1345), + [anon_sym_fn] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1343), + [anon_sym_RBRACE] = ACTIONS(1345), + [anon_sym_const] = ACTIONS(1343), + [anon_sym_var] = ACTIONS(1343), + [anon_sym_return] = ACTIONS(1343), + [anon_sym_continue] = ACTIONS(1343), + [anon_sym_break] = ACTIONS(1343), + [anon_sym_defer] = ACTIONS(1343), + [anon_sym_assert] = ACTIONS(1343), + [anon_sym_case] = ACTIONS(1343), + [anon_sym_default] = ACTIONS(1343), + [anon_sym_nextcase] = ACTIONS(1343), + [anon_sym_switch] = ACTIONS(1343), + [anon_sym_AMP_AMP] = ACTIONS(1345), + [anon_sym_if] = ACTIONS(1343), + [anon_sym_else] = ACTIONS(1347), + [anon_sym_for] = ACTIONS(1343), + [anon_sym_foreach] = ACTIONS(1343), + [anon_sym_foreach_r] = ACTIONS(1343), + [anon_sym_while] = ACTIONS(1343), + [anon_sym_do] = ACTIONS(1343), + [anon_sym_int] = ACTIONS(1343), + [anon_sym_PLUS] = ACTIONS(1343), + [anon_sym_DASH] = ACTIONS(1343), + [anon_sym_STAR] = ACTIONS(1345), + [anon_sym_asm] = ACTIONS(1343), + [anon_sym_DOLLARassert] = ACTIONS(1343), + [anon_sym_DOLLARerror] = ACTIONS(1343), + [anon_sym_DOLLARecho] = ACTIONS(1343), + [anon_sym_DOLLARif] = ACTIONS(1343), + [anon_sym_DOLLARswitch] = ACTIONS(1343), + [anon_sym_DOLLARfor] = ACTIONS(1343), + [anon_sym_DOLLARforeach] = ACTIONS(1343), + [anon_sym_DOLLARalignof] = ACTIONS(1343), + [anon_sym_DOLLARextnameof] = ACTIONS(1343), + [anon_sym_DOLLARnameof] = ACTIONS(1343), + [anon_sym_DOLLARoffsetof] = ACTIONS(1343), + [anon_sym_DOLLARqnameof] = ACTIONS(1343), + [anon_sym_DOLLARvaconst] = ACTIONS(1343), + [anon_sym_DOLLARvaarg] = ACTIONS(1343), + [anon_sym_DOLLARvaref] = ACTIONS(1343), + [anon_sym_DOLLARvaexpr] = ACTIONS(1343), + [anon_sym_true] = ACTIONS(1343), + [anon_sym_false] = ACTIONS(1343), + [anon_sym_null] = ACTIONS(1343), + [anon_sym_DOLLARvacount] = ACTIONS(1343), + [anon_sym_DOLLARappend] = ACTIONS(1343), + [anon_sym_DOLLARconcat] = ACTIONS(1343), + [anon_sym_DOLLAReval] = ACTIONS(1343), + [anon_sym_DOLLARis_const] = ACTIONS(1343), + [anon_sym_DOLLARsizeof] = ACTIONS(1343), + [anon_sym_DOLLARstringify] = ACTIONS(1343), + [anon_sym_DOLLARand] = ACTIONS(1343), + [anon_sym_DOLLARdefined] = ACTIONS(1343), + [anon_sym_DOLLARembed] = ACTIONS(1343), + [anon_sym_DOLLARor] = ACTIONS(1343), + [anon_sym_DOLLARfeature] = ACTIONS(1343), + [anon_sym_DOLLARassignable] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(1345), + [anon_sym_TILDE] = ACTIONS(1345), + [anon_sym_PLUS_PLUS] = ACTIONS(1345), + [anon_sym_DASH_DASH] = ACTIONS(1345), + [anon_sym_typeid] = ACTIONS(1343), + [anon_sym_LBRACE_PIPE] = ACTIONS(1345), + [anon_sym_PIPE_RBRACE] = ACTIONS(1345), + [anon_sym_void] = ACTIONS(1343), + [anon_sym_bool] = ACTIONS(1343), + [anon_sym_char] = ACTIONS(1343), + [anon_sym_ichar] = ACTIONS(1343), + [anon_sym_short] = ACTIONS(1343), + [anon_sym_ushort] = ACTIONS(1343), + [anon_sym_uint] = ACTIONS(1343), + [anon_sym_long] = ACTIONS(1343), + [anon_sym_ulong] = ACTIONS(1343), + [anon_sym_int128] = ACTIONS(1343), + [anon_sym_uint128] = ACTIONS(1343), + [anon_sym_float] = ACTIONS(1343), + [anon_sym_double] = ACTIONS(1343), + [anon_sym_float16] = ACTIONS(1343), + [anon_sym_bfloat16] = ACTIONS(1343), + [anon_sym_float128] = ACTIONS(1343), + [anon_sym_iptr] = ACTIONS(1343), + [anon_sym_uptr] = ACTIONS(1343), + [anon_sym_isz] = ACTIONS(1343), + [anon_sym_usz] = ACTIONS(1343), + [anon_sym_anyfault] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_DOLLARtypeof] = ACTIONS(1343), + [anon_sym_DOLLARtypefrom] = ACTIONS(1343), + [anon_sym_DOLLARvatype] = ACTIONS(1343), + [anon_sym_DOLLARevaltype] = ACTIONS(1343), + [sym_real_literal] = ACTIONS(1345), + }, + [333] = { + [sym_line_comment] = STATE(333), + [sym_doc_comment] = STATE(333), + [sym_block_comment] = STATE(333), + [sym_else_part] = STATE(420), + [sym_ident] = ACTIONS(1343), + [sym_integer_literal] = ACTIONS(1345), + [anon_sym_SQUOTE] = ACTIONS(1345), + [anon_sym_DQUOTE] = ACTIONS(1345), + [anon_sym_BQUOTE] = ACTIONS(1345), + [sym_bytes_literal] = ACTIONS(1345), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1343), + [sym_at_ident] = ACTIONS(1345), + [sym_hash_ident] = ACTIONS(1345), + [sym_type_ident] = ACTIONS(1345), + [sym_ct_type_ident] = ACTIONS(1345), + [sym_const_ident] = ACTIONS(1343), + [sym_builtin] = ACTIONS(1345), + [anon_sym_LPAREN] = ACTIONS(1345), + [anon_sym_AMP] = ACTIONS(1343), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_tlocal] = ACTIONS(1343), + [anon_sym_SEMI] = ACTIONS(1345), + [anon_sym_fn] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1343), + [anon_sym_const] = ACTIONS(1343), + [anon_sym_var] = ACTIONS(1343), + [anon_sym_return] = ACTIONS(1343), + [anon_sym_continue] = ACTIONS(1343), + [anon_sym_break] = ACTIONS(1343), + [anon_sym_defer] = ACTIONS(1343), + [anon_sym_assert] = ACTIONS(1343), + [anon_sym_nextcase] = ACTIONS(1343), + [anon_sym_switch] = ACTIONS(1343), + [anon_sym_AMP_AMP] = ACTIONS(1345), + [anon_sym_if] = ACTIONS(1343), + [anon_sym_else] = ACTIONS(1349), + [anon_sym_for] = ACTIONS(1343), + [anon_sym_foreach] = ACTIONS(1343), + [anon_sym_foreach_r] = ACTIONS(1343), + [anon_sym_while] = ACTIONS(1343), + [anon_sym_do] = ACTIONS(1343), + [anon_sym_int] = ACTIONS(1343), + [anon_sym_PLUS] = ACTIONS(1343), + [anon_sym_DASH] = ACTIONS(1343), + [anon_sym_STAR] = ACTIONS(1345), + [anon_sym_asm] = ACTIONS(1343), + [anon_sym_DOLLARassert] = ACTIONS(1343), + [anon_sym_DOLLARerror] = ACTIONS(1343), + [anon_sym_DOLLARecho] = ACTIONS(1343), + [anon_sym_DOLLARif] = ACTIONS(1343), + [anon_sym_DOLLARcase] = ACTIONS(1343), + [anon_sym_DOLLARdefault] = ACTIONS(1343), + [anon_sym_DOLLARswitch] = ACTIONS(1343), + [anon_sym_DOLLARendswitch] = ACTIONS(1343), + [anon_sym_DOLLARfor] = ACTIONS(1343), + [anon_sym_DOLLARforeach] = ACTIONS(1343), + [anon_sym_DOLLARalignof] = ACTIONS(1343), + [anon_sym_DOLLARextnameof] = ACTIONS(1343), + [anon_sym_DOLLARnameof] = ACTIONS(1343), + [anon_sym_DOLLARoffsetof] = ACTIONS(1343), + [anon_sym_DOLLARqnameof] = ACTIONS(1343), + [anon_sym_DOLLARvaconst] = ACTIONS(1343), + [anon_sym_DOLLARvaarg] = ACTIONS(1343), + [anon_sym_DOLLARvaref] = ACTIONS(1343), + [anon_sym_DOLLARvaexpr] = ACTIONS(1343), + [anon_sym_true] = ACTIONS(1343), + [anon_sym_false] = ACTIONS(1343), + [anon_sym_null] = ACTIONS(1343), + [anon_sym_DOLLARvacount] = ACTIONS(1343), + [anon_sym_DOLLARappend] = ACTIONS(1343), + [anon_sym_DOLLARconcat] = ACTIONS(1343), + [anon_sym_DOLLAReval] = ACTIONS(1343), + [anon_sym_DOLLARis_const] = ACTIONS(1343), + [anon_sym_DOLLARsizeof] = ACTIONS(1343), + [anon_sym_DOLLARstringify] = ACTIONS(1343), + [anon_sym_DOLLARand] = ACTIONS(1343), + [anon_sym_DOLLARdefined] = ACTIONS(1343), + [anon_sym_DOLLARembed] = ACTIONS(1343), + [anon_sym_DOLLARor] = ACTIONS(1343), + [anon_sym_DOLLARfeature] = ACTIONS(1343), + [anon_sym_DOLLARassignable] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(1345), + [anon_sym_TILDE] = ACTIONS(1345), + [anon_sym_PLUS_PLUS] = ACTIONS(1345), + [anon_sym_DASH_DASH] = ACTIONS(1345), + [anon_sym_typeid] = ACTIONS(1343), + [anon_sym_LBRACE_PIPE] = ACTIONS(1345), + [anon_sym_void] = ACTIONS(1343), + [anon_sym_bool] = ACTIONS(1343), + [anon_sym_char] = ACTIONS(1343), + [anon_sym_ichar] = ACTIONS(1343), + [anon_sym_short] = ACTIONS(1343), + [anon_sym_ushort] = ACTIONS(1343), + [anon_sym_uint] = ACTIONS(1343), + [anon_sym_long] = ACTIONS(1343), + [anon_sym_ulong] = ACTIONS(1343), + [anon_sym_int128] = ACTIONS(1343), + [anon_sym_uint128] = ACTIONS(1343), + [anon_sym_float] = ACTIONS(1343), + [anon_sym_double] = ACTIONS(1343), + [anon_sym_float16] = ACTIONS(1343), + [anon_sym_bfloat16] = ACTIONS(1343), + [anon_sym_float128] = ACTIONS(1343), + [anon_sym_iptr] = ACTIONS(1343), + [anon_sym_uptr] = ACTIONS(1343), + [anon_sym_isz] = ACTIONS(1343), + [anon_sym_usz] = ACTIONS(1343), + [anon_sym_anyfault] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_DOLLARtypeof] = ACTIONS(1343), + [anon_sym_DOLLARtypefrom] = ACTIONS(1343), + [anon_sym_DOLLARvatype] = ACTIONS(1343), + [anon_sym_DOLLARevaltype] = ACTIONS(1343), + [sym_real_literal] = ACTIONS(1345), + }, + [334] = { + [sym_line_comment] = STATE(334), + [sym_doc_comment] = STATE(334), + [sym_block_comment] = STATE(334), + [sym_ident] = ACTIONS(1351), + [sym_integer_literal] = ACTIONS(1353), + [anon_sym_SQUOTE] = ACTIONS(1353), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_BQUOTE] = ACTIONS(1353), + [sym_bytes_literal] = ACTIONS(1353), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1351), + [sym_at_ident] = ACTIONS(1353), + [sym_hash_ident] = ACTIONS(1353), + [sym_type_ident] = ACTIONS(1353), + [sym_ct_type_ident] = ACTIONS(1353), + [sym_const_ident] = ACTIONS(1351), + [sym_builtin] = ACTIONS(1353), + [anon_sym_LPAREN] = ACTIONS(1353), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_static] = ACTIONS(1351), + [anon_sym_tlocal] = ACTIONS(1351), + [anon_sym_SEMI] = ACTIONS(1353), + [anon_sym_fn] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1351), + [anon_sym_RBRACE] = ACTIONS(1353), + [anon_sym_const] = ACTIONS(1351), + [anon_sym_var] = ACTIONS(1351), + [anon_sym_return] = ACTIONS(1351), + [anon_sym_continue] = ACTIONS(1351), + [anon_sym_break] = ACTIONS(1351), + [anon_sym_defer] = ACTIONS(1351), + [anon_sym_assert] = ACTIONS(1351), + [anon_sym_case] = ACTIONS(1351), + [anon_sym_default] = ACTIONS(1351), + [anon_sym_nextcase] = ACTIONS(1351), + [anon_sym_switch] = ACTIONS(1351), + [anon_sym_AMP_AMP] = ACTIONS(1353), + [anon_sym_if] = ACTIONS(1351), + [anon_sym_else] = ACTIONS(1351), + [anon_sym_for] = ACTIONS(1351), + [anon_sym_foreach] = ACTIONS(1351), + [anon_sym_foreach_r] = ACTIONS(1351), + [anon_sym_while] = ACTIONS(1351), + [anon_sym_do] = ACTIONS(1351), + [anon_sym_int] = ACTIONS(1351), + [anon_sym_PLUS] = ACTIONS(1351), + [anon_sym_DASH] = ACTIONS(1351), + [anon_sym_STAR] = ACTIONS(1353), + [anon_sym_asm] = ACTIONS(1351), + [anon_sym_DOLLARassert] = ACTIONS(1351), + [anon_sym_DOLLARerror] = ACTIONS(1351), + [anon_sym_DOLLARecho] = ACTIONS(1351), + [anon_sym_DOLLARif] = ACTIONS(1351), + [anon_sym_DOLLARswitch] = ACTIONS(1351), + [anon_sym_DOLLARfor] = ACTIONS(1351), + [anon_sym_DOLLARforeach] = ACTIONS(1351), + [anon_sym_DOLLARalignof] = ACTIONS(1351), + [anon_sym_DOLLARextnameof] = ACTIONS(1351), + [anon_sym_DOLLARnameof] = ACTIONS(1351), + [anon_sym_DOLLARoffsetof] = ACTIONS(1351), + [anon_sym_DOLLARqnameof] = ACTIONS(1351), + [anon_sym_DOLLARvaconst] = ACTIONS(1351), + [anon_sym_DOLLARvaarg] = ACTIONS(1351), + [anon_sym_DOLLARvaref] = ACTIONS(1351), + [anon_sym_DOLLARvaexpr] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_null] = ACTIONS(1351), + [anon_sym_DOLLARvacount] = ACTIONS(1351), + [anon_sym_DOLLARappend] = ACTIONS(1351), + [anon_sym_DOLLARconcat] = ACTIONS(1351), + [anon_sym_DOLLAReval] = ACTIONS(1351), + [anon_sym_DOLLARis_const] = ACTIONS(1351), + [anon_sym_DOLLARsizeof] = ACTIONS(1351), + [anon_sym_DOLLARstringify] = ACTIONS(1351), + [anon_sym_DOLLARand] = ACTIONS(1351), + [anon_sym_DOLLARdefined] = ACTIONS(1351), + [anon_sym_DOLLARembed] = ACTIONS(1351), + [anon_sym_DOLLARor] = ACTIONS(1351), + [anon_sym_DOLLARfeature] = ACTIONS(1351), + [anon_sym_DOLLARassignable] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_PLUS_PLUS] = ACTIONS(1353), + [anon_sym_DASH_DASH] = ACTIONS(1353), + [anon_sym_typeid] = ACTIONS(1351), + [anon_sym_LBRACE_PIPE] = ACTIONS(1353), + [anon_sym_PIPE_RBRACE] = ACTIONS(1353), + [anon_sym_void] = ACTIONS(1351), + [anon_sym_bool] = ACTIONS(1351), + [anon_sym_char] = ACTIONS(1351), + [anon_sym_ichar] = ACTIONS(1351), + [anon_sym_short] = ACTIONS(1351), + [anon_sym_ushort] = ACTIONS(1351), + [anon_sym_uint] = ACTIONS(1351), + [anon_sym_long] = ACTIONS(1351), + [anon_sym_ulong] = ACTIONS(1351), + [anon_sym_int128] = ACTIONS(1351), + [anon_sym_uint128] = ACTIONS(1351), + [anon_sym_float] = ACTIONS(1351), + [anon_sym_double] = ACTIONS(1351), + [anon_sym_float16] = ACTIONS(1351), + [anon_sym_bfloat16] = ACTIONS(1351), + [anon_sym_float128] = ACTIONS(1351), + [anon_sym_iptr] = ACTIONS(1351), + [anon_sym_uptr] = ACTIONS(1351), + [anon_sym_isz] = ACTIONS(1351), + [anon_sym_usz] = ACTIONS(1351), + [anon_sym_anyfault] = ACTIONS(1351), + [anon_sym_any] = ACTIONS(1351), + [anon_sym_DOLLARtypeof] = ACTIONS(1351), + [anon_sym_DOLLARtypefrom] = ACTIONS(1351), + [anon_sym_DOLLARvatype] = ACTIONS(1351), + [anon_sym_DOLLARevaltype] = ACTIONS(1351), + [sym_real_literal] = ACTIONS(1353), + }, + [335] = { + [sym_line_comment] = STATE(335), + [sym_doc_comment] = STATE(335), + [sym_block_comment] = STATE(335), + [sym_ident] = ACTIONS(1355), + [sym_integer_literal] = ACTIONS(1357), + [anon_sym_SQUOTE] = ACTIONS(1357), + [anon_sym_DQUOTE] = ACTIONS(1357), + [anon_sym_BQUOTE] = ACTIONS(1357), + [sym_bytes_literal] = ACTIONS(1357), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1355), + [sym_at_ident] = ACTIONS(1357), + [sym_hash_ident] = ACTIONS(1357), + [sym_type_ident] = ACTIONS(1357), + [sym_ct_type_ident] = ACTIONS(1357), + [sym_const_ident] = ACTIONS(1355), + [sym_builtin] = ACTIONS(1357), + [anon_sym_LPAREN] = ACTIONS(1357), + [anon_sym_AMP] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1355), + [anon_sym_tlocal] = ACTIONS(1355), + [anon_sym_SEMI] = ACTIONS(1357), + [anon_sym_fn] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_RBRACE] = ACTIONS(1357), + [anon_sym_const] = ACTIONS(1355), + [anon_sym_var] = ACTIONS(1355), + [anon_sym_return] = ACTIONS(1355), + [anon_sym_continue] = ACTIONS(1355), + [anon_sym_break] = ACTIONS(1355), + [anon_sym_defer] = ACTIONS(1355), + [anon_sym_assert] = ACTIONS(1355), + [anon_sym_case] = ACTIONS(1355), + [anon_sym_default] = ACTIONS(1355), + [anon_sym_nextcase] = ACTIONS(1355), + [anon_sym_switch] = ACTIONS(1355), + [anon_sym_AMP_AMP] = ACTIONS(1357), + [anon_sym_if] = ACTIONS(1355), + [anon_sym_else] = ACTIONS(1355), + [anon_sym_for] = ACTIONS(1355), + [anon_sym_foreach] = ACTIONS(1355), + [anon_sym_foreach_r] = ACTIONS(1355), + [anon_sym_while] = ACTIONS(1355), + [anon_sym_do] = ACTIONS(1355), + [anon_sym_int] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1355), + [anon_sym_DASH] = ACTIONS(1355), + [anon_sym_STAR] = ACTIONS(1357), + [anon_sym_asm] = ACTIONS(1355), + [anon_sym_DOLLARassert] = ACTIONS(1355), + [anon_sym_DOLLARerror] = ACTIONS(1355), + [anon_sym_DOLLARecho] = ACTIONS(1355), + [anon_sym_DOLLARif] = ACTIONS(1355), + [anon_sym_DOLLARswitch] = ACTIONS(1355), + [anon_sym_DOLLARfor] = ACTIONS(1355), + [anon_sym_DOLLARforeach] = ACTIONS(1355), + [anon_sym_DOLLARalignof] = ACTIONS(1355), + [anon_sym_DOLLARextnameof] = ACTIONS(1355), + [anon_sym_DOLLARnameof] = ACTIONS(1355), + [anon_sym_DOLLARoffsetof] = ACTIONS(1355), + [anon_sym_DOLLARqnameof] = ACTIONS(1355), + [anon_sym_DOLLARvaconst] = ACTIONS(1355), + [anon_sym_DOLLARvaarg] = ACTIONS(1355), + [anon_sym_DOLLARvaref] = ACTIONS(1355), + [anon_sym_DOLLARvaexpr] = ACTIONS(1355), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), + [anon_sym_null] = ACTIONS(1355), + [anon_sym_DOLLARvacount] = ACTIONS(1355), + [anon_sym_DOLLARappend] = ACTIONS(1355), + [anon_sym_DOLLARconcat] = ACTIONS(1355), + [anon_sym_DOLLAReval] = ACTIONS(1355), + [anon_sym_DOLLARis_const] = ACTIONS(1355), + [anon_sym_DOLLARsizeof] = ACTIONS(1355), + [anon_sym_DOLLARstringify] = ACTIONS(1355), + [anon_sym_DOLLARand] = ACTIONS(1355), + [anon_sym_DOLLARdefined] = ACTIONS(1355), + [anon_sym_DOLLARembed] = ACTIONS(1355), + [anon_sym_DOLLARor] = ACTIONS(1355), + [anon_sym_DOLLARfeature] = ACTIONS(1355), + [anon_sym_DOLLARassignable] = ACTIONS(1355), + [anon_sym_BANG] = ACTIONS(1357), + [anon_sym_TILDE] = ACTIONS(1357), + [anon_sym_PLUS_PLUS] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1357), + [anon_sym_typeid] = ACTIONS(1355), + [anon_sym_LBRACE_PIPE] = ACTIONS(1357), + [anon_sym_PIPE_RBRACE] = ACTIONS(1357), + [anon_sym_void] = ACTIONS(1355), + [anon_sym_bool] = ACTIONS(1355), + [anon_sym_char] = ACTIONS(1355), + [anon_sym_ichar] = ACTIONS(1355), + [anon_sym_short] = ACTIONS(1355), + [anon_sym_ushort] = ACTIONS(1355), + [anon_sym_uint] = ACTIONS(1355), + [anon_sym_long] = ACTIONS(1355), + [anon_sym_ulong] = ACTIONS(1355), + [anon_sym_int128] = ACTIONS(1355), + [anon_sym_uint128] = ACTIONS(1355), + [anon_sym_float] = ACTIONS(1355), + [anon_sym_double] = ACTIONS(1355), + [anon_sym_float16] = ACTIONS(1355), + [anon_sym_bfloat16] = ACTIONS(1355), + [anon_sym_float128] = ACTIONS(1355), + [anon_sym_iptr] = ACTIONS(1355), + [anon_sym_uptr] = ACTIONS(1355), + [anon_sym_isz] = ACTIONS(1355), + [anon_sym_usz] = ACTIONS(1355), + [anon_sym_anyfault] = ACTIONS(1355), + [anon_sym_any] = ACTIONS(1355), + [anon_sym_DOLLARtypeof] = ACTIONS(1355), + [anon_sym_DOLLARtypefrom] = ACTIONS(1355), + [anon_sym_DOLLARvatype] = ACTIONS(1355), + [anon_sym_DOLLARevaltype] = ACTIONS(1355), + [sym_real_literal] = ACTIONS(1357), + }, + [336] = { + [sym_line_comment] = STATE(336), + [sym_doc_comment] = STATE(336), + [sym_block_comment] = STATE(336), + [sym_ident] = ACTIONS(1359), + [sym_integer_literal] = ACTIONS(1361), + [anon_sym_SQUOTE] = ACTIONS(1361), + [anon_sym_DQUOTE] = ACTIONS(1361), + [anon_sym_BQUOTE] = ACTIONS(1361), + [sym_bytes_literal] = ACTIONS(1361), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1359), + [sym_at_ident] = ACTIONS(1361), + [sym_hash_ident] = ACTIONS(1361), + [sym_type_ident] = ACTIONS(1361), + [sym_ct_type_ident] = ACTIONS(1361), + [sym_const_ident] = ACTIONS(1359), + [sym_builtin] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(1361), + [anon_sym_AMP] = ACTIONS(1359), + [anon_sym_static] = ACTIONS(1359), + [anon_sym_tlocal] = ACTIONS(1359), + [anon_sym_SEMI] = ACTIONS(1361), + [anon_sym_fn] = ACTIONS(1359), + [anon_sym_LBRACE] = ACTIONS(1359), + [anon_sym_RBRACE] = ACTIONS(1361), + [anon_sym_const] = ACTIONS(1359), + [anon_sym_var] = ACTIONS(1359), + [anon_sym_return] = ACTIONS(1359), + [anon_sym_continue] = ACTIONS(1359), + [anon_sym_break] = ACTIONS(1359), + [anon_sym_defer] = ACTIONS(1359), + [anon_sym_assert] = ACTIONS(1359), + [anon_sym_case] = ACTIONS(1359), + [anon_sym_default] = ACTIONS(1359), + [anon_sym_nextcase] = ACTIONS(1359), + [anon_sym_switch] = ACTIONS(1359), + [anon_sym_AMP_AMP] = ACTIONS(1361), + [anon_sym_if] = ACTIONS(1359), + [anon_sym_for] = ACTIONS(1359), + [anon_sym_foreach] = ACTIONS(1359), + [anon_sym_foreach_r] = ACTIONS(1359), + [anon_sym_while] = ACTIONS(1359), + [anon_sym_do] = ACTIONS(1359), + [anon_sym_int] = ACTIONS(1359), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_asm] = ACTIONS(1359), + [anon_sym_DOLLARassert] = ACTIONS(1359), + [anon_sym_DOLLARerror] = ACTIONS(1359), + [anon_sym_DOLLARecho] = ACTIONS(1359), + [anon_sym_DOLLARif] = ACTIONS(1359), + [anon_sym_DOLLARswitch] = ACTIONS(1359), + [anon_sym_DOLLARfor] = ACTIONS(1359), + [anon_sym_DOLLARforeach] = ACTIONS(1359), + [anon_sym_DOLLARalignof] = ACTIONS(1359), + [anon_sym_DOLLARextnameof] = ACTIONS(1359), + [anon_sym_DOLLARnameof] = ACTIONS(1359), + [anon_sym_DOLLARoffsetof] = ACTIONS(1359), + [anon_sym_DOLLARqnameof] = ACTIONS(1359), + [anon_sym_DOLLARvaconst] = ACTIONS(1359), + [anon_sym_DOLLARvaarg] = ACTIONS(1359), + [anon_sym_DOLLARvaref] = ACTIONS(1359), + [anon_sym_DOLLARvaexpr] = ACTIONS(1359), + [anon_sym_true] = ACTIONS(1359), + [anon_sym_false] = ACTIONS(1359), + [anon_sym_null] = ACTIONS(1359), + [anon_sym_DOLLARvacount] = ACTIONS(1359), + [anon_sym_DOLLARappend] = ACTIONS(1359), + [anon_sym_DOLLARconcat] = ACTIONS(1359), + [anon_sym_DOLLAReval] = ACTIONS(1359), + [anon_sym_DOLLARis_const] = ACTIONS(1359), + [anon_sym_DOLLARsizeof] = ACTIONS(1359), + [anon_sym_DOLLARstringify] = ACTIONS(1359), + [anon_sym_DOLLARand] = ACTIONS(1359), + [anon_sym_DOLLARdefined] = ACTIONS(1359), + [anon_sym_DOLLARembed] = ACTIONS(1359), + [anon_sym_DOLLARor] = ACTIONS(1359), + [anon_sym_DOLLARfeature] = ACTIONS(1359), + [anon_sym_DOLLARassignable] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1361), + [anon_sym_TILDE] = ACTIONS(1361), + [anon_sym_PLUS_PLUS] = ACTIONS(1361), + [anon_sym_DASH_DASH] = ACTIONS(1361), + [anon_sym_typeid] = ACTIONS(1359), + [anon_sym_LBRACE_PIPE] = ACTIONS(1361), + [anon_sym_PIPE_RBRACE] = ACTIONS(1361), + [anon_sym_void] = ACTIONS(1359), + [anon_sym_bool] = ACTIONS(1359), + [anon_sym_char] = ACTIONS(1359), + [anon_sym_ichar] = ACTIONS(1359), + [anon_sym_short] = ACTIONS(1359), + [anon_sym_ushort] = ACTIONS(1359), + [anon_sym_uint] = ACTIONS(1359), + [anon_sym_long] = ACTIONS(1359), + [anon_sym_ulong] = ACTIONS(1359), + [anon_sym_int128] = ACTIONS(1359), + [anon_sym_uint128] = ACTIONS(1359), + [anon_sym_float] = ACTIONS(1359), + [anon_sym_double] = ACTIONS(1359), + [anon_sym_float16] = ACTIONS(1359), + [anon_sym_bfloat16] = ACTIONS(1359), + [anon_sym_float128] = ACTIONS(1359), + [anon_sym_iptr] = ACTIONS(1359), + [anon_sym_uptr] = ACTIONS(1359), + [anon_sym_isz] = ACTIONS(1359), + [anon_sym_usz] = ACTIONS(1359), + [anon_sym_anyfault] = ACTIONS(1359), + [anon_sym_any] = ACTIONS(1359), + [anon_sym_DOLLARtypeof] = ACTIONS(1359), + [anon_sym_DOLLARtypefrom] = ACTIONS(1359), + [anon_sym_DOLLARvatype] = ACTIONS(1359), + [anon_sym_DOLLARevaltype] = ACTIONS(1359), + [sym_real_literal] = ACTIONS(1361), + }, + [337] = { + [sym_line_comment] = STATE(337), + [sym_doc_comment] = STATE(337), + [sym_block_comment] = STATE(337), + [sym_ident] = ACTIONS(1363), + [sym_integer_literal] = ACTIONS(1365), + [anon_sym_SQUOTE] = ACTIONS(1365), + [anon_sym_DQUOTE] = ACTIONS(1365), + [anon_sym_BQUOTE] = ACTIONS(1365), + [sym_bytes_literal] = ACTIONS(1365), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1363), + [sym_at_ident] = ACTIONS(1365), + [sym_hash_ident] = ACTIONS(1365), + [sym_type_ident] = ACTIONS(1365), + [sym_ct_type_ident] = ACTIONS(1365), + [sym_const_ident] = ACTIONS(1363), + [sym_builtin] = ACTIONS(1365), + [anon_sym_LPAREN] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1363), + [anon_sym_static] = ACTIONS(1363), + [anon_sym_tlocal] = ACTIONS(1363), + [anon_sym_SEMI] = ACTIONS(1365), + [anon_sym_fn] = ACTIONS(1363), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_RBRACE] = ACTIONS(1365), + [anon_sym_const] = ACTIONS(1363), + [anon_sym_var] = ACTIONS(1363), + [anon_sym_return] = ACTIONS(1363), + [anon_sym_continue] = ACTIONS(1363), + [anon_sym_break] = ACTIONS(1363), + [anon_sym_defer] = ACTIONS(1363), + [anon_sym_assert] = ACTIONS(1363), + [anon_sym_case] = ACTIONS(1363), + [anon_sym_default] = ACTIONS(1363), + [anon_sym_nextcase] = ACTIONS(1363), + [anon_sym_switch] = ACTIONS(1363), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_if] = ACTIONS(1363), + [anon_sym_for] = ACTIONS(1363), + [anon_sym_foreach] = ACTIONS(1363), + [anon_sym_foreach_r] = ACTIONS(1363), + [anon_sym_while] = ACTIONS(1363), + [anon_sym_do] = ACTIONS(1363), + [anon_sym_int] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_asm] = ACTIONS(1363), + [anon_sym_DOLLARassert] = ACTIONS(1363), + [anon_sym_DOLLARerror] = ACTIONS(1363), + [anon_sym_DOLLARecho] = ACTIONS(1363), + [anon_sym_DOLLARif] = ACTIONS(1363), + [anon_sym_DOLLARswitch] = ACTIONS(1363), + [anon_sym_DOLLARfor] = ACTIONS(1363), + [anon_sym_DOLLARforeach] = ACTIONS(1363), + [anon_sym_DOLLARalignof] = ACTIONS(1363), + [anon_sym_DOLLARextnameof] = ACTIONS(1363), + [anon_sym_DOLLARnameof] = ACTIONS(1363), + [anon_sym_DOLLARoffsetof] = ACTIONS(1363), + [anon_sym_DOLLARqnameof] = ACTIONS(1363), + [anon_sym_DOLLARvaconst] = ACTIONS(1363), + [anon_sym_DOLLARvaarg] = ACTIONS(1363), + [anon_sym_DOLLARvaref] = ACTIONS(1363), + [anon_sym_DOLLARvaexpr] = ACTIONS(1363), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_null] = ACTIONS(1363), + [anon_sym_DOLLARvacount] = ACTIONS(1363), + [anon_sym_DOLLARappend] = ACTIONS(1363), + [anon_sym_DOLLARconcat] = ACTIONS(1363), + [anon_sym_DOLLAReval] = ACTIONS(1363), + [anon_sym_DOLLARis_const] = ACTIONS(1363), + [anon_sym_DOLLARsizeof] = ACTIONS(1363), + [anon_sym_DOLLARstringify] = ACTIONS(1363), + [anon_sym_DOLLARand] = ACTIONS(1363), + [anon_sym_DOLLARdefined] = ACTIONS(1363), + [anon_sym_DOLLARembed] = ACTIONS(1363), + [anon_sym_DOLLARor] = ACTIONS(1363), + [anon_sym_DOLLARfeature] = ACTIONS(1363), + [anon_sym_DOLLARassignable] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1365), + [anon_sym_TILDE] = ACTIONS(1365), + [anon_sym_PLUS_PLUS] = ACTIONS(1365), + [anon_sym_DASH_DASH] = ACTIONS(1365), + [anon_sym_typeid] = ACTIONS(1363), + [anon_sym_LBRACE_PIPE] = ACTIONS(1365), + [anon_sym_PIPE_RBRACE] = ACTIONS(1365), + [anon_sym_void] = ACTIONS(1363), + [anon_sym_bool] = ACTIONS(1363), + [anon_sym_char] = ACTIONS(1363), + [anon_sym_ichar] = ACTIONS(1363), + [anon_sym_short] = ACTIONS(1363), + [anon_sym_ushort] = ACTIONS(1363), + [anon_sym_uint] = ACTIONS(1363), + [anon_sym_long] = ACTIONS(1363), + [anon_sym_ulong] = ACTIONS(1363), + [anon_sym_int128] = ACTIONS(1363), + [anon_sym_uint128] = ACTIONS(1363), + [anon_sym_float] = ACTIONS(1363), + [anon_sym_double] = ACTIONS(1363), + [anon_sym_float16] = ACTIONS(1363), + [anon_sym_bfloat16] = ACTIONS(1363), + [anon_sym_float128] = ACTIONS(1363), + [anon_sym_iptr] = ACTIONS(1363), + [anon_sym_uptr] = ACTIONS(1363), + [anon_sym_isz] = ACTIONS(1363), + [anon_sym_usz] = ACTIONS(1363), + [anon_sym_anyfault] = ACTIONS(1363), + [anon_sym_any] = ACTIONS(1363), + [anon_sym_DOLLARtypeof] = ACTIONS(1363), + [anon_sym_DOLLARtypefrom] = ACTIONS(1363), + [anon_sym_DOLLARvatype] = ACTIONS(1363), + [anon_sym_DOLLARevaltype] = ACTIONS(1363), + [sym_real_literal] = ACTIONS(1365), + }, + [338] = { + [sym_line_comment] = STATE(338), + [sym_doc_comment] = STATE(338), + [sym_block_comment] = STATE(338), + [sym_ident] = ACTIONS(1367), + [sym_integer_literal] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1369), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_BQUOTE] = ACTIONS(1369), + [sym_bytes_literal] = ACTIONS(1369), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1367), + [sym_at_ident] = ACTIONS(1369), + [sym_hash_ident] = ACTIONS(1369), + [sym_type_ident] = ACTIONS(1369), + [sym_ct_type_ident] = ACTIONS(1369), + [sym_const_ident] = ACTIONS(1367), + [sym_builtin] = ACTIONS(1369), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(1367), + [anon_sym_static] = ACTIONS(1367), + [anon_sym_tlocal] = ACTIONS(1367), + [anon_sym_SEMI] = ACTIONS(1369), + [anon_sym_fn] = ACTIONS(1367), + [anon_sym_LBRACE] = ACTIONS(1367), + [anon_sym_RBRACE] = ACTIONS(1369), + [anon_sym_const] = ACTIONS(1367), + [anon_sym_var] = ACTIONS(1367), + [anon_sym_return] = ACTIONS(1367), + [anon_sym_continue] = ACTIONS(1367), + [anon_sym_break] = ACTIONS(1367), + [anon_sym_defer] = ACTIONS(1367), + [anon_sym_assert] = ACTIONS(1367), + [anon_sym_case] = ACTIONS(1367), + [anon_sym_default] = ACTIONS(1367), + [anon_sym_nextcase] = ACTIONS(1367), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_AMP_AMP] = ACTIONS(1369), + [anon_sym_if] = ACTIONS(1367), + [anon_sym_for] = ACTIONS(1367), + [anon_sym_foreach] = ACTIONS(1367), + [anon_sym_foreach_r] = ACTIONS(1367), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_do] = ACTIONS(1367), + [anon_sym_int] = ACTIONS(1367), + [anon_sym_PLUS] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_asm] = ACTIONS(1367), + [anon_sym_DOLLARassert] = ACTIONS(1367), + [anon_sym_DOLLARerror] = ACTIONS(1367), + [anon_sym_DOLLARecho] = ACTIONS(1367), + [anon_sym_DOLLARif] = ACTIONS(1367), + [anon_sym_DOLLARswitch] = ACTIONS(1367), + [anon_sym_DOLLARfor] = ACTIONS(1367), + [anon_sym_DOLLARforeach] = ACTIONS(1367), + [anon_sym_DOLLARalignof] = ACTIONS(1367), + [anon_sym_DOLLARextnameof] = ACTIONS(1367), + [anon_sym_DOLLARnameof] = ACTIONS(1367), + [anon_sym_DOLLARoffsetof] = ACTIONS(1367), + [anon_sym_DOLLARqnameof] = ACTIONS(1367), + [anon_sym_DOLLARvaconst] = ACTIONS(1367), + [anon_sym_DOLLARvaarg] = ACTIONS(1367), + [anon_sym_DOLLARvaref] = ACTIONS(1367), + [anon_sym_DOLLARvaexpr] = ACTIONS(1367), + [anon_sym_true] = ACTIONS(1367), + [anon_sym_false] = ACTIONS(1367), + [anon_sym_null] = ACTIONS(1367), + [anon_sym_DOLLARvacount] = ACTIONS(1367), + [anon_sym_DOLLARappend] = ACTIONS(1367), + [anon_sym_DOLLARconcat] = ACTIONS(1367), + [anon_sym_DOLLAReval] = ACTIONS(1367), + [anon_sym_DOLLARis_const] = ACTIONS(1367), + [anon_sym_DOLLARsizeof] = ACTIONS(1367), + [anon_sym_DOLLARstringify] = ACTIONS(1367), + [anon_sym_DOLLARand] = ACTIONS(1367), + [anon_sym_DOLLARdefined] = ACTIONS(1367), + [anon_sym_DOLLARembed] = ACTIONS(1367), + [anon_sym_DOLLARor] = ACTIONS(1367), + [anon_sym_DOLLARfeature] = ACTIONS(1367), + [anon_sym_DOLLARassignable] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(1369), + [anon_sym_PLUS_PLUS] = ACTIONS(1369), + [anon_sym_DASH_DASH] = ACTIONS(1369), + [anon_sym_typeid] = ACTIONS(1367), + [anon_sym_LBRACE_PIPE] = ACTIONS(1369), + [anon_sym_PIPE_RBRACE] = ACTIONS(1369), + [anon_sym_void] = ACTIONS(1367), + [anon_sym_bool] = ACTIONS(1367), + [anon_sym_char] = ACTIONS(1367), + [anon_sym_ichar] = ACTIONS(1367), + [anon_sym_short] = ACTIONS(1367), + [anon_sym_ushort] = ACTIONS(1367), + [anon_sym_uint] = ACTIONS(1367), + [anon_sym_long] = ACTIONS(1367), + [anon_sym_ulong] = ACTIONS(1367), + [anon_sym_int128] = ACTIONS(1367), + [anon_sym_uint128] = ACTIONS(1367), + [anon_sym_float] = ACTIONS(1367), + [anon_sym_double] = ACTIONS(1367), + [anon_sym_float16] = ACTIONS(1367), + [anon_sym_bfloat16] = ACTIONS(1367), + [anon_sym_float128] = ACTIONS(1367), + [anon_sym_iptr] = ACTIONS(1367), + [anon_sym_uptr] = ACTIONS(1367), + [anon_sym_isz] = ACTIONS(1367), + [anon_sym_usz] = ACTIONS(1367), + [anon_sym_anyfault] = ACTIONS(1367), + [anon_sym_any] = ACTIONS(1367), + [anon_sym_DOLLARtypeof] = ACTIONS(1367), + [anon_sym_DOLLARtypefrom] = ACTIONS(1367), + [anon_sym_DOLLARvatype] = ACTIONS(1367), + [anon_sym_DOLLARevaltype] = ACTIONS(1367), + [sym_real_literal] = ACTIONS(1369), + }, + [339] = { + [sym_line_comment] = STATE(339), + [sym_doc_comment] = STATE(339), + [sym_block_comment] = STATE(339), + [sym_ident] = ACTIONS(1351), + [sym_integer_literal] = ACTIONS(1353), + [anon_sym_SQUOTE] = ACTIONS(1353), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_BQUOTE] = ACTIONS(1353), + [sym_bytes_literal] = ACTIONS(1353), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1351), + [sym_at_ident] = ACTIONS(1353), + [sym_hash_ident] = ACTIONS(1353), + [sym_type_ident] = ACTIONS(1353), + [sym_ct_type_ident] = ACTIONS(1353), + [sym_const_ident] = ACTIONS(1351), + [sym_builtin] = ACTIONS(1353), + [anon_sym_LPAREN] = ACTIONS(1353), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_static] = ACTIONS(1351), + [anon_sym_tlocal] = ACTIONS(1351), + [anon_sym_SEMI] = ACTIONS(1353), + [anon_sym_fn] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1351), + [anon_sym_const] = ACTIONS(1351), + [anon_sym_var] = ACTIONS(1351), + [anon_sym_return] = ACTIONS(1351), + [anon_sym_continue] = ACTIONS(1351), + [anon_sym_break] = ACTIONS(1351), + [anon_sym_defer] = ACTIONS(1351), + [anon_sym_assert] = ACTIONS(1351), + [anon_sym_nextcase] = ACTIONS(1351), + [anon_sym_switch] = ACTIONS(1351), + [anon_sym_AMP_AMP] = ACTIONS(1353), + [anon_sym_if] = ACTIONS(1351), + [anon_sym_else] = ACTIONS(1351), + [anon_sym_for] = ACTIONS(1351), + [anon_sym_foreach] = ACTIONS(1351), + [anon_sym_foreach_r] = ACTIONS(1351), + [anon_sym_while] = ACTIONS(1351), + [anon_sym_do] = ACTIONS(1351), + [anon_sym_int] = ACTIONS(1351), + [anon_sym_PLUS] = ACTIONS(1351), + [anon_sym_DASH] = ACTIONS(1351), + [anon_sym_STAR] = ACTIONS(1353), + [anon_sym_asm] = ACTIONS(1351), + [anon_sym_DOLLARassert] = ACTIONS(1351), + [anon_sym_DOLLARerror] = ACTIONS(1351), + [anon_sym_DOLLARecho] = ACTIONS(1351), + [anon_sym_DOLLARif] = ACTIONS(1351), + [anon_sym_DOLLARcase] = ACTIONS(1351), + [anon_sym_DOLLARdefault] = ACTIONS(1351), + [anon_sym_DOLLARswitch] = ACTIONS(1351), + [anon_sym_DOLLARendswitch] = ACTIONS(1351), + [anon_sym_DOLLARfor] = ACTIONS(1351), + [anon_sym_DOLLARforeach] = ACTIONS(1351), + [anon_sym_DOLLARalignof] = ACTIONS(1351), + [anon_sym_DOLLARextnameof] = ACTIONS(1351), + [anon_sym_DOLLARnameof] = ACTIONS(1351), + [anon_sym_DOLLARoffsetof] = ACTIONS(1351), + [anon_sym_DOLLARqnameof] = ACTIONS(1351), + [anon_sym_DOLLARvaconst] = ACTIONS(1351), + [anon_sym_DOLLARvaarg] = ACTIONS(1351), + [anon_sym_DOLLARvaref] = ACTIONS(1351), + [anon_sym_DOLLARvaexpr] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_null] = ACTIONS(1351), + [anon_sym_DOLLARvacount] = ACTIONS(1351), + [anon_sym_DOLLARappend] = ACTIONS(1351), + [anon_sym_DOLLARconcat] = ACTIONS(1351), + [anon_sym_DOLLAReval] = ACTIONS(1351), + [anon_sym_DOLLARis_const] = ACTIONS(1351), + [anon_sym_DOLLARsizeof] = ACTIONS(1351), + [anon_sym_DOLLARstringify] = ACTIONS(1351), + [anon_sym_DOLLARand] = ACTIONS(1351), + [anon_sym_DOLLARdefined] = ACTIONS(1351), + [anon_sym_DOLLARembed] = ACTIONS(1351), + [anon_sym_DOLLARor] = ACTIONS(1351), + [anon_sym_DOLLARfeature] = ACTIONS(1351), + [anon_sym_DOLLARassignable] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_PLUS_PLUS] = ACTIONS(1353), + [anon_sym_DASH_DASH] = ACTIONS(1353), + [anon_sym_typeid] = ACTIONS(1351), + [anon_sym_LBRACE_PIPE] = ACTIONS(1353), + [anon_sym_void] = ACTIONS(1351), + [anon_sym_bool] = ACTIONS(1351), + [anon_sym_char] = ACTIONS(1351), + [anon_sym_ichar] = ACTIONS(1351), + [anon_sym_short] = ACTIONS(1351), + [anon_sym_ushort] = ACTIONS(1351), + [anon_sym_uint] = ACTIONS(1351), + [anon_sym_long] = ACTIONS(1351), + [anon_sym_ulong] = ACTIONS(1351), + [anon_sym_int128] = ACTIONS(1351), + [anon_sym_uint128] = ACTIONS(1351), + [anon_sym_float] = ACTIONS(1351), + [anon_sym_double] = ACTIONS(1351), + [anon_sym_float16] = ACTIONS(1351), + [anon_sym_bfloat16] = ACTIONS(1351), + [anon_sym_float128] = ACTIONS(1351), + [anon_sym_iptr] = ACTIONS(1351), + [anon_sym_uptr] = ACTIONS(1351), + [anon_sym_isz] = ACTIONS(1351), + [anon_sym_usz] = ACTIONS(1351), + [anon_sym_anyfault] = ACTIONS(1351), + [anon_sym_any] = ACTIONS(1351), + [anon_sym_DOLLARtypeof] = ACTIONS(1351), + [anon_sym_DOLLARtypefrom] = ACTIONS(1351), + [anon_sym_DOLLARvatype] = ACTIONS(1351), + [anon_sym_DOLLARevaltype] = ACTIONS(1351), + [sym_real_literal] = ACTIONS(1353), + }, + [340] = { + [sym_line_comment] = STATE(340), + [sym_doc_comment] = STATE(340), + [sym_block_comment] = STATE(340), + [sym_ident] = ACTIONS(1371), + [sym_integer_literal] = ACTIONS(1373), + [anon_sym_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE] = ACTIONS(1373), + [anon_sym_BQUOTE] = ACTIONS(1373), + [sym_bytes_literal] = ACTIONS(1373), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1371), + [sym_at_ident] = ACTIONS(1373), + [sym_hash_ident] = ACTIONS(1373), + [sym_type_ident] = ACTIONS(1373), + [sym_ct_type_ident] = ACTIONS(1373), + [sym_const_ident] = ACTIONS(1371), + [sym_builtin] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(1373), + [anon_sym_AMP] = ACTIONS(1371), + [anon_sym_static] = ACTIONS(1371), + [anon_sym_tlocal] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_fn] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1371), + [anon_sym_RBRACE] = ACTIONS(1373), + [anon_sym_const] = ACTIONS(1371), + [anon_sym_var] = ACTIONS(1371), + [anon_sym_return] = ACTIONS(1371), + [anon_sym_continue] = ACTIONS(1371), + [anon_sym_break] = ACTIONS(1371), + [anon_sym_defer] = ACTIONS(1371), + [anon_sym_assert] = ACTIONS(1371), + [anon_sym_case] = ACTIONS(1371), + [anon_sym_default] = ACTIONS(1371), + [anon_sym_nextcase] = ACTIONS(1371), + [anon_sym_switch] = ACTIONS(1371), + [anon_sym_AMP_AMP] = ACTIONS(1373), + [anon_sym_if] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1371), + [anon_sym_foreach] = ACTIONS(1371), + [anon_sym_foreach_r] = ACTIONS(1371), + [anon_sym_while] = ACTIONS(1371), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_int] = ACTIONS(1371), + [anon_sym_PLUS] = ACTIONS(1371), + [anon_sym_DASH] = ACTIONS(1371), + [anon_sym_STAR] = ACTIONS(1373), + [anon_sym_asm] = ACTIONS(1371), + [anon_sym_DOLLARassert] = ACTIONS(1371), + [anon_sym_DOLLARerror] = ACTIONS(1371), + [anon_sym_DOLLARecho] = ACTIONS(1371), + [anon_sym_DOLLARif] = ACTIONS(1371), + [anon_sym_DOLLARswitch] = ACTIONS(1371), + [anon_sym_DOLLARfor] = ACTIONS(1371), + [anon_sym_DOLLARforeach] = ACTIONS(1371), + [anon_sym_DOLLARalignof] = ACTIONS(1371), + [anon_sym_DOLLARextnameof] = ACTIONS(1371), + [anon_sym_DOLLARnameof] = ACTIONS(1371), + [anon_sym_DOLLARoffsetof] = ACTIONS(1371), + [anon_sym_DOLLARqnameof] = ACTIONS(1371), + [anon_sym_DOLLARvaconst] = ACTIONS(1371), + [anon_sym_DOLLARvaarg] = ACTIONS(1371), + [anon_sym_DOLLARvaref] = ACTIONS(1371), + [anon_sym_DOLLARvaexpr] = ACTIONS(1371), + [anon_sym_true] = ACTIONS(1371), + [anon_sym_false] = ACTIONS(1371), + [anon_sym_null] = ACTIONS(1371), + [anon_sym_DOLLARvacount] = ACTIONS(1371), + [anon_sym_DOLLARappend] = ACTIONS(1371), + [anon_sym_DOLLARconcat] = ACTIONS(1371), + [anon_sym_DOLLAReval] = ACTIONS(1371), + [anon_sym_DOLLARis_const] = ACTIONS(1371), + [anon_sym_DOLLARsizeof] = ACTIONS(1371), + [anon_sym_DOLLARstringify] = ACTIONS(1371), + [anon_sym_DOLLARand] = ACTIONS(1371), + [anon_sym_DOLLARdefined] = ACTIONS(1371), + [anon_sym_DOLLARembed] = ACTIONS(1371), + [anon_sym_DOLLARor] = ACTIONS(1371), + [anon_sym_DOLLARfeature] = ACTIONS(1371), + [anon_sym_DOLLARassignable] = ACTIONS(1371), + [anon_sym_BANG] = ACTIONS(1373), + [anon_sym_TILDE] = ACTIONS(1373), + [anon_sym_PLUS_PLUS] = ACTIONS(1373), + [anon_sym_DASH_DASH] = ACTIONS(1373), + [anon_sym_typeid] = ACTIONS(1371), + [anon_sym_LBRACE_PIPE] = ACTIONS(1373), + [anon_sym_PIPE_RBRACE] = ACTIONS(1373), + [anon_sym_void] = ACTIONS(1371), + [anon_sym_bool] = ACTIONS(1371), + [anon_sym_char] = ACTIONS(1371), + [anon_sym_ichar] = ACTIONS(1371), + [anon_sym_short] = ACTIONS(1371), + [anon_sym_ushort] = ACTIONS(1371), + [anon_sym_uint] = ACTIONS(1371), + [anon_sym_long] = ACTIONS(1371), + [anon_sym_ulong] = ACTIONS(1371), + [anon_sym_int128] = ACTIONS(1371), + [anon_sym_uint128] = ACTIONS(1371), + [anon_sym_float] = ACTIONS(1371), + [anon_sym_double] = ACTIONS(1371), + [anon_sym_float16] = ACTIONS(1371), + [anon_sym_bfloat16] = ACTIONS(1371), + [anon_sym_float128] = ACTIONS(1371), + [anon_sym_iptr] = ACTIONS(1371), + [anon_sym_uptr] = ACTIONS(1371), + [anon_sym_isz] = ACTIONS(1371), + [anon_sym_usz] = ACTIONS(1371), + [anon_sym_anyfault] = ACTIONS(1371), + [anon_sym_any] = ACTIONS(1371), + [anon_sym_DOLLARtypeof] = ACTIONS(1371), + [anon_sym_DOLLARtypefrom] = ACTIONS(1371), + [anon_sym_DOLLARvatype] = ACTIONS(1371), + [anon_sym_DOLLARevaltype] = ACTIONS(1371), + [sym_real_literal] = ACTIONS(1373), + }, + [341] = { + [sym_line_comment] = STATE(341), + [sym_doc_comment] = STATE(341), + [sym_block_comment] = STATE(341), + [sym_ident] = ACTIONS(1375), + [sym_integer_literal] = ACTIONS(1377), + [anon_sym_SQUOTE] = ACTIONS(1377), + [anon_sym_DQUOTE] = ACTIONS(1377), + [anon_sym_BQUOTE] = ACTIONS(1377), + [sym_bytes_literal] = ACTIONS(1377), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1375), + [sym_at_ident] = ACTIONS(1377), + [sym_hash_ident] = ACTIONS(1377), + [sym_type_ident] = ACTIONS(1377), + [sym_ct_type_ident] = ACTIONS(1377), + [sym_const_ident] = ACTIONS(1375), + [sym_builtin] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_static] = ACTIONS(1375), + [anon_sym_tlocal] = ACTIONS(1375), + [anon_sym_SEMI] = ACTIONS(1377), + [anon_sym_fn] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1375), + [anon_sym_RBRACE] = ACTIONS(1377), + [anon_sym_const] = ACTIONS(1375), + [anon_sym_var] = ACTIONS(1375), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_continue] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1375), + [anon_sym_defer] = ACTIONS(1375), + [anon_sym_assert] = ACTIONS(1375), + [anon_sym_case] = ACTIONS(1375), + [anon_sym_default] = ACTIONS(1375), + [anon_sym_nextcase] = ACTIONS(1375), + [anon_sym_switch] = ACTIONS(1375), + [anon_sym_AMP_AMP] = ACTIONS(1377), + [anon_sym_if] = ACTIONS(1375), + [anon_sym_for] = ACTIONS(1375), + [anon_sym_foreach] = ACTIONS(1375), + [anon_sym_foreach_r] = ACTIONS(1375), + [anon_sym_while] = ACTIONS(1375), + [anon_sym_do] = ACTIONS(1375), + [anon_sym_int] = ACTIONS(1375), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_asm] = ACTIONS(1375), + [anon_sym_DOLLARassert] = ACTIONS(1375), + [anon_sym_DOLLARerror] = ACTIONS(1375), + [anon_sym_DOLLARecho] = ACTIONS(1375), + [anon_sym_DOLLARif] = ACTIONS(1375), + [anon_sym_DOLLARswitch] = ACTIONS(1375), + [anon_sym_DOLLARfor] = ACTIONS(1375), + [anon_sym_DOLLARforeach] = ACTIONS(1375), + [anon_sym_DOLLARalignof] = ACTIONS(1375), + [anon_sym_DOLLARextnameof] = ACTIONS(1375), + [anon_sym_DOLLARnameof] = ACTIONS(1375), + [anon_sym_DOLLARoffsetof] = ACTIONS(1375), + [anon_sym_DOLLARqnameof] = ACTIONS(1375), + [anon_sym_DOLLARvaconst] = ACTIONS(1375), + [anon_sym_DOLLARvaarg] = ACTIONS(1375), + [anon_sym_DOLLARvaref] = ACTIONS(1375), + [anon_sym_DOLLARvaexpr] = ACTIONS(1375), + [anon_sym_true] = ACTIONS(1375), + [anon_sym_false] = ACTIONS(1375), + [anon_sym_null] = ACTIONS(1375), + [anon_sym_DOLLARvacount] = ACTIONS(1375), + [anon_sym_DOLLARappend] = ACTIONS(1375), + [anon_sym_DOLLARconcat] = ACTIONS(1375), + [anon_sym_DOLLAReval] = ACTIONS(1375), + [anon_sym_DOLLARis_const] = ACTIONS(1375), + [anon_sym_DOLLARsizeof] = ACTIONS(1375), + [anon_sym_DOLLARstringify] = ACTIONS(1375), + [anon_sym_DOLLARand] = ACTIONS(1375), + [anon_sym_DOLLARdefined] = ACTIONS(1375), + [anon_sym_DOLLARembed] = ACTIONS(1375), + [anon_sym_DOLLARor] = ACTIONS(1375), + [anon_sym_DOLLARfeature] = ACTIONS(1375), + [anon_sym_DOLLARassignable] = ACTIONS(1375), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_TILDE] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_typeid] = ACTIONS(1375), + [anon_sym_LBRACE_PIPE] = ACTIONS(1377), + [anon_sym_PIPE_RBRACE] = ACTIONS(1377), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_bool] = ACTIONS(1375), + [anon_sym_char] = ACTIONS(1375), + [anon_sym_ichar] = ACTIONS(1375), + [anon_sym_short] = ACTIONS(1375), + [anon_sym_ushort] = ACTIONS(1375), + [anon_sym_uint] = ACTIONS(1375), + [anon_sym_long] = ACTIONS(1375), + [anon_sym_ulong] = ACTIONS(1375), + [anon_sym_int128] = ACTIONS(1375), + [anon_sym_uint128] = ACTIONS(1375), + [anon_sym_float] = ACTIONS(1375), + [anon_sym_double] = ACTIONS(1375), + [anon_sym_float16] = ACTIONS(1375), + [anon_sym_bfloat16] = ACTIONS(1375), + [anon_sym_float128] = ACTIONS(1375), + [anon_sym_iptr] = ACTIONS(1375), + [anon_sym_uptr] = ACTIONS(1375), + [anon_sym_isz] = ACTIONS(1375), + [anon_sym_usz] = ACTIONS(1375), + [anon_sym_anyfault] = ACTIONS(1375), + [anon_sym_any] = ACTIONS(1375), + [anon_sym_DOLLARtypeof] = ACTIONS(1375), + [anon_sym_DOLLARtypefrom] = ACTIONS(1375), + [anon_sym_DOLLARvatype] = ACTIONS(1375), + [anon_sym_DOLLARevaltype] = ACTIONS(1375), + [sym_real_literal] = ACTIONS(1377), + }, + [342] = { + [sym_line_comment] = STATE(342), + [sym_doc_comment] = STATE(342), + [sym_block_comment] = STATE(342), + [sym_ident] = ACTIONS(1379), + [sym_integer_literal] = ACTIONS(1381), + [anon_sym_SQUOTE] = ACTIONS(1381), + [anon_sym_DQUOTE] = ACTIONS(1381), + [anon_sym_BQUOTE] = ACTIONS(1381), + [sym_bytes_literal] = ACTIONS(1381), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1379), + [sym_at_ident] = ACTIONS(1381), + [sym_hash_ident] = ACTIONS(1381), + [sym_type_ident] = ACTIONS(1381), + [sym_ct_type_ident] = ACTIONS(1381), + [sym_const_ident] = ACTIONS(1379), + [sym_builtin] = ACTIONS(1381), + [anon_sym_LPAREN] = ACTIONS(1381), + [anon_sym_AMP] = ACTIONS(1379), + [anon_sym_static] = ACTIONS(1379), + [anon_sym_tlocal] = ACTIONS(1379), + [anon_sym_SEMI] = ACTIONS(1381), + [anon_sym_fn] = ACTIONS(1379), + [anon_sym_LBRACE] = ACTIONS(1379), + [anon_sym_RBRACE] = ACTIONS(1381), + [anon_sym_const] = ACTIONS(1379), + [anon_sym_var] = ACTIONS(1379), + [anon_sym_return] = ACTIONS(1379), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_break] = ACTIONS(1379), + [anon_sym_defer] = ACTIONS(1379), + [anon_sym_assert] = ACTIONS(1379), + [anon_sym_case] = ACTIONS(1379), + [anon_sym_default] = ACTIONS(1379), + [anon_sym_nextcase] = ACTIONS(1379), + [anon_sym_switch] = ACTIONS(1379), + [anon_sym_AMP_AMP] = ACTIONS(1381), + [anon_sym_if] = ACTIONS(1379), + [anon_sym_for] = ACTIONS(1379), + [anon_sym_foreach] = ACTIONS(1379), + [anon_sym_foreach_r] = ACTIONS(1379), + [anon_sym_while] = ACTIONS(1379), + [anon_sym_do] = ACTIONS(1379), + [anon_sym_int] = ACTIONS(1379), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(1381), + [anon_sym_asm] = ACTIONS(1379), + [anon_sym_DOLLARassert] = ACTIONS(1379), + [anon_sym_DOLLARerror] = ACTIONS(1379), + [anon_sym_DOLLARecho] = ACTIONS(1379), + [anon_sym_DOLLARif] = ACTIONS(1379), + [anon_sym_DOLLARswitch] = ACTIONS(1379), + [anon_sym_DOLLARfor] = ACTIONS(1379), + [anon_sym_DOLLARforeach] = ACTIONS(1379), + [anon_sym_DOLLARalignof] = ACTIONS(1379), + [anon_sym_DOLLARextnameof] = ACTIONS(1379), + [anon_sym_DOLLARnameof] = ACTIONS(1379), + [anon_sym_DOLLARoffsetof] = ACTIONS(1379), + [anon_sym_DOLLARqnameof] = ACTIONS(1379), + [anon_sym_DOLLARvaconst] = ACTIONS(1379), + [anon_sym_DOLLARvaarg] = ACTIONS(1379), + [anon_sym_DOLLARvaref] = ACTIONS(1379), + [anon_sym_DOLLARvaexpr] = ACTIONS(1379), + [anon_sym_true] = ACTIONS(1379), + [anon_sym_false] = ACTIONS(1379), + [anon_sym_null] = ACTIONS(1379), + [anon_sym_DOLLARvacount] = ACTIONS(1379), + [anon_sym_DOLLARappend] = ACTIONS(1379), + [anon_sym_DOLLARconcat] = ACTIONS(1379), + [anon_sym_DOLLAReval] = ACTIONS(1379), + [anon_sym_DOLLARis_const] = ACTIONS(1379), + [anon_sym_DOLLARsizeof] = ACTIONS(1379), + [anon_sym_DOLLARstringify] = ACTIONS(1379), + [anon_sym_DOLLARand] = ACTIONS(1379), + [anon_sym_DOLLARdefined] = ACTIONS(1379), + [anon_sym_DOLLARembed] = ACTIONS(1379), + [anon_sym_DOLLARor] = ACTIONS(1379), + [anon_sym_DOLLARfeature] = ACTIONS(1379), + [anon_sym_DOLLARassignable] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_PLUS_PLUS] = ACTIONS(1381), + [anon_sym_DASH_DASH] = ACTIONS(1381), + [anon_sym_typeid] = ACTIONS(1379), + [anon_sym_LBRACE_PIPE] = ACTIONS(1381), + [anon_sym_PIPE_RBRACE] = ACTIONS(1381), + [anon_sym_void] = ACTIONS(1379), + [anon_sym_bool] = ACTIONS(1379), + [anon_sym_char] = ACTIONS(1379), + [anon_sym_ichar] = ACTIONS(1379), + [anon_sym_short] = ACTIONS(1379), + [anon_sym_ushort] = ACTIONS(1379), + [anon_sym_uint] = ACTIONS(1379), + [anon_sym_long] = ACTIONS(1379), + [anon_sym_ulong] = ACTIONS(1379), + [anon_sym_int128] = ACTIONS(1379), + [anon_sym_uint128] = ACTIONS(1379), + [anon_sym_float] = ACTIONS(1379), + [anon_sym_double] = ACTIONS(1379), + [anon_sym_float16] = ACTIONS(1379), + [anon_sym_bfloat16] = ACTIONS(1379), + [anon_sym_float128] = ACTIONS(1379), + [anon_sym_iptr] = ACTIONS(1379), + [anon_sym_uptr] = ACTIONS(1379), + [anon_sym_isz] = ACTIONS(1379), + [anon_sym_usz] = ACTIONS(1379), + [anon_sym_anyfault] = ACTIONS(1379), + [anon_sym_any] = ACTIONS(1379), + [anon_sym_DOLLARtypeof] = ACTIONS(1379), + [anon_sym_DOLLARtypefrom] = ACTIONS(1379), + [anon_sym_DOLLARvatype] = ACTIONS(1379), + [anon_sym_DOLLARevaltype] = ACTIONS(1379), + [sym_real_literal] = ACTIONS(1381), }, [343] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), [sym_line_comment] = STATE(343), [sym_doc_comment] = STATE(343), [sym_block_comment] = STATE(343), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1251), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1544), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [sym_ident] = ACTIONS(1383), + [sym_integer_literal] = ACTIONS(1385), + [anon_sym_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE] = ACTIONS(1385), + [anon_sym_BQUOTE] = ACTIONS(1385), + [sym_bytes_literal] = ACTIONS(1385), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1383), + [sym_at_ident] = ACTIONS(1385), + [sym_hash_ident] = ACTIONS(1385), + [sym_type_ident] = ACTIONS(1385), + [sym_ct_type_ident] = ACTIONS(1385), + [sym_const_ident] = ACTIONS(1383), + [sym_builtin] = ACTIONS(1385), + [anon_sym_LPAREN] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_static] = ACTIONS(1383), + [anon_sym_tlocal] = ACTIONS(1383), + [anon_sym_SEMI] = ACTIONS(1385), + [anon_sym_fn] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1383), + [anon_sym_RBRACE] = ACTIONS(1385), + [anon_sym_const] = ACTIONS(1383), + [anon_sym_var] = ACTIONS(1383), + [anon_sym_return] = ACTIONS(1383), + [anon_sym_continue] = ACTIONS(1383), + [anon_sym_break] = ACTIONS(1383), + [anon_sym_defer] = ACTIONS(1383), + [anon_sym_assert] = ACTIONS(1383), + [anon_sym_case] = ACTIONS(1383), + [anon_sym_default] = ACTIONS(1383), + [anon_sym_nextcase] = ACTIONS(1383), + [anon_sym_switch] = ACTIONS(1383), + [anon_sym_AMP_AMP] = ACTIONS(1385), + [anon_sym_if] = ACTIONS(1383), + [anon_sym_for] = ACTIONS(1383), + [anon_sym_foreach] = ACTIONS(1383), + [anon_sym_foreach_r] = ACTIONS(1383), + [anon_sym_while] = ACTIONS(1383), + [anon_sym_do] = ACTIONS(1383), + [anon_sym_int] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1383), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_STAR] = ACTIONS(1385), + [anon_sym_asm] = ACTIONS(1383), + [anon_sym_DOLLARassert] = ACTIONS(1383), + [anon_sym_DOLLARerror] = ACTIONS(1383), + [anon_sym_DOLLARecho] = ACTIONS(1383), + [anon_sym_DOLLARif] = ACTIONS(1383), + [anon_sym_DOLLARswitch] = ACTIONS(1383), + [anon_sym_DOLLARfor] = ACTIONS(1383), + [anon_sym_DOLLARforeach] = ACTIONS(1383), + [anon_sym_DOLLARalignof] = ACTIONS(1383), + [anon_sym_DOLLARextnameof] = ACTIONS(1383), + [anon_sym_DOLLARnameof] = ACTIONS(1383), + [anon_sym_DOLLARoffsetof] = ACTIONS(1383), + [anon_sym_DOLLARqnameof] = ACTIONS(1383), + [anon_sym_DOLLARvaconst] = ACTIONS(1383), + [anon_sym_DOLLARvaarg] = ACTIONS(1383), + [anon_sym_DOLLARvaref] = ACTIONS(1383), + [anon_sym_DOLLARvaexpr] = ACTIONS(1383), + [anon_sym_true] = ACTIONS(1383), + [anon_sym_false] = ACTIONS(1383), + [anon_sym_null] = ACTIONS(1383), + [anon_sym_DOLLARvacount] = ACTIONS(1383), + [anon_sym_DOLLARappend] = ACTIONS(1383), + [anon_sym_DOLLARconcat] = ACTIONS(1383), + [anon_sym_DOLLAReval] = ACTIONS(1383), + [anon_sym_DOLLARis_const] = ACTIONS(1383), + [anon_sym_DOLLARsizeof] = ACTIONS(1383), + [anon_sym_DOLLARstringify] = ACTIONS(1383), + [anon_sym_DOLLARand] = ACTIONS(1383), + [anon_sym_DOLLARdefined] = ACTIONS(1383), + [anon_sym_DOLLARembed] = ACTIONS(1383), + [anon_sym_DOLLARor] = ACTIONS(1383), + [anon_sym_DOLLARfeature] = ACTIONS(1383), + [anon_sym_DOLLARassignable] = ACTIONS(1383), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_TILDE] = ACTIONS(1385), + [anon_sym_PLUS_PLUS] = ACTIONS(1385), + [anon_sym_DASH_DASH] = ACTIONS(1385), + [anon_sym_typeid] = ACTIONS(1383), + [anon_sym_LBRACE_PIPE] = ACTIONS(1385), + [anon_sym_PIPE_RBRACE] = ACTIONS(1385), + [anon_sym_void] = ACTIONS(1383), + [anon_sym_bool] = ACTIONS(1383), + [anon_sym_char] = ACTIONS(1383), + [anon_sym_ichar] = ACTIONS(1383), + [anon_sym_short] = ACTIONS(1383), + [anon_sym_ushort] = ACTIONS(1383), + [anon_sym_uint] = ACTIONS(1383), + [anon_sym_long] = ACTIONS(1383), + [anon_sym_ulong] = ACTIONS(1383), + [anon_sym_int128] = ACTIONS(1383), + [anon_sym_uint128] = ACTIONS(1383), + [anon_sym_float] = ACTIONS(1383), + [anon_sym_double] = ACTIONS(1383), + [anon_sym_float16] = ACTIONS(1383), + [anon_sym_bfloat16] = ACTIONS(1383), + [anon_sym_float128] = ACTIONS(1383), + [anon_sym_iptr] = ACTIONS(1383), + [anon_sym_uptr] = ACTIONS(1383), + [anon_sym_isz] = ACTIONS(1383), + [anon_sym_usz] = ACTIONS(1383), + [anon_sym_anyfault] = ACTIONS(1383), + [anon_sym_any] = ACTIONS(1383), + [anon_sym_DOLLARtypeof] = ACTIONS(1383), + [anon_sym_DOLLARtypefrom] = ACTIONS(1383), + [anon_sym_DOLLARvatype] = ACTIONS(1383), + [anon_sym_DOLLARevaltype] = ACTIONS(1383), + [sym_real_literal] = ACTIONS(1385), }, [344] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), [sym_line_comment] = STATE(344), [sym_doc_comment] = STATE(344), [sym_block_comment] = STATE(344), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1260), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [sym_ident] = ACTIONS(1387), + [sym_integer_literal] = ACTIONS(1389), + [anon_sym_SQUOTE] = ACTIONS(1389), + [anon_sym_DQUOTE] = ACTIONS(1389), + [anon_sym_BQUOTE] = ACTIONS(1389), + [sym_bytes_literal] = ACTIONS(1389), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1387), + [sym_at_ident] = ACTIONS(1389), + [sym_hash_ident] = ACTIONS(1389), + [sym_type_ident] = ACTIONS(1389), + [sym_ct_type_ident] = ACTIONS(1389), + [sym_const_ident] = ACTIONS(1387), + [sym_builtin] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_AMP] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1387), + [anon_sym_tlocal] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1389), + [anon_sym_fn] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_defer] = ACTIONS(1387), + [anon_sym_assert] = ACTIONS(1387), + [anon_sym_case] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1387), + [anon_sym_nextcase] = ACTIONS(1387), + [anon_sym_switch] = ACTIONS(1387), + [anon_sym_AMP_AMP] = ACTIONS(1389), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_foreach] = ACTIONS(1387), + [anon_sym_foreach_r] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_int] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1389), + [anon_sym_asm] = ACTIONS(1387), + [anon_sym_DOLLARassert] = ACTIONS(1387), + [anon_sym_DOLLARerror] = ACTIONS(1387), + [anon_sym_DOLLARecho] = ACTIONS(1387), + [anon_sym_DOLLARif] = ACTIONS(1387), + [anon_sym_DOLLARswitch] = ACTIONS(1387), + [anon_sym_DOLLARfor] = ACTIONS(1387), + [anon_sym_DOLLARforeach] = ACTIONS(1387), + [anon_sym_DOLLARalignof] = ACTIONS(1387), + [anon_sym_DOLLARextnameof] = ACTIONS(1387), + [anon_sym_DOLLARnameof] = ACTIONS(1387), + [anon_sym_DOLLARoffsetof] = ACTIONS(1387), + [anon_sym_DOLLARqnameof] = ACTIONS(1387), + [anon_sym_DOLLARvaconst] = ACTIONS(1387), + [anon_sym_DOLLARvaarg] = ACTIONS(1387), + [anon_sym_DOLLARvaref] = ACTIONS(1387), + [anon_sym_DOLLARvaexpr] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_DOLLARvacount] = ACTIONS(1387), + [anon_sym_DOLLARappend] = ACTIONS(1387), + [anon_sym_DOLLARconcat] = ACTIONS(1387), + [anon_sym_DOLLAReval] = ACTIONS(1387), + [anon_sym_DOLLARis_const] = ACTIONS(1387), + [anon_sym_DOLLARsizeof] = ACTIONS(1387), + [anon_sym_DOLLARstringify] = ACTIONS(1387), + [anon_sym_DOLLARand] = ACTIONS(1387), + [anon_sym_DOLLARdefined] = ACTIONS(1387), + [anon_sym_DOLLARembed] = ACTIONS(1387), + [anon_sym_DOLLARor] = ACTIONS(1387), + [anon_sym_DOLLARfeature] = ACTIONS(1387), + [anon_sym_DOLLARassignable] = ACTIONS(1387), + [anon_sym_BANG] = ACTIONS(1389), + [anon_sym_TILDE] = ACTIONS(1389), + [anon_sym_PLUS_PLUS] = ACTIONS(1389), + [anon_sym_DASH_DASH] = ACTIONS(1389), + [anon_sym_typeid] = ACTIONS(1387), + [anon_sym_LBRACE_PIPE] = ACTIONS(1389), + [anon_sym_PIPE_RBRACE] = ACTIONS(1389), + [anon_sym_void] = ACTIONS(1387), + [anon_sym_bool] = ACTIONS(1387), + [anon_sym_char] = ACTIONS(1387), + [anon_sym_ichar] = ACTIONS(1387), + [anon_sym_short] = ACTIONS(1387), + [anon_sym_ushort] = ACTIONS(1387), + [anon_sym_uint] = ACTIONS(1387), + [anon_sym_long] = ACTIONS(1387), + [anon_sym_ulong] = ACTIONS(1387), + [anon_sym_int128] = ACTIONS(1387), + [anon_sym_uint128] = ACTIONS(1387), + [anon_sym_float] = ACTIONS(1387), + [anon_sym_double] = ACTIONS(1387), + [anon_sym_float16] = ACTIONS(1387), + [anon_sym_bfloat16] = ACTIONS(1387), + [anon_sym_float128] = ACTIONS(1387), + [anon_sym_iptr] = ACTIONS(1387), + [anon_sym_uptr] = ACTIONS(1387), + [anon_sym_isz] = ACTIONS(1387), + [anon_sym_usz] = ACTIONS(1387), + [anon_sym_anyfault] = ACTIONS(1387), + [anon_sym_any] = ACTIONS(1387), + [anon_sym_DOLLARtypeof] = ACTIONS(1387), + [anon_sym_DOLLARtypefrom] = ACTIONS(1387), + [anon_sym_DOLLARvatype] = ACTIONS(1387), + [anon_sym_DOLLARevaltype] = ACTIONS(1387), + [sym_real_literal] = ACTIONS(1389), }, [345] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), [sym_line_comment] = STATE(345), [sym_doc_comment] = STATE(345), [sym_block_comment] = STATE(345), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1301), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1076), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [sym_ident] = ACTIONS(1391), + [sym_integer_literal] = ACTIONS(1393), + [anon_sym_SQUOTE] = ACTIONS(1393), + [anon_sym_DQUOTE] = ACTIONS(1393), + [anon_sym_BQUOTE] = ACTIONS(1393), + [sym_bytes_literal] = ACTIONS(1393), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1391), + [sym_at_ident] = ACTIONS(1393), + [sym_hash_ident] = ACTIONS(1393), + [sym_type_ident] = ACTIONS(1393), + [sym_ct_type_ident] = ACTIONS(1393), + [sym_const_ident] = ACTIONS(1391), + [sym_builtin] = ACTIONS(1393), + [anon_sym_LPAREN] = ACTIONS(1393), + [anon_sym_AMP] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1391), + [anon_sym_tlocal] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1393), + [anon_sym_fn] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1393), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_var] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_defer] = ACTIONS(1391), + [anon_sym_assert] = ACTIONS(1391), + [anon_sym_case] = ACTIONS(1391), + [anon_sym_default] = ACTIONS(1391), + [anon_sym_nextcase] = ACTIONS(1391), + [anon_sym_switch] = ACTIONS(1391), + [anon_sym_AMP_AMP] = ACTIONS(1393), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_foreach] = ACTIONS(1391), + [anon_sym_foreach_r] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_int] = ACTIONS(1391), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1393), + [anon_sym_asm] = ACTIONS(1391), + [anon_sym_DOLLARassert] = ACTIONS(1391), + [anon_sym_DOLLARerror] = ACTIONS(1391), + [anon_sym_DOLLARecho] = ACTIONS(1391), + [anon_sym_DOLLARif] = ACTIONS(1391), + [anon_sym_DOLLARswitch] = ACTIONS(1391), + [anon_sym_DOLLARfor] = ACTIONS(1391), + [anon_sym_DOLLARforeach] = ACTIONS(1391), + [anon_sym_DOLLARalignof] = ACTIONS(1391), + [anon_sym_DOLLARextnameof] = ACTIONS(1391), + [anon_sym_DOLLARnameof] = ACTIONS(1391), + [anon_sym_DOLLARoffsetof] = ACTIONS(1391), + [anon_sym_DOLLARqnameof] = ACTIONS(1391), + [anon_sym_DOLLARvaconst] = ACTIONS(1391), + [anon_sym_DOLLARvaarg] = ACTIONS(1391), + [anon_sym_DOLLARvaref] = ACTIONS(1391), + [anon_sym_DOLLARvaexpr] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_DOLLARvacount] = ACTIONS(1391), + [anon_sym_DOLLARappend] = ACTIONS(1391), + [anon_sym_DOLLARconcat] = ACTIONS(1391), + [anon_sym_DOLLAReval] = ACTIONS(1391), + [anon_sym_DOLLARis_const] = ACTIONS(1391), + [anon_sym_DOLLARsizeof] = ACTIONS(1391), + [anon_sym_DOLLARstringify] = ACTIONS(1391), + [anon_sym_DOLLARand] = ACTIONS(1391), + [anon_sym_DOLLARdefined] = ACTIONS(1391), + [anon_sym_DOLLARembed] = ACTIONS(1391), + [anon_sym_DOLLARor] = ACTIONS(1391), + [anon_sym_DOLLARfeature] = ACTIONS(1391), + [anon_sym_DOLLARassignable] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1393), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_PLUS_PLUS] = ACTIONS(1393), + [anon_sym_DASH_DASH] = ACTIONS(1393), + [anon_sym_typeid] = ACTIONS(1391), + [anon_sym_LBRACE_PIPE] = ACTIONS(1393), + [anon_sym_PIPE_RBRACE] = ACTIONS(1393), + [anon_sym_void] = ACTIONS(1391), + [anon_sym_bool] = ACTIONS(1391), + [anon_sym_char] = ACTIONS(1391), + [anon_sym_ichar] = ACTIONS(1391), + [anon_sym_short] = ACTIONS(1391), + [anon_sym_ushort] = ACTIONS(1391), + [anon_sym_uint] = ACTIONS(1391), + [anon_sym_long] = ACTIONS(1391), + [anon_sym_ulong] = ACTIONS(1391), + [anon_sym_int128] = ACTIONS(1391), + [anon_sym_uint128] = ACTIONS(1391), + [anon_sym_float] = ACTIONS(1391), + [anon_sym_double] = ACTIONS(1391), + [anon_sym_float16] = ACTIONS(1391), + [anon_sym_bfloat16] = ACTIONS(1391), + [anon_sym_float128] = ACTIONS(1391), + [anon_sym_iptr] = ACTIONS(1391), + [anon_sym_uptr] = ACTIONS(1391), + [anon_sym_isz] = ACTIONS(1391), + [anon_sym_usz] = ACTIONS(1391), + [anon_sym_anyfault] = ACTIONS(1391), + [anon_sym_any] = ACTIONS(1391), + [anon_sym_DOLLARtypeof] = ACTIONS(1391), + [anon_sym_DOLLARtypefrom] = ACTIONS(1391), + [anon_sym_DOLLARvatype] = ACTIONS(1391), + [anon_sym_DOLLARevaltype] = ACTIONS(1391), + [sym_real_literal] = ACTIONS(1393), }, [346] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), [sym_line_comment] = STATE(346), [sym_doc_comment] = STATE(346), [sym_block_comment] = STATE(346), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1301), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1131), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [sym_ident] = ACTIONS(1395), + [sym_integer_literal] = ACTIONS(1397), + [anon_sym_SQUOTE] = ACTIONS(1397), + [anon_sym_DQUOTE] = ACTIONS(1397), + [anon_sym_BQUOTE] = ACTIONS(1397), + [sym_bytes_literal] = ACTIONS(1397), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1395), + [sym_at_ident] = ACTIONS(1397), + [sym_hash_ident] = ACTIONS(1397), + [sym_type_ident] = ACTIONS(1397), + [sym_ct_type_ident] = ACTIONS(1397), + [sym_const_ident] = ACTIONS(1395), + [sym_builtin] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_AMP] = ACTIONS(1395), + [anon_sym_static] = ACTIONS(1395), + [anon_sym_tlocal] = ACTIONS(1395), + [anon_sym_SEMI] = ACTIONS(1397), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_RBRACE] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1395), + [anon_sym_var] = ACTIONS(1395), + [anon_sym_return] = ACTIONS(1395), + [anon_sym_continue] = ACTIONS(1395), + [anon_sym_break] = ACTIONS(1395), + [anon_sym_defer] = ACTIONS(1395), + [anon_sym_assert] = ACTIONS(1395), + [anon_sym_case] = ACTIONS(1395), + [anon_sym_default] = ACTIONS(1395), + [anon_sym_nextcase] = ACTIONS(1395), + [anon_sym_switch] = ACTIONS(1395), + [anon_sym_AMP_AMP] = ACTIONS(1397), + [anon_sym_if] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1395), + [anon_sym_foreach] = ACTIONS(1395), + [anon_sym_foreach_r] = ACTIONS(1395), + [anon_sym_while] = ACTIONS(1395), + [anon_sym_do] = ACTIONS(1395), + [anon_sym_int] = ACTIONS(1395), + [anon_sym_PLUS] = ACTIONS(1395), + [anon_sym_DASH] = ACTIONS(1395), + [anon_sym_STAR] = ACTIONS(1397), + [anon_sym_asm] = ACTIONS(1395), + [anon_sym_DOLLARassert] = ACTIONS(1395), + [anon_sym_DOLLARerror] = ACTIONS(1395), + [anon_sym_DOLLARecho] = ACTIONS(1395), + [anon_sym_DOLLARif] = ACTIONS(1395), + [anon_sym_DOLLARswitch] = ACTIONS(1395), + [anon_sym_DOLLARfor] = ACTIONS(1395), + [anon_sym_DOLLARforeach] = ACTIONS(1395), + [anon_sym_DOLLARalignof] = ACTIONS(1395), + [anon_sym_DOLLARextnameof] = ACTIONS(1395), + [anon_sym_DOLLARnameof] = ACTIONS(1395), + [anon_sym_DOLLARoffsetof] = ACTIONS(1395), + [anon_sym_DOLLARqnameof] = ACTIONS(1395), + [anon_sym_DOLLARvaconst] = ACTIONS(1395), + [anon_sym_DOLLARvaarg] = ACTIONS(1395), + [anon_sym_DOLLARvaref] = ACTIONS(1395), + [anon_sym_DOLLARvaexpr] = ACTIONS(1395), + [anon_sym_true] = ACTIONS(1395), + [anon_sym_false] = ACTIONS(1395), + [anon_sym_null] = ACTIONS(1395), + [anon_sym_DOLLARvacount] = ACTIONS(1395), + [anon_sym_DOLLARappend] = ACTIONS(1395), + [anon_sym_DOLLARconcat] = ACTIONS(1395), + [anon_sym_DOLLAReval] = ACTIONS(1395), + [anon_sym_DOLLARis_const] = ACTIONS(1395), + [anon_sym_DOLLARsizeof] = ACTIONS(1395), + [anon_sym_DOLLARstringify] = ACTIONS(1395), + [anon_sym_DOLLARand] = ACTIONS(1395), + [anon_sym_DOLLARdefined] = ACTIONS(1395), + [anon_sym_DOLLARembed] = ACTIONS(1395), + [anon_sym_DOLLARor] = ACTIONS(1395), + [anon_sym_DOLLARfeature] = ACTIONS(1395), + [anon_sym_DOLLARassignable] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_PLUS_PLUS] = ACTIONS(1397), + [anon_sym_DASH_DASH] = ACTIONS(1397), + [anon_sym_typeid] = ACTIONS(1395), + [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [anon_sym_PIPE_RBRACE] = ACTIONS(1397), + [anon_sym_void] = ACTIONS(1395), + [anon_sym_bool] = ACTIONS(1395), + [anon_sym_char] = ACTIONS(1395), + [anon_sym_ichar] = ACTIONS(1395), + [anon_sym_short] = ACTIONS(1395), + [anon_sym_ushort] = ACTIONS(1395), + [anon_sym_uint] = ACTIONS(1395), + [anon_sym_long] = ACTIONS(1395), + [anon_sym_ulong] = ACTIONS(1395), + [anon_sym_int128] = ACTIONS(1395), + [anon_sym_uint128] = ACTIONS(1395), + [anon_sym_float] = ACTIONS(1395), + [anon_sym_double] = ACTIONS(1395), + [anon_sym_float16] = ACTIONS(1395), + [anon_sym_bfloat16] = ACTIONS(1395), + [anon_sym_float128] = ACTIONS(1395), + [anon_sym_iptr] = ACTIONS(1395), + [anon_sym_uptr] = ACTIONS(1395), + [anon_sym_isz] = ACTIONS(1395), + [anon_sym_usz] = ACTIONS(1395), + [anon_sym_anyfault] = ACTIONS(1395), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_DOLLARtypeof] = ACTIONS(1395), + [anon_sym_DOLLARtypefrom] = ACTIONS(1395), + [anon_sym_DOLLARvatype] = ACTIONS(1395), + [anon_sym_DOLLARevaltype] = ACTIONS(1395), + [sym_real_literal] = ACTIONS(1397), }, [347] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), [sym_line_comment] = STATE(347), [sym_doc_comment] = STATE(347), [sym_block_comment] = STATE(347), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1238), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [sym_ident] = ACTIONS(1399), + [sym_integer_literal] = ACTIONS(1401), + [anon_sym_SQUOTE] = ACTIONS(1401), + [anon_sym_DQUOTE] = ACTIONS(1401), + [anon_sym_BQUOTE] = ACTIONS(1401), + [sym_bytes_literal] = ACTIONS(1401), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1399), + [sym_at_ident] = ACTIONS(1401), + [sym_hash_ident] = ACTIONS(1401), + [sym_type_ident] = ACTIONS(1401), + [sym_ct_type_ident] = ACTIONS(1401), + [sym_const_ident] = ACTIONS(1399), + [sym_builtin] = ACTIONS(1401), + [anon_sym_LPAREN] = ACTIONS(1401), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_static] = ACTIONS(1399), + [anon_sym_tlocal] = ACTIONS(1399), + [anon_sym_SEMI] = ACTIONS(1401), + [anon_sym_fn] = ACTIONS(1399), + [anon_sym_LBRACE] = ACTIONS(1399), + [anon_sym_RBRACE] = ACTIONS(1401), + [anon_sym_const] = ACTIONS(1399), + [anon_sym_var] = ACTIONS(1399), + [anon_sym_return] = ACTIONS(1399), + [anon_sym_continue] = ACTIONS(1399), + [anon_sym_break] = ACTIONS(1399), + [anon_sym_defer] = ACTIONS(1399), + [anon_sym_assert] = ACTIONS(1399), + [anon_sym_case] = ACTIONS(1399), + [anon_sym_default] = ACTIONS(1399), + [anon_sym_nextcase] = ACTIONS(1399), + [anon_sym_switch] = ACTIONS(1399), + [anon_sym_AMP_AMP] = ACTIONS(1401), + [anon_sym_if] = ACTIONS(1399), + [anon_sym_for] = ACTIONS(1399), + [anon_sym_foreach] = ACTIONS(1399), + [anon_sym_foreach_r] = ACTIONS(1399), + [anon_sym_while] = ACTIONS(1399), + [anon_sym_do] = ACTIONS(1399), + [anon_sym_int] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1399), + [anon_sym_DASH] = ACTIONS(1399), + [anon_sym_STAR] = ACTIONS(1401), + [anon_sym_asm] = ACTIONS(1399), + [anon_sym_DOLLARassert] = ACTIONS(1399), + [anon_sym_DOLLARerror] = ACTIONS(1399), + [anon_sym_DOLLARecho] = ACTIONS(1399), + [anon_sym_DOLLARif] = ACTIONS(1399), + [anon_sym_DOLLARswitch] = ACTIONS(1399), + [anon_sym_DOLLARfor] = ACTIONS(1399), + [anon_sym_DOLLARforeach] = ACTIONS(1399), + [anon_sym_DOLLARalignof] = ACTIONS(1399), + [anon_sym_DOLLARextnameof] = ACTIONS(1399), + [anon_sym_DOLLARnameof] = ACTIONS(1399), + [anon_sym_DOLLARoffsetof] = ACTIONS(1399), + [anon_sym_DOLLARqnameof] = ACTIONS(1399), + [anon_sym_DOLLARvaconst] = ACTIONS(1399), + [anon_sym_DOLLARvaarg] = ACTIONS(1399), + [anon_sym_DOLLARvaref] = ACTIONS(1399), + [anon_sym_DOLLARvaexpr] = ACTIONS(1399), + [anon_sym_true] = ACTIONS(1399), + [anon_sym_false] = ACTIONS(1399), + [anon_sym_null] = ACTIONS(1399), + [anon_sym_DOLLARvacount] = ACTIONS(1399), + [anon_sym_DOLLARappend] = ACTIONS(1399), + [anon_sym_DOLLARconcat] = ACTIONS(1399), + [anon_sym_DOLLAReval] = ACTIONS(1399), + [anon_sym_DOLLARis_const] = ACTIONS(1399), + [anon_sym_DOLLARsizeof] = ACTIONS(1399), + [anon_sym_DOLLARstringify] = ACTIONS(1399), + [anon_sym_DOLLARand] = ACTIONS(1399), + [anon_sym_DOLLARdefined] = ACTIONS(1399), + [anon_sym_DOLLARembed] = ACTIONS(1399), + [anon_sym_DOLLARor] = ACTIONS(1399), + [anon_sym_DOLLARfeature] = ACTIONS(1399), + [anon_sym_DOLLARassignable] = ACTIONS(1399), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_TILDE] = ACTIONS(1401), + [anon_sym_PLUS_PLUS] = ACTIONS(1401), + [anon_sym_DASH_DASH] = ACTIONS(1401), + [anon_sym_typeid] = ACTIONS(1399), + [anon_sym_LBRACE_PIPE] = ACTIONS(1401), + [anon_sym_PIPE_RBRACE] = ACTIONS(1401), + [anon_sym_void] = ACTIONS(1399), + [anon_sym_bool] = ACTIONS(1399), + [anon_sym_char] = ACTIONS(1399), + [anon_sym_ichar] = ACTIONS(1399), + [anon_sym_short] = ACTIONS(1399), + [anon_sym_ushort] = ACTIONS(1399), + [anon_sym_uint] = ACTIONS(1399), + [anon_sym_long] = ACTIONS(1399), + [anon_sym_ulong] = ACTIONS(1399), + [anon_sym_int128] = ACTIONS(1399), + [anon_sym_uint128] = ACTIONS(1399), + [anon_sym_float] = ACTIONS(1399), + [anon_sym_double] = ACTIONS(1399), + [anon_sym_float16] = ACTIONS(1399), + [anon_sym_bfloat16] = ACTIONS(1399), + [anon_sym_float128] = ACTIONS(1399), + [anon_sym_iptr] = ACTIONS(1399), + [anon_sym_uptr] = ACTIONS(1399), + [anon_sym_isz] = ACTIONS(1399), + [anon_sym_usz] = ACTIONS(1399), + [anon_sym_anyfault] = ACTIONS(1399), + [anon_sym_any] = ACTIONS(1399), + [anon_sym_DOLLARtypeof] = ACTIONS(1399), + [anon_sym_DOLLARtypefrom] = ACTIONS(1399), + [anon_sym_DOLLARvatype] = ACTIONS(1399), + [anon_sym_DOLLARevaltype] = ACTIONS(1399), + [sym_real_literal] = ACTIONS(1401), }, [348] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), [sym_line_comment] = STATE(348), [sym_doc_comment] = STATE(348), [sym_block_comment] = STATE(348), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1303), - [sym__constant_expr] = STATE(1788), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [sym_ident] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(1405), + [anon_sym_SQUOTE] = ACTIONS(1405), + [anon_sym_DQUOTE] = ACTIONS(1405), + [anon_sym_BQUOTE] = ACTIONS(1405), + [sym_bytes_literal] = ACTIONS(1405), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1403), + [sym_at_ident] = ACTIONS(1405), + [sym_hash_ident] = ACTIONS(1405), + [sym_type_ident] = ACTIONS(1405), + [sym_ct_type_ident] = ACTIONS(1405), + [sym_const_ident] = ACTIONS(1403), + [sym_builtin] = ACTIONS(1405), + [anon_sym_LPAREN] = ACTIONS(1405), + [anon_sym_AMP] = ACTIONS(1403), + [anon_sym_static] = ACTIONS(1403), + [anon_sym_tlocal] = ACTIONS(1403), + [anon_sym_SEMI] = ACTIONS(1405), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_RBRACE] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1403), + [anon_sym_var] = ACTIONS(1403), + [anon_sym_return] = ACTIONS(1403), + [anon_sym_continue] = ACTIONS(1403), + [anon_sym_break] = ACTIONS(1403), + [anon_sym_defer] = ACTIONS(1403), + [anon_sym_assert] = ACTIONS(1403), + [anon_sym_case] = ACTIONS(1403), + [anon_sym_default] = ACTIONS(1403), + [anon_sym_nextcase] = ACTIONS(1403), + [anon_sym_switch] = ACTIONS(1403), + [anon_sym_AMP_AMP] = ACTIONS(1405), + [anon_sym_if] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1403), + [anon_sym_foreach] = ACTIONS(1403), + [anon_sym_foreach_r] = ACTIONS(1403), + [anon_sym_while] = ACTIONS(1403), + [anon_sym_do] = ACTIONS(1403), + [anon_sym_int] = ACTIONS(1403), + [anon_sym_PLUS] = ACTIONS(1403), + [anon_sym_DASH] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(1405), + [anon_sym_asm] = ACTIONS(1403), + [anon_sym_DOLLARassert] = ACTIONS(1403), + [anon_sym_DOLLARerror] = ACTIONS(1403), + [anon_sym_DOLLARecho] = ACTIONS(1403), + [anon_sym_DOLLARif] = ACTIONS(1403), + [anon_sym_DOLLARswitch] = ACTIONS(1403), + [anon_sym_DOLLARfor] = ACTIONS(1403), + [anon_sym_DOLLARforeach] = ACTIONS(1403), + [anon_sym_DOLLARalignof] = ACTIONS(1403), + [anon_sym_DOLLARextnameof] = ACTIONS(1403), + [anon_sym_DOLLARnameof] = ACTIONS(1403), + [anon_sym_DOLLARoffsetof] = ACTIONS(1403), + [anon_sym_DOLLARqnameof] = ACTIONS(1403), + [anon_sym_DOLLARvaconst] = ACTIONS(1403), + [anon_sym_DOLLARvaarg] = ACTIONS(1403), + [anon_sym_DOLLARvaref] = ACTIONS(1403), + [anon_sym_DOLLARvaexpr] = ACTIONS(1403), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), + [anon_sym_null] = ACTIONS(1403), + [anon_sym_DOLLARvacount] = ACTIONS(1403), + [anon_sym_DOLLARappend] = ACTIONS(1403), + [anon_sym_DOLLARconcat] = ACTIONS(1403), + [anon_sym_DOLLAReval] = ACTIONS(1403), + [anon_sym_DOLLARis_const] = ACTIONS(1403), + [anon_sym_DOLLARsizeof] = ACTIONS(1403), + [anon_sym_DOLLARstringify] = ACTIONS(1403), + [anon_sym_DOLLARand] = ACTIONS(1403), + [anon_sym_DOLLARdefined] = ACTIONS(1403), + [anon_sym_DOLLARembed] = ACTIONS(1403), + [anon_sym_DOLLARor] = ACTIONS(1403), + [anon_sym_DOLLARfeature] = ACTIONS(1403), + [anon_sym_DOLLARassignable] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1405), + [anon_sym_PLUS_PLUS] = ACTIONS(1405), + [anon_sym_DASH_DASH] = ACTIONS(1405), + [anon_sym_typeid] = ACTIONS(1403), + [anon_sym_LBRACE_PIPE] = ACTIONS(1405), + [anon_sym_PIPE_RBRACE] = ACTIONS(1405), + [anon_sym_void] = ACTIONS(1403), + [anon_sym_bool] = ACTIONS(1403), + [anon_sym_char] = ACTIONS(1403), + [anon_sym_ichar] = ACTIONS(1403), + [anon_sym_short] = ACTIONS(1403), + [anon_sym_ushort] = ACTIONS(1403), + [anon_sym_uint] = ACTIONS(1403), + [anon_sym_long] = ACTIONS(1403), + [anon_sym_ulong] = ACTIONS(1403), + [anon_sym_int128] = ACTIONS(1403), + [anon_sym_uint128] = ACTIONS(1403), + [anon_sym_float] = ACTIONS(1403), + [anon_sym_double] = ACTIONS(1403), + [anon_sym_float16] = ACTIONS(1403), + [anon_sym_bfloat16] = ACTIONS(1403), + [anon_sym_float128] = ACTIONS(1403), + [anon_sym_iptr] = ACTIONS(1403), + [anon_sym_uptr] = ACTIONS(1403), + [anon_sym_isz] = ACTIONS(1403), + [anon_sym_usz] = ACTIONS(1403), + [anon_sym_anyfault] = ACTIONS(1403), + [anon_sym_any] = ACTIONS(1403), + [anon_sym_DOLLARtypeof] = ACTIONS(1403), + [anon_sym_DOLLARtypefrom] = ACTIONS(1403), + [anon_sym_DOLLARvatype] = ACTIONS(1403), + [anon_sym_DOLLARevaltype] = ACTIONS(1403), + [sym_real_literal] = ACTIONS(1405), }, [349] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), [sym_line_comment] = STATE(349), [sym_doc_comment] = STATE(349), [sym_block_comment] = STATE(349), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1246), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [sym_ident] = ACTIONS(1407), + [sym_integer_literal] = ACTIONS(1409), + [anon_sym_SQUOTE] = ACTIONS(1409), + [anon_sym_DQUOTE] = ACTIONS(1409), + [anon_sym_BQUOTE] = ACTIONS(1409), + [sym_bytes_literal] = ACTIONS(1409), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1407), + [sym_at_ident] = ACTIONS(1409), + [sym_hash_ident] = ACTIONS(1409), + [sym_type_ident] = ACTIONS(1409), + [sym_ct_type_ident] = ACTIONS(1409), + [sym_const_ident] = ACTIONS(1407), + [sym_builtin] = ACTIONS(1409), + [anon_sym_LPAREN] = ACTIONS(1409), + [anon_sym_AMP] = ACTIONS(1407), + [anon_sym_static] = ACTIONS(1407), + [anon_sym_tlocal] = ACTIONS(1407), + [anon_sym_SEMI] = ACTIONS(1409), + [anon_sym_fn] = ACTIONS(1407), + [anon_sym_LBRACE] = ACTIONS(1407), + [anon_sym_RBRACE] = ACTIONS(1409), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_var] = ACTIONS(1407), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_continue] = ACTIONS(1407), + [anon_sym_break] = ACTIONS(1407), + [anon_sym_defer] = ACTIONS(1407), + [anon_sym_assert] = ACTIONS(1407), + [anon_sym_case] = ACTIONS(1407), + [anon_sym_default] = ACTIONS(1407), + [anon_sym_nextcase] = ACTIONS(1407), + [anon_sym_switch] = ACTIONS(1407), + [anon_sym_AMP_AMP] = ACTIONS(1409), + [anon_sym_if] = ACTIONS(1407), + [anon_sym_for] = ACTIONS(1407), + [anon_sym_foreach] = ACTIONS(1407), + [anon_sym_foreach_r] = ACTIONS(1407), + [anon_sym_while] = ACTIONS(1407), + [anon_sym_do] = ACTIONS(1407), + [anon_sym_int] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1407), + [anon_sym_DASH] = ACTIONS(1407), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_asm] = ACTIONS(1407), + [anon_sym_DOLLARassert] = ACTIONS(1407), + [anon_sym_DOLLARerror] = ACTIONS(1407), + [anon_sym_DOLLARecho] = ACTIONS(1407), + [anon_sym_DOLLARif] = ACTIONS(1407), + [anon_sym_DOLLARswitch] = ACTIONS(1407), + [anon_sym_DOLLARfor] = ACTIONS(1407), + [anon_sym_DOLLARforeach] = ACTIONS(1407), + [anon_sym_DOLLARalignof] = ACTIONS(1407), + [anon_sym_DOLLARextnameof] = ACTIONS(1407), + [anon_sym_DOLLARnameof] = ACTIONS(1407), + [anon_sym_DOLLARoffsetof] = ACTIONS(1407), + [anon_sym_DOLLARqnameof] = ACTIONS(1407), + [anon_sym_DOLLARvaconst] = ACTIONS(1407), + [anon_sym_DOLLARvaarg] = ACTIONS(1407), + [anon_sym_DOLLARvaref] = ACTIONS(1407), + [anon_sym_DOLLARvaexpr] = ACTIONS(1407), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_null] = ACTIONS(1407), + [anon_sym_DOLLARvacount] = ACTIONS(1407), + [anon_sym_DOLLARappend] = ACTIONS(1407), + [anon_sym_DOLLARconcat] = ACTIONS(1407), + [anon_sym_DOLLAReval] = ACTIONS(1407), + [anon_sym_DOLLARis_const] = ACTIONS(1407), + [anon_sym_DOLLARsizeof] = ACTIONS(1407), + [anon_sym_DOLLARstringify] = ACTIONS(1407), + [anon_sym_DOLLARand] = ACTIONS(1407), + [anon_sym_DOLLARdefined] = ACTIONS(1407), + [anon_sym_DOLLARembed] = ACTIONS(1407), + [anon_sym_DOLLARor] = ACTIONS(1407), + [anon_sym_DOLLARfeature] = ACTIONS(1407), + [anon_sym_DOLLARassignable] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1409), + [anon_sym_TILDE] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1409), + [anon_sym_DASH_DASH] = ACTIONS(1409), + [anon_sym_typeid] = ACTIONS(1407), + [anon_sym_LBRACE_PIPE] = ACTIONS(1409), + [anon_sym_PIPE_RBRACE] = ACTIONS(1409), + [anon_sym_void] = ACTIONS(1407), + [anon_sym_bool] = ACTIONS(1407), + [anon_sym_char] = ACTIONS(1407), + [anon_sym_ichar] = ACTIONS(1407), + [anon_sym_short] = ACTIONS(1407), + [anon_sym_ushort] = ACTIONS(1407), + [anon_sym_uint] = ACTIONS(1407), + [anon_sym_long] = ACTIONS(1407), + [anon_sym_ulong] = ACTIONS(1407), + [anon_sym_int128] = ACTIONS(1407), + [anon_sym_uint128] = ACTIONS(1407), + [anon_sym_float] = ACTIONS(1407), + [anon_sym_double] = ACTIONS(1407), + [anon_sym_float16] = ACTIONS(1407), + [anon_sym_bfloat16] = ACTIONS(1407), + [anon_sym_float128] = ACTIONS(1407), + [anon_sym_iptr] = ACTIONS(1407), + [anon_sym_uptr] = ACTIONS(1407), + [anon_sym_isz] = ACTIONS(1407), + [anon_sym_usz] = ACTIONS(1407), + [anon_sym_anyfault] = ACTIONS(1407), + [anon_sym_any] = ACTIONS(1407), + [anon_sym_DOLLARtypeof] = ACTIONS(1407), + [anon_sym_DOLLARtypefrom] = ACTIONS(1407), + [anon_sym_DOLLARvatype] = ACTIONS(1407), + [anon_sym_DOLLARevaltype] = ACTIONS(1407), + [sym_real_literal] = ACTIONS(1409), }, [350] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), [sym_line_comment] = STATE(350), [sym_doc_comment] = STATE(350), [sym_block_comment] = STATE(350), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1181), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [sym_ident] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1413), + [anon_sym_SQUOTE] = ACTIONS(1413), + [anon_sym_DQUOTE] = ACTIONS(1413), + [anon_sym_BQUOTE] = ACTIONS(1413), + [sym_bytes_literal] = ACTIONS(1413), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1411), + [sym_at_ident] = ACTIONS(1413), + [sym_hash_ident] = ACTIONS(1413), + [sym_type_ident] = ACTIONS(1413), + [sym_ct_type_ident] = ACTIONS(1413), + [sym_const_ident] = ACTIONS(1411), + [sym_builtin] = ACTIONS(1413), + [anon_sym_LPAREN] = ACTIONS(1413), + [anon_sym_AMP] = ACTIONS(1411), + [anon_sym_static] = ACTIONS(1411), + [anon_sym_tlocal] = ACTIONS(1411), + [anon_sym_SEMI] = ACTIONS(1413), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_LBRACE] = ACTIONS(1411), + [anon_sym_RBRACE] = ACTIONS(1413), + [anon_sym_const] = ACTIONS(1411), + [anon_sym_var] = ACTIONS(1411), + [anon_sym_return] = ACTIONS(1411), + [anon_sym_continue] = ACTIONS(1411), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_defer] = ACTIONS(1411), + [anon_sym_assert] = ACTIONS(1411), + [anon_sym_case] = ACTIONS(1411), + [anon_sym_default] = ACTIONS(1411), + [anon_sym_nextcase] = ACTIONS(1411), + [anon_sym_switch] = ACTIONS(1411), + [anon_sym_AMP_AMP] = ACTIONS(1413), + [anon_sym_if] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1411), + [anon_sym_foreach] = ACTIONS(1411), + [anon_sym_foreach_r] = ACTIONS(1411), + [anon_sym_while] = ACTIONS(1411), + [anon_sym_do] = ACTIONS(1411), + [anon_sym_int] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_STAR] = ACTIONS(1413), + [anon_sym_asm] = ACTIONS(1411), + [anon_sym_DOLLARassert] = ACTIONS(1411), + [anon_sym_DOLLARerror] = ACTIONS(1411), + [anon_sym_DOLLARecho] = ACTIONS(1411), + [anon_sym_DOLLARif] = ACTIONS(1411), + [anon_sym_DOLLARswitch] = ACTIONS(1411), + [anon_sym_DOLLARfor] = ACTIONS(1411), + [anon_sym_DOLLARforeach] = ACTIONS(1411), + [anon_sym_DOLLARalignof] = ACTIONS(1411), + [anon_sym_DOLLARextnameof] = ACTIONS(1411), + [anon_sym_DOLLARnameof] = ACTIONS(1411), + [anon_sym_DOLLARoffsetof] = ACTIONS(1411), + [anon_sym_DOLLARqnameof] = ACTIONS(1411), + [anon_sym_DOLLARvaconst] = ACTIONS(1411), + [anon_sym_DOLLARvaarg] = ACTIONS(1411), + [anon_sym_DOLLARvaref] = ACTIONS(1411), + [anon_sym_DOLLARvaexpr] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1411), + [anon_sym_false] = ACTIONS(1411), + [anon_sym_null] = ACTIONS(1411), + [anon_sym_DOLLARvacount] = ACTIONS(1411), + [anon_sym_DOLLARappend] = ACTIONS(1411), + [anon_sym_DOLLARconcat] = ACTIONS(1411), + [anon_sym_DOLLAReval] = ACTIONS(1411), + [anon_sym_DOLLARis_const] = ACTIONS(1411), + [anon_sym_DOLLARsizeof] = ACTIONS(1411), + [anon_sym_DOLLARstringify] = ACTIONS(1411), + [anon_sym_DOLLARand] = ACTIONS(1411), + [anon_sym_DOLLARdefined] = ACTIONS(1411), + [anon_sym_DOLLARembed] = ACTIONS(1411), + [anon_sym_DOLLARor] = ACTIONS(1411), + [anon_sym_DOLLARfeature] = ACTIONS(1411), + [anon_sym_DOLLARassignable] = ACTIONS(1411), + [anon_sym_BANG] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_typeid] = ACTIONS(1411), + [anon_sym_LBRACE_PIPE] = ACTIONS(1413), + [anon_sym_PIPE_RBRACE] = ACTIONS(1413), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_bool] = ACTIONS(1411), + [anon_sym_char] = ACTIONS(1411), + [anon_sym_ichar] = ACTIONS(1411), + [anon_sym_short] = ACTIONS(1411), + [anon_sym_ushort] = ACTIONS(1411), + [anon_sym_uint] = ACTIONS(1411), + [anon_sym_long] = ACTIONS(1411), + [anon_sym_ulong] = ACTIONS(1411), + [anon_sym_int128] = ACTIONS(1411), + [anon_sym_uint128] = ACTIONS(1411), + [anon_sym_float] = ACTIONS(1411), + [anon_sym_double] = ACTIONS(1411), + [anon_sym_float16] = ACTIONS(1411), + [anon_sym_bfloat16] = ACTIONS(1411), + [anon_sym_float128] = ACTIONS(1411), + [anon_sym_iptr] = ACTIONS(1411), + [anon_sym_uptr] = ACTIONS(1411), + [anon_sym_isz] = ACTIONS(1411), + [anon_sym_usz] = ACTIONS(1411), + [anon_sym_anyfault] = ACTIONS(1411), + [anon_sym_any] = ACTIONS(1411), + [anon_sym_DOLLARtypeof] = ACTIONS(1411), + [anon_sym_DOLLARtypefrom] = ACTIONS(1411), + [anon_sym_DOLLARvatype] = ACTIONS(1411), + [anon_sym_DOLLARevaltype] = ACTIONS(1411), + [sym_real_literal] = ACTIONS(1413), }, [351] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), [sym_line_comment] = STATE(351), [sym_doc_comment] = STATE(351), [sym_block_comment] = STATE(351), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1303), - [sym__constant_expr] = STATE(1637), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [sym_ident] = ACTIONS(1415), + [sym_integer_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1417), + [anon_sym_DQUOTE] = ACTIONS(1417), + [anon_sym_BQUOTE] = ACTIONS(1417), + [sym_bytes_literal] = ACTIONS(1417), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1415), + [sym_at_ident] = ACTIONS(1417), + [sym_hash_ident] = ACTIONS(1417), + [sym_type_ident] = ACTIONS(1417), + [sym_ct_type_ident] = ACTIONS(1417), + [sym_const_ident] = ACTIONS(1415), + [sym_builtin] = ACTIONS(1417), + [anon_sym_LPAREN] = ACTIONS(1417), + [anon_sym_AMP] = ACTIONS(1415), + [anon_sym_static] = ACTIONS(1415), + [anon_sym_tlocal] = ACTIONS(1415), + [anon_sym_SEMI] = ACTIONS(1417), + [anon_sym_fn] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1415), + [anon_sym_RBRACE] = ACTIONS(1417), + [anon_sym_const] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1415), + [anon_sym_return] = ACTIONS(1415), + [anon_sym_continue] = ACTIONS(1415), + [anon_sym_break] = ACTIONS(1415), + [anon_sym_defer] = ACTIONS(1415), + [anon_sym_assert] = ACTIONS(1415), + [anon_sym_case] = ACTIONS(1415), + [anon_sym_default] = ACTIONS(1415), + [anon_sym_nextcase] = ACTIONS(1415), + [anon_sym_switch] = ACTIONS(1415), + [anon_sym_AMP_AMP] = ACTIONS(1417), + [anon_sym_if] = ACTIONS(1415), + [anon_sym_for] = ACTIONS(1415), + [anon_sym_foreach] = ACTIONS(1415), + [anon_sym_foreach_r] = ACTIONS(1415), + [anon_sym_while] = ACTIONS(1415), + [anon_sym_do] = ACTIONS(1415), + [anon_sym_int] = ACTIONS(1415), + [anon_sym_PLUS] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1415), + [anon_sym_STAR] = ACTIONS(1417), + [anon_sym_asm] = ACTIONS(1415), + [anon_sym_DOLLARassert] = ACTIONS(1415), + [anon_sym_DOLLARerror] = ACTIONS(1415), + [anon_sym_DOLLARecho] = ACTIONS(1415), + [anon_sym_DOLLARif] = ACTIONS(1415), + [anon_sym_DOLLARswitch] = ACTIONS(1415), + [anon_sym_DOLLARfor] = ACTIONS(1415), + [anon_sym_DOLLARforeach] = ACTIONS(1415), + [anon_sym_DOLLARalignof] = ACTIONS(1415), + [anon_sym_DOLLARextnameof] = ACTIONS(1415), + [anon_sym_DOLLARnameof] = ACTIONS(1415), + [anon_sym_DOLLARoffsetof] = ACTIONS(1415), + [anon_sym_DOLLARqnameof] = ACTIONS(1415), + [anon_sym_DOLLARvaconst] = ACTIONS(1415), + [anon_sym_DOLLARvaarg] = ACTIONS(1415), + [anon_sym_DOLLARvaref] = ACTIONS(1415), + [anon_sym_DOLLARvaexpr] = ACTIONS(1415), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_null] = ACTIONS(1415), + [anon_sym_DOLLARvacount] = ACTIONS(1415), + [anon_sym_DOLLARappend] = ACTIONS(1415), + [anon_sym_DOLLARconcat] = ACTIONS(1415), + [anon_sym_DOLLAReval] = ACTIONS(1415), + [anon_sym_DOLLARis_const] = ACTIONS(1415), + [anon_sym_DOLLARsizeof] = ACTIONS(1415), + [anon_sym_DOLLARstringify] = ACTIONS(1415), + [anon_sym_DOLLARand] = ACTIONS(1415), + [anon_sym_DOLLARdefined] = ACTIONS(1415), + [anon_sym_DOLLARembed] = ACTIONS(1415), + [anon_sym_DOLLARor] = ACTIONS(1415), + [anon_sym_DOLLARfeature] = ACTIONS(1415), + [anon_sym_DOLLARassignable] = ACTIONS(1415), + [anon_sym_BANG] = ACTIONS(1417), + [anon_sym_TILDE] = ACTIONS(1417), + [anon_sym_PLUS_PLUS] = ACTIONS(1417), + [anon_sym_DASH_DASH] = ACTIONS(1417), + [anon_sym_typeid] = ACTIONS(1415), + [anon_sym_LBRACE_PIPE] = ACTIONS(1417), + [anon_sym_PIPE_RBRACE] = ACTIONS(1417), + [anon_sym_void] = ACTIONS(1415), + [anon_sym_bool] = ACTIONS(1415), + [anon_sym_char] = ACTIONS(1415), + [anon_sym_ichar] = ACTIONS(1415), + [anon_sym_short] = ACTIONS(1415), + [anon_sym_ushort] = ACTIONS(1415), + [anon_sym_uint] = ACTIONS(1415), + [anon_sym_long] = ACTIONS(1415), + [anon_sym_ulong] = ACTIONS(1415), + [anon_sym_int128] = ACTIONS(1415), + [anon_sym_uint128] = ACTIONS(1415), + [anon_sym_float] = ACTIONS(1415), + [anon_sym_double] = ACTIONS(1415), + [anon_sym_float16] = ACTIONS(1415), + [anon_sym_bfloat16] = ACTIONS(1415), + [anon_sym_float128] = ACTIONS(1415), + [anon_sym_iptr] = ACTIONS(1415), + [anon_sym_uptr] = ACTIONS(1415), + [anon_sym_isz] = ACTIONS(1415), + [anon_sym_usz] = ACTIONS(1415), + [anon_sym_anyfault] = ACTIONS(1415), + [anon_sym_any] = ACTIONS(1415), + [anon_sym_DOLLARtypeof] = ACTIONS(1415), + [anon_sym_DOLLARtypefrom] = ACTIONS(1415), + [anon_sym_DOLLARvatype] = ACTIONS(1415), + [anon_sym_DOLLARevaltype] = ACTIONS(1415), + [sym_real_literal] = ACTIONS(1417), }, [352] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), [sym_line_comment] = STATE(352), [sym_doc_comment] = STATE(352), [sym_block_comment] = STATE(352), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1303), - [sym__constant_expr] = STATE(1690), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [sym_ident] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1421), + [anon_sym_SQUOTE] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1421), + [anon_sym_BQUOTE] = ACTIONS(1421), + [sym_bytes_literal] = ACTIONS(1421), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1419), + [sym_at_ident] = ACTIONS(1421), + [sym_hash_ident] = ACTIONS(1421), + [sym_type_ident] = ACTIONS(1421), + [sym_ct_type_ident] = ACTIONS(1421), + [sym_const_ident] = ACTIONS(1419), + [sym_builtin] = ACTIONS(1421), + [anon_sym_LPAREN] = ACTIONS(1421), + [anon_sym_AMP] = ACTIONS(1419), + [anon_sym_static] = ACTIONS(1419), + [anon_sym_tlocal] = ACTIONS(1419), + [anon_sym_SEMI] = ACTIONS(1421), + [anon_sym_fn] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(1419), + [anon_sym_RBRACE] = ACTIONS(1421), + [anon_sym_const] = ACTIONS(1419), + [anon_sym_var] = ACTIONS(1419), + [anon_sym_return] = ACTIONS(1419), + [anon_sym_continue] = ACTIONS(1419), + [anon_sym_break] = ACTIONS(1419), + [anon_sym_defer] = ACTIONS(1419), + [anon_sym_assert] = ACTIONS(1419), + [anon_sym_case] = ACTIONS(1419), + [anon_sym_default] = ACTIONS(1419), + [anon_sym_nextcase] = ACTIONS(1419), + [anon_sym_switch] = ACTIONS(1419), + [anon_sym_AMP_AMP] = ACTIONS(1421), + [anon_sym_if] = ACTIONS(1419), + [anon_sym_for] = ACTIONS(1419), + [anon_sym_foreach] = ACTIONS(1419), + [anon_sym_foreach_r] = ACTIONS(1419), + [anon_sym_while] = ACTIONS(1419), + [anon_sym_do] = ACTIONS(1419), + [anon_sym_int] = ACTIONS(1419), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_DASH] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1421), + [anon_sym_asm] = ACTIONS(1419), + [anon_sym_DOLLARassert] = ACTIONS(1419), + [anon_sym_DOLLARerror] = ACTIONS(1419), + [anon_sym_DOLLARecho] = ACTIONS(1419), + [anon_sym_DOLLARif] = ACTIONS(1419), + [anon_sym_DOLLARswitch] = ACTIONS(1419), + [anon_sym_DOLLARfor] = ACTIONS(1419), + [anon_sym_DOLLARforeach] = ACTIONS(1419), + [anon_sym_DOLLARalignof] = ACTIONS(1419), + [anon_sym_DOLLARextnameof] = ACTIONS(1419), + [anon_sym_DOLLARnameof] = ACTIONS(1419), + [anon_sym_DOLLARoffsetof] = ACTIONS(1419), + [anon_sym_DOLLARqnameof] = ACTIONS(1419), + [anon_sym_DOLLARvaconst] = ACTIONS(1419), + [anon_sym_DOLLARvaarg] = ACTIONS(1419), + [anon_sym_DOLLARvaref] = ACTIONS(1419), + [anon_sym_DOLLARvaexpr] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1419), + [anon_sym_false] = ACTIONS(1419), + [anon_sym_null] = ACTIONS(1419), + [anon_sym_DOLLARvacount] = ACTIONS(1419), + [anon_sym_DOLLARappend] = ACTIONS(1419), + [anon_sym_DOLLARconcat] = ACTIONS(1419), + [anon_sym_DOLLAReval] = ACTIONS(1419), + [anon_sym_DOLLARis_const] = ACTIONS(1419), + [anon_sym_DOLLARsizeof] = ACTIONS(1419), + [anon_sym_DOLLARstringify] = ACTIONS(1419), + [anon_sym_DOLLARand] = ACTIONS(1419), + [anon_sym_DOLLARdefined] = ACTIONS(1419), + [anon_sym_DOLLARembed] = ACTIONS(1419), + [anon_sym_DOLLARor] = ACTIONS(1419), + [anon_sym_DOLLARfeature] = ACTIONS(1419), + [anon_sym_DOLLARassignable] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_PLUS_PLUS] = ACTIONS(1421), + [anon_sym_DASH_DASH] = ACTIONS(1421), + [anon_sym_typeid] = ACTIONS(1419), + [anon_sym_LBRACE_PIPE] = ACTIONS(1421), + [anon_sym_PIPE_RBRACE] = ACTIONS(1421), + [anon_sym_void] = ACTIONS(1419), + [anon_sym_bool] = ACTIONS(1419), + [anon_sym_char] = ACTIONS(1419), + [anon_sym_ichar] = ACTIONS(1419), + [anon_sym_short] = ACTIONS(1419), + [anon_sym_ushort] = ACTIONS(1419), + [anon_sym_uint] = ACTIONS(1419), + [anon_sym_long] = ACTIONS(1419), + [anon_sym_ulong] = ACTIONS(1419), + [anon_sym_int128] = ACTIONS(1419), + [anon_sym_uint128] = ACTIONS(1419), + [anon_sym_float] = ACTIONS(1419), + [anon_sym_double] = ACTIONS(1419), + [anon_sym_float16] = ACTIONS(1419), + [anon_sym_bfloat16] = ACTIONS(1419), + [anon_sym_float128] = ACTIONS(1419), + [anon_sym_iptr] = ACTIONS(1419), + [anon_sym_uptr] = ACTIONS(1419), + [anon_sym_isz] = ACTIONS(1419), + [anon_sym_usz] = ACTIONS(1419), + [anon_sym_anyfault] = ACTIONS(1419), + [anon_sym_any] = ACTIONS(1419), + [anon_sym_DOLLARtypeof] = ACTIONS(1419), + [anon_sym_DOLLARtypefrom] = ACTIONS(1419), + [anon_sym_DOLLARvatype] = ACTIONS(1419), + [anon_sym_DOLLARevaltype] = ACTIONS(1419), + [sym_real_literal] = ACTIONS(1421), }, [353] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), [sym_line_comment] = STATE(353), [sym_doc_comment] = STATE(353), [sym_block_comment] = STATE(353), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1252), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [sym_ident] = ACTIONS(1423), + [sym_integer_literal] = ACTIONS(1425), + [anon_sym_SQUOTE] = ACTIONS(1425), + [anon_sym_DQUOTE] = ACTIONS(1425), + [anon_sym_BQUOTE] = ACTIONS(1425), + [sym_bytes_literal] = ACTIONS(1425), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1423), + [sym_at_ident] = ACTIONS(1425), + [sym_hash_ident] = ACTIONS(1425), + [sym_type_ident] = ACTIONS(1425), + [sym_ct_type_ident] = ACTIONS(1425), + [sym_const_ident] = ACTIONS(1423), + [sym_builtin] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1423), + [anon_sym_static] = ACTIONS(1423), + [anon_sym_tlocal] = ACTIONS(1423), + [anon_sym_SEMI] = ACTIONS(1425), + [anon_sym_fn] = ACTIONS(1423), + [anon_sym_LBRACE] = ACTIONS(1423), + [anon_sym_RBRACE] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1423), + [anon_sym_var] = ACTIONS(1423), + [anon_sym_return] = ACTIONS(1423), + [anon_sym_continue] = ACTIONS(1423), + [anon_sym_break] = ACTIONS(1423), + [anon_sym_defer] = ACTIONS(1423), + [anon_sym_assert] = ACTIONS(1423), + [anon_sym_case] = ACTIONS(1423), + [anon_sym_default] = ACTIONS(1423), + [anon_sym_nextcase] = ACTIONS(1423), + [anon_sym_switch] = ACTIONS(1423), + [anon_sym_AMP_AMP] = ACTIONS(1425), + [anon_sym_if] = ACTIONS(1423), + [anon_sym_for] = ACTIONS(1423), + [anon_sym_foreach] = ACTIONS(1423), + [anon_sym_foreach_r] = ACTIONS(1423), + [anon_sym_while] = ACTIONS(1423), + [anon_sym_do] = ACTIONS(1423), + [anon_sym_int] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_asm] = ACTIONS(1423), + [anon_sym_DOLLARassert] = ACTIONS(1423), + [anon_sym_DOLLARerror] = ACTIONS(1423), + [anon_sym_DOLLARecho] = ACTIONS(1423), + [anon_sym_DOLLARif] = ACTIONS(1423), + [anon_sym_DOLLARswitch] = ACTIONS(1423), + [anon_sym_DOLLARfor] = ACTIONS(1423), + [anon_sym_DOLLARforeach] = ACTIONS(1423), + [anon_sym_DOLLARalignof] = ACTIONS(1423), + [anon_sym_DOLLARextnameof] = ACTIONS(1423), + [anon_sym_DOLLARnameof] = ACTIONS(1423), + [anon_sym_DOLLARoffsetof] = ACTIONS(1423), + [anon_sym_DOLLARqnameof] = ACTIONS(1423), + [anon_sym_DOLLARvaconst] = ACTIONS(1423), + [anon_sym_DOLLARvaarg] = ACTIONS(1423), + [anon_sym_DOLLARvaref] = ACTIONS(1423), + [anon_sym_DOLLARvaexpr] = ACTIONS(1423), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_null] = ACTIONS(1423), + [anon_sym_DOLLARvacount] = ACTIONS(1423), + [anon_sym_DOLLARappend] = ACTIONS(1423), + [anon_sym_DOLLARconcat] = ACTIONS(1423), + [anon_sym_DOLLAReval] = ACTIONS(1423), + [anon_sym_DOLLARis_const] = ACTIONS(1423), + [anon_sym_DOLLARsizeof] = ACTIONS(1423), + [anon_sym_DOLLARstringify] = ACTIONS(1423), + [anon_sym_DOLLARand] = ACTIONS(1423), + [anon_sym_DOLLARdefined] = ACTIONS(1423), + [anon_sym_DOLLARembed] = ACTIONS(1423), + [anon_sym_DOLLARor] = ACTIONS(1423), + [anon_sym_DOLLARfeature] = ACTIONS(1423), + [anon_sym_DOLLARassignable] = ACTIONS(1423), + [anon_sym_BANG] = ACTIONS(1425), + [anon_sym_TILDE] = ACTIONS(1425), + [anon_sym_PLUS_PLUS] = ACTIONS(1425), + [anon_sym_DASH_DASH] = ACTIONS(1425), + [anon_sym_typeid] = ACTIONS(1423), + [anon_sym_LBRACE_PIPE] = ACTIONS(1425), + [anon_sym_PIPE_RBRACE] = ACTIONS(1425), + [anon_sym_void] = ACTIONS(1423), + [anon_sym_bool] = ACTIONS(1423), + [anon_sym_char] = ACTIONS(1423), + [anon_sym_ichar] = ACTIONS(1423), + [anon_sym_short] = ACTIONS(1423), + [anon_sym_ushort] = ACTIONS(1423), + [anon_sym_uint] = ACTIONS(1423), + [anon_sym_long] = ACTIONS(1423), + [anon_sym_ulong] = ACTIONS(1423), + [anon_sym_int128] = ACTIONS(1423), + [anon_sym_uint128] = ACTIONS(1423), + [anon_sym_float] = ACTIONS(1423), + [anon_sym_double] = ACTIONS(1423), + [anon_sym_float16] = ACTIONS(1423), + [anon_sym_bfloat16] = ACTIONS(1423), + [anon_sym_float128] = ACTIONS(1423), + [anon_sym_iptr] = ACTIONS(1423), + [anon_sym_uptr] = ACTIONS(1423), + [anon_sym_isz] = ACTIONS(1423), + [anon_sym_usz] = ACTIONS(1423), + [anon_sym_anyfault] = ACTIONS(1423), + [anon_sym_any] = ACTIONS(1423), + [anon_sym_DOLLARtypeof] = ACTIONS(1423), + [anon_sym_DOLLARtypefrom] = ACTIONS(1423), + [anon_sym_DOLLARvatype] = ACTIONS(1423), + [anon_sym_DOLLARevaltype] = ACTIONS(1423), + [sym_real_literal] = ACTIONS(1425), }, [354] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), [sym_line_comment] = STATE(354), [sym_doc_comment] = STATE(354), [sym_block_comment] = STATE(354), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1244), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [sym_ident] = ACTIONS(1427), + [sym_integer_literal] = ACTIONS(1429), + [anon_sym_SQUOTE] = ACTIONS(1429), + [anon_sym_DQUOTE] = ACTIONS(1429), + [anon_sym_BQUOTE] = ACTIONS(1429), + [sym_bytes_literal] = ACTIONS(1429), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1427), + [sym_at_ident] = ACTIONS(1429), + [sym_hash_ident] = ACTIONS(1429), + [sym_type_ident] = ACTIONS(1429), + [sym_ct_type_ident] = ACTIONS(1429), + [sym_const_ident] = ACTIONS(1427), + [sym_builtin] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1429), + [anon_sym_AMP] = ACTIONS(1427), + [anon_sym_static] = ACTIONS(1427), + [anon_sym_tlocal] = ACTIONS(1427), + [anon_sym_SEMI] = ACTIONS(1429), + [anon_sym_fn] = ACTIONS(1427), + [anon_sym_LBRACE] = ACTIONS(1427), + [anon_sym_RBRACE] = ACTIONS(1429), + [anon_sym_const] = ACTIONS(1427), + [anon_sym_var] = ACTIONS(1427), + [anon_sym_return] = ACTIONS(1427), + [anon_sym_continue] = ACTIONS(1427), + [anon_sym_break] = ACTIONS(1427), + [anon_sym_defer] = ACTIONS(1427), + [anon_sym_assert] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1427), + [anon_sym_default] = ACTIONS(1427), + [anon_sym_nextcase] = ACTIONS(1427), + [anon_sym_switch] = ACTIONS(1427), + [anon_sym_AMP_AMP] = ACTIONS(1429), + [anon_sym_if] = ACTIONS(1427), + [anon_sym_for] = ACTIONS(1427), + [anon_sym_foreach] = ACTIONS(1427), + [anon_sym_foreach_r] = ACTIONS(1427), + [anon_sym_while] = ACTIONS(1427), + [anon_sym_do] = ACTIONS(1427), + [anon_sym_int] = ACTIONS(1427), + [anon_sym_PLUS] = ACTIONS(1427), + [anon_sym_DASH] = ACTIONS(1427), + [anon_sym_STAR] = ACTIONS(1429), + [anon_sym_asm] = ACTIONS(1427), + [anon_sym_DOLLARassert] = ACTIONS(1427), + [anon_sym_DOLLARerror] = ACTIONS(1427), + [anon_sym_DOLLARecho] = ACTIONS(1427), + [anon_sym_DOLLARif] = ACTIONS(1427), + [anon_sym_DOLLARswitch] = ACTIONS(1427), + [anon_sym_DOLLARfor] = ACTIONS(1427), + [anon_sym_DOLLARforeach] = ACTIONS(1427), + [anon_sym_DOLLARalignof] = ACTIONS(1427), + [anon_sym_DOLLARextnameof] = ACTIONS(1427), + [anon_sym_DOLLARnameof] = ACTIONS(1427), + [anon_sym_DOLLARoffsetof] = ACTIONS(1427), + [anon_sym_DOLLARqnameof] = ACTIONS(1427), + [anon_sym_DOLLARvaconst] = ACTIONS(1427), + [anon_sym_DOLLARvaarg] = ACTIONS(1427), + [anon_sym_DOLLARvaref] = ACTIONS(1427), + [anon_sym_DOLLARvaexpr] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1427), + [anon_sym_false] = ACTIONS(1427), + [anon_sym_null] = ACTIONS(1427), + [anon_sym_DOLLARvacount] = ACTIONS(1427), + [anon_sym_DOLLARappend] = ACTIONS(1427), + [anon_sym_DOLLARconcat] = ACTIONS(1427), + [anon_sym_DOLLAReval] = ACTIONS(1427), + [anon_sym_DOLLARis_const] = ACTIONS(1427), + [anon_sym_DOLLARsizeof] = ACTIONS(1427), + [anon_sym_DOLLARstringify] = ACTIONS(1427), + [anon_sym_DOLLARand] = ACTIONS(1427), + [anon_sym_DOLLARdefined] = ACTIONS(1427), + [anon_sym_DOLLARembed] = ACTIONS(1427), + [anon_sym_DOLLARor] = ACTIONS(1427), + [anon_sym_DOLLARfeature] = ACTIONS(1427), + [anon_sym_DOLLARassignable] = ACTIONS(1427), + [anon_sym_BANG] = ACTIONS(1429), + [anon_sym_TILDE] = ACTIONS(1429), + [anon_sym_PLUS_PLUS] = ACTIONS(1429), + [anon_sym_DASH_DASH] = ACTIONS(1429), + [anon_sym_typeid] = ACTIONS(1427), + [anon_sym_LBRACE_PIPE] = ACTIONS(1429), + [anon_sym_PIPE_RBRACE] = ACTIONS(1429), + [anon_sym_void] = ACTIONS(1427), + [anon_sym_bool] = ACTIONS(1427), + [anon_sym_char] = ACTIONS(1427), + [anon_sym_ichar] = ACTIONS(1427), + [anon_sym_short] = ACTIONS(1427), + [anon_sym_ushort] = ACTIONS(1427), + [anon_sym_uint] = ACTIONS(1427), + [anon_sym_long] = ACTIONS(1427), + [anon_sym_ulong] = ACTIONS(1427), + [anon_sym_int128] = ACTIONS(1427), + [anon_sym_uint128] = ACTIONS(1427), + [anon_sym_float] = ACTIONS(1427), + [anon_sym_double] = ACTIONS(1427), + [anon_sym_float16] = ACTIONS(1427), + [anon_sym_bfloat16] = ACTIONS(1427), + [anon_sym_float128] = ACTIONS(1427), + [anon_sym_iptr] = ACTIONS(1427), + [anon_sym_uptr] = ACTIONS(1427), + [anon_sym_isz] = ACTIONS(1427), + [anon_sym_usz] = ACTIONS(1427), + [anon_sym_anyfault] = ACTIONS(1427), + [anon_sym_any] = ACTIONS(1427), + [anon_sym_DOLLARtypeof] = ACTIONS(1427), + [anon_sym_DOLLARtypefrom] = ACTIONS(1427), + [anon_sym_DOLLARvatype] = ACTIONS(1427), + [anon_sym_DOLLARevaltype] = ACTIONS(1427), + [sym_real_literal] = ACTIONS(1429), }, [355] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), [sym_line_comment] = STATE(355), [sym_doc_comment] = STATE(355), [sym_block_comment] = STATE(355), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1301), - [sym__constant_expr] = STATE(1715), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1083), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1224), - [sym_lambda_expr] = STATE(1224), - [sym_elvis_orelse_expr] = STATE(1224), - [sym_suffix_expr] = STATE(1224), - [sym_cast_expr] = STATE(1207), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1207), - [sym_binary_expr] = STATE(1207), - [sym_call_expr] = STATE(1089), - [sym_update_expr] = STATE(1089), - [sym_rethrow_expr] = STATE(1089), - [sym_trailing_generic_expr] = STATE(1089), - [sym_subscript_expr] = STATE(1089), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [sym_ident] = ACTIONS(1431), + [sym_integer_literal] = ACTIONS(1433), + [anon_sym_SQUOTE] = ACTIONS(1433), + [anon_sym_DQUOTE] = ACTIONS(1433), + [anon_sym_BQUOTE] = ACTIONS(1433), + [sym_bytes_literal] = ACTIONS(1433), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1431), + [sym_at_ident] = ACTIONS(1433), + [sym_hash_ident] = ACTIONS(1433), + [sym_type_ident] = ACTIONS(1433), + [sym_ct_type_ident] = ACTIONS(1433), + [sym_const_ident] = ACTIONS(1431), + [sym_builtin] = ACTIONS(1433), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_AMP] = ACTIONS(1431), + [anon_sym_static] = ACTIONS(1431), + [anon_sym_tlocal] = ACTIONS(1431), + [anon_sym_SEMI] = ACTIONS(1433), + [anon_sym_fn] = ACTIONS(1431), + [anon_sym_LBRACE] = ACTIONS(1431), + [anon_sym_RBRACE] = ACTIONS(1433), + [anon_sym_const] = ACTIONS(1431), + [anon_sym_var] = ACTIONS(1431), + [anon_sym_return] = ACTIONS(1431), + [anon_sym_continue] = ACTIONS(1431), + [anon_sym_break] = ACTIONS(1431), + [anon_sym_defer] = ACTIONS(1431), + [anon_sym_assert] = ACTIONS(1431), + [anon_sym_case] = ACTIONS(1431), + [anon_sym_default] = ACTIONS(1431), + [anon_sym_nextcase] = ACTIONS(1431), + [anon_sym_switch] = ACTIONS(1431), + [anon_sym_AMP_AMP] = ACTIONS(1433), + [anon_sym_if] = ACTIONS(1431), + [anon_sym_for] = ACTIONS(1431), + [anon_sym_foreach] = ACTIONS(1431), + [anon_sym_foreach_r] = ACTIONS(1431), + [anon_sym_while] = ACTIONS(1431), + [anon_sym_do] = ACTIONS(1431), + [anon_sym_int] = ACTIONS(1431), + [anon_sym_PLUS] = ACTIONS(1431), + [anon_sym_DASH] = ACTIONS(1431), + [anon_sym_STAR] = ACTIONS(1433), + [anon_sym_asm] = ACTIONS(1431), + [anon_sym_DOLLARassert] = ACTIONS(1431), + [anon_sym_DOLLARerror] = ACTIONS(1431), + [anon_sym_DOLLARecho] = ACTIONS(1431), + [anon_sym_DOLLARif] = ACTIONS(1431), + [anon_sym_DOLLARswitch] = ACTIONS(1431), + [anon_sym_DOLLARfor] = ACTIONS(1431), + [anon_sym_DOLLARforeach] = ACTIONS(1431), + [anon_sym_DOLLARalignof] = ACTIONS(1431), + [anon_sym_DOLLARextnameof] = ACTIONS(1431), + [anon_sym_DOLLARnameof] = ACTIONS(1431), + [anon_sym_DOLLARoffsetof] = ACTIONS(1431), + [anon_sym_DOLLARqnameof] = ACTIONS(1431), + [anon_sym_DOLLARvaconst] = ACTIONS(1431), + [anon_sym_DOLLARvaarg] = ACTIONS(1431), + [anon_sym_DOLLARvaref] = ACTIONS(1431), + [anon_sym_DOLLARvaexpr] = ACTIONS(1431), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_null] = ACTIONS(1431), + [anon_sym_DOLLARvacount] = ACTIONS(1431), + [anon_sym_DOLLARappend] = ACTIONS(1431), + [anon_sym_DOLLARconcat] = ACTIONS(1431), + [anon_sym_DOLLAReval] = ACTIONS(1431), + [anon_sym_DOLLARis_const] = ACTIONS(1431), + [anon_sym_DOLLARsizeof] = ACTIONS(1431), + [anon_sym_DOLLARstringify] = ACTIONS(1431), + [anon_sym_DOLLARand] = ACTIONS(1431), + [anon_sym_DOLLARdefined] = ACTIONS(1431), + [anon_sym_DOLLARembed] = ACTIONS(1431), + [anon_sym_DOLLARor] = ACTIONS(1431), + [anon_sym_DOLLARfeature] = ACTIONS(1431), + [anon_sym_DOLLARassignable] = ACTIONS(1431), + [anon_sym_BANG] = ACTIONS(1433), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_PLUS_PLUS] = ACTIONS(1433), + [anon_sym_DASH_DASH] = ACTIONS(1433), + [anon_sym_typeid] = ACTIONS(1431), + [anon_sym_LBRACE_PIPE] = ACTIONS(1433), + [anon_sym_PIPE_RBRACE] = ACTIONS(1433), + [anon_sym_void] = ACTIONS(1431), + [anon_sym_bool] = ACTIONS(1431), + [anon_sym_char] = ACTIONS(1431), + [anon_sym_ichar] = ACTIONS(1431), + [anon_sym_short] = ACTIONS(1431), + [anon_sym_ushort] = ACTIONS(1431), + [anon_sym_uint] = ACTIONS(1431), + [anon_sym_long] = ACTIONS(1431), + [anon_sym_ulong] = ACTIONS(1431), + [anon_sym_int128] = ACTIONS(1431), + [anon_sym_uint128] = ACTIONS(1431), + [anon_sym_float] = ACTIONS(1431), + [anon_sym_double] = ACTIONS(1431), + [anon_sym_float16] = ACTIONS(1431), + [anon_sym_bfloat16] = ACTIONS(1431), + [anon_sym_float128] = ACTIONS(1431), + [anon_sym_iptr] = ACTIONS(1431), + [anon_sym_uptr] = ACTIONS(1431), + [anon_sym_isz] = ACTIONS(1431), + [anon_sym_usz] = ACTIONS(1431), + [anon_sym_anyfault] = ACTIONS(1431), + [anon_sym_any] = ACTIONS(1431), + [anon_sym_DOLLARtypeof] = ACTIONS(1431), + [anon_sym_DOLLARtypefrom] = ACTIONS(1431), + [anon_sym_DOLLARvatype] = ACTIONS(1431), + [anon_sym_DOLLARevaltype] = ACTIONS(1431), + [sym_real_literal] = ACTIONS(1433), }, [356] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), [sym_line_comment] = STATE(356), [sym_doc_comment] = STATE(356), [sym_block_comment] = STATE(356), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1303), - [sym__constant_expr] = STATE(1808), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [sym_else_part] = STATE(522), + [sym_ident] = ACTIONS(1343), + [sym_integer_literal] = ACTIONS(1345), + [anon_sym_SQUOTE] = ACTIONS(1345), + [anon_sym_DQUOTE] = ACTIONS(1345), + [anon_sym_BQUOTE] = ACTIONS(1345), + [sym_bytes_literal] = ACTIONS(1345), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1343), + [sym_at_ident] = ACTIONS(1345), + [sym_hash_ident] = ACTIONS(1345), + [sym_type_ident] = ACTIONS(1345), + [sym_ct_type_ident] = ACTIONS(1345), + [sym_const_ident] = ACTIONS(1343), + [sym_builtin] = ACTIONS(1345), + [anon_sym_LPAREN] = ACTIONS(1345), + [anon_sym_AMP] = ACTIONS(1343), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_tlocal] = ACTIONS(1343), + [anon_sym_SEMI] = ACTIONS(1345), + [anon_sym_fn] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1343), + [anon_sym_const] = ACTIONS(1343), + [anon_sym_var] = ACTIONS(1343), + [anon_sym_return] = ACTIONS(1343), + [anon_sym_continue] = ACTIONS(1343), + [anon_sym_break] = ACTIONS(1343), + [anon_sym_defer] = ACTIONS(1343), + [anon_sym_assert] = ACTIONS(1343), + [anon_sym_nextcase] = ACTIONS(1343), + [anon_sym_switch] = ACTIONS(1343), + [anon_sym_AMP_AMP] = ACTIONS(1345), + [anon_sym_if] = ACTIONS(1343), + [anon_sym_else] = ACTIONS(1435), + [anon_sym_for] = ACTIONS(1343), + [anon_sym_foreach] = ACTIONS(1343), + [anon_sym_foreach_r] = ACTIONS(1343), + [anon_sym_while] = ACTIONS(1343), + [anon_sym_do] = ACTIONS(1343), + [anon_sym_int] = ACTIONS(1343), + [anon_sym_PLUS] = ACTIONS(1343), + [anon_sym_DASH] = ACTIONS(1343), + [anon_sym_STAR] = ACTIONS(1345), + [anon_sym_asm] = ACTIONS(1343), + [anon_sym_DOLLARassert] = ACTIONS(1343), + [anon_sym_DOLLARerror] = ACTIONS(1343), + [anon_sym_DOLLARecho] = ACTIONS(1343), + [anon_sym_DOLLARif] = ACTIONS(1343), + [anon_sym_DOLLARendif] = ACTIONS(1343), + [anon_sym_DOLLARelse] = ACTIONS(1343), + [anon_sym_DOLLARswitch] = ACTIONS(1343), + [anon_sym_DOLLARfor] = ACTIONS(1343), + [anon_sym_DOLLARforeach] = ACTIONS(1343), + [anon_sym_DOLLARalignof] = ACTIONS(1343), + [anon_sym_DOLLARextnameof] = ACTIONS(1343), + [anon_sym_DOLLARnameof] = ACTIONS(1343), + [anon_sym_DOLLARoffsetof] = ACTIONS(1343), + [anon_sym_DOLLARqnameof] = ACTIONS(1343), + [anon_sym_DOLLARvaconst] = ACTIONS(1343), + [anon_sym_DOLLARvaarg] = ACTIONS(1343), + [anon_sym_DOLLARvaref] = ACTIONS(1343), + [anon_sym_DOLLARvaexpr] = ACTIONS(1343), + [anon_sym_true] = ACTIONS(1343), + [anon_sym_false] = ACTIONS(1343), + [anon_sym_null] = ACTIONS(1343), + [anon_sym_DOLLARvacount] = ACTIONS(1343), + [anon_sym_DOLLARappend] = ACTIONS(1343), + [anon_sym_DOLLARconcat] = ACTIONS(1343), + [anon_sym_DOLLAReval] = ACTIONS(1343), + [anon_sym_DOLLARis_const] = ACTIONS(1343), + [anon_sym_DOLLARsizeof] = ACTIONS(1343), + [anon_sym_DOLLARstringify] = ACTIONS(1343), + [anon_sym_DOLLARand] = ACTIONS(1343), + [anon_sym_DOLLARdefined] = ACTIONS(1343), + [anon_sym_DOLLARembed] = ACTIONS(1343), + [anon_sym_DOLLARor] = ACTIONS(1343), + [anon_sym_DOLLARfeature] = ACTIONS(1343), + [anon_sym_DOLLARassignable] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(1345), + [anon_sym_TILDE] = ACTIONS(1345), + [anon_sym_PLUS_PLUS] = ACTIONS(1345), + [anon_sym_DASH_DASH] = ACTIONS(1345), + [anon_sym_typeid] = ACTIONS(1343), + [anon_sym_LBRACE_PIPE] = ACTIONS(1345), + [anon_sym_void] = ACTIONS(1343), + [anon_sym_bool] = ACTIONS(1343), + [anon_sym_char] = ACTIONS(1343), + [anon_sym_ichar] = ACTIONS(1343), + [anon_sym_short] = ACTIONS(1343), + [anon_sym_ushort] = ACTIONS(1343), + [anon_sym_uint] = ACTIONS(1343), + [anon_sym_long] = ACTIONS(1343), + [anon_sym_ulong] = ACTIONS(1343), + [anon_sym_int128] = ACTIONS(1343), + [anon_sym_uint128] = ACTIONS(1343), + [anon_sym_float] = ACTIONS(1343), + [anon_sym_double] = ACTIONS(1343), + [anon_sym_float16] = ACTIONS(1343), + [anon_sym_bfloat16] = ACTIONS(1343), + [anon_sym_float128] = ACTIONS(1343), + [anon_sym_iptr] = ACTIONS(1343), + [anon_sym_uptr] = ACTIONS(1343), + [anon_sym_isz] = ACTIONS(1343), + [anon_sym_usz] = ACTIONS(1343), + [anon_sym_anyfault] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_DOLLARtypeof] = ACTIONS(1343), + [anon_sym_DOLLARtypefrom] = ACTIONS(1343), + [anon_sym_DOLLARvatype] = ACTIONS(1343), + [anon_sym_DOLLARevaltype] = ACTIONS(1343), + [sym_real_literal] = ACTIONS(1345), }, [357] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), [sym_line_comment] = STATE(357), [sym_doc_comment] = STATE(357), [sym_block_comment] = STATE(357), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1303), - [sym__constant_expr] = STATE(1807), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [sym_ident] = ACTIONS(1437), + [sym_integer_literal] = ACTIONS(1439), + [anon_sym_SQUOTE] = ACTIONS(1439), + [anon_sym_DQUOTE] = ACTIONS(1439), + [anon_sym_BQUOTE] = ACTIONS(1439), + [sym_bytes_literal] = ACTIONS(1439), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1437), + [sym_at_ident] = ACTIONS(1439), + [sym_hash_ident] = ACTIONS(1439), + [sym_type_ident] = ACTIONS(1439), + [sym_ct_type_ident] = ACTIONS(1439), + [sym_const_ident] = ACTIONS(1437), + [sym_builtin] = ACTIONS(1439), + [anon_sym_LPAREN] = ACTIONS(1439), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_static] = ACTIONS(1437), + [anon_sym_tlocal] = ACTIONS(1437), + [anon_sym_SEMI] = ACTIONS(1439), + [anon_sym_fn] = ACTIONS(1437), + [anon_sym_LBRACE] = ACTIONS(1437), + [anon_sym_RBRACE] = ACTIONS(1439), + [anon_sym_const] = ACTIONS(1437), + [anon_sym_var] = ACTIONS(1437), + [anon_sym_return] = ACTIONS(1437), + [anon_sym_continue] = ACTIONS(1437), + [anon_sym_break] = ACTIONS(1437), + [anon_sym_defer] = ACTIONS(1437), + [anon_sym_assert] = ACTIONS(1437), + [anon_sym_case] = ACTIONS(1437), + [anon_sym_default] = ACTIONS(1437), + [anon_sym_nextcase] = ACTIONS(1437), + [anon_sym_switch] = ACTIONS(1437), + [anon_sym_AMP_AMP] = ACTIONS(1439), + [anon_sym_if] = ACTIONS(1437), + [anon_sym_for] = ACTIONS(1437), + [anon_sym_foreach] = ACTIONS(1437), + [anon_sym_foreach_r] = ACTIONS(1437), + [anon_sym_while] = ACTIONS(1437), + [anon_sym_do] = ACTIONS(1437), + [anon_sym_int] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_STAR] = ACTIONS(1439), + [anon_sym_asm] = ACTIONS(1437), + [anon_sym_DOLLARassert] = ACTIONS(1437), + [anon_sym_DOLLARerror] = ACTIONS(1437), + [anon_sym_DOLLARecho] = ACTIONS(1437), + [anon_sym_DOLLARif] = ACTIONS(1437), + [anon_sym_DOLLARswitch] = ACTIONS(1437), + [anon_sym_DOLLARfor] = ACTIONS(1437), + [anon_sym_DOLLARforeach] = ACTIONS(1437), + [anon_sym_DOLLARalignof] = ACTIONS(1437), + [anon_sym_DOLLARextnameof] = ACTIONS(1437), + [anon_sym_DOLLARnameof] = ACTIONS(1437), + [anon_sym_DOLLARoffsetof] = ACTIONS(1437), + [anon_sym_DOLLARqnameof] = ACTIONS(1437), + [anon_sym_DOLLARvaconst] = ACTIONS(1437), + [anon_sym_DOLLARvaarg] = ACTIONS(1437), + [anon_sym_DOLLARvaref] = ACTIONS(1437), + [anon_sym_DOLLARvaexpr] = ACTIONS(1437), + [anon_sym_true] = ACTIONS(1437), + [anon_sym_false] = ACTIONS(1437), + [anon_sym_null] = ACTIONS(1437), + [anon_sym_DOLLARvacount] = ACTIONS(1437), + [anon_sym_DOLLARappend] = ACTIONS(1437), + [anon_sym_DOLLARconcat] = ACTIONS(1437), + [anon_sym_DOLLAReval] = ACTIONS(1437), + [anon_sym_DOLLARis_const] = ACTIONS(1437), + [anon_sym_DOLLARsizeof] = ACTIONS(1437), + [anon_sym_DOLLARstringify] = ACTIONS(1437), + [anon_sym_DOLLARand] = ACTIONS(1437), + [anon_sym_DOLLARdefined] = ACTIONS(1437), + [anon_sym_DOLLARembed] = ACTIONS(1437), + [anon_sym_DOLLARor] = ACTIONS(1437), + [anon_sym_DOLLARfeature] = ACTIONS(1437), + [anon_sym_DOLLARassignable] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1439), + [anon_sym_TILDE] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_typeid] = ACTIONS(1437), + [anon_sym_LBRACE_PIPE] = ACTIONS(1439), + [anon_sym_PIPE_RBRACE] = ACTIONS(1439), + [anon_sym_void] = ACTIONS(1437), + [anon_sym_bool] = ACTIONS(1437), + [anon_sym_char] = ACTIONS(1437), + [anon_sym_ichar] = ACTIONS(1437), + [anon_sym_short] = ACTIONS(1437), + [anon_sym_ushort] = ACTIONS(1437), + [anon_sym_uint] = ACTIONS(1437), + [anon_sym_long] = ACTIONS(1437), + [anon_sym_ulong] = ACTIONS(1437), + [anon_sym_int128] = ACTIONS(1437), + [anon_sym_uint128] = ACTIONS(1437), + [anon_sym_float] = ACTIONS(1437), + [anon_sym_double] = ACTIONS(1437), + [anon_sym_float16] = ACTIONS(1437), + [anon_sym_bfloat16] = ACTIONS(1437), + [anon_sym_float128] = ACTIONS(1437), + [anon_sym_iptr] = ACTIONS(1437), + [anon_sym_uptr] = ACTIONS(1437), + [anon_sym_isz] = ACTIONS(1437), + [anon_sym_usz] = ACTIONS(1437), + [anon_sym_anyfault] = ACTIONS(1437), + [anon_sym_any] = ACTIONS(1437), + [anon_sym_DOLLARtypeof] = ACTIONS(1437), + [anon_sym_DOLLARtypefrom] = ACTIONS(1437), + [anon_sym_DOLLARvatype] = ACTIONS(1437), + [anon_sym_DOLLARevaltype] = ACTIONS(1437), + [sym_real_literal] = ACTIONS(1439), }, [358] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), [sym_line_comment] = STATE(358), [sym_doc_comment] = STATE(358), [sym_block_comment] = STATE(358), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1303), - [sym__constant_expr] = STATE(1794), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [sym_ident] = ACTIONS(1441), + [sym_integer_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1443), + [anon_sym_DQUOTE] = ACTIONS(1443), + [anon_sym_BQUOTE] = ACTIONS(1443), + [sym_bytes_literal] = ACTIONS(1443), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1441), + [sym_at_ident] = ACTIONS(1443), + [sym_hash_ident] = ACTIONS(1443), + [sym_type_ident] = ACTIONS(1443), + [sym_ct_type_ident] = ACTIONS(1443), + [sym_const_ident] = ACTIONS(1441), + [sym_builtin] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_tlocal] = ACTIONS(1441), + [anon_sym_SEMI] = ACTIONS(1443), + [anon_sym_fn] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1441), + [anon_sym_RBRACE] = ACTIONS(1443), + [anon_sym_const] = ACTIONS(1441), + [anon_sym_var] = ACTIONS(1441), + [anon_sym_return] = ACTIONS(1441), + [anon_sym_continue] = ACTIONS(1441), + [anon_sym_break] = ACTIONS(1441), + [anon_sym_defer] = ACTIONS(1441), + [anon_sym_assert] = ACTIONS(1441), + [anon_sym_case] = ACTIONS(1441), + [anon_sym_default] = ACTIONS(1441), + [anon_sym_nextcase] = ACTIONS(1441), + [anon_sym_switch] = ACTIONS(1441), + [anon_sym_AMP_AMP] = ACTIONS(1443), + [anon_sym_if] = ACTIONS(1441), + [anon_sym_for] = ACTIONS(1441), + [anon_sym_foreach] = ACTIONS(1441), + [anon_sym_foreach_r] = ACTIONS(1441), + [anon_sym_while] = ACTIONS(1441), + [anon_sym_do] = ACTIONS(1441), + [anon_sym_int] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1441), + [anon_sym_DASH] = ACTIONS(1441), + [anon_sym_STAR] = ACTIONS(1443), + [anon_sym_asm] = ACTIONS(1441), + [anon_sym_DOLLARassert] = ACTIONS(1441), + [anon_sym_DOLLARerror] = ACTIONS(1441), + [anon_sym_DOLLARecho] = ACTIONS(1441), + [anon_sym_DOLLARif] = ACTIONS(1441), + [anon_sym_DOLLARswitch] = ACTIONS(1441), + [anon_sym_DOLLARfor] = ACTIONS(1441), + [anon_sym_DOLLARforeach] = ACTIONS(1441), + [anon_sym_DOLLARalignof] = ACTIONS(1441), + [anon_sym_DOLLARextnameof] = ACTIONS(1441), + [anon_sym_DOLLARnameof] = ACTIONS(1441), + [anon_sym_DOLLARoffsetof] = ACTIONS(1441), + [anon_sym_DOLLARqnameof] = ACTIONS(1441), + [anon_sym_DOLLARvaconst] = ACTIONS(1441), + [anon_sym_DOLLARvaarg] = ACTIONS(1441), + [anon_sym_DOLLARvaref] = ACTIONS(1441), + [anon_sym_DOLLARvaexpr] = ACTIONS(1441), + [anon_sym_true] = ACTIONS(1441), + [anon_sym_false] = ACTIONS(1441), + [anon_sym_null] = ACTIONS(1441), + [anon_sym_DOLLARvacount] = ACTIONS(1441), + [anon_sym_DOLLARappend] = ACTIONS(1441), + [anon_sym_DOLLARconcat] = ACTIONS(1441), + [anon_sym_DOLLAReval] = ACTIONS(1441), + [anon_sym_DOLLARis_const] = ACTIONS(1441), + [anon_sym_DOLLARsizeof] = ACTIONS(1441), + [anon_sym_DOLLARstringify] = ACTIONS(1441), + [anon_sym_DOLLARand] = ACTIONS(1441), + [anon_sym_DOLLARdefined] = ACTIONS(1441), + [anon_sym_DOLLARembed] = ACTIONS(1441), + [anon_sym_DOLLARor] = ACTIONS(1441), + [anon_sym_DOLLARfeature] = ACTIONS(1441), + [anon_sym_DOLLARassignable] = ACTIONS(1441), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_TILDE] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(1443), + [anon_sym_DASH_DASH] = ACTIONS(1443), + [anon_sym_typeid] = ACTIONS(1441), + [anon_sym_LBRACE_PIPE] = ACTIONS(1443), + [anon_sym_PIPE_RBRACE] = ACTIONS(1443), + [anon_sym_void] = ACTIONS(1441), + [anon_sym_bool] = ACTIONS(1441), + [anon_sym_char] = ACTIONS(1441), + [anon_sym_ichar] = ACTIONS(1441), + [anon_sym_short] = ACTIONS(1441), + [anon_sym_ushort] = ACTIONS(1441), + [anon_sym_uint] = ACTIONS(1441), + [anon_sym_long] = ACTIONS(1441), + [anon_sym_ulong] = ACTIONS(1441), + [anon_sym_int128] = ACTIONS(1441), + [anon_sym_uint128] = ACTIONS(1441), + [anon_sym_float] = ACTIONS(1441), + [anon_sym_double] = ACTIONS(1441), + [anon_sym_float16] = ACTIONS(1441), + [anon_sym_bfloat16] = ACTIONS(1441), + [anon_sym_float128] = ACTIONS(1441), + [anon_sym_iptr] = ACTIONS(1441), + [anon_sym_uptr] = ACTIONS(1441), + [anon_sym_isz] = ACTIONS(1441), + [anon_sym_usz] = ACTIONS(1441), + [anon_sym_anyfault] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_DOLLARtypeof] = ACTIONS(1441), + [anon_sym_DOLLARtypefrom] = ACTIONS(1441), + [anon_sym_DOLLARvatype] = ACTIONS(1441), + [anon_sym_DOLLARevaltype] = ACTIONS(1441), + [sym_real_literal] = ACTIONS(1443), }, [359] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), [sym_line_comment] = STATE(359), [sym_doc_comment] = STATE(359), [sym_block_comment] = STATE(359), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1303), - [sym__constant_expr] = STATE(1833), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [sym_ident] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1447), + [anon_sym_SQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [anon_sym_BQUOTE] = ACTIONS(1447), + [sym_bytes_literal] = ACTIONS(1447), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1445), + [sym_at_ident] = ACTIONS(1447), + [sym_hash_ident] = ACTIONS(1447), + [sym_type_ident] = ACTIONS(1447), + [sym_ct_type_ident] = ACTIONS(1447), + [sym_const_ident] = ACTIONS(1445), + [sym_builtin] = ACTIONS(1447), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_AMP] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_tlocal] = ACTIONS(1445), + [anon_sym_SEMI] = ACTIONS(1447), + [anon_sym_fn] = ACTIONS(1445), + [anon_sym_LBRACE] = ACTIONS(1445), + [anon_sym_RBRACE] = ACTIONS(1447), + [anon_sym_const] = ACTIONS(1445), + [anon_sym_var] = ACTIONS(1445), + [anon_sym_return] = ACTIONS(1445), + [anon_sym_continue] = ACTIONS(1445), + [anon_sym_break] = ACTIONS(1445), + [anon_sym_defer] = ACTIONS(1445), + [anon_sym_assert] = ACTIONS(1445), + [anon_sym_case] = ACTIONS(1445), + [anon_sym_default] = ACTIONS(1445), + [anon_sym_nextcase] = ACTIONS(1445), + [anon_sym_switch] = ACTIONS(1445), + [anon_sym_AMP_AMP] = ACTIONS(1447), + [anon_sym_if] = ACTIONS(1445), + [anon_sym_for] = ACTIONS(1445), + [anon_sym_foreach] = ACTIONS(1445), + [anon_sym_foreach_r] = ACTIONS(1445), + [anon_sym_while] = ACTIONS(1445), + [anon_sym_do] = ACTIONS(1445), + [anon_sym_int] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_STAR] = ACTIONS(1447), + [anon_sym_asm] = ACTIONS(1445), + [anon_sym_DOLLARassert] = ACTIONS(1445), + [anon_sym_DOLLARerror] = ACTIONS(1445), + [anon_sym_DOLLARecho] = ACTIONS(1445), + [anon_sym_DOLLARif] = ACTIONS(1445), + [anon_sym_DOLLARswitch] = ACTIONS(1445), + [anon_sym_DOLLARfor] = ACTIONS(1445), + [anon_sym_DOLLARforeach] = ACTIONS(1445), + [anon_sym_DOLLARalignof] = ACTIONS(1445), + [anon_sym_DOLLARextnameof] = ACTIONS(1445), + [anon_sym_DOLLARnameof] = ACTIONS(1445), + [anon_sym_DOLLARoffsetof] = ACTIONS(1445), + [anon_sym_DOLLARqnameof] = ACTIONS(1445), + [anon_sym_DOLLARvaconst] = ACTIONS(1445), + [anon_sym_DOLLARvaarg] = ACTIONS(1445), + [anon_sym_DOLLARvaref] = ACTIONS(1445), + [anon_sym_DOLLARvaexpr] = ACTIONS(1445), + [anon_sym_true] = ACTIONS(1445), + [anon_sym_false] = ACTIONS(1445), + [anon_sym_null] = ACTIONS(1445), + [anon_sym_DOLLARvacount] = ACTIONS(1445), + [anon_sym_DOLLARappend] = ACTIONS(1445), + [anon_sym_DOLLARconcat] = ACTIONS(1445), + [anon_sym_DOLLAReval] = ACTIONS(1445), + [anon_sym_DOLLARis_const] = ACTIONS(1445), + [anon_sym_DOLLARsizeof] = ACTIONS(1445), + [anon_sym_DOLLARstringify] = ACTIONS(1445), + [anon_sym_DOLLARand] = ACTIONS(1445), + [anon_sym_DOLLARdefined] = ACTIONS(1445), + [anon_sym_DOLLARembed] = ACTIONS(1445), + [anon_sym_DOLLARor] = ACTIONS(1445), + [anon_sym_DOLLARfeature] = ACTIONS(1445), + [anon_sym_DOLLARassignable] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(1447), + [anon_sym_TILDE] = ACTIONS(1447), + [anon_sym_PLUS_PLUS] = ACTIONS(1447), + [anon_sym_DASH_DASH] = ACTIONS(1447), + [anon_sym_typeid] = ACTIONS(1445), + [anon_sym_LBRACE_PIPE] = ACTIONS(1447), + [anon_sym_PIPE_RBRACE] = ACTIONS(1447), + [anon_sym_void] = ACTIONS(1445), + [anon_sym_bool] = ACTIONS(1445), + [anon_sym_char] = ACTIONS(1445), + [anon_sym_ichar] = ACTIONS(1445), + [anon_sym_short] = ACTIONS(1445), + [anon_sym_ushort] = ACTIONS(1445), + [anon_sym_uint] = ACTIONS(1445), + [anon_sym_long] = ACTIONS(1445), + [anon_sym_ulong] = ACTIONS(1445), + [anon_sym_int128] = ACTIONS(1445), + [anon_sym_uint128] = ACTIONS(1445), + [anon_sym_float] = ACTIONS(1445), + [anon_sym_double] = ACTIONS(1445), + [anon_sym_float16] = ACTIONS(1445), + [anon_sym_bfloat16] = ACTIONS(1445), + [anon_sym_float128] = ACTIONS(1445), + [anon_sym_iptr] = ACTIONS(1445), + [anon_sym_uptr] = ACTIONS(1445), + [anon_sym_isz] = ACTIONS(1445), + [anon_sym_usz] = ACTIONS(1445), + [anon_sym_anyfault] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_DOLLARtypeof] = ACTIONS(1445), + [anon_sym_DOLLARtypefrom] = ACTIONS(1445), + [anon_sym_DOLLARvatype] = ACTIONS(1445), + [anon_sym_DOLLARevaltype] = ACTIONS(1445), + [sym_real_literal] = ACTIONS(1447), }, [360] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), [sym_line_comment] = STATE(360), [sym_doc_comment] = STATE(360), [sym_block_comment] = STATE(360), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1303), - [sym__constant_expr] = STATE(1855), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(1358), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [sym_ident] = ACTIONS(1449), + [sym_integer_literal] = ACTIONS(1451), + [anon_sym_SQUOTE] = ACTIONS(1451), + [anon_sym_DQUOTE] = ACTIONS(1451), + [anon_sym_BQUOTE] = ACTIONS(1451), + [sym_bytes_literal] = ACTIONS(1451), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1449), + [sym_at_ident] = ACTIONS(1451), + [sym_hash_ident] = ACTIONS(1451), + [sym_type_ident] = ACTIONS(1451), + [sym_ct_type_ident] = ACTIONS(1451), + [sym_const_ident] = ACTIONS(1449), + [sym_builtin] = ACTIONS(1451), + [anon_sym_LPAREN] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_static] = ACTIONS(1449), + [anon_sym_tlocal] = ACTIONS(1449), + [anon_sym_SEMI] = ACTIONS(1451), + [anon_sym_fn] = ACTIONS(1449), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_RBRACE] = ACTIONS(1451), + [anon_sym_const] = ACTIONS(1449), + [anon_sym_var] = ACTIONS(1449), + [anon_sym_return] = ACTIONS(1449), + [anon_sym_continue] = ACTIONS(1449), + [anon_sym_break] = ACTIONS(1449), + [anon_sym_defer] = ACTIONS(1449), + [anon_sym_assert] = ACTIONS(1449), + [anon_sym_case] = ACTIONS(1449), + [anon_sym_default] = ACTIONS(1449), + [anon_sym_nextcase] = ACTIONS(1449), + [anon_sym_switch] = ACTIONS(1449), + [anon_sym_AMP_AMP] = ACTIONS(1451), + [anon_sym_if] = ACTIONS(1449), + [anon_sym_for] = ACTIONS(1449), + [anon_sym_foreach] = ACTIONS(1449), + [anon_sym_foreach_r] = ACTIONS(1449), + [anon_sym_while] = ACTIONS(1449), + [anon_sym_do] = ACTIONS(1449), + [anon_sym_int] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1449), + [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_STAR] = ACTIONS(1451), + [anon_sym_asm] = ACTIONS(1449), + [anon_sym_DOLLARassert] = ACTIONS(1449), + [anon_sym_DOLLARerror] = ACTIONS(1449), + [anon_sym_DOLLARecho] = ACTIONS(1449), + [anon_sym_DOLLARif] = ACTIONS(1449), + [anon_sym_DOLLARswitch] = ACTIONS(1449), + [anon_sym_DOLLARfor] = ACTIONS(1449), + [anon_sym_DOLLARforeach] = ACTIONS(1449), + [anon_sym_DOLLARalignof] = ACTIONS(1449), + [anon_sym_DOLLARextnameof] = ACTIONS(1449), + [anon_sym_DOLLARnameof] = ACTIONS(1449), + [anon_sym_DOLLARoffsetof] = ACTIONS(1449), + [anon_sym_DOLLARqnameof] = ACTIONS(1449), + [anon_sym_DOLLARvaconst] = ACTIONS(1449), + [anon_sym_DOLLARvaarg] = ACTIONS(1449), + [anon_sym_DOLLARvaref] = ACTIONS(1449), + [anon_sym_DOLLARvaexpr] = ACTIONS(1449), + [anon_sym_true] = ACTIONS(1449), + [anon_sym_false] = ACTIONS(1449), + [anon_sym_null] = ACTIONS(1449), + [anon_sym_DOLLARvacount] = ACTIONS(1449), + [anon_sym_DOLLARappend] = ACTIONS(1449), + [anon_sym_DOLLARconcat] = ACTIONS(1449), + [anon_sym_DOLLAReval] = ACTIONS(1449), + [anon_sym_DOLLARis_const] = ACTIONS(1449), + [anon_sym_DOLLARsizeof] = ACTIONS(1449), + [anon_sym_DOLLARstringify] = ACTIONS(1449), + [anon_sym_DOLLARand] = ACTIONS(1449), + [anon_sym_DOLLARdefined] = ACTIONS(1449), + [anon_sym_DOLLARembed] = ACTIONS(1449), + [anon_sym_DOLLARor] = ACTIONS(1449), + [anon_sym_DOLLARfeature] = ACTIONS(1449), + [anon_sym_DOLLARassignable] = ACTIONS(1449), + [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_TILDE] = ACTIONS(1451), + [anon_sym_PLUS_PLUS] = ACTIONS(1451), + [anon_sym_DASH_DASH] = ACTIONS(1451), + [anon_sym_typeid] = ACTIONS(1449), + [anon_sym_LBRACE_PIPE] = ACTIONS(1451), + [anon_sym_PIPE_RBRACE] = ACTIONS(1451), + [anon_sym_void] = ACTIONS(1449), + [anon_sym_bool] = ACTIONS(1449), + [anon_sym_char] = ACTIONS(1449), + [anon_sym_ichar] = ACTIONS(1449), + [anon_sym_short] = ACTIONS(1449), + [anon_sym_ushort] = ACTIONS(1449), + [anon_sym_uint] = ACTIONS(1449), + [anon_sym_long] = ACTIONS(1449), + [anon_sym_ulong] = ACTIONS(1449), + [anon_sym_int128] = ACTIONS(1449), + [anon_sym_uint128] = ACTIONS(1449), + [anon_sym_float] = ACTIONS(1449), + [anon_sym_double] = ACTIONS(1449), + [anon_sym_float16] = ACTIONS(1449), + [anon_sym_bfloat16] = ACTIONS(1449), + [anon_sym_float128] = ACTIONS(1449), + [anon_sym_iptr] = ACTIONS(1449), + [anon_sym_uptr] = ACTIONS(1449), + [anon_sym_isz] = ACTIONS(1449), + [anon_sym_usz] = ACTIONS(1449), + [anon_sym_anyfault] = ACTIONS(1449), + [anon_sym_any] = ACTIONS(1449), + [anon_sym_DOLLARtypeof] = ACTIONS(1449), + [anon_sym_DOLLARtypefrom] = ACTIONS(1449), + [anon_sym_DOLLARvatype] = ACTIONS(1449), + [anon_sym_DOLLARevaltype] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1451), }, [361] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), [sym_line_comment] = STATE(361), [sym_doc_comment] = STATE(361), [sym_block_comment] = STATE(361), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1301), - [sym__constant_expr] = STATE(1851), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1083), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1224), - [sym_lambda_expr] = STATE(1224), - [sym_elvis_orelse_expr] = STATE(1224), - [sym_suffix_expr] = STATE(1224), - [sym_cast_expr] = STATE(1207), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1207), - [sym_binary_expr] = STATE(1207), - [sym_call_expr] = STATE(1089), - [sym_update_expr] = STATE(1089), - [sym_rethrow_expr] = STATE(1089), - [sym_trailing_generic_expr] = STATE(1089), - [sym_subscript_expr] = STATE(1089), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [sym_ident] = ACTIONS(1453), + [sym_integer_literal] = ACTIONS(1455), + [anon_sym_SQUOTE] = ACTIONS(1455), + [anon_sym_DQUOTE] = ACTIONS(1455), + [anon_sym_BQUOTE] = ACTIONS(1455), + [sym_bytes_literal] = ACTIONS(1455), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1453), + [sym_at_ident] = ACTIONS(1455), + [sym_hash_ident] = ACTIONS(1455), + [sym_type_ident] = ACTIONS(1455), + [sym_ct_type_ident] = ACTIONS(1455), + [sym_const_ident] = ACTIONS(1453), + [sym_builtin] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_AMP] = ACTIONS(1453), + [anon_sym_static] = ACTIONS(1453), + [anon_sym_tlocal] = ACTIONS(1453), + [anon_sym_SEMI] = ACTIONS(1455), + [anon_sym_fn] = ACTIONS(1453), + [anon_sym_LBRACE] = ACTIONS(1453), + [anon_sym_RBRACE] = ACTIONS(1455), + [anon_sym_const] = ACTIONS(1453), + [anon_sym_var] = ACTIONS(1453), + [anon_sym_return] = ACTIONS(1453), + [anon_sym_continue] = ACTIONS(1453), + [anon_sym_break] = ACTIONS(1453), + [anon_sym_defer] = ACTIONS(1453), + [anon_sym_assert] = ACTIONS(1453), + [anon_sym_case] = ACTIONS(1453), + [anon_sym_default] = ACTIONS(1453), + [anon_sym_nextcase] = ACTIONS(1453), + [anon_sym_switch] = ACTIONS(1453), + [anon_sym_AMP_AMP] = ACTIONS(1455), + [anon_sym_if] = ACTIONS(1453), + [anon_sym_for] = ACTIONS(1453), + [anon_sym_foreach] = ACTIONS(1453), + [anon_sym_foreach_r] = ACTIONS(1453), + [anon_sym_while] = ACTIONS(1453), + [anon_sym_do] = ACTIONS(1453), + [anon_sym_int] = ACTIONS(1453), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_STAR] = ACTIONS(1455), + [anon_sym_asm] = ACTIONS(1453), + [anon_sym_DOLLARassert] = ACTIONS(1453), + [anon_sym_DOLLARerror] = ACTIONS(1453), + [anon_sym_DOLLARecho] = ACTIONS(1453), + [anon_sym_DOLLARif] = ACTIONS(1453), + [anon_sym_DOLLARswitch] = ACTIONS(1453), + [anon_sym_DOLLARfor] = ACTIONS(1453), + [anon_sym_DOLLARforeach] = ACTIONS(1453), + [anon_sym_DOLLARalignof] = ACTIONS(1453), + [anon_sym_DOLLARextnameof] = ACTIONS(1453), + [anon_sym_DOLLARnameof] = ACTIONS(1453), + [anon_sym_DOLLARoffsetof] = ACTIONS(1453), + [anon_sym_DOLLARqnameof] = ACTIONS(1453), + [anon_sym_DOLLARvaconst] = ACTIONS(1453), + [anon_sym_DOLLARvaarg] = ACTIONS(1453), + [anon_sym_DOLLARvaref] = ACTIONS(1453), + [anon_sym_DOLLARvaexpr] = ACTIONS(1453), + [anon_sym_true] = ACTIONS(1453), + [anon_sym_false] = ACTIONS(1453), + [anon_sym_null] = ACTIONS(1453), + [anon_sym_DOLLARvacount] = ACTIONS(1453), + [anon_sym_DOLLARappend] = ACTIONS(1453), + [anon_sym_DOLLARconcat] = ACTIONS(1453), + [anon_sym_DOLLAReval] = ACTIONS(1453), + [anon_sym_DOLLARis_const] = ACTIONS(1453), + [anon_sym_DOLLARsizeof] = ACTIONS(1453), + [anon_sym_DOLLARstringify] = ACTIONS(1453), + [anon_sym_DOLLARand] = ACTIONS(1453), + [anon_sym_DOLLARdefined] = ACTIONS(1453), + [anon_sym_DOLLARembed] = ACTIONS(1453), + [anon_sym_DOLLARor] = ACTIONS(1453), + [anon_sym_DOLLARfeature] = ACTIONS(1453), + [anon_sym_DOLLARassignable] = ACTIONS(1453), + [anon_sym_BANG] = ACTIONS(1455), + [anon_sym_TILDE] = ACTIONS(1455), + [anon_sym_PLUS_PLUS] = ACTIONS(1455), + [anon_sym_DASH_DASH] = ACTIONS(1455), + [anon_sym_typeid] = ACTIONS(1453), + [anon_sym_LBRACE_PIPE] = ACTIONS(1455), + [anon_sym_PIPE_RBRACE] = ACTIONS(1455), + [anon_sym_void] = ACTIONS(1453), + [anon_sym_bool] = ACTIONS(1453), + [anon_sym_char] = ACTIONS(1453), + [anon_sym_ichar] = ACTIONS(1453), + [anon_sym_short] = ACTIONS(1453), + [anon_sym_ushort] = ACTIONS(1453), + [anon_sym_uint] = ACTIONS(1453), + [anon_sym_long] = ACTIONS(1453), + [anon_sym_ulong] = ACTIONS(1453), + [anon_sym_int128] = ACTIONS(1453), + [anon_sym_uint128] = ACTIONS(1453), + [anon_sym_float] = ACTIONS(1453), + [anon_sym_double] = ACTIONS(1453), + [anon_sym_float16] = ACTIONS(1453), + [anon_sym_bfloat16] = ACTIONS(1453), + [anon_sym_float128] = ACTIONS(1453), + [anon_sym_iptr] = ACTIONS(1453), + [anon_sym_uptr] = ACTIONS(1453), + [anon_sym_isz] = ACTIONS(1453), + [anon_sym_usz] = ACTIONS(1453), + [anon_sym_anyfault] = ACTIONS(1453), + [anon_sym_any] = ACTIONS(1453), + [anon_sym_DOLLARtypeof] = ACTIONS(1453), + [anon_sym_DOLLARtypefrom] = ACTIONS(1453), + [anon_sym_DOLLARvatype] = ACTIONS(1453), + [anon_sym_DOLLARevaltype] = ACTIONS(1453), + [sym_real_literal] = ACTIONS(1455), }, [362] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), [sym_line_comment] = STATE(362), [sym_doc_comment] = STATE(362), [sym_block_comment] = STATE(362), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1303), - [sym__constant_expr] = STATE(1824), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [sym_ident] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1459), + [anon_sym_SQUOTE] = ACTIONS(1459), + [anon_sym_DQUOTE] = ACTIONS(1459), + [anon_sym_BQUOTE] = ACTIONS(1459), + [sym_bytes_literal] = ACTIONS(1459), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1457), + [sym_at_ident] = ACTIONS(1459), + [sym_hash_ident] = ACTIONS(1459), + [sym_type_ident] = ACTIONS(1459), + [sym_ct_type_ident] = ACTIONS(1459), + [sym_const_ident] = ACTIONS(1457), + [sym_builtin] = ACTIONS(1459), + [anon_sym_LPAREN] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_tlocal] = ACTIONS(1457), + [anon_sym_SEMI] = ACTIONS(1459), + [anon_sym_fn] = ACTIONS(1457), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_RBRACE] = ACTIONS(1459), + [anon_sym_const] = ACTIONS(1457), + [anon_sym_var] = ACTIONS(1457), + [anon_sym_return] = ACTIONS(1457), + [anon_sym_continue] = ACTIONS(1457), + [anon_sym_break] = ACTIONS(1457), + [anon_sym_defer] = ACTIONS(1457), + [anon_sym_assert] = ACTIONS(1457), + [anon_sym_case] = ACTIONS(1457), + [anon_sym_default] = ACTIONS(1457), + [anon_sym_nextcase] = ACTIONS(1457), + [anon_sym_switch] = ACTIONS(1457), + [anon_sym_AMP_AMP] = ACTIONS(1459), + [anon_sym_if] = ACTIONS(1457), + [anon_sym_for] = ACTIONS(1457), + [anon_sym_foreach] = ACTIONS(1457), + [anon_sym_foreach_r] = ACTIONS(1457), + [anon_sym_while] = ACTIONS(1457), + [anon_sym_do] = ACTIONS(1457), + [anon_sym_int] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_asm] = ACTIONS(1457), + [anon_sym_DOLLARassert] = ACTIONS(1457), + [anon_sym_DOLLARerror] = ACTIONS(1457), + [anon_sym_DOLLARecho] = ACTIONS(1457), + [anon_sym_DOLLARif] = ACTIONS(1457), + [anon_sym_DOLLARswitch] = ACTIONS(1457), + [anon_sym_DOLLARfor] = ACTIONS(1457), + [anon_sym_DOLLARforeach] = ACTIONS(1457), + [anon_sym_DOLLARalignof] = ACTIONS(1457), + [anon_sym_DOLLARextnameof] = ACTIONS(1457), + [anon_sym_DOLLARnameof] = ACTIONS(1457), + [anon_sym_DOLLARoffsetof] = ACTIONS(1457), + [anon_sym_DOLLARqnameof] = ACTIONS(1457), + [anon_sym_DOLLARvaconst] = ACTIONS(1457), + [anon_sym_DOLLARvaarg] = ACTIONS(1457), + [anon_sym_DOLLARvaref] = ACTIONS(1457), + [anon_sym_DOLLARvaexpr] = ACTIONS(1457), + [anon_sym_true] = ACTIONS(1457), + [anon_sym_false] = ACTIONS(1457), + [anon_sym_null] = ACTIONS(1457), + [anon_sym_DOLLARvacount] = ACTIONS(1457), + [anon_sym_DOLLARappend] = ACTIONS(1457), + [anon_sym_DOLLARconcat] = ACTIONS(1457), + [anon_sym_DOLLAReval] = ACTIONS(1457), + [anon_sym_DOLLARis_const] = ACTIONS(1457), + [anon_sym_DOLLARsizeof] = ACTIONS(1457), + [anon_sym_DOLLARstringify] = ACTIONS(1457), + [anon_sym_DOLLARand] = ACTIONS(1457), + [anon_sym_DOLLARdefined] = ACTIONS(1457), + [anon_sym_DOLLARembed] = ACTIONS(1457), + [anon_sym_DOLLARor] = ACTIONS(1457), + [anon_sym_DOLLARfeature] = ACTIONS(1457), + [anon_sym_DOLLARassignable] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_TILDE] = ACTIONS(1459), + [anon_sym_PLUS_PLUS] = ACTIONS(1459), + [anon_sym_DASH_DASH] = ACTIONS(1459), + [anon_sym_typeid] = ACTIONS(1457), + [anon_sym_LBRACE_PIPE] = ACTIONS(1459), + [anon_sym_PIPE_RBRACE] = ACTIONS(1459), + [anon_sym_void] = ACTIONS(1457), + [anon_sym_bool] = ACTIONS(1457), + [anon_sym_char] = ACTIONS(1457), + [anon_sym_ichar] = ACTIONS(1457), + [anon_sym_short] = ACTIONS(1457), + [anon_sym_ushort] = ACTIONS(1457), + [anon_sym_uint] = ACTIONS(1457), + [anon_sym_long] = ACTIONS(1457), + [anon_sym_ulong] = ACTIONS(1457), + [anon_sym_int128] = ACTIONS(1457), + [anon_sym_uint128] = ACTIONS(1457), + [anon_sym_float] = ACTIONS(1457), + [anon_sym_double] = ACTIONS(1457), + [anon_sym_float16] = ACTIONS(1457), + [anon_sym_bfloat16] = ACTIONS(1457), + [anon_sym_float128] = ACTIONS(1457), + [anon_sym_iptr] = ACTIONS(1457), + [anon_sym_uptr] = ACTIONS(1457), + [anon_sym_isz] = ACTIONS(1457), + [anon_sym_usz] = ACTIONS(1457), + [anon_sym_anyfault] = ACTIONS(1457), + [anon_sym_any] = ACTIONS(1457), + [anon_sym_DOLLARtypeof] = ACTIONS(1457), + [anon_sym_DOLLARtypefrom] = ACTIONS(1457), + [anon_sym_DOLLARvatype] = ACTIONS(1457), + [anon_sym_DOLLARevaltype] = ACTIONS(1457), + [sym_real_literal] = ACTIONS(1459), }, [363] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), [sym_line_comment] = STATE(363), [sym_doc_comment] = STATE(363), [sym_block_comment] = STATE(363), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1303), - [sym__constant_expr] = STATE(1832), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [sym_ident] = ACTIONS(1461), + [sym_integer_literal] = ACTIONS(1463), + [anon_sym_SQUOTE] = ACTIONS(1463), + [anon_sym_DQUOTE] = ACTIONS(1463), + [anon_sym_BQUOTE] = ACTIONS(1463), + [sym_bytes_literal] = ACTIONS(1463), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1461), + [sym_at_ident] = ACTIONS(1463), + [sym_hash_ident] = ACTIONS(1463), + [sym_type_ident] = ACTIONS(1463), + [sym_ct_type_ident] = ACTIONS(1463), + [sym_const_ident] = ACTIONS(1461), + [sym_builtin] = ACTIONS(1463), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_static] = ACTIONS(1461), + [anon_sym_tlocal] = ACTIONS(1461), + [anon_sym_SEMI] = ACTIONS(1463), + [anon_sym_fn] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_RBRACE] = ACTIONS(1463), + [anon_sym_const] = ACTIONS(1461), + [anon_sym_var] = ACTIONS(1461), + [anon_sym_return] = ACTIONS(1461), + [anon_sym_continue] = ACTIONS(1461), + [anon_sym_break] = ACTIONS(1461), + [anon_sym_defer] = ACTIONS(1461), + [anon_sym_assert] = ACTIONS(1461), + [anon_sym_case] = ACTIONS(1461), + [anon_sym_default] = ACTIONS(1461), + [anon_sym_nextcase] = ACTIONS(1461), + [anon_sym_switch] = ACTIONS(1461), + [anon_sym_AMP_AMP] = ACTIONS(1463), + [anon_sym_if] = ACTIONS(1461), + [anon_sym_for] = ACTIONS(1461), + [anon_sym_foreach] = ACTIONS(1461), + [anon_sym_foreach_r] = ACTIONS(1461), + [anon_sym_while] = ACTIONS(1461), + [anon_sym_do] = ACTIONS(1461), + [anon_sym_int] = ACTIONS(1461), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_STAR] = ACTIONS(1463), + [anon_sym_asm] = ACTIONS(1461), + [anon_sym_DOLLARassert] = ACTIONS(1461), + [anon_sym_DOLLARerror] = ACTIONS(1461), + [anon_sym_DOLLARecho] = ACTIONS(1461), + [anon_sym_DOLLARif] = ACTIONS(1461), + [anon_sym_DOLLARswitch] = ACTIONS(1461), + [anon_sym_DOLLARfor] = ACTIONS(1461), + [anon_sym_DOLLARforeach] = ACTIONS(1461), + [anon_sym_DOLLARalignof] = ACTIONS(1461), + [anon_sym_DOLLARextnameof] = ACTIONS(1461), + [anon_sym_DOLLARnameof] = ACTIONS(1461), + [anon_sym_DOLLARoffsetof] = ACTIONS(1461), + [anon_sym_DOLLARqnameof] = ACTIONS(1461), + [anon_sym_DOLLARvaconst] = ACTIONS(1461), + [anon_sym_DOLLARvaarg] = ACTIONS(1461), + [anon_sym_DOLLARvaref] = ACTIONS(1461), + [anon_sym_DOLLARvaexpr] = ACTIONS(1461), + [anon_sym_true] = ACTIONS(1461), + [anon_sym_false] = ACTIONS(1461), + [anon_sym_null] = ACTIONS(1461), + [anon_sym_DOLLARvacount] = ACTIONS(1461), + [anon_sym_DOLLARappend] = ACTIONS(1461), + [anon_sym_DOLLARconcat] = ACTIONS(1461), + [anon_sym_DOLLAReval] = ACTIONS(1461), + [anon_sym_DOLLARis_const] = ACTIONS(1461), + [anon_sym_DOLLARsizeof] = ACTIONS(1461), + [anon_sym_DOLLARstringify] = ACTIONS(1461), + [anon_sym_DOLLARand] = ACTIONS(1461), + [anon_sym_DOLLARdefined] = ACTIONS(1461), + [anon_sym_DOLLARembed] = ACTIONS(1461), + [anon_sym_DOLLARor] = ACTIONS(1461), + [anon_sym_DOLLARfeature] = ACTIONS(1461), + [anon_sym_DOLLARassignable] = ACTIONS(1461), + [anon_sym_BANG] = ACTIONS(1463), + [anon_sym_TILDE] = ACTIONS(1463), + [anon_sym_PLUS_PLUS] = ACTIONS(1463), + [anon_sym_DASH_DASH] = ACTIONS(1463), + [anon_sym_typeid] = ACTIONS(1461), + [anon_sym_LBRACE_PIPE] = ACTIONS(1463), + [anon_sym_PIPE_RBRACE] = ACTIONS(1463), + [anon_sym_void] = ACTIONS(1461), + [anon_sym_bool] = ACTIONS(1461), + [anon_sym_char] = ACTIONS(1461), + [anon_sym_ichar] = ACTIONS(1461), + [anon_sym_short] = ACTIONS(1461), + [anon_sym_ushort] = ACTIONS(1461), + [anon_sym_uint] = ACTIONS(1461), + [anon_sym_long] = ACTIONS(1461), + [anon_sym_ulong] = ACTIONS(1461), + [anon_sym_int128] = ACTIONS(1461), + [anon_sym_uint128] = ACTIONS(1461), + [anon_sym_float] = ACTIONS(1461), + [anon_sym_double] = ACTIONS(1461), + [anon_sym_float16] = ACTIONS(1461), + [anon_sym_bfloat16] = ACTIONS(1461), + [anon_sym_float128] = ACTIONS(1461), + [anon_sym_iptr] = ACTIONS(1461), + [anon_sym_uptr] = ACTIONS(1461), + [anon_sym_isz] = ACTIONS(1461), + [anon_sym_usz] = ACTIONS(1461), + [anon_sym_anyfault] = ACTIONS(1461), + [anon_sym_any] = ACTIONS(1461), + [anon_sym_DOLLARtypeof] = ACTIONS(1461), + [anon_sym_DOLLARtypefrom] = ACTIONS(1461), + [anon_sym_DOLLARvatype] = ACTIONS(1461), + [anon_sym_DOLLARevaltype] = ACTIONS(1461), + [sym_real_literal] = ACTIONS(1463), }, [364] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), [sym_line_comment] = STATE(364), [sym_doc_comment] = STATE(364), [sym_block_comment] = STATE(364), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1303), - [sym__constant_expr] = STATE(1798), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [sym_ident] = ACTIONS(1465), + [sym_integer_literal] = ACTIONS(1467), + [anon_sym_SQUOTE] = ACTIONS(1467), + [anon_sym_DQUOTE] = ACTIONS(1467), + [anon_sym_BQUOTE] = ACTIONS(1467), + [sym_bytes_literal] = ACTIONS(1467), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1465), + [sym_at_ident] = ACTIONS(1467), + [sym_hash_ident] = ACTIONS(1467), + [sym_type_ident] = ACTIONS(1467), + [sym_ct_type_ident] = ACTIONS(1467), + [sym_const_ident] = ACTIONS(1465), + [sym_builtin] = ACTIONS(1467), + [anon_sym_LPAREN] = ACTIONS(1467), + [anon_sym_AMP] = ACTIONS(1465), + [anon_sym_static] = ACTIONS(1465), + [anon_sym_tlocal] = ACTIONS(1465), + [anon_sym_SEMI] = ACTIONS(1467), + [anon_sym_fn] = ACTIONS(1465), + [anon_sym_LBRACE] = ACTIONS(1465), + [anon_sym_RBRACE] = ACTIONS(1467), + [anon_sym_const] = ACTIONS(1465), + [anon_sym_var] = ACTIONS(1465), + [anon_sym_return] = ACTIONS(1465), + [anon_sym_continue] = ACTIONS(1465), + [anon_sym_break] = ACTIONS(1465), + [anon_sym_defer] = ACTIONS(1465), + [anon_sym_assert] = ACTIONS(1465), + [anon_sym_case] = ACTIONS(1465), + [anon_sym_default] = ACTIONS(1465), + [anon_sym_nextcase] = ACTIONS(1465), + [anon_sym_switch] = ACTIONS(1465), + [anon_sym_AMP_AMP] = ACTIONS(1467), + [anon_sym_if] = ACTIONS(1465), + [anon_sym_for] = ACTIONS(1465), + [anon_sym_foreach] = ACTIONS(1465), + [anon_sym_foreach_r] = ACTIONS(1465), + [anon_sym_while] = ACTIONS(1465), + [anon_sym_do] = ACTIONS(1465), + [anon_sym_int] = ACTIONS(1465), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_STAR] = ACTIONS(1467), + [anon_sym_asm] = ACTIONS(1465), + [anon_sym_DOLLARassert] = ACTIONS(1465), + [anon_sym_DOLLARerror] = ACTIONS(1465), + [anon_sym_DOLLARecho] = ACTIONS(1465), + [anon_sym_DOLLARif] = ACTIONS(1465), + [anon_sym_DOLLARswitch] = ACTIONS(1465), + [anon_sym_DOLLARfor] = ACTIONS(1465), + [anon_sym_DOLLARforeach] = ACTIONS(1465), + [anon_sym_DOLLARalignof] = ACTIONS(1465), + [anon_sym_DOLLARextnameof] = ACTIONS(1465), + [anon_sym_DOLLARnameof] = ACTIONS(1465), + [anon_sym_DOLLARoffsetof] = ACTIONS(1465), + [anon_sym_DOLLARqnameof] = ACTIONS(1465), + [anon_sym_DOLLARvaconst] = ACTIONS(1465), + [anon_sym_DOLLARvaarg] = ACTIONS(1465), + [anon_sym_DOLLARvaref] = ACTIONS(1465), + [anon_sym_DOLLARvaexpr] = ACTIONS(1465), + [anon_sym_true] = ACTIONS(1465), + [anon_sym_false] = ACTIONS(1465), + [anon_sym_null] = ACTIONS(1465), + [anon_sym_DOLLARvacount] = ACTIONS(1465), + [anon_sym_DOLLARappend] = ACTIONS(1465), + [anon_sym_DOLLARconcat] = ACTIONS(1465), + [anon_sym_DOLLAReval] = ACTIONS(1465), + [anon_sym_DOLLARis_const] = ACTIONS(1465), + [anon_sym_DOLLARsizeof] = ACTIONS(1465), + [anon_sym_DOLLARstringify] = ACTIONS(1465), + [anon_sym_DOLLARand] = ACTIONS(1465), + [anon_sym_DOLLARdefined] = ACTIONS(1465), + [anon_sym_DOLLARembed] = ACTIONS(1465), + [anon_sym_DOLLARor] = ACTIONS(1465), + [anon_sym_DOLLARfeature] = ACTIONS(1465), + [anon_sym_DOLLARassignable] = ACTIONS(1465), + [anon_sym_BANG] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1467), + [anon_sym_PLUS_PLUS] = ACTIONS(1467), + [anon_sym_DASH_DASH] = ACTIONS(1467), + [anon_sym_typeid] = ACTIONS(1465), + [anon_sym_LBRACE_PIPE] = ACTIONS(1467), + [anon_sym_PIPE_RBRACE] = ACTIONS(1467), + [anon_sym_void] = ACTIONS(1465), + [anon_sym_bool] = ACTIONS(1465), + [anon_sym_char] = ACTIONS(1465), + [anon_sym_ichar] = ACTIONS(1465), + [anon_sym_short] = ACTIONS(1465), + [anon_sym_ushort] = ACTIONS(1465), + [anon_sym_uint] = ACTIONS(1465), + [anon_sym_long] = ACTIONS(1465), + [anon_sym_ulong] = ACTIONS(1465), + [anon_sym_int128] = ACTIONS(1465), + [anon_sym_uint128] = ACTIONS(1465), + [anon_sym_float] = ACTIONS(1465), + [anon_sym_double] = ACTIONS(1465), + [anon_sym_float16] = ACTIONS(1465), + [anon_sym_bfloat16] = ACTIONS(1465), + [anon_sym_float128] = ACTIONS(1465), + [anon_sym_iptr] = ACTIONS(1465), + [anon_sym_uptr] = ACTIONS(1465), + [anon_sym_isz] = ACTIONS(1465), + [anon_sym_usz] = ACTIONS(1465), + [anon_sym_anyfault] = ACTIONS(1465), + [anon_sym_any] = ACTIONS(1465), + [anon_sym_DOLLARtypeof] = ACTIONS(1465), + [anon_sym_DOLLARtypefrom] = ACTIONS(1465), + [anon_sym_DOLLARvatype] = ACTIONS(1465), + [anon_sym_DOLLARevaltype] = ACTIONS(1465), + [sym_real_literal] = ACTIONS(1467), }, [365] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), [sym_line_comment] = STATE(365), [sym_doc_comment] = STATE(365), [sym_block_comment] = STATE(365), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1303), - [sym__constant_expr] = STATE(1576), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [sym_ident] = ACTIONS(1469), + [sym_integer_literal] = ACTIONS(1471), + [anon_sym_SQUOTE] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(1471), + [anon_sym_BQUOTE] = ACTIONS(1471), + [sym_bytes_literal] = ACTIONS(1471), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1469), + [sym_at_ident] = ACTIONS(1471), + [sym_hash_ident] = ACTIONS(1471), + [sym_type_ident] = ACTIONS(1471), + [sym_ct_type_ident] = ACTIONS(1471), + [sym_const_ident] = ACTIONS(1469), + [sym_builtin] = ACTIONS(1471), + [anon_sym_LPAREN] = ACTIONS(1471), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_static] = ACTIONS(1469), + [anon_sym_tlocal] = ACTIONS(1469), + [anon_sym_SEMI] = ACTIONS(1471), + [anon_sym_fn] = ACTIONS(1469), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_RBRACE] = ACTIONS(1471), + [anon_sym_const] = ACTIONS(1469), + [anon_sym_var] = ACTIONS(1469), + [anon_sym_return] = ACTIONS(1469), + [anon_sym_continue] = ACTIONS(1469), + [anon_sym_break] = ACTIONS(1469), + [anon_sym_defer] = ACTIONS(1469), + [anon_sym_assert] = ACTIONS(1469), + [anon_sym_case] = ACTIONS(1469), + [anon_sym_default] = ACTIONS(1469), + [anon_sym_nextcase] = ACTIONS(1469), + [anon_sym_switch] = ACTIONS(1469), + [anon_sym_AMP_AMP] = ACTIONS(1471), + [anon_sym_if] = ACTIONS(1469), + [anon_sym_for] = ACTIONS(1469), + [anon_sym_foreach] = ACTIONS(1469), + [anon_sym_foreach_r] = ACTIONS(1469), + [anon_sym_while] = ACTIONS(1469), + [anon_sym_do] = ACTIONS(1469), + [anon_sym_int] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1469), + [anon_sym_DASH] = ACTIONS(1469), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_asm] = ACTIONS(1469), + [anon_sym_DOLLARassert] = ACTIONS(1469), + [anon_sym_DOLLARerror] = ACTIONS(1469), + [anon_sym_DOLLARecho] = ACTIONS(1469), + [anon_sym_DOLLARif] = ACTIONS(1469), + [anon_sym_DOLLARswitch] = ACTIONS(1469), + [anon_sym_DOLLARfor] = ACTIONS(1469), + [anon_sym_DOLLARforeach] = ACTIONS(1469), + [anon_sym_DOLLARalignof] = ACTIONS(1469), + [anon_sym_DOLLARextnameof] = ACTIONS(1469), + [anon_sym_DOLLARnameof] = ACTIONS(1469), + [anon_sym_DOLLARoffsetof] = ACTIONS(1469), + [anon_sym_DOLLARqnameof] = ACTIONS(1469), + [anon_sym_DOLLARvaconst] = ACTIONS(1469), + [anon_sym_DOLLARvaarg] = ACTIONS(1469), + [anon_sym_DOLLARvaref] = ACTIONS(1469), + [anon_sym_DOLLARvaexpr] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1469), + [anon_sym_false] = ACTIONS(1469), + [anon_sym_null] = ACTIONS(1469), + [anon_sym_DOLLARvacount] = ACTIONS(1469), + [anon_sym_DOLLARappend] = ACTIONS(1469), + [anon_sym_DOLLARconcat] = ACTIONS(1469), + [anon_sym_DOLLAReval] = ACTIONS(1469), + [anon_sym_DOLLARis_const] = ACTIONS(1469), + [anon_sym_DOLLARsizeof] = ACTIONS(1469), + [anon_sym_DOLLARstringify] = ACTIONS(1469), + [anon_sym_DOLLARand] = ACTIONS(1469), + [anon_sym_DOLLARdefined] = ACTIONS(1469), + [anon_sym_DOLLARembed] = ACTIONS(1469), + [anon_sym_DOLLARor] = ACTIONS(1469), + [anon_sym_DOLLARfeature] = ACTIONS(1469), + [anon_sym_DOLLARassignable] = ACTIONS(1469), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1471), + [anon_sym_PLUS_PLUS] = ACTIONS(1471), + [anon_sym_DASH_DASH] = ACTIONS(1471), + [anon_sym_typeid] = ACTIONS(1469), + [anon_sym_LBRACE_PIPE] = ACTIONS(1471), + [anon_sym_PIPE_RBRACE] = ACTIONS(1471), + [anon_sym_void] = ACTIONS(1469), + [anon_sym_bool] = ACTIONS(1469), + [anon_sym_char] = ACTIONS(1469), + [anon_sym_ichar] = ACTIONS(1469), + [anon_sym_short] = ACTIONS(1469), + [anon_sym_ushort] = ACTIONS(1469), + [anon_sym_uint] = ACTIONS(1469), + [anon_sym_long] = ACTIONS(1469), + [anon_sym_ulong] = ACTIONS(1469), + [anon_sym_int128] = ACTIONS(1469), + [anon_sym_uint128] = ACTIONS(1469), + [anon_sym_float] = ACTIONS(1469), + [anon_sym_double] = ACTIONS(1469), + [anon_sym_float16] = ACTIONS(1469), + [anon_sym_bfloat16] = ACTIONS(1469), + [anon_sym_float128] = ACTIONS(1469), + [anon_sym_iptr] = ACTIONS(1469), + [anon_sym_uptr] = ACTIONS(1469), + [anon_sym_isz] = ACTIONS(1469), + [anon_sym_usz] = ACTIONS(1469), + [anon_sym_anyfault] = ACTIONS(1469), + [anon_sym_any] = ACTIONS(1469), + [anon_sym_DOLLARtypeof] = ACTIONS(1469), + [anon_sym_DOLLARtypefrom] = ACTIONS(1469), + [anon_sym_DOLLARvatype] = ACTIONS(1469), + [anon_sym_DOLLARevaltype] = ACTIONS(1469), + [sym_real_literal] = ACTIONS(1471), }, [366] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), [sym_line_comment] = STATE(366), [sym_doc_comment] = STATE(366), [sym_block_comment] = STATE(366), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1278), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [sym_ident] = ACTIONS(1473), + [sym_integer_literal] = ACTIONS(1475), + [anon_sym_SQUOTE] = ACTIONS(1475), + [anon_sym_DQUOTE] = ACTIONS(1475), + [anon_sym_BQUOTE] = ACTIONS(1475), + [sym_bytes_literal] = ACTIONS(1475), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1473), + [sym_at_ident] = ACTIONS(1475), + [sym_hash_ident] = ACTIONS(1475), + [sym_type_ident] = ACTIONS(1475), + [sym_ct_type_ident] = ACTIONS(1475), + [sym_const_ident] = ACTIONS(1473), + [sym_builtin] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1475), + [anon_sym_AMP] = ACTIONS(1473), + [anon_sym_static] = ACTIONS(1473), + [anon_sym_tlocal] = ACTIONS(1473), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_fn] = ACTIONS(1473), + [anon_sym_LBRACE] = ACTIONS(1473), + [anon_sym_RBRACE] = ACTIONS(1475), + [anon_sym_const] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(1473), + [anon_sym_return] = ACTIONS(1473), + [anon_sym_continue] = ACTIONS(1473), + [anon_sym_break] = ACTIONS(1473), + [anon_sym_defer] = ACTIONS(1473), + [anon_sym_assert] = ACTIONS(1473), + [anon_sym_case] = ACTIONS(1473), + [anon_sym_default] = ACTIONS(1473), + [anon_sym_nextcase] = ACTIONS(1473), + [anon_sym_switch] = ACTIONS(1473), + [anon_sym_AMP_AMP] = ACTIONS(1475), + [anon_sym_if] = ACTIONS(1473), + [anon_sym_for] = ACTIONS(1473), + [anon_sym_foreach] = ACTIONS(1473), + [anon_sym_foreach_r] = ACTIONS(1473), + [anon_sym_while] = ACTIONS(1473), + [anon_sym_do] = ACTIONS(1473), + [anon_sym_int] = ACTIONS(1473), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1475), + [anon_sym_asm] = ACTIONS(1473), + [anon_sym_DOLLARassert] = ACTIONS(1473), + [anon_sym_DOLLARerror] = ACTIONS(1473), + [anon_sym_DOLLARecho] = ACTIONS(1473), + [anon_sym_DOLLARif] = ACTIONS(1473), + [anon_sym_DOLLARswitch] = ACTIONS(1473), + [anon_sym_DOLLARfor] = ACTIONS(1473), + [anon_sym_DOLLARforeach] = ACTIONS(1473), + [anon_sym_DOLLARalignof] = ACTIONS(1473), + [anon_sym_DOLLARextnameof] = ACTIONS(1473), + [anon_sym_DOLLARnameof] = ACTIONS(1473), + [anon_sym_DOLLARoffsetof] = ACTIONS(1473), + [anon_sym_DOLLARqnameof] = ACTIONS(1473), + [anon_sym_DOLLARvaconst] = ACTIONS(1473), + [anon_sym_DOLLARvaarg] = ACTIONS(1473), + [anon_sym_DOLLARvaref] = ACTIONS(1473), + [anon_sym_DOLLARvaexpr] = ACTIONS(1473), + [anon_sym_true] = ACTIONS(1473), + [anon_sym_false] = ACTIONS(1473), + [anon_sym_null] = ACTIONS(1473), + [anon_sym_DOLLARvacount] = ACTIONS(1473), + [anon_sym_DOLLARappend] = ACTIONS(1473), + [anon_sym_DOLLARconcat] = ACTIONS(1473), + [anon_sym_DOLLAReval] = ACTIONS(1473), + [anon_sym_DOLLARis_const] = ACTIONS(1473), + [anon_sym_DOLLARsizeof] = ACTIONS(1473), + [anon_sym_DOLLARstringify] = ACTIONS(1473), + [anon_sym_DOLLARand] = ACTIONS(1473), + [anon_sym_DOLLARdefined] = ACTIONS(1473), + [anon_sym_DOLLARembed] = ACTIONS(1473), + [anon_sym_DOLLARor] = ACTIONS(1473), + [anon_sym_DOLLARfeature] = ACTIONS(1473), + [anon_sym_DOLLARassignable] = ACTIONS(1473), + [anon_sym_BANG] = ACTIONS(1475), + [anon_sym_TILDE] = ACTIONS(1475), + [anon_sym_PLUS_PLUS] = ACTIONS(1475), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_typeid] = ACTIONS(1473), + [anon_sym_LBRACE_PIPE] = ACTIONS(1475), + [anon_sym_PIPE_RBRACE] = ACTIONS(1475), + [anon_sym_void] = ACTIONS(1473), + [anon_sym_bool] = ACTIONS(1473), + [anon_sym_char] = ACTIONS(1473), + [anon_sym_ichar] = ACTIONS(1473), + [anon_sym_short] = ACTIONS(1473), + [anon_sym_ushort] = ACTIONS(1473), + [anon_sym_uint] = ACTIONS(1473), + [anon_sym_long] = ACTIONS(1473), + [anon_sym_ulong] = ACTIONS(1473), + [anon_sym_int128] = ACTIONS(1473), + [anon_sym_uint128] = ACTIONS(1473), + [anon_sym_float] = ACTIONS(1473), + [anon_sym_double] = ACTIONS(1473), + [anon_sym_float16] = ACTIONS(1473), + [anon_sym_bfloat16] = ACTIONS(1473), + [anon_sym_float128] = ACTIONS(1473), + [anon_sym_iptr] = ACTIONS(1473), + [anon_sym_uptr] = ACTIONS(1473), + [anon_sym_isz] = ACTIONS(1473), + [anon_sym_usz] = ACTIONS(1473), + [anon_sym_anyfault] = ACTIONS(1473), + [anon_sym_any] = ACTIONS(1473), + [anon_sym_DOLLARtypeof] = ACTIONS(1473), + [anon_sym_DOLLARtypefrom] = ACTIONS(1473), + [anon_sym_DOLLARvatype] = ACTIONS(1473), + [anon_sym_DOLLARevaltype] = ACTIONS(1473), + [sym_real_literal] = ACTIONS(1475), }, [367] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), [sym_line_comment] = STATE(367), [sym_doc_comment] = STATE(367), [sym_block_comment] = STATE(367), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1243), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(1658), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1094), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1225), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1225), - [sym_binary_expr] = STATE(1225), - [sym_call_expr] = STATE(1120), - [sym_update_expr] = STATE(1120), - [sym_rethrow_expr] = STATE(1120), - [sym_trailing_generic_expr] = STATE(1120), - [sym_subscript_expr] = STATE(1120), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [sym_ident] = ACTIONS(1477), + [sym_integer_literal] = ACTIONS(1479), + [anon_sym_SQUOTE] = ACTIONS(1479), + [anon_sym_DQUOTE] = ACTIONS(1479), + [anon_sym_BQUOTE] = ACTIONS(1479), + [sym_bytes_literal] = ACTIONS(1479), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1477), + [sym_at_ident] = ACTIONS(1479), + [sym_hash_ident] = ACTIONS(1479), + [sym_type_ident] = ACTIONS(1479), + [sym_ct_type_ident] = ACTIONS(1479), + [sym_const_ident] = ACTIONS(1477), + [sym_builtin] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1479), + [anon_sym_AMP] = ACTIONS(1477), + [anon_sym_static] = ACTIONS(1477), + [anon_sym_tlocal] = ACTIONS(1477), + [anon_sym_SEMI] = ACTIONS(1479), + [anon_sym_fn] = ACTIONS(1477), + [anon_sym_LBRACE] = ACTIONS(1477), + [anon_sym_RBRACE] = ACTIONS(1479), + [anon_sym_const] = ACTIONS(1477), + [anon_sym_var] = ACTIONS(1477), + [anon_sym_return] = ACTIONS(1477), + [anon_sym_continue] = ACTIONS(1477), + [anon_sym_break] = ACTIONS(1477), + [anon_sym_defer] = ACTIONS(1477), + [anon_sym_assert] = ACTIONS(1477), + [anon_sym_case] = ACTIONS(1477), + [anon_sym_default] = ACTIONS(1477), + [anon_sym_nextcase] = ACTIONS(1477), + [anon_sym_switch] = ACTIONS(1477), + [anon_sym_AMP_AMP] = ACTIONS(1479), + [anon_sym_if] = ACTIONS(1477), + [anon_sym_for] = ACTIONS(1477), + [anon_sym_foreach] = ACTIONS(1477), + [anon_sym_foreach_r] = ACTIONS(1477), + [anon_sym_while] = ACTIONS(1477), + [anon_sym_do] = ACTIONS(1477), + [anon_sym_int] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1477), + [anon_sym_DASH] = ACTIONS(1477), + [anon_sym_STAR] = ACTIONS(1479), + [anon_sym_asm] = ACTIONS(1477), + [anon_sym_DOLLARassert] = ACTIONS(1477), + [anon_sym_DOLLARerror] = ACTIONS(1477), + [anon_sym_DOLLARecho] = ACTIONS(1477), + [anon_sym_DOLLARif] = ACTIONS(1477), + [anon_sym_DOLLARswitch] = ACTIONS(1477), + [anon_sym_DOLLARfor] = ACTIONS(1477), + [anon_sym_DOLLARforeach] = ACTIONS(1477), + [anon_sym_DOLLARalignof] = ACTIONS(1477), + [anon_sym_DOLLARextnameof] = ACTIONS(1477), + [anon_sym_DOLLARnameof] = ACTIONS(1477), + [anon_sym_DOLLARoffsetof] = ACTIONS(1477), + [anon_sym_DOLLARqnameof] = ACTIONS(1477), + [anon_sym_DOLLARvaconst] = ACTIONS(1477), + [anon_sym_DOLLARvaarg] = ACTIONS(1477), + [anon_sym_DOLLARvaref] = ACTIONS(1477), + [anon_sym_DOLLARvaexpr] = ACTIONS(1477), + [anon_sym_true] = ACTIONS(1477), + [anon_sym_false] = ACTIONS(1477), + [anon_sym_null] = ACTIONS(1477), + [anon_sym_DOLLARvacount] = ACTIONS(1477), + [anon_sym_DOLLARappend] = ACTIONS(1477), + [anon_sym_DOLLARconcat] = ACTIONS(1477), + [anon_sym_DOLLAReval] = ACTIONS(1477), + [anon_sym_DOLLARis_const] = ACTIONS(1477), + [anon_sym_DOLLARsizeof] = ACTIONS(1477), + [anon_sym_DOLLARstringify] = ACTIONS(1477), + [anon_sym_DOLLARand] = ACTIONS(1477), + [anon_sym_DOLLARdefined] = ACTIONS(1477), + [anon_sym_DOLLARembed] = ACTIONS(1477), + [anon_sym_DOLLARor] = ACTIONS(1477), + [anon_sym_DOLLARfeature] = ACTIONS(1477), + [anon_sym_DOLLARassignable] = ACTIONS(1477), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_TILDE] = ACTIONS(1479), + [anon_sym_PLUS_PLUS] = ACTIONS(1479), + [anon_sym_DASH_DASH] = ACTIONS(1479), + [anon_sym_typeid] = ACTIONS(1477), + [anon_sym_LBRACE_PIPE] = ACTIONS(1479), + [anon_sym_PIPE_RBRACE] = ACTIONS(1479), + [anon_sym_void] = ACTIONS(1477), + [anon_sym_bool] = ACTIONS(1477), + [anon_sym_char] = ACTIONS(1477), + [anon_sym_ichar] = ACTIONS(1477), + [anon_sym_short] = ACTIONS(1477), + [anon_sym_ushort] = ACTIONS(1477), + [anon_sym_uint] = ACTIONS(1477), + [anon_sym_long] = ACTIONS(1477), + [anon_sym_ulong] = ACTIONS(1477), + [anon_sym_int128] = ACTIONS(1477), + [anon_sym_uint128] = ACTIONS(1477), + [anon_sym_float] = ACTIONS(1477), + [anon_sym_double] = ACTIONS(1477), + [anon_sym_float16] = ACTIONS(1477), + [anon_sym_bfloat16] = ACTIONS(1477), + [anon_sym_float128] = ACTIONS(1477), + [anon_sym_iptr] = ACTIONS(1477), + [anon_sym_uptr] = ACTIONS(1477), + [anon_sym_isz] = ACTIONS(1477), + [anon_sym_usz] = ACTIONS(1477), + [anon_sym_anyfault] = ACTIONS(1477), + [anon_sym_any] = ACTIONS(1477), + [anon_sym_DOLLARtypeof] = ACTIONS(1477), + [anon_sym_DOLLARtypefrom] = ACTIONS(1477), + [anon_sym_DOLLARvatype] = ACTIONS(1477), + [anon_sym_DOLLARevaltype] = ACTIONS(1477), + [sym_real_literal] = ACTIONS(1479), }, [368] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), [sym_line_comment] = STATE(368), [sym_doc_comment] = STATE(368), [sym_block_comment] = STATE(368), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1303), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(1654), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1087), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1220), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1220), - [sym_binary_expr] = STATE(1220), - [sym_call_expr] = STATE(1088), - [sym_update_expr] = STATE(1088), - [sym_rethrow_expr] = STATE(1088), - [sym_trailing_generic_expr] = STATE(1088), - [sym_subscript_expr] = STATE(1088), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [sym_ident] = ACTIONS(1481), + [sym_integer_literal] = ACTIONS(1483), + [anon_sym_SQUOTE] = ACTIONS(1483), + [anon_sym_DQUOTE] = ACTIONS(1483), + [anon_sym_BQUOTE] = ACTIONS(1483), + [sym_bytes_literal] = ACTIONS(1483), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1481), + [sym_at_ident] = ACTIONS(1483), + [sym_hash_ident] = ACTIONS(1483), + [sym_type_ident] = ACTIONS(1483), + [sym_ct_type_ident] = ACTIONS(1483), + [sym_const_ident] = ACTIONS(1481), + [sym_builtin] = ACTIONS(1483), + [anon_sym_LPAREN] = ACTIONS(1483), + [anon_sym_AMP] = ACTIONS(1481), + [anon_sym_static] = ACTIONS(1481), + [anon_sym_tlocal] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1483), + [anon_sym_fn] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(1483), + [anon_sym_const] = ACTIONS(1481), + [anon_sym_var] = ACTIONS(1481), + [anon_sym_return] = ACTIONS(1481), + [anon_sym_continue] = ACTIONS(1481), + [anon_sym_break] = ACTIONS(1481), + [anon_sym_defer] = ACTIONS(1481), + [anon_sym_assert] = ACTIONS(1481), + [anon_sym_case] = ACTIONS(1481), + [anon_sym_default] = ACTIONS(1481), + [anon_sym_nextcase] = ACTIONS(1481), + [anon_sym_switch] = ACTIONS(1481), + [anon_sym_AMP_AMP] = ACTIONS(1483), + [anon_sym_if] = ACTIONS(1481), + [anon_sym_for] = ACTIONS(1481), + [anon_sym_foreach] = ACTIONS(1481), + [anon_sym_foreach_r] = ACTIONS(1481), + [anon_sym_while] = ACTIONS(1481), + [anon_sym_do] = ACTIONS(1481), + [anon_sym_int] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_STAR] = ACTIONS(1483), + [anon_sym_asm] = ACTIONS(1481), + [anon_sym_DOLLARassert] = ACTIONS(1481), + [anon_sym_DOLLARerror] = ACTIONS(1481), + [anon_sym_DOLLARecho] = ACTIONS(1481), + [anon_sym_DOLLARif] = ACTIONS(1481), + [anon_sym_DOLLARswitch] = ACTIONS(1481), + [anon_sym_DOLLARfor] = ACTIONS(1481), + [anon_sym_DOLLARforeach] = ACTIONS(1481), + [anon_sym_DOLLARalignof] = ACTIONS(1481), + [anon_sym_DOLLARextnameof] = ACTIONS(1481), + [anon_sym_DOLLARnameof] = ACTIONS(1481), + [anon_sym_DOLLARoffsetof] = ACTIONS(1481), + [anon_sym_DOLLARqnameof] = ACTIONS(1481), + [anon_sym_DOLLARvaconst] = ACTIONS(1481), + [anon_sym_DOLLARvaarg] = ACTIONS(1481), + [anon_sym_DOLLARvaref] = ACTIONS(1481), + [anon_sym_DOLLARvaexpr] = ACTIONS(1481), + [anon_sym_true] = ACTIONS(1481), + [anon_sym_false] = ACTIONS(1481), + [anon_sym_null] = ACTIONS(1481), + [anon_sym_DOLLARvacount] = ACTIONS(1481), + [anon_sym_DOLLARappend] = ACTIONS(1481), + [anon_sym_DOLLARconcat] = ACTIONS(1481), + [anon_sym_DOLLAReval] = ACTIONS(1481), + [anon_sym_DOLLARis_const] = ACTIONS(1481), + [anon_sym_DOLLARsizeof] = ACTIONS(1481), + [anon_sym_DOLLARstringify] = ACTIONS(1481), + [anon_sym_DOLLARand] = ACTIONS(1481), + [anon_sym_DOLLARdefined] = ACTIONS(1481), + [anon_sym_DOLLARembed] = ACTIONS(1481), + [anon_sym_DOLLARor] = ACTIONS(1481), + [anon_sym_DOLLARfeature] = ACTIONS(1481), + [anon_sym_DOLLARassignable] = ACTIONS(1481), + [anon_sym_BANG] = ACTIONS(1483), + [anon_sym_TILDE] = ACTIONS(1483), + [anon_sym_PLUS_PLUS] = ACTIONS(1483), + [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_typeid] = ACTIONS(1481), + [anon_sym_LBRACE_PIPE] = ACTIONS(1483), + [anon_sym_PIPE_RBRACE] = ACTIONS(1483), + [anon_sym_void] = ACTIONS(1481), + [anon_sym_bool] = ACTIONS(1481), + [anon_sym_char] = ACTIONS(1481), + [anon_sym_ichar] = ACTIONS(1481), + [anon_sym_short] = ACTIONS(1481), + [anon_sym_ushort] = ACTIONS(1481), + [anon_sym_uint] = ACTIONS(1481), + [anon_sym_long] = ACTIONS(1481), + [anon_sym_ulong] = ACTIONS(1481), + [anon_sym_int128] = ACTIONS(1481), + [anon_sym_uint128] = ACTIONS(1481), + [anon_sym_float] = ACTIONS(1481), + [anon_sym_double] = ACTIONS(1481), + [anon_sym_float16] = ACTIONS(1481), + [anon_sym_bfloat16] = ACTIONS(1481), + [anon_sym_float128] = ACTIONS(1481), + [anon_sym_iptr] = ACTIONS(1481), + [anon_sym_uptr] = ACTIONS(1481), + [anon_sym_isz] = ACTIONS(1481), + [anon_sym_usz] = ACTIONS(1481), + [anon_sym_anyfault] = ACTIONS(1481), + [anon_sym_any] = ACTIONS(1481), + [anon_sym_DOLLARtypeof] = ACTIONS(1481), + [anon_sym_DOLLARtypefrom] = ACTIONS(1481), + [anon_sym_DOLLARvatype] = ACTIONS(1481), + [anon_sym_DOLLARevaltype] = ACTIONS(1481), + [sym_real_literal] = ACTIONS(1483), }, [369] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), [sym_line_comment] = STATE(369), [sym_doc_comment] = STATE(369), [sym_block_comment] = STATE(369), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1303), - [sym__constant_expr] = STATE(1820), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [sym_ident] = ACTIONS(1179), + [sym_integer_literal] = ACTIONS(1181), + [anon_sym_SQUOTE] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1181), + [anon_sym_BQUOTE] = ACTIONS(1181), + [sym_bytes_literal] = ACTIONS(1181), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1179), + [sym_at_ident] = ACTIONS(1181), + [sym_hash_ident] = ACTIONS(1181), + [sym_type_ident] = ACTIONS(1181), + [sym_ct_type_ident] = ACTIONS(1181), + [sym_const_ident] = ACTIONS(1179), + [sym_builtin] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1181), + [anon_sym_AMP] = ACTIONS(1179), + [anon_sym_static] = ACTIONS(1179), + [anon_sym_tlocal] = ACTIONS(1179), + [anon_sym_SEMI] = ACTIONS(1181), + [anon_sym_fn] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_RBRACE] = ACTIONS(1181), + [anon_sym_const] = ACTIONS(1179), + [anon_sym_var] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_defer] = ACTIONS(1179), + [anon_sym_assert] = ACTIONS(1179), + [anon_sym_case] = ACTIONS(1179), + [anon_sym_default] = ACTIONS(1179), + [anon_sym_nextcase] = ACTIONS(1179), + [anon_sym_switch] = ACTIONS(1179), + [anon_sym_AMP_AMP] = ACTIONS(1181), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_foreach] = ACTIONS(1179), + [anon_sym_foreach_r] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_int] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1181), + [anon_sym_asm] = ACTIONS(1179), + [anon_sym_DOLLARassert] = ACTIONS(1179), + [anon_sym_DOLLARerror] = ACTIONS(1179), + [anon_sym_DOLLARecho] = ACTIONS(1179), + [anon_sym_DOLLARif] = ACTIONS(1179), + [anon_sym_DOLLARswitch] = ACTIONS(1179), + [anon_sym_DOLLARfor] = ACTIONS(1179), + [anon_sym_DOLLARforeach] = ACTIONS(1179), + [anon_sym_DOLLARalignof] = ACTIONS(1179), + [anon_sym_DOLLARextnameof] = ACTIONS(1179), + [anon_sym_DOLLARnameof] = ACTIONS(1179), + [anon_sym_DOLLARoffsetof] = ACTIONS(1179), + [anon_sym_DOLLARqnameof] = ACTIONS(1179), + [anon_sym_DOLLARvaconst] = ACTIONS(1179), + [anon_sym_DOLLARvaarg] = ACTIONS(1179), + [anon_sym_DOLLARvaref] = ACTIONS(1179), + [anon_sym_DOLLARvaexpr] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_DOLLARvacount] = ACTIONS(1179), + [anon_sym_DOLLARappend] = ACTIONS(1179), + [anon_sym_DOLLARconcat] = ACTIONS(1179), + [anon_sym_DOLLAReval] = ACTIONS(1179), + [anon_sym_DOLLARis_const] = ACTIONS(1179), + [anon_sym_DOLLARsizeof] = ACTIONS(1179), + [anon_sym_DOLLARstringify] = ACTIONS(1179), + [anon_sym_DOLLARand] = ACTIONS(1179), + [anon_sym_DOLLARdefined] = ACTIONS(1179), + [anon_sym_DOLLARembed] = ACTIONS(1179), + [anon_sym_DOLLARor] = ACTIONS(1179), + [anon_sym_DOLLARfeature] = ACTIONS(1179), + [anon_sym_DOLLARassignable] = ACTIONS(1179), + [anon_sym_BANG] = ACTIONS(1181), + [anon_sym_TILDE] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(1181), + [anon_sym_DASH_DASH] = ACTIONS(1181), + [anon_sym_typeid] = ACTIONS(1179), + [anon_sym_LBRACE_PIPE] = ACTIONS(1181), + [anon_sym_PIPE_RBRACE] = ACTIONS(1181), + [anon_sym_void] = ACTIONS(1179), + [anon_sym_bool] = ACTIONS(1179), + [anon_sym_char] = ACTIONS(1179), + [anon_sym_ichar] = ACTIONS(1179), + [anon_sym_short] = ACTIONS(1179), + [anon_sym_ushort] = ACTIONS(1179), + [anon_sym_uint] = ACTIONS(1179), + [anon_sym_long] = ACTIONS(1179), + [anon_sym_ulong] = ACTIONS(1179), + [anon_sym_int128] = ACTIONS(1179), + [anon_sym_uint128] = ACTIONS(1179), + [anon_sym_float] = ACTIONS(1179), + [anon_sym_double] = ACTIONS(1179), + [anon_sym_float16] = ACTIONS(1179), + [anon_sym_bfloat16] = ACTIONS(1179), + [anon_sym_float128] = ACTIONS(1179), + [anon_sym_iptr] = ACTIONS(1179), + [anon_sym_uptr] = ACTIONS(1179), + [anon_sym_isz] = ACTIONS(1179), + [anon_sym_usz] = ACTIONS(1179), + [anon_sym_anyfault] = ACTIONS(1179), + [anon_sym_any] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1179), + [anon_sym_DOLLARtypefrom] = ACTIONS(1179), + [anon_sym_DOLLARvatype] = ACTIONS(1179), + [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [sym_real_literal] = ACTIONS(1181), }, [370] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), [sym_line_comment] = STATE(370), [sym_doc_comment] = STATE(370), [sym_block_comment] = STATE(370), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1301), - [sym__constant_expr] = STATE(1827), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1083), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1224), - [sym_lambda_expr] = STATE(1224), - [sym_elvis_orelse_expr] = STATE(1224), - [sym_suffix_expr] = STATE(1224), - [sym_cast_expr] = STATE(1207), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1207), - [sym_binary_expr] = STATE(1207), - [sym_call_expr] = STATE(1089), - [sym_update_expr] = STATE(1089), - [sym_rethrow_expr] = STATE(1089), - [sym_trailing_generic_expr] = STATE(1089), - [sym_subscript_expr] = STATE(1089), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [sym_ident] = ACTIONS(1485), + [sym_integer_literal] = ACTIONS(1487), + [anon_sym_SQUOTE] = ACTIONS(1487), + [anon_sym_DQUOTE] = ACTIONS(1487), + [anon_sym_BQUOTE] = ACTIONS(1487), + [sym_bytes_literal] = ACTIONS(1487), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1485), + [sym_at_ident] = ACTIONS(1487), + [sym_hash_ident] = ACTIONS(1487), + [sym_type_ident] = ACTIONS(1487), + [sym_ct_type_ident] = ACTIONS(1487), + [sym_const_ident] = ACTIONS(1485), + [sym_builtin] = ACTIONS(1487), + [anon_sym_LPAREN] = ACTIONS(1487), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_static] = ACTIONS(1485), + [anon_sym_tlocal] = ACTIONS(1485), + [anon_sym_SEMI] = ACTIONS(1487), + [anon_sym_fn] = ACTIONS(1485), + [anon_sym_LBRACE] = ACTIONS(1485), + [anon_sym_RBRACE] = ACTIONS(1487), + [anon_sym_const] = ACTIONS(1485), + [anon_sym_var] = ACTIONS(1485), + [anon_sym_return] = ACTIONS(1485), + [anon_sym_continue] = ACTIONS(1485), + [anon_sym_break] = ACTIONS(1485), + [anon_sym_defer] = ACTIONS(1485), + [anon_sym_assert] = ACTIONS(1485), + [anon_sym_case] = ACTIONS(1485), + [anon_sym_default] = ACTIONS(1485), + [anon_sym_nextcase] = ACTIONS(1485), + [anon_sym_switch] = ACTIONS(1485), + [anon_sym_AMP_AMP] = ACTIONS(1487), + [anon_sym_if] = ACTIONS(1485), + [anon_sym_for] = ACTIONS(1485), + [anon_sym_foreach] = ACTIONS(1485), + [anon_sym_foreach_r] = ACTIONS(1485), + [anon_sym_while] = ACTIONS(1485), + [anon_sym_do] = ACTIONS(1485), + [anon_sym_int] = ACTIONS(1485), + [anon_sym_PLUS] = ACTIONS(1485), + [anon_sym_DASH] = ACTIONS(1485), + [anon_sym_STAR] = ACTIONS(1487), + [anon_sym_asm] = ACTIONS(1485), + [anon_sym_DOLLARassert] = ACTIONS(1485), + [anon_sym_DOLLARerror] = ACTIONS(1485), + [anon_sym_DOLLARecho] = ACTIONS(1485), + [anon_sym_DOLLARif] = ACTIONS(1485), + [anon_sym_DOLLARswitch] = ACTIONS(1485), + [anon_sym_DOLLARfor] = ACTIONS(1485), + [anon_sym_DOLLARforeach] = ACTIONS(1485), + [anon_sym_DOLLARalignof] = ACTIONS(1485), + [anon_sym_DOLLARextnameof] = ACTIONS(1485), + [anon_sym_DOLLARnameof] = ACTIONS(1485), + [anon_sym_DOLLARoffsetof] = ACTIONS(1485), + [anon_sym_DOLLARqnameof] = ACTIONS(1485), + [anon_sym_DOLLARvaconst] = ACTIONS(1485), + [anon_sym_DOLLARvaarg] = ACTIONS(1485), + [anon_sym_DOLLARvaref] = ACTIONS(1485), + [anon_sym_DOLLARvaexpr] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(1485), + [anon_sym_false] = ACTIONS(1485), + [anon_sym_null] = ACTIONS(1485), + [anon_sym_DOLLARvacount] = ACTIONS(1485), + [anon_sym_DOLLARappend] = ACTIONS(1485), + [anon_sym_DOLLARconcat] = ACTIONS(1485), + [anon_sym_DOLLAReval] = ACTIONS(1485), + [anon_sym_DOLLARis_const] = ACTIONS(1485), + [anon_sym_DOLLARsizeof] = ACTIONS(1485), + [anon_sym_DOLLARstringify] = ACTIONS(1485), + [anon_sym_DOLLARand] = ACTIONS(1485), + [anon_sym_DOLLARdefined] = ACTIONS(1485), + [anon_sym_DOLLARembed] = ACTIONS(1485), + [anon_sym_DOLLARor] = ACTIONS(1485), + [anon_sym_DOLLARfeature] = ACTIONS(1485), + [anon_sym_DOLLARassignable] = ACTIONS(1485), + [anon_sym_BANG] = ACTIONS(1487), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1487), + [anon_sym_DASH_DASH] = ACTIONS(1487), + [anon_sym_typeid] = ACTIONS(1485), + [anon_sym_LBRACE_PIPE] = ACTIONS(1487), + [anon_sym_PIPE_RBRACE] = ACTIONS(1487), + [anon_sym_void] = ACTIONS(1485), + [anon_sym_bool] = ACTIONS(1485), + [anon_sym_char] = ACTIONS(1485), + [anon_sym_ichar] = ACTIONS(1485), + [anon_sym_short] = ACTIONS(1485), + [anon_sym_ushort] = ACTIONS(1485), + [anon_sym_uint] = ACTIONS(1485), + [anon_sym_long] = ACTIONS(1485), + [anon_sym_ulong] = ACTIONS(1485), + [anon_sym_int128] = ACTIONS(1485), + [anon_sym_uint128] = ACTIONS(1485), + [anon_sym_float] = ACTIONS(1485), + [anon_sym_double] = ACTIONS(1485), + [anon_sym_float16] = ACTIONS(1485), + [anon_sym_bfloat16] = ACTIONS(1485), + [anon_sym_float128] = ACTIONS(1485), + [anon_sym_iptr] = ACTIONS(1485), + [anon_sym_uptr] = ACTIONS(1485), + [anon_sym_isz] = ACTIONS(1485), + [anon_sym_usz] = ACTIONS(1485), + [anon_sym_anyfault] = ACTIONS(1485), + [anon_sym_any] = ACTIONS(1485), + [anon_sym_DOLLARtypeof] = ACTIONS(1485), + [anon_sym_DOLLARtypefrom] = ACTIONS(1485), + [anon_sym_DOLLARvatype] = ACTIONS(1485), + [anon_sym_DOLLARevaltype] = ACTIONS(1485), + [sym_real_literal] = ACTIONS(1487), }, [371] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), [sym_line_comment] = STATE(371), [sym_doc_comment] = STATE(371), [sym_block_comment] = STATE(371), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1226), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [sym_ident] = ACTIONS(1489), + [sym_integer_literal] = ACTIONS(1491), + [anon_sym_SQUOTE] = ACTIONS(1491), + [anon_sym_DQUOTE] = ACTIONS(1491), + [anon_sym_BQUOTE] = ACTIONS(1491), + [sym_bytes_literal] = ACTIONS(1491), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1489), + [sym_at_ident] = ACTIONS(1491), + [sym_hash_ident] = ACTIONS(1491), + [sym_type_ident] = ACTIONS(1491), + [sym_ct_type_ident] = ACTIONS(1491), + [sym_const_ident] = ACTIONS(1489), + [sym_builtin] = ACTIONS(1491), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_AMP] = ACTIONS(1489), + [anon_sym_static] = ACTIONS(1489), + [anon_sym_tlocal] = ACTIONS(1489), + [anon_sym_SEMI] = ACTIONS(1491), + [anon_sym_fn] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1489), + [anon_sym_RBRACE] = ACTIONS(1491), + [anon_sym_const] = ACTIONS(1489), + [anon_sym_var] = ACTIONS(1489), + [anon_sym_return] = ACTIONS(1489), + [anon_sym_continue] = ACTIONS(1489), + [anon_sym_break] = ACTIONS(1489), + [anon_sym_defer] = ACTIONS(1489), + [anon_sym_assert] = ACTIONS(1489), + [anon_sym_case] = ACTIONS(1489), + [anon_sym_default] = ACTIONS(1489), + [anon_sym_nextcase] = ACTIONS(1489), + [anon_sym_switch] = ACTIONS(1489), + [anon_sym_AMP_AMP] = ACTIONS(1491), + [anon_sym_if] = ACTIONS(1489), + [anon_sym_for] = ACTIONS(1489), + [anon_sym_foreach] = ACTIONS(1489), + [anon_sym_foreach_r] = ACTIONS(1489), + [anon_sym_while] = ACTIONS(1489), + [anon_sym_do] = ACTIONS(1489), + [anon_sym_int] = ACTIONS(1489), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_STAR] = ACTIONS(1491), + [anon_sym_asm] = ACTIONS(1489), + [anon_sym_DOLLARassert] = ACTIONS(1489), + [anon_sym_DOLLARerror] = ACTIONS(1489), + [anon_sym_DOLLARecho] = ACTIONS(1489), + [anon_sym_DOLLARif] = ACTIONS(1489), + [anon_sym_DOLLARswitch] = ACTIONS(1489), + [anon_sym_DOLLARfor] = ACTIONS(1489), + [anon_sym_DOLLARforeach] = ACTIONS(1489), + [anon_sym_DOLLARalignof] = ACTIONS(1489), + [anon_sym_DOLLARextnameof] = ACTIONS(1489), + [anon_sym_DOLLARnameof] = ACTIONS(1489), + [anon_sym_DOLLARoffsetof] = ACTIONS(1489), + [anon_sym_DOLLARqnameof] = ACTIONS(1489), + [anon_sym_DOLLARvaconst] = ACTIONS(1489), + [anon_sym_DOLLARvaarg] = ACTIONS(1489), + [anon_sym_DOLLARvaref] = ACTIONS(1489), + [anon_sym_DOLLARvaexpr] = ACTIONS(1489), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), + [anon_sym_null] = ACTIONS(1489), + [anon_sym_DOLLARvacount] = ACTIONS(1489), + [anon_sym_DOLLARappend] = ACTIONS(1489), + [anon_sym_DOLLARconcat] = ACTIONS(1489), + [anon_sym_DOLLAReval] = ACTIONS(1489), + [anon_sym_DOLLARis_const] = ACTIONS(1489), + [anon_sym_DOLLARsizeof] = ACTIONS(1489), + [anon_sym_DOLLARstringify] = ACTIONS(1489), + [anon_sym_DOLLARand] = ACTIONS(1489), + [anon_sym_DOLLARdefined] = ACTIONS(1489), + [anon_sym_DOLLARembed] = ACTIONS(1489), + [anon_sym_DOLLARor] = ACTIONS(1489), + [anon_sym_DOLLARfeature] = ACTIONS(1489), + [anon_sym_DOLLARassignable] = ACTIONS(1489), + [anon_sym_BANG] = ACTIONS(1491), + [anon_sym_TILDE] = ACTIONS(1491), + [anon_sym_PLUS_PLUS] = ACTIONS(1491), + [anon_sym_DASH_DASH] = ACTIONS(1491), + [anon_sym_typeid] = ACTIONS(1489), + [anon_sym_LBRACE_PIPE] = ACTIONS(1491), + [anon_sym_PIPE_RBRACE] = ACTIONS(1491), + [anon_sym_void] = ACTIONS(1489), + [anon_sym_bool] = ACTIONS(1489), + [anon_sym_char] = ACTIONS(1489), + [anon_sym_ichar] = ACTIONS(1489), + [anon_sym_short] = ACTIONS(1489), + [anon_sym_ushort] = ACTIONS(1489), + [anon_sym_uint] = ACTIONS(1489), + [anon_sym_long] = ACTIONS(1489), + [anon_sym_ulong] = ACTIONS(1489), + [anon_sym_int128] = ACTIONS(1489), + [anon_sym_uint128] = ACTIONS(1489), + [anon_sym_float] = ACTIONS(1489), + [anon_sym_double] = ACTIONS(1489), + [anon_sym_float16] = ACTIONS(1489), + [anon_sym_bfloat16] = ACTIONS(1489), + [anon_sym_float128] = ACTIONS(1489), + [anon_sym_iptr] = ACTIONS(1489), + [anon_sym_uptr] = ACTIONS(1489), + [anon_sym_isz] = ACTIONS(1489), + [anon_sym_usz] = ACTIONS(1489), + [anon_sym_anyfault] = ACTIONS(1489), + [anon_sym_any] = ACTIONS(1489), + [anon_sym_DOLLARtypeof] = ACTIONS(1489), + [anon_sym_DOLLARtypefrom] = ACTIONS(1489), + [anon_sym_DOLLARvatype] = ACTIONS(1489), + [anon_sym_DOLLARevaltype] = ACTIONS(1489), + [sym_real_literal] = ACTIONS(1491), }, [372] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), [sym_line_comment] = STATE(372), [sym_doc_comment] = STATE(372), [sym_block_comment] = STATE(372), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1303), - [sym__constant_expr] = STATE(1744), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [sym_ident] = ACTIONS(1493), + [sym_integer_literal] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1495), + [anon_sym_DQUOTE] = ACTIONS(1495), + [anon_sym_BQUOTE] = ACTIONS(1495), + [sym_bytes_literal] = ACTIONS(1495), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1493), + [sym_at_ident] = ACTIONS(1495), + [sym_hash_ident] = ACTIONS(1495), + [sym_type_ident] = ACTIONS(1495), + [sym_ct_type_ident] = ACTIONS(1495), + [sym_const_ident] = ACTIONS(1493), + [sym_builtin] = ACTIONS(1495), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1493), + [anon_sym_static] = ACTIONS(1493), + [anon_sym_tlocal] = ACTIONS(1493), + [anon_sym_SEMI] = ACTIONS(1495), + [anon_sym_fn] = ACTIONS(1493), + [anon_sym_LBRACE] = ACTIONS(1493), + [anon_sym_RBRACE] = ACTIONS(1495), + [anon_sym_const] = ACTIONS(1493), + [anon_sym_var] = ACTIONS(1493), + [anon_sym_return] = ACTIONS(1493), + [anon_sym_continue] = ACTIONS(1493), + [anon_sym_break] = ACTIONS(1493), + [anon_sym_defer] = ACTIONS(1493), + [anon_sym_assert] = ACTIONS(1493), + [anon_sym_case] = ACTIONS(1493), + [anon_sym_default] = ACTIONS(1493), + [anon_sym_nextcase] = ACTIONS(1493), + [anon_sym_switch] = ACTIONS(1493), + [anon_sym_AMP_AMP] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1493), + [anon_sym_for] = ACTIONS(1493), + [anon_sym_foreach] = ACTIONS(1493), + [anon_sym_foreach_r] = ACTIONS(1493), + [anon_sym_while] = ACTIONS(1493), + [anon_sym_do] = ACTIONS(1493), + [anon_sym_int] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1493), + [anon_sym_DASH] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1495), + [anon_sym_asm] = ACTIONS(1493), + [anon_sym_DOLLARassert] = ACTIONS(1493), + [anon_sym_DOLLARerror] = ACTIONS(1493), + [anon_sym_DOLLARecho] = ACTIONS(1493), + [anon_sym_DOLLARif] = ACTIONS(1493), + [anon_sym_DOLLARswitch] = ACTIONS(1493), + [anon_sym_DOLLARfor] = ACTIONS(1493), + [anon_sym_DOLLARforeach] = ACTIONS(1493), + [anon_sym_DOLLARalignof] = ACTIONS(1493), + [anon_sym_DOLLARextnameof] = ACTIONS(1493), + [anon_sym_DOLLARnameof] = ACTIONS(1493), + [anon_sym_DOLLARoffsetof] = ACTIONS(1493), + [anon_sym_DOLLARqnameof] = ACTIONS(1493), + [anon_sym_DOLLARvaconst] = ACTIONS(1493), + [anon_sym_DOLLARvaarg] = ACTIONS(1493), + [anon_sym_DOLLARvaref] = ACTIONS(1493), + [anon_sym_DOLLARvaexpr] = ACTIONS(1493), + [anon_sym_true] = ACTIONS(1493), + [anon_sym_false] = ACTIONS(1493), + [anon_sym_null] = ACTIONS(1493), + [anon_sym_DOLLARvacount] = ACTIONS(1493), + [anon_sym_DOLLARappend] = ACTIONS(1493), + [anon_sym_DOLLARconcat] = ACTIONS(1493), + [anon_sym_DOLLAReval] = ACTIONS(1493), + [anon_sym_DOLLARis_const] = ACTIONS(1493), + [anon_sym_DOLLARsizeof] = ACTIONS(1493), + [anon_sym_DOLLARstringify] = ACTIONS(1493), + [anon_sym_DOLLARand] = ACTIONS(1493), + [anon_sym_DOLLARdefined] = ACTIONS(1493), + [anon_sym_DOLLARembed] = ACTIONS(1493), + [anon_sym_DOLLARor] = ACTIONS(1493), + [anon_sym_DOLLARfeature] = ACTIONS(1493), + [anon_sym_DOLLARassignable] = ACTIONS(1493), + [anon_sym_BANG] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(1495), + [anon_sym_PLUS_PLUS] = ACTIONS(1495), + [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_typeid] = ACTIONS(1493), + [anon_sym_LBRACE_PIPE] = ACTIONS(1495), + [anon_sym_PIPE_RBRACE] = ACTIONS(1495), + [anon_sym_void] = ACTIONS(1493), + [anon_sym_bool] = ACTIONS(1493), + [anon_sym_char] = ACTIONS(1493), + [anon_sym_ichar] = ACTIONS(1493), + [anon_sym_short] = ACTIONS(1493), + [anon_sym_ushort] = ACTIONS(1493), + [anon_sym_uint] = ACTIONS(1493), + [anon_sym_long] = ACTIONS(1493), + [anon_sym_ulong] = ACTIONS(1493), + [anon_sym_int128] = ACTIONS(1493), + [anon_sym_uint128] = ACTIONS(1493), + [anon_sym_float] = ACTIONS(1493), + [anon_sym_double] = ACTIONS(1493), + [anon_sym_float16] = ACTIONS(1493), + [anon_sym_bfloat16] = ACTIONS(1493), + [anon_sym_float128] = ACTIONS(1493), + [anon_sym_iptr] = ACTIONS(1493), + [anon_sym_uptr] = ACTIONS(1493), + [anon_sym_isz] = ACTIONS(1493), + [anon_sym_usz] = ACTIONS(1493), + [anon_sym_anyfault] = ACTIONS(1493), + [anon_sym_any] = ACTIONS(1493), + [anon_sym_DOLLARtypeof] = ACTIONS(1493), + [anon_sym_DOLLARtypefrom] = ACTIONS(1493), + [anon_sym_DOLLARvatype] = ACTIONS(1493), + [anon_sym_DOLLARevaltype] = ACTIONS(1493), + [sym_real_literal] = ACTIONS(1495), }, [373] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), [sym_line_comment] = STATE(373), [sym_doc_comment] = STATE(373), [sym_block_comment] = STATE(373), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1267), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [sym_ident] = ACTIONS(1497), + [sym_integer_literal] = ACTIONS(1499), + [anon_sym_SQUOTE] = ACTIONS(1499), + [anon_sym_DQUOTE] = ACTIONS(1499), + [anon_sym_BQUOTE] = ACTIONS(1499), + [sym_bytes_literal] = ACTIONS(1499), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1497), + [sym_at_ident] = ACTIONS(1499), + [sym_hash_ident] = ACTIONS(1499), + [sym_type_ident] = ACTIONS(1499), + [sym_ct_type_ident] = ACTIONS(1499), + [sym_const_ident] = ACTIONS(1497), + [sym_builtin] = ACTIONS(1499), + [anon_sym_LPAREN] = ACTIONS(1499), + [anon_sym_AMP] = ACTIONS(1497), + [anon_sym_static] = ACTIONS(1497), + [anon_sym_tlocal] = ACTIONS(1497), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_fn] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_RBRACE] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(1497), + [anon_sym_var] = ACTIONS(1497), + [anon_sym_return] = ACTIONS(1497), + [anon_sym_continue] = ACTIONS(1497), + [anon_sym_break] = ACTIONS(1497), + [anon_sym_defer] = ACTIONS(1497), + [anon_sym_assert] = ACTIONS(1497), + [anon_sym_case] = ACTIONS(1497), + [anon_sym_default] = ACTIONS(1497), + [anon_sym_nextcase] = ACTIONS(1497), + [anon_sym_switch] = ACTIONS(1497), + [anon_sym_AMP_AMP] = ACTIONS(1499), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_for] = ACTIONS(1497), + [anon_sym_foreach] = ACTIONS(1497), + [anon_sym_foreach_r] = ACTIONS(1497), + [anon_sym_while] = ACTIONS(1497), + [anon_sym_do] = ACTIONS(1497), + [anon_sym_int] = ACTIONS(1497), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_asm] = ACTIONS(1497), + [anon_sym_DOLLARassert] = ACTIONS(1497), + [anon_sym_DOLLARerror] = ACTIONS(1497), + [anon_sym_DOLLARecho] = ACTIONS(1497), + [anon_sym_DOLLARif] = ACTIONS(1497), + [anon_sym_DOLLARswitch] = ACTIONS(1497), + [anon_sym_DOLLARfor] = ACTIONS(1497), + [anon_sym_DOLLARforeach] = ACTIONS(1497), + [anon_sym_DOLLARalignof] = ACTIONS(1497), + [anon_sym_DOLLARextnameof] = ACTIONS(1497), + [anon_sym_DOLLARnameof] = ACTIONS(1497), + [anon_sym_DOLLARoffsetof] = ACTIONS(1497), + [anon_sym_DOLLARqnameof] = ACTIONS(1497), + [anon_sym_DOLLARvaconst] = ACTIONS(1497), + [anon_sym_DOLLARvaarg] = ACTIONS(1497), + [anon_sym_DOLLARvaref] = ACTIONS(1497), + [anon_sym_DOLLARvaexpr] = ACTIONS(1497), + [anon_sym_true] = ACTIONS(1497), + [anon_sym_false] = ACTIONS(1497), + [anon_sym_null] = ACTIONS(1497), + [anon_sym_DOLLARvacount] = ACTIONS(1497), + [anon_sym_DOLLARappend] = ACTIONS(1497), + [anon_sym_DOLLARconcat] = ACTIONS(1497), + [anon_sym_DOLLAReval] = ACTIONS(1497), + [anon_sym_DOLLARis_const] = ACTIONS(1497), + [anon_sym_DOLLARsizeof] = ACTIONS(1497), + [anon_sym_DOLLARstringify] = ACTIONS(1497), + [anon_sym_DOLLARand] = ACTIONS(1497), + [anon_sym_DOLLARdefined] = ACTIONS(1497), + [anon_sym_DOLLARembed] = ACTIONS(1497), + [anon_sym_DOLLARor] = ACTIONS(1497), + [anon_sym_DOLLARfeature] = ACTIONS(1497), + [anon_sym_DOLLARassignable] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_TILDE] = ACTIONS(1499), + [anon_sym_PLUS_PLUS] = ACTIONS(1499), + [anon_sym_DASH_DASH] = ACTIONS(1499), + [anon_sym_typeid] = ACTIONS(1497), + [anon_sym_LBRACE_PIPE] = ACTIONS(1499), + [anon_sym_PIPE_RBRACE] = ACTIONS(1499), + [anon_sym_void] = ACTIONS(1497), + [anon_sym_bool] = ACTIONS(1497), + [anon_sym_char] = ACTIONS(1497), + [anon_sym_ichar] = ACTIONS(1497), + [anon_sym_short] = ACTIONS(1497), + [anon_sym_ushort] = ACTIONS(1497), + [anon_sym_uint] = ACTIONS(1497), + [anon_sym_long] = ACTIONS(1497), + [anon_sym_ulong] = ACTIONS(1497), + [anon_sym_int128] = ACTIONS(1497), + [anon_sym_uint128] = ACTIONS(1497), + [anon_sym_float] = ACTIONS(1497), + [anon_sym_double] = ACTIONS(1497), + [anon_sym_float16] = ACTIONS(1497), + [anon_sym_bfloat16] = ACTIONS(1497), + [anon_sym_float128] = ACTIONS(1497), + [anon_sym_iptr] = ACTIONS(1497), + [anon_sym_uptr] = ACTIONS(1497), + [anon_sym_isz] = ACTIONS(1497), + [anon_sym_usz] = ACTIONS(1497), + [anon_sym_anyfault] = ACTIONS(1497), + [anon_sym_any] = ACTIONS(1497), + [anon_sym_DOLLARtypeof] = ACTIONS(1497), + [anon_sym_DOLLARtypefrom] = ACTIONS(1497), + [anon_sym_DOLLARvatype] = ACTIONS(1497), + [anon_sym_DOLLARevaltype] = ACTIONS(1497), + [sym_real_literal] = ACTIONS(1499), }, [374] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), [sym_line_comment] = STATE(374), [sym_doc_comment] = STATE(374), [sym_block_comment] = STATE(374), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1303), - [sym__constant_expr] = STATE(1696), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(1360), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [sym_ident] = ACTIONS(1501), + [sym_integer_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1503), + [anon_sym_BQUOTE] = ACTIONS(1503), + [sym_bytes_literal] = ACTIONS(1503), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1501), + [sym_at_ident] = ACTIONS(1503), + [sym_hash_ident] = ACTIONS(1503), + [sym_type_ident] = ACTIONS(1503), + [sym_ct_type_ident] = ACTIONS(1503), + [sym_const_ident] = ACTIONS(1501), + [sym_builtin] = ACTIONS(1503), + [anon_sym_LPAREN] = ACTIONS(1503), + [anon_sym_AMP] = ACTIONS(1501), + [anon_sym_static] = ACTIONS(1501), + [anon_sym_tlocal] = ACTIONS(1501), + [anon_sym_SEMI] = ACTIONS(1503), + [anon_sym_fn] = ACTIONS(1501), + [anon_sym_LBRACE] = ACTIONS(1501), + [anon_sym_RBRACE] = ACTIONS(1503), + [anon_sym_const] = ACTIONS(1501), + [anon_sym_var] = ACTIONS(1501), + [anon_sym_return] = ACTIONS(1501), + [anon_sym_continue] = ACTIONS(1501), + [anon_sym_break] = ACTIONS(1501), + [anon_sym_defer] = ACTIONS(1501), + [anon_sym_assert] = ACTIONS(1501), + [anon_sym_case] = ACTIONS(1501), + [anon_sym_default] = ACTIONS(1501), + [anon_sym_nextcase] = ACTIONS(1501), + [anon_sym_switch] = ACTIONS(1501), + [anon_sym_AMP_AMP] = ACTIONS(1503), + [anon_sym_if] = ACTIONS(1501), + [anon_sym_for] = ACTIONS(1501), + [anon_sym_foreach] = ACTIONS(1501), + [anon_sym_foreach_r] = ACTIONS(1501), + [anon_sym_while] = ACTIONS(1501), + [anon_sym_do] = ACTIONS(1501), + [anon_sym_int] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_asm] = ACTIONS(1501), + [anon_sym_DOLLARassert] = ACTIONS(1501), + [anon_sym_DOLLARerror] = ACTIONS(1501), + [anon_sym_DOLLARecho] = ACTIONS(1501), + [anon_sym_DOLLARif] = ACTIONS(1501), + [anon_sym_DOLLARswitch] = ACTIONS(1501), + [anon_sym_DOLLARfor] = ACTIONS(1501), + [anon_sym_DOLLARforeach] = ACTIONS(1501), + [anon_sym_DOLLARalignof] = ACTIONS(1501), + [anon_sym_DOLLARextnameof] = ACTIONS(1501), + [anon_sym_DOLLARnameof] = ACTIONS(1501), + [anon_sym_DOLLARoffsetof] = ACTIONS(1501), + [anon_sym_DOLLARqnameof] = ACTIONS(1501), + [anon_sym_DOLLARvaconst] = ACTIONS(1501), + [anon_sym_DOLLARvaarg] = ACTIONS(1501), + [anon_sym_DOLLARvaref] = ACTIONS(1501), + [anon_sym_DOLLARvaexpr] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1501), + [anon_sym_false] = ACTIONS(1501), + [anon_sym_null] = ACTIONS(1501), + [anon_sym_DOLLARvacount] = ACTIONS(1501), + [anon_sym_DOLLARappend] = ACTIONS(1501), + [anon_sym_DOLLARconcat] = ACTIONS(1501), + [anon_sym_DOLLAReval] = ACTIONS(1501), + [anon_sym_DOLLARis_const] = ACTIONS(1501), + [anon_sym_DOLLARsizeof] = ACTIONS(1501), + [anon_sym_DOLLARstringify] = ACTIONS(1501), + [anon_sym_DOLLARand] = ACTIONS(1501), + [anon_sym_DOLLARdefined] = ACTIONS(1501), + [anon_sym_DOLLARembed] = ACTIONS(1501), + [anon_sym_DOLLARor] = ACTIONS(1501), + [anon_sym_DOLLARfeature] = ACTIONS(1501), + [anon_sym_DOLLARassignable] = ACTIONS(1501), + [anon_sym_BANG] = ACTIONS(1503), + [anon_sym_TILDE] = ACTIONS(1503), + [anon_sym_PLUS_PLUS] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1503), + [anon_sym_typeid] = ACTIONS(1501), + [anon_sym_LBRACE_PIPE] = ACTIONS(1503), + [anon_sym_PIPE_RBRACE] = ACTIONS(1503), + [anon_sym_void] = ACTIONS(1501), + [anon_sym_bool] = ACTIONS(1501), + [anon_sym_char] = ACTIONS(1501), + [anon_sym_ichar] = ACTIONS(1501), + [anon_sym_short] = ACTIONS(1501), + [anon_sym_ushort] = ACTIONS(1501), + [anon_sym_uint] = ACTIONS(1501), + [anon_sym_long] = ACTIONS(1501), + [anon_sym_ulong] = ACTIONS(1501), + [anon_sym_int128] = ACTIONS(1501), + [anon_sym_uint128] = ACTIONS(1501), + [anon_sym_float] = ACTIONS(1501), + [anon_sym_double] = ACTIONS(1501), + [anon_sym_float16] = ACTIONS(1501), + [anon_sym_bfloat16] = ACTIONS(1501), + [anon_sym_float128] = ACTIONS(1501), + [anon_sym_iptr] = ACTIONS(1501), + [anon_sym_uptr] = ACTIONS(1501), + [anon_sym_isz] = ACTIONS(1501), + [anon_sym_usz] = ACTIONS(1501), + [anon_sym_anyfault] = ACTIONS(1501), + [anon_sym_any] = ACTIONS(1501), + [anon_sym_DOLLARtypeof] = ACTIONS(1501), + [anon_sym_DOLLARtypefrom] = ACTIONS(1501), + [anon_sym_DOLLARvatype] = ACTIONS(1501), + [anon_sym_DOLLARevaltype] = ACTIONS(1501), + [sym_real_literal] = ACTIONS(1503), }, [375] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), [sym_line_comment] = STATE(375), [sym_doc_comment] = STATE(375), [sym_block_comment] = STATE(375), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1301), - [sym__constant_expr] = STATE(1698), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1083), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1224), - [sym_lambda_expr] = STATE(1224), - [sym_elvis_orelse_expr] = STATE(1224), - [sym_suffix_expr] = STATE(1224), - [sym_cast_expr] = STATE(1207), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1207), - [sym_binary_expr] = STATE(1207), - [sym_call_expr] = STATE(1089), - [sym_update_expr] = STATE(1089), - [sym_rethrow_expr] = STATE(1089), - [sym_trailing_generic_expr] = STATE(1089), - [sym_subscript_expr] = STATE(1089), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [sym_ident] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1507), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1507), + [anon_sym_BQUOTE] = ACTIONS(1507), + [sym_bytes_literal] = ACTIONS(1507), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1505), + [sym_at_ident] = ACTIONS(1507), + [sym_hash_ident] = ACTIONS(1507), + [sym_type_ident] = ACTIONS(1507), + [sym_ct_type_ident] = ACTIONS(1507), + [sym_const_ident] = ACTIONS(1505), + [sym_builtin] = ACTIONS(1507), + [anon_sym_LPAREN] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_static] = ACTIONS(1505), + [anon_sym_tlocal] = ACTIONS(1505), + [anon_sym_SEMI] = ACTIONS(1507), + [anon_sym_fn] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_RBRACE] = ACTIONS(1507), + [anon_sym_const] = ACTIONS(1505), + [anon_sym_var] = ACTIONS(1505), + [anon_sym_return] = ACTIONS(1505), + [anon_sym_continue] = ACTIONS(1505), + [anon_sym_break] = ACTIONS(1505), + [anon_sym_defer] = ACTIONS(1505), + [anon_sym_assert] = ACTIONS(1505), + [anon_sym_case] = ACTIONS(1505), + [anon_sym_default] = ACTIONS(1505), + [anon_sym_nextcase] = ACTIONS(1505), + [anon_sym_switch] = ACTIONS(1505), + [anon_sym_AMP_AMP] = ACTIONS(1507), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_for] = ACTIONS(1505), + [anon_sym_foreach] = ACTIONS(1505), + [anon_sym_foreach_r] = ACTIONS(1505), + [anon_sym_while] = ACTIONS(1505), + [anon_sym_do] = ACTIONS(1505), + [anon_sym_int] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1505), + [anon_sym_DASH] = ACTIONS(1505), + [anon_sym_STAR] = ACTIONS(1507), + [anon_sym_asm] = ACTIONS(1505), + [anon_sym_DOLLARassert] = ACTIONS(1505), + [anon_sym_DOLLARerror] = ACTIONS(1505), + [anon_sym_DOLLARecho] = ACTIONS(1505), + [anon_sym_DOLLARif] = ACTIONS(1505), + [anon_sym_DOLLARswitch] = ACTIONS(1505), + [anon_sym_DOLLARfor] = ACTIONS(1505), + [anon_sym_DOLLARforeach] = ACTIONS(1505), + [anon_sym_DOLLARalignof] = ACTIONS(1505), + [anon_sym_DOLLARextnameof] = ACTIONS(1505), + [anon_sym_DOLLARnameof] = ACTIONS(1505), + [anon_sym_DOLLARoffsetof] = ACTIONS(1505), + [anon_sym_DOLLARqnameof] = ACTIONS(1505), + [anon_sym_DOLLARvaconst] = ACTIONS(1505), + [anon_sym_DOLLARvaarg] = ACTIONS(1505), + [anon_sym_DOLLARvaref] = ACTIONS(1505), + [anon_sym_DOLLARvaexpr] = ACTIONS(1505), + [anon_sym_true] = ACTIONS(1505), + [anon_sym_false] = ACTIONS(1505), + [anon_sym_null] = ACTIONS(1505), + [anon_sym_DOLLARvacount] = ACTIONS(1505), + [anon_sym_DOLLARappend] = ACTIONS(1505), + [anon_sym_DOLLARconcat] = ACTIONS(1505), + [anon_sym_DOLLAReval] = ACTIONS(1505), + [anon_sym_DOLLARis_const] = ACTIONS(1505), + [anon_sym_DOLLARsizeof] = ACTIONS(1505), + [anon_sym_DOLLARstringify] = ACTIONS(1505), + [anon_sym_DOLLARand] = ACTIONS(1505), + [anon_sym_DOLLARdefined] = ACTIONS(1505), + [anon_sym_DOLLARembed] = ACTIONS(1505), + [anon_sym_DOLLARor] = ACTIONS(1505), + [anon_sym_DOLLARfeature] = ACTIONS(1505), + [anon_sym_DOLLARassignable] = ACTIONS(1505), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_TILDE] = ACTIONS(1507), + [anon_sym_PLUS_PLUS] = ACTIONS(1507), + [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_typeid] = ACTIONS(1505), + [anon_sym_LBRACE_PIPE] = ACTIONS(1507), + [anon_sym_PIPE_RBRACE] = ACTIONS(1507), + [anon_sym_void] = ACTIONS(1505), + [anon_sym_bool] = ACTIONS(1505), + [anon_sym_char] = ACTIONS(1505), + [anon_sym_ichar] = ACTIONS(1505), + [anon_sym_short] = ACTIONS(1505), + [anon_sym_ushort] = ACTIONS(1505), + [anon_sym_uint] = ACTIONS(1505), + [anon_sym_long] = ACTIONS(1505), + [anon_sym_ulong] = ACTIONS(1505), + [anon_sym_int128] = ACTIONS(1505), + [anon_sym_uint128] = ACTIONS(1505), + [anon_sym_float] = ACTIONS(1505), + [anon_sym_double] = ACTIONS(1505), + [anon_sym_float16] = ACTIONS(1505), + [anon_sym_bfloat16] = ACTIONS(1505), + [anon_sym_float128] = ACTIONS(1505), + [anon_sym_iptr] = ACTIONS(1505), + [anon_sym_uptr] = ACTIONS(1505), + [anon_sym_isz] = ACTIONS(1505), + [anon_sym_usz] = ACTIONS(1505), + [anon_sym_anyfault] = ACTIONS(1505), + [anon_sym_any] = ACTIONS(1505), + [anon_sym_DOLLARtypeof] = ACTIONS(1505), + [anon_sym_DOLLARtypefrom] = ACTIONS(1505), + [anon_sym_DOLLARvatype] = ACTIONS(1505), + [anon_sym_DOLLARevaltype] = ACTIONS(1505), + [sym_real_literal] = ACTIONS(1507), }, [376] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), [sym_line_comment] = STATE(376), [sym_doc_comment] = STATE(376), [sym_block_comment] = STATE(376), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1263), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [sym_ident] = ACTIONS(1509), + [sym_integer_literal] = ACTIONS(1511), + [anon_sym_SQUOTE] = ACTIONS(1511), + [anon_sym_DQUOTE] = ACTIONS(1511), + [anon_sym_BQUOTE] = ACTIONS(1511), + [sym_bytes_literal] = ACTIONS(1511), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1509), + [sym_at_ident] = ACTIONS(1511), + [sym_hash_ident] = ACTIONS(1511), + [sym_type_ident] = ACTIONS(1511), + [sym_ct_type_ident] = ACTIONS(1511), + [sym_const_ident] = ACTIONS(1509), + [sym_builtin] = ACTIONS(1511), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_tlocal] = ACTIONS(1509), + [anon_sym_SEMI] = ACTIONS(1511), + [anon_sym_fn] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1509), + [anon_sym_RBRACE] = ACTIONS(1511), + [anon_sym_const] = ACTIONS(1509), + [anon_sym_var] = ACTIONS(1509), + [anon_sym_return] = ACTIONS(1509), + [anon_sym_continue] = ACTIONS(1509), + [anon_sym_break] = ACTIONS(1509), + [anon_sym_defer] = ACTIONS(1509), + [anon_sym_assert] = ACTIONS(1509), + [anon_sym_case] = ACTIONS(1509), + [anon_sym_default] = ACTIONS(1509), + [anon_sym_nextcase] = ACTIONS(1509), + [anon_sym_switch] = ACTIONS(1509), + [anon_sym_AMP_AMP] = ACTIONS(1511), + [anon_sym_if] = ACTIONS(1509), + [anon_sym_for] = ACTIONS(1509), + [anon_sym_foreach] = ACTIONS(1509), + [anon_sym_foreach_r] = ACTIONS(1509), + [anon_sym_while] = ACTIONS(1509), + [anon_sym_do] = ACTIONS(1509), + [anon_sym_int] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(1511), + [anon_sym_asm] = ACTIONS(1509), + [anon_sym_DOLLARassert] = ACTIONS(1509), + [anon_sym_DOLLARerror] = ACTIONS(1509), + [anon_sym_DOLLARecho] = ACTIONS(1509), + [anon_sym_DOLLARif] = ACTIONS(1509), + [anon_sym_DOLLARswitch] = ACTIONS(1509), + [anon_sym_DOLLARfor] = ACTIONS(1509), + [anon_sym_DOLLARforeach] = ACTIONS(1509), + [anon_sym_DOLLARalignof] = ACTIONS(1509), + [anon_sym_DOLLARextnameof] = ACTIONS(1509), + [anon_sym_DOLLARnameof] = ACTIONS(1509), + [anon_sym_DOLLARoffsetof] = ACTIONS(1509), + [anon_sym_DOLLARqnameof] = ACTIONS(1509), + [anon_sym_DOLLARvaconst] = ACTIONS(1509), + [anon_sym_DOLLARvaarg] = ACTIONS(1509), + [anon_sym_DOLLARvaref] = ACTIONS(1509), + [anon_sym_DOLLARvaexpr] = ACTIONS(1509), + [anon_sym_true] = ACTIONS(1509), + [anon_sym_false] = ACTIONS(1509), + [anon_sym_null] = ACTIONS(1509), + [anon_sym_DOLLARvacount] = ACTIONS(1509), + [anon_sym_DOLLARappend] = ACTIONS(1509), + [anon_sym_DOLLARconcat] = ACTIONS(1509), + [anon_sym_DOLLAReval] = ACTIONS(1509), + [anon_sym_DOLLARis_const] = ACTIONS(1509), + [anon_sym_DOLLARsizeof] = ACTIONS(1509), + [anon_sym_DOLLARstringify] = ACTIONS(1509), + [anon_sym_DOLLARand] = ACTIONS(1509), + [anon_sym_DOLLARdefined] = ACTIONS(1509), + [anon_sym_DOLLARembed] = ACTIONS(1509), + [anon_sym_DOLLARor] = ACTIONS(1509), + [anon_sym_DOLLARfeature] = ACTIONS(1509), + [anon_sym_DOLLARassignable] = ACTIONS(1509), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_PLUS_PLUS] = ACTIONS(1511), + [anon_sym_DASH_DASH] = ACTIONS(1511), + [anon_sym_typeid] = ACTIONS(1509), + [anon_sym_LBRACE_PIPE] = ACTIONS(1511), + [anon_sym_PIPE_RBRACE] = ACTIONS(1511), + [anon_sym_void] = ACTIONS(1509), + [anon_sym_bool] = ACTIONS(1509), + [anon_sym_char] = ACTIONS(1509), + [anon_sym_ichar] = ACTIONS(1509), + [anon_sym_short] = ACTIONS(1509), + [anon_sym_ushort] = ACTIONS(1509), + [anon_sym_uint] = ACTIONS(1509), + [anon_sym_long] = ACTIONS(1509), + [anon_sym_ulong] = ACTIONS(1509), + [anon_sym_int128] = ACTIONS(1509), + [anon_sym_uint128] = ACTIONS(1509), + [anon_sym_float] = ACTIONS(1509), + [anon_sym_double] = ACTIONS(1509), + [anon_sym_float16] = ACTIONS(1509), + [anon_sym_bfloat16] = ACTIONS(1509), + [anon_sym_float128] = ACTIONS(1509), + [anon_sym_iptr] = ACTIONS(1509), + [anon_sym_uptr] = ACTIONS(1509), + [anon_sym_isz] = ACTIONS(1509), + [anon_sym_usz] = ACTIONS(1509), + [anon_sym_anyfault] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_DOLLARtypeof] = ACTIONS(1509), + [anon_sym_DOLLARtypefrom] = ACTIONS(1509), + [anon_sym_DOLLARvatype] = ACTIONS(1509), + [anon_sym_DOLLARevaltype] = ACTIONS(1509), + [sym_real_literal] = ACTIONS(1511), }, [377] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), [sym_line_comment] = STATE(377), [sym_doc_comment] = STATE(377), [sym_block_comment] = STATE(377), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1268), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [sym_ident] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1515), + [anon_sym_SQUOTE] = ACTIONS(1515), + [anon_sym_DQUOTE] = ACTIONS(1515), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_bytes_literal] = ACTIONS(1515), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1513), + [sym_at_ident] = ACTIONS(1515), + [sym_hash_ident] = ACTIONS(1515), + [sym_type_ident] = ACTIONS(1515), + [sym_ct_type_ident] = ACTIONS(1515), + [sym_const_ident] = ACTIONS(1513), + [sym_builtin] = ACTIONS(1515), + [anon_sym_LPAREN] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1513), + [anon_sym_static] = ACTIONS(1513), + [anon_sym_tlocal] = ACTIONS(1513), + [anon_sym_SEMI] = ACTIONS(1515), + [anon_sym_fn] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1513), + [anon_sym_RBRACE] = ACTIONS(1515), + [anon_sym_const] = ACTIONS(1513), + [anon_sym_var] = ACTIONS(1513), + [anon_sym_return] = ACTIONS(1513), + [anon_sym_continue] = ACTIONS(1513), + [anon_sym_break] = ACTIONS(1513), + [anon_sym_defer] = ACTIONS(1513), + [anon_sym_assert] = ACTIONS(1513), + [anon_sym_case] = ACTIONS(1513), + [anon_sym_default] = ACTIONS(1513), + [anon_sym_nextcase] = ACTIONS(1513), + [anon_sym_switch] = ACTIONS(1513), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [anon_sym_if] = ACTIONS(1513), + [anon_sym_for] = ACTIONS(1513), + [anon_sym_foreach] = ACTIONS(1513), + [anon_sym_foreach_r] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1513), + [anon_sym_do] = ACTIONS(1513), + [anon_sym_int] = ACTIONS(1513), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(1515), + [anon_sym_asm] = ACTIONS(1513), + [anon_sym_DOLLARassert] = ACTIONS(1513), + [anon_sym_DOLLARerror] = ACTIONS(1513), + [anon_sym_DOLLARecho] = ACTIONS(1513), + [anon_sym_DOLLARif] = ACTIONS(1513), + [anon_sym_DOLLARswitch] = ACTIONS(1513), + [anon_sym_DOLLARfor] = ACTIONS(1513), + [anon_sym_DOLLARforeach] = ACTIONS(1513), + [anon_sym_DOLLARalignof] = ACTIONS(1513), + [anon_sym_DOLLARextnameof] = ACTIONS(1513), + [anon_sym_DOLLARnameof] = ACTIONS(1513), + [anon_sym_DOLLARoffsetof] = ACTIONS(1513), + [anon_sym_DOLLARqnameof] = ACTIONS(1513), + [anon_sym_DOLLARvaconst] = ACTIONS(1513), + [anon_sym_DOLLARvaarg] = ACTIONS(1513), + [anon_sym_DOLLARvaref] = ACTIONS(1513), + [anon_sym_DOLLARvaexpr] = ACTIONS(1513), + [anon_sym_true] = ACTIONS(1513), + [anon_sym_false] = ACTIONS(1513), + [anon_sym_null] = ACTIONS(1513), + [anon_sym_DOLLARvacount] = ACTIONS(1513), + [anon_sym_DOLLARappend] = ACTIONS(1513), + [anon_sym_DOLLARconcat] = ACTIONS(1513), + [anon_sym_DOLLAReval] = ACTIONS(1513), + [anon_sym_DOLLARis_const] = ACTIONS(1513), + [anon_sym_DOLLARsizeof] = ACTIONS(1513), + [anon_sym_DOLLARstringify] = ACTIONS(1513), + [anon_sym_DOLLARand] = ACTIONS(1513), + [anon_sym_DOLLARdefined] = ACTIONS(1513), + [anon_sym_DOLLARembed] = ACTIONS(1513), + [anon_sym_DOLLARor] = ACTIONS(1513), + [anon_sym_DOLLARfeature] = ACTIONS(1513), + [anon_sym_DOLLARassignable] = ACTIONS(1513), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_typeid] = ACTIONS(1513), + [anon_sym_LBRACE_PIPE] = ACTIONS(1515), + [anon_sym_PIPE_RBRACE] = ACTIONS(1515), + [anon_sym_void] = ACTIONS(1513), + [anon_sym_bool] = ACTIONS(1513), + [anon_sym_char] = ACTIONS(1513), + [anon_sym_ichar] = ACTIONS(1513), + [anon_sym_short] = ACTIONS(1513), + [anon_sym_ushort] = ACTIONS(1513), + [anon_sym_uint] = ACTIONS(1513), + [anon_sym_long] = ACTIONS(1513), + [anon_sym_ulong] = ACTIONS(1513), + [anon_sym_int128] = ACTIONS(1513), + [anon_sym_uint128] = ACTIONS(1513), + [anon_sym_float] = ACTIONS(1513), + [anon_sym_double] = ACTIONS(1513), + [anon_sym_float16] = ACTIONS(1513), + [anon_sym_bfloat16] = ACTIONS(1513), + [anon_sym_float128] = ACTIONS(1513), + [anon_sym_iptr] = ACTIONS(1513), + [anon_sym_uptr] = ACTIONS(1513), + [anon_sym_isz] = ACTIONS(1513), + [anon_sym_usz] = ACTIONS(1513), + [anon_sym_anyfault] = ACTIONS(1513), + [anon_sym_any] = ACTIONS(1513), + [anon_sym_DOLLARtypeof] = ACTIONS(1513), + [anon_sym_DOLLARtypefrom] = ACTIONS(1513), + [anon_sym_DOLLARvatype] = ACTIONS(1513), + [anon_sym_DOLLARevaltype] = ACTIONS(1513), + [sym_real_literal] = ACTIONS(1515), }, [378] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), [sym_line_comment] = STATE(378), [sym_doc_comment] = STATE(378), [sym_block_comment] = STATE(378), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1262), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [sym_ident] = ACTIONS(1517), + [sym_integer_literal] = ACTIONS(1519), + [anon_sym_SQUOTE] = ACTIONS(1519), + [anon_sym_DQUOTE] = ACTIONS(1519), + [anon_sym_BQUOTE] = ACTIONS(1519), + [sym_bytes_literal] = ACTIONS(1519), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1517), + [sym_at_ident] = ACTIONS(1519), + [sym_hash_ident] = ACTIONS(1519), + [sym_type_ident] = ACTIONS(1519), + [sym_ct_type_ident] = ACTIONS(1519), + [sym_const_ident] = ACTIONS(1517), + [sym_builtin] = ACTIONS(1519), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_static] = ACTIONS(1517), + [anon_sym_tlocal] = ACTIONS(1517), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_fn] = ACTIONS(1517), + [anon_sym_LBRACE] = ACTIONS(1517), + [anon_sym_RBRACE] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(1517), + [anon_sym_var] = ACTIONS(1517), + [anon_sym_return] = ACTIONS(1517), + [anon_sym_continue] = ACTIONS(1517), + [anon_sym_break] = ACTIONS(1517), + [anon_sym_defer] = ACTIONS(1517), + [anon_sym_assert] = ACTIONS(1517), + [anon_sym_case] = ACTIONS(1517), + [anon_sym_default] = ACTIONS(1517), + [anon_sym_nextcase] = ACTIONS(1517), + [anon_sym_switch] = ACTIONS(1517), + [anon_sym_AMP_AMP] = ACTIONS(1519), + [anon_sym_if] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1517), + [anon_sym_foreach] = ACTIONS(1517), + [anon_sym_foreach_r] = ACTIONS(1517), + [anon_sym_while] = ACTIONS(1517), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_int] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1517), + [anon_sym_DASH] = ACTIONS(1517), + [anon_sym_STAR] = ACTIONS(1519), + [anon_sym_asm] = ACTIONS(1517), + [anon_sym_DOLLARassert] = ACTIONS(1517), + [anon_sym_DOLLARerror] = ACTIONS(1517), + [anon_sym_DOLLARecho] = ACTIONS(1517), + [anon_sym_DOLLARif] = ACTIONS(1517), + [anon_sym_DOLLARswitch] = ACTIONS(1517), + [anon_sym_DOLLARfor] = ACTIONS(1517), + [anon_sym_DOLLARforeach] = ACTIONS(1517), + [anon_sym_DOLLARalignof] = ACTIONS(1517), + [anon_sym_DOLLARextnameof] = ACTIONS(1517), + [anon_sym_DOLLARnameof] = ACTIONS(1517), + [anon_sym_DOLLARoffsetof] = ACTIONS(1517), + [anon_sym_DOLLARqnameof] = ACTIONS(1517), + [anon_sym_DOLLARvaconst] = ACTIONS(1517), + [anon_sym_DOLLARvaarg] = ACTIONS(1517), + [anon_sym_DOLLARvaref] = ACTIONS(1517), + [anon_sym_DOLLARvaexpr] = ACTIONS(1517), + [anon_sym_true] = ACTIONS(1517), + [anon_sym_false] = ACTIONS(1517), + [anon_sym_null] = ACTIONS(1517), + [anon_sym_DOLLARvacount] = ACTIONS(1517), + [anon_sym_DOLLARappend] = ACTIONS(1517), + [anon_sym_DOLLARconcat] = ACTIONS(1517), + [anon_sym_DOLLAReval] = ACTIONS(1517), + [anon_sym_DOLLARis_const] = ACTIONS(1517), + [anon_sym_DOLLARsizeof] = ACTIONS(1517), + [anon_sym_DOLLARstringify] = ACTIONS(1517), + [anon_sym_DOLLARand] = ACTIONS(1517), + [anon_sym_DOLLARdefined] = ACTIONS(1517), + [anon_sym_DOLLARembed] = ACTIONS(1517), + [anon_sym_DOLLARor] = ACTIONS(1517), + [anon_sym_DOLLARfeature] = ACTIONS(1517), + [anon_sym_DOLLARassignable] = ACTIONS(1517), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1519), + [anon_sym_PLUS_PLUS] = ACTIONS(1519), + [anon_sym_DASH_DASH] = ACTIONS(1519), + [anon_sym_typeid] = ACTIONS(1517), + [anon_sym_LBRACE_PIPE] = ACTIONS(1519), + [anon_sym_PIPE_RBRACE] = ACTIONS(1519), + [anon_sym_void] = ACTIONS(1517), + [anon_sym_bool] = ACTIONS(1517), + [anon_sym_char] = ACTIONS(1517), + [anon_sym_ichar] = ACTIONS(1517), + [anon_sym_short] = ACTIONS(1517), + [anon_sym_ushort] = ACTIONS(1517), + [anon_sym_uint] = ACTIONS(1517), + [anon_sym_long] = ACTIONS(1517), + [anon_sym_ulong] = ACTIONS(1517), + [anon_sym_int128] = ACTIONS(1517), + [anon_sym_uint128] = ACTIONS(1517), + [anon_sym_float] = ACTIONS(1517), + [anon_sym_double] = ACTIONS(1517), + [anon_sym_float16] = ACTIONS(1517), + [anon_sym_bfloat16] = ACTIONS(1517), + [anon_sym_float128] = ACTIONS(1517), + [anon_sym_iptr] = ACTIONS(1517), + [anon_sym_uptr] = ACTIONS(1517), + [anon_sym_isz] = ACTIONS(1517), + [anon_sym_usz] = ACTIONS(1517), + [anon_sym_anyfault] = ACTIONS(1517), + [anon_sym_any] = ACTIONS(1517), + [anon_sym_DOLLARtypeof] = ACTIONS(1517), + [anon_sym_DOLLARtypefrom] = ACTIONS(1517), + [anon_sym_DOLLARvatype] = ACTIONS(1517), + [anon_sym_DOLLARevaltype] = ACTIONS(1517), + [sym_real_literal] = ACTIONS(1519), }, [379] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), [sym_line_comment] = STATE(379), [sym_doc_comment] = STATE(379), [sym_block_comment] = STATE(379), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1303), - [sym__constant_expr] = STATE(1735), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [sym_ident] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1523), + [anon_sym_SQUOTE] = ACTIONS(1523), + [anon_sym_DQUOTE] = ACTIONS(1523), + [anon_sym_BQUOTE] = ACTIONS(1523), + [sym_bytes_literal] = ACTIONS(1523), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1521), + [sym_at_ident] = ACTIONS(1523), + [sym_hash_ident] = ACTIONS(1523), + [sym_type_ident] = ACTIONS(1523), + [sym_ct_type_ident] = ACTIONS(1523), + [sym_const_ident] = ACTIONS(1521), + [sym_builtin] = ACTIONS(1523), + [anon_sym_LPAREN] = ACTIONS(1523), + [anon_sym_AMP] = ACTIONS(1521), + [anon_sym_static] = ACTIONS(1521), + [anon_sym_tlocal] = ACTIONS(1521), + [anon_sym_SEMI] = ACTIONS(1523), + [anon_sym_fn] = ACTIONS(1521), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_RBRACE] = ACTIONS(1523), + [anon_sym_const] = ACTIONS(1521), + [anon_sym_var] = ACTIONS(1521), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_continue] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1521), + [anon_sym_defer] = ACTIONS(1521), + [anon_sym_assert] = ACTIONS(1521), + [anon_sym_case] = ACTIONS(1521), + [anon_sym_default] = ACTIONS(1521), + [anon_sym_nextcase] = ACTIONS(1521), + [anon_sym_switch] = ACTIONS(1521), + [anon_sym_AMP_AMP] = ACTIONS(1523), + [anon_sym_if] = ACTIONS(1521), + [anon_sym_for] = ACTIONS(1521), + [anon_sym_foreach] = ACTIONS(1521), + [anon_sym_foreach_r] = ACTIONS(1521), + [anon_sym_while] = ACTIONS(1521), + [anon_sym_do] = ACTIONS(1521), + [anon_sym_int] = ACTIONS(1521), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), + [anon_sym_asm] = ACTIONS(1521), + [anon_sym_DOLLARassert] = ACTIONS(1521), + [anon_sym_DOLLARerror] = ACTIONS(1521), + [anon_sym_DOLLARecho] = ACTIONS(1521), + [anon_sym_DOLLARif] = ACTIONS(1521), + [anon_sym_DOLLARswitch] = ACTIONS(1521), + [anon_sym_DOLLARfor] = ACTIONS(1521), + [anon_sym_DOLLARforeach] = ACTIONS(1521), + [anon_sym_DOLLARalignof] = ACTIONS(1521), + [anon_sym_DOLLARextnameof] = ACTIONS(1521), + [anon_sym_DOLLARnameof] = ACTIONS(1521), + [anon_sym_DOLLARoffsetof] = ACTIONS(1521), + [anon_sym_DOLLARqnameof] = ACTIONS(1521), + [anon_sym_DOLLARvaconst] = ACTIONS(1521), + [anon_sym_DOLLARvaarg] = ACTIONS(1521), + [anon_sym_DOLLARvaref] = ACTIONS(1521), + [anon_sym_DOLLARvaexpr] = ACTIONS(1521), + [anon_sym_true] = ACTIONS(1521), + [anon_sym_false] = ACTIONS(1521), + [anon_sym_null] = ACTIONS(1521), + [anon_sym_DOLLARvacount] = ACTIONS(1521), + [anon_sym_DOLLARappend] = ACTIONS(1521), + [anon_sym_DOLLARconcat] = ACTIONS(1521), + [anon_sym_DOLLAReval] = ACTIONS(1521), + [anon_sym_DOLLARis_const] = ACTIONS(1521), + [anon_sym_DOLLARsizeof] = ACTIONS(1521), + [anon_sym_DOLLARstringify] = ACTIONS(1521), + [anon_sym_DOLLARand] = ACTIONS(1521), + [anon_sym_DOLLARdefined] = ACTIONS(1521), + [anon_sym_DOLLARembed] = ACTIONS(1521), + [anon_sym_DOLLARor] = ACTIONS(1521), + [anon_sym_DOLLARfeature] = ACTIONS(1521), + [anon_sym_DOLLARassignable] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1523), + [anon_sym_TILDE] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_typeid] = ACTIONS(1521), + [anon_sym_LBRACE_PIPE] = ACTIONS(1523), + [anon_sym_PIPE_RBRACE] = ACTIONS(1523), + [anon_sym_void] = ACTIONS(1521), + [anon_sym_bool] = ACTIONS(1521), + [anon_sym_char] = ACTIONS(1521), + [anon_sym_ichar] = ACTIONS(1521), + [anon_sym_short] = ACTIONS(1521), + [anon_sym_ushort] = ACTIONS(1521), + [anon_sym_uint] = ACTIONS(1521), + [anon_sym_long] = ACTIONS(1521), + [anon_sym_ulong] = ACTIONS(1521), + [anon_sym_int128] = ACTIONS(1521), + [anon_sym_uint128] = ACTIONS(1521), + [anon_sym_float] = ACTIONS(1521), + [anon_sym_double] = ACTIONS(1521), + [anon_sym_float16] = ACTIONS(1521), + [anon_sym_bfloat16] = ACTIONS(1521), + [anon_sym_float128] = ACTIONS(1521), + [anon_sym_iptr] = ACTIONS(1521), + [anon_sym_uptr] = ACTIONS(1521), + [anon_sym_isz] = ACTIONS(1521), + [anon_sym_usz] = ACTIONS(1521), + [anon_sym_anyfault] = ACTIONS(1521), + [anon_sym_any] = ACTIONS(1521), + [anon_sym_DOLLARtypeof] = ACTIONS(1521), + [anon_sym_DOLLARtypefrom] = ACTIONS(1521), + [anon_sym_DOLLARvatype] = ACTIONS(1521), + [anon_sym_DOLLARevaltype] = ACTIONS(1521), + [sym_real_literal] = ACTIONS(1523), }, [380] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), [sym_line_comment] = STATE(380), [sym_doc_comment] = STATE(380), [sym_block_comment] = STATE(380), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1236), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [sym_ident] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1527), + [anon_sym_SQUOTE] = ACTIONS(1527), + [anon_sym_DQUOTE] = ACTIONS(1527), + [anon_sym_BQUOTE] = ACTIONS(1527), + [sym_bytes_literal] = ACTIONS(1527), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1525), + [sym_at_ident] = ACTIONS(1527), + [sym_hash_ident] = ACTIONS(1527), + [sym_type_ident] = ACTIONS(1527), + [sym_ct_type_ident] = ACTIONS(1527), + [sym_const_ident] = ACTIONS(1525), + [sym_builtin] = ACTIONS(1527), + [anon_sym_LPAREN] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_static] = ACTIONS(1525), + [anon_sym_tlocal] = ACTIONS(1525), + [anon_sym_SEMI] = ACTIONS(1527), + [anon_sym_fn] = ACTIONS(1525), + [anon_sym_LBRACE] = ACTIONS(1525), + [anon_sym_RBRACE] = ACTIONS(1527), + [anon_sym_const] = ACTIONS(1525), + [anon_sym_var] = ACTIONS(1525), + [anon_sym_return] = ACTIONS(1525), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_break] = ACTIONS(1525), + [anon_sym_defer] = ACTIONS(1525), + [anon_sym_assert] = ACTIONS(1525), + [anon_sym_case] = ACTIONS(1525), + [anon_sym_default] = ACTIONS(1525), + [anon_sym_nextcase] = ACTIONS(1525), + [anon_sym_switch] = ACTIONS(1525), + [anon_sym_AMP_AMP] = ACTIONS(1527), + [anon_sym_if] = ACTIONS(1525), + [anon_sym_for] = ACTIONS(1525), + [anon_sym_foreach] = ACTIONS(1525), + [anon_sym_foreach_r] = ACTIONS(1525), + [anon_sym_while] = ACTIONS(1525), + [anon_sym_do] = ACTIONS(1525), + [anon_sym_int] = ACTIONS(1525), + [anon_sym_PLUS] = ACTIONS(1525), + [anon_sym_DASH] = ACTIONS(1525), + [anon_sym_STAR] = ACTIONS(1527), + [anon_sym_asm] = ACTIONS(1525), + [anon_sym_DOLLARassert] = ACTIONS(1525), + [anon_sym_DOLLARerror] = ACTIONS(1525), + [anon_sym_DOLLARecho] = ACTIONS(1525), + [anon_sym_DOLLARif] = ACTIONS(1525), + [anon_sym_DOLLARswitch] = ACTIONS(1525), + [anon_sym_DOLLARfor] = ACTIONS(1525), + [anon_sym_DOLLARforeach] = ACTIONS(1525), + [anon_sym_DOLLARalignof] = ACTIONS(1525), + [anon_sym_DOLLARextnameof] = ACTIONS(1525), + [anon_sym_DOLLARnameof] = ACTIONS(1525), + [anon_sym_DOLLARoffsetof] = ACTIONS(1525), + [anon_sym_DOLLARqnameof] = ACTIONS(1525), + [anon_sym_DOLLARvaconst] = ACTIONS(1525), + [anon_sym_DOLLARvaarg] = ACTIONS(1525), + [anon_sym_DOLLARvaref] = ACTIONS(1525), + [anon_sym_DOLLARvaexpr] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(1525), + [anon_sym_false] = ACTIONS(1525), + [anon_sym_null] = ACTIONS(1525), + [anon_sym_DOLLARvacount] = ACTIONS(1525), + [anon_sym_DOLLARappend] = ACTIONS(1525), + [anon_sym_DOLLARconcat] = ACTIONS(1525), + [anon_sym_DOLLAReval] = ACTIONS(1525), + [anon_sym_DOLLARis_const] = ACTIONS(1525), + [anon_sym_DOLLARsizeof] = ACTIONS(1525), + [anon_sym_DOLLARstringify] = ACTIONS(1525), + [anon_sym_DOLLARand] = ACTIONS(1525), + [anon_sym_DOLLARdefined] = ACTIONS(1525), + [anon_sym_DOLLARembed] = ACTIONS(1525), + [anon_sym_DOLLARor] = ACTIONS(1525), + [anon_sym_DOLLARfeature] = ACTIONS(1525), + [anon_sym_DOLLARassignable] = ACTIONS(1525), + [anon_sym_BANG] = ACTIONS(1527), + [anon_sym_TILDE] = ACTIONS(1527), + [anon_sym_PLUS_PLUS] = ACTIONS(1527), + [anon_sym_DASH_DASH] = ACTIONS(1527), + [anon_sym_typeid] = ACTIONS(1525), + [anon_sym_LBRACE_PIPE] = ACTIONS(1527), + [anon_sym_PIPE_RBRACE] = ACTIONS(1527), + [anon_sym_void] = ACTIONS(1525), + [anon_sym_bool] = ACTIONS(1525), + [anon_sym_char] = ACTIONS(1525), + [anon_sym_ichar] = ACTIONS(1525), + [anon_sym_short] = ACTIONS(1525), + [anon_sym_ushort] = ACTIONS(1525), + [anon_sym_uint] = ACTIONS(1525), + [anon_sym_long] = ACTIONS(1525), + [anon_sym_ulong] = ACTIONS(1525), + [anon_sym_int128] = ACTIONS(1525), + [anon_sym_uint128] = ACTIONS(1525), + [anon_sym_float] = ACTIONS(1525), + [anon_sym_double] = ACTIONS(1525), + [anon_sym_float16] = ACTIONS(1525), + [anon_sym_bfloat16] = ACTIONS(1525), + [anon_sym_float128] = ACTIONS(1525), + [anon_sym_iptr] = ACTIONS(1525), + [anon_sym_uptr] = ACTIONS(1525), + [anon_sym_isz] = ACTIONS(1525), + [anon_sym_usz] = ACTIONS(1525), + [anon_sym_anyfault] = ACTIONS(1525), + [anon_sym_any] = ACTIONS(1525), + [anon_sym_DOLLARtypeof] = ACTIONS(1525), + [anon_sym_DOLLARtypefrom] = ACTIONS(1525), + [anon_sym_DOLLARvatype] = ACTIONS(1525), + [anon_sym_DOLLARevaltype] = ACTIONS(1525), + [sym_real_literal] = ACTIONS(1527), }, [381] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), [sym_line_comment] = STATE(381), [sym_doc_comment] = STATE(381), [sym_block_comment] = STATE(381), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1303), - [sym__constant_expr] = STATE(1736), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [sym_ident] = ACTIONS(1529), + [sym_integer_literal] = ACTIONS(1531), + [anon_sym_SQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [anon_sym_BQUOTE] = ACTIONS(1531), + [sym_bytes_literal] = ACTIONS(1531), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1529), + [sym_at_ident] = ACTIONS(1531), + [sym_hash_ident] = ACTIONS(1531), + [sym_type_ident] = ACTIONS(1531), + [sym_ct_type_ident] = ACTIONS(1531), + [sym_const_ident] = ACTIONS(1529), + [sym_builtin] = ACTIONS(1531), + [anon_sym_LPAREN] = ACTIONS(1531), + [anon_sym_AMP] = ACTIONS(1529), + [anon_sym_static] = ACTIONS(1529), + [anon_sym_tlocal] = ACTIONS(1529), + [anon_sym_SEMI] = ACTIONS(1531), + [anon_sym_fn] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1529), + [anon_sym_RBRACE] = ACTIONS(1531), + [anon_sym_const] = ACTIONS(1529), + [anon_sym_var] = ACTIONS(1529), + [anon_sym_return] = ACTIONS(1529), + [anon_sym_continue] = ACTIONS(1529), + [anon_sym_break] = ACTIONS(1529), + [anon_sym_defer] = ACTIONS(1529), + [anon_sym_assert] = ACTIONS(1529), + [anon_sym_case] = ACTIONS(1529), + [anon_sym_default] = ACTIONS(1529), + [anon_sym_nextcase] = ACTIONS(1529), + [anon_sym_switch] = ACTIONS(1529), + [anon_sym_AMP_AMP] = ACTIONS(1531), + [anon_sym_if] = ACTIONS(1529), + [anon_sym_for] = ACTIONS(1529), + [anon_sym_foreach] = ACTIONS(1529), + [anon_sym_foreach_r] = ACTIONS(1529), + [anon_sym_while] = ACTIONS(1529), + [anon_sym_do] = ACTIONS(1529), + [anon_sym_int] = ACTIONS(1529), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_STAR] = ACTIONS(1531), + [anon_sym_asm] = ACTIONS(1529), + [anon_sym_DOLLARassert] = ACTIONS(1529), + [anon_sym_DOLLARerror] = ACTIONS(1529), + [anon_sym_DOLLARecho] = ACTIONS(1529), + [anon_sym_DOLLARif] = ACTIONS(1529), + [anon_sym_DOLLARswitch] = ACTIONS(1529), + [anon_sym_DOLLARfor] = ACTIONS(1529), + [anon_sym_DOLLARforeach] = ACTIONS(1529), + [anon_sym_DOLLARalignof] = ACTIONS(1529), + [anon_sym_DOLLARextnameof] = ACTIONS(1529), + [anon_sym_DOLLARnameof] = ACTIONS(1529), + [anon_sym_DOLLARoffsetof] = ACTIONS(1529), + [anon_sym_DOLLARqnameof] = ACTIONS(1529), + [anon_sym_DOLLARvaconst] = ACTIONS(1529), + [anon_sym_DOLLARvaarg] = ACTIONS(1529), + [anon_sym_DOLLARvaref] = ACTIONS(1529), + [anon_sym_DOLLARvaexpr] = ACTIONS(1529), + [anon_sym_true] = ACTIONS(1529), + [anon_sym_false] = ACTIONS(1529), + [anon_sym_null] = ACTIONS(1529), + [anon_sym_DOLLARvacount] = ACTIONS(1529), + [anon_sym_DOLLARappend] = ACTIONS(1529), + [anon_sym_DOLLARconcat] = ACTIONS(1529), + [anon_sym_DOLLAReval] = ACTIONS(1529), + [anon_sym_DOLLARis_const] = ACTIONS(1529), + [anon_sym_DOLLARsizeof] = ACTIONS(1529), + [anon_sym_DOLLARstringify] = ACTIONS(1529), + [anon_sym_DOLLARand] = ACTIONS(1529), + [anon_sym_DOLLARdefined] = ACTIONS(1529), + [anon_sym_DOLLARembed] = ACTIONS(1529), + [anon_sym_DOLLARor] = ACTIONS(1529), + [anon_sym_DOLLARfeature] = ACTIONS(1529), + [anon_sym_DOLLARassignable] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1531), + [anon_sym_TILDE] = ACTIONS(1531), + [anon_sym_PLUS_PLUS] = ACTIONS(1531), + [anon_sym_DASH_DASH] = ACTIONS(1531), + [anon_sym_typeid] = ACTIONS(1529), + [anon_sym_LBRACE_PIPE] = ACTIONS(1531), + [anon_sym_PIPE_RBRACE] = ACTIONS(1531), + [anon_sym_void] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_ichar] = ACTIONS(1529), + [anon_sym_short] = ACTIONS(1529), + [anon_sym_ushort] = ACTIONS(1529), + [anon_sym_uint] = ACTIONS(1529), + [anon_sym_long] = ACTIONS(1529), + [anon_sym_ulong] = ACTIONS(1529), + [anon_sym_int128] = ACTIONS(1529), + [anon_sym_uint128] = ACTIONS(1529), + [anon_sym_float] = ACTIONS(1529), + [anon_sym_double] = ACTIONS(1529), + [anon_sym_float16] = ACTIONS(1529), + [anon_sym_bfloat16] = ACTIONS(1529), + [anon_sym_float128] = ACTIONS(1529), + [anon_sym_iptr] = ACTIONS(1529), + [anon_sym_uptr] = ACTIONS(1529), + [anon_sym_isz] = ACTIONS(1529), + [anon_sym_usz] = ACTIONS(1529), + [anon_sym_anyfault] = ACTIONS(1529), + [anon_sym_any] = ACTIONS(1529), + [anon_sym_DOLLARtypeof] = ACTIONS(1529), + [anon_sym_DOLLARtypefrom] = ACTIONS(1529), + [anon_sym_DOLLARvatype] = ACTIONS(1529), + [anon_sym_DOLLARevaltype] = ACTIONS(1529), + [sym_real_literal] = ACTIONS(1531), }, [382] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), [sym_line_comment] = STATE(382), [sym_doc_comment] = STATE(382), [sym_block_comment] = STATE(382), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1092), - [sym__constant_expr] = STATE(1999), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1033), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1132), - [sym_lambda_expr] = STATE(1132), - [sym_elvis_orelse_expr] = STATE(1132), - [sym_suffix_expr] = STATE(1132), - [sym_cast_expr] = STATE(1133), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1133), - [sym_binary_expr] = STATE(1133), - [sym_call_expr] = STATE(1032), - [sym_update_expr] = STATE(1032), - [sym_rethrow_expr] = STATE(1032), - [sym_trailing_generic_expr] = STATE(1032), - [sym_subscript_expr] = STATE(1032), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [sym_ident] = ACTIONS(1533), + [sym_integer_literal] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(1535), + [anon_sym_DQUOTE] = ACTIONS(1535), + [anon_sym_BQUOTE] = ACTIONS(1535), + [sym_bytes_literal] = ACTIONS(1535), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1533), + [sym_at_ident] = ACTIONS(1535), + [sym_hash_ident] = ACTIONS(1535), + [sym_type_ident] = ACTIONS(1535), + [sym_ct_type_ident] = ACTIONS(1535), + [sym_const_ident] = ACTIONS(1533), + [sym_builtin] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_AMP] = ACTIONS(1533), + [anon_sym_static] = ACTIONS(1533), + [anon_sym_tlocal] = ACTIONS(1533), + [anon_sym_SEMI] = ACTIONS(1535), + [anon_sym_fn] = ACTIONS(1533), + [anon_sym_LBRACE] = ACTIONS(1533), + [anon_sym_RBRACE] = ACTIONS(1535), + [anon_sym_const] = ACTIONS(1533), + [anon_sym_var] = ACTIONS(1533), + [anon_sym_return] = ACTIONS(1533), + [anon_sym_continue] = ACTIONS(1533), + [anon_sym_break] = ACTIONS(1533), + [anon_sym_defer] = ACTIONS(1533), + [anon_sym_assert] = ACTIONS(1533), + [anon_sym_case] = ACTIONS(1533), + [anon_sym_default] = ACTIONS(1533), + [anon_sym_nextcase] = ACTIONS(1533), + [anon_sym_switch] = ACTIONS(1533), + [anon_sym_AMP_AMP] = ACTIONS(1535), + [anon_sym_if] = ACTIONS(1533), + [anon_sym_for] = ACTIONS(1533), + [anon_sym_foreach] = ACTIONS(1533), + [anon_sym_foreach_r] = ACTIONS(1533), + [anon_sym_while] = ACTIONS(1533), + [anon_sym_do] = ACTIONS(1533), + [anon_sym_int] = ACTIONS(1533), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_STAR] = ACTIONS(1535), + [anon_sym_asm] = ACTIONS(1533), + [anon_sym_DOLLARassert] = ACTIONS(1533), + [anon_sym_DOLLARerror] = ACTIONS(1533), + [anon_sym_DOLLARecho] = ACTIONS(1533), + [anon_sym_DOLLARif] = ACTIONS(1533), + [anon_sym_DOLLARswitch] = ACTIONS(1533), + [anon_sym_DOLLARfor] = ACTIONS(1533), + [anon_sym_DOLLARforeach] = ACTIONS(1533), + [anon_sym_DOLLARalignof] = ACTIONS(1533), + [anon_sym_DOLLARextnameof] = ACTIONS(1533), + [anon_sym_DOLLARnameof] = ACTIONS(1533), + [anon_sym_DOLLARoffsetof] = ACTIONS(1533), + [anon_sym_DOLLARqnameof] = ACTIONS(1533), + [anon_sym_DOLLARvaconst] = ACTIONS(1533), + [anon_sym_DOLLARvaarg] = ACTIONS(1533), + [anon_sym_DOLLARvaref] = ACTIONS(1533), + [anon_sym_DOLLARvaexpr] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(1533), + [anon_sym_false] = ACTIONS(1533), + [anon_sym_null] = ACTIONS(1533), + [anon_sym_DOLLARvacount] = ACTIONS(1533), + [anon_sym_DOLLARappend] = ACTIONS(1533), + [anon_sym_DOLLARconcat] = ACTIONS(1533), + [anon_sym_DOLLAReval] = ACTIONS(1533), + [anon_sym_DOLLARis_const] = ACTIONS(1533), + [anon_sym_DOLLARsizeof] = ACTIONS(1533), + [anon_sym_DOLLARstringify] = ACTIONS(1533), + [anon_sym_DOLLARand] = ACTIONS(1533), + [anon_sym_DOLLARdefined] = ACTIONS(1533), + [anon_sym_DOLLARembed] = ACTIONS(1533), + [anon_sym_DOLLARor] = ACTIONS(1533), + [anon_sym_DOLLARfeature] = ACTIONS(1533), + [anon_sym_DOLLARassignable] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1535), + [anon_sym_TILDE] = ACTIONS(1535), + [anon_sym_PLUS_PLUS] = ACTIONS(1535), + [anon_sym_DASH_DASH] = ACTIONS(1535), + [anon_sym_typeid] = ACTIONS(1533), + [anon_sym_LBRACE_PIPE] = ACTIONS(1535), + [anon_sym_PIPE_RBRACE] = ACTIONS(1535), + [anon_sym_void] = ACTIONS(1533), + [anon_sym_bool] = ACTIONS(1533), + [anon_sym_char] = ACTIONS(1533), + [anon_sym_ichar] = ACTIONS(1533), + [anon_sym_short] = ACTIONS(1533), + [anon_sym_ushort] = ACTIONS(1533), + [anon_sym_uint] = ACTIONS(1533), + [anon_sym_long] = ACTIONS(1533), + [anon_sym_ulong] = ACTIONS(1533), + [anon_sym_int128] = ACTIONS(1533), + [anon_sym_uint128] = ACTIONS(1533), + [anon_sym_float] = ACTIONS(1533), + [anon_sym_double] = ACTIONS(1533), + [anon_sym_float16] = ACTIONS(1533), + [anon_sym_bfloat16] = ACTIONS(1533), + [anon_sym_float128] = ACTIONS(1533), + [anon_sym_iptr] = ACTIONS(1533), + [anon_sym_uptr] = ACTIONS(1533), + [anon_sym_isz] = ACTIONS(1533), + [anon_sym_usz] = ACTIONS(1533), + [anon_sym_anyfault] = ACTIONS(1533), + [anon_sym_any] = ACTIONS(1533), + [anon_sym_DOLLARtypeof] = ACTIONS(1533), + [anon_sym_DOLLARtypefrom] = ACTIONS(1533), + [anon_sym_DOLLARvatype] = ACTIONS(1533), + [anon_sym_DOLLARevaltype] = ACTIONS(1533), + [sym_real_literal] = ACTIONS(1535), }, [383] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), [sym_line_comment] = STATE(383), [sym_doc_comment] = STATE(383), [sym_block_comment] = STATE(383), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1249), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1445), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [sym_ident] = ACTIONS(1537), + [sym_integer_literal] = ACTIONS(1539), + [anon_sym_SQUOTE] = ACTIONS(1539), + [anon_sym_DQUOTE] = ACTIONS(1539), + [anon_sym_BQUOTE] = ACTIONS(1539), + [sym_bytes_literal] = ACTIONS(1539), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1537), + [sym_at_ident] = ACTIONS(1539), + [sym_hash_ident] = ACTIONS(1539), + [sym_type_ident] = ACTIONS(1539), + [sym_ct_type_ident] = ACTIONS(1539), + [sym_const_ident] = ACTIONS(1537), + [sym_builtin] = ACTIONS(1539), + [anon_sym_LPAREN] = ACTIONS(1539), + [anon_sym_AMP] = ACTIONS(1537), + [anon_sym_static] = ACTIONS(1537), + [anon_sym_tlocal] = ACTIONS(1537), + [anon_sym_SEMI] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1537), + [anon_sym_LBRACE] = ACTIONS(1537), + [anon_sym_RBRACE] = ACTIONS(1539), + [anon_sym_const] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(1537), + [anon_sym_return] = ACTIONS(1537), + [anon_sym_continue] = ACTIONS(1537), + [anon_sym_break] = ACTIONS(1537), + [anon_sym_defer] = ACTIONS(1537), + [anon_sym_assert] = ACTIONS(1537), + [anon_sym_case] = ACTIONS(1537), + [anon_sym_default] = ACTIONS(1537), + [anon_sym_nextcase] = ACTIONS(1537), + [anon_sym_switch] = ACTIONS(1537), + [anon_sym_AMP_AMP] = ACTIONS(1539), + [anon_sym_if] = ACTIONS(1537), + [anon_sym_for] = ACTIONS(1537), + [anon_sym_foreach] = ACTIONS(1537), + [anon_sym_foreach_r] = ACTIONS(1537), + [anon_sym_while] = ACTIONS(1537), + [anon_sym_do] = ACTIONS(1537), + [anon_sym_int] = ACTIONS(1537), + [anon_sym_PLUS] = ACTIONS(1537), + [anon_sym_DASH] = ACTIONS(1537), + [anon_sym_STAR] = ACTIONS(1539), + [anon_sym_asm] = ACTIONS(1537), + [anon_sym_DOLLARassert] = ACTIONS(1537), + [anon_sym_DOLLARerror] = ACTIONS(1537), + [anon_sym_DOLLARecho] = ACTIONS(1537), + [anon_sym_DOLLARif] = ACTIONS(1537), + [anon_sym_DOLLARswitch] = ACTIONS(1537), + [anon_sym_DOLLARfor] = ACTIONS(1537), + [anon_sym_DOLLARforeach] = ACTIONS(1537), + [anon_sym_DOLLARalignof] = ACTIONS(1537), + [anon_sym_DOLLARextnameof] = ACTIONS(1537), + [anon_sym_DOLLARnameof] = ACTIONS(1537), + [anon_sym_DOLLARoffsetof] = ACTIONS(1537), + [anon_sym_DOLLARqnameof] = ACTIONS(1537), + [anon_sym_DOLLARvaconst] = ACTIONS(1537), + [anon_sym_DOLLARvaarg] = ACTIONS(1537), + [anon_sym_DOLLARvaref] = ACTIONS(1537), + [anon_sym_DOLLARvaexpr] = ACTIONS(1537), + [anon_sym_true] = ACTIONS(1537), + [anon_sym_false] = ACTIONS(1537), + [anon_sym_null] = ACTIONS(1537), + [anon_sym_DOLLARvacount] = ACTIONS(1537), + [anon_sym_DOLLARappend] = ACTIONS(1537), + [anon_sym_DOLLARconcat] = ACTIONS(1537), + [anon_sym_DOLLAReval] = ACTIONS(1537), + [anon_sym_DOLLARis_const] = ACTIONS(1537), + [anon_sym_DOLLARsizeof] = ACTIONS(1537), + [anon_sym_DOLLARstringify] = ACTIONS(1537), + [anon_sym_DOLLARand] = ACTIONS(1537), + [anon_sym_DOLLARdefined] = ACTIONS(1537), + [anon_sym_DOLLARembed] = ACTIONS(1537), + [anon_sym_DOLLARor] = ACTIONS(1537), + [anon_sym_DOLLARfeature] = ACTIONS(1537), + [anon_sym_DOLLARassignable] = ACTIONS(1537), + [anon_sym_BANG] = ACTIONS(1539), + [anon_sym_TILDE] = ACTIONS(1539), + [anon_sym_PLUS_PLUS] = ACTIONS(1539), + [anon_sym_DASH_DASH] = ACTIONS(1539), + [anon_sym_typeid] = ACTIONS(1537), + [anon_sym_LBRACE_PIPE] = ACTIONS(1539), + [anon_sym_PIPE_RBRACE] = ACTIONS(1539), + [anon_sym_void] = ACTIONS(1537), + [anon_sym_bool] = ACTIONS(1537), + [anon_sym_char] = ACTIONS(1537), + [anon_sym_ichar] = ACTIONS(1537), + [anon_sym_short] = ACTIONS(1537), + [anon_sym_ushort] = ACTIONS(1537), + [anon_sym_uint] = ACTIONS(1537), + [anon_sym_long] = ACTIONS(1537), + [anon_sym_ulong] = ACTIONS(1537), + [anon_sym_int128] = ACTIONS(1537), + [anon_sym_uint128] = ACTIONS(1537), + [anon_sym_float] = ACTIONS(1537), + [anon_sym_double] = ACTIONS(1537), + [anon_sym_float16] = ACTIONS(1537), + [anon_sym_bfloat16] = ACTIONS(1537), + [anon_sym_float128] = ACTIONS(1537), + [anon_sym_iptr] = ACTIONS(1537), + [anon_sym_uptr] = ACTIONS(1537), + [anon_sym_isz] = ACTIONS(1537), + [anon_sym_usz] = ACTIONS(1537), + [anon_sym_anyfault] = ACTIONS(1537), + [anon_sym_any] = ACTIONS(1537), + [anon_sym_DOLLARtypeof] = ACTIONS(1537), + [anon_sym_DOLLARtypefrom] = ACTIONS(1537), + [anon_sym_DOLLARvatype] = ACTIONS(1537), + [anon_sym_DOLLARevaltype] = ACTIONS(1537), + [sym_real_literal] = ACTIONS(1539), }, [384] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), [sym_line_comment] = STATE(384), [sym_doc_comment] = STATE(384), [sym_block_comment] = STATE(384), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1645), - [sym__expr] = STATE(1264), - [sym__constant_expr] = STATE(2010), - [sym__relational_expr] = STATE(2374), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(350), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [sym_ident] = ACTIONS(1541), + [sym_integer_literal] = ACTIONS(1543), + [anon_sym_SQUOTE] = ACTIONS(1543), + [anon_sym_DQUOTE] = ACTIONS(1543), + [anon_sym_BQUOTE] = ACTIONS(1543), + [sym_bytes_literal] = ACTIONS(1543), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1541), + [sym_at_ident] = ACTIONS(1543), + [sym_hash_ident] = ACTIONS(1543), + [sym_type_ident] = ACTIONS(1543), + [sym_ct_type_ident] = ACTIONS(1543), + [sym_const_ident] = ACTIONS(1541), + [sym_builtin] = ACTIONS(1543), + [anon_sym_LPAREN] = ACTIONS(1543), + [anon_sym_AMP] = ACTIONS(1541), + [anon_sym_static] = ACTIONS(1541), + [anon_sym_tlocal] = ACTIONS(1541), + [anon_sym_SEMI] = ACTIONS(1543), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1541), + [anon_sym_RBRACE] = ACTIONS(1543), + [anon_sym_const] = ACTIONS(1541), + [anon_sym_var] = ACTIONS(1541), + [anon_sym_return] = ACTIONS(1541), + [anon_sym_continue] = ACTIONS(1541), + [anon_sym_break] = ACTIONS(1541), + [anon_sym_defer] = ACTIONS(1541), + [anon_sym_assert] = ACTIONS(1541), + [anon_sym_case] = ACTIONS(1541), + [anon_sym_default] = ACTIONS(1541), + [anon_sym_nextcase] = ACTIONS(1541), + [anon_sym_switch] = ACTIONS(1541), + [anon_sym_AMP_AMP] = ACTIONS(1543), + [anon_sym_if] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1541), + [anon_sym_foreach] = ACTIONS(1541), + [anon_sym_foreach_r] = ACTIONS(1541), + [anon_sym_while] = ACTIONS(1541), + [anon_sym_do] = ACTIONS(1541), + [anon_sym_int] = ACTIONS(1541), + [anon_sym_PLUS] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_asm] = ACTIONS(1541), + [anon_sym_DOLLARassert] = ACTIONS(1541), + [anon_sym_DOLLARerror] = ACTIONS(1541), + [anon_sym_DOLLARecho] = ACTIONS(1541), + [anon_sym_DOLLARif] = ACTIONS(1541), + [anon_sym_DOLLARswitch] = ACTIONS(1541), + [anon_sym_DOLLARfor] = ACTIONS(1541), + [anon_sym_DOLLARforeach] = ACTIONS(1541), + [anon_sym_DOLLARalignof] = ACTIONS(1541), + [anon_sym_DOLLARextnameof] = ACTIONS(1541), + [anon_sym_DOLLARnameof] = ACTIONS(1541), + [anon_sym_DOLLARoffsetof] = ACTIONS(1541), + [anon_sym_DOLLARqnameof] = ACTIONS(1541), + [anon_sym_DOLLARvaconst] = ACTIONS(1541), + [anon_sym_DOLLARvaarg] = ACTIONS(1541), + [anon_sym_DOLLARvaref] = ACTIONS(1541), + [anon_sym_DOLLARvaexpr] = ACTIONS(1541), + [anon_sym_true] = ACTIONS(1541), + [anon_sym_false] = ACTIONS(1541), + [anon_sym_null] = ACTIONS(1541), + [anon_sym_DOLLARvacount] = ACTIONS(1541), + [anon_sym_DOLLARappend] = ACTIONS(1541), + [anon_sym_DOLLARconcat] = ACTIONS(1541), + [anon_sym_DOLLAReval] = ACTIONS(1541), + [anon_sym_DOLLARis_const] = ACTIONS(1541), + [anon_sym_DOLLARsizeof] = ACTIONS(1541), + [anon_sym_DOLLARstringify] = ACTIONS(1541), + [anon_sym_DOLLARand] = ACTIONS(1541), + [anon_sym_DOLLARdefined] = ACTIONS(1541), + [anon_sym_DOLLARembed] = ACTIONS(1541), + [anon_sym_DOLLARor] = ACTIONS(1541), + [anon_sym_DOLLARfeature] = ACTIONS(1541), + [anon_sym_DOLLARassignable] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_PLUS_PLUS] = ACTIONS(1543), + [anon_sym_DASH_DASH] = ACTIONS(1543), + [anon_sym_typeid] = ACTIONS(1541), + [anon_sym_LBRACE_PIPE] = ACTIONS(1543), + [anon_sym_PIPE_RBRACE] = ACTIONS(1543), + [anon_sym_void] = ACTIONS(1541), + [anon_sym_bool] = ACTIONS(1541), + [anon_sym_char] = ACTIONS(1541), + [anon_sym_ichar] = ACTIONS(1541), + [anon_sym_short] = ACTIONS(1541), + [anon_sym_ushort] = ACTIONS(1541), + [anon_sym_uint] = ACTIONS(1541), + [anon_sym_long] = ACTIONS(1541), + [anon_sym_ulong] = ACTIONS(1541), + [anon_sym_int128] = ACTIONS(1541), + [anon_sym_uint128] = ACTIONS(1541), + [anon_sym_float] = ACTIONS(1541), + [anon_sym_double] = ACTIONS(1541), + [anon_sym_float16] = ACTIONS(1541), + [anon_sym_bfloat16] = ACTIONS(1541), + [anon_sym_float128] = ACTIONS(1541), + [anon_sym_iptr] = ACTIONS(1541), + [anon_sym_uptr] = ACTIONS(1541), + [anon_sym_isz] = ACTIONS(1541), + [anon_sym_usz] = ACTIONS(1541), + [anon_sym_anyfault] = ACTIONS(1541), + [anon_sym_any] = ACTIONS(1541), + [anon_sym_DOLLARtypeof] = ACTIONS(1541), + [anon_sym_DOLLARtypefrom] = ACTIONS(1541), + [anon_sym_DOLLARvatype] = ACTIONS(1541), + [anon_sym_DOLLARevaltype] = ACTIONS(1541), + [sym_real_literal] = ACTIONS(1543), }, [385] = { - [sym_char_literal] = STATE(1018), - [sym_string_literal] = STATE(976), - [sym_raw_string_literal] = STATE(976), [sym_line_comment] = STATE(385), [sym_doc_comment] = STATE(385), [sym_block_comment] = STATE(385), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1451), - [sym_lambda_declaration] = STATE(1679), - [sym__expr] = STATE(1303), - [sym__constant_expr] = STATE(1659), - [sym__relational_expr] = STATE(2087), - [sym__trailing_expr] = STATE(1435), - [sym__ident_expr] = STATE(1018), - [sym__local_ident_expr] = STATE(1018), - [sym_string_expr] = STATE(1018), - [sym_bytes_expr] = STATE(1018), - [sym_paren_expr] = STATE(1018), - [sym__base_expr] = STATE(1002), - [sym_module_ident_expr] = STATE(1018), - [sym_module_type_ident] = STATE(1008), - [sym_initializer_list] = STATE(999), - [sym_assignment_expr] = STATE(1107), - [sym_ternary_expr] = STATE(1100), - [sym_lambda_expr] = STATE(1100), - [sym_elvis_orelse_expr] = STATE(1100), - [sym_suffix_expr] = STATE(1100), - [sym_cast_expr] = STATE(1099), - [sym__unary_op] = STATE(294), - [sym_unary_expr] = STATE(1099), - [sym_binary_expr] = STATE(1099), - [sym_call_expr] = STATE(1022), - [sym_update_expr] = STATE(1022), - [sym_rethrow_expr] = STATE(1022), - [sym_trailing_generic_expr] = STATE(1022), - [sym_subscript_expr] = STATE(1022), - [sym_field_expr] = STATE(1018), - [sym_type_access_expr] = STATE(1018), - [sym_expr_block] = STATE(1018), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1819), - [aux_sym_string_expr_repeat1] = STATE(878), - [aux_sym_bytes_expr_repeat1] = STATE(981), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLARvaconst] = ACTIONS(159), - [anon_sym_DOLLARvaarg] = ACTIONS(159), - [anon_sym_DOLLARvaref] = ACTIONS(159), - [anon_sym_DOLLARvaexpr] = ACTIONS(159), - [anon_sym_true] = ACTIONS(161), - [anon_sym_false] = ACTIONS(161), - [anon_sym_null] = ACTIONS(161), - [anon_sym_DOLLARvacount] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(159), - [anon_sym_DOLLARconcat] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(171), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1182), - [anon_sym_DOLLARtypefrom] = ACTIONS(1184), - [anon_sym_DOLLARvatype] = ACTIONS(1184), - [anon_sym_DOLLARevaltype] = ACTIONS(1184), - [sym_real_literal] = ACTIONS(63), + [sym_ident] = ACTIONS(1545), + [sym_integer_literal] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1547), + [anon_sym_DQUOTE] = ACTIONS(1547), + [anon_sym_BQUOTE] = ACTIONS(1547), + [sym_bytes_literal] = ACTIONS(1547), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1545), + [sym_at_ident] = ACTIONS(1547), + [sym_hash_ident] = ACTIONS(1547), + [sym_type_ident] = ACTIONS(1547), + [sym_ct_type_ident] = ACTIONS(1547), + [sym_const_ident] = ACTIONS(1545), + [sym_builtin] = ACTIONS(1547), + [anon_sym_LPAREN] = ACTIONS(1547), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_static] = ACTIONS(1545), + [anon_sym_tlocal] = ACTIONS(1545), + [anon_sym_SEMI] = ACTIONS(1547), + [anon_sym_fn] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(1545), + [anon_sym_RBRACE] = ACTIONS(1547), + [anon_sym_const] = ACTIONS(1545), + [anon_sym_var] = ACTIONS(1545), + [anon_sym_return] = ACTIONS(1545), + [anon_sym_continue] = ACTIONS(1545), + [anon_sym_break] = ACTIONS(1545), + [anon_sym_defer] = ACTIONS(1545), + [anon_sym_assert] = ACTIONS(1545), + [anon_sym_case] = ACTIONS(1545), + [anon_sym_default] = ACTIONS(1545), + [anon_sym_nextcase] = ACTIONS(1545), + [anon_sym_switch] = ACTIONS(1545), + [anon_sym_AMP_AMP] = ACTIONS(1547), + [anon_sym_if] = ACTIONS(1545), + [anon_sym_for] = ACTIONS(1545), + [anon_sym_foreach] = ACTIONS(1545), + [anon_sym_foreach_r] = ACTIONS(1545), + [anon_sym_while] = ACTIONS(1545), + [anon_sym_do] = ACTIONS(1545), + [anon_sym_int] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_STAR] = ACTIONS(1547), + [anon_sym_asm] = ACTIONS(1545), + [anon_sym_DOLLARassert] = ACTIONS(1545), + [anon_sym_DOLLARerror] = ACTIONS(1545), + [anon_sym_DOLLARecho] = ACTIONS(1545), + [anon_sym_DOLLARif] = ACTIONS(1545), + [anon_sym_DOLLARswitch] = ACTIONS(1545), + [anon_sym_DOLLARfor] = ACTIONS(1545), + [anon_sym_DOLLARforeach] = ACTIONS(1545), + [anon_sym_DOLLARalignof] = ACTIONS(1545), + [anon_sym_DOLLARextnameof] = ACTIONS(1545), + [anon_sym_DOLLARnameof] = ACTIONS(1545), + [anon_sym_DOLLARoffsetof] = ACTIONS(1545), + [anon_sym_DOLLARqnameof] = ACTIONS(1545), + [anon_sym_DOLLARvaconst] = ACTIONS(1545), + [anon_sym_DOLLARvaarg] = ACTIONS(1545), + [anon_sym_DOLLARvaref] = ACTIONS(1545), + [anon_sym_DOLLARvaexpr] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(1545), + [anon_sym_false] = ACTIONS(1545), + [anon_sym_null] = ACTIONS(1545), + [anon_sym_DOLLARvacount] = ACTIONS(1545), + [anon_sym_DOLLARappend] = ACTIONS(1545), + [anon_sym_DOLLARconcat] = ACTIONS(1545), + [anon_sym_DOLLAReval] = ACTIONS(1545), + [anon_sym_DOLLARis_const] = ACTIONS(1545), + [anon_sym_DOLLARsizeof] = ACTIONS(1545), + [anon_sym_DOLLARstringify] = ACTIONS(1545), + [anon_sym_DOLLARand] = ACTIONS(1545), + [anon_sym_DOLLARdefined] = ACTIONS(1545), + [anon_sym_DOLLARembed] = ACTIONS(1545), + [anon_sym_DOLLARor] = ACTIONS(1545), + [anon_sym_DOLLARfeature] = ACTIONS(1545), + [anon_sym_DOLLARassignable] = ACTIONS(1545), + [anon_sym_BANG] = ACTIONS(1547), + [anon_sym_TILDE] = ACTIONS(1547), + [anon_sym_PLUS_PLUS] = ACTIONS(1547), + [anon_sym_DASH_DASH] = ACTIONS(1547), + [anon_sym_typeid] = ACTIONS(1545), + [anon_sym_LBRACE_PIPE] = ACTIONS(1547), + [anon_sym_PIPE_RBRACE] = ACTIONS(1547), + [anon_sym_void] = ACTIONS(1545), + [anon_sym_bool] = ACTIONS(1545), + [anon_sym_char] = ACTIONS(1545), + [anon_sym_ichar] = ACTIONS(1545), + [anon_sym_short] = ACTIONS(1545), + [anon_sym_ushort] = ACTIONS(1545), + [anon_sym_uint] = ACTIONS(1545), + [anon_sym_long] = ACTIONS(1545), + [anon_sym_ulong] = ACTIONS(1545), + [anon_sym_int128] = ACTIONS(1545), + [anon_sym_uint128] = ACTIONS(1545), + [anon_sym_float] = ACTIONS(1545), + [anon_sym_double] = ACTIONS(1545), + [anon_sym_float16] = ACTIONS(1545), + [anon_sym_bfloat16] = ACTIONS(1545), + [anon_sym_float128] = ACTIONS(1545), + [anon_sym_iptr] = ACTIONS(1545), + [anon_sym_uptr] = ACTIONS(1545), + [anon_sym_isz] = ACTIONS(1545), + [anon_sym_usz] = ACTIONS(1545), + [anon_sym_anyfault] = ACTIONS(1545), + [anon_sym_any] = ACTIONS(1545), + [anon_sym_DOLLARtypeof] = ACTIONS(1545), + [anon_sym_DOLLARtypefrom] = ACTIONS(1545), + [anon_sym_DOLLARvatype] = ACTIONS(1545), + [anon_sym_DOLLARevaltype] = ACTIONS(1545), + [sym_real_literal] = ACTIONS(1547), }, [386] = { [sym_line_comment] = STATE(386), [sym_doc_comment] = STATE(386), [sym_block_comment] = STATE(386), - [sym_ident] = ACTIONS(1362), - [sym_integer_literal] = ACTIONS(1364), - [anon_sym_SQUOTE] = ACTIONS(1364), - [anon_sym_DQUOTE] = ACTIONS(1364), - [anon_sym_BQUOTE] = ACTIONS(1364), - [sym_bytes_literal] = ACTIONS(1364), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1362), - [sym_at_ident] = ACTIONS(1364), - [sym_hash_ident] = ACTIONS(1364), - [sym_type_ident] = ACTIONS(1364), - [sym_ct_type_ident] = ACTIONS(1364), - [sym_const_ident] = ACTIONS(1362), - [sym_builtin] = ACTIONS(1364), - [anon_sym_COMMA] = ACTIONS(1366), - [anon_sym_GT_RPAREN] = ACTIONS(1366), - [anon_sym_EQ] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1364), - [anon_sym_RPAREN] = ACTIONS(1366), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_RBRACK] = ACTIONS(1366), - [anon_sym_SEMI] = ACTIONS(1366), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_RBRACE] = ACTIONS(1366), - [anon_sym_COLON] = ACTIONS(1366), - [anon_sym_DOT_DOT] = ACTIONS(1366), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_AMP_AMP] = ACTIONS(1364), - [anon_sym_int] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_LT_LT] = ACTIONS(1368), - [anon_sym_GT_GT] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_DOLLARalignof] = ACTIONS(1362), - [anon_sym_DOLLARextnameof] = ACTIONS(1362), - [anon_sym_DOLLARnameof] = ACTIONS(1362), - [anon_sym_DOLLARoffsetof] = ACTIONS(1362), - [anon_sym_DOLLARqnameof] = ACTIONS(1362), - [anon_sym_DOLLARvaconst] = ACTIONS(1362), - [anon_sym_DOLLARvaarg] = ACTIONS(1362), - [anon_sym_DOLLARvaref] = ACTIONS(1362), - [anon_sym_DOLLARvaexpr] = ACTIONS(1362), - [anon_sym_true] = ACTIONS(1362), - [anon_sym_false] = ACTIONS(1362), - [anon_sym_null] = ACTIONS(1362), - [anon_sym_DOLLARvacount] = ACTIONS(1362), - [anon_sym_DOLLARappend] = ACTIONS(1362), - [anon_sym_DOLLARconcat] = ACTIONS(1362), - [anon_sym_DOLLAReval] = ACTIONS(1362), - [anon_sym_DOLLARis_const] = ACTIONS(1362), - [anon_sym_DOLLARsizeof] = ACTIONS(1362), - [anon_sym_DOLLARstringify] = ACTIONS(1362), - [anon_sym_DOLLARand] = ACTIONS(1362), - [anon_sym_DOLLARdefined] = ACTIONS(1362), - [anon_sym_DOLLARembed] = ACTIONS(1362), - [anon_sym_DOLLARor] = ACTIONS(1362), - [anon_sym_DOLLARfeature] = ACTIONS(1362), - [anon_sym_DOLLARassignable] = ACTIONS(1362), - [anon_sym_PLUS_EQ] = ACTIONS(1366), - [anon_sym_DASH_EQ] = ACTIONS(1366), - [anon_sym_STAR_EQ] = ACTIONS(1366), - [anon_sym_SLASH_EQ] = ACTIONS(1366), - [anon_sym_PERCENT_EQ] = ACTIONS(1366), - [anon_sym_LT_LT_EQ] = ACTIONS(1366), - [anon_sym_GT_GT_EQ] = ACTIONS(1366), - [anon_sym_AMP_EQ] = ACTIONS(1366), - [anon_sym_CARET_EQ] = ACTIONS(1366), - [anon_sym_PIPE_EQ] = ACTIONS(1366), - [anon_sym_QMARK] = ACTIONS(1368), - [anon_sym_QMARK_COLON] = ACTIONS(1366), - [anon_sym_QMARK_QMARK] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(1362), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_PLUS_PLUS] = ACTIONS(1364), - [anon_sym_DASH_DASH] = ACTIONS(1364), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_PERCENT] = ACTIONS(1368), - [anon_sym_PIPE] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1366), - [anon_sym_BANG_EQ] = ACTIONS(1366), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1366), - [anon_sym_LT_EQ] = ACTIONS(1366), - [anon_sym_LT] = ACTIONS(1368), - [anon_sym_PIPE_PIPE] = ACTIONS(1366), - [anon_sym_typeid] = ACTIONS(1362), - [anon_sym_LBRACE_PIPE] = ACTIONS(1364), - [anon_sym_void] = ACTIONS(1362), - [anon_sym_bool] = ACTIONS(1362), - [anon_sym_char] = ACTIONS(1362), - [anon_sym_ichar] = ACTIONS(1362), - [anon_sym_short] = ACTIONS(1362), - [anon_sym_ushort] = ACTIONS(1362), - [anon_sym_uint] = ACTIONS(1362), - [anon_sym_long] = ACTIONS(1362), - [anon_sym_ulong] = ACTIONS(1362), - [anon_sym_int128] = ACTIONS(1362), - [anon_sym_uint128] = ACTIONS(1362), - [anon_sym_float] = ACTIONS(1362), - [anon_sym_double] = ACTIONS(1362), - [anon_sym_float16] = ACTIONS(1362), - [anon_sym_bfloat16] = ACTIONS(1362), - [anon_sym_float128] = ACTIONS(1362), - [anon_sym_iptr] = ACTIONS(1362), - [anon_sym_uptr] = ACTIONS(1362), - [anon_sym_isz] = ACTIONS(1362), - [anon_sym_usz] = ACTIONS(1362), - [anon_sym_anyfault] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_DOLLARtypeof] = ACTIONS(1362), - [anon_sym_DOLLARtypefrom] = ACTIONS(1362), - [anon_sym_DOLLARvatype] = ACTIONS(1362), - [anon_sym_DOLLARevaltype] = ACTIONS(1362), - [anon_sym_GT_RBRACK] = ACTIONS(1366), - [sym_real_literal] = ACTIONS(1364), + [sym_ident] = ACTIONS(1549), + [sym_integer_literal] = ACTIONS(1551), + [anon_sym_SQUOTE] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [anon_sym_BQUOTE] = ACTIONS(1551), + [sym_bytes_literal] = ACTIONS(1551), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1549), + [sym_at_ident] = ACTIONS(1551), + [sym_hash_ident] = ACTIONS(1551), + [sym_type_ident] = ACTIONS(1551), + [sym_ct_type_ident] = ACTIONS(1551), + [sym_const_ident] = ACTIONS(1549), + [sym_builtin] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_AMP] = ACTIONS(1549), + [anon_sym_static] = ACTIONS(1549), + [anon_sym_tlocal] = ACTIONS(1549), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_fn] = ACTIONS(1549), + [anon_sym_LBRACE] = ACTIONS(1549), + [anon_sym_RBRACE] = ACTIONS(1551), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_var] = ACTIONS(1549), + [anon_sym_return] = ACTIONS(1549), + [anon_sym_continue] = ACTIONS(1549), + [anon_sym_break] = ACTIONS(1549), + [anon_sym_defer] = ACTIONS(1549), + [anon_sym_assert] = ACTIONS(1549), + [anon_sym_case] = ACTIONS(1549), + [anon_sym_default] = ACTIONS(1549), + [anon_sym_nextcase] = ACTIONS(1549), + [anon_sym_switch] = ACTIONS(1549), + [anon_sym_AMP_AMP] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1549), + [anon_sym_for] = ACTIONS(1549), + [anon_sym_foreach] = ACTIONS(1549), + [anon_sym_foreach_r] = ACTIONS(1549), + [anon_sym_while] = ACTIONS(1549), + [anon_sym_do] = ACTIONS(1549), + [anon_sym_int] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1551), + [anon_sym_asm] = ACTIONS(1549), + [anon_sym_DOLLARassert] = ACTIONS(1549), + [anon_sym_DOLLARerror] = ACTIONS(1549), + [anon_sym_DOLLARecho] = ACTIONS(1549), + [anon_sym_DOLLARif] = ACTIONS(1549), + [anon_sym_DOLLARswitch] = ACTIONS(1549), + [anon_sym_DOLLARfor] = ACTIONS(1549), + [anon_sym_DOLLARforeach] = ACTIONS(1549), + [anon_sym_DOLLARalignof] = ACTIONS(1549), + [anon_sym_DOLLARextnameof] = ACTIONS(1549), + [anon_sym_DOLLARnameof] = ACTIONS(1549), + [anon_sym_DOLLARoffsetof] = ACTIONS(1549), + [anon_sym_DOLLARqnameof] = ACTIONS(1549), + [anon_sym_DOLLARvaconst] = ACTIONS(1549), + [anon_sym_DOLLARvaarg] = ACTIONS(1549), + [anon_sym_DOLLARvaref] = ACTIONS(1549), + [anon_sym_DOLLARvaexpr] = ACTIONS(1549), + [anon_sym_true] = ACTIONS(1549), + [anon_sym_false] = ACTIONS(1549), + [anon_sym_null] = ACTIONS(1549), + [anon_sym_DOLLARvacount] = ACTIONS(1549), + [anon_sym_DOLLARappend] = ACTIONS(1549), + [anon_sym_DOLLARconcat] = ACTIONS(1549), + [anon_sym_DOLLAReval] = ACTIONS(1549), + [anon_sym_DOLLARis_const] = ACTIONS(1549), + [anon_sym_DOLLARsizeof] = ACTIONS(1549), + [anon_sym_DOLLARstringify] = ACTIONS(1549), + [anon_sym_DOLLARand] = ACTIONS(1549), + [anon_sym_DOLLARdefined] = ACTIONS(1549), + [anon_sym_DOLLARembed] = ACTIONS(1549), + [anon_sym_DOLLARor] = ACTIONS(1549), + [anon_sym_DOLLARfeature] = ACTIONS(1549), + [anon_sym_DOLLARassignable] = ACTIONS(1549), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_PLUS_PLUS] = ACTIONS(1551), + [anon_sym_DASH_DASH] = ACTIONS(1551), + [anon_sym_typeid] = ACTIONS(1549), + [anon_sym_LBRACE_PIPE] = ACTIONS(1551), + [anon_sym_PIPE_RBRACE] = ACTIONS(1551), + [anon_sym_void] = ACTIONS(1549), + [anon_sym_bool] = ACTIONS(1549), + [anon_sym_char] = ACTIONS(1549), + [anon_sym_ichar] = ACTIONS(1549), + [anon_sym_short] = ACTIONS(1549), + [anon_sym_ushort] = ACTIONS(1549), + [anon_sym_uint] = ACTIONS(1549), + [anon_sym_long] = ACTIONS(1549), + [anon_sym_ulong] = ACTIONS(1549), + [anon_sym_int128] = ACTIONS(1549), + [anon_sym_uint128] = ACTIONS(1549), + [anon_sym_float] = ACTIONS(1549), + [anon_sym_double] = ACTIONS(1549), + [anon_sym_float16] = ACTIONS(1549), + [anon_sym_bfloat16] = ACTIONS(1549), + [anon_sym_float128] = ACTIONS(1549), + [anon_sym_iptr] = ACTIONS(1549), + [anon_sym_uptr] = ACTIONS(1549), + [anon_sym_isz] = ACTIONS(1549), + [anon_sym_usz] = ACTIONS(1549), + [anon_sym_anyfault] = ACTIONS(1549), + [anon_sym_any] = ACTIONS(1549), + [anon_sym_DOLLARtypeof] = ACTIONS(1549), + [anon_sym_DOLLARtypefrom] = ACTIONS(1549), + [anon_sym_DOLLARvatype] = ACTIONS(1549), + [anon_sym_DOLLARevaltype] = ACTIONS(1549), + [sym_real_literal] = ACTIONS(1551), }, [387] = { [sym_line_comment] = STATE(387), [sym_doc_comment] = STATE(387), [sym_block_comment] = STATE(387), - [sym_else_part] = STATE(440), - [sym_ident] = ACTIONS(1370), - [sym_integer_literal] = ACTIONS(1372), - [anon_sym_SQUOTE] = ACTIONS(1372), - [anon_sym_DQUOTE] = ACTIONS(1372), - [anon_sym_BQUOTE] = ACTIONS(1372), - [sym_bytes_literal] = ACTIONS(1372), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1370), - [sym_at_ident] = ACTIONS(1372), - [sym_hash_ident] = ACTIONS(1372), - [sym_type_ident] = ACTIONS(1372), - [sym_ct_type_ident] = ACTIONS(1372), - [sym_const_ident] = ACTIONS(1370), - [sym_builtin] = ACTIONS(1372), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_AMP] = ACTIONS(1370), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_tlocal] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1372), - [anon_sym_const] = ACTIONS(1370), - [anon_sym_var] = ACTIONS(1370), - [anon_sym_return] = ACTIONS(1370), - [anon_sym_continue] = ACTIONS(1370), - [anon_sym_break] = ACTIONS(1370), - [anon_sym_defer] = ACTIONS(1370), - [anon_sym_assert] = ACTIONS(1370), - [anon_sym_case] = ACTIONS(1370), - [anon_sym_default] = ACTIONS(1370), - [anon_sym_nextcase] = ACTIONS(1370), - [anon_sym_switch] = ACTIONS(1370), - [anon_sym_AMP_AMP] = ACTIONS(1372), - [anon_sym_if] = ACTIONS(1370), - [anon_sym_else] = ACTIONS(1374), - [anon_sym_for] = ACTIONS(1370), - [anon_sym_foreach] = ACTIONS(1370), - [anon_sym_foreach_r] = ACTIONS(1370), - [anon_sym_while] = ACTIONS(1370), - [anon_sym_do] = ACTIONS(1370), - [anon_sym_int] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_asm] = ACTIONS(1370), - [anon_sym_DOLLARassert] = ACTIONS(1370), - [anon_sym_DOLLARerror] = ACTIONS(1370), - [anon_sym_DOLLARecho] = ACTIONS(1370), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_DOLLARswitch] = ACTIONS(1370), - [anon_sym_DOLLARfor] = ACTIONS(1370), - [anon_sym_DOLLARforeach] = ACTIONS(1370), - [anon_sym_DOLLARalignof] = ACTIONS(1370), - [anon_sym_DOLLARextnameof] = ACTIONS(1370), - [anon_sym_DOLLARnameof] = ACTIONS(1370), - [anon_sym_DOLLARoffsetof] = ACTIONS(1370), - [anon_sym_DOLLARqnameof] = ACTIONS(1370), - [anon_sym_DOLLARvaconst] = ACTIONS(1370), - [anon_sym_DOLLARvaarg] = ACTIONS(1370), - [anon_sym_DOLLARvaref] = ACTIONS(1370), - [anon_sym_DOLLARvaexpr] = ACTIONS(1370), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [anon_sym_null] = ACTIONS(1370), - [anon_sym_DOLLARvacount] = ACTIONS(1370), - [anon_sym_DOLLARappend] = ACTIONS(1370), - [anon_sym_DOLLARconcat] = ACTIONS(1370), - [anon_sym_DOLLAReval] = ACTIONS(1370), - [anon_sym_DOLLARis_const] = ACTIONS(1370), - [anon_sym_DOLLARsizeof] = ACTIONS(1370), - [anon_sym_DOLLARstringify] = ACTIONS(1370), - [anon_sym_DOLLARand] = ACTIONS(1370), - [anon_sym_DOLLARdefined] = ACTIONS(1370), - [anon_sym_DOLLARembed] = ACTIONS(1370), - [anon_sym_DOLLARor] = ACTIONS(1370), - [anon_sym_DOLLARfeature] = ACTIONS(1370), - [anon_sym_DOLLARassignable] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_TILDE] = ACTIONS(1372), - [anon_sym_PLUS_PLUS] = ACTIONS(1372), - [anon_sym_DASH_DASH] = ACTIONS(1372), - [anon_sym_typeid] = ACTIONS(1370), - [anon_sym_LBRACE_PIPE] = ACTIONS(1372), - [anon_sym_PIPE_RBRACE] = ACTIONS(1372), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_bool] = ACTIONS(1370), - [anon_sym_char] = ACTIONS(1370), - [anon_sym_ichar] = ACTIONS(1370), - [anon_sym_short] = ACTIONS(1370), - [anon_sym_ushort] = ACTIONS(1370), - [anon_sym_uint] = ACTIONS(1370), - [anon_sym_long] = ACTIONS(1370), - [anon_sym_ulong] = ACTIONS(1370), - [anon_sym_int128] = ACTIONS(1370), - [anon_sym_uint128] = ACTIONS(1370), - [anon_sym_float] = ACTIONS(1370), - [anon_sym_double] = ACTIONS(1370), - [anon_sym_float16] = ACTIONS(1370), - [anon_sym_bfloat16] = ACTIONS(1370), - [anon_sym_float128] = ACTIONS(1370), - [anon_sym_iptr] = ACTIONS(1370), - [anon_sym_uptr] = ACTIONS(1370), - [anon_sym_isz] = ACTIONS(1370), - [anon_sym_usz] = ACTIONS(1370), - [anon_sym_anyfault] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_DOLLARtypeof] = ACTIONS(1370), - [anon_sym_DOLLARtypefrom] = ACTIONS(1370), - [anon_sym_DOLLARvatype] = ACTIONS(1370), - [anon_sym_DOLLARevaltype] = ACTIONS(1370), - [sym_real_literal] = ACTIONS(1372), + [sym_ident] = ACTIONS(1553), + [sym_integer_literal] = ACTIONS(1555), + [anon_sym_SQUOTE] = ACTIONS(1555), + [anon_sym_DQUOTE] = ACTIONS(1555), + [anon_sym_BQUOTE] = ACTIONS(1555), + [sym_bytes_literal] = ACTIONS(1555), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1553), + [sym_at_ident] = ACTIONS(1555), + [sym_hash_ident] = ACTIONS(1555), + [sym_type_ident] = ACTIONS(1555), + [sym_ct_type_ident] = ACTIONS(1555), + [sym_const_ident] = ACTIONS(1553), + [sym_builtin] = ACTIONS(1555), + [anon_sym_LPAREN] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1553), + [anon_sym_static] = ACTIONS(1553), + [anon_sym_tlocal] = ACTIONS(1553), + [anon_sym_SEMI] = ACTIONS(1555), + [anon_sym_fn] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1553), + [anon_sym_RBRACE] = ACTIONS(1555), + [anon_sym_const] = ACTIONS(1553), + [anon_sym_var] = ACTIONS(1553), + [anon_sym_return] = ACTIONS(1553), + [anon_sym_continue] = ACTIONS(1553), + [anon_sym_break] = ACTIONS(1553), + [anon_sym_defer] = ACTIONS(1553), + [anon_sym_assert] = ACTIONS(1553), + [anon_sym_case] = ACTIONS(1553), + [anon_sym_default] = ACTIONS(1553), + [anon_sym_nextcase] = ACTIONS(1553), + [anon_sym_switch] = ACTIONS(1553), + [anon_sym_AMP_AMP] = ACTIONS(1555), + [anon_sym_if] = ACTIONS(1553), + [anon_sym_for] = ACTIONS(1553), + [anon_sym_foreach] = ACTIONS(1553), + [anon_sym_foreach_r] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1553), + [anon_sym_do] = ACTIONS(1553), + [anon_sym_int] = ACTIONS(1553), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1555), + [anon_sym_asm] = ACTIONS(1553), + [anon_sym_DOLLARassert] = ACTIONS(1553), + [anon_sym_DOLLARerror] = ACTIONS(1553), + [anon_sym_DOLLARecho] = ACTIONS(1553), + [anon_sym_DOLLARif] = ACTIONS(1553), + [anon_sym_DOLLARswitch] = ACTIONS(1553), + [anon_sym_DOLLARfor] = ACTIONS(1553), + [anon_sym_DOLLARforeach] = ACTIONS(1553), + [anon_sym_DOLLARalignof] = ACTIONS(1553), + [anon_sym_DOLLARextnameof] = ACTIONS(1553), + [anon_sym_DOLLARnameof] = ACTIONS(1553), + [anon_sym_DOLLARoffsetof] = ACTIONS(1553), + [anon_sym_DOLLARqnameof] = ACTIONS(1553), + [anon_sym_DOLLARvaconst] = ACTIONS(1553), + [anon_sym_DOLLARvaarg] = ACTIONS(1553), + [anon_sym_DOLLARvaref] = ACTIONS(1553), + [anon_sym_DOLLARvaexpr] = ACTIONS(1553), + [anon_sym_true] = ACTIONS(1553), + [anon_sym_false] = ACTIONS(1553), + [anon_sym_null] = ACTIONS(1553), + [anon_sym_DOLLARvacount] = ACTIONS(1553), + [anon_sym_DOLLARappend] = ACTIONS(1553), + [anon_sym_DOLLARconcat] = ACTIONS(1553), + [anon_sym_DOLLAReval] = ACTIONS(1553), + [anon_sym_DOLLARis_const] = ACTIONS(1553), + [anon_sym_DOLLARsizeof] = ACTIONS(1553), + [anon_sym_DOLLARstringify] = ACTIONS(1553), + [anon_sym_DOLLARand] = ACTIONS(1553), + [anon_sym_DOLLARdefined] = ACTIONS(1553), + [anon_sym_DOLLARembed] = ACTIONS(1553), + [anon_sym_DOLLARor] = ACTIONS(1553), + [anon_sym_DOLLARfeature] = ACTIONS(1553), + [anon_sym_DOLLARassignable] = ACTIONS(1553), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_TILDE] = ACTIONS(1555), + [anon_sym_PLUS_PLUS] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(1555), + [anon_sym_typeid] = ACTIONS(1553), + [anon_sym_LBRACE_PIPE] = ACTIONS(1555), + [anon_sym_PIPE_RBRACE] = ACTIONS(1555), + [anon_sym_void] = ACTIONS(1553), + [anon_sym_bool] = ACTIONS(1553), + [anon_sym_char] = ACTIONS(1553), + [anon_sym_ichar] = ACTIONS(1553), + [anon_sym_short] = ACTIONS(1553), + [anon_sym_ushort] = ACTIONS(1553), + [anon_sym_uint] = ACTIONS(1553), + [anon_sym_long] = ACTIONS(1553), + [anon_sym_ulong] = ACTIONS(1553), + [anon_sym_int128] = ACTIONS(1553), + [anon_sym_uint128] = ACTIONS(1553), + [anon_sym_float] = ACTIONS(1553), + [anon_sym_double] = ACTIONS(1553), + [anon_sym_float16] = ACTIONS(1553), + [anon_sym_bfloat16] = ACTIONS(1553), + [anon_sym_float128] = ACTIONS(1553), + [anon_sym_iptr] = ACTIONS(1553), + [anon_sym_uptr] = ACTIONS(1553), + [anon_sym_isz] = ACTIONS(1553), + [anon_sym_usz] = ACTIONS(1553), + [anon_sym_anyfault] = ACTIONS(1553), + [anon_sym_any] = ACTIONS(1553), + [anon_sym_DOLLARtypeof] = ACTIONS(1553), + [anon_sym_DOLLARtypefrom] = ACTIONS(1553), + [anon_sym_DOLLARvatype] = ACTIONS(1553), + [anon_sym_DOLLARevaltype] = ACTIONS(1553), + [sym_real_literal] = ACTIONS(1555), }, [388] = { [sym_line_comment] = STATE(388), [sym_doc_comment] = STATE(388), [sym_block_comment] = STATE(388), - [sym_ident] = ACTIONS(1376), - [sym_integer_literal] = ACTIONS(1378), - [anon_sym_SQUOTE] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1378), - [anon_sym_BQUOTE] = ACTIONS(1378), - [sym_bytes_literal] = ACTIONS(1378), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1376), - [sym_at_ident] = ACTIONS(1378), - [sym_hash_ident] = ACTIONS(1378), - [sym_type_ident] = ACTIONS(1378), - [sym_ct_type_ident] = ACTIONS(1378), - [sym_const_ident] = ACTIONS(1376), - [sym_builtin] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_AMP] = ACTIONS(1376), - [anon_sym_static] = ACTIONS(1376), - [anon_sym_tlocal] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1378), - [anon_sym_fn] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_var] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_defer] = ACTIONS(1376), - [anon_sym_assert] = ACTIONS(1376), - [anon_sym_case] = ACTIONS(1376), - [anon_sym_default] = ACTIONS(1376), - [anon_sym_nextcase] = ACTIONS(1376), - [anon_sym_switch] = ACTIONS(1376), - [anon_sym_AMP_AMP] = ACTIONS(1378), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_else] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_foreach] = ACTIONS(1376), - [anon_sym_foreach_r] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_int] = ACTIONS(1376), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_asm] = ACTIONS(1376), - [anon_sym_DOLLARassert] = ACTIONS(1376), - [anon_sym_DOLLARerror] = ACTIONS(1376), - [anon_sym_DOLLARecho] = ACTIONS(1376), - [anon_sym_DOLLARif] = ACTIONS(1376), - [anon_sym_DOLLARswitch] = ACTIONS(1376), - [anon_sym_DOLLARfor] = ACTIONS(1376), - [anon_sym_DOLLARforeach] = ACTIONS(1376), - [anon_sym_DOLLARalignof] = ACTIONS(1376), - [anon_sym_DOLLARextnameof] = ACTIONS(1376), - [anon_sym_DOLLARnameof] = ACTIONS(1376), - [anon_sym_DOLLARoffsetof] = ACTIONS(1376), - [anon_sym_DOLLARqnameof] = ACTIONS(1376), - [anon_sym_DOLLARvaconst] = ACTIONS(1376), - [anon_sym_DOLLARvaarg] = ACTIONS(1376), - [anon_sym_DOLLARvaref] = ACTIONS(1376), - [anon_sym_DOLLARvaexpr] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_DOLLARvacount] = ACTIONS(1376), - [anon_sym_DOLLARappend] = ACTIONS(1376), - [anon_sym_DOLLARconcat] = ACTIONS(1376), - [anon_sym_DOLLAReval] = ACTIONS(1376), - [anon_sym_DOLLARis_const] = ACTIONS(1376), - [anon_sym_DOLLARsizeof] = ACTIONS(1376), - [anon_sym_DOLLARstringify] = ACTIONS(1376), - [anon_sym_DOLLARand] = ACTIONS(1376), - [anon_sym_DOLLARdefined] = ACTIONS(1376), - [anon_sym_DOLLARembed] = ACTIONS(1376), - [anon_sym_DOLLARor] = ACTIONS(1376), - [anon_sym_DOLLARfeature] = ACTIONS(1376), - [anon_sym_DOLLARassignable] = ACTIONS(1376), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_PLUS_PLUS] = ACTIONS(1378), - [anon_sym_DASH_DASH] = ACTIONS(1378), - [anon_sym_typeid] = ACTIONS(1376), - [anon_sym_LBRACE_PIPE] = ACTIONS(1378), - [anon_sym_PIPE_RBRACE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1376), - [anon_sym_bool] = ACTIONS(1376), - [anon_sym_char] = ACTIONS(1376), - [anon_sym_ichar] = ACTIONS(1376), - [anon_sym_short] = ACTIONS(1376), - [anon_sym_ushort] = ACTIONS(1376), - [anon_sym_uint] = ACTIONS(1376), - [anon_sym_long] = ACTIONS(1376), - [anon_sym_ulong] = ACTIONS(1376), - [anon_sym_int128] = ACTIONS(1376), - [anon_sym_uint128] = ACTIONS(1376), - [anon_sym_float] = ACTIONS(1376), - [anon_sym_double] = ACTIONS(1376), - [anon_sym_float16] = ACTIONS(1376), - [anon_sym_bfloat16] = ACTIONS(1376), - [anon_sym_float128] = ACTIONS(1376), - [anon_sym_iptr] = ACTIONS(1376), - [anon_sym_uptr] = ACTIONS(1376), - [anon_sym_isz] = ACTIONS(1376), - [anon_sym_usz] = ACTIONS(1376), - [anon_sym_anyfault] = ACTIONS(1376), - [anon_sym_any] = ACTIONS(1376), - [anon_sym_DOLLARtypeof] = ACTIONS(1376), - [anon_sym_DOLLARtypefrom] = ACTIONS(1376), - [anon_sym_DOLLARvatype] = ACTIONS(1376), - [anon_sym_DOLLARevaltype] = ACTIONS(1376), - [sym_real_literal] = ACTIONS(1378), + [sym_ident] = ACTIONS(1557), + [sym_integer_literal] = ACTIONS(1559), + [anon_sym_SQUOTE] = ACTIONS(1559), + [anon_sym_DQUOTE] = ACTIONS(1559), + [anon_sym_BQUOTE] = ACTIONS(1559), + [sym_bytes_literal] = ACTIONS(1559), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1557), + [sym_at_ident] = ACTIONS(1559), + [sym_hash_ident] = ACTIONS(1559), + [sym_type_ident] = ACTIONS(1559), + [sym_ct_type_ident] = ACTIONS(1559), + [sym_const_ident] = ACTIONS(1557), + [sym_builtin] = ACTIONS(1559), + [anon_sym_LPAREN] = ACTIONS(1559), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_static] = ACTIONS(1557), + [anon_sym_tlocal] = ACTIONS(1557), + [anon_sym_SEMI] = ACTIONS(1559), + [anon_sym_fn] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1557), + [anon_sym_RBRACE] = ACTIONS(1559), + [anon_sym_const] = ACTIONS(1557), + [anon_sym_var] = ACTIONS(1557), + [anon_sym_return] = ACTIONS(1557), + [anon_sym_continue] = ACTIONS(1557), + [anon_sym_break] = ACTIONS(1557), + [anon_sym_defer] = ACTIONS(1557), + [anon_sym_assert] = ACTIONS(1557), + [anon_sym_case] = ACTIONS(1557), + [anon_sym_default] = ACTIONS(1557), + [anon_sym_nextcase] = ACTIONS(1557), + [anon_sym_switch] = ACTIONS(1557), + [anon_sym_AMP_AMP] = ACTIONS(1559), + [anon_sym_if] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(1557), + [anon_sym_foreach] = ACTIONS(1557), + [anon_sym_foreach_r] = ACTIONS(1557), + [anon_sym_while] = ACTIONS(1557), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_int] = ACTIONS(1557), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_STAR] = ACTIONS(1559), + [anon_sym_asm] = ACTIONS(1557), + [anon_sym_DOLLARassert] = ACTIONS(1557), + [anon_sym_DOLLARerror] = ACTIONS(1557), + [anon_sym_DOLLARecho] = ACTIONS(1557), + [anon_sym_DOLLARif] = ACTIONS(1557), + [anon_sym_DOLLARswitch] = ACTIONS(1557), + [anon_sym_DOLLARfor] = ACTIONS(1557), + [anon_sym_DOLLARforeach] = ACTIONS(1557), + [anon_sym_DOLLARalignof] = ACTIONS(1557), + [anon_sym_DOLLARextnameof] = ACTIONS(1557), + [anon_sym_DOLLARnameof] = ACTIONS(1557), + [anon_sym_DOLLARoffsetof] = ACTIONS(1557), + [anon_sym_DOLLARqnameof] = ACTIONS(1557), + [anon_sym_DOLLARvaconst] = ACTIONS(1557), + [anon_sym_DOLLARvaarg] = ACTIONS(1557), + [anon_sym_DOLLARvaref] = ACTIONS(1557), + [anon_sym_DOLLARvaexpr] = ACTIONS(1557), + [anon_sym_true] = ACTIONS(1557), + [anon_sym_false] = ACTIONS(1557), + [anon_sym_null] = ACTIONS(1557), + [anon_sym_DOLLARvacount] = ACTIONS(1557), + [anon_sym_DOLLARappend] = ACTIONS(1557), + [anon_sym_DOLLARconcat] = ACTIONS(1557), + [anon_sym_DOLLAReval] = ACTIONS(1557), + [anon_sym_DOLLARis_const] = ACTIONS(1557), + [anon_sym_DOLLARsizeof] = ACTIONS(1557), + [anon_sym_DOLLARstringify] = ACTIONS(1557), + [anon_sym_DOLLARand] = ACTIONS(1557), + [anon_sym_DOLLARdefined] = ACTIONS(1557), + [anon_sym_DOLLARembed] = ACTIONS(1557), + [anon_sym_DOLLARor] = ACTIONS(1557), + [anon_sym_DOLLARfeature] = ACTIONS(1557), + [anon_sym_DOLLARassignable] = ACTIONS(1557), + [anon_sym_BANG] = ACTIONS(1559), + [anon_sym_TILDE] = ACTIONS(1559), + [anon_sym_PLUS_PLUS] = ACTIONS(1559), + [anon_sym_DASH_DASH] = ACTIONS(1559), + [anon_sym_typeid] = ACTIONS(1557), + [anon_sym_LBRACE_PIPE] = ACTIONS(1559), + [anon_sym_PIPE_RBRACE] = ACTIONS(1559), + [anon_sym_void] = ACTIONS(1557), + [anon_sym_bool] = ACTIONS(1557), + [anon_sym_char] = ACTIONS(1557), + [anon_sym_ichar] = ACTIONS(1557), + [anon_sym_short] = ACTIONS(1557), + [anon_sym_ushort] = ACTIONS(1557), + [anon_sym_uint] = ACTIONS(1557), + [anon_sym_long] = ACTIONS(1557), + [anon_sym_ulong] = ACTIONS(1557), + [anon_sym_int128] = ACTIONS(1557), + [anon_sym_uint128] = ACTIONS(1557), + [anon_sym_float] = ACTIONS(1557), + [anon_sym_double] = ACTIONS(1557), + [anon_sym_float16] = ACTIONS(1557), + [anon_sym_bfloat16] = ACTIONS(1557), + [anon_sym_float128] = ACTIONS(1557), + [anon_sym_iptr] = ACTIONS(1557), + [anon_sym_uptr] = ACTIONS(1557), + [anon_sym_isz] = ACTIONS(1557), + [anon_sym_usz] = ACTIONS(1557), + [anon_sym_anyfault] = ACTIONS(1557), + [anon_sym_any] = ACTIONS(1557), + [anon_sym_DOLLARtypeof] = ACTIONS(1557), + [anon_sym_DOLLARtypefrom] = ACTIONS(1557), + [anon_sym_DOLLARvatype] = ACTIONS(1557), + [anon_sym_DOLLARevaltype] = ACTIONS(1557), + [sym_real_literal] = ACTIONS(1559), }, [389] = { [sym_line_comment] = STATE(389), [sym_doc_comment] = STATE(389), [sym_block_comment] = STATE(389), - [sym_else_part] = STATE(532), - [sym_ident] = ACTIONS(1370), - [sym_integer_literal] = ACTIONS(1372), - [anon_sym_SQUOTE] = ACTIONS(1372), - [anon_sym_DQUOTE] = ACTIONS(1372), - [anon_sym_BQUOTE] = ACTIONS(1372), - [sym_bytes_literal] = ACTIONS(1372), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1370), - [sym_at_ident] = ACTIONS(1372), - [sym_hash_ident] = ACTIONS(1372), - [sym_type_ident] = ACTIONS(1372), - [sym_ct_type_ident] = ACTIONS(1372), - [sym_const_ident] = ACTIONS(1370), - [sym_builtin] = ACTIONS(1372), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_AMP] = ACTIONS(1370), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_tlocal] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_const] = ACTIONS(1370), - [anon_sym_var] = ACTIONS(1370), - [anon_sym_return] = ACTIONS(1370), - [anon_sym_continue] = ACTIONS(1370), - [anon_sym_break] = ACTIONS(1370), - [anon_sym_defer] = ACTIONS(1370), - [anon_sym_assert] = ACTIONS(1370), - [anon_sym_nextcase] = ACTIONS(1370), - [anon_sym_switch] = ACTIONS(1370), - [anon_sym_AMP_AMP] = ACTIONS(1372), - [anon_sym_if] = ACTIONS(1370), - [anon_sym_else] = ACTIONS(1380), - [anon_sym_for] = ACTIONS(1370), - [anon_sym_foreach] = ACTIONS(1370), - [anon_sym_foreach_r] = ACTIONS(1370), - [anon_sym_while] = ACTIONS(1370), - [anon_sym_do] = ACTIONS(1370), - [anon_sym_int] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_asm] = ACTIONS(1370), - [anon_sym_DOLLARassert] = ACTIONS(1370), - [anon_sym_DOLLARerror] = ACTIONS(1370), - [anon_sym_DOLLARecho] = ACTIONS(1370), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_DOLLARcase] = ACTIONS(1370), - [anon_sym_DOLLARdefault] = ACTIONS(1370), - [anon_sym_DOLLARswitch] = ACTIONS(1370), - [anon_sym_DOLLARendswitch] = ACTIONS(1370), - [anon_sym_DOLLARfor] = ACTIONS(1370), - [anon_sym_DOLLARforeach] = ACTIONS(1370), - [anon_sym_DOLLARalignof] = ACTIONS(1370), - [anon_sym_DOLLARextnameof] = ACTIONS(1370), - [anon_sym_DOLLARnameof] = ACTIONS(1370), - [anon_sym_DOLLARoffsetof] = ACTIONS(1370), - [anon_sym_DOLLARqnameof] = ACTIONS(1370), - [anon_sym_DOLLARvaconst] = ACTIONS(1370), - [anon_sym_DOLLARvaarg] = ACTIONS(1370), - [anon_sym_DOLLARvaref] = ACTIONS(1370), - [anon_sym_DOLLARvaexpr] = ACTIONS(1370), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [anon_sym_null] = ACTIONS(1370), - [anon_sym_DOLLARvacount] = ACTIONS(1370), - [anon_sym_DOLLARappend] = ACTIONS(1370), - [anon_sym_DOLLARconcat] = ACTIONS(1370), - [anon_sym_DOLLAReval] = ACTIONS(1370), - [anon_sym_DOLLARis_const] = ACTIONS(1370), - [anon_sym_DOLLARsizeof] = ACTIONS(1370), - [anon_sym_DOLLARstringify] = ACTIONS(1370), - [anon_sym_DOLLARand] = ACTIONS(1370), - [anon_sym_DOLLARdefined] = ACTIONS(1370), - [anon_sym_DOLLARembed] = ACTIONS(1370), - [anon_sym_DOLLARor] = ACTIONS(1370), - [anon_sym_DOLLARfeature] = ACTIONS(1370), - [anon_sym_DOLLARassignable] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_TILDE] = ACTIONS(1372), - [anon_sym_PLUS_PLUS] = ACTIONS(1372), - [anon_sym_DASH_DASH] = ACTIONS(1372), - [anon_sym_typeid] = ACTIONS(1370), - [anon_sym_LBRACE_PIPE] = ACTIONS(1372), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_bool] = ACTIONS(1370), - [anon_sym_char] = ACTIONS(1370), - [anon_sym_ichar] = ACTIONS(1370), - [anon_sym_short] = ACTIONS(1370), - [anon_sym_ushort] = ACTIONS(1370), - [anon_sym_uint] = ACTIONS(1370), - [anon_sym_long] = ACTIONS(1370), - [anon_sym_ulong] = ACTIONS(1370), - [anon_sym_int128] = ACTIONS(1370), - [anon_sym_uint128] = ACTIONS(1370), - [anon_sym_float] = ACTIONS(1370), - [anon_sym_double] = ACTIONS(1370), - [anon_sym_float16] = ACTIONS(1370), - [anon_sym_bfloat16] = ACTIONS(1370), - [anon_sym_float128] = ACTIONS(1370), - [anon_sym_iptr] = ACTIONS(1370), - [anon_sym_uptr] = ACTIONS(1370), - [anon_sym_isz] = ACTIONS(1370), - [anon_sym_usz] = ACTIONS(1370), - [anon_sym_anyfault] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_DOLLARtypeof] = ACTIONS(1370), - [anon_sym_DOLLARtypefrom] = ACTIONS(1370), - [anon_sym_DOLLARvatype] = ACTIONS(1370), - [anon_sym_DOLLARevaltype] = ACTIONS(1370), - [sym_real_literal] = ACTIONS(1372), + [sym_ident] = ACTIONS(1561), + [sym_integer_literal] = ACTIONS(1563), + [anon_sym_SQUOTE] = ACTIONS(1563), + [anon_sym_DQUOTE] = ACTIONS(1563), + [anon_sym_BQUOTE] = ACTIONS(1563), + [sym_bytes_literal] = ACTIONS(1563), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1561), + [sym_at_ident] = ACTIONS(1563), + [sym_hash_ident] = ACTIONS(1563), + [sym_type_ident] = ACTIONS(1563), + [sym_ct_type_ident] = ACTIONS(1563), + [sym_const_ident] = ACTIONS(1561), + [sym_builtin] = ACTIONS(1563), + [anon_sym_LPAREN] = ACTIONS(1563), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_static] = ACTIONS(1561), + [anon_sym_tlocal] = ACTIONS(1561), + [anon_sym_SEMI] = ACTIONS(1563), + [anon_sym_fn] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_RBRACE] = ACTIONS(1563), + [anon_sym_const] = ACTIONS(1561), + [anon_sym_var] = ACTIONS(1561), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_continue] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1561), + [anon_sym_defer] = ACTIONS(1561), + [anon_sym_assert] = ACTIONS(1561), + [anon_sym_case] = ACTIONS(1561), + [anon_sym_default] = ACTIONS(1561), + [anon_sym_nextcase] = ACTIONS(1561), + [anon_sym_switch] = ACTIONS(1561), + [anon_sym_AMP_AMP] = ACTIONS(1563), + [anon_sym_if] = ACTIONS(1561), + [anon_sym_for] = ACTIONS(1561), + [anon_sym_foreach] = ACTIONS(1561), + [anon_sym_foreach_r] = ACTIONS(1561), + [anon_sym_while] = ACTIONS(1561), + [anon_sym_do] = ACTIONS(1561), + [anon_sym_int] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1561), + [anon_sym_STAR] = ACTIONS(1563), + [anon_sym_asm] = ACTIONS(1561), + [anon_sym_DOLLARassert] = ACTIONS(1561), + [anon_sym_DOLLARerror] = ACTIONS(1561), + [anon_sym_DOLLARecho] = ACTIONS(1561), + [anon_sym_DOLLARif] = ACTIONS(1561), + [anon_sym_DOLLARswitch] = ACTIONS(1561), + [anon_sym_DOLLARfor] = ACTIONS(1561), + [anon_sym_DOLLARforeach] = ACTIONS(1561), + [anon_sym_DOLLARalignof] = ACTIONS(1561), + [anon_sym_DOLLARextnameof] = ACTIONS(1561), + [anon_sym_DOLLARnameof] = ACTIONS(1561), + [anon_sym_DOLLARoffsetof] = ACTIONS(1561), + [anon_sym_DOLLARqnameof] = ACTIONS(1561), + [anon_sym_DOLLARvaconst] = ACTIONS(1561), + [anon_sym_DOLLARvaarg] = ACTIONS(1561), + [anon_sym_DOLLARvaref] = ACTIONS(1561), + [anon_sym_DOLLARvaexpr] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1561), + [anon_sym_false] = ACTIONS(1561), + [anon_sym_null] = ACTIONS(1561), + [anon_sym_DOLLARvacount] = ACTIONS(1561), + [anon_sym_DOLLARappend] = ACTIONS(1561), + [anon_sym_DOLLARconcat] = ACTIONS(1561), + [anon_sym_DOLLAReval] = ACTIONS(1561), + [anon_sym_DOLLARis_const] = ACTIONS(1561), + [anon_sym_DOLLARsizeof] = ACTIONS(1561), + [anon_sym_DOLLARstringify] = ACTIONS(1561), + [anon_sym_DOLLARand] = ACTIONS(1561), + [anon_sym_DOLLARdefined] = ACTIONS(1561), + [anon_sym_DOLLARembed] = ACTIONS(1561), + [anon_sym_DOLLARor] = ACTIONS(1561), + [anon_sym_DOLLARfeature] = ACTIONS(1561), + [anon_sym_DOLLARassignable] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1563), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_PLUS_PLUS] = ACTIONS(1563), + [anon_sym_DASH_DASH] = ACTIONS(1563), + [anon_sym_typeid] = ACTIONS(1561), + [anon_sym_LBRACE_PIPE] = ACTIONS(1563), + [anon_sym_PIPE_RBRACE] = ACTIONS(1563), + [anon_sym_void] = ACTIONS(1561), + [anon_sym_bool] = ACTIONS(1561), + [anon_sym_char] = ACTIONS(1561), + [anon_sym_ichar] = ACTIONS(1561), + [anon_sym_short] = ACTIONS(1561), + [anon_sym_ushort] = ACTIONS(1561), + [anon_sym_uint] = ACTIONS(1561), + [anon_sym_long] = ACTIONS(1561), + [anon_sym_ulong] = ACTIONS(1561), + [anon_sym_int128] = ACTIONS(1561), + [anon_sym_uint128] = ACTIONS(1561), + [anon_sym_float] = ACTIONS(1561), + [anon_sym_double] = ACTIONS(1561), + [anon_sym_float16] = ACTIONS(1561), + [anon_sym_bfloat16] = ACTIONS(1561), + [anon_sym_float128] = ACTIONS(1561), + [anon_sym_iptr] = ACTIONS(1561), + [anon_sym_uptr] = ACTIONS(1561), + [anon_sym_isz] = ACTIONS(1561), + [anon_sym_usz] = ACTIONS(1561), + [anon_sym_anyfault] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1561), + [anon_sym_DOLLARtypeof] = ACTIONS(1561), + [anon_sym_DOLLARtypefrom] = ACTIONS(1561), + [anon_sym_DOLLARvatype] = ACTIONS(1561), + [anon_sym_DOLLARevaltype] = ACTIONS(1561), + [sym_real_literal] = ACTIONS(1563), }, [390] = { [sym_line_comment] = STATE(390), [sym_doc_comment] = STATE(390), [sym_block_comment] = STATE(390), - [sym_ident] = ACTIONS(1382), - [sym_integer_literal] = ACTIONS(1384), - [anon_sym_SQUOTE] = ACTIONS(1384), - [anon_sym_DQUOTE] = ACTIONS(1384), - [anon_sym_BQUOTE] = ACTIONS(1384), - [sym_bytes_literal] = ACTIONS(1384), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1382), - [sym_at_ident] = ACTIONS(1384), - [sym_hash_ident] = ACTIONS(1384), - [sym_type_ident] = ACTIONS(1384), - [sym_ct_type_ident] = ACTIONS(1384), - [sym_const_ident] = ACTIONS(1382), - [sym_builtin] = ACTIONS(1384), - [anon_sym_LPAREN] = ACTIONS(1384), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_static] = ACTIONS(1382), - [anon_sym_tlocal] = ACTIONS(1382), - [anon_sym_SEMI] = ACTIONS(1384), - [anon_sym_fn] = ACTIONS(1382), - [anon_sym_LBRACE] = ACTIONS(1382), - [anon_sym_RBRACE] = ACTIONS(1384), - [anon_sym_const] = ACTIONS(1382), - [anon_sym_var] = ACTIONS(1382), - [anon_sym_return] = ACTIONS(1382), - [anon_sym_continue] = ACTIONS(1382), - [anon_sym_break] = ACTIONS(1382), - [anon_sym_defer] = ACTIONS(1382), - [anon_sym_assert] = ACTIONS(1382), - [anon_sym_case] = ACTIONS(1382), - [anon_sym_default] = ACTIONS(1382), - [anon_sym_nextcase] = ACTIONS(1382), - [anon_sym_switch] = ACTIONS(1382), - [anon_sym_AMP_AMP] = ACTIONS(1384), - [anon_sym_if] = ACTIONS(1382), - [anon_sym_else] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1382), - [anon_sym_foreach] = ACTIONS(1382), - [anon_sym_foreach_r] = ACTIONS(1382), - [anon_sym_while] = ACTIONS(1382), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_int] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_asm] = ACTIONS(1382), - [anon_sym_DOLLARassert] = ACTIONS(1382), - [anon_sym_DOLLARerror] = ACTIONS(1382), - [anon_sym_DOLLARecho] = ACTIONS(1382), - [anon_sym_DOLLARif] = ACTIONS(1382), - [anon_sym_DOLLARswitch] = ACTIONS(1382), - [anon_sym_DOLLARfor] = ACTIONS(1382), - [anon_sym_DOLLARforeach] = ACTIONS(1382), - [anon_sym_DOLLARalignof] = ACTIONS(1382), - [anon_sym_DOLLARextnameof] = ACTIONS(1382), - [anon_sym_DOLLARnameof] = ACTIONS(1382), - [anon_sym_DOLLARoffsetof] = ACTIONS(1382), - [anon_sym_DOLLARqnameof] = ACTIONS(1382), - [anon_sym_DOLLARvaconst] = ACTIONS(1382), - [anon_sym_DOLLARvaarg] = ACTIONS(1382), - [anon_sym_DOLLARvaref] = ACTIONS(1382), - [anon_sym_DOLLARvaexpr] = ACTIONS(1382), - [anon_sym_true] = ACTIONS(1382), - [anon_sym_false] = ACTIONS(1382), - [anon_sym_null] = ACTIONS(1382), - [anon_sym_DOLLARvacount] = ACTIONS(1382), - [anon_sym_DOLLARappend] = ACTIONS(1382), - [anon_sym_DOLLARconcat] = ACTIONS(1382), - [anon_sym_DOLLAReval] = ACTIONS(1382), - [anon_sym_DOLLARis_const] = ACTIONS(1382), - [anon_sym_DOLLARsizeof] = ACTIONS(1382), - [anon_sym_DOLLARstringify] = ACTIONS(1382), - [anon_sym_DOLLARand] = ACTIONS(1382), - [anon_sym_DOLLARdefined] = ACTIONS(1382), - [anon_sym_DOLLARembed] = ACTIONS(1382), - [anon_sym_DOLLARor] = ACTIONS(1382), - [anon_sym_DOLLARfeature] = ACTIONS(1382), - [anon_sym_DOLLARassignable] = ACTIONS(1382), - [anon_sym_BANG] = ACTIONS(1384), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_PLUS_PLUS] = ACTIONS(1384), - [anon_sym_DASH_DASH] = ACTIONS(1384), - [anon_sym_typeid] = ACTIONS(1382), - [anon_sym_LBRACE_PIPE] = ACTIONS(1384), - [anon_sym_PIPE_RBRACE] = ACTIONS(1384), - [anon_sym_void] = ACTIONS(1382), - [anon_sym_bool] = ACTIONS(1382), - [anon_sym_char] = ACTIONS(1382), - [anon_sym_ichar] = ACTIONS(1382), - [anon_sym_short] = ACTIONS(1382), - [anon_sym_ushort] = ACTIONS(1382), - [anon_sym_uint] = ACTIONS(1382), - [anon_sym_long] = ACTIONS(1382), - [anon_sym_ulong] = ACTIONS(1382), - [anon_sym_int128] = ACTIONS(1382), - [anon_sym_uint128] = ACTIONS(1382), - [anon_sym_float] = ACTIONS(1382), - [anon_sym_double] = ACTIONS(1382), - [anon_sym_float16] = ACTIONS(1382), - [anon_sym_bfloat16] = ACTIONS(1382), - [anon_sym_float128] = ACTIONS(1382), - [anon_sym_iptr] = ACTIONS(1382), - [anon_sym_uptr] = ACTIONS(1382), - [anon_sym_isz] = ACTIONS(1382), - [anon_sym_usz] = ACTIONS(1382), - [anon_sym_anyfault] = ACTIONS(1382), - [anon_sym_any] = ACTIONS(1382), - [anon_sym_DOLLARtypeof] = ACTIONS(1382), - [anon_sym_DOLLARtypefrom] = ACTIONS(1382), - [anon_sym_DOLLARvatype] = ACTIONS(1382), - [anon_sym_DOLLARevaltype] = ACTIONS(1382), - [sym_real_literal] = ACTIONS(1384), + [sym_ident] = ACTIONS(1565), + [sym_integer_literal] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_DQUOTE] = ACTIONS(1567), + [anon_sym_BQUOTE] = ACTIONS(1567), + [sym_bytes_literal] = ACTIONS(1567), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1565), + [sym_at_ident] = ACTIONS(1567), + [sym_hash_ident] = ACTIONS(1567), + [sym_type_ident] = ACTIONS(1567), + [sym_ct_type_ident] = ACTIONS(1567), + [sym_const_ident] = ACTIONS(1565), + [sym_builtin] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_static] = ACTIONS(1565), + [anon_sym_tlocal] = ACTIONS(1565), + [anon_sym_SEMI] = ACTIONS(1567), + [anon_sym_fn] = ACTIONS(1565), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_RBRACE] = ACTIONS(1567), + [anon_sym_const] = ACTIONS(1565), + [anon_sym_var] = ACTIONS(1565), + [anon_sym_return] = ACTIONS(1565), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_break] = ACTIONS(1565), + [anon_sym_defer] = ACTIONS(1565), + [anon_sym_assert] = ACTIONS(1565), + [anon_sym_case] = ACTIONS(1565), + [anon_sym_default] = ACTIONS(1565), + [anon_sym_nextcase] = ACTIONS(1565), + [anon_sym_switch] = ACTIONS(1565), + [anon_sym_AMP_AMP] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(1565), + [anon_sym_for] = ACTIONS(1565), + [anon_sym_foreach] = ACTIONS(1565), + [anon_sym_foreach_r] = ACTIONS(1565), + [anon_sym_while] = ACTIONS(1565), + [anon_sym_do] = ACTIONS(1565), + [anon_sym_int] = ACTIONS(1565), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_STAR] = ACTIONS(1567), + [anon_sym_asm] = ACTIONS(1565), + [anon_sym_DOLLARassert] = ACTIONS(1565), + [anon_sym_DOLLARerror] = ACTIONS(1565), + [anon_sym_DOLLARecho] = ACTIONS(1565), + [anon_sym_DOLLARif] = ACTIONS(1565), + [anon_sym_DOLLARswitch] = ACTIONS(1565), + [anon_sym_DOLLARfor] = ACTIONS(1565), + [anon_sym_DOLLARforeach] = ACTIONS(1565), + [anon_sym_DOLLARalignof] = ACTIONS(1565), + [anon_sym_DOLLARextnameof] = ACTIONS(1565), + [anon_sym_DOLLARnameof] = ACTIONS(1565), + [anon_sym_DOLLARoffsetof] = ACTIONS(1565), + [anon_sym_DOLLARqnameof] = ACTIONS(1565), + [anon_sym_DOLLARvaconst] = ACTIONS(1565), + [anon_sym_DOLLARvaarg] = ACTIONS(1565), + [anon_sym_DOLLARvaref] = ACTIONS(1565), + [anon_sym_DOLLARvaexpr] = ACTIONS(1565), + [anon_sym_true] = ACTIONS(1565), + [anon_sym_false] = ACTIONS(1565), + [anon_sym_null] = ACTIONS(1565), + [anon_sym_DOLLARvacount] = ACTIONS(1565), + [anon_sym_DOLLARappend] = ACTIONS(1565), + [anon_sym_DOLLARconcat] = ACTIONS(1565), + [anon_sym_DOLLAReval] = ACTIONS(1565), + [anon_sym_DOLLARis_const] = ACTIONS(1565), + [anon_sym_DOLLARsizeof] = ACTIONS(1565), + [anon_sym_DOLLARstringify] = ACTIONS(1565), + [anon_sym_DOLLARand] = ACTIONS(1565), + [anon_sym_DOLLARdefined] = ACTIONS(1565), + [anon_sym_DOLLARembed] = ACTIONS(1565), + [anon_sym_DOLLARor] = ACTIONS(1565), + [anon_sym_DOLLARfeature] = ACTIONS(1565), + [anon_sym_DOLLARassignable] = ACTIONS(1565), + [anon_sym_BANG] = ACTIONS(1567), + [anon_sym_TILDE] = ACTIONS(1567), + [anon_sym_PLUS_PLUS] = ACTIONS(1567), + [anon_sym_DASH_DASH] = ACTIONS(1567), + [anon_sym_typeid] = ACTIONS(1565), + [anon_sym_LBRACE_PIPE] = ACTIONS(1567), + [anon_sym_PIPE_RBRACE] = ACTIONS(1567), + [anon_sym_void] = ACTIONS(1565), + [anon_sym_bool] = ACTIONS(1565), + [anon_sym_char] = ACTIONS(1565), + [anon_sym_ichar] = ACTIONS(1565), + [anon_sym_short] = ACTIONS(1565), + [anon_sym_ushort] = ACTIONS(1565), + [anon_sym_uint] = ACTIONS(1565), + [anon_sym_long] = ACTIONS(1565), + [anon_sym_ulong] = ACTIONS(1565), + [anon_sym_int128] = ACTIONS(1565), + [anon_sym_uint128] = ACTIONS(1565), + [anon_sym_float] = ACTIONS(1565), + [anon_sym_double] = ACTIONS(1565), + [anon_sym_float16] = ACTIONS(1565), + [anon_sym_bfloat16] = ACTIONS(1565), + [anon_sym_float128] = ACTIONS(1565), + [anon_sym_iptr] = ACTIONS(1565), + [anon_sym_uptr] = ACTIONS(1565), + [anon_sym_isz] = ACTIONS(1565), + [anon_sym_usz] = ACTIONS(1565), + [anon_sym_anyfault] = ACTIONS(1565), + [anon_sym_any] = ACTIONS(1565), + [anon_sym_DOLLARtypeof] = ACTIONS(1565), + [anon_sym_DOLLARtypefrom] = ACTIONS(1565), + [anon_sym_DOLLARvatype] = ACTIONS(1565), + [anon_sym_DOLLARevaltype] = ACTIONS(1565), + [sym_real_literal] = ACTIONS(1567), }, [391] = { [sym_line_comment] = STATE(391), [sym_doc_comment] = STATE(391), [sym_block_comment] = STATE(391), - [sym_ident] = ACTIONS(1386), - [sym_integer_literal] = ACTIONS(1388), - [anon_sym_SQUOTE] = ACTIONS(1388), - [anon_sym_DQUOTE] = ACTIONS(1388), - [anon_sym_BQUOTE] = ACTIONS(1388), - [sym_bytes_literal] = ACTIONS(1388), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1386), - [sym_at_ident] = ACTIONS(1388), - [sym_hash_ident] = ACTIONS(1388), - [sym_type_ident] = ACTIONS(1388), - [sym_ct_type_ident] = ACTIONS(1388), - [sym_const_ident] = ACTIONS(1386), - [sym_builtin] = ACTIONS(1388), - [anon_sym_LPAREN] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1386), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_tlocal] = ACTIONS(1386), - [anon_sym_SEMI] = ACTIONS(1388), - [anon_sym_fn] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_RBRACE] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1386), - [anon_sym_var] = ACTIONS(1386), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_continue] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1386), - [anon_sym_defer] = ACTIONS(1386), - [anon_sym_assert] = ACTIONS(1386), - [anon_sym_case] = ACTIONS(1386), - [anon_sym_default] = ACTIONS(1386), - [anon_sym_nextcase] = ACTIONS(1386), - [anon_sym_switch] = ACTIONS(1386), - [anon_sym_AMP_AMP] = ACTIONS(1388), - [anon_sym_if] = ACTIONS(1386), - [anon_sym_for] = ACTIONS(1386), - [anon_sym_foreach] = ACTIONS(1386), - [anon_sym_foreach_r] = ACTIONS(1386), - [anon_sym_while] = ACTIONS(1386), - [anon_sym_do] = ACTIONS(1386), - [anon_sym_int] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_asm] = ACTIONS(1386), - [anon_sym_DOLLARassert] = ACTIONS(1386), - [anon_sym_DOLLARerror] = ACTIONS(1386), - [anon_sym_DOLLARecho] = ACTIONS(1386), - [anon_sym_DOLLARif] = ACTIONS(1386), - [anon_sym_DOLLARswitch] = ACTIONS(1386), - [anon_sym_DOLLARfor] = ACTIONS(1386), - [anon_sym_DOLLARforeach] = ACTIONS(1386), - [anon_sym_DOLLARalignof] = ACTIONS(1386), - [anon_sym_DOLLARextnameof] = ACTIONS(1386), - [anon_sym_DOLLARnameof] = ACTIONS(1386), - [anon_sym_DOLLARoffsetof] = ACTIONS(1386), - [anon_sym_DOLLARqnameof] = ACTIONS(1386), - [anon_sym_DOLLARvaconst] = ACTIONS(1386), - [anon_sym_DOLLARvaarg] = ACTIONS(1386), - [anon_sym_DOLLARvaref] = ACTIONS(1386), - [anon_sym_DOLLARvaexpr] = ACTIONS(1386), - [anon_sym_true] = ACTIONS(1386), - [anon_sym_false] = ACTIONS(1386), - [anon_sym_null] = ACTIONS(1386), - [anon_sym_DOLLARvacount] = ACTIONS(1386), - [anon_sym_DOLLARappend] = ACTIONS(1386), - [anon_sym_DOLLARconcat] = ACTIONS(1386), - [anon_sym_DOLLAReval] = ACTIONS(1386), - [anon_sym_DOLLARis_const] = ACTIONS(1386), - [anon_sym_DOLLARsizeof] = ACTIONS(1386), - [anon_sym_DOLLARstringify] = ACTIONS(1386), - [anon_sym_DOLLARand] = ACTIONS(1386), - [anon_sym_DOLLARdefined] = ACTIONS(1386), - [anon_sym_DOLLARembed] = ACTIONS(1386), - [anon_sym_DOLLARor] = ACTIONS(1386), - [anon_sym_DOLLARfeature] = ACTIONS(1386), - [anon_sym_DOLLARassignable] = ACTIONS(1386), - [anon_sym_BANG] = ACTIONS(1388), - [anon_sym_TILDE] = ACTIONS(1388), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [anon_sym_typeid] = ACTIONS(1386), - [anon_sym_LBRACE_PIPE] = ACTIONS(1388), - [anon_sym_PIPE_RBRACE] = ACTIONS(1388), - [anon_sym_void] = ACTIONS(1386), - [anon_sym_bool] = ACTIONS(1386), - [anon_sym_char] = ACTIONS(1386), - [anon_sym_ichar] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_ushort] = ACTIONS(1386), - [anon_sym_uint] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1386), - [anon_sym_ulong] = ACTIONS(1386), - [anon_sym_int128] = ACTIONS(1386), - [anon_sym_uint128] = ACTIONS(1386), - [anon_sym_float] = ACTIONS(1386), - [anon_sym_double] = ACTIONS(1386), - [anon_sym_float16] = ACTIONS(1386), - [anon_sym_bfloat16] = ACTIONS(1386), - [anon_sym_float128] = ACTIONS(1386), - [anon_sym_iptr] = ACTIONS(1386), - [anon_sym_uptr] = ACTIONS(1386), - [anon_sym_isz] = ACTIONS(1386), - [anon_sym_usz] = ACTIONS(1386), - [anon_sym_anyfault] = ACTIONS(1386), - [anon_sym_any] = ACTIONS(1386), - [anon_sym_DOLLARtypeof] = ACTIONS(1386), - [anon_sym_DOLLARtypefrom] = ACTIONS(1386), - [anon_sym_DOLLARvatype] = ACTIONS(1386), - [anon_sym_DOLLARevaltype] = ACTIONS(1386), - [sym_real_literal] = ACTIONS(1388), + [sym_ident] = ACTIONS(1355), + [sym_integer_literal] = ACTIONS(1357), + [anon_sym_SQUOTE] = ACTIONS(1357), + [anon_sym_DQUOTE] = ACTIONS(1357), + [anon_sym_BQUOTE] = ACTIONS(1357), + [sym_bytes_literal] = ACTIONS(1357), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1355), + [sym_at_ident] = ACTIONS(1357), + [sym_hash_ident] = ACTIONS(1357), + [sym_type_ident] = ACTIONS(1357), + [sym_ct_type_ident] = ACTIONS(1357), + [sym_const_ident] = ACTIONS(1355), + [sym_builtin] = ACTIONS(1357), + [anon_sym_LPAREN] = ACTIONS(1357), + [anon_sym_AMP] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1355), + [anon_sym_tlocal] = ACTIONS(1355), + [anon_sym_SEMI] = ACTIONS(1357), + [anon_sym_fn] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_const] = ACTIONS(1355), + [anon_sym_var] = ACTIONS(1355), + [anon_sym_return] = ACTIONS(1355), + [anon_sym_continue] = ACTIONS(1355), + [anon_sym_break] = ACTIONS(1355), + [anon_sym_defer] = ACTIONS(1355), + [anon_sym_assert] = ACTIONS(1355), + [anon_sym_nextcase] = ACTIONS(1355), + [anon_sym_switch] = ACTIONS(1355), + [anon_sym_AMP_AMP] = ACTIONS(1357), + [anon_sym_if] = ACTIONS(1355), + [anon_sym_else] = ACTIONS(1355), + [anon_sym_for] = ACTIONS(1355), + [anon_sym_foreach] = ACTIONS(1355), + [anon_sym_foreach_r] = ACTIONS(1355), + [anon_sym_while] = ACTIONS(1355), + [anon_sym_do] = ACTIONS(1355), + [anon_sym_int] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1355), + [anon_sym_DASH] = ACTIONS(1355), + [anon_sym_STAR] = ACTIONS(1357), + [anon_sym_asm] = ACTIONS(1355), + [anon_sym_DOLLARassert] = ACTIONS(1355), + [anon_sym_DOLLARerror] = ACTIONS(1355), + [anon_sym_DOLLARecho] = ACTIONS(1355), + [anon_sym_DOLLARif] = ACTIONS(1355), + [anon_sym_DOLLARcase] = ACTIONS(1355), + [anon_sym_DOLLARdefault] = ACTIONS(1355), + [anon_sym_DOLLARswitch] = ACTIONS(1355), + [anon_sym_DOLLARendswitch] = ACTIONS(1355), + [anon_sym_DOLLARfor] = ACTIONS(1355), + [anon_sym_DOLLARforeach] = ACTIONS(1355), + [anon_sym_DOLLARalignof] = ACTIONS(1355), + [anon_sym_DOLLARextnameof] = ACTIONS(1355), + [anon_sym_DOLLARnameof] = ACTIONS(1355), + [anon_sym_DOLLARoffsetof] = ACTIONS(1355), + [anon_sym_DOLLARqnameof] = ACTIONS(1355), + [anon_sym_DOLLARvaconst] = ACTIONS(1355), + [anon_sym_DOLLARvaarg] = ACTIONS(1355), + [anon_sym_DOLLARvaref] = ACTIONS(1355), + [anon_sym_DOLLARvaexpr] = ACTIONS(1355), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), + [anon_sym_null] = ACTIONS(1355), + [anon_sym_DOLLARvacount] = ACTIONS(1355), + [anon_sym_DOLLARappend] = ACTIONS(1355), + [anon_sym_DOLLARconcat] = ACTIONS(1355), + [anon_sym_DOLLAReval] = ACTIONS(1355), + [anon_sym_DOLLARis_const] = ACTIONS(1355), + [anon_sym_DOLLARsizeof] = ACTIONS(1355), + [anon_sym_DOLLARstringify] = ACTIONS(1355), + [anon_sym_DOLLARand] = ACTIONS(1355), + [anon_sym_DOLLARdefined] = ACTIONS(1355), + [anon_sym_DOLLARembed] = ACTIONS(1355), + [anon_sym_DOLLARor] = ACTIONS(1355), + [anon_sym_DOLLARfeature] = ACTIONS(1355), + [anon_sym_DOLLARassignable] = ACTIONS(1355), + [anon_sym_BANG] = ACTIONS(1357), + [anon_sym_TILDE] = ACTIONS(1357), + [anon_sym_PLUS_PLUS] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1357), + [anon_sym_typeid] = ACTIONS(1355), + [anon_sym_LBRACE_PIPE] = ACTIONS(1357), + [anon_sym_void] = ACTIONS(1355), + [anon_sym_bool] = ACTIONS(1355), + [anon_sym_char] = ACTIONS(1355), + [anon_sym_ichar] = ACTIONS(1355), + [anon_sym_short] = ACTIONS(1355), + [anon_sym_ushort] = ACTIONS(1355), + [anon_sym_uint] = ACTIONS(1355), + [anon_sym_long] = ACTIONS(1355), + [anon_sym_ulong] = ACTIONS(1355), + [anon_sym_int128] = ACTIONS(1355), + [anon_sym_uint128] = ACTIONS(1355), + [anon_sym_float] = ACTIONS(1355), + [anon_sym_double] = ACTIONS(1355), + [anon_sym_float16] = ACTIONS(1355), + [anon_sym_bfloat16] = ACTIONS(1355), + [anon_sym_float128] = ACTIONS(1355), + [anon_sym_iptr] = ACTIONS(1355), + [anon_sym_uptr] = ACTIONS(1355), + [anon_sym_isz] = ACTIONS(1355), + [anon_sym_usz] = ACTIONS(1355), + [anon_sym_anyfault] = ACTIONS(1355), + [anon_sym_any] = ACTIONS(1355), + [anon_sym_DOLLARtypeof] = ACTIONS(1355), + [anon_sym_DOLLARtypefrom] = ACTIONS(1355), + [anon_sym_DOLLARvatype] = ACTIONS(1355), + [anon_sym_DOLLARevaltype] = ACTIONS(1355), + [sym_real_literal] = ACTIONS(1357), }, [392] = { [sym_line_comment] = STATE(392), [sym_doc_comment] = STATE(392), [sym_block_comment] = STATE(392), - [sym_ident] = ACTIONS(1390), - [sym_integer_literal] = ACTIONS(1392), - [anon_sym_SQUOTE] = ACTIONS(1392), - [anon_sym_DQUOTE] = ACTIONS(1392), - [anon_sym_BQUOTE] = ACTIONS(1392), - [sym_bytes_literal] = ACTIONS(1392), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1390), - [sym_at_ident] = ACTIONS(1392), - [sym_hash_ident] = ACTIONS(1392), - [sym_type_ident] = ACTIONS(1392), - [sym_ct_type_ident] = ACTIONS(1392), - [sym_const_ident] = ACTIONS(1390), - [sym_builtin] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1392), - [anon_sym_AMP] = ACTIONS(1390), - [anon_sym_static] = ACTIONS(1390), - [anon_sym_tlocal] = ACTIONS(1390), - [anon_sym_SEMI] = ACTIONS(1392), - [anon_sym_fn] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1390), - [anon_sym_RBRACE] = ACTIONS(1392), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_var] = ACTIONS(1390), - [anon_sym_return] = ACTIONS(1390), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_break] = ACTIONS(1390), - [anon_sym_defer] = ACTIONS(1390), - [anon_sym_assert] = ACTIONS(1390), - [anon_sym_case] = ACTIONS(1390), - [anon_sym_default] = ACTIONS(1390), - [anon_sym_nextcase] = ACTIONS(1390), - [anon_sym_switch] = ACTIONS(1390), - [anon_sym_AMP_AMP] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1390), - [anon_sym_for] = ACTIONS(1390), - [anon_sym_foreach] = ACTIONS(1390), - [anon_sym_foreach_r] = ACTIONS(1390), - [anon_sym_while] = ACTIONS(1390), - [anon_sym_do] = ACTIONS(1390), - [anon_sym_int] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1390), - [anon_sym_DASH] = ACTIONS(1390), - [anon_sym_STAR] = ACTIONS(1392), - [anon_sym_asm] = ACTIONS(1390), - [anon_sym_DOLLARassert] = ACTIONS(1390), - [anon_sym_DOLLARerror] = ACTIONS(1390), - [anon_sym_DOLLARecho] = ACTIONS(1390), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_DOLLARswitch] = ACTIONS(1390), - [anon_sym_DOLLARfor] = ACTIONS(1390), - [anon_sym_DOLLARforeach] = ACTIONS(1390), - [anon_sym_DOLLARalignof] = ACTIONS(1390), - [anon_sym_DOLLARextnameof] = ACTIONS(1390), - [anon_sym_DOLLARnameof] = ACTIONS(1390), - [anon_sym_DOLLARoffsetof] = ACTIONS(1390), - [anon_sym_DOLLARqnameof] = ACTIONS(1390), - [anon_sym_DOLLARvaconst] = ACTIONS(1390), - [anon_sym_DOLLARvaarg] = ACTIONS(1390), - [anon_sym_DOLLARvaref] = ACTIONS(1390), - [anon_sym_DOLLARvaexpr] = ACTIONS(1390), - [anon_sym_true] = ACTIONS(1390), - [anon_sym_false] = ACTIONS(1390), - [anon_sym_null] = ACTIONS(1390), - [anon_sym_DOLLARvacount] = ACTIONS(1390), - [anon_sym_DOLLARappend] = ACTIONS(1390), - [anon_sym_DOLLARconcat] = ACTIONS(1390), - [anon_sym_DOLLAReval] = ACTIONS(1390), - [anon_sym_DOLLARis_const] = ACTIONS(1390), - [anon_sym_DOLLARsizeof] = ACTIONS(1390), - [anon_sym_DOLLARstringify] = ACTIONS(1390), - [anon_sym_DOLLARand] = ACTIONS(1390), - [anon_sym_DOLLARdefined] = ACTIONS(1390), - [anon_sym_DOLLARembed] = ACTIONS(1390), - [anon_sym_DOLLARor] = ACTIONS(1390), - [anon_sym_DOLLARfeature] = ACTIONS(1390), - [anon_sym_DOLLARassignable] = ACTIONS(1390), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_PLUS_PLUS] = ACTIONS(1392), - [anon_sym_DASH_DASH] = ACTIONS(1392), - [anon_sym_typeid] = ACTIONS(1390), - [anon_sym_LBRACE_PIPE] = ACTIONS(1392), - [anon_sym_PIPE_RBRACE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1390), - [anon_sym_bool] = ACTIONS(1390), - [anon_sym_char] = ACTIONS(1390), - [anon_sym_ichar] = ACTIONS(1390), - [anon_sym_short] = ACTIONS(1390), - [anon_sym_ushort] = ACTIONS(1390), - [anon_sym_uint] = ACTIONS(1390), - [anon_sym_long] = ACTIONS(1390), - [anon_sym_ulong] = ACTIONS(1390), - [anon_sym_int128] = ACTIONS(1390), - [anon_sym_uint128] = ACTIONS(1390), - [anon_sym_float] = ACTIONS(1390), - [anon_sym_double] = ACTIONS(1390), - [anon_sym_float16] = ACTIONS(1390), - [anon_sym_bfloat16] = ACTIONS(1390), - [anon_sym_float128] = ACTIONS(1390), - [anon_sym_iptr] = ACTIONS(1390), - [anon_sym_uptr] = ACTIONS(1390), - [anon_sym_isz] = ACTIONS(1390), - [anon_sym_usz] = ACTIONS(1390), - [anon_sym_anyfault] = ACTIONS(1390), - [anon_sym_any] = ACTIONS(1390), - [anon_sym_DOLLARtypeof] = ACTIONS(1390), - [anon_sym_DOLLARtypefrom] = ACTIONS(1390), - [anon_sym_DOLLARvatype] = ACTIONS(1390), - [anon_sym_DOLLARevaltype] = ACTIONS(1390), - [sym_real_literal] = ACTIONS(1392), + [sym_ident] = ACTIONS(1569), + [sym_integer_literal] = ACTIONS(1571), + [anon_sym_SQUOTE] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1571), + [anon_sym_BQUOTE] = ACTIONS(1571), + [sym_bytes_literal] = ACTIONS(1571), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1569), + [sym_at_ident] = ACTIONS(1571), + [sym_hash_ident] = ACTIONS(1571), + [sym_type_ident] = ACTIONS(1571), + [sym_ct_type_ident] = ACTIONS(1571), + [sym_const_ident] = ACTIONS(1569), + [sym_builtin] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1571), + [anon_sym_AMP] = ACTIONS(1569), + [anon_sym_static] = ACTIONS(1569), + [anon_sym_tlocal] = ACTIONS(1569), + [anon_sym_SEMI] = ACTIONS(1571), + [anon_sym_fn] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1569), + [anon_sym_RBRACE] = ACTIONS(1571), + [anon_sym_const] = ACTIONS(1569), + [anon_sym_var] = ACTIONS(1569), + [anon_sym_return] = ACTIONS(1569), + [anon_sym_continue] = ACTIONS(1569), + [anon_sym_break] = ACTIONS(1569), + [anon_sym_defer] = ACTIONS(1569), + [anon_sym_assert] = ACTIONS(1569), + [anon_sym_case] = ACTIONS(1569), + [anon_sym_default] = ACTIONS(1569), + [anon_sym_nextcase] = ACTIONS(1569), + [anon_sym_switch] = ACTIONS(1569), + [anon_sym_AMP_AMP] = ACTIONS(1571), + [anon_sym_if] = ACTIONS(1569), + [anon_sym_for] = ACTIONS(1569), + [anon_sym_foreach] = ACTIONS(1569), + [anon_sym_foreach_r] = ACTIONS(1569), + [anon_sym_while] = ACTIONS(1569), + [anon_sym_do] = ACTIONS(1569), + [anon_sym_int] = ACTIONS(1569), + [anon_sym_PLUS] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_STAR] = ACTIONS(1571), + [anon_sym_asm] = ACTIONS(1569), + [anon_sym_DOLLARassert] = ACTIONS(1569), + [anon_sym_DOLLARerror] = ACTIONS(1569), + [anon_sym_DOLLARecho] = ACTIONS(1569), + [anon_sym_DOLLARif] = ACTIONS(1569), + [anon_sym_DOLLARswitch] = ACTIONS(1569), + [anon_sym_DOLLARfor] = ACTIONS(1569), + [anon_sym_DOLLARforeach] = ACTIONS(1569), + [anon_sym_DOLLARalignof] = ACTIONS(1569), + [anon_sym_DOLLARextnameof] = ACTIONS(1569), + [anon_sym_DOLLARnameof] = ACTIONS(1569), + [anon_sym_DOLLARoffsetof] = ACTIONS(1569), + [anon_sym_DOLLARqnameof] = ACTIONS(1569), + [anon_sym_DOLLARvaconst] = ACTIONS(1569), + [anon_sym_DOLLARvaarg] = ACTIONS(1569), + [anon_sym_DOLLARvaref] = ACTIONS(1569), + [anon_sym_DOLLARvaexpr] = ACTIONS(1569), + [anon_sym_true] = ACTIONS(1569), + [anon_sym_false] = ACTIONS(1569), + [anon_sym_null] = ACTIONS(1569), + [anon_sym_DOLLARvacount] = ACTIONS(1569), + [anon_sym_DOLLARappend] = ACTIONS(1569), + [anon_sym_DOLLARconcat] = ACTIONS(1569), + [anon_sym_DOLLAReval] = ACTIONS(1569), + [anon_sym_DOLLARis_const] = ACTIONS(1569), + [anon_sym_DOLLARsizeof] = ACTIONS(1569), + [anon_sym_DOLLARstringify] = ACTIONS(1569), + [anon_sym_DOLLARand] = ACTIONS(1569), + [anon_sym_DOLLARdefined] = ACTIONS(1569), + [anon_sym_DOLLARembed] = ACTIONS(1569), + [anon_sym_DOLLARor] = ACTIONS(1569), + [anon_sym_DOLLARfeature] = ACTIONS(1569), + [anon_sym_DOLLARassignable] = ACTIONS(1569), + [anon_sym_BANG] = ACTIONS(1571), + [anon_sym_TILDE] = ACTIONS(1571), + [anon_sym_PLUS_PLUS] = ACTIONS(1571), + [anon_sym_DASH_DASH] = ACTIONS(1571), + [anon_sym_typeid] = ACTIONS(1569), + [anon_sym_LBRACE_PIPE] = ACTIONS(1571), + [anon_sym_PIPE_RBRACE] = ACTIONS(1571), + [anon_sym_void] = ACTIONS(1569), + [anon_sym_bool] = ACTIONS(1569), + [anon_sym_char] = ACTIONS(1569), + [anon_sym_ichar] = ACTIONS(1569), + [anon_sym_short] = ACTIONS(1569), + [anon_sym_ushort] = ACTIONS(1569), + [anon_sym_uint] = ACTIONS(1569), + [anon_sym_long] = ACTIONS(1569), + [anon_sym_ulong] = ACTIONS(1569), + [anon_sym_int128] = ACTIONS(1569), + [anon_sym_uint128] = ACTIONS(1569), + [anon_sym_float] = ACTIONS(1569), + [anon_sym_double] = ACTIONS(1569), + [anon_sym_float16] = ACTIONS(1569), + [anon_sym_bfloat16] = ACTIONS(1569), + [anon_sym_float128] = ACTIONS(1569), + [anon_sym_iptr] = ACTIONS(1569), + [anon_sym_uptr] = ACTIONS(1569), + [anon_sym_isz] = ACTIONS(1569), + [anon_sym_usz] = ACTIONS(1569), + [anon_sym_anyfault] = ACTIONS(1569), + [anon_sym_any] = ACTIONS(1569), + [anon_sym_DOLLARtypeof] = ACTIONS(1569), + [anon_sym_DOLLARtypefrom] = ACTIONS(1569), + [anon_sym_DOLLARvatype] = ACTIONS(1569), + [anon_sym_DOLLARevaltype] = ACTIONS(1569), + [sym_real_literal] = ACTIONS(1571), }, [393] = { [sym_line_comment] = STATE(393), [sym_doc_comment] = STATE(393), [sym_block_comment] = STATE(393), - [sym_ident] = ACTIONS(1370), - [sym_integer_literal] = ACTIONS(1372), - [anon_sym_SQUOTE] = ACTIONS(1372), - [anon_sym_DQUOTE] = ACTIONS(1372), - [anon_sym_BQUOTE] = ACTIONS(1372), - [sym_bytes_literal] = ACTIONS(1372), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1370), - [sym_at_ident] = ACTIONS(1372), - [sym_hash_ident] = ACTIONS(1372), - [sym_type_ident] = ACTIONS(1372), - [sym_ct_type_ident] = ACTIONS(1372), - [sym_const_ident] = ACTIONS(1370), - [sym_builtin] = ACTIONS(1372), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_AMP] = ACTIONS(1370), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_tlocal] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1372), - [anon_sym_const] = ACTIONS(1370), - [anon_sym_var] = ACTIONS(1370), - [anon_sym_return] = ACTIONS(1370), - [anon_sym_continue] = ACTIONS(1370), - [anon_sym_break] = ACTIONS(1370), - [anon_sym_defer] = ACTIONS(1370), - [anon_sym_assert] = ACTIONS(1370), - [anon_sym_case] = ACTIONS(1370), - [anon_sym_default] = ACTIONS(1370), - [anon_sym_nextcase] = ACTIONS(1370), - [anon_sym_switch] = ACTIONS(1370), - [anon_sym_AMP_AMP] = ACTIONS(1372), - [anon_sym_if] = ACTIONS(1370), - [anon_sym_for] = ACTIONS(1370), - [anon_sym_foreach] = ACTIONS(1370), - [anon_sym_foreach_r] = ACTIONS(1370), - [anon_sym_while] = ACTIONS(1370), - [anon_sym_do] = ACTIONS(1370), - [anon_sym_int] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_asm] = ACTIONS(1370), - [anon_sym_DOLLARassert] = ACTIONS(1370), - [anon_sym_DOLLARerror] = ACTIONS(1370), - [anon_sym_DOLLARecho] = ACTIONS(1370), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_DOLLARswitch] = ACTIONS(1370), - [anon_sym_DOLLARfor] = ACTIONS(1370), - [anon_sym_DOLLARforeach] = ACTIONS(1370), - [anon_sym_DOLLARalignof] = ACTIONS(1370), - [anon_sym_DOLLARextnameof] = ACTIONS(1370), - [anon_sym_DOLLARnameof] = ACTIONS(1370), - [anon_sym_DOLLARoffsetof] = ACTIONS(1370), - [anon_sym_DOLLARqnameof] = ACTIONS(1370), - [anon_sym_DOLLARvaconst] = ACTIONS(1370), - [anon_sym_DOLLARvaarg] = ACTIONS(1370), - [anon_sym_DOLLARvaref] = ACTIONS(1370), - [anon_sym_DOLLARvaexpr] = ACTIONS(1370), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [anon_sym_null] = ACTIONS(1370), - [anon_sym_DOLLARvacount] = ACTIONS(1370), - [anon_sym_DOLLARappend] = ACTIONS(1370), - [anon_sym_DOLLARconcat] = ACTIONS(1370), - [anon_sym_DOLLAReval] = ACTIONS(1370), - [anon_sym_DOLLARis_const] = ACTIONS(1370), - [anon_sym_DOLLARsizeof] = ACTIONS(1370), - [anon_sym_DOLLARstringify] = ACTIONS(1370), - [anon_sym_DOLLARand] = ACTIONS(1370), - [anon_sym_DOLLARdefined] = ACTIONS(1370), - [anon_sym_DOLLARembed] = ACTIONS(1370), - [anon_sym_DOLLARor] = ACTIONS(1370), - [anon_sym_DOLLARfeature] = ACTIONS(1370), - [anon_sym_DOLLARassignable] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_TILDE] = ACTIONS(1372), - [anon_sym_PLUS_PLUS] = ACTIONS(1372), - [anon_sym_DASH_DASH] = ACTIONS(1372), - [anon_sym_typeid] = ACTIONS(1370), - [anon_sym_LBRACE_PIPE] = ACTIONS(1372), - [anon_sym_PIPE_RBRACE] = ACTIONS(1372), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_bool] = ACTIONS(1370), - [anon_sym_char] = ACTIONS(1370), - [anon_sym_ichar] = ACTIONS(1370), - [anon_sym_short] = ACTIONS(1370), - [anon_sym_ushort] = ACTIONS(1370), - [anon_sym_uint] = ACTIONS(1370), - [anon_sym_long] = ACTIONS(1370), - [anon_sym_ulong] = ACTIONS(1370), - [anon_sym_int128] = ACTIONS(1370), - [anon_sym_uint128] = ACTIONS(1370), - [anon_sym_float] = ACTIONS(1370), - [anon_sym_double] = ACTIONS(1370), - [anon_sym_float16] = ACTIONS(1370), - [anon_sym_bfloat16] = ACTIONS(1370), - [anon_sym_float128] = ACTIONS(1370), - [anon_sym_iptr] = ACTIONS(1370), - [anon_sym_uptr] = ACTIONS(1370), - [anon_sym_isz] = ACTIONS(1370), - [anon_sym_usz] = ACTIONS(1370), - [anon_sym_anyfault] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_DOLLARtypeof] = ACTIONS(1370), - [anon_sym_DOLLARtypefrom] = ACTIONS(1370), - [anon_sym_DOLLARvatype] = ACTIONS(1370), - [anon_sym_DOLLARevaltype] = ACTIONS(1370), - [sym_real_literal] = ACTIONS(1372), + [sym_ident] = ACTIONS(1573), + [sym_integer_literal] = ACTIONS(1575), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_DQUOTE] = ACTIONS(1575), + [anon_sym_BQUOTE] = ACTIONS(1575), + [sym_bytes_literal] = ACTIONS(1575), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1573), + [sym_at_ident] = ACTIONS(1575), + [sym_hash_ident] = ACTIONS(1575), + [sym_type_ident] = ACTIONS(1575), + [sym_ct_type_ident] = ACTIONS(1575), + [sym_const_ident] = ACTIONS(1573), + [sym_builtin] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(1575), + [anon_sym_AMP] = ACTIONS(1573), + [anon_sym_static] = ACTIONS(1573), + [anon_sym_tlocal] = ACTIONS(1573), + [anon_sym_SEMI] = ACTIONS(1575), + [anon_sym_fn] = ACTIONS(1573), + [anon_sym_LBRACE] = ACTIONS(1573), + [anon_sym_RBRACE] = ACTIONS(1575), + [anon_sym_const] = ACTIONS(1573), + [anon_sym_var] = ACTIONS(1573), + [anon_sym_return] = ACTIONS(1573), + [anon_sym_continue] = ACTIONS(1573), + [anon_sym_break] = ACTIONS(1573), + [anon_sym_defer] = ACTIONS(1573), + [anon_sym_assert] = ACTIONS(1573), + [anon_sym_case] = ACTIONS(1573), + [anon_sym_default] = ACTIONS(1573), + [anon_sym_nextcase] = ACTIONS(1573), + [anon_sym_switch] = ACTIONS(1573), + [anon_sym_AMP_AMP] = ACTIONS(1575), + [anon_sym_if] = ACTIONS(1573), + [anon_sym_for] = ACTIONS(1573), + [anon_sym_foreach] = ACTIONS(1573), + [anon_sym_foreach_r] = ACTIONS(1573), + [anon_sym_while] = ACTIONS(1573), + [anon_sym_do] = ACTIONS(1573), + [anon_sym_int] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1573), + [anon_sym_DASH] = ACTIONS(1573), + [anon_sym_STAR] = ACTIONS(1575), + [anon_sym_asm] = ACTIONS(1573), + [anon_sym_DOLLARassert] = ACTIONS(1573), + [anon_sym_DOLLARerror] = ACTIONS(1573), + [anon_sym_DOLLARecho] = ACTIONS(1573), + [anon_sym_DOLLARif] = ACTIONS(1573), + [anon_sym_DOLLARswitch] = ACTIONS(1573), + [anon_sym_DOLLARfor] = ACTIONS(1573), + [anon_sym_DOLLARforeach] = ACTIONS(1573), + [anon_sym_DOLLARalignof] = ACTIONS(1573), + [anon_sym_DOLLARextnameof] = ACTIONS(1573), + [anon_sym_DOLLARnameof] = ACTIONS(1573), + [anon_sym_DOLLARoffsetof] = ACTIONS(1573), + [anon_sym_DOLLARqnameof] = ACTIONS(1573), + [anon_sym_DOLLARvaconst] = ACTIONS(1573), + [anon_sym_DOLLARvaarg] = ACTIONS(1573), + [anon_sym_DOLLARvaref] = ACTIONS(1573), + [anon_sym_DOLLARvaexpr] = ACTIONS(1573), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [anon_sym_null] = ACTIONS(1573), + [anon_sym_DOLLARvacount] = ACTIONS(1573), + [anon_sym_DOLLARappend] = ACTIONS(1573), + [anon_sym_DOLLARconcat] = ACTIONS(1573), + [anon_sym_DOLLAReval] = ACTIONS(1573), + [anon_sym_DOLLARis_const] = ACTIONS(1573), + [anon_sym_DOLLARsizeof] = ACTIONS(1573), + [anon_sym_DOLLARstringify] = ACTIONS(1573), + [anon_sym_DOLLARand] = ACTIONS(1573), + [anon_sym_DOLLARdefined] = ACTIONS(1573), + [anon_sym_DOLLARembed] = ACTIONS(1573), + [anon_sym_DOLLARor] = ACTIONS(1573), + [anon_sym_DOLLARfeature] = ACTIONS(1573), + [anon_sym_DOLLARassignable] = ACTIONS(1573), + [anon_sym_BANG] = ACTIONS(1575), + [anon_sym_TILDE] = ACTIONS(1575), + [anon_sym_PLUS_PLUS] = ACTIONS(1575), + [anon_sym_DASH_DASH] = ACTIONS(1575), + [anon_sym_typeid] = ACTIONS(1573), + [anon_sym_LBRACE_PIPE] = ACTIONS(1575), + [anon_sym_PIPE_RBRACE] = ACTIONS(1575), + [anon_sym_void] = ACTIONS(1573), + [anon_sym_bool] = ACTIONS(1573), + [anon_sym_char] = ACTIONS(1573), + [anon_sym_ichar] = ACTIONS(1573), + [anon_sym_short] = ACTIONS(1573), + [anon_sym_ushort] = ACTIONS(1573), + [anon_sym_uint] = ACTIONS(1573), + [anon_sym_long] = ACTIONS(1573), + [anon_sym_ulong] = ACTIONS(1573), + [anon_sym_int128] = ACTIONS(1573), + [anon_sym_uint128] = ACTIONS(1573), + [anon_sym_float] = ACTIONS(1573), + [anon_sym_double] = ACTIONS(1573), + [anon_sym_float16] = ACTIONS(1573), + [anon_sym_bfloat16] = ACTIONS(1573), + [anon_sym_float128] = ACTIONS(1573), + [anon_sym_iptr] = ACTIONS(1573), + [anon_sym_uptr] = ACTIONS(1573), + [anon_sym_isz] = ACTIONS(1573), + [anon_sym_usz] = ACTIONS(1573), + [anon_sym_anyfault] = ACTIONS(1573), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_DOLLARtypeof] = ACTIONS(1573), + [anon_sym_DOLLARtypefrom] = ACTIONS(1573), + [anon_sym_DOLLARvatype] = ACTIONS(1573), + [anon_sym_DOLLARevaltype] = ACTIONS(1573), + [sym_real_literal] = ACTIONS(1575), }, [394] = { [sym_line_comment] = STATE(394), [sym_doc_comment] = STATE(394), [sym_block_comment] = STATE(394), - [sym_ident] = ACTIONS(1394), - [sym_integer_literal] = ACTIONS(1396), - [anon_sym_SQUOTE] = ACTIONS(1396), - [anon_sym_DQUOTE] = ACTIONS(1396), - [anon_sym_BQUOTE] = ACTIONS(1396), - [sym_bytes_literal] = ACTIONS(1396), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1394), - [sym_at_ident] = ACTIONS(1396), - [sym_hash_ident] = ACTIONS(1396), - [sym_type_ident] = ACTIONS(1396), - [sym_ct_type_ident] = ACTIONS(1396), - [sym_const_ident] = ACTIONS(1394), - [sym_builtin] = ACTIONS(1396), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_AMP] = ACTIONS(1394), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_tlocal] = ACTIONS(1394), - [anon_sym_SEMI] = ACTIONS(1396), - [anon_sym_fn] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1394), - [anon_sym_RBRACE] = ACTIONS(1396), - [anon_sym_const] = ACTIONS(1394), - [anon_sym_var] = ACTIONS(1394), - [anon_sym_return] = ACTIONS(1394), - [anon_sym_continue] = ACTIONS(1394), - [anon_sym_break] = ACTIONS(1394), - [anon_sym_defer] = ACTIONS(1394), - [anon_sym_assert] = ACTIONS(1394), - [anon_sym_case] = ACTIONS(1394), - [anon_sym_default] = ACTIONS(1394), - [anon_sym_nextcase] = ACTIONS(1394), - [anon_sym_switch] = ACTIONS(1394), - [anon_sym_AMP_AMP] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1394), - [anon_sym_for] = ACTIONS(1394), - [anon_sym_foreach] = ACTIONS(1394), - [anon_sym_foreach_r] = ACTIONS(1394), - [anon_sym_while] = ACTIONS(1394), - [anon_sym_do] = ACTIONS(1394), - [anon_sym_int] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1394), - [anon_sym_DASH] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(1396), - [anon_sym_asm] = ACTIONS(1394), - [anon_sym_DOLLARassert] = ACTIONS(1394), - [anon_sym_DOLLARerror] = ACTIONS(1394), - [anon_sym_DOLLARecho] = ACTIONS(1394), - [anon_sym_DOLLARif] = ACTIONS(1394), - [anon_sym_DOLLARswitch] = ACTIONS(1394), - [anon_sym_DOLLARfor] = ACTIONS(1394), - [anon_sym_DOLLARforeach] = ACTIONS(1394), - [anon_sym_DOLLARalignof] = ACTIONS(1394), - [anon_sym_DOLLARextnameof] = ACTIONS(1394), - [anon_sym_DOLLARnameof] = ACTIONS(1394), - [anon_sym_DOLLARoffsetof] = ACTIONS(1394), - [anon_sym_DOLLARqnameof] = ACTIONS(1394), - [anon_sym_DOLLARvaconst] = ACTIONS(1394), - [anon_sym_DOLLARvaarg] = ACTIONS(1394), - [anon_sym_DOLLARvaref] = ACTIONS(1394), - [anon_sym_DOLLARvaexpr] = ACTIONS(1394), - [anon_sym_true] = ACTIONS(1394), - [anon_sym_false] = ACTIONS(1394), - [anon_sym_null] = ACTIONS(1394), - [anon_sym_DOLLARvacount] = ACTIONS(1394), - [anon_sym_DOLLARappend] = ACTIONS(1394), - [anon_sym_DOLLARconcat] = ACTIONS(1394), - [anon_sym_DOLLAReval] = ACTIONS(1394), - [anon_sym_DOLLARis_const] = ACTIONS(1394), - [anon_sym_DOLLARsizeof] = ACTIONS(1394), - [anon_sym_DOLLARstringify] = ACTIONS(1394), - [anon_sym_DOLLARand] = ACTIONS(1394), - [anon_sym_DOLLARdefined] = ACTIONS(1394), - [anon_sym_DOLLARembed] = ACTIONS(1394), - [anon_sym_DOLLARor] = ACTIONS(1394), - [anon_sym_DOLLARfeature] = ACTIONS(1394), - [anon_sym_DOLLARassignable] = ACTIONS(1394), - [anon_sym_BANG] = ACTIONS(1396), - [anon_sym_TILDE] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1396), - [anon_sym_DASH_DASH] = ACTIONS(1396), - [anon_sym_typeid] = ACTIONS(1394), - [anon_sym_LBRACE_PIPE] = ACTIONS(1396), - [anon_sym_PIPE_RBRACE] = ACTIONS(1396), - [anon_sym_void] = ACTIONS(1394), - [anon_sym_bool] = ACTIONS(1394), - [anon_sym_char] = ACTIONS(1394), - [anon_sym_ichar] = ACTIONS(1394), - [anon_sym_short] = ACTIONS(1394), - [anon_sym_ushort] = ACTIONS(1394), - [anon_sym_uint] = ACTIONS(1394), - [anon_sym_long] = ACTIONS(1394), - [anon_sym_ulong] = ACTIONS(1394), - [anon_sym_int128] = ACTIONS(1394), - [anon_sym_uint128] = ACTIONS(1394), - [anon_sym_float] = ACTIONS(1394), - [anon_sym_double] = ACTIONS(1394), - [anon_sym_float16] = ACTIONS(1394), - [anon_sym_bfloat16] = ACTIONS(1394), - [anon_sym_float128] = ACTIONS(1394), - [anon_sym_iptr] = ACTIONS(1394), - [anon_sym_uptr] = ACTIONS(1394), - [anon_sym_isz] = ACTIONS(1394), - [anon_sym_usz] = ACTIONS(1394), - [anon_sym_anyfault] = ACTIONS(1394), - [anon_sym_any] = ACTIONS(1394), - [anon_sym_DOLLARtypeof] = ACTIONS(1394), - [anon_sym_DOLLARtypefrom] = ACTIONS(1394), - [anon_sym_DOLLARvatype] = ACTIONS(1394), - [anon_sym_DOLLARevaltype] = ACTIONS(1394), - [sym_real_literal] = ACTIONS(1396), + [sym_ident] = ACTIONS(1577), + [sym_integer_literal] = ACTIONS(1579), + [anon_sym_SQUOTE] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1579), + [sym_bytes_literal] = ACTIONS(1579), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1577), + [sym_at_ident] = ACTIONS(1579), + [sym_hash_ident] = ACTIONS(1579), + [sym_type_ident] = ACTIONS(1579), + [sym_ct_type_ident] = ACTIONS(1579), + [sym_const_ident] = ACTIONS(1577), + [sym_builtin] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_AMP] = ACTIONS(1577), + [anon_sym_static] = ACTIONS(1577), + [anon_sym_tlocal] = ACTIONS(1577), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_fn] = ACTIONS(1577), + [anon_sym_LBRACE] = ACTIONS(1577), + [anon_sym_RBRACE] = ACTIONS(1579), + [anon_sym_const] = ACTIONS(1577), + [anon_sym_var] = ACTIONS(1577), + [anon_sym_return] = ACTIONS(1577), + [anon_sym_continue] = ACTIONS(1577), + [anon_sym_break] = ACTIONS(1577), + [anon_sym_defer] = ACTIONS(1577), + [anon_sym_assert] = ACTIONS(1577), + [anon_sym_case] = ACTIONS(1577), + [anon_sym_default] = ACTIONS(1577), + [anon_sym_nextcase] = ACTIONS(1577), + [anon_sym_switch] = ACTIONS(1577), + [anon_sym_AMP_AMP] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1577), + [anon_sym_for] = ACTIONS(1577), + [anon_sym_foreach] = ACTIONS(1577), + [anon_sym_foreach_r] = ACTIONS(1577), + [anon_sym_while] = ACTIONS(1577), + [anon_sym_do] = ACTIONS(1577), + [anon_sym_int] = ACTIONS(1577), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_asm] = ACTIONS(1577), + [anon_sym_DOLLARassert] = ACTIONS(1577), + [anon_sym_DOLLARerror] = ACTIONS(1577), + [anon_sym_DOLLARecho] = ACTIONS(1577), + [anon_sym_DOLLARif] = ACTIONS(1577), + [anon_sym_DOLLARswitch] = ACTIONS(1577), + [anon_sym_DOLLARfor] = ACTIONS(1577), + [anon_sym_DOLLARforeach] = ACTIONS(1577), + [anon_sym_DOLLARalignof] = ACTIONS(1577), + [anon_sym_DOLLARextnameof] = ACTIONS(1577), + [anon_sym_DOLLARnameof] = ACTIONS(1577), + [anon_sym_DOLLARoffsetof] = ACTIONS(1577), + [anon_sym_DOLLARqnameof] = ACTIONS(1577), + [anon_sym_DOLLARvaconst] = ACTIONS(1577), + [anon_sym_DOLLARvaarg] = ACTIONS(1577), + [anon_sym_DOLLARvaref] = ACTIONS(1577), + [anon_sym_DOLLARvaexpr] = ACTIONS(1577), + [anon_sym_true] = ACTIONS(1577), + [anon_sym_false] = ACTIONS(1577), + [anon_sym_null] = ACTIONS(1577), + [anon_sym_DOLLARvacount] = ACTIONS(1577), + [anon_sym_DOLLARappend] = ACTIONS(1577), + [anon_sym_DOLLARconcat] = ACTIONS(1577), + [anon_sym_DOLLAReval] = ACTIONS(1577), + [anon_sym_DOLLARis_const] = ACTIONS(1577), + [anon_sym_DOLLARsizeof] = ACTIONS(1577), + [anon_sym_DOLLARstringify] = ACTIONS(1577), + [anon_sym_DOLLARand] = ACTIONS(1577), + [anon_sym_DOLLARdefined] = ACTIONS(1577), + [anon_sym_DOLLARembed] = ACTIONS(1577), + [anon_sym_DOLLARor] = ACTIONS(1577), + [anon_sym_DOLLARfeature] = ACTIONS(1577), + [anon_sym_DOLLARassignable] = ACTIONS(1577), + [anon_sym_BANG] = ACTIONS(1579), + [anon_sym_TILDE] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_DASH_DASH] = ACTIONS(1579), + [anon_sym_typeid] = ACTIONS(1577), + [anon_sym_LBRACE_PIPE] = ACTIONS(1579), + [anon_sym_PIPE_RBRACE] = ACTIONS(1579), + [anon_sym_void] = ACTIONS(1577), + [anon_sym_bool] = ACTIONS(1577), + [anon_sym_char] = ACTIONS(1577), + [anon_sym_ichar] = ACTIONS(1577), + [anon_sym_short] = ACTIONS(1577), + [anon_sym_ushort] = ACTIONS(1577), + [anon_sym_uint] = ACTIONS(1577), + [anon_sym_long] = ACTIONS(1577), + [anon_sym_ulong] = ACTIONS(1577), + [anon_sym_int128] = ACTIONS(1577), + [anon_sym_uint128] = ACTIONS(1577), + [anon_sym_float] = ACTIONS(1577), + [anon_sym_double] = ACTIONS(1577), + [anon_sym_float16] = ACTIONS(1577), + [anon_sym_bfloat16] = ACTIONS(1577), + [anon_sym_float128] = ACTIONS(1577), + [anon_sym_iptr] = ACTIONS(1577), + [anon_sym_uptr] = ACTIONS(1577), + [anon_sym_isz] = ACTIONS(1577), + [anon_sym_usz] = ACTIONS(1577), + [anon_sym_anyfault] = ACTIONS(1577), + [anon_sym_any] = ACTIONS(1577), + [anon_sym_DOLLARtypeof] = ACTIONS(1577), + [anon_sym_DOLLARtypefrom] = ACTIONS(1577), + [anon_sym_DOLLARvatype] = ACTIONS(1577), + [anon_sym_DOLLARevaltype] = ACTIONS(1577), + [sym_real_literal] = ACTIONS(1579), }, [395] = { [sym_line_comment] = STATE(395), [sym_doc_comment] = STATE(395), [sym_block_comment] = STATE(395), - [sym_ident] = ACTIONS(1398), - [sym_integer_literal] = ACTIONS(1400), - [anon_sym_SQUOTE] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [anon_sym_BQUOTE] = ACTIONS(1400), - [sym_bytes_literal] = ACTIONS(1400), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1398), - [sym_at_ident] = ACTIONS(1400), - [sym_hash_ident] = ACTIONS(1400), - [sym_type_ident] = ACTIONS(1400), - [sym_ct_type_ident] = ACTIONS(1400), - [sym_const_ident] = ACTIONS(1398), - [sym_builtin] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1400), - [anon_sym_AMP] = ACTIONS(1398), - [anon_sym_static] = ACTIONS(1398), - [anon_sym_tlocal] = ACTIONS(1398), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym_fn] = ACTIONS(1398), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_RBRACE] = ACTIONS(1400), - [anon_sym_const] = ACTIONS(1398), - [anon_sym_var] = ACTIONS(1398), - [anon_sym_return] = ACTIONS(1398), - [anon_sym_continue] = ACTIONS(1398), - [anon_sym_break] = ACTIONS(1398), - [anon_sym_defer] = ACTIONS(1398), - [anon_sym_assert] = ACTIONS(1398), - [anon_sym_case] = ACTIONS(1398), - [anon_sym_default] = ACTIONS(1398), - [anon_sym_nextcase] = ACTIONS(1398), - [anon_sym_switch] = ACTIONS(1398), - [anon_sym_AMP_AMP] = ACTIONS(1400), - [anon_sym_if] = ACTIONS(1398), - [anon_sym_for] = ACTIONS(1398), - [anon_sym_foreach] = ACTIONS(1398), - [anon_sym_foreach_r] = ACTIONS(1398), - [anon_sym_while] = ACTIONS(1398), - [anon_sym_do] = ACTIONS(1398), - [anon_sym_int] = ACTIONS(1398), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_asm] = ACTIONS(1398), - [anon_sym_DOLLARassert] = ACTIONS(1398), - [anon_sym_DOLLARerror] = ACTIONS(1398), - [anon_sym_DOLLARecho] = ACTIONS(1398), - [anon_sym_DOLLARif] = ACTIONS(1398), - [anon_sym_DOLLARswitch] = ACTIONS(1398), - [anon_sym_DOLLARfor] = ACTIONS(1398), - [anon_sym_DOLLARforeach] = ACTIONS(1398), - [anon_sym_DOLLARalignof] = ACTIONS(1398), - [anon_sym_DOLLARextnameof] = ACTIONS(1398), - [anon_sym_DOLLARnameof] = ACTIONS(1398), - [anon_sym_DOLLARoffsetof] = ACTIONS(1398), - [anon_sym_DOLLARqnameof] = ACTIONS(1398), - [anon_sym_DOLLARvaconst] = ACTIONS(1398), - [anon_sym_DOLLARvaarg] = ACTIONS(1398), - [anon_sym_DOLLARvaref] = ACTIONS(1398), - [anon_sym_DOLLARvaexpr] = ACTIONS(1398), - [anon_sym_true] = ACTIONS(1398), - [anon_sym_false] = ACTIONS(1398), - [anon_sym_null] = ACTIONS(1398), - [anon_sym_DOLLARvacount] = ACTIONS(1398), - [anon_sym_DOLLARappend] = ACTIONS(1398), - [anon_sym_DOLLARconcat] = ACTIONS(1398), - [anon_sym_DOLLAReval] = ACTIONS(1398), - [anon_sym_DOLLARis_const] = ACTIONS(1398), - [anon_sym_DOLLARsizeof] = ACTIONS(1398), - [anon_sym_DOLLARstringify] = ACTIONS(1398), - [anon_sym_DOLLARand] = ACTIONS(1398), - [anon_sym_DOLLARdefined] = ACTIONS(1398), - [anon_sym_DOLLARembed] = ACTIONS(1398), - [anon_sym_DOLLARor] = ACTIONS(1398), - [anon_sym_DOLLARfeature] = ACTIONS(1398), - [anon_sym_DOLLARassignable] = ACTIONS(1398), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [anon_sym_typeid] = ACTIONS(1398), - [anon_sym_LBRACE_PIPE] = ACTIONS(1400), - [anon_sym_PIPE_RBRACE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1398), - [anon_sym_bool] = ACTIONS(1398), - [anon_sym_char] = ACTIONS(1398), - [anon_sym_ichar] = ACTIONS(1398), - [anon_sym_short] = ACTIONS(1398), - [anon_sym_ushort] = ACTIONS(1398), - [anon_sym_uint] = ACTIONS(1398), - [anon_sym_long] = ACTIONS(1398), - [anon_sym_ulong] = ACTIONS(1398), - [anon_sym_int128] = ACTIONS(1398), - [anon_sym_uint128] = ACTIONS(1398), - [anon_sym_float] = ACTIONS(1398), - [anon_sym_double] = ACTIONS(1398), - [anon_sym_float16] = ACTIONS(1398), - [anon_sym_bfloat16] = ACTIONS(1398), - [anon_sym_float128] = ACTIONS(1398), - [anon_sym_iptr] = ACTIONS(1398), - [anon_sym_uptr] = ACTIONS(1398), - [anon_sym_isz] = ACTIONS(1398), - [anon_sym_usz] = ACTIONS(1398), - [anon_sym_anyfault] = ACTIONS(1398), - [anon_sym_any] = ACTIONS(1398), - [anon_sym_DOLLARtypeof] = ACTIONS(1398), - [anon_sym_DOLLARtypefrom] = ACTIONS(1398), - [anon_sym_DOLLARvatype] = ACTIONS(1398), - [anon_sym_DOLLARevaltype] = ACTIONS(1398), - [sym_real_literal] = ACTIONS(1400), + [sym_ident] = ACTIONS(1561), + [sym_integer_literal] = ACTIONS(1563), + [anon_sym_SQUOTE] = ACTIONS(1563), + [anon_sym_DQUOTE] = ACTIONS(1563), + [anon_sym_BQUOTE] = ACTIONS(1563), + [sym_bytes_literal] = ACTIONS(1563), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1561), + [sym_at_ident] = ACTIONS(1563), + [sym_hash_ident] = ACTIONS(1563), + [sym_type_ident] = ACTIONS(1563), + [sym_ct_type_ident] = ACTIONS(1563), + [sym_const_ident] = ACTIONS(1561), + [sym_builtin] = ACTIONS(1563), + [anon_sym_LPAREN] = ACTIONS(1563), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_static] = ACTIONS(1561), + [anon_sym_tlocal] = ACTIONS(1561), + [anon_sym_SEMI] = ACTIONS(1563), + [anon_sym_fn] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_RBRACE] = ACTIONS(1563), + [anon_sym_const] = ACTIONS(1561), + [anon_sym_var] = ACTIONS(1561), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_continue] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1561), + [anon_sym_defer] = ACTIONS(1561), + [anon_sym_assert] = ACTIONS(1561), + [anon_sym_case] = ACTIONS(1561), + [anon_sym_default] = ACTIONS(1561), + [anon_sym_nextcase] = ACTIONS(1561), + [anon_sym_switch] = ACTIONS(1561), + [anon_sym_AMP_AMP] = ACTIONS(1563), + [anon_sym_if] = ACTIONS(1561), + [anon_sym_for] = ACTIONS(1561), + [anon_sym_foreach] = ACTIONS(1561), + [anon_sym_foreach_r] = ACTIONS(1561), + [anon_sym_while] = ACTIONS(1561), + [anon_sym_do] = ACTIONS(1561), + [anon_sym_int] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1561), + [anon_sym_STAR] = ACTIONS(1563), + [anon_sym_asm] = ACTIONS(1561), + [anon_sym_DOLLARassert] = ACTIONS(1561), + [anon_sym_DOLLARerror] = ACTIONS(1561), + [anon_sym_DOLLARecho] = ACTIONS(1561), + [anon_sym_DOLLARif] = ACTIONS(1561), + [anon_sym_DOLLARswitch] = ACTIONS(1561), + [anon_sym_DOLLARfor] = ACTIONS(1561), + [anon_sym_DOLLARforeach] = ACTIONS(1561), + [anon_sym_DOLLARalignof] = ACTIONS(1561), + [anon_sym_DOLLARextnameof] = ACTIONS(1561), + [anon_sym_DOLLARnameof] = ACTIONS(1561), + [anon_sym_DOLLARoffsetof] = ACTIONS(1561), + [anon_sym_DOLLARqnameof] = ACTIONS(1561), + [anon_sym_DOLLARvaconst] = ACTIONS(1561), + [anon_sym_DOLLARvaarg] = ACTIONS(1561), + [anon_sym_DOLLARvaref] = ACTIONS(1561), + [anon_sym_DOLLARvaexpr] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1561), + [anon_sym_false] = ACTIONS(1561), + [anon_sym_null] = ACTIONS(1561), + [anon_sym_DOLLARvacount] = ACTIONS(1561), + [anon_sym_DOLLARappend] = ACTIONS(1561), + [anon_sym_DOLLARconcat] = ACTIONS(1561), + [anon_sym_DOLLAReval] = ACTIONS(1561), + [anon_sym_DOLLARis_const] = ACTIONS(1561), + [anon_sym_DOLLARsizeof] = ACTIONS(1561), + [anon_sym_DOLLARstringify] = ACTIONS(1561), + [anon_sym_DOLLARand] = ACTIONS(1561), + [anon_sym_DOLLARdefined] = ACTIONS(1561), + [anon_sym_DOLLARembed] = ACTIONS(1561), + [anon_sym_DOLLARor] = ACTIONS(1561), + [anon_sym_DOLLARfeature] = ACTIONS(1561), + [anon_sym_DOLLARassignable] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1563), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_PLUS_PLUS] = ACTIONS(1563), + [anon_sym_DASH_DASH] = ACTIONS(1563), + [anon_sym_typeid] = ACTIONS(1561), + [anon_sym_LBRACE_PIPE] = ACTIONS(1563), + [anon_sym_PIPE_RBRACE] = ACTIONS(1563), + [anon_sym_void] = ACTIONS(1561), + [anon_sym_bool] = ACTIONS(1561), + [anon_sym_char] = ACTIONS(1561), + [anon_sym_ichar] = ACTIONS(1561), + [anon_sym_short] = ACTIONS(1561), + [anon_sym_ushort] = ACTIONS(1561), + [anon_sym_uint] = ACTIONS(1561), + [anon_sym_long] = ACTIONS(1561), + [anon_sym_ulong] = ACTIONS(1561), + [anon_sym_int128] = ACTIONS(1561), + [anon_sym_uint128] = ACTIONS(1561), + [anon_sym_float] = ACTIONS(1561), + [anon_sym_double] = ACTIONS(1561), + [anon_sym_float16] = ACTIONS(1561), + [anon_sym_bfloat16] = ACTIONS(1561), + [anon_sym_float128] = ACTIONS(1561), + [anon_sym_iptr] = ACTIONS(1561), + [anon_sym_uptr] = ACTIONS(1561), + [anon_sym_isz] = ACTIONS(1561), + [anon_sym_usz] = ACTIONS(1561), + [anon_sym_anyfault] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1561), + [anon_sym_DOLLARtypeof] = ACTIONS(1561), + [anon_sym_DOLLARtypefrom] = ACTIONS(1561), + [anon_sym_DOLLARvatype] = ACTIONS(1561), + [anon_sym_DOLLARevaltype] = ACTIONS(1561), + [sym_real_literal] = ACTIONS(1563), }, [396] = { [sym_line_comment] = STATE(396), [sym_doc_comment] = STATE(396), [sym_block_comment] = STATE(396), - [sym_ident] = ACTIONS(1402), - [sym_integer_literal] = ACTIONS(1404), - [anon_sym_SQUOTE] = ACTIONS(1404), - [anon_sym_DQUOTE] = ACTIONS(1404), - [anon_sym_BQUOTE] = ACTIONS(1404), - [sym_bytes_literal] = ACTIONS(1404), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1402), - [sym_at_ident] = ACTIONS(1404), - [sym_hash_ident] = ACTIONS(1404), - [sym_type_ident] = ACTIONS(1404), - [sym_ct_type_ident] = ACTIONS(1404), - [sym_const_ident] = ACTIONS(1402), - [sym_builtin] = ACTIONS(1404), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_AMP] = ACTIONS(1402), - [anon_sym_static] = ACTIONS(1402), - [anon_sym_tlocal] = ACTIONS(1402), - [anon_sym_SEMI] = ACTIONS(1404), - [anon_sym_fn] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1402), - [anon_sym_RBRACE] = ACTIONS(1404), - [anon_sym_const] = ACTIONS(1402), - [anon_sym_var] = ACTIONS(1402), - [anon_sym_return] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [anon_sym_break] = ACTIONS(1402), - [anon_sym_defer] = ACTIONS(1402), - [anon_sym_assert] = ACTIONS(1402), - [anon_sym_case] = ACTIONS(1402), - [anon_sym_default] = ACTIONS(1402), - [anon_sym_nextcase] = ACTIONS(1402), - [anon_sym_switch] = ACTIONS(1402), - [anon_sym_AMP_AMP] = ACTIONS(1404), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_for] = ACTIONS(1402), - [anon_sym_foreach] = ACTIONS(1402), - [anon_sym_foreach_r] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1402), - [anon_sym_do] = ACTIONS(1402), - [anon_sym_int] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1402), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_STAR] = ACTIONS(1404), - [anon_sym_asm] = ACTIONS(1402), - [anon_sym_DOLLARassert] = ACTIONS(1402), - [anon_sym_DOLLARerror] = ACTIONS(1402), - [anon_sym_DOLLARecho] = ACTIONS(1402), - [anon_sym_DOLLARif] = ACTIONS(1402), - [anon_sym_DOLLARswitch] = ACTIONS(1402), - [anon_sym_DOLLARfor] = ACTIONS(1402), - [anon_sym_DOLLARforeach] = ACTIONS(1402), - [anon_sym_DOLLARalignof] = ACTIONS(1402), - [anon_sym_DOLLARextnameof] = ACTIONS(1402), - [anon_sym_DOLLARnameof] = ACTIONS(1402), - [anon_sym_DOLLARoffsetof] = ACTIONS(1402), - [anon_sym_DOLLARqnameof] = ACTIONS(1402), - [anon_sym_DOLLARvaconst] = ACTIONS(1402), - [anon_sym_DOLLARvaarg] = ACTIONS(1402), - [anon_sym_DOLLARvaref] = ACTIONS(1402), - [anon_sym_DOLLARvaexpr] = ACTIONS(1402), - [anon_sym_true] = ACTIONS(1402), - [anon_sym_false] = ACTIONS(1402), - [anon_sym_null] = ACTIONS(1402), - [anon_sym_DOLLARvacount] = ACTIONS(1402), - [anon_sym_DOLLARappend] = ACTIONS(1402), - [anon_sym_DOLLARconcat] = ACTIONS(1402), - [anon_sym_DOLLAReval] = ACTIONS(1402), - [anon_sym_DOLLARis_const] = ACTIONS(1402), - [anon_sym_DOLLARsizeof] = ACTIONS(1402), - [anon_sym_DOLLARstringify] = ACTIONS(1402), - [anon_sym_DOLLARand] = ACTIONS(1402), - [anon_sym_DOLLARdefined] = ACTIONS(1402), - [anon_sym_DOLLARembed] = ACTIONS(1402), - [anon_sym_DOLLARor] = ACTIONS(1402), - [anon_sym_DOLLARfeature] = ACTIONS(1402), - [anon_sym_DOLLARassignable] = ACTIONS(1402), - [anon_sym_BANG] = ACTIONS(1404), - [anon_sym_TILDE] = ACTIONS(1404), - [anon_sym_PLUS_PLUS] = ACTIONS(1404), - [anon_sym_DASH_DASH] = ACTIONS(1404), - [anon_sym_typeid] = ACTIONS(1402), - [anon_sym_LBRACE_PIPE] = ACTIONS(1404), - [anon_sym_PIPE_RBRACE] = ACTIONS(1404), - [anon_sym_void] = ACTIONS(1402), - [anon_sym_bool] = ACTIONS(1402), - [anon_sym_char] = ACTIONS(1402), - [anon_sym_ichar] = ACTIONS(1402), - [anon_sym_short] = ACTIONS(1402), - [anon_sym_ushort] = ACTIONS(1402), - [anon_sym_uint] = ACTIONS(1402), - [anon_sym_long] = ACTIONS(1402), - [anon_sym_ulong] = ACTIONS(1402), - [anon_sym_int128] = ACTIONS(1402), - [anon_sym_uint128] = ACTIONS(1402), - [anon_sym_float] = ACTIONS(1402), - [anon_sym_double] = ACTIONS(1402), - [anon_sym_float16] = ACTIONS(1402), - [anon_sym_bfloat16] = ACTIONS(1402), - [anon_sym_float128] = ACTIONS(1402), - [anon_sym_iptr] = ACTIONS(1402), - [anon_sym_uptr] = ACTIONS(1402), - [anon_sym_isz] = ACTIONS(1402), - [anon_sym_usz] = ACTIONS(1402), - [anon_sym_anyfault] = ACTIONS(1402), - [anon_sym_any] = ACTIONS(1402), - [anon_sym_DOLLARtypeof] = ACTIONS(1402), - [anon_sym_DOLLARtypefrom] = ACTIONS(1402), - [anon_sym_DOLLARvatype] = ACTIONS(1402), - [anon_sym_DOLLARevaltype] = ACTIONS(1402), - [sym_real_literal] = ACTIONS(1404), + [sym_ident] = ACTIONS(1581), + [sym_integer_literal] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1583), + [anon_sym_DQUOTE] = ACTIONS(1583), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_bytes_literal] = ACTIONS(1583), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1581), + [sym_at_ident] = ACTIONS(1583), + [sym_hash_ident] = ACTIONS(1583), + [sym_type_ident] = ACTIONS(1583), + [sym_ct_type_ident] = ACTIONS(1583), + [sym_const_ident] = ACTIONS(1581), + [sym_builtin] = ACTIONS(1583), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_AMP] = ACTIONS(1581), + [anon_sym_static] = ACTIONS(1581), + [anon_sym_tlocal] = ACTIONS(1581), + [anon_sym_SEMI] = ACTIONS(1583), + [anon_sym_fn] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_RBRACE] = ACTIONS(1583), + [anon_sym_const] = ACTIONS(1581), + [anon_sym_var] = ACTIONS(1581), + [anon_sym_return] = ACTIONS(1581), + [anon_sym_continue] = ACTIONS(1581), + [anon_sym_break] = ACTIONS(1581), + [anon_sym_defer] = ACTIONS(1581), + [anon_sym_assert] = ACTIONS(1581), + [anon_sym_case] = ACTIONS(1581), + [anon_sym_default] = ACTIONS(1581), + [anon_sym_nextcase] = ACTIONS(1581), + [anon_sym_switch] = ACTIONS(1581), + [anon_sym_AMP_AMP] = ACTIONS(1583), + [anon_sym_if] = ACTIONS(1581), + [anon_sym_for] = ACTIONS(1581), + [anon_sym_foreach] = ACTIONS(1581), + [anon_sym_foreach_r] = ACTIONS(1581), + [anon_sym_while] = ACTIONS(1581), + [anon_sym_do] = ACTIONS(1581), + [anon_sym_int] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1581), + [anon_sym_DASH] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1583), + [anon_sym_asm] = ACTIONS(1581), + [anon_sym_DOLLARassert] = ACTIONS(1581), + [anon_sym_DOLLARerror] = ACTIONS(1581), + [anon_sym_DOLLARecho] = ACTIONS(1581), + [anon_sym_DOLLARif] = ACTIONS(1581), + [anon_sym_DOLLARswitch] = ACTIONS(1581), + [anon_sym_DOLLARfor] = ACTIONS(1581), + [anon_sym_DOLLARforeach] = ACTIONS(1581), + [anon_sym_DOLLARalignof] = ACTIONS(1581), + [anon_sym_DOLLARextnameof] = ACTIONS(1581), + [anon_sym_DOLLARnameof] = ACTIONS(1581), + [anon_sym_DOLLARoffsetof] = ACTIONS(1581), + [anon_sym_DOLLARqnameof] = ACTIONS(1581), + [anon_sym_DOLLARvaconst] = ACTIONS(1581), + [anon_sym_DOLLARvaarg] = ACTIONS(1581), + [anon_sym_DOLLARvaref] = ACTIONS(1581), + [anon_sym_DOLLARvaexpr] = ACTIONS(1581), + [anon_sym_true] = ACTIONS(1581), + [anon_sym_false] = ACTIONS(1581), + [anon_sym_null] = ACTIONS(1581), + [anon_sym_DOLLARvacount] = ACTIONS(1581), + [anon_sym_DOLLARappend] = ACTIONS(1581), + [anon_sym_DOLLARconcat] = ACTIONS(1581), + [anon_sym_DOLLAReval] = ACTIONS(1581), + [anon_sym_DOLLARis_const] = ACTIONS(1581), + [anon_sym_DOLLARsizeof] = ACTIONS(1581), + [anon_sym_DOLLARstringify] = ACTIONS(1581), + [anon_sym_DOLLARand] = ACTIONS(1581), + [anon_sym_DOLLARdefined] = ACTIONS(1581), + [anon_sym_DOLLARembed] = ACTIONS(1581), + [anon_sym_DOLLARor] = ACTIONS(1581), + [anon_sym_DOLLARfeature] = ACTIONS(1581), + [anon_sym_DOLLARassignable] = ACTIONS(1581), + [anon_sym_BANG] = ACTIONS(1583), + [anon_sym_TILDE] = ACTIONS(1583), + [anon_sym_PLUS_PLUS] = ACTIONS(1583), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [anon_sym_typeid] = ACTIONS(1581), + [anon_sym_LBRACE_PIPE] = ACTIONS(1583), + [anon_sym_PIPE_RBRACE] = ACTIONS(1583), + [anon_sym_void] = ACTIONS(1581), + [anon_sym_bool] = ACTIONS(1581), + [anon_sym_char] = ACTIONS(1581), + [anon_sym_ichar] = ACTIONS(1581), + [anon_sym_short] = ACTIONS(1581), + [anon_sym_ushort] = ACTIONS(1581), + [anon_sym_uint] = ACTIONS(1581), + [anon_sym_long] = ACTIONS(1581), + [anon_sym_ulong] = ACTIONS(1581), + [anon_sym_int128] = ACTIONS(1581), + [anon_sym_uint128] = ACTIONS(1581), + [anon_sym_float] = ACTIONS(1581), + [anon_sym_double] = ACTIONS(1581), + [anon_sym_float16] = ACTIONS(1581), + [anon_sym_bfloat16] = ACTIONS(1581), + [anon_sym_float128] = ACTIONS(1581), + [anon_sym_iptr] = ACTIONS(1581), + [anon_sym_uptr] = ACTIONS(1581), + [anon_sym_isz] = ACTIONS(1581), + [anon_sym_usz] = ACTIONS(1581), + [anon_sym_anyfault] = ACTIONS(1581), + [anon_sym_any] = ACTIONS(1581), + [anon_sym_DOLLARtypeof] = ACTIONS(1581), + [anon_sym_DOLLARtypefrom] = ACTIONS(1581), + [anon_sym_DOLLARvatype] = ACTIONS(1581), + [anon_sym_DOLLARevaltype] = ACTIONS(1581), + [sym_real_literal] = ACTIONS(1583), }, [397] = { [sym_line_comment] = STATE(397), [sym_doc_comment] = STATE(397), [sym_block_comment] = STATE(397), - [sym_ident] = ACTIONS(1406), - [sym_integer_literal] = ACTIONS(1408), - [anon_sym_SQUOTE] = ACTIONS(1408), - [anon_sym_DQUOTE] = ACTIONS(1408), - [anon_sym_BQUOTE] = ACTIONS(1408), - [sym_bytes_literal] = ACTIONS(1408), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1406), - [sym_at_ident] = ACTIONS(1408), - [sym_hash_ident] = ACTIONS(1408), - [sym_type_ident] = ACTIONS(1408), - [sym_ct_type_ident] = ACTIONS(1408), - [sym_const_ident] = ACTIONS(1406), - [sym_builtin] = ACTIONS(1408), - [anon_sym_LPAREN] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(1406), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_tlocal] = ACTIONS(1406), - [anon_sym_SEMI] = ACTIONS(1408), - [anon_sym_fn] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1406), - [anon_sym_RBRACE] = ACTIONS(1408), - [anon_sym_const] = ACTIONS(1406), - [anon_sym_var] = ACTIONS(1406), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_defer] = ACTIONS(1406), - [anon_sym_assert] = ACTIONS(1406), - [anon_sym_case] = ACTIONS(1406), - [anon_sym_default] = ACTIONS(1406), - [anon_sym_nextcase] = ACTIONS(1406), - [anon_sym_switch] = ACTIONS(1406), - [anon_sym_AMP_AMP] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_for] = ACTIONS(1406), - [anon_sym_foreach] = ACTIONS(1406), - [anon_sym_foreach_r] = ACTIONS(1406), - [anon_sym_while] = ACTIONS(1406), - [anon_sym_do] = ACTIONS(1406), - [anon_sym_int] = ACTIONS(1406), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_asm] = ACTIONS(1406), - [anon_sym_DOLLARassert] = ACTIONS(1406), - [anon_sym_DOLLARerror] = ACTIONS(1406), - [anon_sym_DOLLARecho] = ACTIONS(1406), - [anon_sym_DOLLARif] = ACTIONS(1406), - [anon_sym_DOLLARswitch] = ACTIONS(1406), - [anon_sym_DOLLARfor] = ACTIONS(1406), - [anon_sym_DOLLARforeach] = ACTIONS(1406), - [anon_sym_DOLLARalignof] = ACTIONS(1406), - [anon_sym_DOLLARextnameof] = ACTIONS(1406), - [anon_sym_DOLLARnameof] = ACTIONS(1406), - [anon_sym_DOLLARoffsetof] = ACTIONS(1406), - [anon_sym_DOLLARqnameof] = ACTIONS(1406), - [anon_sym_DOLLARvaconst] = ACTIONS(1406), - [anon_sym_DOLLARvaarg] = ACTIONS(1406), - [anon_sym_DOLLARvaref] = ACTIONS(1406), - [anon_sym_DOLLARvaexpr] = ACTIONS(1406), - [anon_sym_true] = ACTIONS(1406), - [anon_sym_false] = ACTIONS(1406), - [anon_sym_null] = ACTIONS(1406), - [anon_sym_DOLLARvacount] = ACTIONS(1406), - [anon_sym_DOLLARappend] = ACTIONS(1406), - [anon_sym_DOLLARconcat] = ACTIONS(1406), - [anon_sym_DOLLAReval] = ACTIONS(1406), - [anon_sym_DOLLARis_const] = ACTIONS(1406), - [anon_sym_DOLLARsizeof] = ACTIONS(1406), - [anon_sym_DOLLARstringify] = ACTIONS(1406), - [anon_sym_DOLLARand] = ACTIONS(1406), - [anon_sym_DOLLARdefined] = ACTIONS(1406), - [anon_sym_DOLLARembed] = ACTIONS(1406), - [anon_sym_DOLLARor] = ACTIONS(1406), - [anon_sym_DOLLARfeature] = ACTIONS(1406), - [anon_sym_DOLLARassignable] = ACTIONS(1406), - [anon_sym_BANG] = ACTIONS(1408), - [anon_sym_TILDE] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1408), - [anon_sym_DASH_DASH] = ACTIONS(1408), - [anon_sym_typeid] = ACTIONS(1406), - [anon_sym_LBRACE_PIPE] = ACTIONS(1408), - [anon_sym_PIPE_RBRACE] = ACTIONS(1408), - [anon_sym_void] = ACTIONS(1406), - [anon_sym_bool] = ACTIONS(1406), - [anon_sym_char] = ACTIONS(1406), - [anon_sym_ichar] = ACTIONS(1406), - [anon_sym_short] = ACTIONS(1406), - [anon_sym_ushort] = ACTIONS(1406), - [anon_sym_uint] = ACTIONS(1406), - [anon_sym_long] = ACTIONS(1406), - [anon_sym_ulong] = ACTIONS(1406), - [anon_sym_int128] = ACTIONS(1406), - [anon_sym_uint128] = ACTIONS(1406), - [anon_sym_float] = ACTIONS(1406), - [anon_sym_double] = ACTIONS(1406), - [anon_sym_float16] = ACTIONS(1406), - [anon_sym_bfloat16] = ACTIONS(1406), - [anon_sym_float128] = ACTIONS(1406), - [anon_sym_iptr] = ACTIONS(1406), - [anon_sym_uptr] = ACTIONS(1406), - [anon_sym_isz] = ACTIONS(1406), - [anon_sym_usz] = ACTIONS(1406), - [anon_sym_anyfault] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_DOLLARtypeof] = ACTIONS(1406), - [anon_sym_DOLLARtypefrom] = ACTIONS(1406), - [anon_sym_DOLLARvatype] = ACTIONS(1406), - [anon_sym_DOLLARevaltype] = ACTIONS(1406), - [sym_real_literal] = ACTIONS(1408), + [sym_ident] = ACTIONS(1585), + [sym_integer_literal] = ACTIONS(1587), + [anon_sym_SQUOTE] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1587), + [anon_sym_BQUOTE] = ACTIONS(1587), + [sym_bytes_literal] = ACTIONS(1587), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1585), + [sym_at_ident] = ACTIONS(1587), + [sym_hash_ident] = ACTIONS(1587), + [sym_type_ident] = ACTIONS(1587), + [sym_ct_type_ident] = ACTIONS(1587), + [sym_const_ident] = ACTIONS(1585), + [sym_builtin] = ACTIONS(1587), + [anon_sym_LPAREN] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_static] = ACTIONS(1585), + [anon_sym_tlocal] = ACTIONS(1585), + [anon_sym_SEMI] = ACTIONS(1587), + [anon_sym_fn] = ACTIONS(1585), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_RBRACE] = ACTIONS(1587), + [anon_sym_const] = ACTIONS(1585), + [anon_sym_var] = ACTIONS(1585), + [anon_sym_return] = ACTIONS(1585), + [anon_sym_continue] = ACTIONS(1585), + [anon_sym_break] = ACTIONS(1585), + [anon_sym_defer] = ACTIONS(1585), + [anon_sym_assert] = ACTIONS(1585), + [anon_sym_case] = ACTIONS(1585), + [anon_sym_default] = ACTIONS(1585), + [anon_sym_nextcase] = ACTIONS(1585), + [anon_sym_switch] = ACTIONS(1585), + [anon_sym_AMP_AMP] = ACTIONS(1587), + [anon_sym_if] = ACTIONS(1585), + [anon_sym_for] = ACTIONS(1585), + [anon_sym_foreach] = ACTIONS(1585), + [anon_sym_foreach_r] = ACTIONS(1585), + [anon_sym_while] = ACTIONS(1585), + [anon_sym_do] = ACTIONS(1585), + [anon_sym_int] = ACTIONS(1585), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1587), + [anon_sym_asm] = ACTIONS(1585), + [anon_sym_DOLLARassert] = ACTIONS(1585), + [anon_sym_DOLLARerror] = ACTIONS(1585), + [anon_sym_DOLLARecho] = ACTIONS(1585), + [anon_sym_DOLLARif] = ACTIONS(1585), + [anon_sym_DOLLARswitch] = ACTIONS(1585), + [anon_sym_DOLLARfor] = ACTIONS(1585), + [anon_sym_DOLLARforeach] = ACTIONS(1585), + [anon_sym_DOLLARalignof] = ACTIONS(1585), + [anon_sym_DOLLARextnameof] = ACTIONS(1585), + [anon_sym_DOLLARnameof] = ACTIONS(1585), + [anon_sym_DOLLARoffsetof] = ACTIONS(1585), + [anon_sym_DOLLARqnameof] = ACTIONS(1585), + [anon_sym_DOLLARvaconst] = ACTIONS(1585), + [anon_sym_DOLLARvaarg] = ACTIONS(1585), + [anon_sym_DOLLARvaref] = ACTIONS(1585), + [anon_sym_DOLLARvaexpr] = ACTIONS(1585), + [anon_sym_true] = ACTIONS(1585), + [anon_sym_false] = ACTIONS(1585), + [anon_sym_null] = ACTIONS(1585), + [anon_sym_DOLLARvacount] = ACTIONS(1585), + [anon_sym_DOLLARappend] = ACTIONS(1585), + [anon_sym_DOLLARconcat] = ACTIONS(1585), + [anon_sym_DOLLAReval] = ACTIONS(1585), + [anon_sym_DOLLARis_const] = ACTIONS(1585), + [anon_sym_DOLLARsizeof] = ACTIONS(1585), + [anon_sym_DOLLARstringify] = ACTIONS(1585), + [anon_sym_DOLLARand] = ACTIONS(1585), + [anon_sym_DOLLARdefined] = ACTIONS(1585), + [anon_sym_DOLLARembed] = ACTIONS(1585), + [anon_sym_DOLLARor] = ACTIONS(1585), + [anon_sym_DOLLARfeature] = ACTIONS(1585), + [anon_sym_DOLLARassignable] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), + [anon_sym_typeid] = ACTIONS(1585), + [anon_sym_LBRACE_PIPE] = ACTIONS(1587), + [anon_sym_PIPE_RBRACE] = ACTIONS(1587), + [anon_sym_void] = ACTIONS(1585), + [anon_sym_bool] = ACTIONS(1585), + [anon_sym_char] = ACTIONS(1585), + [anon_sym_ichar] = ACTIONS(1585), + [anon_sym_short] = ACTIONS(1585), + [anon_sym_ushort] = ACTIONS(1585), + [anon_sym_uint] = ACTIONS(1585), + [anon_sym_long] = ACTIONS(1585), + [anon_sym_ulong] = ACTIONS(1585), + [anon_sym_int128] = ACTIONS(1585), + [anon_sym_uint128] = ACTIONS(1585), + [anon_sym_float] = ACTIONS(1585), + [anon_sym_double] = ACTIONS(1585), + [anon_sym_float16] = ACTIONS(1585), + [anon_sym_bfloat16] = ACTIONS(1585), + [anon_sym_float128] = ACTIONS(1585), + [anon_sym_iptr] = ACTIONS(1585), + [anon_sym_uptr] = ACTIONS(1585), + [anon_sym_isz] = ACTIONS(1585), + [anon_sym_usz] = ACTIONS(1585), + [anon_sym_anyfault] = ACTIONS(1585), + [anon_sym_any] = ACTIONS(1585), + [anon_sym_DOLLARtypeof] = ACTIONS(1585), + [anon_sym_DOLLARtypefrom] = ACTIONS(1585), + [anon_sym_DOLLARvatype] = ACTIONS(1585), + [anon_sym_DOLLARevaltype] = ACTIONS(1585), + [sym_real_literal] = ACTIONS(1587), }, [398] = { [sym_line_comment] = STATE(398), [sym_doc_comment] = STATE(398), [sym_block_comment] = STATE(398), - [sym_ident] = ACTIONS(1410), - [sym_integer_literal] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1412), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_BQUOTE] = ACTIONS(1412), - [sym_bytes_literal] = ACTIONS(1412), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1410), - [sym_at_ident] = ACTIONS(1412), - [sym_hash_ident] = ACTIONS(1412), - [sym_type_ident] = ACTIONS(1412), - [sym_ct_type_ident] = ACTIONS(1412), - [sym_const_ident] = ACTIONS(1410), - [sym_builtin] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1410), - [anon_sym_static] = ACTIONS(1410), - [anon_sym_tlocal] = ACTIONS(1410), - [anon_sym_SEMI] = ACTIONS(1412), - [anon_sym_fn] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1410), - [anon_sym_RBRACE] = ACTIONS(1412), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_var] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_defer] = ACTIONS(1410), - [anon_sym_assert] = ACTIONS(1410), - [anon_sym_case] = ACTIONS(1410), - [anon_sym_default] = ACTIONS(1410), - [anon_sym_nextcase] = ACTIONS(1410), - [anon_sym_switch] = ACTIONS(1410), - [anon_sym_AMP_AMP] = ACTIONS(1412), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_foreach] = ACTIONS(1410), - [anon_sym_foreach_r] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [anon_sym_do] = ACTIONS(1410), - [anon_sym_int] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1412), - [anon_sym_asm] = ACTIONS(1410), - [anon_sym_DOLLARassert] = ACTIONS(1410), - [anon_sym_DOLLARerror] = ACTIONS(1410), - [anon_sym_DOLLARecho] = ACTIONS(1410), - [anon_sym_DOLLARif] = ACTIONS(1410), - [anon_sym_DOLLARswitch] = ACTIONS(1410), - [anon_sym_DOLLARfor] = ACTIONS(1410), - [anon_sym_DOLLARforeach] = ACTIONS(1410), - [anon_sym_DOLLARalignof] = ACTIONS(1410), - [anon_sym_DOLLARextnameof] = ACTIONS(1410), - [anon_sym_DOLLARnameof] = ACTIONS(1410), - [anon_sym_DOLLARoffsetof] = ACTIONS(1410), - [anon_sym_DOLLARqnameof] = ACTIONS(1410), - [anon_sym_DOLLARvaconst] = ACTIONS(1410), - [anon_sym_DOLLARvaarg] = ACTIONS(1410), - [anon_sym_DOLLARvaref] = ACTIONS(1410), - [anon_sym_DOLLARvaexpr] = ACTIONS(1410), - [anon_sym_true] = ACTIONS(1410), - [anon_sym_false] = ACTIONS(1410), - [anon_sym_null] = ACTIONS(1410), - [anon_sym_DOLLARvacount] = ACTIONS(1410), - [anon_sym_DOLLARappend] = ACTIONS(1410), - [anon_sym_DOLLARconcat] = ACTIONS(1410), - [anon_sym_DOLLAReval] = ACTIONS(1410), - [anon_sym_DOLLARis_const] = ACTIONS(1410), - [anon_sym_DOLLARsizeof] = ACTIONS(1410), - [anon_sym_DOLLARstringify] = ACTIONS(1410), - [anon_sym_DOLLARand] = ACTIONS(1410), - [anon_sym_DOLLARdefined] = ACTIONS(1410), - [anon_sym_DOLLARembed] = ACTIONS(1410), - [anon_sym_DOLLARor] = ACTIONS(1410), - [anon_sym_DOLLARfeature] = ACTIONS(1410), - [anon_sym_DOLLARassignable] = ACTIONS(1410), - [anon_sym_BANG] = ACTIONS(1412), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_PLUS_PLUS] = ACTIONS(1412), - [anon_sym_DASH_DASH] = ACTIONS(1412), - [anon_sym_typeid] = ACTIONS(1410), - [anon_sym_LBRACE_PIPE] = ACTIONS(1412), - [anon_sym_PIPE_RBRACE] = ACTIONS(1412), - [anon_sym_void] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_ichar] = ACTIONS(1410), - [anon_sym_short] = ACTIONS(1410), - [anon_sym_ushort] = ACTIONS(1410), - [anon_sym_uint] = ACTIONS(1410), - [anon_sym_long] = ACTIONS(1410), - [anon_sym_ulong] = ACTIONS(1410), - [anon_sym_int128] = ACTIONS(1410), - [anon_sym_uint128] = ACTIONS(1410), - [anon_sym_float] = ACTIONS(1410), - [anon_sym_double] = ACTIONS(1410), - [anon_sym_float16] = ACTIONS(1410), - [anon_sym_bfloat16] = ACTIONS(1410), - [anon_sym_float128] = ACTIONS(1410), - [anon_sym_iptr] = ACTIONS(1410), - [anon_sym_uptr] = ACTIONS(1410), - [anon_sym_isz] = ACTIONS(1410), - [anon_sym_usz] = ACTIONS(1410), - [anon_sym_anyfault] = ACTIONS(1410), - [anon_sym_any] = ACTIONS(1410), - [anon_sym_DOLLARtypeof] = ACTIONS(1410), - [anon_sym_DOLLARtypefrom] = ACTIONS(1410), - [anon_sym_DOLLARvatype] = ACTIONS(1410), - [anon_sym_DOLLARevaltype] = ACTIONS(1410), - [sym_real_literal] = ACTIONS(1412), + [sym_ident] = ACTIONS(1589), + [sym_integer_literal] = ACTIONS(1591), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1591), + [anon_sym_BQUOTE] = ACTIONS(1591), + [sym_bytes_literal] = ACTIONS(1591), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1589), + [sym_at_ident] = ACTIONS(1591), + [sym_hash_ident] = ACTIONS(1591), + [sym_type_ident] = ACTIONS(1591), + [sym_ct_type_ident] = ACTIONS(1591), + [sym_const_ident] = ACTIONS(1589), + [sym_builtin] = ACTIONS(1591), + [anon_sym_LPAREN] = ACTIONS(1591), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_static] = ACTIONS(1589), + [anon_sym_tlocal] = ACTIONS(1589), + [anon_sym_SEMI] = ACTIONS(1591), + [anon_sym_fn] = ACTIONS(1589), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_RBRACE] = ACTIONS(1591), + [anon_sym_const] = ACTIONS(1589), + [anon_sym_var] = ACTIONS(1589), + [anon_sym_return] = ACTIONS(1589), + [anon_sym_continue] = ACTIONS(1589), + [anon_sym_break] = ACTIONS(1589), + [anon_sym_defer] = ACTIONS(1589), + [anon_sym_assert] = ACTIONS(1589), + [anon_sym_case] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1589), + [anon_sym_nextcase] = ACTIONS(1589), + [anon_sym_switch] = ACTIONS(1589), + [anon_sym_AMP_AMP] = ACTIONS(1591), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_for] = ACTIONS(1589), + [anon_sym_foreach] = ACTIONS(1589), + [anon_sym_foreach_r] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1589), + [anon_sym_do] = ACTIONS(1589), + [anon_sym_int] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1589), + [anon_sym_STAR] = ACTIONS(1591), + [anon_sym_asm] = ACTIONS(1589), + [anon_sym_DOLLARassert] = ACTIONS(1589), + [anon_sym_DOLLARerror] = ACTIONS(1589), + [anon_sym_DOLLARecho] = ACTIONS(1589), + [anon_sym_DOLLARif] = ACTIONS(1589), + [anon_sym_DOLLARswitch] = ACTIONS(1589), + [anon_sym_DOLLARfor] = ACTIONS(1589), + [anon_sym_DOLLARforeach] = ACTIONS(1589), + [anon_sym_DOLLARalignof] = ACTIONS(1589), + [anon_sym_DOLLARextnameof] = ACTIONS(1589), + [anon_sym_DOLLARnameof] = ACTIONS(1589), + [anon_sym_DOLLARoffsetof] = ACTIONS(1589), + [anon_sym_DOLLARqnameof] = ACTIONS(1589), + [anon_sym_DOLLARvaconst] = ACTIONS(1589), + [anon_sym_DOLLARvaarg] = ACTIONS(1589), + [anon_sym_DOLLARvaref] = ACTIONS(1589), + [anon_sym_DOLLARvaexpr] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1589), + [anon_sym_false] = ACTIONS(1589), + [anon_sym_null] = ACTIONS(1589), + [anon_sym_DOLLARvacount] = ACTIONS(1589), + [anon_sym_DOLLARappend] = ACTIONS(1589), + [anon_sym_DOLLARconcat] = ACTIONS(1589), + [anon_sym_DOLLAReval] = ACTIONS(1589), + [anon_sym_DOLLARis_const] = ACTIONS(1589), + [anon_sym_DOLLARsizeof] = ACTIONS(1589), + [anon_sym_DOLLARstringify] = ACTIONS(1589), + [anon_sym_DOLLARand] = ACTIONS(1589), + [anon_sym_DOLLARdefined] = ACTIONS(1589), + [anon_sym_DOLLARembed] = ACTIONS(1589), + [anon_sym_DOLLARor] = ACTIONS(1589), + [anon_sym_DOLLARfeature] = ACTIONS(1589), + [anon_sym_DOLLARassignable] = ACTIONS(1589), + [anon_sym_BANG] = ACTIONS(1591), + [anon_sym_TILDE] = ACTIONS(1591), + [anon_sym_PLUS_PLUS] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1591), + [anon_sym_typeid] = ACTIONS(1589), + [anon_sym_LBRACE_PIPE] = ACTIONS(1591), + [anon_sym_PIPE_RBRACE] = ACTIONS(1591), + [anon_sym_void] = ACTIONS(1589), + [anon_sym_bool] = ACTIONS(1589), + [anon_sym_char] = ACTIONS(1589), + [anon_sym_ichar] = ACTIONS(1589), + [anon_sym_short] = ACTIONS(1589), + [anon_sym_ushort] = ACTIONS(1589), + [anon_sym_uint] = ACTIONS(1589), + [anon_sym_long] = ACTIONS(1589), + [anon_sym_ulong] = ACTIONS(1589), + [anon_sym_int128] = ACTIONS(1589), + [anon_sym_uint128] = ACTIONS(1589), + [anon_sym_float] = ACTIONS(1589), + [anon_sym_double] = ACTIONS(1589), + [anon_sym_float16] = ACTIONS(1589), + [anon_sym_bfloat16] = ACTIONS(1589), + [anon_sym_float128] = ACTIONS(1589), + [anon_sym_iptr] = ACTIONS(1589), + [anon_sym_uptr] = ACTIONS(1589), + [anon_sym_isz] = ACTIONS(1589), + [anon_sym_usz] = ACTIONS(1589), + [anon_sym_anyfault] = ACTIONS(1589), + [anon_sym_any] = ACTIONS(1589), + [anon_sym_DOLLARtypeof] = ACTIONS(1589), + [anon_sym_DOLLARtypefrom] = ACTIONS(1589), + [anon_sym_DOLLARvatype] = ACTIONS(1589), + [anon_sym_DOLLARevaltype] = ACTIONS(1589), + [sym_real_literal] = ACTIONS(1591), }, [399] = { [sym_line_comment] = STATE(399), [sym_doc_comment] = STATE(399), [sym_block_comment] = STATE(399), - [sym_ident] = ACTIONS(1414), - [sym_integer_literal] = ACTIONS(1416), - [anon_sym_SQUOTE] = ACTIONS(1416), - [anon_sym_DQUOTE] = ACTIONS(1416), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_bytes_literal] = ACTIONS(1416), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1414), - [sym_at_ident] = ACTIONS(1416), - [sym_hash_ident] = ACTIONS(1416), - [sym_type_ident] = ACTIONS(1416), - [sym_ct_type_ident] = ACTIONS(1416), - [sym_const_ident] = ACTIONS(1414), - [sym_builtin] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(1416), - [anon_sym_AMP] = ACTIONS(1414), - [anon_sym_static] = ACTIONS(1414), - [anon_sym_tlocal] = ACTIONS(1414), - [anon_sym_SEMI] = ACTIONS(1416), - [anon_sym_fn] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1414), - [anon_sym_RBRACE] = ACTIONS(1416), - [anon_sym_const] = ACTIONS(1414), - [anon_sym_var] = ACTIONS(1414), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_continue] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1414), - [anon_sym_defer] = ACTIONS(1414), - [anon_sym_assert] = ACTIONS(1414), - [anon_sym_case] = ACTIONS(1414), - [anon_sym_default] = ACTIONS(1414), - [anon_sym_nextcase] = ACTIONS(1414), - [anon_sym_switch] = ACTIONS(1414), - [anon_sym_AMP_AMP] = ACTIONS(1416), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_for] = ACTIONS(1414), - [anon_sym_foreach] = ACTIONS(1414), - [anon_sym_foreach_r] = ACTIONS(1414), - [anon_sym_while] = ACTIONS(1414), - [anon_sym_do] = ACTIONS(1414), - [anon_sym_int] = ACTIONS(1414), - [anon_sym_PLUS] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_STAR] = ACTIONS(1416), - [anon_sym_asm] = ACTIONS(1414), - [anon_sym_DOLLARassert] = ACTIONS(1414), - [anon_sym_DOLLARerror] = ACTIONS(1414), - [anon_sym_DOLLARecho] = ACTIONS(1414), - [anon_sym_DOLLARif] = ACTIONS(1414), - [anon_sym_DOLLARswitch] = ACTIONS(1414), - [anon_sym_DOLLARfor] = ACTIONS(1414), - [anon_sym_DOLLARforeach] = ACTIONS(1414), - [anon_sym_DOLLARalignof] = ACTIONS(1414), - [anon_sym_DOLLARextnameof] = ACTIONS(1414), - [anon_sym_DOLLARnameof] = ACTIONS(1414), - [anon_sym_DOLLARoffsetof] = ACTIONS(1414), - [anon_sym_DOLLARqnameof] = ACTIONS(1414), - [anon_sym_DOLLARvaconst] = ACTIONS(1414), - [anon_sym_DOLLARvaarg] = ACTIONS(1414), - [anon_sym_DOLLARvaref] = ACTIONS(1414), - [anon_sym_DOLLARvaexpr] = ACTIONS(1414), - [anon_sym_true] = ACTIONS(1414), - [anon_sym_false] = ACTIONS(1414), - [anon_sym_null] = ACTIONS(1414), - [anon_sym_DOLLARvacount] = ACTIONS(1414), - [anon_sym_DOLLARappend] = ACTIONS(1414), - [anon_sym_DOLLARconcat] = ACTIONS(1414), - [anon_sym_DOLLAReval] = ACTIONS(1414), - [anon_sym_DOLLARis_const] = ACTIONS(1414), - [anon_sym_DOLLARsizeof] = ACTIONS(1414), - [anon_sym_DOLLARstringify] = ACTIONS(1414), - [anon_sym_DOLLARand] = ACTIONS(1414), - [anon_sym_DOLLARdefined] = ACTIONS(1414), - [anon_sym_DOLLARembed] = ACTIONS(1414), - [anon_sym_DOLLARor] = ACTIONS(1414), - [anon_sym_DOLLARfeature] = ACTIONS(1414), - [anon_sym_DOLLARassignable] = ACTIONS(1414), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1416), - [anon_sym_DASH_DASH] = ACTIONS(1416), - [anon_sym_typeid] = ACTIONS(1414), - [anon_sym_LBRACE_PIPE] = ACTIONS(1416), - [anon_sym_PIPE_RBRACE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1414), - [anon_sym_bool] = ACTIONS(1414), - [anon_sym_char] = ACTIONS(1414), - [anon_sym_ichar] = ACTIONS(1414), - [anon_sym_short] = ACTIONS(1414), - [anon_sym_ushort] = ACTIONS(1414), - [anon_sym_uint] = ACTIONS(1414), - [anon_sym_long] = ACTIONS(1414), - [anon_sym_ulong] = ACTIONS(1414), - [anon_sym_int128] = ACTIONS(1414), - [anon_sym_uint128] = ACTIONS(1414), - [anon_sym_float] = ACTIONS(1414), - [anon_sym_double] = ACTIONS(1414), - [anon_sym_float16] = ACTIONS(1414), - [anon_sym_bfloat16] = ACTIONS(1414), - [anon_sym_float128] = ACTIONS(1414), - [anon_sym_iptr] = ACTIONS(1414), - [anon_sym_uptr] = ACTIONS(1414), - [anon_sym_isz] = ACTIONS(1414), - [anon_sym_usz] = ACTIONS(1414), - [anon_sym_anyfault] = ACTIONS(1414), - [anon_sym_any] = ACTIONS(1414), - [anon_sym_DOLLARtypeof] = ACTIONS(1414), - [anon_sym_DOLLARtypefrom] = ACTIONS(1414), - [anon_sym_DOLLARvatype] = ACTIONS(1414), - [anon_sym_DOLLARevaltype] = ACTIONS(1414), - [sym_real_literal] = ACTIONS(1416), + [sym_ident] = ACTIONS(1593), + [sym_integer_literal] = ACTIONS(1595), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_DQUOTE] = ACTIONS(1595), + [anon_sym_BQUOTE] = ACTIONS(1595), + [sym_bytes_literal] = ACTIONS(1595), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1593), + [sym_at_ident] = ACTIONS(1595), + [sym_hash_ident] = ACTIONS(1595), + [sym_type_ident] = ACTIONS(1595), + [sym_ct_type_ident] = ACTIONS(1595), + [sym_const_ident] = ACTIONS(1593), + [sym_builtin] = ACTIONS(1595), + [anon_sym_LPAREN] = ACTIONS(1595), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_static] = ACTIONS(1593), + [anon_sym_tlocal] = ACTIONS(1593), + [anon_sym_SEMI] = ACTIONS(1595), + [anon_sym_fn] = ACTIONS(1593), + [anon_sym_LBRACE] = ACTIONS(1593), + [anon_sym_RBRACE] = ACTIONS(1595), + [anon_sym_const] = ACTIONS(1593), + [anon_sym_var] = ACTIONS(1593), + [anon_sym_return] = ACTIONS(1593), + [anon_sym_continue] = ACTIONS(1593), + [anon_sym_break] = ACTIONS(1593), + [anon_sym_defer] = ACTIONS(1593), + [anon_sym_assert] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1593), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_nextcase] = ACTIONS(1593), + [anon_sym_switch] = ACTIONS(1593), + [anon_sym_AMP_AMP] = ACTIONS(1595), + [anon_sym_if] = ACTIONS(1593), + [anon_sym_for] = ACTIONS(1593), + [anon_sym_foreach] = ACTIONS(1593), + [anon_sym_foreach_r] = ACTIONS(1593), + [anon_sym_while] = ACTIONS(1593), + [anon_sym_do] = ACTIONS(1593), + [anon_sym_int] = ACTIONS(1593), + [anon_sym_PLUS] = ACTIONS(1593), + [anon_sym_DASH] = ACTIONS(1593), + [anon_sym_STAR] = ACTIONS(1595), + [anon_sym_asm] = ACTIONS(1593), + [anon_sym_DOLLARassert] = ACTIONS(1593), + [anon_sym_DOLLARerror] = ACTIONS(1593), + [anon_sym_DOLLARecho] = ACTIONS(1593), + [anon_sym_DOLLARif] = ACTIONS(1593), + [anon_sym_DOLLARswitch] = ACTIONS(1593), + [anon_sym_DOLLARfor] = ACTIONS(1593), + [anon_sym_DOLLARforeach] = ACTIONS(1593), + [anon_sym_DOLLARalignof] = ACTIONS(1593), + [anon_sym_DOLLARextnameof] = ACTIONS(1593), + [anon_sym_DOLLARnameof] = ACTIONS(1593), + [anon_sym_DOLLARoffsetof] = ACTIONS(1593), + [anon_sym_DOLLARqnameof] = ACTIONS(1593), + [anon_sym_DOLLARvaconst] = ACTIONS(1593), + [anon_sym_DOLLARvaarg] = ACTIONS(1593), + [anon_sym_DOLLARvaref] = ACTIONS(1593), + [anon_sym_DOLLARvaexpr] = ACTIONS(1593), + [anon_sym_true] = ACTIONS(1593), + [anon_sym_false] = ACTIONS(1593), + [anon_sym_null] = ACTIONS(1593), + [anon_sym_DOLLARvacount] = ACTIONS(1593), + [anon_sym_DOLLARappend] = ACTIONS(1593), + [anon_sym_DOLLARconcat] = ACTIONS(1593), + [anon_sym_DOLLAReval] = ACTIONS(1593), + [anon_sym_DOLLARis_const] = ACTIONS(1593), + [anon_sym_DOLLARsizeof] = ACTIONS(1593), + [anon_sym_DOLLARstringify] = ACTIONS(1593), + [anon_sym_DOLLARand] = ACTIONS(1593), + [anon_sym_DOLLARdefined] = ACTIONS(1593), + [anon_sym_DOLLARembed] = ACTIONS(1593), + [anon_sym_DOLLARor] = ACTIONS(1593), + [anon_sym_DOLLARfeature] = ACTIONS(1593), + [anon_sym_DOLLARassignable] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1595), + [anon_sym_TILDE] = ACTIONS(1595), + [anon_sym_PLUS_PLUS] = ACTIONS(1595), + [anon_sym_DASH_DASH] = ACTIONS(1595), + [anon_sym_typeid] = ACTIONS(1593), + [anon_sym_LBRACE_PIPE] = ACTIONS(1595), + [anon_sym_PIPE_RBRACE] = ACTIONS(1595), + [anon_sym_void] = ACTIONS(1593), + [anon_sym_bool] = ACTIONS(1593), + [anon_sym_char] = ACTIONS(1593), + [anon_sym_ichar] = ACTIONS(1593), + [anon_sym_short] = ACTIONS(1593), + [anon_sym_ushort] = ACTIONS(1593), + [anon_sym_uint] = ACTIONS(1593), + [anon_sym_long] = ACTIONS(1593), + [anon_sym_ulong] = ACTIONS(1593), + [anon_sym_int128] = ACTIONS(1593), + [anon_sym_uint128] = ACTIONS(1593), + [anon_sym_float] = ACTIONS(1593), + [anon_sym_double] = ACTIONS(1593), + [anon_sym_float16] = ACTIONS(1593), + [anon_sym_bfloat16] = ACTIONS(1593), + [anon_sym_float128] = ACTIONS(1593), + [anon_sym_iptr] = ACTIONS(1593), + [anon_sym_uptr] = ACTIONS(1593), + [anon_sym_isz] = ACTIONS(1593), + [anon_sym_usz] = ACTIONS(1593), + [anon_sym_anyfault] = ACTIONS(1593), + [anon_sym_any] = ACTIONS(1593), + [anon_sym_DOLLARtypeof] = ACTIONS(1593), + [anon_sym_DOLLARtypefrom] = ACTIONS(1593), + [anon_sym_DOLLARvatype] = ACTIONS(1593), + [anon_sym_DOLLARevaltype] = ACTIONS(1593), + [sym_real_literal] = ACTIONS(1595), }, [400] = { [sym_line_comment] = STATE(400), [sym_doc_comment] = STATE(400), [sym_block_comment] = STATE(400), - [sym_ident] = ACTIONS(1410), - [sym_integer_literal] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1412), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_BQUOTE] = ACTIONS(1412), - [sym_bytes_literal] = ACTIONS(1412), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1410), - [sym_at_ident] = ACTIONS(1412), - [sym_hash_ident] = ACTIONS(1412), - [sym_type_ident] = ACTIONS(1412), - [sym_ct_type_ident] = ACTIONS(1412), - [sym_const_ident] = ACTIONS(1410), - [sym_builtin] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1410), - [anon_sym_static] = ACTIONS(1410), - [anon_sym_tlocal] = ACTIONS(1410), - [anon_sym_SEMI] = ACTIONS(1412), - [anon_sym_fn] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1410), - [anon_sym_RBRACE] = ACTIONS(1412), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_var] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_defer] = ACTIONS(1410), - [anon_sym_assert] = ACTIONS(1410), - [anon_sym_case] = ACTIONS(1410), - [anon_sym_default] = ACTIONS(1410), - [anon_sym_nextcase] = ACTIONS(1410), - [anon_sym_switch] = ACTIONS(1410), - [anon_sym_AMP_AMP] = ACTIONS(1412), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_foreach] = ACTIONS(1410), - [anon_sym_foreach_r] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [anon_sym_do] = ACTIONS(1410), - [anon_sym_int] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1412), - [anon_sym_asm] = ACTIONS(1410), - [anon_sym_DOLLARassert] = ACTIONS(1410), - [anon_sym_DOLLARerror] = ACTIONS(1410), - [anon_sym_DOLLARecho] = ACTIONS(1410), - [anon_sym_DOLLARif] = ACTIONS(1410), - [anon_sym_DOLLARswitch] = ACTIONS(1410), - [anon_sym_DOLLARfor] = ACTIONS(1410), - [anon_sym_DOLLARforeach] = ACTIONS(1410), - [anon_sym_DOLLARalignof] = ACTIONS(1410), - [anon_sym_DOLLARextnameof] = ACTIONS(1410), - [anon_sym_DOLLARnameof] = ACTIONS(1410), - [anon_sym_DOLLARoffsetof] = ACTIONS(1410), - [anon_sym_DOLLARqnameof] = ACTIONS(1410), - [anon_sym_DOLLARvaconst] = ACTIONS(1410), - [anon_sym_DOLLARvaarg] = ACTIONS(1410), - [anon_sym_DOLLARvaref] = ACTIONS(1410), - [anon_sym_DOLLARvaexpr] = ACTIONS(1410), - [anon_sym_true] = ACTIONS(1410), - [anon_sym_false] = ACTIONS(1410), - [anon_sym_null] = ACTIONS(1410), - [anon_sym_DOLLARvacount] = ACTIONS(1410), - [anon_sym_DOLLARappend] = ACTIONS(1410), - [anon_sym_DOLLARconcat] = ACTIONS(1410), - [anon_sym_DOLLAReval] = ACTIONS(1410), - [anon_sym_DOLLARis_const] = ACTIONS(1410), - [anon_sym_DOLLARsizeof] = ACTIONS(1410), - [anon_sym_DOLLARstringify] = ACTIONS(1410), - [anon_sym_DOLLARand] = ACTIONS(1410), - [anon_sym_DOLLARdefined] = ACTIONS(1410), - [anon_sym_DOLLARembed] = ACTIONS(1410), - [anon_sym_DOLLARor] = ACTIONS(1410), - [anon_sym_DOLLARfeature] = ACTIONS(1410), - [anon_sym_DOLLARassignable] = ACTIONS(1410), - [anon_sym_BANG] = ACTIONS(1412), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_PLUS_PLUS] = ACTIONS(1412), - [anon_sym_DASH_DASH] = ACTIONS(1412), - [anon_sym_typeid] = ACTIONS(1410), - [anon_sym_LBRACE_PIPE] = ACTIONS(1412), - [anon_sym_PIPE_RBRACE] = ACTIONS(1412), - [anon_sym_void] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_ichar] = ACTIONS(1410), - [anon_sym_short] = ACTIONS(1410), - [anon_sym_ushort] = ACTIONS(1410), - [anon_sym_uint] = ACTIONS(1410), - [anon_sym_long] = ACTIONS(1410), - [anon_sym_ulong] = ACTIONS(1410), - [anon_sym_int128] = ACTIONS(1410), - [anon_sym_uint128] = ACTIONS(1410), - [anon_sym_float] = ACTIONS(1410), - [anon_sym_double] = ACTIONS(1410), - [anon_sym_float16] = ACTIONS(1410), - [anon_sym_bfloat16] = ACTIONS(1410), - [anon_sym_float128] = ACTIONS(1410), - [anon_sym_iptr] = ACTIONS(1410), - [anon_sym_uptr] = ACTIONS(1410), - [anon_sym_isz] = ACTIONS(1410), - [anon_sym_usz] = ACTIONS(1410), - [anon_sym_anyfault] = ACTIONS(1410), - [anon_sym_any] = ACTIONS(1410), - [anon_sym_DOLLARtypeof] = ACTIONS(1410), - [anon_sym_DOLLARtypefrom] = ACTIONS(1410), - [anon_sym_DOLLARvatype] = ACTIONS(1410), - [anon_sym_DOLLARevaltype] = ACTIONS(1410), - [sym_real_literal] = ACTIONS(1412), + [sym_ident] = ACTIONS(1343), + [sym_integer_literal] = ACTIONS(1345), + [anon_sym_SQUOTE] = ACTIONS(1345), + [anon_sym_DQUOTE] = ACTIONS(1345), + [anon_sym_BQUOTE] = ACTIONS(1345), + [sym_bytes_literal] = ACTIONS(1345), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1343), + [sym_at_ident] = ACTIONS(1345), + [sym_hash_ident] = ACTIONS(1345), + [sym_type_ident] = ACTIONS(1345), + [sym_ct_type_ident] = ACTIONS(1345), + [sym_const_ident] = ACTIONS(1343), + [sym_builtin] = ACTIONS(1345), + [anon_sym_LPAREN] = ACTIONS(1345), + [anon_sym_AMP] = ACTIONS(1343), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_tlocal] = ACTIONS(1343), + [anon_sym_SEMI] = ACTIONS(1345), + [anon_sym_fn] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1343), + [anon_sym_RBRACE] = ACTIONS(1345), + [anon_sym_const] = ACTIONS(1343), + [anon_sym_var] = ACTIONS(1343), + [anon_sym_return] = ACTIONS(1343), + [anon_sym_continue] = ACTIONS(1343), + [anon_sym_break] = ACTIONS(1343), + [anon_sym_defer] = ACTIONS(1343), + [anon_sym_assert] = ACTIONS(1343), + [anon_sym_case] = ACTIONS(1343), + [anon_sym_default] = ACTIONS(1343), + [anon_sym_nextcase] = ACTIONS(1343), + [anon_sym_switch] = ACTIONS(1343), + [anon_sym_AMP_AMP] = ACTIONS(1345), + [anon_sym_if] = ACTIONS(1343), + [anon_sym_for] = ACTIONS(1343), + [anon_sym_foreach] = ACTIONS(1343), + [anon_sym_foreach_r] = ACTIONS(1343), + [anon_sym_while] = ACTIONS(1343), + [anon_sym_do] = ACTIONS(1343), + [anon_sym_int] = ACTIONS(1343), + [anon_sym_PLUS] = ACTIONS(1343), + [anon_sym_DASH] = ACTIONS(1343), + [anon_sym_STAR] = ACTIONS(1345), + [anon_sym_asm] = ACTIONS(1343), + [anon_sym_DOLLARassert] = ACTIONS(1343), + [anon_sym_DOLLARerror] = ACTIONS(1343), + [anon_sym_DOLLARecho] = ACTIONS(1343), + [anon_sym_DOLLARif] = ACTIONS(1343), + [anon_sym_DOLLARswitch] = ACTIONS(1343), + [anon_sym_DOLLARfor] = ACTIONS(1343), + [anon_sym_DOLLARforeach] = ACTIONS(1343), + [anon_sym_DOLLARalignof] = ACTIONS(1343), + [anon_sym_DOLLARextnameof] = ACTIONS(1343), + [anon_sym_DOLLARnameof] = ACTIONS(1343), + [anon_sym_DOLLARoffsetof] = ACTIONS(1343), + [anon_sym_DOLLARqnameof] = ACTIONS(1343), + [anon_sym_DOLLARvaconst] = ACTIONS(1343), + [anon_sym_DOLLARvaarg] = ACTIONS(1343), + [anon_sym_DOLLARvaref] = ACTIONS(1343), + [anon_sym_DOLLARvaexpr] = ACTIONS(1343), + [anon_sym_true] = ACTIONS(1343), + [anon_sym_false] = ACTIONS(1343), + [anon_sym_null] = ACTIONS(1343), + [anon_sym_DOLLARvacount] = ACTIONS(1343), + [anon_sym_DOLLARappend] = ACTIONS(1343), + [anon_sym_DOLLARconcat] = ACTIONS(1343), + [anon_sym_DOLLAReval] = ACTIONS(1343), + [anon_sym_DOLLARis_const] = ACTIONS(1343), + [anon_sym_DOLLARsizeof] = ACTIONS(1343), + [anon_sym_DOLLARstringify] = ACTIONS(1343), + [anon_sym_DOLLARand] = ACTIONS(1343), + [anon_sym_DOLLARdefined] = ACTIONS(1343), + [anon_sym_DOLLARembed] = ACTIONS(1343), + [anon_sym_DOLLARor] = ACTIONS(1343), + [anon_sym_DOLLARfeature] = ACTIONS(1343), + [anon_sym_DOLLARassignable] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(1345), + [anon_sym_TILDE] = ACTIONS(1345), + [anon_sym_PLUS_PLUS] = ACTIONS(1345), + [anon_sym_DASH_DASH] = ACTIONS(1345), + [anon_sym_typeid] = ACTIONS(1343), + [anon_sym_LBRACE_PIPE] = ACTIONS(1345), + [anon_sym_PIPE_RBRACE] = ACTIONS(1345), + [anon_sym_void] = ACTIONS(1343), + [anon_sym_bool] = ACTIONS(1343), + [anon_sym_char] = ACTIONS(1343), + [anon_sym_ichar] = ACTIONS(1343), + [anon_sym_short] = ACTIONS(1343), + [anon_sym_ushort] = ACTIONS(1343), + [anon_sym_uint] = ACTIONS(1343), + [anon_sym_long] = ACTIONS(1343), + [anon_sym_ulong] = ACTIONS(1343), + [anon_sym_int128] = ACTIONS(1343), + [anon_sym_uint128] = ACTIONS(1343), + [anon_sym_float] = ACTIONS(1343), + [anon_sym_double] = ACTIONS(1343), + [anon_sym_float16] = ACTIONS(1343), + [anon_sym_bfloat16] = ACTIONS(1343), + [anon_sym_float128] = ACTIONS(1343), + [anon_sym_iptr] = ACTIONS(1343), + [anon_sym_uptr] = ACTIONS(1343), + [anon_sym_isz] = ACTIONS(1343), + [anon_sym_usz] = ACTIONS(1343), + [anon_sym_anyfault] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_DOLLARtypeof] = ACTIONS(1343), + [anon_sym_DOLLARtypefrom] = ACTIONS(1343), + [anon_sym_DOLLARvatype] = ACTIONS(1343), + [anon_sym_DOLLARevaltype] = ACTIONS(1343), + [sym_real_literal] = ACTIONS(1345), }, [401] = { [sym_line_comment] = STATE(401), [sym_doc_comment] = STATE(401), [sym_block_comment] = STATE(401), - [sym_ident] = ACTIONS(1418), - [sym_integer_literal] = ACTIONS(1420), - [anon_sym_SQUOTE] = ACTIONS(1420), - [anon_sym_DQUOTE] = ACTIONS(1420), - [anon_sym_BQUOTE] = ACTIONS(1420), - [sym_bytes_literal] = ACTIONS(1420), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1418), - [sym_at_ident] = ACTIONS(1420), - [sym_hash_ident] = ACTIONS(1420), - [sym_type_ident] = ACTIONS(1420), - [sym_ct_type_ident] = ACTIONS(1420), - [sym_const_ident] = ACTIONS(1418), - [sym_builtin] = ACTIONS(1420), - [anon_sym_LPAREN] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_static] = ACTIONS(1418), - [anon_sym_tlocal] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym_fn] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_RBRACE] = ACTIONS(1420), - [anon_sym_const] = ACTIONS(1418), - [anon_sym_var] = ACTIONS(1418), - [anon_sym_return] = ACTIONS(1418), - [anon_sym_continue] = ACTIONS(1418), - [anon_sym_break] = ACTIONS(1418), - [anon_sym_defer] = ACTIONS(1418), - [anon_sym_assert] = ACTIONS(1418), - [anon_sym_case] = ACTIONS(1418), - [anon_sym_default] = ACTIONS(1418), - [anon_sym_nextcase] = ACTIONS(1418), - [anon_sym_switch] = ACTIONS(1418), - [anon_sym_AMP_AMP] = ACTIONS(1420), - [anon_sym_if] = ACTIONS(1418), - [anon_sym_for] = ACTIONS(1418), - [anon_sym_foreach] = ACTIONS(1418), - [anon_sym_foreach_r] = ACTIONS(1418), - [anon_sym_while] = ACTIONS(1418), - [anon_sym_do] = ACTIONS(1418), - [anon_sym_int] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_asm] = ACTIONS(1418), - [anon_sym_DOLLARassert] = ACTIONS(1418), - [anon_sym_DOLLARerror] = ACTIONS(1418), - [anon_sym_DOLLARecho] = ACTIONS(1418), - [anon_sym_DOLLARif] = ACTIONS(1418), - [anon_sym_DOLLARswitch] = ACTIONS(1418), - [anon_sym_DOLLARfor] = ACTIONS(1418), - [anon_sym_DOLLARforeach] = ACTIONS(1418), - [anon_sym_DOLLARalignof] = ACTIONS(1418), - [anon_sym_DOLLARextnameof] = ACTIONS(1418), - [anon_sym_DOLLARnameof] = ACTIONS(1418), - [anon_sym_DOLLARoffsetof] = ACTIONS(1418), - [anon_sym_DOLLARqnameof] = ACTIONS(1418), - [anon_sym_DOLLARvaconst] = ACTIONS(1418), - [anon_sym_DOLLARvaarg] = ACTIONS(1418), - [anon_sym_DOLLARvaref] = ACTIONS(1418), - [anon_sym_DOLLARvaexpr] = ACTIONS(1418), - [anon_sym_true] = ACTIONS(1418), - [anon_sym_false] = ACTIONS(1418), - [anon_sym_null] = ACTIONS(1418), - [anon_sym_DOLLARvacount] = ACTIONS(1418), - [anon_sym_DOLLARappend] = ACTIONS(1418), - [anon_sym_DOLLARconcat] = ACTIONS(1418), - [anon_sym_DOLLAReval] = ACTIONS(1418), - [anon_sym_DOLLARis_const] = ACTIONS(1418), - [anon_sym_DOLLARsizeof] = ACTIONS(1418), - [anon_sym_DOLLARstringify] = ACTIONS(1418), - [anon_sym_DOLLARand] = ACTIONS(1418), - [anon_sym_DOLLARdefined] = ACTIONS(1418), - [anon_sym_DOLLARembed] = ACTIONS(1418), - [anon_sym_DOLLARor] = ACTIONS(1418), - [anon_sym_DOLLARfeature] = ACTIONS(1418), - [anon_sym_DOLLARassignable] = ACTIONS(1418), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_TILDE] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_typeid] = ACTIONS(1418), - [anon_sym_LBRACE_PIPE] = ACTIONS(1420), - [anon_sym_PIPE_RBRACE] = ACTIONS(1420), - [anon_sym_void] = ACTIONS(1418), - [anon_sym_bool] = ACTIONS(1418), - [anon_sym_char] = ACTIONS(1418), - [anon_sym_ichar] = ACTIONS(1418), - [anon_sym_short] = ACTIONS(1418), - [anon_sym_ushort] = ACTIONS(1418), - [anon_sym_uint] = ACTIONS(1418), - [anon_sym_long] = ACTIONS(1418), - [anon_sym_ulong] = ACTIONS(1418), - [anon_sym_int128] = ACTIONS(1418), - [anon_sym_uint128] = ACTIONS(1418), - [anon_sym_float] = ACTIONS(1418), - [anon_sym_double] = ACTIONS(1418), - [anon_sym_float16] = ACTIONS(1418), - [anon_sym_bfloat16] = ACTIONS(1418), - [anon_sym_float128] = ACTIONS(1418), - [anon_sym_iptr] = ACTIONS(1418), - [anon_sym_uptr] = ACTIONS(1418), - [anon_sym_isz] = ACTIONS(1418), - [anon_sym_usz] = ACTIONS(1418), - [anon_sym_anyfault] = ACTIONS(1418), - [anon_sym_any] = ACTIONS(1418), - [anon_sym_DOLLARtypeof] = ACTIONS(1418), - [anon_sym_DOLLARtypefrom] = ACTIONS(1418), - [anon_sym_DOLLARvatype] = ACTIONS(1418), - [anon_sym_DOLLARevaltype] = ACTIONS(1418), - [sym_real_literal] = ACTIONS(1420), + [sym_ident] = ACTIONS(1597), + [sym_integer_literal] = ACTIONS(1599), + [anon_sym_SQUOTE] = ACTIONS(1599), + [anon_sym_DQUOTE] = ACTIONS(1599), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_bytes_literal] = ACTIONS(1599), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1597), + [sym_at_ident] = ACTIONS(1599), + [sym_hash_ident] = ACTIONS(1599), + [sym_type_ident] = ACTIONS(1599), + [sym_ct_type_ident] = ACTIONS(1599), + [sym_const_ident] = ACTIONS(1597), + [sym_builtin] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_AMP] = ACTIONS(1597), + [anon_sym_static] = ACTIONS(1597), + [anon_sym_tlocal] = ACTIONS(1597), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_fn] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1597), + [anon_sym_RBRACE] = ACTIONS(1599), + [anon_sym_const] = ACTIONS(1597), + [anon_sym_var] = ACTIONS(1597), + [anon_sym_return] = ACTIONS(1597), + [anon_sym_continue] = ACTIONS(1597), + [anon_sym_break] = ACTIONS(1597), + [anon_sym_defer] = ACTIONS(1597), + [anon_sym_assert] = ACTIONS(1597), + [anon_sym_case] = ACTIONS(1597), + [anon_sym_default] = ACTIONS(1597), + [anon_sym_nextcase] = ACTIONS(1597), + [anon_sym_switch] = ACTIONS(1597), + [anon_sym_AMP_AMP] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(1597), + [anon_sym_for] = ACTIONS(1597), + [anon_sym_foreach] = ACTIONS(1597), + [anon_sym_foreach_r] = ACTIONS(1597), + [anon_sym_while] = ACTIONS(1597), + [anon_sym_do] = ACTIONS(1597), + [anon_sym_int] = ACTIONS(1597), + [anon_sym_PLUS] = ACTIONS(1597), + [anon_sym_DASH] = ACTIONS(1597), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_asm] = ACTIONS(1597), + [anon_sym_DOLLARassert] = ACTIONS(1597), + [anon_sym_DOLLARerror] = ACTIONS(1597), + [anon_sym_DOLLARecho] = ACTIONS(1597), + [anon_sym_DOLLARif] = ACTIONS(1597), + [anon_sym_DOLLARswitch] = ACTIONS(1597), + [anon_sym_DOLLARfor] = ACTIONS(1597), + [anon_sym_DOLLARforeach] = ACTIONS(1597), + [anon_sym_DOLLARalignof] = ACTIONS(1597), + [anon_sym_DOLLARextnameof] = ACTIONS(1597), + [anon_sym_DOLLARnameof] = ACTIONS(1597), + [anon_sym_DOLLARoffsetof] = ACTIONS(1597), + [anon_sym_DOLLARqnameof] = ACTIONS(1597), + [anon_sym_DOLLARvaconst] = ACTIONS(1597), + [anon_sym_DOLLARvaarg] = ACTIONS(1597), + [anon_sym_DOLLARvaref] = ACTIONS(1597), + [anon_sym_DOLLARvaexpr] = ACTIONS(1597), + [anon_sym_true] = ACTIONS(1597), + [anon_sym_false] = ACTIONS(1597), + [anon_sym_null] = ACTIONS(1597), + [anon_sym_DOLLARvacount] = ACTIONS(1597), + [anon_sym_DOLLARappend] = ACTIONS(1597), + [anon_sym_DOLLARconcat] = ACTIONS(1597), + [anon_sym_DOLLAReval] = ACTIONS(1597), + [anon_sym_DOLLARis_const] = ACTIONS(1597), + [anon_sym_DOLLARsizeof] = ACTIONS(1597), + [anon_sym_DOLLARstringify] = ACTIONS(1597), + [anon_sym_DOLLARand] = ACTIONS(1597), + [anon_sym_DOLLARdefined] = ACTIONS(1597), + [anon_sym_DOLLARembed] = ACTIONS(1597), + [anon_sym_DOLLARor] = ACTIONS(1597), + [anon_sym_DOLLARfeature] = ACTIONS(1597), + [anon_sym_DOLLARassignable] = ACTIONS(1597), + [anon_sym_BANG] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_DASH_DASH] = ACTIONS(1599), + [anon_sym_typeid] = ACTIONS(1597), + [anon_sym_LBRACE_PIPE] = ACTIONS(1599), + [anon_sym_PIPE_RBRACE] = ACTIONS(1599), + [anon_sym_void] = ACTIONS(1597), + [anon_sym_bool] = ACTIONS(1597), + [anon_sym_char] = ACTIONS(1597), + [anon_sym_ichar] = ACTIONS(1597), + [anon_sym_short] = ACTIONS(1597), + [anon_sym_ushort] = ACTIONS(1597), + [anon_sym_uint] = ACTIONS(1597), + [anon_sym_long] = ACTIONS(1597), + [anon_sym_ulong] = ACTIONS(1597), + [anon_sym_int128] = ACTIONS(1597), + [anon_sym_uint128] = ACTIONS(1597), + [anon_sym_float] = ACTIONS(1597), + [anon_sym_double] = ACTIONS(1597), + [anon_sym_float16] = ACTIONS(1597), + [anon_sym_bfloat16] = ACTIONS(1597), + [anon_sym_float128] = ACTIONS(1597), + [anon_sym_iptr] = ACTIONS(1597), + [anon_sym_uptr] = ACTIONS(1597), + [anon_sym_isz] = ACTIONS(1597), + [anon_sym_usz] = ACTIONS(1597), + [anon_sym_anyfault] = ACTIONS(1597), + [anon_sym_any] = ACTIONS(1597), + [anon_sym_DOLLARtypeof] = ACTIONS(1597), + [anon_sym_DOLLARtypefrom] = ACTIONS(1597), + [anon_sym_DOLLARvatype] = ACTIONS(1597), + [anon_sym_DOLLARevaltype] = ACTIONS(1597), + [sym_real_literal] = ACTIONS(1599), }, [402] = { [sym_line_comment] = STATE(402), [sym_doc_comment] = STATE(402), [sym_block_comment] = STATE(402), - [sym_ident] = ACTIONS(1422), - [sym_integer_literal] = ACTIONS(1424), - [anon_sym_SQUOTE] = ACTIONS(1424), - [anon_sym_DQUOTE] = ACTIONS(1424), - [anon_sym_BQUOTE] = ACTIONS(1424), - [sym_bytes_literal] = ACTIONS(1424), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1422), - [sym_at_ident] = ACTIONS(1424), - [sym_hash_ident] = ACTIONS(1424), - [sym_type_ident] = ACTIONS(1424), - [sym_ct_type_ident] = ACTIONS(1424), - [sym_const_ident] = ACTIONS(1422), - [sym_builtin] = ACTIONS(1424), - [anon_sym_LPAREN] = ACTIONS(1424), - [anon_sym_AMP] = ACTIONS(1422), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_tlocal] = ACTIONS(1422), - [anon_sym_SEMI] = ACTIONS(1424), - [anon_sym_fn] = ACTIONS(1422), - [anon_sym_LBRACE] = ACTIONS(1422), - [anon_sym_RBRACE] = ACTIONS(1424), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_var] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_continue] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_defer] = ACTIONS(1422), - [anon_sym_assert] = ACTIONS(1422), - [anon_sym_case] = ACTIONS(1422), - [anon_sym_default] = ACTIONS(1422), - [anon_sym_nextcase] = ACTIONS(1422), - [anon_sym_switch] = ACTIONS(1422), - [anon_sym_AMP_AMP] = ACTIONS(1424), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_foreach] = ACTIONS(1422), - [anon_sym_foreach_r] = ACTIONS(1422), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_do] = ACTIONS(1422), - [anon_sym_int] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_STAR] = ACTIONS(1424), - [anon_sym_asm] = ACTIONS(1422), - [anon_sym_DOLLARassert] = ACTIONS(1422), - [anon_sym_DOLLARerror] = ACTIONS(1422), - [anon_sym_DOLLARecho] = ACTIONS(1422), - [anon_sym_DOLLARif] = ACTIONS(1422), - [anon_sym_DOLLARswitch] = ACTIONS(1422), - [anon_sym_DOLLARfor] = ACTIONS(1422), - [anon_sym_DOLLARforeach] = ACTIONS(1422), - [anon_sym_DOLLARalignof] = ACTIONS(1422), - [anon_sym_DOLLARextnameof] = ACTIONS(1422), - [anon_sym_DOLLARnameof] = ACTIONS(1422), - [anon_sym_DOLLARoffsetof] = ACTIONS(1422), - [anon_sym_DOLLARqnameof] = ACTIONS(1422), - [anon_sym_DOLLARvaconst] = ACTIONS(1422), - [anon_sym_DOLLARvaarg] = ACTIONS(1422), - [anon_sym_DOLLARvaref] = ACTIONS(1422), - [anon_sym_DOLLARvaexpr] = ACTIONS(1422), - [anon_sym_true] = ACTIONS(1422), - [anon_sym_false] = ACTIONS(1422), - [anon_sym_null] = ACTIONS(1422), - [anon_sym_DOLLARvacount] = ACTIONS(1422), - [anon_sym_DOLLARappend] = ACTIONS(1422), - [anon_sym_DOLLARconcat] = ACTIONS(1422), - [anon_sym_DOLLAReval] = ACTIONS(1422), - [anon_sym_DOLLARis_const] = ACTIONS(1422), - [anon_sym_DOLLARsizeof] = ACTIONS(1422), - [anon_sym_DOLLARstringify] = ACTIONS(1422), - [anon_sym_DOLLARand] = ACTIONS(1422), - [anon_sym_DOLLARdefined] = ACTIONS(1422), - [anon_sym_DOLLARembed] = ACTIONS(1422), - [anon_sym_DOLLARor] = ACTIONS(1422), - [anon_sym_DOLLARfeature] = ACTIONS(1422), - [anon_sym_DOLLARassignable] = ACTIONS(1422), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_TILDE] = ACTIONS(1424), - [anon_sym_PLUS_PLUS] = ACTIONS(1424), - [anon_sym_DASH_DASH] = ACTIONS(1424), - [anon_sym_typeid] = ACTIONS(1422), - [anon_sym_LBRACE_PIPE] = ACTIONS(1424), - [anon_sym_PIPE_RBRACE] = ACTIONS(1424), - [anon_sym_void] = ACTIONS(1422), - [anon_sym_bool] = ACTIONS(1422), - [anon_sym_char] = ACTIONS(1422), - [anon_sym_ichar] = ACTIONS(1422), - [anon_sym_short] = ACTIONS(1422), - [anon_sym_ushort] = ACTIONS(1422), - [anon_sym_uint] = ACTIONS(1422), - [anon_sym_long] = ACTIONS(1422), - [anon_sym_ulong] = ACTIONS(1422), - [anon_sym_int128] = ACTIONS(1422), - [anon_sym_uint128] = ACTIONS(1422), - [anon_sym_float] = ACTIONS(1422), - [anon_sym_double] = ACTIONS(1422), - [anon_sym_float16] = ACTIONS(1422), - [anon_sym_bfloat16] = ACTIONS(1422), - [anon_sym_float128] = ACTIONS(1422), - [anon_sym_iptr] = ACTIONS(1422), - [anon_sym_uptr] = ACTIONS(1422), - [anon_sym_isz] = ACTIONS(1422), - [anon_sym_usz] = ACTIONS(1422), - [anon_sym_anyfault] = ACTIONS(1422), - [anon_sym_any] = ACTIONS(1422), - [anon_sym_DOLLARtypeof] = ACTIONS(1422), - [anon_sym_DOLLARtypefrom] = ACTIONS(1422), - [anon_sym_DOLLARvatype] = ACTIONS(1422), - [anon_sym_DOLLARevaltype] = ACTIONS(1422), - [sym_real_literal] = ACTIONS(1424), + [sym_ident] = ACTIONS(1601), + [sym_integer_literal] = ACTIONS(1603), + [anon_sym_SQUOTE] = ACTIONS(1603), + [anon_sym_DQUOTE] = ACTIONS(1603), + [anon_sym_BQUOTE] = ACTIONS(1603), + [sym_bytes_literal] = ACTIONS(1603), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1601), + [sym_at_ident] = ACTIONS(1603), + [sym_hash_ident] = ACTIONS(1603), + [sym_type_ident] = ACTIONS(1603), + [sym_ct_type_ident] = ACTIONS(1603), + [sym_const_ident] = ACTIONS(1601), + [sym_builtin] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_static] = ACTIONS(1601), + [anon_sym_tlocal] = ACTIONS(1601), + [anon_sym_SEMI] = ACTIONS(1603), + [anon_sym_fn] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(1601), + [anon_sym_RBRACE] = ACTIONS(1603), + [anon_sym_const] = ACTIONS(1601), + [anon_sym_var] = ACTIONS(1601), + [anon_sym_return] = ACTIONS(1601), + [anon_sym_continue] = ACTIONS(1601), + [anon_sym_break] = ACTIONS(1601), + [anon_sym_defer] = ACTIONS(1601), + [anon_sym_assert] = ACTIONS(1601), + [anon_sym_case] = ACTIONS(1601), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_nextcase] = ACTIONS(1601), + [anon_sym_switch] = ACTIONS(1601), + [anon_sym_AMP_AMP] = ACTIONS(1603), + [anon_sym_if] = ACTIONS(1601), + [anon_sym_for] = ACTIONS(1601), + [anon_sym_foreach] = ACTIONS(1601), + [anon_sym_foreach_r] = ACTIONS(1601), + [anon_sym_while] = ACTIONS(1601), + [anon_sym_do] = ACTIONS(1601), + [anon_sym_int] = ACTIONS(1601), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_asm] = ACTIONS(1601), + [anon_sym_DOLLARassert] = ACTIONS(1601), + [anon_sym_DOLLARerror] = ACTIONS(1601), + [anon_sym_DOLLARecho] = ACTIONS(1601), + [anon_sym_DOLLARif] = ACTIONS(1601), + [anon_sym_DOLLARswitch] = ACTIONS(1601), + [anon_sym_DOLLARfor] = ACTIONS(1601), + [anon_sym_DOLLARforeach] = ACTIONS(1601), + [anon_sym_DOLLARalignof] = ACTIONS(1601), + [anon_sym_DOLLARextnameof] = ACTIONS(1601), + [anon_sym_DOLLARnameof] = ACTIONS(1601), + [anon_sym_DOLLARoffsetof] = ACTIONS(1601), + [anon_sym_DOLLARqnameof] = ACTIONS(1601), + [anon_sym_DOLLARvaconst] = ACTIONS(1601), + [anon_sym_DOLLARvaarg] = ACTIONS(1601), + [anon_sym_DOLLARvaref] = ACTIONS(1601), + [anon_sym_DOLLARvaexpr] = ACTIONS(1601), + [anon_sym_true] = ACTIONS(1601), + [anon_sym_false] = ACTIONS(1601), + [anon_sym_null] = ACTIONS(1601), + [anon_sym_DOLLARvacount] = ACTIONS(1601), + [anon_sym_DOLLARappend] = ACTIONS(1601), + [anon_sym_DOLLARconcat] = ACTIONS(1601), + [anon_sym_DOLLAReval] = ACTIONS(1601), + [anon_sym_DOLLARis_const] = ACTIONS(1601), + [anon_sym_DOLLARsizeof] = ACTIONS(1601), + [anon_sym_DOLLARstringify] = ACTIONS(1601), + [anon_sym_DOLLARand] = ACTIONS(1601), + [anon_sym_DOLLARdefined] = ACTIONS(1601), + [anon_sym_DOLLARembed] = ACTIONS(1601), + [anon_sym_DOLLARor] = ACTIONS(1601), + [anon_sym_DOLLARfeature] = ACTIONS(1601), + [anon_sym_DOLLARassignable] = ACTIONS(1601), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1603), + [anon_sym_DASH_DASH] = ACTIONS(1603), + [anon_sym_typeid] = ACTIONS(1601), + [anon_sym_LBRACE_PIPE] = ACTIONS(1603), + [anon_sym_PIPE_RBRACE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1601), + [anon_sym_bool] = ACTIONS(1601), + [anon_sym_char] = ACTIONS(1601), + [anon_sym_ichar] = ACTIONS(1601), + [anon_sym_short] = ACTIONS(1601), + [anon_sym_ushort] = ACTIONS(1601), + [anon_sym_uint] = ACTIONS(1601), + [anon_sym_long] = ACTIONS(1601), + [anon_sym_ulong] = ACTIONS(1601), + [anon_sym_int128] = ACTIONS(1601), + [anon_sym_uint128] = ACTIONS(1601), + [anon_sym_float] = ACTIONS(1601), + [anon_sym_double] = ACTIONS(1601), + [anon_sym_float16] = ACTIONS(1601), + [anon_sym_bfloat16] = ACTIONS(1601), + [anon_sym_float128] = ACTIONS(1601), + [anon_sym_iptr] = ACTIONS(1601), + [anon_sym_uptr] = ACTIONS(1601), + [anon_sym_isz] = ACTIONS(1601), + [anon_sym_usz] = ACTIONS(1601), + [anon_sym_anyfault] = ACTIONS(1601), + [anon_sym_any] = ACTIONS(1601), + [anon_sym_DOLLARtypeof] = ACTIONS(1601), + [anon_sym_DOLLARtypefrom] = ACTIONS(1601), + [anon_sym_DOLLARvatype] = ACTIONS(1601), + [anon_sym_DOLLARevaltype] = ACTIONS(1601), + [sym_real_literal] = ACTIONS(1603), }, [403] = { [sym_line_comment] = STATE(403), [sym_doc_comment] = STATE(403), [sym_block_comment] = STATE(403), - [sym_else_part] = STATE(604), - [sym_ident] = ACTIONS(1370), - [sym_integer_literal] = ACTIONS(1372), - [anon_sym_SQUOTE] = ACTIONS(1372), - [anon_sym_DQUOTE] = ACTIONS(1372), - [anon_sym_BQUOTE] = ACTIONS(1372), - [sym_bytes_literal] = ACTIONS(1372), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1370), - [sym_at_ident] = ACTIONS(1372), - [sym_hash_ident] = ACTIONS(1372), - [sym_type_ident] = ACTIONS(1372), - [sym_ct_type_ident] = ACTIONS(1372), - [sym_const_ident] = ACTIONS(1370), - [sym_builtin] = ACTIONS(1372), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_AMP] = ACTIONS(1370), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_tlocal] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_const] = ACTIONS(1370), - [anon_sym_var] = ACTIONS(1370), - [anon_sym_return] = ACTIONS(1370), - [anon_sym_continue] = ACTIONS(1370), - [anon_sym_break] = ACTIONS(1370), - [anon_sym_defer] = ACTIONS(1370), - [anon_sym_assert] = ACTIONS(1370), - [anon_sym_nextcase] = ACTIONS(1370), - [anon_sym_switch] = ACTIONS(1370), - [anon_sym_AMP_AMP] = ACTIONS(1372), - [anon_sym_if] = ACTIONS(1370), - [anon_sym_else] = ACTIONS(1426), - [anon_sym_for] = ACTIONS(1370), - [anon_sym_foreach] = ACTIONS(1370), - [anon_sym_foreach_r] = ACTIONS(1370), - [anon_sym_while] = ACTIONS(1370), - [anon_sym_do] = ACTIONS(1370), - [anon_sym_int] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_asm] = ACTIONS(1370), - [anon_sym_DOLLARassert] = ACTIONS(1370), - [anon_sym_DOLLARerror] = ACTIONS(1370), - [anon_sym_DOLLARecho] = ACTIONS(1370), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_DOLLARendif] = ACTIONS(1370), - [anon_sym_DOLLARelse] = ACTIONS(1370), - [anon_sym_DOLLARswitch] = ACTIONS(1370), - [anon_sym_DOLLARfor] = ACTIONS(1370), - [anon_sym_DOLLARforeach] = ACTIONS(1370), - [anon_sym_DOLLARalignof] = ACTIONS(1370), - [anon_sym_DOLLARextnameof] = ACTIONS(1370), - [anon_sym_DOLLARnameof] = ACTIONS(1370), - [anon_sym_DOLLARoffsetof] = ACTIONS(1370), - [anon_sym_DOLLARqnameof] = ACTIONS(1370), - [anon_sym_DOLLARvaconst] = ACTIONS(1370), - [anon_sym_DOLLARvaarg] = ACTIONS(1370), - [anon_sym_DOLLARvaref] = ACTIONS(1370), - [anon_sym_DOLLARvaexpr] = ACTIONS(1370), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [anon_sym_null] = ACTIONS(1370), - [anon_sym_DOLLARvacount] = ACTIONS(1370), - [anon_sym_DOLLARappend] = ACTIONS(1370), - [anon_sym_DOLLARconcat] = ACTIONS(1370), - [anon_sym_DOLLAReval] = ACTIONS(1370), - [anon_sym_DOLLARis_const] = ACTIONS(1370), - [anon_sym_DOLLARsizeof] = ACTIONS(1370), - [anon_sym_DOLLARstringify] = ACTIONS(1370), - [anon_sym_DOLLARand] = ACTIONS(1370), - [anon_sym_DOLLARdefined] = ACTIONS(1370), - [anon_sym_DOLLARembed] = ACTIONS(1370), - [anon_sym_DOLLARor] = ACTIONS(1370), - [anon_sym_DOLLARfeature] = ACTIONS(1370), - [anon_sym_DOLLARassignable] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_TILDE] = ACTIONS(1372), - [anon_sym_PLUS_PLUS] = ACTIONS(1372), - [anon_sym_DASH_DASH] = ACTIONS(1372), - [anon_sym_typeid] = ACTIONS(1370), - [anon_sym_LBRACE_PIPE] = ACTIONS(1372), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_bool] = ACTIONS(1370), - [anon_sym_char] = ACTIONS(1370), - [anon_sym_ichar] = ACTIONS(1370), - [anon_sym_short] = ACTIONS(1370), - [anon_sym_ushort] = ACTIONS(1370), - [anon_sym_uint] = ACTIONS(1370), - [anon_sym_long] = ACTIONS(1370), - [anon_sym_ulong] = ACTIONS(1370), - [anon_sym_int128] = ACTIONS(1370), - [anon_sym_uint128] = ACTIONS(1370), - [anon_sym_float] = ACTIONS(1370), - [anon_sym_double] = ACTIONS(1370), - [anon_sym_float16] = ACTIONS(1370), - [anon_sym_bfloat16] = ACTIONS(1370), - [anon_sym_float128] = ACTIONS(1370), - [anon_sym_iptr] = ACTIONS(1370), - [anon_sym_uptr] = ACTIONS(1370), - [anon_sym_isz] = ACTIONS(1370), - [anon_sym_usz] = ACTIONS(1370), - [anon_sym_anyfault] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_DOLLARtypeof] = ACTIONS(1370), - [anon_sym_DOLLARtypefrom] = ACTIONS(1370), - [anon_sym_DOLLARvatype] = ACTIONS(1370), - [anon_sym_DOLLARevaltype] = ACTIONS(1370), - [sym_real_literal] = ACTIONS(1372), + [sym_ident] = ACTIONS(1605), + [sym_integer_literal] = ACTIONS(1607), + [anon_sym_SQUOTE] = ACTIONS(1607), + [anon_sym_DQUOTE] = ACTIONS(1607), + [anon_sym_BQUOTE] = ACTIONS(1607), + [sym_bytes_literal] = ACTIONS(1607), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1605), + [sym_at_ident] = ACTIONS(1607), + [sym_hash_ident] = ACTIONS(1607), + [sym_type_ident] = ACTIONS(1607), + [sym_ct_type_ident] = ACTIONS(1607), + [sym_const_ident] = ACTIONS(1605), + [sym_builtin] = ACTIONS(1607), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_static] = ACTIONS(1605), + [anon_sym_tlocal] = ACTIONS(1605), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_fn] = ACTIONS(1605), + [anon_sym_LBRACE] = ACTIONS(1605), + [anon_sym_RBRACE] = ACTIONS(1607), + [anon_sym_const] = ACTIONS(1605), + [anon_sym_var] = ACTIONS(1605), + [anon_sym_return] = ACTIONS(1605), + [anon_sym_continue] = ACTIONS(1605), + [anon_sym_break] = ACTIONS(1605), + [anon_sym_defer] = ACTIONS(1605), + [anon_sym_assert] = ACTIONS(1605), + [anon_sym_case] = ACTIONS(1605), + [anon_sym_default] = ACTIONS(1605), + [anon_sym_nextcase] = ACTIONS(1605), + [anon_sym_switch] = ACTIONS(1605), + [anon_sym_AMP_AMP] = ACTIONS(1607), + [anon_sym_if] = ACTIONS(1605), + [anon_sym_for] = ACTIONS(1605), + [anon_sym_foreach] = ACTIONS(1605), + [anon_sym_foreach_r] = ACTIONS(1605), + [anon_sym_while] = ACTIONS(1605), + [anon_sym_do] = ACTIONS(1605), + [anon_sym_int] = ACTIONS(1605), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_asm] = ACTIONS(1605), + [anon_sym_DOLLARassert] = ACTIONS(1605), + [anon_sym_DOLLARerror] = ACTIONS(1605), + [anon_sym_DOLLARecho] = ACTIONS(1605), + [anon_sym_DOLLARif] = ACTIONS(1605), + [anon_sym_DOLLARswitch] = ACTIONS(1605), + [anon_sym_DOLLARfor] = ACTIONS(1605), + [anon_sym_DOLLARforeach] = ACTIONS(1605), + [anon_sym_DOLLARalignof] = ACTIONS(1605), + [anon_sym_DOLLARextnameof] = ACTIONS(1605), + [anon_sym_DOLLARnameof] = ACTIONS(1605), + [anon_sym_DOLLARoffsetof] = ACTIONS(1605), + [anon_sym_DOLLARqnameof] = ACTIONS(1605), + [anon_sym_DOLLARvaconst] = ACTIONS(1605), + [anon_sym_DOLLARvaarg] = ACTIONS(1605), + [anon_sym_DOLLARvaref] = ACTIONS(1605), + [anon_sym_DOLLARvaexpr] = ACTIONS(1605), + [anon_sym_true] = ACTIONS(1605), + [anon_sym_false] = ACTIONS(1605), + [anon_sym_null] = ACTIONS(1605), + [anon_sym_DOLLARvacount] = ACTIONS(1605), + [anon_sym_DOLLARappend] = ACTIONS(1605), + [anon_sym_DOLLARconcat] = ACTIONS(1605), + [anon_sym_DOLLAReval] = ACTIONS(1605), + [anon_sym_DOLLARis_const] = ACTIONS(1605), + [anon_sym_DOLLARsizeof] = ACTIONS(1605), + [anon_sym_DOLLARstringify] = ACTIONS(1605), + [anon_sym_DOLLARand] = ACTIONS(1605), + [anon_sym_DOLLARdefined] = ACTIONS(1605), + [anon_sym_DOLLARembed] = ACTIONS(1605), + [anon_sym_DOLLARor] = ACTIONS(1605), + [anon_sym_DOLLARfeature] = ACTIONS(1605), + [anon_sym_DOLLARassignable] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [anon_sym_TILDE] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1607), + [anon_sym_DASH_DASH] = ACTIONS(1607), + [anon_sym_typeid] = ACTIONS(1605), + [anon_sym_LBRACE_PIPE] = ACTIONS(1607), + [anon_sym_PIPE_RBRACE] = ACTIONS(1607), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_bool] = ACTIONS(1605), + [anon_sym_char] = ACTIONS(1605), + [anon_sym_ichar] = ACTIONS(1605), + [anon_sym_short] = ACTIONS(1605), + [anon_sym_ushort] = ACTIONS(1605), + [anon_sym_uint] = ACTIONS(1605), + [anon_sym_long] = ACTIONS(1605), + [anon_sym_ulong] = ACTIONS(1605), + [anon_sym_int128] = ACTIONS(1605), + [anon_sym_uint128] = ACTIONS(1605), + [anon_sym_float] = ACTIONS(1605), + [anon_sym_double] = ACTIONS(1605), + [anon_sym_float16] = ACTIONS(1605), + [anon_sym_bfloat16] = ACTIONS(1605), + [anon_sym_float128] = ACTIONS(1605), + [anon_sym_iptr] = ACTIONS(1605), + [anon_sym_uptr] = ACTIONS(1605), + [anon_sym_isz] = ACTIONS(1605), + [anon_sym_usz] = ACTIONS(1605), + [anon_sym_anyfault] = ACTIONS(1605), + [anon_sym_any] = ACTIONS(1605), + [anon_sym_DOLLARtypeof] = ACTIONS(1605), + [anon_sym_DOLLARtypefrom] = ACTIONS(1605), + [anon_sym_DOLLARvatype] = ACTIONS(1605), + [anon_sym_DOLLARevaltype] = ACTIONS(1605), + [sym_real_literal] = ACTIONS(1607), }, [404] = { [sym_line_comment] = STATE(404), [sym_doc_comment] = STATE(404), [sym_block_comment] = STATE(404), - [sym_ident] = ACTIONS(1428), - [sym_integer_literal] = ACTIONS(1430), - [anon_sym_SQUOTE] = ACTIONS(1430), - [anon_sym_DQUOTE] = ACTIONS(1430), - [anon_sym_BQUOTE] = ACTIONS(1430), - [sym_bytes_literal] = ACTIONS(1430), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1428), - [sym_at_ident] = ACTIONS(1430), - [sym_hash_ident] = ACTIONS(1430), - [sym_type_ident] = ACTIONS(1430), - [sym_ct_type_ident] = ACTIONS(1430), - [sym_const_ident] = ACTIONS(1428), - [sym_builtin] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1430), - [anon_sym_AMP] = ACTIONS(1428), - [anon_sym_static] = ACTIONS(1428), - [anon_sym_tlocal] = ACTIONS(1428), - [anon_sym_SEMI] = ACTIONS(1430), - [anon_sym_fn] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1428), - [anon_sym_RBRACE] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1428), - [anon_sym_var] = ACTIONS(1428), - [anon_sym_return] = ACTIONS(1428), - [anon_sym_continue] = ACTIONS(1428), - [anon_sym_break] = ACTIONS(1428), - [anon_sym_defer] = ACTIONS(1428), - [anon_sym_assert] = ACTIONS(1428), - [anon_sym_case] = ACTIONS(1428), - [anon_sym_default] = ACTIONS(1428), - [anon_sym_nextcase] = ACTIONS(1428), - [anon_sym_switch] = ACTIONS(1428), - [anon_sym_AMP_AMP] = ACTIONS(1430), - [anon_sym_if] = ACTIONS(1428), - [anon_sym_for] = ACTIONS(1428), - [anon_sym_foreach] = ACTIONS(1428), - [anon_sym_foreach_r] = ACTIONS(1428), - [anon_sym_while] = ACTIONS(1428), - [anon_sym_do] = ACTIONS(1428), - [anon_sym_int] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1428), - [anon_sym_DASH] = ACTIONS(1428), - [anon_sym_STAR] = ACTIONS(1430), - [anon_sym_asm] = ACTIONS(1428), - [anon_sym_DOLLARassert] = ACTIONS(1428), - [anon_sym_DOLLARerror] = ACTIONS(1428), - [anon_sym_DOLLARecho] = ACTIONS(1428), - [anon_sym_DOLLARif] = ACTIONS(1428), - [anon_sym_DOLLARswitch] = ACTIONS(1428), - [anon_sym_DOLLARfor] = ACTIONS(1428), - [anon_sym_DOLLARforeach] = ACTIONS(1428), - [anon_sym_DOLLARalignof] = ACTIONS(1428), - [anon_sym_DOLLARextnameof] = ACTIONS(1428), - [anon_sym_DOLLARnameof] = ACTIONS(1428), - [anon_sym_DOLLARoffsetof] = ACTIONS(1428), - [anon_sym_DOLLARqnameof] = ACTIONS(1428), - [anon_sym_DOLLARvaconst] = ACTIONS(1428), - [anon_sym_DOLLARvaarg] = ACTIONS(1428), - [anon_sym_DOLLARvaref] = ACTIONS(1428), - [anon_sym_DOLLARvaexpr] = ACTIONS(1428), - [anon_sym_true] = ACTIONS(1428), - [anon_sym_false] = ACTIONS(1428), - [anon_sym_null] = ACTIONS(1428), - [anon_sym_DOLLARvacount] = ACTIONS(1428), - [anon_sym_DOLLARappend] = ACTIONS(1428), - [anon_sym_DOLLARconcat] = ACTIONS(1428), - [anon_sym_DOLLAReval] = ACTIONS(1428), - [anon_sym_DOLLARis_const] = ACTIONS(1428), - [anon_sym_DOLLARsizeof] = ACTIONS(1428), - [anon_sym_DOLLARstringify] = ACTIONS(1428), - [anon_sym_DOLLARand] = ACTIONS(1428), - [anon_sym_DOLLARdefined] = ACTIONS(1428), - [anon_sym_DOLLARembed] = ACTIONS(1428), - [anon_sym_DOLLARor] = ACTIONS(1428), - [anon_sym_DOLLARfeature] = ACTIONS(1428), - [anon_sym_DOLLARassignable] = ACTIONS(1428), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_PLUS_PLUS] = ACTIONS(1430), - [anon_sym_DASH_DASH] = ACTIONS(1430), - [anon_sym_typeid] = ACTIONS(1428), - [anon_sym_LBRACE_PIPE] = ACTIONS(1430), - [anon_sym_PIPE_RBRACE] = ACTIONS(1430), - [anon_sym_void] = ACTIONS(1428), - [anon_sym_bool] = ACTIONS(1428), - [anon_sym_char] = ACTIONS(1428), - [anon_sym_ichar] = ACTIONS(1428), - [anon_sym_short] = ACTIONS(1428), - [anon_sym_ushort] = ACTIONS(1428), - [anon_sym_uint] = ACTIONS(1428), - [anon_sym_long] = ACTIONS(1428), - [anon_sym_ulong] = ACTIONS(1428), - [anon_sym_int128] = ACTIONS(1428), - [anon_sym_uint128] = ACTIONS(1428), - [anon_sym_float] = ACTIONS(1428), - [anon_sym_double] = ACTIONS(1428), - [anon_sym_float16] = ACTIONS(1428), - [anon_sym_bfloat16] = ACTIONS(1428), - [anon_sym_float128] = ACTIONS(1428), - [anon_sym_iptr] = ACTIONS(1428), - [anon_sym_uptr] = ACTIONS(1428), - [anon_sym_isz] = ACTIONS(1428), - [anon_sym_usz] = ACTIONS(1428), - [anon_sym_anyfault] = ACTIONS(1428), - [anon_sym_any] = ACTIONS(1428), - [anon_sym_DOLLARtypeof] = ACTIONS(1428), - [anon_sym_DOLLARtypefrom] = ACTIONS(1428), - [anon_sym_DOLLARvatype] = ACTIONS(1428), - [anon_sym_DOLLARevaltype] = ACTIONS(1428), - [sym_real_literal] = ACTIONS(1430), + [sym_ident] = ACTIONS(1609), + [sym_integer_literal] = ACTIONS(1611), + [anon_sym_SQUOTE] = ACTIONS(1611), + [anon_sym_DQUOTE] = ACTIONS(1611), + [anon_sym_BQUOTE] = ACTIONS(1611), + [sym_bytes_literal] = ACTIONS(1611), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1609), + [sym_at_ident] = ACTIONS(1611), + [sym_hash_ident] = ACTIONS(1611), + [sym_type_ident] = ACTIONS(1611), + [sym_ct_type_ident] = ACTIONS(1611), + [sym_const_ident] = ACTIONS(1609), + [sym_builtin] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1611), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_static] = ACTIONS(1609), + [anon_sym_tlocal] = ACTIONS(1609), + [anon_sym_SEMI] = ACTIONS(1611), + [anon_sym_fn] = ACTIONS(1609), + [anon_sym_LBRACE] = ACTIONS(1609), + [anon_sym_RBRACE] = ACTIONS(1611), + [anon_sym_const] = ACTIONS(1609), + [anon_sym_var] = ACTIONS(1609), + [anon_sym_return] = ACTIONS(1609), + [anon_sym_continue] = ACTIONS(1609), + [anon_sym_break] = ACTIONS(1609), + [anon_sym_defer] = ACTIONS(1609), + [anon_sym_assert] = ACTIONS(1609), + [anon_sym_case] = ACTIONS(1609), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_nextcase] = ACTIONS(1609), + [anon_sym_switch] = ACTIONS(1609), + [anon_sym_AMP_AMP] = ACTIONS(1611), + [anon_sym_if] = ACTIONS(1609), + [anon_sym_for] = ACTIONS(1609), + [anon_sym_foreach] = ACTIONS(1609), + [anon_sym_foreach_r] = ACTIONS(1609), + [anon_sym_while] = ACTIONS(1609), + [anon_sym_do] = ACTIONS(1609), + [anon_sym_int] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1609), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(1611), + [anon_sym_asm] = ACTIONS(1609), + [anon_sym_DOLLARassert] = ACTIONS(1609), + [anon_sym_DOLLARerror] = ACTIONS(1609), + [anon_sym_DOLLARecho] = ACTIONS(1609), + [anon_sym_DOLLARif] = ACTIONS(1609), + [anon_sym_DOLLARswitch] = ACTIONS(1609), + [anon_sym_DOLLARfor] = ACTIONS(1609), + [anon_sym_DOLLARforeach] = ACTIONS(1609), + [anon_sym_DOLLARalignof] = ACTIONS(1609), + [anon_sym_DOLLARextnameof] = ACTIONS(1609), + [anon_sym_DOLLARnameof] = ACTIONS(1609), + [anon_sym_DOLLARoffsetof] = ACTIONS(1609), + [anon_sym_DOLLARqnameof] = ACTIONS(1609), + [anon_sym_DOLLARvaconst] = ACTIONS(1609), + [anon_sym_DOLLARvaarg] = ACTIONS(1609), + [anon_sym_DOLLARvaref] = ACTIONS(1609), + [anon_sym_DOLLARvaexpr] = ACTIONS(1609), + [anon_sym_true] = ACTIONS(1609), + [anon_sym_false] = ACTIONS(1609), + [anon_sym_null] = ACTIONS(1609), + [anon_sym_DOLLARvacount] = ACTIONS(1609), + [anon_sym_DOLLARappend] = ACTIONS(1609), + [anon_sym_DOLLARconcat] = ACTIONS(1609), + [anon_sym_DOLLAReval] = ACTIONS(1609), + [anon_sym_DOLLARis_const] = ACTIONS(1609), + [anon_sym_DOLLARsizeof] = ACTIONS(1609), + [anon_sym_DOLLARstringify] = ACTIONS(1609), + [anon_sym_DOLLARand] = ACTIONS(1609), + [anon_sym_DOLLARdefined] = ACTIONS(1609), + [anon_sym_DOLLARembed] = ACTIONS(1609), + [anon_sym_DOLLARor] = ACTIONS(1609), + [anon_sym_DOLLARfeature] = ACTIONS(1609), + [anon_sym_DOLLARassignable] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1611), + [anon_sym_TILDE] = ACTIONS(1611), + [anon_sym_PLUS_PLUS] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_typeid] = ACTIONS(1609), + [anon_sym_LBRACE_PIPE] = ACTIONS(1611), + [anon_sym_PIPE_RBRACE] = ACTIONS(1611), + [anon_sym_void] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_ichar] = ACTIONS(1609), + [anon_sym_short] = ACTIONS(1609), + [anon_sym_ushort] = ACTIONS(1609), + [anon_sym_uint] = ACTIONS(1609), + [anon_sym_long] = ACTIONS(1609), + [anon_sym_ulong] = ACTIONS(1609), + [anon_sym_int128] = ACTIONS(1609), + [anon_sym_uint128] = ACTIONS(1609), + [anon_sym_float] = ACTIONS(1609), + [anon_sym_double] = ACTIONS(1609), + [anon_sym_float16] = ACTIONS(1609), + [anon_sym_bfloat16] = ACTIONS(1609), + [anon_sym_float128] = ACTIONS(1609), + [anon_sym_iptr] = ACTIONS(1609), + [anon_sym_uptr] = ACTIONS(1609), + [anon_sym_isz] = ACTIONS(1609), + [anon_sym_usz] = ACTIONS(1609), + [anon_sym_anyfault] = ACTIONS(1609), + [anon_sym_any] = ACTIONS(1609), + [anon_sym_DOLLARtypeof] = ACTIONS(1609), + [anon_sym_DOLLARtypefrom] = ACTIONS(1609), + [anon_sym_DOLLARvatype] = ACTIONS(1609), + [anon_sym_DOLLARevaltype] = ACTIONS(1609), + [sym_real_literal] = ACTIONS(1611), }, [405] = { [sym_line_comment] = STATE(405), [sym_doc_comment] = STATE(405), [sym_block_comment] = STATE(405), - [sym_ident] = ACTIONS(1432), - [sym_integer_literal] = ACTIONS(1434), - [anon_sym_SQUOTE] = ACTIONS(1434), - [anon_sym_DQUOTE] = ACTIONS(1434), - [anon_sym_BQUOTE] = ACTIONS(1434), - [sym_bytes_literal] = ACTIONS(1434), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1432), - [sym_at_ident] = ACTIONS(1434), - [sym_hash_ident] = ACTIONS(1434), - [sym_type_ident] = ACTIONS(1434), - [sym_ct_type_ident] = ACTIONS(1434), - [sym_const_ident] = ACTIONS(1432), - [sym_builtin] = ACTIONS(1434), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_AMP] = ACTIONS(1432), - [anon_sym_static] = ACTIONS(1432), - [anon_sym_tlocal] = ACTIONS(1432), - [anon_sym_SEMI] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1432), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1434), - [anon_sym_const] = ACTIONS(1432), - [anon_sym_var] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_continue] = ACTIONS(1432), - [anon_sym_break] = ACTIONS(1432), - [anon_sym_defer] = ACTIONS(1432), - [anon_sym_assert] = ACTIONS(1432), - [anon_sym_case] = ACTIONS(1432), - [anon_sym_default] = ACTIONS(1432), - [anon_sym_nextcase] = ACTIONS(1432), - [anon_sym_switch] = ACTIONS(1432), - [anon_sym_AMP_AMP] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_foreach] = ACTIONS(1432), - [anon_sym_foreach_r] = ACTIONS(1432), - [anon_sym_while] = ACTIONS(1432), - [anon_sym_do] = ACTIONS(1432), - [anon_sym_int] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1432), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_STAR] = ACTIONS(1434), - [anon_sym_asm] = ACTIONS(1432), - [anon_sym_DOLLARassert] = ACTIONS(1432), - [anon_sym_DOLLARerror] = ACTIONS(1432), - [anon_sym_DOLLARecho] = ACTIONS(1432), - [anon_sym_DOLLARif] = ACTIONS(1432), - [anon_sym_DOLLARswitch] = ACTIONS(1432), - [anon_sym_DOLLARfor] = ACTIONS(1432), - [anon_sym_DOLLARforeach] = ACTIONS(1432), - [anon_sym_DOLLARalignof] = ACTIONS(1432), - [anon_sym_DOLLARextnameof] = ACTIONS(1432), - [anon_sym_DOLLARnameof] = ACTIONS(1432), - [anon_sym_DOLLARoffsetof] = ACTIONS(1432), - [anon_sym_DOLLARqnameof] = ACTIONS(1432), - [anon_sym_DOLLARvaconst] = ACTIONS(1432), - [anon_sym_DOLLARvaarg] = ACTIONS(1432), - [anon_sym_DOLLARvaref] = ACTIONS(1432), - [anon_sym_DOLLARvaexpr] = ACTIONS(1432), - [anon_sym_true] = ACTIONS(1432), - [anon_sym_false] = ACTIONS(1432), - [anon_sym_null] = ACTIONS(1432), - [anon_sym_DOLLARvacount] = ACTIONS(1432), - [anon_sym_DOLLARappend] = ACTIONS(1432), - [anon_sym_DOLLARconcat] = ACTIONS(1432), - [anon_sym_DOLLAReval] = ACTIONS(1432), - [anon_sym_DOLLARis_const] = ACTIONS(1432), - [anon_sym_DOLLARsizeof] = ACTIONS(1432), - [anon_sym_DOLLARstringify] = ACTIONS(1432), - [anon_sym_DOLLARand] = ACTIONS(1432), - [anon_sym_DOLLARdefined] = ACTIONS(1432), - [anon_sym_DOLLARembed] = ACTIONS(1432), - [anon_sym_DOLLARor] = ACTIONS(1432), - [anon_sym_DOLLARfeature] = ACTIONS(1432), - [anon_sym_DOLLARassignable] = ACTIONS(1432), - [anon_sym_BANG] = ACTIONS(1434), - [anon_sym_TILDE] = ACTIONS(1434), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), - [anon_sym_typeid] = ACTIONS(1432), - [anon_sym_LBRACE_PIPE] = ACTIONS(1434), - [anon_sym_PIPE_RBRACE] = ACTIONS(1434), - [anon_sym_void] = ACTIONS(1432), - [anon_sym_bool] = ACTIONS(1432), - [anon_sym_char] = ACTIONS(1432), - [anon_sym_ichar] = ACTIONS(1432), - [anon_sym_short] = ACTIONS(1432), - [anon_sym_ushort] = ACTIONS(1432), - [anon_sym_uint] = ACTIONS(1432), - [anon_sym_long] = ACTIONS(1432), - [anon_sym_ulong] = ACTIONS(1432), - [anon_sym_int128] = ACTIONS(1432), - [anon_sym_uint128] = ACTIONS(1432), - [anon_sym_float] = ACTIONS(1432), - [anon_sym_double] = ACTIONS(1432), - [anon_sym_float16] = ACTIONS(1432), - [anon_sym_bfloat16] = ACTIONS(1432), - [anon_sym_float128] = ACTIONS(1432), - [anon_sym_iptr] = ACTIONS(1432), - [anon_sym_uptr] = ACTIONS(1432), - [anon_sym_isz] = ACTIONS(1432), - [anon_sym_usz] = ACTIONS(1432), - [anon_sym_anyfault] = ACTIONS(1432), - [anon_sym_any] = ACTIONS(1432), - [anon_sym_DOLLARtypeof] = ACTIONS(1432), - [anon_sym_DOLLARtypefrom] = ACTIONS(1432), - [anon_sym_DOLLARvatype] = ACTIONS(1432), - [anon_sym_DOLLARevaltype] = ACTIONS(1432), - [sym_real_literal] = ACTIONS(1434), + [sym_ident] = ACTIONS(1613), + [sym_integer_literal] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(1615), + [anon_sym_DQUOTE] = ACTIONS(1615), + [anon_sym_BQUOTE] = ACTIONS(1615), + [sym_bytes_literal] = ACTIONS(1615), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1613), + [sym_at_ident] = ACTIONS(1615), + [sym_hash_ident] = ACTIONS(1615), + [sym_type_ident] = ACTIONS(1615), + [sym_ct_type_ident] = ACTIONS(1615), + [sym_const_ident] = ACTIONS(1613), + [sym_builtin] = ACTIONS(1615), + [anon_sym_LPAREN] = ACTIONS(1615), + [anon_sym_AMP] = ACTIONS(1613), + [anon_sym_static] = ACTIONS(1613), + [anon_sym_tlocal] = ACTIONS(1613), + [anon_sym_SEMI] = ACTIONS(1615), + [anon_sym_fn] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(1613), + [anon_sym_RBRACE] = ACTIONS(1615), + [anon_sym_const] = ACTIONS(1613), + [anon_sym_var] = ACTIONS(1613), + [anon_sym_return] = ACTIONS(1613), + [anon_sym_continue] = ACTIONS(1613), + [anon_sym_break] = ACTIONS(1613), + [anon_sym_defer] = ACTIONS(1613), + [anon_sym_assert] = ACTIONS(1613), + [anon_sym_case] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_nextcase] = ACTIONS(1613), + [anon_sym_switch] = ACTIONS(1613), + [anon_sym_AMP_AMP] = ACTIONS(1615), + [anon_sym_if] = ACTIONS(1613), + [anon_sym_for] = ACTIONS(1613), + [anon_sym_foreach] = ACTIONS(1613), + [anon_sym_foreach_r] = ACTIONS(1613), + [anon_sym_while] = ACTIONS(1613), + [anon_sym_do] = ACTIONS(1613), + [anon_sym_int] = ACTIONS(1613), + [anon_sym_PLUS] = ACTIONS(1613), + [anon_sym_DASH] = ACTIONS(1613), + [anon_sym_STAR] = ACTIONS(1615), + [anon_sym_asm] = ACTIONS(1613), + [anon_sym_DOLLARassert] = ACTIONS(1613), + [anon_sym_DOLLARerror] = ACTIONS(1613), + [anon_sym_DOLLARecho] = ACTIONS(1613), + [anon_sym_DOLLARif] = ACTIONS(1613), + [anon_sym_DOLLARswitch] = ACTIONS(1613), + [anon_sym_DOLLARfor] = ACTIONS(1613), + [anon_sym_DOLLARforeach] = ACTIONS(1613), + [anon_sym_DOLLARalignof] = ACTIONS(1613), + [anon_sym_DOLLARextnameof] = ACTIONS(1613), + [anon_sym_DOLLARnameof] = ACTIONS(1613), + [anon_sym_DOLLARoffsetof] = ACTIONS(1613), + [anon_sym_DOLLARqnameof] = ACTIONS(1613), + [anon_sym_DOLLARvaconst] = ACTIONS(1613), + [anon_sym_DOLLARvaarg] = ACTIONS(1613), + [anon_sym_DOLLARvaref] = ACTIONS(1613), + [anon_sym_DOLLARvaexpr] = ACTIONS(1613), + [anon_sym_true] = ACTIONS(1613), + [anon_sym_false] = ACTIONS(1613), + [anon_sym_null] = ACTIONS(1613), + [anon_sym_DOLLARvacount] = ACTIONS(1613), + [anon_sym_DOLLARappend] = ACTIONS(1613), + [anon_sym_DOLLARconcat] = ACTIONS(1613), + [anon_sym_DOLLAReval] = ACTIONS(1613), + [anon_sym_DOLLARis_const] = ACTIONS(1613), + [anon_sym_DOLLARsizeof] = ACTIONS(1613), + [anon_sym_DOLLARstringify] = ACTIONS(1613), + [anon_sym_DOLLARand] = ACTIONS(1613), + [anon_sym_DOLLARdefined] = ACTIONS(1613), + [anon_sym_DOLLARembed] = ACTIONS(1613), + [anon_sym_DOLLARor] = ACTIONS(1613), + [anon_sym_DOLLARfeature] = ACTIONS(1613), + [anon_sym_DOLLARassignable] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1615), + [anon_sym_TILDE] = ACTIONS(1615), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), + [anon_sym_typeid] = ACTIONS(1613), + [anon_sym_LBRACE_PIPE] = ACTIONS(1615), + [anon_sym_PIPE_RBRACE] = ACTIONS(1615), + [anon_sym_void] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_ichar] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [anon_sym_ushort] = ACTIONS(1613), + [anon_sym_uint] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_ulong] = ACTIONS(1613), + [anon_sym_int128] = ACTIONS(1613), + [anon_sym_uint128] = ACTIONS(1613), + [anon_sym_float] = ACTIONS(1613), + [anon_sym_double] = ACTIONS(1613), + [anon_sym_float16] = ACTIONS(1613), + [anon_sym_bfloat16] = ACTIONS(1613), + [anon_sym_float128] = ACTIONS(1613), + [anon_sym_iptr] = ACTIONS(1613), + [anon_sym_uptr] = ACTIONS(1613), + [anon_sym_isz] = ACTIONS(1613), + [anon_sym_usz] = ACTIONS(1613), + [anon_sym_anyfault] = ACTIONS(1613), + [anon_sym_any] = ACTIONS(1613), + [anon_sym_DOLLARtypeof] = ACTIONS(1613), + [anon_sym_DOLLARtypefrom] = ACTIONS(1613), + [anon_sym_DOLLARvatype] = ACTIONS(1613), + [anon_sym_DOLLARevaltype] = ACTIONS(1613), + [sym_real_literal] = ACTIONS(1615), }, [406] = { [sym_line_comment] = STATE(406), [sym_doc_comment] = STATE(406), [sym_block_comment] = STATE(406), - [sym_ident] = ACTIONS(1436), - [sym_integer_literal] = ACTIONS(1438), - [anon_sym_SQUOTE] = ACTIONS(1438), - [anon_sym_DQUOTE] = ACTIONS(1438), - [anon_sym_BQUOTE] = ACTIONS(1438), - [sym_bytes_literal] = ACTIONS(1438), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1436), - [sym_at_ident] = ACTIONS(1438), - [sym_hash_ident] = ACTIONS(1438), - [sym_type_ident] = ACTIONS(1438), - [sym_ct_type_ident] = ACTIONS(1438), - [sym_const_ident] = ACTIONS(1436), - [sym_builtin] = ACTIONS(1438), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1436), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_tlocal] = ACTIONS(1436), - [anon_sym_SEMI] = ACTIONS(1438), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_RBRACE] = ACTIONS(1438), - [anon_sym_const] = ACTIONS(1436), - [anon_sym_var] = ACTIONS(1436), - [anon_sym_return] = ACTIONS(1436), - [anon_sym_continue] = ACTIONS(1436), - [anon_sym_break] = ACTIONS(1436), - [anon_sym_defer] = ACTIONS(1436), - [anon_sym_assert] = ACTIONS(1436), - [anon_sym_case] = ACTIONS(1436), - [anon_sym_default] = ACTIONS(1436), - [anon_sym_nextcase] = ACTIONS(1436), - [anon_sym_switch] = ACTIONS(1436), - [anon_sym_AMP_AMP] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1436), - [anon_sym_for] = ACTIONS(1436), - [anon_sym_foreach] = ACTIONS(1436), - [anon_sym_foreach_r] = ACTIONS(1436), - [anon_sym_while] = ACTIONS(1436), - [anon_sym_do] = ACTIONS(1436), - [anon_sym_int] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_asm] = ACTIONS(1436), - [anon_sym_DOLLARassert] = ACTIONS(1436), - [anon_sym_DOLLARerror] = ACTIONS(1436), - [anon_sym_DOLLARecho] = ACTIONS(1436), - [anon_sym_DOLLARif] = ACTIONS(1436), - [anon_sym_DOLLARswitch] = ACTIONS(1436), - [anon_sym_DOLLARfor] = ACTIONS(1436), - [anon_sym_DOLLARforeach] = ACTIONS(1436), - [anon_sym_DOLLARalignof] = ACTIONS(1436), - [anon_sym_DOLLARextnameof] = ACTIONS(1436), - [anon_sym_DOLLARnameof] = ACTIONS(1436), - [anon_sym_DOLLARoffsetof] = ACTIONS(1436), - [anon_sym_DOLLARqnameof] = ACTIONS(1436), - [anon_sym_DOLLARvaconst] = ACTIONS(1436), - [anon_sym_DOLLARvaarg] = ACTIONS(1436), - [anon_sym_DOLLARvaref] = ACTIONS(1436), - [anon_sym_DOLLARvaexpr] = ACTIONS(1436), - [anon_sym_true] = ACTIONS(1436), - [anon_sym_false] = ACTIONS(1436), - [anon_sym_null] = ACTIONS(1436), - [anon_sym_DOLLARvacount] = ACTIONS(1436), - [anon_sym_DOLLARappend] = ACTIONS(1436), - [anon_sym_DOLLARconcat] = ACTIONS(1436), - [anon_sym_DOLLAReval] = ACTIONS(1436), - [anon_sym_DOLLARis_const] = ACTIONS(1436), - [anon_sym_DOLLARsizeof] = ACTIONS(1436), - [anon_sym_DOLLARstringify] = ACTIONS(1436), - [anon_sym_DOLLARand] = ACTIONS(1436), - [anon_sym_DOLLARdefined] = ACTIONS(1436), - [anon_sym_DOLLARembed] = ACTIONS(1436), - [anon_sym_DOLLARor] = ACTIONS(1436), - [anon_sym_DOLLARfeature] = ACTIONS(1436), - [anon_sym_DOLLARassignable] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1438), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_PLUS_PLUS] = ACTIONS(1438), - [anon_sym_DASH_DASH] = ACTIONS(1438), - [anon_sym_typeid] = ACTIONS(1436), - [anon_sym_LBRACE_PIPE] = ACTIONS(1438), - [anon_sym_PIPE_RBRACE] = ACTIONS(1438), - [anon_sym_void] = ACTIONS(1436), - [anon_sym_bool] = ACTIONS(1436), - [anon_sym_char] = ACTIONS(1436), - [anon_sym_ichar] = ACTIONS(1436), - [anon_sym_short] = ACTIONS(1436), - [anon_sym_ushort] = ACTIONS(1436), - [anon_sym_uint] = ACTIONS(1436), - [anon_sym_long] = ACTIONS(1436), - [anon_sym_ulong] = ACTIONS(1436), - [anon_sym_int128] = ACTIONS(1436), - [anon_sym_uint128] = ACTIONS(1436), - [anon_sym_float] = ACTIONS(1436), - [anon_sym_double] = ACTIONS(1436), - [anon_sym_float16] = ACTIONS(1436), - [anon_sym_bfloat16] = ACTIONS(1436), - [anon_sym_float128] = ACTIONS(1436), - [anon_sym_iptr] = ACTIONS(1436), - [anon_sym_uptr] = ACTIONS(1436), - [anon_sym_isz] = ACTIONS(1436), - [anon_sym_usz] = ACTIONS(1436), - [anon_sym_anyfault] = ACTIONS(1436), - [anon_sym_any] = ACTIONS(1436), - [anon_sym_DOLLARtypeof] = ACTIONS(1436), - [anon_sym_DOLLARtypefrom] = ACTIONS(1436), - [anon_sym_DOLLARvatype] = ACTIONS(1436), - [anon_sym_DOLLARevaltype] = ACTIONS(1436), - [sym_real_literal] = ACTIONS(1438), + [sym_ident] = ACTIONS(1617), + [sym_integer_literal] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1619), + [anon_sym_BQUOTE] = ACTIONS(1619), + [sym_bytes_literal] = ACTIONS(1619), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1617), + [sym_at_ident] = ACTIONS(1619), + [sym_hash_ident] = ACTIONS(1619), + [sym_type_ident] = ACTIONS(1619), + [sym_ct_type_ident] = ACTIONS(1619), + [sym_const_ident] = ACTIONS(1617), + [sym_builtin] = ACTIONS(1619), + [anon_sym_LPAREN] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1617), + [anon_sym_static] = ACTIONS(1617), + [anon_sym_tlocal] = ACTIONS(1617), + [anon_sym_SEMI] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1617), + [anon_sym_LBRACE] = ACTIONS(1617), + [anon_sym_RBRACE] = ACTIONS(1619), + [anon_sym_const] = ACTIONS(1617), + [anon_sym_var] = ACTIONS(1617), + [anon_sym_return] = ACTIONS(1617), + [anon_sym_continue] = ACTIONS(1617), + [anon_sym_break] = ACTIONS(1617), + [anon_sym_defer] = ACTIONS(1617), + [anon_sym_assert] = ACTIONS(1617), + [anon_sym_case] = ACTIONS(1617), + [anon_sym_default] = ACTIONS(1617), + [anon_sym_nextcase] = ACTIONS(1617), + [anon_sym_switch] = ACTIONS(1617), + [anon_sym_AMP_AMP] = ACTIONS(1619), + [anon_sym_if] = ACTIONS(1617), + [anon_sym_for] = ACTIONS(1617), + [anon_sym_foreach] = ACTIONS(1617), + [anon_sym_foreach_r] = ACTIONS(1617), + [anon_sym_while] = ACTIONS(1617), + [anon_sym_do] = ACTIONS(1617), + [anon_sym_int] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_asm] = ACTIONS(1617), + [anon_sym_DOLLARassert] = ACTIONS(1617), + [anon_sym_DOLLARerror] = ACTIONS(1617), + [anon_sym_DOLLARecho] = ACTIONS(1617), + [anon_sym_DOLLARif] = ACTIONS(1617), + [anon_sym_DOLLARswitch] = ACTIONS(1617), + [anon_sym_DOLLARfor] = ACTIONS(1617), + [anon_sym_DOLLARforeach] = ACTIONS(1617), + [anon_sym_DOLLARalignof] = ACTIONS(1617), + [anon_sym_DOLLARextnameof] = ACTIONS(1617), + [anon_sym_DOLLARnameof] = ACTIONS(1617), + [anon_sym_DOLLARoffsetof] = ACTIONS(1617), + [anon_sym_DOLLARqnameof] = ACTIONS(1617), + [anon_sym_DOLLARvaconst] = ACTIONS(1617), + [anon_sym_DOLLARvaarg] = ACTIONS(1617), + [anon_sym_DOLLARvaref] = ACTIONS(1617), + [anon_sym_DOLLARvaexpr] = ACTIONS(1617), + [anon_sym_true] = ACTIONS(1617), + [anon_sym_false] = ACTIONS(1617), + [anon_sym_null] = ACTIONS(1617), + [anon_sym_DOLLARvacount] = ACTIONS(1617), + [anon_sym_DOLLARappend] = ACTIONS(1617), + [anon_sym_DOLLARconcat] = ACTIONS(1617), + [anon_sym_DOLLAReval] = ACTIONS(1617), + [anon_sym_DOLLARis_const] = ACTIONS(1617), + [anon_sym_DOLLARsizeof] = ACTIONS(1617), + [anon_sym_DOLLARstringify] = ACTIONS(1617), + [anon_sym_DOLLARand] = ACTIONS(1617), + [anon_sym_DOLLARdefined] = ACTIONS(1617), + [anon_sym_DOLLARembed] = ACTIONS(1617), + [anon_sym_DOLLARor] = ACTIONS(1617), + [anon_sym_DOLLARfeature] = ACTIONS(1617), + [anon_sym_DOLLARassignable] = ACTIONS(1617), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_typeid] = ACTIONS(1617), + [anon_sym_LBRACE_PIPE] = ACTIONS(1619), + [anon_sym_PIPE_RBRACE] = ACTIONS(1619), + [anon_sym_void] = ACTIONS(1617), + [anon_sym_bool] = ACTIONS(1617), + [anon_sym_char] = ACTIONS(1617), + [anon_sym_ichar] = ACTIONS(1617), + [anon_sym_short] = ACTIONS(1617), + [anon_sym_ushort] = ACTIONS(1617), + [anon_sym_uint] = ACTIONS(1617), + [anon_sym_long] = ACTIONS(1617), + [anon_sym_ulong] = ACTIONS(1617), + [anon_sym_int128] = ACTIONS(1617), + [anon_sym_uint128] = ACTIONS(1617), + [anon_sym_float] = ACTIONS(1617), + [anon_sym_double] = ACTIONS(1617), + [anon_sym_float16] = ACTIONS(1617), + [anon_sym_bfloat16] = ACTIONS(1617), + [anon_sym_float128] = ACTIONS(1617), + [anon_sym_iptr] = ACTIONS(1617), + [anon_sym_uptr] = ACTIONS(1617), + [anon_sym_isz] = ACTIONS(1617), + [anon_sym_usz] = ACTIONS(1617), + [anon_sym_anyfault] = ACTIONS(1617), + [anon_sym_any] = ACTIONS(1617), + [anon_sym_DOLLARtypeof] = ACTIONS(1617), + [anon_sym_DOLLARtypefrom] = ACTIONS(1617), + [anon_sym_DOLLARvatype] = ACTIONS(1617), + [anon_sym_DOLLARevaltype] = ACTIONS(1617), + [sym_real_literal] = ACTIONS(1619), }, [407] = { [sym_line_comment] = STATE(407), [sym_doc_comment] = STATE(407), [sym_block_comment] = STATE(407), - [sym_ident] = ACTIONS(1440), - [sym_integer_literal] = ACTIONS(1442), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_DQUOTE] = ACTIONS(1442), - [anon_sym_BQUOTE] = ACTIONS(1442), - [sym_bytes_literal] = ACTIONS(1442), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1440), - [sym_at_ident] = ACTIONS(1442), - [sym_hash_ident] = ACTIONS(1442), - [sym_type_ident] = ACTIONS(1442), - [sym_ct_type_ident] = ACTIONS(1442), - [sym_const_ident] = ACTIONS(1440), - [sym_builtin] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1440), - [anon_sym_static] = ACTIONS(1440), - [anon_sym_tlocal] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1442), - [anon_sym_fn] = ACTIONS(1440), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_RBRACE] = ACTIONS(1442), - [anon_sym_const] = ACTIONS(1440), - [anon_sym_var] = ACTIONS(1440), - [anon_sym_return] = ACTIONS(1440), - [anon_sym_continue] = ACTIONS(1440), - [anon_sym_break] = ACTIONS(1440), - [anon_sym_defer] = ACTIONS(1440), - [anon_sym_assert] = ACTIONS(1440), - [anon_sym_case] = ACTIONS(1440), - [anon_sym_default] = ACTIONS(1440), - [anon_sym_nextcase] = ACTIONS(1440), - [anon_sym_switch] = ACTIONS(1440), - [anon_sym_AMP_AMP] = ACTIONS(1442), - [anon_sym_if] = ACTIONS(1440), - [anon_sym_for] = ACTIONS(1440), - [anon_sym_foreach] = ACTIONS(1440), - [anon_sym_foreach_r] = ACTIONS(1440), - [anon_sym_while] = ACTIONS(1440), - [anon_sym_do] = ACTIONS(1440), - [anon_sym_int] = ACTIONS(1440), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_STAR] = ACTIONS(1442), - [anon_sym_asm] = ACTIONS(1440), - [anon_sym_DOLLARassert] = ACTIONS(1440), - [anon_sym_DOLLARerror] = ACTIONS(1440), - [anon_sym_DOLLARecho] = ACTIONS(1440), - [anon_sym_DOLLARif] = ACTIONS(1440), - [anon_sym_DOLLARswitch] = ACTIONS(1440), - [anon_sym_DOLLARfor] = ACTIONS(1440), - [anon_sym_DOLLARforeach] = ACTIONS(1440), - [anon_sym_DOLLARalignof] = ACTIONS(1440), - [anon_sym_DOLLARextnameof] = ACTIONS(1440), - [anon_sym_DOLLARnameof] = ACTIONS(1440), - [anon_sym_DOLLARoffsetof] = ACTIONS(1440), - [anon_sym_DOLLARqnameof] = ACTIONS(1440), - [anon_sym_DOLLARvaconst] = ACTIONS(1440), - [anon_sym_DOLLARvaarg] = ACTIONS(1440), - [anon_sym_DOLLARvaref] = ACTIONS(1440), - [anon_sym_DOLLARvaexpr] = ACTIONS(1440), - [anon_sym_true] = ACTIONS(1440), - [anon_sym_false] = ACTIONS(1440), - [anon_sym_null] = ACTIONS(1440), - [anon_sym_DOLLARvacount] = ACTIONS(1440), - [anon_sym_DOLLARappend] = ACTIONS(1440), - [anon_sym_DOLLARconcat] = ACTIONS(1440), - [anon_sym_DOLLAReval] = ACTIONS(1440), - [anon_sym_DOLLARis_const] = ACTIONS(1440), - [anon_sym_DOLLARsizeof] = ACTIONS(1440), - [anon_sym_DOLLARstringify] = ACTIONS(1440), - [anon_sym_DOLLARand] = ACTIONS(1440), - [anon_sym_DOLLARdefined] = ACTIONS(1440), - [anon_sym_DOLLARembed] = ACTIONS(1440), - [anon_sym_DOLLARor] = ACTIONS(1440), - [anon_sym_DOLLARfeature] = ACTIONS(1440), - [anon_sym_DOLLARassignable] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_typeid] = ACTIONS(1440), - [anon_sym_LBRACE_PIPE] = ACTIONS(1442), - [anon_sym_PIPE_RBRACE] = ACTIONS(1442), - [anon_sym_void] = ACTIONS(1440), - [anon_sym_bool] = ACTIONS(1440), - [anon_sym_char] = ACTIONS(1440), - [anon_sym_ichar] = ACTIONS(1440), - [anon_sym_short] = ACTIONS(1440), - [anon_sym_ushort] = ACTIONS(1440), - [anon_sym_uint] = ACTIONS(1440), - [anon_sym_long] = ACTIONS(1440), - [anon_sym_ulong] = ACTIONS(1440), - [anon_sym_int128] = ACTIONS(1440), - [anon_sym_uint128] = ACTIONS(1440), - [anon_sym_float] = ACTIONS(1440), - [anon_sym_double] = ACTIONS(1440), - [anon_sym_float16] = ACTIONS(1440), - [anon_sym_bfloat16] = ACTIONS(1440), - [anon_sym_float128] = ACTIONS(1440), - [anon_sym_iptr] = ACTIONS(1440), - [anon_sym_uptr] = ACTIONS(1440), - [anon_sym_isz] = ACTIONS(1440), - [anon_sym_usz] = ACTIONS(1440), - [anon_sym_anyfault] = ACTIONS(1440), - [anon_sym_any] = ACTIONS(1440), - [anon_sym_DOLLARtypeof] = ACTIONS(1440), - [anon_sym_DOLLARtypefrom] = ACTIONS(1440), - [anon_sym_DOLLARvatype] = ACTIONS(1440), - [anon_sym_DOLLARevaltype] = ACTIONS(1440), - [sym_real_literal] = ACTIONS(1442), + [sym_ident] = ACTIONS(1621), + [sym_integer_literal] = ACTIONS(1623), + [anon_sym_SQUOTE] = ACTIONS(1623), + [anon_sym_DQUOTE] = ACTIONS(1623), + [anon_sym_BQUOTE] = ACTIONS(1623), + [sym_bytes_literal] = ACTIONS(1623), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1621), + [sym_at_ident] = ACTIONS(1623), + [sym_hash_ident] = ACTIONS(1623), + [sym_type_ident] = ACTIONS(1623), + [sym_ct_type_ident] = ACTIONS(1623), + [sym_const_ident] = ACTIONS(1621), + [sym_builtin] = ACTIONS(1623), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_AMP] = ACTIONS(1621), + [anon_sym_static] = ACTIONS(1621), + [anon_sym_tlocal] = ACTIONS(1621), + [anon_sym_SEMI] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_LBRACE] = ACTIONS(1621), + [anon_sym_RBRACE] = ACTIONS(1623), + [anon_sym_const] = ACTIONS(1621), + [anon_sym_var] = ACTIONS(1621), + [anon_sym_return] = ACTIONS(1621), + [anon_sym_continue] = ACTIONS(1621), + [anon_sym_break] = ACTIONS(1621), + [anon_sym_defer] = ACTIONS(1621), + [anon_sym_assert] = ACTIONS(1621), + [anon_sym_case] = ACTIONS(1621), + [anon_sym_default] = ACTIONS(1621), + [anon_sym_nextcase] = ACTIONS(1621), + [anon_sym_switch] = ACTIONS(1621), + [anon_sym_AMP_AMP] = ACTIONS(1623), + [anon_sym_if] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1621), + [anon_sym_foreach] = ACTIONS(1621), + [anon_sym_foreach_r] = ACTIONS(1621), + [anon_sym_while] = ACTIONS(1621), + [anon_sym_do] = ACTIONS(1621), + [anon_sym_int] = ACTIONS(1621), + [anon_sym_PLUS] = ACTIONS(1621), + [anon_sym_DASH] = ACTIONS(1621), + [anon_sym_STAR] = ACTIONS(1623), + [anon_sym_asm] = ACTIONS(1621), + [anon_sym_DOLLARassert] = ACTIONS(1621), + [anon_sym_DOLLARerror] = ACTIONS(1621), + [anon_sym_DOLLARecho] = ACTIONS(1621), + [anon_sym_DOLLARif] = ACTIONS(1621), + [anon_sym_DOLLARswitch] = ACTIONS(1621), + [anon_sym_DOLLARfor] = ACTIONS(1621), + [anon_sym_DOLLARforeach] = ACTIONS(1621), + [anon_sym_DOLLARalignof] = ACTIONS(1621), + [anon_sym_DOLLARextnameof] = ACTIONS(1621), + [anon_sym_DOLLARnameof] = ACTIONS(1621), + [anon_sym_DOLLARoffsetof] = ACTIONS(1621), + [anon_sym_DOLLARqnameof] = ACTIONS(1621), + [anon_sym_DOLLARvaconst] = ACTIONS(1621), + [anon_sym_DOLLARvaarg] = ACTIONS(1621), + [anon_sym_DOLLARvaref] = ACTIONS(1621), + [anon_sym_DOLLARvaexpr] = ACTIONS(1621), + [anon_sym_true] = ACTIONS(1621), + [anon_sym_false] = ACTIONS(1621), + [anon_sym_null] = ACTIONS(1621), + [anon_sym_DOLLARvacount] = ACTIONS(1621), + [anon_sym_DOLLARappend] = ACTIONS(1621), + [anon_sym_DOLLARconcat] = ACTIONS(1621), + [anon_sym_DOLLAReval] = ACTIONS(1621), + [anon_sym_DOLLARis_const] = ACTIONS(1621), + [anon_sym_DOLLARsizeof] = ACTIONS(1621), + [anon_sym_DOLLARstringify] = ACTIONS(1621), + [anon_sym_DOLLARand] = ACTIONS(1621), + [anon_sym_DOLLARdefined] = ACTIONS(1621), + [anon_sym_DOLLARembed] = ACTIONS(1621), + [anon_sym_DOLLARor] = ACTIONS(1621), + [anon_sym_DOLLARfeature] = ACTIONS(1621), + [anon_sym_DOLLARassignable] = ACTIONS(1621), + [anon_sym_BANG] = ACTIONS(1623), + [anon_sym_TILDE] = ACTIONS(1623), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_typeid] = ACTIONS(1621), + [anon_sym_LBRACE_PIPE] = ACTIONS(1623), + [anon_sym_PIPE_RBRACE] = ACTIONS(1623), + [anon_sym_void] = ACTIONS(1621), + [anon_sym_bool] = ACTIONS(1621), + [anon_sym_char] = ACTIONS(1621), + [anon_sym_ichar] = ACTIONS(1621), + [anon_sym_short] = ACTIONS(1621), + [anon_sym_ushort] = ACTIONS(1621), + [anon_sym_uint] = ACTIONS(1621), + [anon_sym_long] = ACTIONS(1621), + [anon_sym_ulong] = ACTIONS(1621), + [anon_sym_int128] = ACTIONS(1621), + [anon_sym_uint128] = ACTIONS(1621), + [anon_sym_float] = ACTIONS(1621), + [anon_sym_double] = ACTIONS(1621), + [anon_sym_float16] = ACTIONS(1621), + [anon_sym_bfloat16] = ACTIONS(1621), + [anon_sym_float128] = ACTIONS(1621), + [anon_sym_iptr] = ACTIONS(1621), + [anon_sym_uptr] = ACTIONS(1621), + [anon_sym_isz] = ACTIONS(1621), + [anon_sym_usz] = ACTIONS(1621), + [anon_sym_anyfault] = ACTIONS(1621), + [anon_sym_any] = ACTIONS(1621), + [anon_sym_DOLLARtypeof] = ACTIONS(1621), + [anon_sym_DOLLARtypefrom] = ACTIONS(1621), + [anon_sym_DOLLARvatype] = ACTIONS(1621), + [anon_sym_DOLLARevaltype] = ACTIONS(1621), + [sym_real_literal] = ACTIONS(1623), }, [408] = { [sym_line_comment] = STATE(408), [sym_doc_comment] = STATE(408), [sym_block_comment] = STATE(408), - [sym_ident] = ACTIONS(1444), - [sym_integer_literal] = ACTIONS(1446), - [anon_sym_SQUOTE] = ACTIONS(1446), - [anon_sym_DQUOTE] = ACTIONS(1446), - [anon_sym_BQUOTE] = ACTIONS(1446), - [sym_bytes_literal] = ACTIONS(1446), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1444), - [sym_at_ident] = ACTIONS(1446), - [sym_hash_ident] = ACTIONS(1446), - [sym_type_ident] = ACTIONS(1446), - [sym_ct_type_ident] = ACTIONS(1446), - [sym_const_ident] = ACTIONS(1444), - [sym_builtin] = ACTIONS(1446), - [anon_sym_LPAREN] = ACTIONS(1446), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_static] = ACTIONS(1444), - [anon_sym_tlocal] = ACTIONS(1444), - [anon_sym_SEMI] = ACTIONS(1446), - [anon_sym_fn] = ACTIONS(1444), - [anon_sym_LBRACE] = ACTIONS(1444), - [anon_sym_RBRACE] = ACTIONS(1446), - [anon_sym_const] = ACTIONS(1444), - [anon_sym_var] = ACTIONS(1444), - [anon_sym_return] = ACTIONS(1444), - [anon_sym_continue] = ACTIONS(1444), - [anon_sym_break] = ACTIONS(1444), - [anon_sym_defer] = ACTIONS(1444), - [anon_sym_assert] = ACTIONS(1444), - [anon_sym_case] = ACTIONS(1444), - [anon_sym_default] = ACTIONS(1444), - [anon_sym_nextcase] = ACTIONS(1444), - [anon_sym_switch] = ACTIONS(1444), - [anon_sym_AMP_AMP] = ACTIONS(1446), - [anon_sym_if] = ACTIONS(1444), - [anon_sym_for] = ACTIONS(1444), - [anon_sym_foreach] = ACTIONS(1444), - [anon_sym_foreach_r] = ACTIONS(1444), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_do] = ACTIONS(1444), - [anon_sym_int] = ACTIONS(1444), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_asm] = ACTIONS(1444), - [anon_sym_DOLLARassert] = ACTIONS(1444), - [anon_sym_DOLLARerror] = ACTIONS(1444), - [anon_sym_DOLLARecho] = ACTIONS(1444), - [anon_sym_DOLLARif] = ACTIONS(1444), - [anon_sym_DOLLARswitch] = ACTIONS(1444), - [anon_sym_DOLLARfor] = ACTIONS(1444), - [anon_sym_DOLLARforeach] = ACTIONS(1444), - [anon_sym_DOLLARalignof] = ACTIONS(1444), - [anon_sym_DOLLARextnameof] = ACTIONS(1444), - [anon_sym_DOLLARnameof] = ACTIONS(1444), - [anon_sym_DOLLARoffsetof] = ACTIONS(1444), - [anon_sym_DOLLARqnameof] = ACTIONS(1444), - [anon_sym_DOLLARvaconst] = ACTIONS(1444), - [anon_sym_DOLLARvaarg] = ACTIONS(1444), - [anon_sym_DOLLARvaref] = ACTIONS(1444), - [anon_sym_DOLLARvaexpr] = ACTIONS(1444), - [anon_sym_true] = ACTIONS(1444), - [anon_sym_false] = ACTIONS(1444), - [anon_sym_null] = ACTIONS(1444), - [anon_sym_DOLLARvacount] = ACTIONS(1444), - [anon_sym_DOLLARappend] = ACTIONS(1444), - [anon_sym_DOLLARconcat] = ACTIONS(1444), - [anon_sym_DOLLAReval] = ACTIONS(1444), - [anon_sym_DOLLARis_const] = ACTIONS(1444), - [anon_sym_DOLLARsizeof] = ACTIONS(1444), - [anon_sym_DOLLARstringify] = ACTIONS(1444), - [anon_sym_DOLLARand] = ACTIONS(1444), - [anon_sym_DOLLARdefined] = ACTIONS(1444), - [anon_sym_DOLLARembed] = ACTIONS(1444), - [anon_sym_DOLLARor] = ACTIONS(1444), - [anon_sym_DOLLARfeature] = ACTIONS(1444), - [anon_sym_DOLLARassignable] = ACTIONS(1444), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_TILDE] = ACTIONS(1446), - [anon_sym_PLUS_PLUS] = ACTIONS(1446), - [anon_sym_DASH_DASH] = ACTIONS(1446), - [anon_sym_typeid] = ACTIONS(1444), - [anon_sym_LBRACE_PIPE] = ACTIONS(1446), - [anon_sym_PIPE_RBRACE] = ACTIONS(1446), - [anon_sym_void] = ACTIONS(1444), - [anon_sym_bool] = ACTIONS(1444), - [anon_sym_char] = ACTIONS(1444), - [anon_sym_ichar] = ACTIONS(1444), - [anon_sym_short] = ACTIONS(1444), - [anon_sym_ushort] = ACTIONS(1444), - [anon_sym_uint] = ACTIONS(1444), - [anon_sym_long] = ACTIONS(1444), - [anon_sym_ulong] = ACTIONS(1444), - [anon_sym_int128] = ACTIONS(1444), - [anon_sym_uint128] = ACTIONS(1444), - [anon_sym_float] = ACTIONS(1444), - [anon_sym_double] = ACTIONS(1444), - [anon_sym_float16] = ACTIONS(1444), - [anon_sym_bfloat16] = ACTIONS(1444), - [anon_sym_float128] = ACTIONS(1444), - [anon_sym_iptr] = ACTIONS(1444), - [anon_sym_uptr] = ACTIONS(1444), - [anon_sym_isz] = ACTIONS(1444), - [anon_sym_usz] = ACTIONS(1444), - [anon_sym_anyfault] = ACTIONS(1444), - [anon_sym_any] = ACTIONS(1444), - [anon_sym_DOLLARtypeof] = ACTIONS(1444), - [anon_sym_DOLLARtypefrom] = ACTIONS(1444), - [anon_sym_DOLLARvatype] = ACTIONS(1444), - [anon_sym_DOLLARevaltype] = ACTIONS(1444), - [sym_real_literal] = ACTIONS(1446), + [sym_ident] = ACTIONS(1625), + [sym_integer_literal] = ACTIONS(1627), + [anon_sym_SQUOTE] = ACTIONS(1627), + [anon_sym_DQUOTE] = ACTIONS(1627), + [anon_sym_BQUOTE] = ACTIONS(1627), + [sym_bytes_literal] = ACTIONS(1627), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1625), + [sym_at_ident] = ACTIONS(1627), + [sym_hash_ident] = ACTIONS(1627), + [sym_type_ident] = ACTIONS(1627), + [sym_ct_type_ident] = ACTIONS(1627), + [sym_const_ident] = ACTIONS(1625), + [sym_builtin] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1627), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_static] = ACTIONS(1625), + [anon_sym_tlocal] = ACTIONS(1625), + [anon_sym_SEMI] = ACTIONS(1627), + [anon_sym_fn] = ACTIONS(1625), + [anon_sym_LBRACE] = ACTIONS(1625), + [anon_sym_RBRACE] = ACTIONS(1627), + [anon_sym_const] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1625), + [anon_sym_return] = ACTIONS(1625), + [anon_sym_continue] = ACTIONS(1625), + [anon_sym_break] = ACTIONS(1625), + [anon_sym_defer] = ACTIONS(1625), + [anon_sym_assert] = ACTIONS(1625), + [anon_sym_case] = ACTIONS(1625), + [anon_sym_default] = ACTIONS(1625), + [anon_sym_nextcase] = ACTIONS(1625), + [anon_sym_switch] = ACTIONS(1625), + [anon_sym_AMP_AMP] = ACTIONS(1627), + [anon_sym_if] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1625), + [anon_sym_foreach] = ACTIONS(1625), + [anon_sym_foreach_r] = ACTIONS(1625), + [anon_sym_while] = ACTIONS(1625), + [anon_sym_do] = ACTIONS(1625), + [anon_sym_int] = ACTIONS(1625), + [anon_sym_PLUS] = ACTIONS(1625), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(1627), + [anon_sym_asm] = ACTIONS(1625), + [anon_sym_DOLLARassert] = ACTIONS(1625), + [anon_sym_DOLLARerror] = ACTIONS(1625), + [anon_sym_DOLLARecho] = ACTIONS(1625), + [anon_sym_DOLLARif] = ACTIONS(1625), + [anon_sym_DOLLARswitch] = ACTIONS(1625), + [anon_sym_DOLLARfor] = ACTIONS(1625), + [anon_sym_DOLLARforeach] = ACTIONS(1625), + [anon_sym_DOLLARalignof] = ACTIONS(1625), + [anon_sym_DOLLARextnameof] = ACTIONS(1625), + [anon_sym_DOLLARnameof] = ACTIONS(1625), + [anon_sym_DOLLARoffsetof] = ACTIONS(1625), + [anon_sym_DOLLARqnameof] = ACTIONS(1625), + [anon_sym_DOLLARvaconst] = ACTIONS(1625), + [anon_sym_DOLLARvaarg] = ACTIONS(1625), + [anon_sym_DOLLARvaref] = ACTIONS(1625), + [anon_sym_DOLLARvaexpr] = ACTIONS(1625), + [anon_sym_true] = ACTIONS(1625), + [anon_sym_false] = ACTIONS(1625), + [anon_sym_null] = ACTIONS(1625), + [anon_sym_DOLLARvacount] = ACTIONS(1625), + [anon_sym_DOLLARappend] = ACTIONS(1625), + [anon_sym_DOLLARconcat] = ACTIONS(1625), + [anon_sym_DOLLAReval] = ACTIONS(1625), + [anon_sym_DOLLARis_const] = ACTIONS(1625), + [anon_sym_DOLLARsizeof] = ACTIONS(1625), + [anon_sym_DOLLARstringify] = ACTIONS(1625), + [anon_sym_DOLLARand] = ACTIONS(1625), + [anon_sym_DOLLARdefined] = ACTIONS(1625), + [anon_sym_DOLLARembed] = ACTIONS(1625), + [anon_sym_DOLLARor] = ACTIONS(1625), + [anon_sym_DOLLARfeature] = ACTIONS(1625), + [anon_sym_DOLLARassignable] = ACTIONS(1625), + [anon_sym_BANG] = ACTIONS(1627), + [anon_sym_TILDE] = ACTIONS(1627), + [anon_sym_PLUS_PLUS] = ACTIONS(1627), + [anon_sym_DASH_DASH] = ACTIONS(1627), + [anon_sym_typeid] = ACTIONS(1625), + [anon_sym_LBRACE_PIPE] = ACTIONS(1627), + [anon_sym_PIPE_RBRACE] = ACTIONS(1627), + [anon_sym_void] = ACTIONS(1625), + [anon_sym_bool] = ACTIONS(1625), + [anon_sym_char] = ACTIONS(1625), + [anon_sym_ichar] = ACTIONS(1625), + [anon_sym_short] = ACTIONS(1625), + [anon_sym_ushort] = ACTIONS(1625), + [anon_sym_uint] = ACTIONS(1625), + [anon_sym_long] = ACTIONS(1625), + [anon_sym_ulong] = ACTIONS(1625), + [anon_sym_int128] = ACTIONS(1625), + [anon_sym_uint128] = ACTIONS(1625), + [anon_sym_float] = ACTIONS(1625), + [anon_sym_double] = ACTIONS(1625), + [anon_sym_float16] = ACTIONS(1625), + [anon_sym_bfloat16] = ACTIONS(1625), + [anon_sym_float128] = ACTIONS(1625), + [anon_sym_iptr] = ACTIONS(1625), + [anon_sym_uptr] = ACTIONS(1625), + [anon_sym_isz] = ACTIONS(1625), + [anon_sym_usz] = ACTIONS(1625), + [anon_sym_anyfault] = ACTIONS(1625), + [anon_sym_any] = ACTIONS(1625), + [anon_sym_DOLLARtypeof] = ACTIONS(1625), + [anon_sym_DOLLARtypefrom] = ACTIONS(1625), + [anon_sym_DOLLARvatype] = ACTIONS(1625), + [anon_sym_DOLLARevaltype] = ACTIONS(1625), + [sym_real_literal] = ACTIONS(1627), }, [409] = { [sym_line_comment] = STATE(409), [sym_doc_comment] = STATE(409), [sym_block_comment] = STATE(409), - [sym_ident] = ACTIONS(1448), - [sym_integer_literal] = ACTIONS(1450), - [anon_sym_SQUOTE] = ACTIONS(1450), - [anon_sym_DQUOTE] = ACTIONS(1450), - [anon_sym_BQUOTE] = ACTIONS(1450), - [sym_bytes_literal] = ACTIONS(1450), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1448), - [sym_at_ident] = ACTIONS(1450), - [sym_hash_ident] = ACTIONS(1450), - [sym_type_ident] = ACTIONS(1450), - [sym_ct_type_ident] = ACTIONS(1450), - [sym_const_ident] = ACTIONS(1448), - [sym_builtin] = ACTIONS(1450), - [anon_sym_LPAREN] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1448), - [anon_sym_static] = ACTIONS(1448), - [anon_sym_tlocal] = ACTIONS(1448), - [anon_sym_SEMI] = ACTIONS(1450), - [anon_sym_fn] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(1448), - [anon_sym_RBRACE] = ACTIONS(1450), - [anon_sym_const] = ACTIONS(1448), - [anon_sym_var] = ACTIONS(1448), - [anon_sym_return] = ACTIONS(1448), - [anon_sym_continue] = ACTIONS(1448), - [anon_sym_break] = ACTIONS(1448), - [anon_sym_defer] = ACTIONS(1448), - [anon_sym_assert] = ACTIONS(1448), - [anon_sym_case] = ACTIONS(1448), - [anon_sym_default] = ACTIONS(1448), - [anon_sym_nextcase] = ACTIONS(1448), - [anon_sym_switch] = ACTIONS(1448), - [anon_sym_AMP_AMP] = ACTIONS(1450), - [anon_sym_if] = ACTIONS(1448), - [anon_sym_for] = ACTIONS(1448), - [anon_sym_foreach] = ACTIONS(1448), - [anon_sym_foreach_r] = ACTIONS(1448), - [anon_sym_while] = ACTIONS(1448), - [anon_sym_do] = ACTIONS(1448), - [anon_sym_int] = ACTIONS(1448), - [anon_sym_PLUS] = ACTIONS(1448), - [anon_sym_DASH] = ACTIONS(1448), - [anon_sym_STAR] = ACTIONS(1450), - [anon_sym_asm] = ACTIONS(1448), - [anon_sym_DOLLARassert] = ACTIONS(1448), - [anon_sym_DOLLARerror] = ACTIONS(1448), - [anon_sym_DOLLARecho] = ACTIONS(1448), - [anon_sym_DOLLARif] = ACTIONS(1448), - [anon_sym_DOLLARswitch] = ACTIONS(1448), - [anon_sym_DOLLARfor] = ACTIONS(1448), - [anon_sym_DOLLARforeach] = ACTIONS(1448), - [anon_sym_DOLLARalignof] = ACTIONS(1448), - [anon_sym_DOLLARextnameof] = ACTIONS(1448), - [anon_sym_DOLLARnameof] = ACTIONS(1448), - [anon_sym_DOLLARoffsetof] = ACTIONS(1448), - [anon_sym_DOLLARqnameof] = ACTIONS(1448), - [anon_sym_DOLLARvaconst] = ACTIONS(1448), - [anon_sym_DOLLARvaarg] = ACTIONS(1448), - [anon_sym_DOLLARvaref] = ACTIONS(1448), - [anon_sym_DOLLARvaexpr] = ACTIONS(1448), - [anon_sym_true] = ACTIONS(1448), - [anon_sym_false] = ACTIONS(1448), - [anon_sym_null] = ACTIONS(1448), - [anon_sym_DOLLARvacount] = ACTIONS(1448), - [anon_sym_DOLLARappend] = ACTIONS(1448), - [anon_sym_DOLLARconcat] = ACTIONS(1448), - [anon_sym_DOLLAReval] = ACTIONS(1448), - [anon_sym_DOLLARis_const] = ACTIONS(1448), - [anon_sym_DOLLARsizeof] = ACTIONS(1448), - [anon_sym_DOLLARstringify] = ACTIONS(1448), - [anon_sym_DOLLARand] = ACTIONS(1448), - [anon_sym_DOLLARdefined] = ACTIONS(1448), - [anon_sym_DOLLARembed] = ACTIONS(1448), - [anon_sym_DOLLARor] = ACTIONS(1448), - [anon_sym_DOLLARfeature] = ACTIONS(1448), - [anon_sym_DOLLARassignable] = ACTIONS(1448), - [anon_sym_BANG] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1450), - [anon_sym_PLUS_PLUS] = ACTIONS(1450), - [anon_sym_DASH_DASH] = ACTIONS(1450), - [anon_sym_typeid] = ACTIONS(1448), - [anon_sym_LBRACE_PIPE] = ACTIONS(1450), - [anon_sym_PIPE_RBRACE] = ACTIONS(1450), - [anon_sym_void] = ACTIONS(1448), - [anon_sym_bool] = ACTIONS(1448), - [anon_sym_char] = ACTIONS(1448), - [anon_sym_ichar] = ACTIONS(1448), - [anon_sym_short] = ACTIONS(1448), - [anon_sym_ushort] = ACTIONS(1448), - [anon_sym_uint] = ACTIONS(1448), - [anon_sym_long] = ACTIONS(1448), - [anon_sym_ulong] = ACTIONS(1448), - [anon_sym_int128] = ACTIONS(1448), - [anon_sym_uint128] = ACTIONS(1448), - [anon_sym_float] = ACTIONS(1448), - [anon_sym_double] = ACTIONS(1448), - [anon_sym_float16] = ACTIONS(1448), - [anon_sym_bfloat16] = ACTIONS(1448), - [anon_sym_float128] = ACTIONS(1448), - [anon_sym_iptr] = ACTIONS(1448), - [anon_sym_uptr] = ACTIONS(1448), - [anon_sym_isz] = ACTIONS(1448), - [anon_sym_usz] = ACTIONS(1448), - [anon_sym_anyfault] = ACTIONS(1448), - [anon_sym_any] = ACTIONS(1448), - [anon_sym_DOLLARtypeof] = ACTIONS(1448), - [anon_sym_DOLLARtypefrom] = ACTIONS(1448), - [anon_sym_DOLLARvatype] = ACTIONS(1448), - [anon_sym_DOLLARevaltype] = ACTIONS(1448), - [sym_real_literal] = ACTIONS(1450), + [sym_ident] = ACTIONS(1629), + [sym_integer_literal] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1631), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_BQUOTE] = ACTIONS(1631), + [sym_bytes_literal] = ACTIONS(1631), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1629), + [sym_at_ident] = ACTIONS(1631), + [sym_hash_ident] = ACTIONS(1631), + [sym_type_ident] = ACTIONS(1631), + [sym_ct_type_ident] = ACTIONS(1631), + [sym_const_ident] = ACTIONS(1629), + [sym_builtin] = ACTIONS(1631), + [anon_sym_LPAREN] = ACTIONS(1631), + [anon_sym_AMP] = ACTIONS(1629), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_tlocal] = ACTIONS(1629), + [anon_sym_SEMI] = ACTIONS(1631), + [anon_sym_fn] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1629), + [anon_sym_RBRACE] = ACTIONS(1631), + [anon_sym_const] = ACTIONS(1629), + [anon_sym_var] = ACTIONS(1629), + [anon_sym_return] = ACTIONS(1629), + [anon_sym_continue] = ACTIONS(1629), + [anon_sym_break] = ACTIONS(1629), + [anon_sym_defer] = ACTIONS(1629), + [anon_sym_assert] = ACTIONS(1629), + [anon_sym_case] = ACTIONS(1629), + [anon_sym_default] = ACTIONS(1629), + [anon_sym_nextcase] = ACTIONS(1629), + [anon_sym_switch] = ACTIONS(1629), + [anon_sym_AMP_AMP] = ACTIONS(1631), + [anon_sym_if] = ACTIONS(1629), + [anon_sym_for] = ACTIONS(1629), + [anon_sym_foreach] = ACTIONS(1629), + [anon_sym_foreach_r] = ACTIONS(1629), + [anon_sym_while] = ACTIONS(1629), + [anon_sym_do] = ACTIONS(1629), + [anon_sym_int] = ACTIONS(1629), + [anon_sym_PLUS] = ACTIONS(1629), + [anon_sym_DASH] = ACTIONS(1629), + [anon_sym_STAR] = ACTIONS(1631), + [anon_sym_asm] = ACTIONS(1629), + [anon_sym_DOLLARassert] = ACTIONS(1629), + [anon_sym_DOLLARerror] = ACTIONS(1629), + [anon_sym_DOLLARecho] = ACTIONS(1629), + [anon_sym_DOLLARif] = ACTIONS(1629), + [anon_sym_DOLLARswitch] = ACTIONS(1629), + [anon_sym_DOLLARfor] = ACTIONS(1629), + [anon_sym_DOLLARforeach] = ACTIONS(1629), + [anon_sym_DOLLARalignof] = ACTIONS(1629), + [anon_sym_DOLLARextnameof] = ACTIONS(1629), + [anon_sym_DOLLARnameof] = ACTIONS(1629), + [anon_sym_DOLLARoffsetof] = ACTIONS(1629), + [anon_sym_DOLLARqnameof] = ACTIONS(1629), + [anon_sym_DOLLARvaconst] = ACTIONS(1629), + [anon_sym_DOLLARvaarg] = ACTIONS(1629), + [anon_sym_DOLLARvaref] = ACTIONS(1629), + [anon_sym_DOLLARvaexpr] = ACTIONS(1629), + [anon_sym_true] = ACTIONS(1629), + [anon_sym_false] = ACTIONS(1629), + [anon_sym_null] = ACTIONS(1629), + [anon_sym_DOLLARvacount] = ACTIONS(1629), + [anon_sym_DOLLARappend] = ACTIONS(1629), + [anon_sym_DOLLARconcat] = ACTIONS(1629), + [anon_sym_DOLLAReval] = ACTIONS(1629), + [anon_sym_DOLLARis_const] = ACTIONS(1629), + [anon_sym_DOLLARsizeof] = ACTIONS(1629), + [anon_sym_DOLLARstringify] = ACTIONS(1629), + [anon_sym_DOLLARand] = ACTIONS(1629), + [anon_sym_DOLLARdefined] = ACTIONS(1629), + [anon_sym_DOLLARembed] = ACTIONS(1629), + [anon_sym_DOLLARor] = ACTIONS(1629), + [anon_sym_DOLLARfeature] = ACTIONS(1629), + [anon_sym_DOLLARassignable] = ACTIONS(1629), + [anon_sym_BANG] = ACTIONS(1631), + [anon_sym_TILDE] = ACTIONS(1631), + [anon_sym_PLUS_PLUS] = ACTIONS(1631), + [anon_sym_DASH_DASH] = ACTIONS(1631), + [anon_sym_typeid] = ACTIONS(1629), + [anon_sym_LBRACE_PIPE] = ACTIONS(1631), + [anon_sym_PIPE_RBRACE] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1629), + [anon_sym_bool] = ACTIONS(1629), + [anon_sym_char] = ACTIONS(1629), + [anon_sym_ichar] = ACTIONS(1629), + [anon_sym_short] = ACTIONS(1629), + [anon_sym_ushort] = ACTIONS(1629), + [anon_sym_uint] = ACTIONS(1629), + [anon_sym_long] = ACTIONS(1629), + [anon_sym_ulong] = ACTIONS(1629), + [anon_sym_int128] = ACTIONS(1629), + [anon_sym_uint128] = ACTIONS(1629), + [anon_sym_float] = ACTIONS(1629), + [anon_sym_double] = ACTIONS(1629), + [anon_sym_float16] = ACTIONS(1629), + [anon_sym_bfloat16] = ACTIONS(1629), + [anon_sym_float128] = ACTIONS(1629), + [anon_sym_iptr] = ACTIONS(1629), + [anon_sym_uptr] = ACTIONS(1629), + [anon_sym_isz] = ACTIONS(1629), + [anon_sym_usz] = ACTIONS(1629), + [anon_sym_anyfault] = ACTIONS(1629), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_DOLLARtypeof] = ACTIONS(1629), + [anon_sym_DOLLARtypefrom] = ACTIONS(1629), + [anon_sym_DOLLARvatype] = ACTIONS(1629), + [anon_sym_DOLLARevaltype] = ACTIONS(1629), + [sym_real_literal] = ACTIONS(1631), }, [410] = { [sym_line_comment] = STATE(410), [sym_doc_comment] = STATE(410), [sym_block_comment] = STATE(410), - [sym_ident] = ACTIONS(1452), - [sym_integer_literal] = ACTIONS(1454), - [anon_sym_SQUOTE] = ACTIONS(1454), - [anon_sym_DQUOTE] = ACTIONS(1454), - [anon_sym_BQUOTE] = ACTIONS(1454), - [sym_bytes_literal] = ACTIONS(1454), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1452), - [sym_at_ident] = ACTIONS(1454), - [sym_hash_ident] = ACTIONS(1454), - [sym_type_ident] = ACTIONS(1454), - [sym_ct_type_ident] = ACTIONS(1454), - [sym_const_ident] = ACTIONS(1452), - [sym_builtin] = ACTIONS(1454), - [anon_sym_LPAREN] = ACTIONS(1454), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_tlocal] = ACTIONS(1452), - [anon_sym_SEMI] = ACTIONS(1454), - [anon_sym_fn] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1452), - [anon_sym_RBRACE] = ACTIONS(1454), - [anon_sym_const] = ACTIONS(1452), - [anon_sym_var] = ACTIONS(1452), - [anon_sym_return] = ACTIONS(1452), - [anon_sym_continue] = ACTIONS(1452), - [anon_sym_break] = ACTIONS(1452), - [anon_sym_defer] = ACTIONS(1452), - [anon_sym_assert] = ACTIONS(1452), - [anon_sym_case] = ACTIONS(1452), - [anon_sym_default] = ACTIONS(1452), - [anon_sym_nextcase] = ACTIONS(1452), - [anon_sym_switch] = ACTIONS(1452), - [anon_sym_AMP_AMP] = ACTIONS(1454), - [anon_sym_if] = ACTIONS(1452), - [anon_sym_for] = ACTIONS(1452), - [anon_sym_foreach] = ACTIONS(1452), - [anon_sym_foreach_r] = ACTIONS(1452), - [anon_sym_while] = ACTIONS(1452), - [anon_sym_do] = ACTIONS(1452), - [anon_sym_int] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1452), - [anon_sym_DASH] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1454), - [anon_sym_asm] = ACTIONS(1452), - [anon_sym_DOLLARassert] = ACTIONS(1452), - [anon_sym_DOLLARerror] = ACTIONS(1452), - [anon_sym_DOLLARecho] = ACTIONS(1452), - [anon_sym_DOLLARif] = ACTIONS(1452), - [anon_sym_DOLLARswitch] = ACTIONS(1452), - [anon_sym_DOLLARfor] = ACTIONS(1452), - [anon_sym_DOLLARforeach] = ACTIONS(1452), - [anon_sym_DOLLARalignof] = ACTIONS(1452), - [anon_sym_DOLLARextnameof] = ACTIONS(1452), - [anon_sym_DOLLARnameof] = ACTIONS(1452), - [anon_sym_DOLLARoffsetof] = ACTIONS(1452), - [anon_sym_DOLLARqnameof] = ACTIONS(1452), - [anon_sym_DOLLARvaconst] = ACTIONS(1452), - [anon_sym_DOLLARvaarg] = ACTIONS(1452), - [anon_sym_DOLLARvaref] = ACTIONS(1452), - [anon_sym_DOLLARvaexpr] = ACTIONS(1452), - [anon_sym_true] = ACTIONS(1452), - [anon_sym_false] = ACTIONS(1452), - [anon_sym_null] = ACTIONS(1452), - [anon_sym_DOLLARvacount] = ACTIONS(1452), - [anon_sym_DOLLARappend] = ACTIONS(1452), - [anon_sym_DOLLARconcat] = ACTIONS(1452), - [anon_sym_DOLLAReval] = ACTIONS(1452), - [anon_sym_DOLLARis_const] = ACTIONS(1452), - [anon_sym_DOLLARsizeof] = ACTIONS(1452), - [anon_sym_DOLLARstringify] = ACTIONS(1452), - [anon_sym_DOLLARand] = ACTIONS(1452), - [anon_sym_DOLLARdefined] = ACTIONS(1452), - [anon_sym_DOLLARembed] = ACTIONS(1452), - [anon_sym_DOLLARor] = ACTIONS(1452), - [anon_sym_DOLLARfeature] = ACTIONS(1452), - [anon_sym_DOLLARassignable] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1454), - [anon_sym_PLUS_PLUS] = ACTIONS(1454), - [anon_sym_DASH_DASH] = ACTIONS(1454), - [anon_sym_typeid] = ACTIONS(1452), - [anon_sym_LBRACE_PIPE] = ACTIONS(1454), - [anon_sym_PIPE_RBRACE] = ACTIONS(1454), - [anon_sym_void] = ACTIONS(1452), - [anon_sym_bool] = ACTIONS(1452), - [anon_sym_char] = ACTIONS(1452), - [anon_sym_ichar] = ACTIONS(1452), - [anon_sym_short] = ACTIONS(1452), - [anon_sym_ushort] = ACTIONS(1452), - [anon_sym_uint] = ACTIONS(1452), - [anon_sym_long] = ACTIONS(1452), - [anon_sym_ulong] = ACTIONS(1452), - [anon_sym_int128] = ACTIONS(1452), - [anon_sym_uint128] = ACTIONS(1452), - [anon_sym_float] = ACTIONS(1452), - [anon_sym_double] = ACTIONS(1452), - [anon_sym_float16] = ACTIONS(1452), - [anon_sym_bfloat16] = ACTIONS(1452), - [anon_sym_float128] = ACTIONS(1452), - [anon_sym_iptr] = ACTIONS(1452), - [anon_sym_uptr] = ACTIONS(1452), - [anon_sym_isz] = ACTIONS(1452), - [anon_sym_usz] = ACTIONS(1452), - [anon_sym_anyfault] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_DOLLARtypeof] = ACTIONS(1452), - [anon_sym_DOLLARtypefrom] = ACTIONS(1452), - [anon_sym_DOLLARvatype] = ACTIONS(1452), - [anon_sym_DOLLARevaltype] = ACTIONS(1452), - [sym_real_literal] = ACTIONS(1454), + [sym_ident] = ACTIONS(1633), + [sym_integer_literal] = ACTIONS(1635), + [anon_sym_SQUOTE] = ACTIONS(1635), + [anon_sym_DQUOTE] = ACTIONS(1635), + [anon_sym_BQUOTE] = ACTIONS(1635), + [sym_bytes_literal] = ACTIONS(1635), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1633), + [sym_at_ident] = ACTIONS(1635), + [sym_hash_ident] = ACTIONS(1635), + [sym_type_ident] = ACTIONS(1635), + [sym_ct_type_ident] = ACTIONS(1635), + [sym_const_ident] = ACTIONS(1633), + [sym_builtin] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1633), + [anon_sym_static] = ACTIONS(1633), + [anon_sym_tlocal] = ACTIONS(1633), + [anon_sym_SEMI] = ACTIONS(1635), + [anon_sym_fn] = ACTIONS(1633), + [anon_sym_LBRACE] = ACTIONS(1633), + [anon_sym_RBRACE] = ACTIONS(1635), + [anon_sym_const] = ACTIONS(1633), + [anon_sym_var] = ACTIONS(1633), + [anon_sym_return] = ACTIONS(1633), + [anon_sym_continue] = ACTIONS(1633), + [anon_sym_break] = ACTIONS(1633), + [anon_sym_defer] = ACTIONS(1633), + [anon_sym_assert] = ACTIONS(1633), + [anon_sym_case] = ACTIONS(1633), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_nextcase] = ACTIONS(1633), + [anon_sym_switch] = ACTIONS(1633), + [anon_sym_AMP_AMP] = ACTIONS(1635), + [anon_sym_if] = ACTIONS(1633), + [anon_sym_for] = ACTIONS(1633), + [anon_sym_foreach] = ACTIONS(1633), + [anon_sym_foreach_r] = ACTIONS(1633), + [anon_sym_while] = ACTIONS(1633), + [anon_sym_do] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_PLUS] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1633), + [anon_sym_STAR] = ACTIONS(1635), + [anon_sym_asm] = ACTIONS(1633), + [anon_sym_DOLLARassert] = ACTIONS(1633), + [anon_sym_DOLLARerror] = ACTIONS(1633), + [anon_sym_DOLLARecho] = ACTIONS(1633), + [anon_sym_DOLLARif] = ACTIONS(1633), + [anon_sym_DOLLARswitch] = ACTIONS(1633), + [anon_sym_DOLLARfor] = ACTIONS(1633), + [anon_sym_DOLLARforeach] = ACTIONS(1633), + [anon_sym_DOLLARalignof] = ACTIONS(1633), + [anon_sym_DOLLARextnameof] = ACTIONS(1633), + [anon_sym_DOLLARnameof] = ACTIONS(1633), + [anon_sym_DOLLARoffsetof] = ACTIONS(1633), + [anon_sym_DOLLARqnameof] = ACTIONS(1633), + [anon_sym_DOLLARvaconst] = ACTIONS(1633), + [anon_sym_DOLLARvaarg] = ACTIONS(1633), + [anon_sym_DOLLARvaref] = ACTIONS(1633), + [anon_sym_DOLLARvaexpr] = ACTIONS(1633), + [anon_sym_true] = ACTIONS(1633), + [anon_sym_false] = ACTIONS(1633), + [anon_sym_null] = ACTIONS(1633), + [anon_sym_DOLLARvacount] = ACTIONS(1633), + [anon_sym_DOLLARappend] = ACTIONS(1633), + [anon_sym_DOLLARconcat] = ACTIONS(1633), + [anon_sym_DOLLAReval] = ACTIONS(1633), + [anon_sym_DOLLARis_const] = ACTIONS(1633), + [anon_sym_DOLLARsizeof] = ACTIONS(1633), + [anon_sym_DOLLARstringify] = ACTIONS(1633), + [anon_sym_DOLLARand] = ACTIONS(1633), + [anon_sym_DOLLARdefined] = ACTIONS(1633), + [anon_sym_DOLLARembed] = ACTIONS(1633), + [anon_sym_DOLLARor] = ACTIONS(1633), + [anon_sym_DOLLARfeature] = ACTIONS(1633), + [anon_sym_DOLLARassignable] = ACTIONS(1633), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1635), + [anon_sym_DASH_DASH] = ACTIONS(1635), + [anon_sym_typeid] = ACTIONS(1633), + [anon_sym_LBRACE_PIPE] = ACTIONS(1635), + [anon_sym_PIPE_RBRACE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_char] = ACTIONS(1633), + [anon_sym_ichar] = ACTIONS(1633), + [anon_sym_short] = ACTIONS(1633), + [anon_sym_ushort] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_long] = ACTIONS(1633), + [anon_sym_ulong] = ACTIONS(1633), + [anon_sym_int128] = ACTIONS(1633), + [anon_sym_uint128] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_double] = ACTIONS(1633), + [anon_sym_float16] = ACTIONS(1633), + [anon_sym_bfloat16] = ACTIONS(1633), + [anon_sym_float128] = ACTIONS(1633), + [anon_sym_iptr] = ACTIONS(1633), + [anon_sym_uptr] = ACTIONS(1633), + [anon_sym_isz] = ACTIONS(1633), + [anon_sym_usz] = ACTIONS(1633), + [anon_sym_anyfault] = ACTIONS(1633), + [anon_sym_any] = ACTIONS(1633), + [anon_sym_DOLLARtypeof] = ACTIONS(1633), + [anon_sym_DOLLARtypefrom] = ACTIONS(1633), + [anon_sym_DOLLARvatype] = ACTIONS(1633), + [anon_sym_DOLLARevaltype] = ACTIONS(1633), + [sym_real_literal] = ACTIONS(1635), }, [411] = { [sym_line_comment] = STATE(411), [sym_doc_comment] = STATE(411), [sym_block_comment] = STATE(411), - [sym_ident] = ACTIONS(1456), - [sym_integer_literal] = ACTIONS(1458), - [anon_sym_SQUOTE] = ACTIONS(1458), - [anon_sym_DQUOTE] = ACTIONS(1458), - [anon_sym_BQUOTE] = ACTIONS(1458), - [sym_bytes_literal] = ACTIONS(1458), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1456), - [sym_at_ident] = ACTIONS(1458), - [sym_hash_ident] = ACTIONS(1458), - [sym_type_ident] = ACTIONS(1458), - [sym_ct_type_ident] = ACTIONS(1458), - [sym_const_ident] = ACTIONS(1456), - [sym_builtin] = ACTIONS(1458), - [anon_sym_LPAREN] = ACTIONS(1458), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_static] = ACTIONS(1456), - [anon_sym_tlocal] = ACTIONS(1456), - [anon_sym_SEMI] = ACTIONS(1458), - [anon_sym_fn] = ACTIONS(1456), - [anon_sym_LBRACE] = ACTIONS(1456), - [anon_sym_RBRACE] = ACTIONS(1458), - [anon_sym_const] = ACTIONS(1456), - [anon_sym_var] = ACTIONS(1456), - [anon_sym_return] = ACTIONS(1456), - [anon_sym_continue] = ACTIONS(1456), - [anon_sym_break] = ACTIONS(1456), - [anon_sym_defer] = ACTIONS(1456), - [anon_sym_assert] = ACTIONS(1456), - [anon_sym_case] = ACTIONS(1456), - [anon_sym_default] = ACTIONS(1456), - [anon_sym_nextcase] = ACTIONS(1456), - [anon_sym_switch] = ACTIONS(1456), - [anon_sym_AMP_AMP] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1456), - [anon_sym_for] = ACTIONS(1456), - [anon_sym_foreach] = ACTIONS(1456), - [anon_sym_foreach_r] = ACTIONS(1456), - [anon_sym_while] = ACTIONS(1456), - [anon_sym_do] = ACTIONS(1456), - [anon_sym_int] = ACTIONS(1456), - [anon_sym_PLUS] = ACTIONS(1456), - [anon_sym_DASH] = ACTIONS(1456), - [anon_sym_STAR] = ACTIONS(1458), - [anon_sym_asm] = ACTIONS(1456), - [anon_sym_DOLLARassert] = ACTIONS(1456), - [anon_sym_DOLLARerror] = ACTIONS(1456), - [anon_sym_DOLLARecho] = ACTIONS(1456), - [anon_sym_DOLLARif] = ACTIONS(1456), - [anon_sym_DOLLARswitch] = ACTIONS(1456), - [anon_sym_DOLLARfor] = ACTIONS(1456), - [anon_sym_DOLLARforeach] = ACTIONS(1456), - [anon_sym_DOLLARalignof] = ACTIONS(1456), - [anon_sym_DOLLARextnameof] = ACTIONS(1456), - [anon_sym_DOLLARnameof] = ACTIONS(1456), - [anon_sym_DOLLARoffsetof] = ACTIONS(1456), - [anon_sym_DOLLARqnameof] = ACTIONS(1456), - [anon_sym_DOLLARvaconst] = ACTIONS(1456), - [anon_sym_DOLLARvaarg] = ACTIONS(1456), - [anon_sym_DOLLARvaref] = ACTIONS(1456), - [anon_sym_DOLLARvaexpr] = ACTIONS(1456), - [anon_sym_true] = ACTIONS(1456), - [anon_sym_false] = ACTIONS(1456), - [anon_sym_null] = ACTIONS(1456), - [anon_sym_DOLLARvacount] = ACTIONS(1456), - [anon_sym_DOLLARappend] = ACTIONS(1456), - [anon_sym_DOLLARconcat] = ACTIONS(1456), - [anon_sym_DOLLAReval] = ACTIONS(1456), - [anon_sym_DOLLARis_const] = ACTIONS(1456), - [anon_sym_DOLLARsizeof] = ACTIONS(1456), - [anon_sym_DOLLARstringify] = ACTIONS(1456), - [anon_sym_DOLLARand] = ACTIONS(1456), - [anon_sym_DOLLARdefined] = ACTIONS(1456), - [anon_sym_DOLLARembed] = ACTIONS(1456), - [anon_sym_DOLLARor] = ACTIONS(1456), - [anon_sym_DOLLARfeature] = ACTIONS(1456), - [anon_sym_DOLLARassignable] = ACTIONS(1456), - [anon_sym_BANG] = ACTIONS(1458), - [anon_sym_TILDE] = ACTIONS(1458), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [anon_sym_typeid] = ACTIONS(1456), - [anon_sym_LBRACE_PIPE] = ACTIONS(1458), - [anon_sym_PIPE_RBRACE] = ACTIONS(1458), - [anon_sym_void] = ACTIONS(1456), - [anon_sym_bool] = ACTIONS(1456), - [anon_sym_char] = ACTIONS(1456), - [anon_sym_ichar] = ACTIONS(1456), - [anon_sym_short] = ACTIONS(1456), - [anon_sym_ushort] = ACTIONS(1456), - [anon_sym_uint] = ACTIONS(1456), - [anon_sym_long] = ACTIONS(1456), - [anon_sym_ulong] = ACTIONS(1456), - [anon_sym_int128] = ACTIONS(1456), - [anon_sym_uint128] = ACTIONS(1456), - [anon_sym_float] = ACTIONS(1456), - [anon_sym_double] = ACTIONS(1456), - [anon_sym_float16] = ACTIONS(1456), - [anon_sym_bfloat16] = ACTIONS(1456), - [anon_sym_float128] = ACTIONS(1456), - [anon_sym_iptr] = ACTIONS(1456), - [anon_sym_uptr] = ACTIONS(1456), - [anon_sym_isz] = ACTIONS(1456), - [anon_sym_usz] = ACTIONS(1456), - [anon_sym_anyfault] = ACTIONS(1456), - [anon_sym_any] = ACTIONS(1456), - [anon_sym_DOLLARtypeof] = ACTIONS(1456), - [anon_sym_DOLLARtypefrom] = ACTIONS(1456), - [anon_sym_DOLLARvatype] = ACTIONS(1456), - [anon_sym_DOLLARevaltype] = ACTIONS(1456), - [sym_real_literal] = ACTIONS(1458), + [sym_ident] = ACTIONS(1637), + [sym_integer_literal] = ACTIONS(1639), + [anon_sym_SQUOTE] = ACTIONS(1639), + [anon_sym_DQUOTE] = ACTIONS(1639), + [anon_sym_BQUOTE] = ACTIONS(1639), + [sym_bytes_literal] = ACTIONS(1639), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1637), + [sym_at_ident] = ACTIONS(1639), + [sym_hash_ident] = ACTIONS(1639), + [sym_type_ident] = ACTIONS(1639), + [sym_ct_type_ident] = ACTIONS(1639), + [sym_const_ident] = ACTIONS(1637), + [sym_builtin] = ACTIONS(1639), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_AMP] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1637), + [anon_sym_tlocal] = ACTIONS(1637), + [anon_sym_SEMI] = ACTIONS(1639), + [anon_sym_fn] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(1637), + [anon_sym_RBRACE] = ACTIONS(1639), + [anon_sym_const] = ACTIONS(1637), + [anon_sym_var] = ACTIONS(1637), + [anon_sym_return] = ACTIONS(1637), + [anon_sym_continue] = ACTIONS(1637), + [anon_sym_break] = ACTIONS(1637), + [anon_sym_defer] = ACTIONS(1637), + [anon_sym_assert] = ACTIONS(1637), + [anon_sym_case] = ACTIONS(1637), + [anon_sym_default] = ACTIONS(1637), + [anon_sym_nextcase] = ACTIONS(1637), + [anon_sym_switch] = ACTIONS(1637), + [anon_sym_AMP_AMP] = ACTIONS(1639), + [anon_sym_if] = ACTIONS(1637), + [anon_sym_for] = ACTIONS(1637), + [anon_sym_foreach] = ACTIONS(1637), + [anon_sym_foreach_r] = ACTIONS(1637), + [anon_sym_while] = ACTIONS(1637), + [anon_sym_do] = ACTIONS(1637), + [anon_sym_int] = ACTIONS(1637), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1639), + [anon_sym_asm] = ACTIONS(1637), + [anon_sym_DOLLARassert] = ACTIONS(1637), + [anon_sym_DOLLARerror] = ACTIONS(1637), + [anon_sym_DOLLARecho] = ACTIONS(1637), + [anon_sym_DOLLARif] = ACTIONS(1637), + [anon_sym_DOLLARswitch] = ACTIONS(1637), + [anon_sym_DOLLARfor] = ACTIONS(1637), + [anon_sym_DOLLARforeach] = ACTIONS(1637), + [anon_sym_DOLLARalignof] = ACTIONS(1637), + [anon_sym_DOLLARextnameof] = ACTIONS(1637), + [anon_sym_DOLLARnameof] = ACTIONS(1637), + [anon_sym_DOLLARoffsetof] = ACTIONS(1637), + [anon_sym_DOLLARqnameof] = ACTIONS(1637), + [anon_sym_DOLLARvaconst] = ACTIONS(1637), + [anon_sym_DOLLARvaarg] = ACTIONS(1637), + [anon_sym_DOLLARvaref] = ACTIONS(1637), + [anon_sym_DOLLARvaexpr] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1637), + [anon_sym_false] = ACTIONS(1637), + [anon_sym_null] = ACTIONS(1637), + [anon_sym_DOLLARvacount] = ACTIONS(1637), + [anon_sym_DOLLARappend] = ACTIONS(1637), + [anon_sym_DOLLARconcat] = ACTIONS(1637), + [anon_sym_DOLLAReval] = ACTIONS(1637), + [anon_sym_DOLLARis_const] = ACTIONS(1637), + [anon_sym_DOLLARsizeof] = ACTIONS(1637), + [anon_sym_DOLLARstringify] = ACTIONS(1637), + [anon_sym_DOLLARand] = ACTIONS(1637), + [anon_sym_DOLLARdefined] = ACTIONS(1637), + [anon_sym_DOLLARembed] = ACTIONS(1637), + [anon_sym_DOLLARor] = ACTIONS(1637), + [anon_sym_DOLLARfeature] = ACTIONS(1637), + [anon_sym_DOLLARassignable] = ACTIONS(1637), + [anon_sym_BANG] = ACTIONS(1639), + [anon_sym_TILDE] = ACTIONS(1639), + [anon_sym_PLUS_PLUS] = ACTIONS(1639), + [anon_sym_DASH_DASH] = ACTIONS(1639), + [anon_sym_typeid] = ACTIONS(1637), + [anon_sym_LBRACE_PIPE] = ACTIONS(1639), + [anon_sym_PIPE_RBRACE] = ACTIONS(1639), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_bool] = ACTIONS(1637), + [anon_sym_char] = ACTIONS(1637), + [anon_sym_ichar] = ACTIONS(1637), + [anon_sym_short] = ACTIONS(1637), + [anon_sym_ushort] = ACTIONS(1637), + [anon_sym_uint] = ACTIONS(1637), + [anon_sym_long] = ACTIONS(1637), + [anon_sym_ulong] = ACTIONS(1637), + [anon_sym_int128] = ACTIONS(1637), + [anon_sym_uint128] = ACTIONS(1637), + [anon_sym_float] = ACTIONS(1637), + [anon_sym_double] = ACTIONS(1637), + [anon_sym_float16] = ACTIONS(1637), + [anon_sym_bfloat16] = ACTIONS(1637), + [anon_sym_float128] = ACTIONS(1637), + [anon_sym_iptr] = ACTIONS(1637), + [anon_sym_uptr] = ACTIONS(1637), + [anon_sym_isz] = ACTIONS(1637), + [anon_sym_usz] = ACTIONS(1637), + [anon_sym_anyfault] = ACTIONS(1637), + [anon_sym_any] = ACTIONS(1637), + [anon_sym_DOLLARtypeof] = ACTIONS(1637), + [anon_sym_DOLLARtypefrom] = ACTIONS(1637), + [anon_sym_DOLLARvatype] = ACTIONS(1637), + [anon_sym_DOLLARevaltype] = ACTIONS(1637), + [sym_real_literal] = ACTIONS(1639), }, [412] = { [sym_line_comment] = STATE(412), [sym_doc_comment] = STATE(412), [sym_block_comment] = STATE(412), - [sym_ident] = ACTIONS(1460), - [sym_integer_literal] = ACTIONS(1462), - [anon_sym_SQUOTE] = ACTIONS(1462), - [anon_sym_DQUOTE] = ACTIONS(1462), - [anon_sym_BQUOTE] = ACTIONS(1462), - [sym_bytes_literal] = ACTIONS(1462), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1460), - [sym_at_ident] = ACTIONS(1462), - [sym_hash_ident] = ACTIONS(1462), - [sym_type_ident] = ACTIONS(1462), - [sym_ct_type_ident] = ACTIONS(1462), - [sym_const_ident] = ACTIONS(1460), - [sym_builtin] = ACTIONS(1462), - [anon_sym_LPAREN] = ACTIONS(1462), - [anon_sym_AMP] = ACTIONS(1460), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_tlocal] = ACTIONS(1460), - [anon_sym_SEMI] = ACTIONS(1462), - [anon_sym_fn] = ACTIONS(1460), - [anon_sym_LBRACE] = ACTIONS(1460), - [anon_sym_RBRACE] = ACTIONS(1462), - [anon_sym_const] = ACTIONS(1460), - [anon_sym_var] = ACTIONS(1460), - [anon_sym_return] = ACTIONS(1460), - [anon_sym_continue] = ACTIONS(1460), - [anon_sym_break] = ACTIONS(1460), - [anon_sym_defer] = ACTIONS(1460), - [anon_sym_assert] = ACTIONS(1460), - [anon_sym_case] = ACTIONS(1460), - [anon_sym_default] = ACTIONS(1460), - [anon_sym_nextcase] = ACTIONS(1460), - [anon_sym_switch] = ACTIONS(1460), - [anon_sym_AMP_AMP] = ACTIONS(1462), - [anon_sym_if] = ACTIONS(1460), - [anon_sym_for] = ACTIONS(1460), - [anon_sym_foreach] = ACTIONS(1460), - [anon_sym_foreach_r] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1460), - [anon_sym_do] = ACTIONS(1460), - [anon_sym_int] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1460), - [anon_sym_DASH] = ACTIONS(1460), - [anon_sym_STAR] = ACTIONS(1462), - [anon_sym_asm] = ACTIONS(1460), - [anon_sym_DOLLARassert] = ACTIONS(1460), - [anon_sym_DOLLARerror] = ACTIONS(1460), - [anon_sym_DOLLARecho] = ACTIONS(1460), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_DOLLARswitch] = ACTIONS(1460), - [anon_sym_DOLLARfor] = ACTIONS(1460), - [anon_sym_DOLLARforeach] = ACTIONS(1460), - [anon_sym_DOLLARalignof] = ACTIONS(1460), - [anon_sym_DOLLARextnameof] = ACTIONS(1460), - [anon_sym_DOLLARnameof] = ACTIONS(1460), - [anon_sym_DOLLARoffsetof] = ACTIONS(1460), - [anon_sym_DOLLARqnameof] = ACTIONS(1460), - [anon_sym_DOLLARvaconst] = ACTIONS(1460), - [anon_sym_DOLLARvaarg] = ACTIONS(1460), - [anon_sym_DOLLARvaref] = ACTIONS(1460), - [anon_sym_DOLLARvaexpr] = ACTIONS(1460), - [anon_sym_true] = ACTIONS(1460), - [anon_sym_false] = ACTIONS(1460), - [anon_sym_null] = ACTIONS(1460), - [anon_sym_DOLLARvacount] = ACTIONS(1460), - [anon_sym_DOLLARappend] = ACTIONS(1460), - [anon_sym_DOLLARconcat] = ACTIONS(1460), - [anon_sym_DOLLAReval] = ACTIONS(1460), - [anon_sym_DOLLARis_const] = ACTIONS(1460), - [anon_sym_DOLLARsizeof] = ACTIONS(1460), - [anon_sym_DOLLARstringify] = ACTIONS(1460), - [anon_sym_DOLLARand] = ACTIONS(1460), - [anon_sym_DOLLARdefined] = ACTIONS(1460), - [anon_sym_DOLLARembed] = ACTIONS(1460), - [anon_sym_DOLLARor] = ACTIONS(1460), - [anon_sym_DOLLARfeature] = ACTIONS(1460), - [anon_sym_DOLLARassignable] = ACTIONS(1460), - [anon_sym_BANG] = ACTIONS(1462), - [anon_sym_TILDE] = ACTIONS(1462), - [anon_sym_PLUS_PLUS] = ACTIONS(1462), - [anon_sym_DASH_DASH] = ACTIONS(1462), - [anon_sym_typeid] = ACTIONS(1460), - [anon_sym_LBRACE_PIPE] = ACTIONS(1462), - [anon_sym_PIPE_RBRACE] = ACTIONS(1462), - [anon_sym_void] = ACTIONS(1460), - [anon_sym_bool] = ACTIONS(1460), - [anon_sym_char] = ACTIONS(1460), - [anon_sym_ichar] = ACTIONS(1460), - [anon_sym_short] = ACTIONS(1460), - [anon_sym_ushort] = ACTIONS(1460), - [anon_sym_uint] = ACTIONS(1460), - [anon_sym_long] = ACTIONS(1460), - [anon_sym_ulong] = ACTIONS(1460), - [anon_sym_int128] = ACTIONS(1460), - [anon_sym_uint128] = ACTIONS(1460), - [anon_sym_float] = ACTIONS(1460), - [anon_sym_double] = ACTIONS(1460), - [anon_sym_float16] = ACTIONS(1460), - [anon_sym_bfloat16] = ACTIONS(1460), - [anon_sym_float128] = ACTIONS(1460), - [anon_sym_iptr] = ACTIONS(1460), - [anon_sym_uptr] = ACTIONS(1460), - [anon_sym_isz] = ACTIONS(1460), - [anon_sym_usz] = ACTIONS(1460), - [anon_sym_anyfault] = ACTIONS(1460), - [anon_sym_any] = ACTIONS(1460), - [anon_sym_DOLLARtypeof] = ACTIONS(1460), - [anon_sym_DOLLARtypefrom] = ACTIONS(1460), - [anon_sym_DOLLARvatype] = ACTIONS(1460), - [anon_sym_DOLLARevaltype] = ACTIONS(1460), - [sym_real_literal] = ACTIONS(1462), + [sym_ident] = ACTIONS(1437), + [sym_integer_literal] = ACTIONS(1439), + [anon_sym_SQUOTE] = ACTIONS(1439), + [anon_sym_DQUOTE] = ACTIONS(1439), + [anon_sym_BQUOTE] = ACTIONS(1439), + [sym_bytes_literal] = ACTIONS(1439), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1437), + [sym_at_ident] = ACTIONS(1439), + [sym_hash_ident] = ACTIONS(1439), + [sym_type_ident] = ACTIONS(1439), + [sym_ct_type_ident] = ACTIONS(1439), + [sym_const_ident] = ACTIONS(1437), + [sym_builtin] = ACTIONS(1439), + [anon_sym_LPAREN] = ACTIONS(1439), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_static] = ACTIONS(1437), + [anon_sym_tlocal] = ACTIONS(1437), + [anon_sym_SEMI] = ACTIONS(1439), + [anon_sym_fn] = ACTIONS(1437), + [anon_sym_LBRACE] = ACTIONS(1437), + [anon_sym_const] = ACTIONS(1437), + [anon_sym_var] = ACTIONS(1437), + [anon_sym_return] = ACTIONS(1437), + [anon_sym_continue] = ACTIONS(1437), + [anon_sym_break] = ACTIONS(1437), + [anon_sym_defer] = ACTIONS(1437), + [anon_sym_assert] = ACTIONS(1437), + [anon_sym_nextcase] = ACTIONS(1437), + [anon_sym_switch] = ACTIONS(1437), + [anon_sym_AMP_AMP] = ACTIONS(1439), + [anon_sym_if] = ACTIONS(1437), + [anon_sym_for] = ACTIONS(1437), + [anon_sym_foreach] = ACTIONS(1437), + [anon_sym_foreach_r] = ACTIONS(1437), + [anon_sym_while] = ACTIONS(1437), + [anon_sym_do] = ACTIONS(1437), + [anon_sym_int] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_STAR] = ACTIONS(1439), + [anon_sym_asm] = ACTIONS(1437), + [anon_sym_DOLLARassert] = ACTIONS(1437), + [anon_sym_DOLLARerror] = ACTIONS(1437), + [anon_sym_DOLLARecho] = ACTIONS(1437), + [anon_sym_DOLLARif] = ACTIONS(1437), + [anon_sym_DOLLARcase] = ACTIONS(1437), + [anon_sym_DOLLARdefault] = ACTIONS(1437), + [anon_sym_DOLLARswitch] = ACTIONS(1437), + [anon_sym_DOLLARendswitch] = ACTIONS(1437), + [anon_sym_DOLLARfor] = ACTIONS(1437), + [anon_sym_DOLLARforeach] = ACTIONS(1437), + [anon_sym_DOLLARalignof] = ACTIONS(1437), + [anon_sym_DOLLARextnameof] = ACTIONS(1437), + [anon_sym_DOLLARnameof] = ACTIONS(1437), + [anon_sym_DOLLARoffsetof] = ACTIONS(1437), + [anon_sym_DOLLARqnameof] = ACTIONS(1437), + [anon_sym_DOLLARvaconst] = ACTIONS(1437), + [anon_sym_DOLLARvaarg] = ACTIONS(1437), + [anon_sym_DOLLARvaref] = ACTIONS(1437), + [anon_sym_DOLLARvaexpr] = ACTIONS(1437), + [anon_sym_true] = ACTIONS(1437), + [anon_sym_false] = ACTIONS(1437), + [anon_sym_null] = ACTIONS(1437), + [anon_sym_DOLLARvacount] = ACTIONS(1437), + [anon_sym_DOLLARappend] = ACTIONS(1437), + [anon_sym_DOLLARconcat] = ACTIONS(1437), + [anon_sym_DOLLAReval] = ACTIONS(1437), + [anon_sym_DOLLARis_const] = ACTIONS(1437), + [anon_sym_DOLLARsizeof] = ACTIONS(1437), + [anon_sym_DOLLARstringify] = ACTIONS(1437), + [anon_sym_DOLLARand] = ACTIONS(1437), + [anon_sym_DOLLARdefined] = ACTIONS(1437), + [anon_sym_DOLLARembed] = ACTIONS(1437), + [anon_sym_DOLLARor] = ACTIONS(1437), + [anon_sym_DOLLARfeature] = ACTIONS(1437), + [anon_sym_DOLLARassignable] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1439), + [anon_sym_TILDE] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_typeid] = ACTIONS(1437), + [anon_sym_LBRACE_PIPE] = ACTIONS(1439), + [anon_sym_void] = ACTIONS(1437), + [anon_sym_bool] = ACTIONS(1437), + [anon_sym_char] = ACTIONS(1437), + [anon_sym_ichar] = ACTIONS(1437), + [anon_sym_short] = ACTIONS(1437), + [anon_sym_ushort] = ACTIONS(1437), + [anon_sym_uint] = ACTIONS(1437), + [anon_sym_long] = ACTIONS(1437), + [anon_sym_ulong] = ACTIONS(1437), + [anon_sym_int128] = ACTIONS(1437), + [anon_sym_uint128] = ACTIONS(1437), + [anon_sym_float] = ACTIONS(1437), + [anon_sym_double] = ACTIONS(1437), + [anon_sym_float16] = ACTIONS(1437), + [anon_sym_bfloat16] = ACTIONS(1437), + [anon_sym_float128] = ACTIONS(1437), + [anon_sym_iptr] = ACTIONS(1437), + [anon_sym_uptr] = ACTIONS(1437), + [anon_sym_isz] = ACTIONS(1437), + [anon_sym_usz] = ACTIONS(1437), + [anon_sym_anyfault] = ACTIONS(1437), + [anon_sym_any] = ACTIONS(1437), + [anon_sym_DOLLARtypeof] = ACTIONS(1437), + [anon_sym_DOLLARtypefrom] = ACTIONS(1437), + [anon_sym_DOLLARvatype] = ACTIONS(1437), + [anon_sym_DOLLARevaltype] = ACTIONS(1437), + [sym_real_literal] = ACTIONS(1439), }, [413] = { [sym_line_comment] = STATE(413), [sym_doc_comment] = STATE(413), [sym_block_comment] = STATE(413), - [sym_ident] = ACTIONS(1376), - [sym_integer_literal] = ACTIONS(1378), - [anon_sym_SQUOTE] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1378), - [anon_sym_BQUOTE] = ACTIONS(1378), - [sym_bytes_literal] = ACTIONS(1378), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1376), - [sym_at_ident] = ACTIONS(1378), - [sym_hash_ident] = ACTIONS(1378), - [sym_type_ident] = ACTIONS(1378), - [sym_ct_type_ident] = ACTIONS(1378), - [sym_const_ident] = ACTIONS(1376), - [sym_builtin] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_AMP] = ACTIONS(1376), - [anon_sym_static] = ACTIONS(1376), - [anon_sym_tlocal] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1378), - [anon_sym_fn] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_var] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_defer] = ACTIONS(1376), - [anon_sym_assert] = ACTIONS(1376), - [anon_sym_nextcase] = ACTIONS(1376), - [anon_sym_switch] = ACTIONS(1376), - [anon_sym_AMP_AMP] = ACTIONS(1378), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_else] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_foreach] = ACTIONS(1376), - [anon_sym_foreach_r] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_int] = ACTIONS(1376), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_asm] = ACTIONS(1376), - [anon_sym_DOLLARassert] = ACTIONS(1376), - [anon_sym_DOLLARerror] = ACTIONS(1376), - [anon_sym_DOLLARecho] = ACTIONS(1376), - [anon_sym_DOLLARif] = ACTIONS(1376), - [anon_sym_DOLLARcase] = ACTIONS(1376), - [anon_sym_DOLLARdefault] = ACTIONS(1376), - [anon_sym_DOLLARswitch] = ACTIONS(1376), - [anon_sym_DOLLARendswitch] = ACTIONS(1376), - [anon_sym_DOLLARfor] = ACTIONS(1376), - [anon_sym_DOLLARforeach] = ACTIONS(1376), - [anon_sym_DOLLARalignof] = ACTIONS(1376), - [anon_sym_DOLLARextnameof] = ACTIONS(1376), - [anon_sym_DOLLARnameof] = ACTIONS(1376), - [anon_sym_DOLLARoffsetof] = ACTIONS(1376), - [anon_sym_DOLLARqnameof] = ACTIONS(1376), - [anon_sym_DOLLARvaconst] = ACTIONS(1376), - [anon_sym_DOLLARvaarg] = ACTIONS(1376), - [anon_sym_DOLLARvaref] = ACTIONS(1376), - [anon_sym_DOLLARvaexpr] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_DOLLARvacount] = ACTIONS(1376), - [anon_sym_DOLLARappend] = ACTIONS(1376), - [anon_sym_DOLLARconcat] = ACTIONS(1376), - [anon_sym_DOLLAReval] = ACTIONS(1376), - [anon_sym_DOLLARis_const] = ACTIONS(1376), - [anon_sym_DOLLARsizeof] = ACTIONS(1376), - [anon_sym_DOLLARstringify] = ACTIONS(1376), - [anon_sym_DOLLARand] = ACTIONS(1376), - [anon_sym_DOLLARdefined] = ACTIONS(1376), - [anon_sym_DOLLARembed] = ACTIONS(1376), - [anon_sym_DOLLARor] = ACTIONS(1376), - [anon_sym_DOLLARfeature] = ACTIONS(1376), - [anon_sym_DOLLARassignable] = ACTIONS(1376), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_PLUS_PLUS] = ACTIONS(1378), - [anon_sym_DASH_DASH] = ACTIONS(1378), - [anon_sym_typeid] = ACTIONS(1376), - [anon_sym_LBRACE_PIPE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1376), - [anon_sym_bool] = ACTIONS(1376), - [anon_sym_char] = ACTIONS(1376), - [anon_sym_ichar] = ACTIONS(1376), - [anon_sym_short] = ACTIONS(1376), - [anon_sym_ushort] = ACTIONS(1376), - [anon_sym_uint] = ACTIONS(1376), - [anon_sym_long] = ACTIONS(1376), - [anon_sym_ulong] = ACTIONS(1376), - [anon_sym_int128] = ACTIONS(1376), - [anon_sym_uint128] = ACTIONS(1376), - [anon_sym_float] = ACTIONS(1376), - [anon_sym_double] = ACTIONS(1376), - [anon_sym_float16] = ACTIONS(1376), - [anon_sym_bfloat16] = ACTIONS(1376), - [anon_sym_float128] = ACTIONS(1376), - [anon_sym_iptr] = ACTIONS(1376), - [anon_sym_uptr] = ACTIONS(1376), - [anon_sym_isz] = ACTIONS(1376), - [anon_sym_usz] = ACTIONS(1376), - [anon_sym_anyfault] = ACTIONS(1376), - [anon_sym_any] = ACTIONS(1376), - [anon_sym_DOLLARtypeof] = ACTIONS(1376), - [anon_sym_DOLLARtypefrom] = ACTIONS(1376), - [anon_sym_DOLLARvatype] = ACTIONS(1376), - [anon_sym_DOLLARevaltype] = ACTIONS(1376), - [sym_real_literal] = ACTIONS(1378), + [sym_ident] = ACTIONS(1343), + [sym_integer_literal] = ACTIONS(1345), + [anon_sym_SQUOTE] = ACTIONS(1345), + [anon_sym_DQUOTE] = ACTIONS(1345), + [anon_sym_BQUOTE] = ACTIONS(1345), + [sym_bytes_literal] = ACTIONS(1345), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1343), + [sym_at_ident] = ACTIONS(1345), + [sym_hash_ident] = ACTIONS(1345), + [sym_type_ident] = ACTIONS(1345), + [sym_ct_type_ident] = ACTIONS(1345), + [sym_const_ident] = ACTIONS(1343), + [sym_builtin] = ACTIONS(1345), + [anon_sym_LPAREN] = ACTIONS(1345), + [anon_sym_AMP] = ACTIONS(1343), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_tlocal] = ACTIONS(1343), + [anon_sym_SEMI] = ACTIONS(1345), + [anon_sym_fn] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1343), + [anon_sym_const] = ACTIONS(1343), + [anon_sym_var] = ACTIONS(1343), + [anon_sym_return] = ACTIONS(1343), + [anon_sym_continue] = ACTIONS(1343), + [anon_sym_break] = ACTIONS(1343), + [anon_sym_defer] = ACTIONS(1343), + [anon_sym_assert] = ACTIONS(1343), + [anon_sym_nextcase] = ACTIONS(1343), + [anon_sym_switch] = ACTIONS(1343), + [anon_sym_AMP_AMP] = ACTIONS(1345), + [anon_sym_if] = ACTIONS(1343), + [anon_sym_for] = ACTIONS(1343), + [anon_sym_foreach] = ACTIONS(1343), + [anon_sym_foreach_r] = ACTIONS(1343), + [anon_sym_while] = ACTIONS(1343), + [anon_sym_do] = ACTIONS(1343), + [anon_sym_int] = ACTIONS(1343), + [anon_sym_PLUS] = ACTIONS(1343), + [anon_sym_DASH] = ACTIONS(1343), + [anon_sym_STAR] = ACTIONS(1345), + [anon_sym_asm] = ACTIONS(1343), + [anon_sym_DOLLARassert] = ACTIONS(1343), + [anon_sym_DOLLARerror] = ACTIONS(1343), + [anon_sym_DOLLARecho] = ACTIONS(1343), + [anon_sym_DOLLARif] = ACTIONS(1343), + [anon_sym_DOLLARcase] = ACTIONS(1343), + [anon_sym_DOLLARdefault] = ACTIONS(1343), + [anon_sym_DOLLARswitch] = ACTIONS(1343), + [anon_sym_DOLLARendswitch] = ACTIONS(1343), + [anon_sym_DOLLARfor] = ACTIONS(1343), + [anon_sym_DOLLARforeach] = ACTIONS(1343), + [anon_sym_DOLLARalignof] = ACTIONS(1343), + [anon_sym_DOLLARextnameof] = ACTIONS(1343), + [anon_sym_DOLLARnameof] = ACTIONS(1343), + [anon_sym_DOLLARoffsetof] = ACTIONS(1343), + [anon_sym_DOLLARqnameof] = ACTIONS(1343), + [anon_sym_DOLLARvaconst] = ACTIONS(1343), + [anon_sym_DOLLARvaarg] = ACTIONS(1343), + [anon_sym_DOLLARvaref] = ACTIONS(1343), + [anon_sym_DOLLARvaexpr] = ACTIONS(1343), + [anon_sym_true] = ACTIONS(1343), + [anon_sym_false] = ACTIONS(1343), + [anon_sym_null] = ACTIONS(1343), + [anon_sym_DOLLARvacount] = ACTIONS(1343), + [anon_sym_DOLLARappend] = ACTIONS(1343), + [anon_sym_DOLLARconcat] = ACTIONS(1343), + [anon_sym_DOLLAReval] = ACTIONS(1343), + [anon_sym_DOLLARis_const] = ACTIONS(1343), + [anon_sym_DOLLARsizeof] = ACTIONS(1343), + [anon_sym_DOLLARstringify] = ACTIONS(1343), + [anon_sym_DOLLARand] = ACTIONS(1343), + [anon_sym_DOLLARdefined] = ACTIONS(1343), + [anon_sym_DOLLARembed] = ACTIONS(1343), + [anon_sym_DOLLARor] = ACTIONS(1343), + [anon_sym_DOLLARfeature] = ACTIONS(1343), + [anon_sym_DOLLARassignable] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(1345), + [anon_sym_TILDE] = ACTIONS(1345), + [anon_sym_PLUS_PLUS] = ACTIONS(1345), + [anon_sym_DASH_DASH] = ACTIONS(1345), + [anon_sym_typeid] = ACTIONS(1343), + [anon_sym_LBRACE_PIPE] = ACTIONS(1345), + [anon_sym_void] = ACTIONS(1343), + [anon_sym_bool] = ACTIONS(1343), + [anon_sym_char] = ACTIONS(1343), + [anon_sym_ichar] = ACTIONS(1343), + [anon_sym_short] = ACTIONS(1343), + [anon_sym_ushort] = ACTIONS(1343), + [anon_sym_uint] = ACTIONS(1343), + [anon_sym_long] = ACTIONS(1343), + [anon_sym_ulong] = ACTIONS(1343), + [anon_sym_int128] = ACTIONS(1343), + [anon_sym_uint128] = ACTIONS(1343), + [anon_sym_float] = ACTIONS(1343), + [anon_sym_double] = ACTIONS(1343), + [anon_sym_float16] = ACTIONS(1343), + [anon_sym_bfloat16] = ACTIONS(1343), + [anon_sym_float128] = ACTIONS(1343), + [anon_sym_iptr] = ACTIONS(1343), + [anon_sym_uptr] = ACTIONS(1343), + [anon_sym_isz] = ACTIONS(1343), + [anon_sym_usz] = ACTIONS(1343), + [anon_sym_anyfault] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_DOLLARtypeof] = ACTIONS(1343), + [anon_sym_DOLLARtypefrom] = ACTIONS(1343), + [anon_sym_DOLLARvatype] = ACTIONS(1343), + [anon_sym_DOLLARevaltype] = ACTIONS(1343), + [sym_real_literal] = ACTIONS(1345), }, [414] = { [sym_line_comment] = STATE(414), [sym_doc_comment] = STATE(414), [sym_block_comment] = STATE(414), - [sym_ident] = ACTIONS(1464), - [sym_integer_literal] = ACTIONS(1466), - [anon_sym_SQUOTE] = ACTIONS(1466), - [anon_sym_DQUOTE] = ACTIONS(1466), - [anon_sym_BQUOTE] = ACTIONS(1466), - [sym_bytes_literal] = ACTIONS(1466), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1464), - [sym_at_ident] = ACTIONS(1466), - [sym_hash_ident] = ACTIONS(1466), - [sym_type_ident] = ACTIONS(1466), - [sym_ct_type_ident] = ACTIONS(1466), - [sym_const_ident] = ACTIONS(1464), - [sym_builtin] = ACTIONS(1466), - [anon_sym_LPAREN] = ACTIONS(1466), - [anon_sym_AMP] = ACTIONS(1464), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_tlocal] = ACTIONS(1464), - [anon_sym_SEMI] = ACTIONS(1466), - [anon_sym_fn] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1464), - [anon_sym_RBRACE] = ACTIONS(1466), - [anon_sym_const] = ACTIONS(1464), - [anon_sym_var] = ACTIONS(1464), - [anon_sym_return] = ACTIONS(1464), - [anon_sym_continue] = ACTIONS(1464), - [anon_sym_break] = ACTIONS(1464), - [anon_sym_defer] = ACTIONS(1464), - [anon_sym_assert] = ACTIONS(1464), - [anon_sym_case] = ACTIONS(1464), - [anon_sym_default] = ACTIONS(1464), - [anon_sym_nextcase] = ACTIONS(1464), - [anon_sym_switch] = ACTIONS(1464), - [anon_sym_AMP_AMP] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1464), - [anon_sym_for] = ACTIONS(1464), - [anon_sym_foreach] = ACTIONS(1464), - [anon_sym_foreach_r] = ACTIONS(1464), - [anon_sym_while] = ACTIONS(1464), - [anon_sym_do] = ACTIONS(1464), - [anon_sym_int] = ACTIONS(1464), - [anon_sym_PLUS] = ACTIONS(1464), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1466), - [anon_sym_asm] = ACTIONS(1464), - [anon_sym_DOLLARassert] = ACTIONS(1464), - [anon_sym_DOLLARerror] = ACTIONS(1464), - [anon_sym_DOLLARecho] = ACTIONS(1464), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_DOLLARswitch] = ACTIONS(1464), - [anon_sym_DOLLARfor] = ACTIONS(1464), - [anon_sym_DOLLARforeach] = ACTIONS(1464), - [anon_sym_DOLLARalignof] = ACTIONS(1464), - [anon_sym_DOLLARextnameof] = ACTIONS(1464), - [anon_sym_DOLLARnameof] = ACTIONS(1464), - [anon_sym_DOLLARoffsetof] = ACTIONS(1464), - [anon_sym_DOLLARqnameof] = ACTIONS(1464), - [anon_sym_DOLLARvaconst] = ACTIONS(1464), - [anon_sym_DOLLARvaarg] = ACTIONS(1464), - [anon_sym_DOLLARvaref] = ACTIONS(1464), - [anon_sym_DOLLARvaexpr] = ACTIONS(1464), - [anon_sym_true] = ACTIONS(1464), - [anon_sym_false] = ACTIONS(1464), - [anon_sym_null] = ACTIONS(1464), - [anon_sym_DOLLARvacount] = ACTIONS(1464), - [anon_sym_DOLLARappend] = ACTIONS(1464), - [anon_sym_DOLLARconcat] = ACTIONS(1464), - [anon_sym_DOLLAReval] = ACTIONS(1464), - [anon_sym_DOLLARis_const] = ACTIONS(1464), - [anon_sym_DOLLARsizeof] = ACTIONS(1464), - [anon_sym_DOLLARstringify] = ACTIONS(1464), - [anon_sym_DOLLARand] = ACTIONS(1464), - [anon_sym_DOLLARdefined] = ACTIONS(1464), - [anon_sym_DOLLARembed] = ACTIONS(1464), - [anon_sym_DOLLARor] = ACTIONS(1464), - [anon_sym_DOLLARfeature] = ACTIONS(1464), - [anon_sym_DOLLARassignable] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_TILDE] = ACTIONS(1466), - [anon_sym_PLUS_PLUS] = ACTIONS(1466), - [anon_sym_DASH_DASH] = ACTIONS(1466), - [anon_sym_typeid] = ACTIONS(1464), - [anon_sym_LBRACE_PIPE] = ACTIONS(1466), - [anon_sym_PIPE_RBRACE] = ACTIONS(1466), - [anon_sym_void] = ACTIONS(1464), - [anon_sym_bool] = ACTIONS(1464), - [anon_sym_char] = ACTIONS(1464), - [anon_sym_ichar] = ACTIONS(1464), - [anon_sym_short] = ACTIONS(1464), - [anon_sym_ushort] = ACTIONS(1464), - [anon_sym_uint] = ACTIONS(1464), - [anon_sym_long] = ACTIONS(1464), - [anon_sym_ulong] = ACTIONS(1464), - [anon_sym_int128] = ACTIONS(1464), - [anon_sym_uint128] = ACTIONS(1464), - [anon_sym_float] = ACTIONS(1464), - [anon_sym_double] = ACTIONS(1464), - [anon_sym_float16] = ACTIONS(1464), - [anon_sym_bfloat16] = ACTIONS(1464), - [anon_sym_float128] = ACTIONS(1464), - [anon_sym_iptr] = ACTIONS(1464), - [anon_sym_uptr] = ACTIONS(1464), - [anon_sym_isz] = ACTIONS(1464), - [anon_sym_usz] = ACTIONS(1464), - [anon_sym_anyfault] = ACTIONS(1464), - [anon_sym_any] = ACTIONS(1464), - [anon_sym_DOLLARtypeof] = ACTIONS(1464), - [anon_sym_DOLLARtypefrom] = ACTIONS(1464), - [anon_sym_DOLLARvatype] = ACTIONS(1464), - [anon_sym_DOLLARevaltype] = ACTIONS(1464), - [sym_real_literal] = ACTIONS(1466), + [sym_ident] = ACTIONS(1461), + [sym_integer_literal] = ACTIONS(1463), + [anon_sym_SQUOTE] = ACTIONS(1463), + [anon_sym_DQUOTE] = ACTIONS(1463), + [anon_sym_BQUOTE] = ACTIONS(1463), + [sym_bytes_literal] = ACTIONS(1463), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1461), + [sym_at_ident] = ACTIONS(1463), + [sym_hash_ident] = ACTIONS(1463), + [sym_type_ident] = ACTIONS(1463), + [sym_ct_type_ident] = ACTIONS(1463), + [sym_const_ident] = ACTIONS(1461), + [sym_builtin] = ACTIONS(1463), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_static] = ACTIONS(1461), + [anon_sym_tlocal] = ACTIONS(1461), + [anon_sym_SEMI] = ACTIONS(1463), + [anon_sym_fn] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_const] = ACTIONS(1461), + [anon_sym_var] = ACTIONS(1461), + [anon_sym_return] = ACTIONS(1461), + [anon_sym_continue] = ACTIONS(1461), + [anon_sym_break] = ACTIONS(1461), + [anon_sym_defer] = ACTIONS(1461), + [anon_sym_assert] = ACTIONS(1461), + [anon_sym_nextcase] = ACTIONS(1461), + [anon_sym_switch] = ACTIONS(1461), + [anon_sym_AMP_AMP] = ACTIONS(1463), + [anon_sym_if] = ACTIONS(1461), + [anon_sym_for] = ACTIONS(1461), + [anon_sym_foreach] = ACTIONS(1461), + [anon_sym_foreach_r] = ACTIONS(1461), + [anon_sym_while] = ACTIONS(1461), + [anon_sym_do] = ACTIONS(1461), + [anon_sym_int] = ACTIONS(1461), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_STAR] = ACTIONS(1463), + [anon_sym_asm] = ACTIONS(1461), + [anon_sym_DOLLARassert] = ACTIONS(1461), + [anon_sym_DOLLARerror] = ACTIONS(1461), + [anon_sym_DOLLARecho] = ACTIONS(1461), + [anon_sym_DOLLARif] = ACTIONS(1461), + [anon_sym_DOLLARcase] = ACTIONS(1461), + [anon_sym_DOLLARdefault] = ACTIONS(1461), + [anon_sym_DOLLARswitch] = ACTIONS(1461), + [anon_sym_DOLLARendswitch] = ACTIONS(1461), + [anon_sym_DOLLARfor] = ACTIONS(1461), + [anon_sym_DOLLARforeach] = ACTIONS(1461), + [anon_sym_DOLLARalignof] = ACTIONS(1461), + [anon_sym_DOLLARextnameof] = ACTIONS(1461), + [anon_sym_DOLLARnameof] = ACTIONS(1461), + [anon_sym_DOLLARoffsetof] = ACTIONS(1461), + [anon_sym_DOLLARqnameof] = ACTIONS(1461), + [anon_sym_DOLLARvaconst] = ACTIONS(1461), + [anon_sym_DOLLARvaarg] = ACTIONS(1461), + [anon_sym_DOLLARvaref] = ACTIONS(1461), + [anon_sym_DOLLARvaexpr] = ACTIONS(1461), + [anon_sym_true] = ACTIONS(1461), + [anon_sym_false] = ACTIONS(1461), + [anon_sym_null] = ACTIONS(1461), + [anon_sym_DOLLARvacount] = ACTIONS(1461), + [anon_sym_DOLLARappend] = ACTIONS(1461), + [anon_sym_DOLLARconcat] = ACTIONS(1461), + [anon_sym_DOLLAReval] = ACTIONS(1461), + [anon_sym_DOLLARis_const] = ACTIONS(1461), + [anon_sym_DOLLARsizeof] = ACTIONS(1461), + [anon_sym_DOLLARstringify] = ACTIONS(1461), + [anon_sym_DOLLARand] = ACTIONS(1461), + [anon_sym_DOLLARdefined] = ACTIONS(1461), + [anon_sym_DOLLARembed] = ACTIONS(1461), + [anon_sym_DOLLARor] = ACTIONS(1461), + [anon_sym_DOLLARfeature] = ACTIONS(1461), + [anon_sym_DOLLARassignable] = ACTIONS(1461), + [anon_sym_BANG] = ACTIONS(1463), + [anon_sym_TILDE] = ACTIONS(1463), + [anon_sym_PLUS_PLUS] = ACTIONS(1463), + [anon_sym_DASH_DASH] = ACTIONS(1463), + [anon_sym_typeid] = ACTIONS(1461), + [anon_sym_LBRACE_PIPE] = ACTIONS(1463), + [anon_sym_void] = ACTIONS(1461), + [anon_sym_bool] = ACTIONS(1461), + [anon_sym_char] = ACTIONS(1461), + [anon_sym_ichar] = ACTIONS(1461), + [anon_sym_short] = ACTIONS(1461), + [anon_sym_ushort] = ACTIONS(1461), + [anon_sym_uint] = ACTIONS(1461), + [anon_sym_long] = ACTIONS(1461), + [anon_sym_ulong] = ACTIONS(1461), + [anon_sym_int128] = ACTIONS(1461), + [anon_sym_uint128] = ACTIONS(1461), + [anon_sym_float] = ACTIONS(1461), + [anon_sym_double] = ACTIONS(1461), + [anon_sym_float16] = ACTIONS(1461), + [anon_sym_bfloat16] = ACTIONS(1461), + [anon_sym_float128] = ACTIONS(1461), + [anon_sym_iptr] = ACTIONS(1461), + [anon_sym_uptr] = ACTIONS(1461), + [anon_sym_isz] = ACTIONS(1461), + [anon_sym_usz] = ACTIONS(1461), + [anon_sym_anyfault] = ACTIONS(1461), + [anon_sym_any] = ACTIONS(1461), + [anon_sym_DOLLARtypeof] = ACTIONS(1461), + [anon_sym_DOLLARtypefrom] = ACTIONS(1461), + [anon_sym_DOLLARvatype] = ACTIONS(1461), + [anon_sym_DOLLARevaltype] = ACTIONS(1461), + [sym_real_literal] = ACTIONS(1463), }, [415] = { [sym_line_comment] = STATE(415), [sym_doc_comment] = STATE(415), [sym_block_comment] = STATE(415), - [sym_ident] = ACTIONS(1468), - [sym_integer_literal] = ACTIONS(1470), - [anon_sym_SQUOTE] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [anon_sym_BQUOTE] = ACTIONS(1470), - [sym_bytes_literal] = ACTIONS(1470), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1468), - [sym_at_ident] = ACTIONS(1470), - [sym_hash_ident] = ACTIONS(1470), - [sym_type_ident] = ACTIONS(1470), - [sym_ct_type_ident] = ACTIONS(1470), - [sym_const_ident] = ACTIONS(1468), - [sym_builtin] = ACTIONS(1470), - [anon_sym_LPAREN] = ACTIONS(1470), - [anon_sym_AMP] = ACTIONS(1468), - [anon_sym_static] = ACTIONS(1468), - [anon_sym_tlocal] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1470), - [anon_sym_fn] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1468), - [anon_sym_RBRACE] = ACTIONS(1470), - [anon_sym_const] = ACTIONS(1468), - [anon_sym_var] = ACTIONS(1468), - [anon_sym_return] = ACTIONS(1468), - [anon_sym_continue] = ACTIONS(1468), - [anon_sym_break] = ACTIONS(1468), - [anon_sym_defer] = ACTIONS(1468), - [anon_sym_assert] = ACTIONS(1468), - [anon_sym_case] = ACTIONS(1468), - [anon_sym_default] = ACTIONS(1468), - [anon_sym_nextcase] = ACTIONS(1468), - [anon_sym_switch] = ACTIONS(1468), - [anon_sym_AMP_AMP] = ACTIONS(1470), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_for] = ACTIONS(1468), - [anon_sym_foreach] = ACTIONS(1468), - [anon_sym_foreach_r] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1468), - [anon_sym_do] = ACTIONS(1468), - [anon_sym_int] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1468), - [anon_sym_DASH] = ACTIONS(1468), - [anon_sym_STAR] = ACTIONS(1470), - [anon_sym_asm] = ACTIONS(1468), - [anon_sym_DOLLARassert] = ACTIONS(1468), - [anon_sym_DOLLARerror] = ACTIONS(1468), - [anon_sym_DOLLARecho] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1468), - [anon_sym_DOLLARswitch] = ACTIONS(1468), - [anon_sym_DOLLARfor] = ACTIONS(1468), - [anon_sym_DOLLARforeach] = ACTIONS(1468), - [anon_sym_DOLLARalignof] = ACTIONS(1468), - [anon_sym_DOLLARextnameof] = ACTIONS(1468), - [anon_sym_DOLLARnameof] = ACTIONS(1468), - [anon_sym_DOLLARoffsetof] = ACTIONS(1468), - [anon_sym_DOLLARqnameof] = ACTIONS(1468), - [anon_sym_DOLLARvaconst] = ACTIONS(1468), - [anon_sym_DOLLARvaarg] = ACTIONS(1468), - [anon_sym_DOLLARvaref] = ACTIONS(1468), - [anon_sym_DOLLARvaexpr] = ACTIONS(1468), - [anon_sym_true] = ACTIONS(1468), - [anon_sym_false] = ACTIONS(1468), - [anon_sym_null] = ACTIONS(1468), - [anon_sym_DOLLARvacount] = ACTIONS(1468), - [anon_sym_DOLLARappend] = ACTIONS(1468), - [anon_sym_DOLLARconcat] = ACTIONS(1468), - [anon_sym_DOLLAReval] = ACTIONS(1468), - [anon_sym_DOLLARis_const] = ACTIONS(1468), - [anon_sym_DOLLARsizeof] = ACTIONS(1468), - [anon_sym_DOLLARstringify] = ACTIONS(1468), - [anon_sym_DOLLARand] = ACTIONS(1468), - [anon_sym_DOLLARdefined] = ACTIONS(1468), - [anon_sym_DOLLARembed] = ACTIONS(1468), - [anon_sym_DOLLARor] = ACTIONS(1468), - [anon_sym_DOLLARfeature] = ACTIONS(1468), - [anon_sym_DOLLARassignable] = ACTIONS(1468), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1470), - [anon_sym_DASH_DASH] = ACTIONS(1470), - [anon_sym_typeid] = ACTIONS(1468), - [anon_sym_LBRACE_PIPE] = ACTIONS(1470), - [anon_sym_PIPE_RBRACE] = ACTIONS(1470), - [anon_sym_void] = ACTIONS(1468), - [anon_sym_bool] = ACTIONS(1468), - [anon_sym_char] = ACTIONS(1468), - [anon_sym_ichar] = ACTIONS(1468), - [anon_sym_short] = ACTIONS(1468), - [anon_sym_ushort] = ACTIONS(1468), - [anon_sym_uint] = ACTIONS(1468), - [anon_sym_long] = ACTIONS(1468), - [anon_sym_ulong] = ACTIONS(1468), - [anon_sym_int128] = ACTIONS(1468), - [anon_sym_uint128] = ACTIONS(1468), - [anon_sym_float] = ACTIONS(1468), - [anon_sym_double] = ACTIONS(1468), - [anon_sym_float16] = ACTIONS(1468), - [anon_sym_bfloat16] = ACTIONS(1468), - [anon_sym_float128] = ACTIONS(1468), - [anon_sym_iptr] = ACTIONS(1468), - [anon_sym_uptr] = ACTIONS(1468), - [anon_sym_isz] = ACTIONS(1468), - [anon_sym_usz] = ACTIONS(1468), - [anon_sym_anyfault] = ACTIONS(1468), - [anon_sym_any] = ACTIONS(1468), - [anon_sym_DOLLARtypeof] = ACTIONS(1468), - [anon_sym_DOLLARtypefrom] = ACTIONS(1468), - [anon_sym_DOLLARvatype] = ACTIONS(1468), - [anon_sym_DOLLARevaltype] = ACTIONS(1468), - [sym_real_literal] = ACTIONS(1470), + [sym_ident] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1447), + [anon_sym_SQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [anon_sym_BQUOTE] = ACTIONS(1447), + [sym_bytes_literal] = ACTIONS(1447), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1445), + [sym_at_ident] = ACTIONS(1447), + [sym_hash_ident] = ACTIONS(1447), + [sym_type_ident] = ACTIONS(1447), + [sym_ct_type_ident] = ACTIONS(1447), + [sym_const_ident] = ACTIONS(1445), + [sym_builtin] = ACTIONS(1447), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_AMP] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_tlocal] = ACTIONS(1445), + [anon_sym_SEMI] = ACTIONS(1447), + [anon_sym_fn] = ACTIONS(1445), + [anon_sym_LBRACE] = ACTIONS(1445), + [anon_sym_const] = ACTIONS(1445), + [anon_sym_var] = ACTIONS(1445), + [anon_sym_return] = ACTIONS(1445), + [anon_sym_continue] = ACTIONS(1445), + [anon_sym_break] = ACTIONS(1445), + [anon_sym_defer] = ACTIONS(1445), + [anon_sym_assert] = ACTIONS(1445), + [anon_sym_nextcase] = ACTIONS(1445), + [anon_sym_switch] = ACTIONS(1445), + [anon_sym_AMP_AMP] = ACTIONS(1447), + [anon_sym_if] = ACTIONS(1445), + [anon_sym_for] = ACTIONS(1445), + [anon_sym_foreach] = ACTIONS(1445), + [anon_sym_foreach_r] = ACTIONS(1445), + [anon_sym_while] = ACTIONS(1445), + [anon_sym_do] = ACTIONS(1445), + [anon_sym_int] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_STAR] = ACTIONS(1447), + [anon_sym_asm] = ACTIONS(1445), + [anon_sym_DOLLARassert] = ACTIONS(1445), + [anon_sym_DOLLARerror] = ACTIONS(1445), + [anon_sym_DOLLARecho] = ACTIONS(1445), + [anon_sym_DOLLARif] = ACTIONS(1445), + [anon_sym_DOLLARcase] = ACTIONS(1445), + [anon_sym_DOLLARdefault] = ACTIONS(1445), + [anon_sym_DOLLARswitch] = ACTIONS(1445), + [anon_sym_DOLLARendswitch] = ACTIONS(1445), + [anon_sym_DOLLARfor] = ACTIONS(1445), + [anon_sym_DOLLARforeach] = ACTIONS(1445), + [anon_sym_DOLLARalignof] = ACTIONS(1445), + [anon_sym_DOLLARextnameof] = ACTIONS(1445), + [anon_sym_DOLLARnameof] = ACTIONS(1445), + [anon_sym_DOLLARoffsetof] = ACTIONS(1445), + [anon_sym_DOLLARqnameof] = ACTIONS(1445), + [anon_sym_DOLLARvaconst] = ACTIONS(1445), + [anon_sym_DOLLARvaarg] = ACTIONS(1445), + [anon_sym_DOLLARvaref] = ACTIONS(1445), + [anon_sym_DOLLARvaexpr] = ACTIONS(1445), + [anon_sym_true] = ACTIONS(1445), + [anon_sym_false] = ACTIONS(1445), + [anon_sym_null] = ACTIONS(1445), + [anon_sym_DOLLARvacount] = ACTIONS(1445), + [anon_sym_DOLLARappend] = ACTIONS(1445), + [anon_sym_DOLLARconcat] = ACTIONS(1445), + [anon_sym_DOLLAReval] = ACTIONS(1445), + [anon_sym_DOLLARis_const] = ACTIONS(1445), + [anon_sym_DOLLARsizeof] = ACTIONS(1445), + [anon_sym_DOLLARstringify] = ACTIONS(1445), + [anon_sym_DOLLARand] = ACTIONS(1445), + [anon_sym_DOLLARdefined] = ACTIONS(1445), + [anon_sym_DOLLARembed] = ACTIONS(1445), + [anon_sym_DOLLARor] = ACTIONS(1445), + [anon_sym_DOLLARfeature] = ACTIONS(1445), + [anon_sym_DOLLARassignable] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(1447), + [anon_sym_TILDE] = ACTIONS(1447), + [anon_sym_PLUS_PLUS] = ACTIONS(1447), + [anon_sym_DASH_DASH] = ACTIONS(1447), + [anon_sym_typeid] = ACTIONS(1445), + [anon_sym_LBRACE_PIPE] = ACTIONS(1447), + [anon_sym_void] = ACTIONS(1445), + [anon_sym_bool] = ACTIONS(1445), + [anon_sym_char] = ACTIONS(1445), + [anon_sym_ichar] = ACTIONS(1445), + [anon_sym_short] = ACTIONS(1445), + [anon_sym_ushort] = ACTIONS(1445), + [anon_sym_uint] = ACTIONS(1445), + [anon_sym_long] = ACTIONS(1445), + [anon_sym_ulong] = ACTIONS(1445), + [anon_sym_int128] = ACTIONS(1445), + [anon_sym_uint128] = ACTIONS(1445), + [anon_sym_float] = ACTIONS(1445), + [anon_sym_double] = ACTIONS(1445), + [anon_sym_float16] = ACTIONS(1445), + [anon_sym_bfloat16] = ACTIONS(1445), + [anon_sym_float128] = ACTIONS(1445), + [anon_sym_iptr] = ACTIONS(1445), + [anon_sym_uptr] = ACTIONS(1445), + [anon_sym_isz] = ACTIONS(1445), + [anon_sym_usz] = ACTIONS(1445), + [anon_sym_anyfault] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_DOLLARtypeof] = ACTIONS(1445), + [anon_sym_DOLLARtypefrom] = ACTIONS(1445), + [anon_sym_DOLLARvatype] = ACTIONS(1445), + [anon_sym_DOLLARevaltype] = ACTIONS(1445), + [sym_real_literal] = ACTIONS(1447), }, [416] = { [sym_line_comment] = STATE(416), [sym_doc_comment] = STATE(416), [sym_block_comment] = STATE(416), - [sym_ident] = ACTIONS(1472), - [sym_integer_literal] = ACTIONS(1474), - [anon_sym_SQUOTE] = ACTIONS(1474), - [anon_sym_DQUOTE] = ACTIONS(1474), - [anon_sym_BQUOTE] = ACTIONS(1474), - [sym_bytes_literal] = ACTIONS(1474), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1472), - [sym_at_ident] = ACTIONS(1474), - [sym_hash_ident] = ACTIONS(1474), - [sym_type_ident] = ACTIONS(1474), - [sym_ct_type_ident] = ACTIONS(1474), - [sym_const_ident] = ACTIONS(1472), - [sym_builtin] = ACTIONS(1474), - [anon_sym_LPAREN] = ACTIONS(1474), - [anon_sym_AMP] = ACTIONS(1472), - [anon_sym_static] = ACTIONS(1472), - [anon_sym_tlocal] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1474), - [anon_sym_fn] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1472), - [anon_sym_RBRACE] = ACTIONS(1474), - [anon_sym_const] = ACTIONS(1472), - [anon_sym_var] = ACTIONS(1472), - [anon_sym_return] = ACTIONS(1472), - [anon_sym_continue] = ACTIONS(1472), - [anon_sym_break] = ACTIONS(1472), - [anon_sym_defer] = ACTIONS(1472), - [anon_sym_assert] = ACTIONS(1472), - [anon_sym_case] = ACTIONS(1472), - [anon_sym_default] = ACTIONS(1472), - [anon_sym_nextcase] = ACTIONS(1472), - [anon_sym_switch] = ACTIONS(1472), - [anon_sym_AMP_AMP] = ACTIONS(1474), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_for] = ACTIONS(1472), - [anon_sym_foreach] = ACTIONS(1472), - [anon_sym_foreach_r] = ACTIONS(1472), - [anon_sym_while] = ACTIONS(1472), - [anon_sym_do] = ACTIONS(1472), - [anon_sym_int] = ACTIONS(1472), - [anon_sym_PLUS] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1472), - [anon_sym_STAR] = ACTIONS(1474), - [anon_sym_asm] = ACTIONS(1472), - [anon_sym_DOLLARassert] = ACTIONS(1472), - [anon_sym_DOLLARerror] = ACTIONS(1472), - [anon_sym_DOLLARecho] = ACTIONS(1472), - [anon_sym_DOLLARif] = ACTIONS(1472), - [anon_sym_DOLLARswitch] = ACTIONS(1472), - [anon_sym_DOLLARfor] = ACTIONS(1472), - [anon_sym_DOLLARforeach] = ACTIONS(1472), - [anon_sym_DOLLARalignof] = ACTIONS(1472), - [anon_sym_DOLLARextnameof] = ACTIONS(1472), - [anon_sym_DOLLARnameof] = ACTIONS(1472), - [anon_sym_DOLLARoffsetof] = ACTIONS(1472), - [anon_sym_DOLLARqnameof] = ACTIONS(1472), - [anon_sym_DOLLARvaconst] = ACTIONS(1472), - [anon_sym_DOLLARvaarg] = ACTIONS(1472), - [anon_sym_DOLLARvaref] = ACTIONS(1472), - [anon_sym_DOLLARvaexpr] = ACTIONS(1472), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_null] = ACTIONS(1472), - [anon_sym_DOLLARvacount] = ACTIONS(1472), - [anon_sym_DOLLARappend] = ACTIONS(1472), - [anon_sym_DOLLARconcat] = ACTIONS(1472), - [anon_sym_DOLLAReval] = ACTIONS(1472), - [anon_sym_DOLLARis_const] = ACTIONS(1472), - [anon_sym_DOLLARsizeof] = ACTIONS(1472), - [anon_sym_DOLLARstringify] = ACTIONS(1472), - [anon_sym_DOLLARand] = ACTIONS(1472), - [anon_sym_DOLLARdefined] = ACTIONS(1472), - [anon_sym_DOLLARembed] = ACTIONS(1472), - [anon_sym_DOLLARor] = ACTIONS(1472), - [anon_sym_DOLLARfeature] = ACTIONS(1472), - [anon_sym_DOLLARassignable] = ACTIONS(1472), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_TILDE] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1474), - [anon_sym_DASH_DASH] = ACTIONS(1474), - [anon_sym_typeid] = ACTIONS(1472), - [anon_sym_LBRACE_PIPE] = ACTIONS(1474), - [anon_sym_PIPE_RBRACE] = ACTIONS(1474), - [anon_sym_void] = ACTIONS(1472), - [anon_sym_bool] = ACTIONS(1472), - [anon_sym_char] = ACTIONS(1472), - [anon_sym_ichar] = ACTIONS(1472), - [anon_sym_short] = ACTIONS(1472), - [anon_sym_ushort] = ACTIONS(1472), - [anon_sym_uint] = ACTIONS(1472), - [anon_sym_long] = ACTIONS(1472), - [anon_sym_ulong] = ACTIONS(1472), - [anon_sym_int128] = ACTIONS(1472), - [anon_sym_uint128] = ACTIONS(1472), - [anon_sym_float] = ACTIONS(1472), - [anon_sym_double] = ACTIONS(1472), - [anon_sym_float16] = ACTIONS(1472), - [anon_sym_bfloat16] = ACTIONS(1472), - [anon_sym_float128] = ACTIONS(1472), - [anon_sym_iptr] = ACTIONS(1472), - [anon_sym_uptr] = ACTIONS(1472), - [anon_sym_isz] = ACTIONS(1472), - [anon_sym_usz] = ACTIONS(1472), - [anon_sym_anyfault] = ACTIONS(1472), - [anon_sym_any] = ACTIONS(1472), - [anon_sym_DOLLARtypeof] = ACTIONS(1472), - [anon_sym_DOLLARtypefrom] = ACTIONS(1472), - [anon_sym_DOLLARvatype] = ACTIONS(1472), - [anon_sym_DOLLARevaltype] = ACTIONS(1472), - [sym_real_literal] = ACTIONS(1474), + [sym_ident] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1421), + [anon_sym_SQUOTE] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1421), + [anon_sym_BQUOTE] = ACTIONS(1421), + [sym_bytes_literal] = ACTIONS(1421), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1419), + [sym_at_ident] = ACTIONS(1421), + [sym_hash_ident] = ACTIONS(1421), + [sym_type_ident] = ACTIONS(1421), + [sym_ct_type_ident] = ACTIONS(1421), + [sym_const_ident] = ACTIONS(1419), + [sym_builtin] = ACTIONS(1421), + [anon_sym_LPAREN] = ACTIONS(1421), + [anon_sym_AMP] = ACTIONS(1419), + [anon_sym_static] = ACTIONS(1419), + [anon_sym_tlocal] = ACTIONS(1419), + [anon_sym_SEMI] = ACTIONS(1421), + [anon_sym_fn] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(1419), + [anon_sym_const] = ACTIONS(1419), + [anon_sym_var] = ACTIONS(1419), + [anon_sym_return] = ACTIONS(1419), + [anon_sym_continue] = ACTIONS(1419), + [anon_sym_break] = ACTIONS(1419), + [anon_sym_defer] = ACTIONS(1419), + [anon_sym_assert] = ACTIONS(1419), + [anon_sym_nextcase] = ACTIONS(1419), + [anon_sym_switch] = ACTIONS(1419), + [anon_sym_AMP_AMP] = ACTIONS(1421), + [anon_sym_if] = ACTIONS(1419), + [anon_sym_for] = ACTIONS(1419), + [anon_sym_foreach] = ACTIONS(1419), + [anon_sym_foreach_r] = ACTIONS(1419), + [anon_sym_while] = ACTIONS(1419), + [anon_sym_do] = ACTIONS(1419), + [anon_sym_int] = ACTIONS(1419), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_DASH] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1421), + [anon_sym_asm] = ACTIONS(1419), + [anon_sym_DOLLARassert] = ACTIONS(1419), + [anon_sym_DOLLARerror] = ACTIONS(1419), + [anon_sym_DOLLARecho] = ACTIONS(1419), + [anon_sym_DOLLARif] = ACTIONS(1419), + [anon_sym_DOLLARcase] = ACTIONS(1419), + [anon_sym_DOLLARdefault] = ACTIONS(1419), + [anon_sym_DOLLARswitch] = ACTIONS(1419), + [anon_sym_DOLLARendswitch] = ACTIONS(1419), + [anon_sym_DOLLARfor] = ACTIONS(1419), + [anon_sym_DOLLARforeach] = ACTIONS(1419), + [anon_sym_DOLLARalignof] = ACTIONS(1419), + [anon_sym_DOLLARextnameof] = ACTIONS(1419), + [anon_sym_DOLLARnameof] = ACTIONS(1419), + [anon_sym_DOLLARoffsetof] = ACTIONS(1419), + [anon_sym_DOLLARqnameof] = ACTIONS(1419), + [anon_sym_DOLLARvaconst] = ACTIONS(1419), + [anon_sym_DOLLARvaarg] = ACTIONS(1419), + [anon_sym_DOLLARvaref] = ACTIONS(1419), + [anon_sym_DOLLARvaexpr] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1419), + [anon_sym_false] = ACTIONS(1419), + [anon_sym_null] = ACTIONS(1419), + [anon_sym_DOLLARvacount] = ACTIONS(1419), + [anon_sym_DOLLARappend] = ACTIONS(1419), + [anon_sym_DOLLARconcat] = ACTIONS(1419), + [anon_sym_DOLLAReval] = ACTIONS(1419), + [anon_sym_DOLLARis_const] = ACTIONS(1419), + [anon_sym_DOLLARsizeof] = ACTIONS(1419), + [anon_sym_DOLLARstringify] = ACTIONS(1419), + [anon_sym_DOLLARand] = ACTIONS(1419), + [anon_sym_DOLLARdefined] = ACTIONS(1419), + [anon_sym_DOLLARembed] = ACTIONS(1419), + [anon_sym_DOLLARor] = ACTIONS(1419), + [anon_sym_DOLLARfeature] = ACTIONS(1419), + [anon_sym_DOLLARassignable] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_PLUS_PLUS] = ACTIONS(1421), + [anon_sym_DASH_DASH] = ACTIONS(1421), + [anon_sym_typeid] = ACTIONS(1419), + [anon_sym_LBRACE_PIPE] = ACTIONS(1421), + [anon_sym_void] = ACTIONS(1419), + [anon_sym_bool] = ACTIONS(1419), + [anon_sym_char] = ACTIONS(1419), + [anon_sym_ichar] = ACTIONS(1419), + [anon_sym_short] = ACTIONS(1419), + [anon_sym_ushort] = ACTIONS(1419), + [anon_sym_uint] = ACTIONS(1419), + [anon_sym_long] = ACTIONS(1419), + [anon_sym_ulong] = ACTIONS(1419), + [anon_sym_int128] = ACTIONS(1419), + [anon_sym_uint128] = ACTIONS(1419), + [anon_sym_float] = ACTIONS(1419), + [anon_sym_double] = ACTIONS(1419), + [anon_sym_float16] = ACTIONS(1419), + [anon_sym_bfloat16] = ACTIONS(1419), + [anon_sym_float128] = ACTIONS(1419), + [anon_sym_iptr] = ACTIONS(1419), + [anon_sym_uptr] = ACTIONS(1419), + [anon_sym_isz] = ACTIONS(1419), + [anon_sym_usz] = ACTIONS(1419), + [anon_sym_anyfault] = ACTIONS(1419), + [anon_sym_any] = ACTIONS(1419), + [anon_sym_DOLLARtypeof] = ACTIONS(1419), + [anon_sym_DOLLARtypefrom] = ACTIONS(1419), + [anon_sym_DOLLARvatype] = ACTIONS(1419), + [anon_sym_DOLLARevaltype] = ACTIONS(1419), + [sym_real_literal] = ACTIONS(1421), }, [417] = { [sym_line_comment] = STATE(417), [sym_doc_comment] = STATE(417), [sym_block_comment] = STATE(417), - [sym_ident] = ACTIONS(1476), - [sym_integer_literal] = ACTIONS(1478), - [anon_sym_SQUOTE] = ACTIONS(1478), - [anon_sym_DQUOTE] = ACTIONS(1478), - [anon_sym_BQUOTE] = ACTIONS(1478), - [sym_bytes_literal] = ACTIONS(1478), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1476), - [sym_at_ident] = ACTIONS(1478), - [sym_hash_ident] = ACTIONS(1478), - [sym_type_ident] = ACTIONS(1478), - [sym_ct_type_ident] = ACTIONS(1478), - [sym_const_ident] = ACTIONS(1476), - [sym_builtin] = ACTIONS(1478), - [anon_sym_LPAREN] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_static] = ACTIONS(1476), - [anon_sym_tlocal] = ACTIONS(1476), - [anon_sym_SEMI] = ACTIONS(1478), - [anon_sym_fn] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1476), - [anon_sym_RBRACE] = ACTIONS(1478), - [anon_sym_const] = ACTIONS(1476), - [anon_sym_var] = ACTIONS(1476), - [anon_sym_return] = ACTIONS(1476), - [anon_sym_continue] = ACTIONS(1476), - [anon_sym_break] = ACTIONS(1476), - [anon_sym_defer] = ACTIONS(1476), - [anon_sym_assert] = ACTIONS(1476), - [anon_sym_case] = ACTIONS(1476), - [anon_sym_default] = ACTIONS(1476), - [anon_sym_nextcase] = ACTIONS(1476), - [anon_sym_switch] = ACTIONS(1476), - [anon_sym_AMP_AMP] = ACTIONS(1478), - [anon_sym_if] = ACTIONS(1476), - [anon_sym_for] = ACTIONS(1476), - [anon_sym_foreach] = ACTIONS(1476), - [anon_sym_foreach_r] = ACTIONS(1476), - [anon_sym_while] = ACTIONS(1476), - [anon_sym_do] = ACTIONS(1476), - [anon_sym_int] = ACTIONS(1476), - [anon_sym_PLUS] = ACTIONS(1476), - [anon_sym_DASH] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_asm] = ACTIONS(1476), - [anon_sym_DOLLARassert] = ACTIONS(1476), - [anon_sym_DOLLARerror] = ACTIONS(1476), - [anon_sym_DOLLARecho] = ACTIONS(1476), - [anon_sym_DOLLARif] = ACTIONS(1476), - [anon_sym_DOLLARswitch] = ACTIONS(1476), - [anon_sym_DOLLARfor] = ACTIONS(1476), - [anon_sym_DOLLARforeach] = ACTIONS(1476), - [anon_sym_DOLLARalignof] = ACTIONS(1476), - [anon_sym_DOLLARextnameof] = ACTIONS(1476), - [anon_sym_DOLLARnameof] = ACTIONS(1476), - [anon_sym_DOLLARoffsetof] = ACTIONS(1476), - [anon_sym_DOLLARqnameof] = ACTIONS(1476), - [anon_sym_DOLLARvaconst] = ACTIONS(1476), - [anon_sym_DOLLARvaarg] = ACTIONS(1476), - [anon_sym_DOLLARvaref] = ACTIONS(1476), - [anon_sym_DOLLARvaexpr] = ACTIONS(1476), - [anon_sym_true] = ACTIONS(1476), - [anon_sym_false] = ACTIONS(1476), - [anon_sym_null] = ACTIONS(1476), - [anon_sym_DOLLARvacount] = ACTIONS(1476), - [anon_sym_DOLLARappend] = ACTIONS(1476), - [anon_sym_DOLLARconcat] = ACTIONS(1476), - [anon_sym_DOLLAReval] = ACTIONS(1476), - [anon_sym_DOLLARis_const] = ACTIONS(1476), - [anon_sym_DOLLARsizeof] = ACTIONS(1476), - [anon_sym_DOLLARstringify] = ACTIONS(1476), - [anon_sym_DOLLARand] = ACTIONS(1476), - [anon_sym_DOLLARdefined] = ACTIONS(1476), - [anon_sym_DOLLARembed] = ACTIONS(1476), - [anon_sym_DOLLARor] = ACTIONS(1476), - [anon_sym_DOLLARfeature] = ACTIONS(1476), - [anon_sym_DOLLARassignable] = ACTIONS(1476), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_TILDE] = ACTIONS(1478), - [anon_sym_PLUS_PLUS] = ACTIONS(1478), - [anon_sym_DASH_DASH] = ACTIONS(1478), - [anon_sym_typeid] = ACTIONS(1476), - [anon_sym_LBRACE_PIPE] = ACTIONS(1478), - [anon_sym_PIPE_RBRACE] = ACTIONS(1478), - [anon_sym_void] = ACTIONS(1476), - [anon_sym_bool] = ACTIONS(1476), - [anon_sym_char] = ACTIONS(1476), - [anon_sym_ichar] = ACTIONS(1476), - [anon_sym_short] = ACTIONS(1476), - [anon_sym_ushort] = ACTIONS(1476), - [anon_sym_uint] = ACTIONS(1476), - [anon_sym_long] = ACTIONS(1476), - [anon_sym_ulong] = ACTIONS(1476), - [anon_sym_int128] = ACTIONS(1476), - [anon_sym_uint128] = ACTIONS(1476), - [anon_sym_float] = ACTIONS(1476), - [anon_sym_double] = ACTIONS(1476), - [anon_sym_float16] = ACTIONS(1476), - [anon_sym_bfloat16] = ACTIONS(1476), - [anon_sym_float128] = ACTIONS(1476), - [anon_sym_iptr] = ACTIONS(1476), - [anon_sym_uptr] = ACTIONS(1476), - [anon_sym_isz] = ACTIONS(1476), - [anon_sym_usz] = ACTIONS(1476), - [anon_sym_anyfault] = ACTIONS(1476), - [anon_sym_any] = ACTIONS(1476), - [anon_sym_DOLLARtypeof] = ACTIONS(1476), - [anon_sym_DOLLARtypefrom] = ACTIONS(1476), - [anon_sym_DOLLARvatype] = ACTIONS(1476), - [anon_sym_DOLLARevaltype] = ACTIONS(1476), - [sym_real_literal] = ACTIONS(1478), + [sym_ident] = ACTIONS(1415), + [sym_integer_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1417), + [anon_sym_DQUOTE] = ACTIONS(1417), + [anon_sym_BQUOTE] = ACTIONS(1417), + [sym_bytes_literal] = ACTIONS(1417), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1415), + [sym_at_ident] = ACTIONS(1417), + [sym_hash_ident] = ACTIONS(1417), + [sym_type_ident] = ACTIONS(1417), + [sym_ct_type_ident] = ACTIONS(1417), + [sym_const_ident] = ACTIONS(1415), + [sym_builtin] = ACTIONS(1417), + [anon_sym_LPAREN] = ACTIONS(1417), + [anon_sym_AMP] = ACTIONS(1415), + [anon_sym_static] = ACTIONS(1415), + [anon_sym_tlocal] = ACTIONS(1415), + [anon_sym_SEMI] = ACTIONS(1417), + [anon_sym_fn] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1415), + [anon_sym_const] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1415), + [anon_sym_return] = ACTIONS(1415), + [anon_sym_continue] = ACTIONS(1415), + [anon_sym_break] = ACTIONS(1415), + [anon_sym_defer] = ACTIONS(1415), + [anon_sym_assert] = ACTIONS(1415), + [anon_sym_nextcase] = ACTIONS(1415), + [anon_sym_switch] = ACTIONS(1415), + [anon_sym_AMP_AMP] = ACTIONS(1417), + [anon_sym_if] = ACTIONS(1415), + [anon_sym_for] = ACTIONS(1415), + [anon_sym_foreach] = ACTIONS(1415), + [anon_sym_foreach_r] = ACTIONS(1415), + [anon_sym_while] = ACTIONS(1415), + [anon_sym_do] = ACTIONS(1415), + [anon_sym_int] = ACTIONS(1415), + [anon_sym_PLUS] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1415), + [anon_sym_STAR] = ACTIONS(1417), + [anon_sym_asm] = ACTIONS(1415), + [anon_sym_DOLLARassert] = ACTIONS(1415), + [anon_sym_DOLLARerror] = ACTIONS(1415), + [anon_sym_DOLLARecho] = ACTIONS(1415), + [anon_sym_DOLLARif] = ACTIONS(1415), + [anon_sym_DOLLARcase] = ACTIONS(1415), + [anon_sym_DOLLARdefault] = ACTIONS(1415), + [anon_sym_DOLLARswitch] = ACTIONS(1415), + [anon_sym_DOLLARendswitch] = ACTIONS(1415), + [anon_sym_DOLLARfor] = ACTIONS(1415), + [anon_sym_DOLLARforeach] = ACTIONS(1415), + [anon_sym_DOLLARalignof] = ACTIONS(1415), + [anon_sym_DOLLARextnameof] = ACTIONS(1415), + [anon_sym_DOLLARnameof] = ACTIONS(1415), + [anon_sym_DOLLARoffsetof] = ACTIONS(1415), + [anon_sym_DOLLARqnameof] = ACTIONS(1415), + [anon_sym_DOLLARvaconst] = ACTIONS(1415), + [anon_sym_DOLLARvaarg] = ACTIONS(1415), + [anon_sym_DOLLARvaref] = ACTIONS(1415), + [anon_sym_DOLLARvaexpr] = ACTIONS(1415), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_null] = ACTIONS(1415), + [anon_sym_DOLLARvacount] = ACTIONS(1415), + [anon_sym_DOLLARappend] = ACTIONS(1415), + [anon_sym_DOLLARconcat] = ACTIONS(1415), + [anon_sym_DOLLAReval] = ACTIONS(1415), + [anon_sym_DOLLARis_const] = ACTIONS(1415), + [anon_sym_DOLLARsizeof] = ACTIONS(1415), + [anon_sym_DOLLARstringify] = ACTIONS(1415), + [anon_sym_DOLLARand] = ACTIONS(1415), + [anon_sym_DOLLARdefined] = ACTIONS(1415), + [anon_sym_DOLLARembed] = ACTIONS(1415), + [anon_sym_DOLLARor] = ACTIONS(1415), + [anon_sym_DOLLARfeature] = ACTIONS(1415), + [anon_sym_DOLLARassignable] = ACTIONS(1415), + [anon_sym_BANG] = ACTIONS(1417), + [anon_sym_TILDE] = ACTIONS(1417), + [anon_sym_PLUS_PLUS] = ACTIONS(1417), + [anon_sym_DASH_DASH] = ACTIONS(1417), + [anon_sym_typeid] = ACTIONS(1415), + [anon_sym_LBRACE_PIPE] = ACTIONS(1417), + [anon_sym_void] = ACTIONS(1415), + [anon_sym_bool] = ACTIONS(1415), + [anon_sym_char] = ACTIONS(1415), + [anon_sym_ichar] = ACTIONS(1415), + [anon_sym_short] = ACTIONS(1415), + [anon_sym_ushort] = ACTIONS(1415), + [anon_sym_uint] = ACTIONS(1415), + [anon_sym_long] = ACTIONS(1415), + [anon_sym_ulong] = ACTIONS(1415), + [anon_sym_int128] = ACTIONS(1415), + [anon_sym_uint128] = ACTIONS(1415), + [anon_sym_float] = ACTIONS(1415), + [anon_sym_double] = ACTIONS(1415), + [anon_sym_float16] = ACTIONS(1415), + [anon_sym_bfloat16] = ACTIONS(1415), + [anon_sym_float128] = ACTIONS(1415), + [anon_sym_iptr] = ACTIONS(1415), + [anon_sym_uptr] = ACTIONS(1415), + [anon_sym_isz] = ACTIONS(1415), + [anon_sym_usz] = ACTIONS(1415), + [anon_sym_anyfault] = ACTIONS(1415), + [anon_sym_any] = ACTIONS(1415), + [anon_sym_DOLLARtypeof] = ACTIONS(1415), + [anon_sym_DOLLARtypefrom] = ACTIONS(1415), + [anon_sym_DOLLARvatype] = ACTIONS(1415), + [anon_sym_DOLLARevaltype] = ACTIONS(1415), + [sym_real_literal] = ACTIONS(1417), }, [418] = { [sym_line_comment] = STATE(418), [sym_doc_comment] = STATE(418), [sym_block_comment] = STATE(418), - [sym_ident] = ACTIONS(1480), - [sym_integer_literal] = ACTIONS(1482), - [anon_sym_SQUOTE] = ACTIONS(1482), - [anon_sym_DQUOTE] = ACTIONS(1482), - [anon_sym_BQUOTE] = ACTIONS(1482), - [sym_bytes_literal] = ACTIONS(1482), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1480), - [sym_at_ident] = ACTIONS(1482), - [sym_hash_ident] = ACTIONS(1482), - [sym_type_ident] = ACTIONS(1482), - [sym_ct_type_ident] = ACTIONS(1482), - [sym_const_ident] = ACTIONS(1480), - [sym_builtin] = ACTIONS(1482), - [anon_sym_LPAREN] = ACTIONS(1482), - [anon_sym_AMP] = ACTIONS(1480), - [anon_sym_static] = ACTIONS(1480), - [anon_sym_tlocal] = ACTIONS(1480), - [anon_sym_SEMI] = ACTIONS(1482), - [anon_sym_fn] = ACTIONS(1480), - [anon_sym_LBRACE] = ACTIONS(1480), - [anon_sym_RBRACE] = ACTIONS(1482), - [anon_sym_const] = ACTIONS(1480), - [anon_sym_var] = ACTIONS(1480), - [anon_sym_return] = ACTIONS(1480), - [anon_sym_continue] = ACTIONS(1480), - [anon_sym_break] = ACTIONS(1480), - [anon_sym_defer] = ACTIONS(1480), - [anon_sym_assert] = ACTIONS(1480), - [anon_sym_case] = ACTIONS(1480), - [anon_sym_default] = ACTIONS(1480), - [anon_sym_nextcase] = ACTIONS(1480), - [anon_sym_switch] = ACTIONS(1480), - [anon_sym_AMP_AMP] = ACTIONS(1482), - [anon_sym_if] = ACTIONS(1480), - [anon_sym_for] = ACTIONS(1480), - [anon_sym_foreach] = ACTIONS(1480), - [anon_sym_foreach_r] = ACTIONS(1480), - [anon_sym_while] = ACTIONS(1480), - [anon_sym_do] = ACTIONS(1480), - [anon_sym_int] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1480), - [anon_sym_DASH] = ACTIONS(1480), - [anon_sym_STAR] = ACTIONS(1482), - [anon_sym_asm] = ACTIONS(1480), - [anon_sym_DOLLARassert] = ACTIONS(1480), - [anon_sym_DOLLARerror] = ACTIONS(1480), - [anon_sym_DOLLARecho] = ACTIONS(1480), - [anon_sym_DOLLARif] = ACTIONS(1480), - [anon_sym_DOLLARswitch] = ACTIONS(1480), - [anon_sym_DOLLARfor] = ACTIONS(1480), - [anon_sym_DOLLARforeach] = ACTIONS(1480), - [anon_sym_DOLLARalignof] = ACTIONS(1480), - [anon_sym_DOLLARextnameof] = ACTIONS(1480), - [anon_sym_DOLLARnameof] = ACTIONS(1480), - [anon_sym_DOLLARoffsetof] = ACTIONS(1480), - [anon_sym_DOLLARqnameof] = ACTIONS(1480), - [anon_sym_DOLLARvaconst] = ACTIONS(1480), - [anon_sym_DOLLARvaarg] = ACTIONS(1480), - [anon_sym_DOLLARvaref] = ACTIONS(1480), - [anon_sym_DOLLARvaexpr] = ACTIONS(1480), - [anon_sym_true] = ACTIONS(1480), - [anon_sym_false] = ACTIONS(1480), - [anon_sym_null] = ACTIONS(1480), - [anon_sym_DOLLARvacount] = ACTIONS(1480), - [anon_sym_DOLLARappend] = ACTIONS(1480), - [anon_sym_DOLLARconcat] = ACTIONS(1480), - [anon_sym_DOLLAReval] = ACTIONS(1480), - [anon_sym_DOLLARis_const] = ACTIONS(1480), - [anon_sym_DOLLARsizeof] = ACTIONS(1480), - [anon_sym_DOLLARstringify] = ACTIONS(1480), - [anon_sym_DOLLARand] = ACTIONS(1480), - [anon_sym_DOLLARdefined] = ACTIONS(1480), - [anon_sym_DOLLARembed] = ACTIONS(1480), - [anon_sym_DOLLARor] = ACTIONS(1480), - [anon_sym_DOLLARfeature] = ACTIONS(1480), - [anon_sym_DOLLARassignable] = ACTIONS(1480), - [anon_sym_BANG] = ACTIONS(1482), - [anon_sym_TILDE] = ACTIONS(1482), - [anon_sym_PLUS_PLUS] = ACTIONS(1482), - [anon_sym_DASH_DASH] = ACTIONS(1482), - [anon_sym_typeid] = ACTIONS(1480), - [anon_sym_LBRACE_PIPE] = ACTIONS(1482), - [anon_sym_PIPE_RBRACE] = ACTIONS(1482), - [anon_sym_void] = ACTIONS(1480), - [anon_sym_bool] = ACTIONS(1480), - [anon_sym_char] = ACTIONS(1480), - [anon_sym_ichar] = ACTIONS(1480), - [anon_sym_short] = ACTIONS(1480), - [anon_sym_ushort] = ACTIONS(1480), - [anon_sym_uint] = ACTIONS(1480), - [anon_sym_long] = ACTIONS(1480), - [anon_sym_ulong] = ACTIONS(1480), - [anon_sym_int128] = ACTIONS(1480), - [anon_sym_uint128] = ACTIONS(1480), - [anon_sym_float] = ACTIONS(1480), - [anon_sym_double] = ACTIONS(1480), - [anon_sym_float16] = ACTIONS(1480), - [anon_sym_bfloat16] = ACTIONS(1480), - [anon_sym_float128] = ACTIONS(1480), - [anon_sym_iptr] = ACTIONS(1480), - [anon_sym_uptr] = ACTIONS(1480), - [anon_sym_isz] = ACTIONS(1480), - [anon_sym_usz] = ACTIONS(1480), - [anon_sym_anyfault] = ACTIONS(1480), - [anon_sym_any] = ACTIONS(1480), - [anon_sym_DOLLARtypeof] = ACTIONS(1480), - [anon_sym_DOLLARtypefrom] = ACTIONS(1480), - [anon_sym_DOLLARvatype] = ACTIONS(1480), - [anon_sym_DOLLARevaltype] = ACTIONS(1480), - [sym_real_literal] = ACTIONS(1482), + [sym_ident] = ACTIONS(1593), + [sym_integer_literal] = ACTIONS(1595), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_DQUOTE] = ACTIONS(1595), + [anon_sym_BQUOTE] = ACTIONS(1595), + [sym_bytes_literal] = ACTIONS(1595), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1593), + [sym_at_ident] = ACTIONS(1595), + [sym_hash_ident] = ACTIONS(1595), + [sym_type_ident] = ACTIONS(1595), + [sym_ct_type_ident] = ACTIONS(1595), + [sym_const_ident] = ACTIONS(1593), + [sym_builtin] = ACTIONS(1595), + [anon_sym_LPAREN] = ACTIONS(1595), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_static] = ACTIONS(1593), + [anon_sym_tlocal] = ACTIONS(1593), + [anon_sym_SEMI] = ACTIONS(1595), + [anon_sym_fn] = ACTIONS(1593), + [anon_sym_LBRACE] = ACTIONS(1593), + [anon_sym_const] = ACTIONS(1593), + [anon_sym_var] = ACTIONS(1593), + [anon_sym_return] = ACTIONS(1593), + [anon_sym_continue] = ACTIONS(1593), + [anon_sym_break] = ACTIONS(1593), + [anon_sym_defer] = ACTIONS(1593), + [anon_sym_assert] = ACTIONS(1593), + [anon_sym_nextcase] = ACTIONS(1593), + [anon_sym_switch] = ACTIONS(1593), + [anon_sym_AMP_AMP] = ACTIONS(1595), + [anon_sym_if] = ACTIONS(1593), + [anon_sym_for] = ACTIONS(1593), + [anon_sym_foreach] = ACTIONS(1593), + [anon_sym_foreach_r] = ACTIONS(1593), + [anon_sym_while] = ACTIONS(1593), + [anon_sym_do] = ACTIONS(1593), + [anon_sym_int] = ACTIONS(1593), + [anon_sym_PLUS] = ACTIONS(1593), + [anon_sym_DASH] = ACTIONS(1593), + [anon_sym_STAR] = ACTIONS(1595), + [anon_sym_asm] = ACTIONS(1593), + [anon_sym_DOLLARassert] = ACTIONS(1593), + [anon_sym_DOLLARerror] = ACTIONS(1593), + [anon_sym_DOLLARecho] = ACTIONS(1593), + [anon_sym_DOLLARif] = ACTIONS(1593), + [anon_sym_DOLLARcase] = ACTIONS(1593), + [anon_sym_DOLLARdefault] = ACTIONS(1593), + [anon_sym_DOLLARswitch] = ACTIONS(1593), + [anon_sym_DOLLARendswitch] = ACTIONS(1593), + [anon_sym_DOLLARfor] = ACTIONS(1593), + [anon_sym_DOLLARforeach] = ACTIONS(1593), + [anon_sym_DOLLARalignof] = ACTIONS(1593), + [anon_sym_DOLLARextnameof] = ACTIONS(1593), + [anon_sym_DOLLARnameof] = ACTIONS(1593), + [anon_sym_DOLLARoffsetof] = ACTIONS(1593), + [anon_sym_DOLLARqnameof] = ACTIONS(1593), + [anon_sym_DOLLARvaconst] = ACTIONS(1593), + [anon_sym_DOLLARvaarg] = ACTIONS(1593), + [anon_sym_DOLLARvaref] = ACTIONS(1593), + [anon_sym_DOLLARvaexpr] = ACTIONS(1593), + [anon_sym_true] = ACTIONS(1593), + [anon_sym_false] = ACTIONS(1593), + [anon_sym_null] = ACTIONS(1593), + [anon_sym_DOLLARvacount] = ACTIONS(1593), + [anon_sym_DOLLARappend] = ACTIONS(1593), + [anon_sym_DOLLARconcat] = ACTIONS(1593), + [anon_sym_DOLLAReval] = ACTIONS(1593), + [anon_sym_DOLLARis_const] = ACTIONS(1593), + [anon_sym_DOLLARsizeof] = ACTIONS(1593), + [anon_sym_DOLLARstringify] = ACTIONS(1593), + [anon_sym_DOLLARand] = ACTIONS(1593), + [anon_sym_DOLLARdefined] = ACTIONS(1593), + [anon_sym_DOLLARembed] = ACTIONS(1593), + [anon_sym_DOLLARor] = ACTIONS(1593), + [anon_sym_DOLLARfeature] = ACTIONS(1593), + [anon_sym_DOLLARassignable] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1595), + [anon_sym_TILDE] = ACTIONS(1595), + [anon_sym_PLUS_PLUS] = ACTIONS(1595), + [anon_sym_DASH_DASH] = ACTIONS(1595), + [anon_sym_typeid] = ACTIONS(1593), + [anon_sym_LBRACE_PIPE] = ACTIONS(1595), + [anon_sym_void] = ACTIONS(1593), + [anon_sym_bool] = ACTIONS(1593), + [anon_sym_char] = ACTIONS(1593), + [anon_sym_ichar] = ACTIONS(1593), + [anon_sym_short] = ACTIONS(1593), + [anon_sym_ushort] = ACTIONS(1593), + [anon_sym_uint] = ACTIONS(1593), + [anon_sym_long] = ACTIONS(1593), + [anon_sym_ulong] = ACTIONS(1593), + [anon_sym_int128] = ACTIONS(1593), + [anon_sym_uint128] = ACTIONS(1593), + [anon_sym_float] = ACTIONS(1593), + [anon_sym_double] = ACTIONS(1593), + [anon_sym_float16] = ACTIONS(1593), + [anon_sym_bfloat16] = ACTIONS(1593), + [anon_sym_float128] = ACTIONS(1593), + [anon_sym_iptr] = ACTIONS(1593), + [anon_sym_uptr] = ACTIONS(1593), + [anon_sym_isz] = ACTIONS(1593), + [anon_sym_usz] = ACTIONS(1593), + [anon_sym_anyfault] = ACTIONS(1593), + [anon_sym_any] = ACTIONS(1593), + [anon_sym_DOLLARtypeof] = ACTIONS(1593), + [anon_sym_DOLLARtypefrom] = ACTIONS(1593), + [anon_sym_DOLLARvatype] = ACTIONS(1593), + [anon_sym_DOLLARevaltype] = ACTIONS(1593), + [sym_real_literal] = ACTIONS(1595), }, [419] = { [sym_line_comment] = STATE(419), [sym_doc_comment] = STATE(419), [sym_block_comment] = STATE(419), - [sym_ident] = ACTIONS(1484), - [sym_integer_literal] = ACTIONS(1486), - [anon_sym_SQUOTE] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(1486), - [anon_sym_BQUOTE] = ACTIONS(1486), - [sym_bytes_literal] = ACTIONS(1486), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1484), - [sym_at_ident] = ACTIONS(1486), - [sym_hash_ident] = ACTIONS(1486), - [sym_type_ident] = ACTIONS(1486), - [sym_ct_type_ident] = ACTIONS(1486), - [sym_const_ident] = ACTIONS(1484), - [sym_builtin] = ACTIONS(1486), - [anon_sym_LPAREN] = ACTIONS(1486), - [anon_sym_AMP] = ACTIONS(1484), - [anon_sym_static] = ACTIONS(1484), - [anon_sym_tlocal] = ACTIONS(1484), - [anon_sym_SEMI] = ACTIONS(1486), - [anon_sym_fn] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1484), - [anon_sym_RBRACE] = ACTIONS(1486), - [anon_sym_const] = ACTIONS(1484), - [anon_sym_var] = ACTIONS(1484), - [anon_sym_return] = ACTIONS(1484), - [anon_sym_continue] = ACTIONS(1484), - [anon_sym_break] = ACTIONS(1484), - [anon_sym_defer] = ACTIONS(1484), - [anon_sym_assert] = ACTIONS(1484), - [anon_sym_case] = ACTIONS(1484), - [anon_sym_default] = ACTIONS(1484), - [anon_sym_nextcase] = ACTIONS(1484), - [anon_sym_switch] = ACTIONS(1484), - [anon_sym_AMP_AMP] = ACTIONS(1486), - [anon_sym_if] = ACTIONS(1484), - [anon_sym_for] = ACTIONS(1484), - [anon_sym_foreach] = ACTIONS(1484), - [anon_sym_foreach_r] = ACTIONS(1484), - [anon_sym_while] = ACTIONS(1484), - [anon_sym_do] = ACTIONS(1484), - [anon_sym_int] = ACTIONS(1484), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_DASH] = ACTIONS(1484), - [anon_sym_STAR] = ACTIONS(1486), - [anon_sym_asm] = ACTIONS(1484), - [anon_sym_DOLLARassert] = ACTIONS(1484), - [anon_sym_DOLLARerror] = ACTIONS(1484), - [anon_sym_DOLLARecho] = ACTIONS(1484), - [anon_sym_DOLLARif] = ACTIONS(1484), - [anon_sym_DOLLARswitch] = ACTIONS(1484), - [anon_sym_DOLLARfor] = ACTIONS(1484), - [anon_sym_DOLLARforeach] = ACTIONS(1484), - [anon_sym_DOLLARalignof] = ACTIONS(1484), - [anon_sym_DOLLARextnameof] = ACTIONS(1484), - [anon_sym_DOLLARnameof] = ACTIONS(1484), - [anon_sym_DOLLARoffsetof] = ACTIONS(1484), - [anon_sym_DOLLARqnameof] = ACTIONS(1484), - [anon_sym_DOLLARvaconst] = ACTIONS(1484), - [anon_sym_DOLLARvaarg] = ACTIONS(1484), - [anon_sym_DOLLARvaref] = ACTIONS(1484), - [anon_sym_DOLLARvaexpr] = ACTIONS(1484), - [anon_sym_true] = ACTIONS(1484), - [anon_sym_false] = ACTIONS(1484), - [anon_sym_null] = ACTIONS(1484), - [anon_sym_DOLLARvacount] = ACTIONS(1484), - [anon_sym_DOLLARappend] = ACTIONS(1484), - [anon_sym_DOLLARconcat] = ACTIONS(1484), - [anon_sym_DOLLAReval] = ACTIONS(1484), - [anon_sym_DOLLARis_const] = ACTIONS(1484), - [anon_sym_DOLLARsizeof] = ACTIONS(1484), - [anon_sym_DOLLARstringify] = ACTIONS(1484), - [anon_sym_DOLLARand] = ACTIONS(1484), - [anon_sym_DOLLARdefined] = ACTIONS(1484), - [anon_sym_DOLLARembed] = ACTIONS(1484), - [anon_sym_DOLLARor] = ACTIONS(1484), - [anon_sym_DOLLARfeature] = ACTIONS(1484), - [anon_sym_DOLLARassignable] = ACTIONS(1484), - [anon_sym_BANG] = ACTIONS(1486), - [anon_sym_TILDE] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_typeid] = ACTIONS(1484), - [anon_sym_LBRACE_PIPE] = ACTIONS(1486), - [anon_sym_PIPE_RBRACE] = ACTIONS(1486), - [anon_sym_void] = ACTIONS(1484), - [anon_sym_bool] = ACTIONS(1484), - [anon_sym_char] = ACTIONS(1484), - [anon_sym_ichar] = ACTIONS(1484), - [anon_sym_short] = ACTIONS(1484), - [anon_sym_ushort] = ACTIONS(1484), - [anon_sym_uint] = ACTIONS(1484), - [anon_sym_long] = ACTIONS(1484), - [anon_sym_ulong] = ACTIONS(1484), - [anon_sym_int128] = ACTIONS(1484), - [anon_sym_uint128] = ACTIONS(1484), - [anon_sym_float] = ACTIONS(1484), - [anon_sym_double] = ACTIONS(1484), - [anon_sym_float16] = ACTIONS(1484), - [anon_sym_bfloat16] = ACTIONS(1484), - [anon_sym_float128] = ACTIONS(1484), - [anon_sym_iptr] = ACTIONS(1484), - [anon_sym_uptr] = ACTIONS(1484), - [anon_sym_isz] = ACTIONS(1484), - [anon_sym_usz] = ACTIONS(1484), - [anon_sym_anyfault] = ACTIONS(1484), - [anon_sym_any] = ACTIONS(1484), - [anon_sym_DOLLARtypeof] = ACTIONS(1484), - [anon_sym_DOLLARtypefrom] = ACTIONS(1484), - [anon_sym_DOLLARvatype] = ACTIONS(1484), - [anon_sym_DOLLARevaltype] = ACTIONS(1484), - [sym_real_literal] = ACTIONS(1486), + [sym_ident] = ACTIONS(1585), + [sym_integer_literal] = ACTIONS(1587), + [anon_sym_SQUOTE] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1587), + [anon_sym_BQUOTE] = ACTIONS(1587), + [sym_bytes_literal] = ACTIONS(1587), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1585), + [sym_at_ident] = ACTIONS(1587), + [sym_hash_ident] = ACTIONS(1587), + [sym_type_ident] = ACTIONS(1587), + [sym_ct_type_ident] = ACTIONS(1587), + [sym_const_ident] = ACTIONS(1585), + [sym_builtin] = ACTIONS(1587), + [anon_sym_LPAREN] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_static] = ACTIONS(1585), + [anon_sym_tlocal] = ACTIONS(1585), + [anon_sym_SEMI] = ACTIONS(1587), + [anon_sym_fn] = ACTIONS(1585), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_const] = ACTIONS(1585), + [anon_sym_var] = ACTIONS(1585), + [anon_sym_return] = ACTIONS(1585), + [anon_sym_continue] = ACTIONS(1585), + [anon_sym_break] = ACTIONS(1585), + [anon_sym_defer] = ACTIONS(1585), + [anon_sym_assert] = ACTIONS(1585), + [anon_sym_nextcase] = ACTIONS(1585), + [anon_sym_switch] = ACTIONS(1585), + [anon_sym_AMP_AMP] = ACTIONS(1587), + [anon_sym_if] = ACTIONS(1585), + [anon_sym_for] = ACTIONS(1585), + [anon_sym_foreach] = ACTIONS(1585), + [anon_sym_foreach_r] = ACTIONS(1585), + [anon_sym_while] = ACTIONS(1585), + [anon_sym_do] = ACTIONS(1585), + [anon_sym_int] = ACTIONS(1585), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1587), + [anon_sym_asm] = ACTIONS(1585), + [anon_sym_DOLLARassert] = ACTIONS(1585), + [anon_sym_DOLLARerror] = ACTIONS(1585), + [anon_sym_DOLLARecho] = ACTIONS(1585), + [anon_sym_DOLLARif] = ACTIONS(1585), + [anon_sym_DOLLARcase] = ACTIONS(1585), + [anon_sym_DOLLARdefault] = ACTIONS(1585), + [anon_sym_DOLLARswitch] = ACTIONS(1585), + [anon_sym_DOLLARendswitch] = ACTIONS(1585), + [anon_sym_DOLLARfor] = ACTIONS(1585), + [anon_sym_DOLLARforeach] = ACTIONS(1585), + [anon_sym_DOLLARalignof] = ACTIONS(1585), + [anon_sym_DOLLARextnameof] = ACTIONS(1585), + [anon_sym_DOLLARnameof] = ACTIONS(1585), + [anon_sym_DOLLARoffsetof] = ACTIONS(1585), + [anon_sym_DOLLARqnameof] = ACTIONS(1585), + [anon_sym_DOLLARvaconst] = ACTIONS(1585), + [anon_sym_DOLLARvaarg] = ACTIONS(1585), + [anon_sym_DOLLARvaref] = ACTIONS(1585), + [anon_sym_DOLLARvaexpr] = ACTIONS(1585), + [anon_sym_true] = ACTIONS(1585), + [anon_sym_false] = ACTIONS(1585), + [anon_sym_null] = ACTIONS(1585), + [anon_sym_DOLLARvacount] = ACTIONS(1585), + [anon_sym_DOLLARappend] = ACTIONS(1585), + [anon_sym_DOLLARconcat] = ACTIONS(1585), + [anon_sym_DOLLAReval] = ACTIONS(1585), + [anon_sym_DOLLARis_const] = ACTIONS(1585), + [anon_sym_DOLLARsizeof] = ACTIONS(1585), + [anon_sym_DOLLARstringify] = ACTIONS(1585), + [anon_sym_DOLLARand] = ACTIONS(1585), + [anon_sym_DOLLARdefined] = ACTIONS(1585), + [anon_sym_DOLLARembed] = ACTIONS(1585), + [anon_sym_DOLLARor] = ACTIONS(1585), + [anon_sym_DOLLARfeature] = ACTIONS(1585), + [anon_sym_DOLLARassignable] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), + [anon_sym_typeid] = ACTIONS(1585), + [anon_sym_LBRACE_PIPE] = ACTIONS(1587), + [anon_sym_void] = ACTIONS(1585), + [anon_sym_bool] = ACTIONS(1585), + [anon_sym_char] = ACTIONS(1585), + [anon_sym_ichar] = ACTIONS(1585), + [anon_sym_short] = ACTIONS(1585), + [anon_sym_ushort] = ACTIONS(1585), + [anon_sym_uint] = ACTIONS(1585), + [anon_sym_long] = ACTIONS(1585), + [anon_sym_ulong] = ACTIONS(1585), + [anon_sym_int128] = ACTIONS(1585), + [anon_sym_uint128] = ACTIONS(1585), + [anon_sym_float] = ACTIONS(1585), + [anon_sym_double] = ACTIONS(1585), + [anon_sym_float16] = ACTIONS(1585), + [anon_sym_bfloat16] = ACTIONS(1585), + [anon_sym_float128] = ACTIONS(1585), + [anon_sym_iptr] = ACTIONS(1585), + [anon_sym_uptr] = ACTIONS(1585), + [anon_sym_isz] = ACTIONS(1585), + [anon_sym_usz] = ACTIONS(1585), + [anon_sym_anyfault] = ACTIONS(1585), + [anon_sym_any] = ACTIONS(1585), + [anon_sym_DOLLARtypeof] = ACTIONS(1585), + [anon_sym_DOLLARtypefrom] = ACTIONS(1585), + [anon_sym_DOLLARvatype] = ACTIONS(1585), + [anon_sym_DOLLARevaltype] = ACTIONS(1585), + [sym_real_literal] = ACTIONS(1587), }, [420] = { [sym_line_comment] = STATE(420), [sym_doc_comment] = STATE(420), [sym_block_comment] = STATE(420), - [sym_ident] = ACTIONS(1186), - [sym_integer_literal] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym_DQUOTE] = ACTIONS(1188), - [anon_sym_BQUOTE] = ACTIONS(1188), - [sym_bytes_literal] = ACTIONS(1188), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1186), - [sym_at_ident] = ACTIONS(1188), - [sym_hash_ident] = ACTIONS(1188), - [sym_type_ident] = ACTIONS(1188), - [sym_ct_type_ident] = ACTIONS(1188), - [sym_const_ident] = ACTIONS(1186), - [sym_builtin] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(1188), - [anon_sym_AMP] = ACTIONS(1186), - [anon_sym_static] = ACTIONS(1186), - [anon_sym_tlocal] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1188), - [anon_sym_fn] = ACTIONS(1186), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_RBRACE] = ACTIONS(1188), - [anon_sym_const] = ACTIONS(1186), - [anon_sym_var] = ACTIONS(1186), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1186), - [anon_sym_defer] = ACTIONS(1186), - [anon_sym_assert] = ACTIONS(1186), - [anon_sym_case] = ACTIONS(1186), - [anon_sym_default] = ACTIONS(1186), - [anon_sym_nextcase] = ACTIONS(1186), - [anon_sym_switch] = ACTIONS(1186), - [anon_sym_AMP_AMP] = ACTIONS(1188), - [anon_sym_if] = ACTIONS(1186), - [anon_sym_for] = ACTIONS(1186), - [anon_sym_foreach] = ACTIONS(1186), - [anon_sym_foreach_r] = ACTIONS(1186), - [anon_sym_while] = ACTIONS(1186), - [anon_sym_do] = ACTIONS(1186), - [anon_sym_int] = ACTIONS(1186), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1188), - [anon_sym_asm] = ACTIONS(1186), - [anon_sym_DOLLARassert] = ACTIONS(1186), - [anon_sym_DOLLARerror] = ACTIONS(1186), - [anon_sym_DOLLARecho] = ACTIONS(1186), - [anon_sym_DOLLARif] = ACTIONS(1186), - [anon_sym_DOLLARswitch] = ACTIONS(1186), - [anon_sym_DOLLARfor] = ACTIONS(1186), - [anon_sym_DOLLARforeach] = ACTIONS(1186), - [anon_sym_DOLLARalignof] = ACTIONS(1186), - [anon_sym_DOLLARextnameof] = ACTIONS(1186), - [anon_sym_DOLLARnameof] = ACTIONS(1186), - [anon_sym_DOLLARoffsetof] = ACTIONS(1186), - [anon_sym_DOLLARqnameof] = ACTIONS(1186), - [anon_sym_DOLLARvaconst] = ACTIONS(1186), - [anon_sym_DOLLARvaarg] = ACTIONS(1186), - [anon_sym_DOLLARvaref] = ACTIONS(1186), - [anon_sym_DOLLARvaexpr] = ACTIONS(1186), - [anon_sym_true] = ACTIONS(1186), - [anon_sym_false] = ACTIONS(1186), - [anon_sym_null] = ACTIONS(1186), - [anon_sym_DOLLARvacount] = ACTIONS(1186), - [anon_sym_DOLLARappend] = ACTIONS(1186), - [anon_sym_DOLLARconcat] = ACTIONS(1186), - [anon_sym_DOLLAReval] = ACTIONS(1186), - [anon_sym_DOLLARis_const] = ACTIONS(1186), - [anon_sym_DOLLARsizeof] = ACTIONS(1186), - [anon_sym_DOLLARstringify] = ACTIONS(1186), - [anon_sym_DOLLARand] = ACTIONS(1186), - [anon_sym_DOLLARdefined] = ACTIONS(1186), - [anon_sym_DOLLARembed] = ACTIONS(1186), - [anon_sym_DOLLARor] = ACTIONS(1186), - [anon_sym_DOLLARfeature] = ACTIONS(1186), - [anon_sym_DOLLARassignable] = ACTIONS(1186), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_PLUS_PLUS] = ACTIONS(1188), - [anon_sym_DASH_DASH] = ACTIONS(1188), - [anon_sym_typeid] = ACTIONS(1186), - [anon_sym_LBRACE_PIPE] = ACTIONS(1188), - [anon_sym_PIPE_RBRACE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1186), - [anon_sym_bool] = ACTIONS(1186), - [anon_sym_char] = ACTIONS(1186), - [anon_sym_ichar] = ACTIONS(1186), - [anon_sym_short] = ACTIONS(1186), - [anon_sym_ushort] = ACTIONS(1186), - [anon_sym_uint] = ACTIONS(1186), - [anon_sym_long] = ACTIONS(1186), - [anon_sym_ulong] = ACTIONS(1186), - [anon_sym_int128] = ACTIONS(1186), - [anon_sym_uint128] = ACTIONS(1186), - [anon_sym_float] = ACTIONS(1186), - [anon_sym_double] = ACTIONS(1186), - [anon_sym_float16] = ACTIONS(1186), - [anon_sym_bfloat16] = ACTIONS(1186), - [anon_sym_float128] = ACTIONS(1186), - [anon_sym_iptr] = ACTIONS(1186), - [anon_sym_uptr] = ACTIONS(1186), - [anon_sym_isz] = ACTIONS(1186), - [anon_sym_usz] = ACTIONS(1186), - [anon_sym_anyfault] = ACTIONS(1186), - [anon_sym_any] = ACTIONS(1186), - [anon_sym_DOLLARtypeof] = ACTIONS(1186), - [anon_sym_DOLLARtypefrom] = ACTIONS(1186), - [anon_sym_DOLLARvatype] = ACTIONS(1186), - [anon_sym_DOLLARevaltype] = ACTIONS(1186), - [sym_real_literal] = ACTIONS(1188), + [sym_ident] = ACTIONS(1489), + [sym_integer_literal] = ACTIONS(1491), + [anon_sym_SQUOTE] = ACTIONS(1491), + [anon_sym_DQUOTE] = ACTIONS(1491), + [anon_sym_BQUOTE] = ACTIONS(1491), + [sym_bytes_literal] = ACTIONS(1491), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1489), + [sym_at_ident] = ACTIONS(1491), + [sym_hash_ident] = ACTIONS(1491), + [sym_type_ident] = ACTIONS(1491), + [sym_ct_type_ident] = ACTIONS(1491), + [sym_const_ident] = ACTIONS(1489), + [sym_builtin] = ACTIONS(1491), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_AMP] = ACTIONS(1489), + [anon_sym_static] = ACTIONS(1489), + [anon_sym_tlocal] = ACTIONS(1489), + [anon_sym_SEMI] = ACTIONS(1491), + [anon_sym_fn] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1489), + [anon_sym_const] = ACTIONS(1489), + [anon_sym_var] = ACTIONS(1489), + [anon_sym_return] = ACTIONS(1489), + [anon_sym_continue] = ACTIONS(1489), + [anon_sym_break] = ACTIONS(1489), + [anon_sym_defer] = ACTIONS(1489), + [anon_sym_assert] = ACTIONS(1489), + [anon_sym_nextcase] = ACTIONS(1489), + [anon_sym_switch] = ACTIONS(1489), + [anon_sym_AMP_AMP] = ACTIONS(1491), + [anon_sym_if] = ACTIONS(1489), + [anon_sym_for] = ACTIONS(1489), + [anon_sym_foreach] = ACTIONS(1489), + [anon_sym_foreach_r] = ACTIONS(1489), + [anon_sym_while] = ACTIONS(1489), + [anon_sym_do] = ACTIONS(1489), + [anon_sym_int] = ACTIONS(1489), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_STAR] = ACTIONS(1491), + [anon_sym_asm] = ACTIONS(1489), + [anon_sym_DOLLARassert] = ACTIONS(1489), + [anon_sym_DOLLARerror] = ACTIONS(1489), + [anon_sym_DOLLARecho] = ACTIONS(1489), + [anon_sym_DOLLARif] = ACTIONS(1489), + [anon_sym_DOLLARcase] = ACTIONS(1489), + [anon_sym_DOLLARdefault] = ACTIONS(1489), + [anon_sym_DOLLARswitch] = ACTIONS(1489), + [anon_sym_DOLLARendswitch] = ACTIONS(1489), + [anon_sym_DOLLARfor] = ACTIONS(1489), + [anon_sym_DOLLARforeach] = ACTIONS(1489), + [anon_sym_DOLLARalignof] = ACTIONS(1489), + [anon_sym_DOLLARextnameof] = ACTIONS(1489), + [anon_sym_DOLLARnameof] = ACTIONS(1489), + [anon_sym_DOLLARoffsetof] = ACTIONS(1489), + [anon_sym_DOLLARqnameof] = ACTIONS(1489), + [anon_sym_DOLLARvaconst] = ACTIONS(1489), + [anon_sym_DOLLARvaarg] = ACTIONS(1489), + [anon_sym_DOLLARvaref] = ACTIONS(1489), + [anon_sym_DOLLARvaexpr] = ACTIONS(1489), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), + [anon_sym_null] = ACTIONS(1489), + [anon_sym_DOLLARvacount] = ACTIONS(1489), + [anon_sym_DOLLARappend] = ACTIONS(1489), + [anon_sym_DOLLARconcat] = ACTIONS(1489), + [anon_sym_DOLLAReval] = ACTIONS(1489), + [anon_sym_DOLLARis_const] = ACTIONS(1489), + [anon_sym_DOLLARsizeof] = ACTIONS(1489), + [anon_sym_DOLLARstringify] = ACTIONS(1489), + [anon_sym_DOLLARand] = ACTIONS(1489), + [anon_sym_DOLLARdefined] = ACTIONS(1489), + [anon_sym_DOLLARembed] = ACTIONS(1489), + [anon_sym_DOLLARor] = ACTIONS(1489), + [anon_sym_DOLLARfeature] = ACTIONS(1489), + [anon_sym_DOLLARassignable] = ACTIONS(1489), + [anon_sym_BANG] = ACTIONS(1491), + [anon_sym_TILDE] = ACTIONS(1491), + [anon_sym_PLUS_PLUS] = ACTIONS(1491), + [anon_sym_DASH_DASH] = ACTIONS(1491), + [anon_sym_typeid] = ACTIONS(1489), + [anon_sym_LBRACE_PIPE] = ACTIONS(1491), + [anon_sym_void] = ACTIONS(1489), + [anon_sym_bool] = ACTIONS(1489), + [anon_sym_char] = ACTIONS(1489), + [anon_sym_ichar] = ACTIONS(1489), + [anon_sym_short] = ACTIONS(1489), + [anon_sym_ushort] = ACTIONS(1489), + [anon_sym_uint] = ACTIONS(1489), + [anon_sym_long] = ACTIONS(1489), + [anon_sym_ulong] = ACTIONS(1489), + [anon_sym_int128] = ACTIONS(1489), + [anon_sym_uint128] = ACTIONS(1489), + [anon_sym_float] = ACTIONS(1489), + [anon_sym_double] = ACTIONS(1489), + [anon_sym_float16] = ACTIONS(1489), + [anon_sym_bfloat16] = ACTIONS(1489), + [anon_sym_float128] = ACTIONS(1489), + [anon_sym_iptr] = ACTIONS(1489), + [anon_sym_uptr] = ACTIONS(1489), + [anon_sym_isz] = ACTIONS(1489), + [anon_sym_usz] = ACTIONS(1489), + [anon_sym_anyfault] = ACTIONS(1489), + [anon_sym_any] = ACTIONS(1489), + [anon_sym_DOLLARtypeof] = ACTIONS(1489), + [anon_sym_DOLLARtypefrom] = ACTIONS(1489), + [anon_sym_DOLLARvatype] = ACTIONS(1489), + [anon_sym_DOLLARevaltype] = ACTIONS(1489), + [sym_real_literal] = ACTIONS(1491), }, [421] = { [sym_line_comment] = STATE(421), [sym_doc_comment] = STATE(421), [sym_block_comment] = STATE(421), - [sym_ident] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1490), - [anon_sym_SQUOTE] = ACTIONS(1490), - [anon_sym_DQUOTE] = ACTIONS(1490), - [anon_sym_BQUOTE] = ACTIONS(1490), - [sym_bytes_literal] = ACTIONS(1490), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1488), - [sym_at_ident] = ACTIONS(1490), - [sym_hash_ident] = ACTIONS(1490), - [sym_type_ident] = ACTIONS(1490), - [sym_ct_type_ident] = ACTIONS(1490), - [sym_const_ident] = ACTIONS(1488), - [sym_builtin] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1490), - [anon_sym_AMP] = ACTIONS(1488), - [anon_sym_static] = ACTIONS(1488), - [anon_sym_tlocal] = ACTIONS(1488), - [anon_sym_SEMI] = ACTIONS(1490), - [anon_sym_fn] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_RBRACE] = ACTIONS(1490), - [anon_sym_const] = ACTIONS(1488), - [anon_sym_var] = ACTIONS(1488), - [anon_sym_return] = ACTIONS(1488), - [anon_sym_continue] = ACTIONS(1488), - [anon_sym_break] = ACTIONS(1488), - [anon_sym_defer] = ACTIONS(1488), - [anon_sym_assert] = ACTIONS(1488), - [anon_sym_case] = ACTIONS(1488), - [anon_sym_default] = ACTIONS(1488), - [anon_sym_nextcase] = ACTIONS(1488), - [anon_sym_switch] = ACTIONS(1488), - [anon_sym_AMP_AMP] = ACTIONS(1490), - [anon_sym_if] = ACTIONS(1488), - [anon_sym_for] = ACTIONS(1488), - [anon_sym_foreach] = ACTIONS(1488), - [anon_sym_foreach_r] = ACTIONS(1488), - [anon_sym_while] = ACTIONS(1488), - [anon_sym_do] = ACTIONS(1488), - [anon_sym_int] = ACTIONS(1488), - [anon_sym_PLUS] = ACTIONS(1488), - [anon_sym_DASH] = ACTIONS(1488), - [anon_sym_STAR] = ACTIONS(1490), - [anon_sym_asm] = ACTIONS(1488), - [anon_sym_DOLLARassert] = ACTIONS(1488), - [anon_sym_DOLLARerror] = ACTIONS(1488), - [anon_sym_DOLLARecho] = ACTIONS(1488), - [anon_sym_DOLLARif] = ACTIONS(1488), - [anon_sym_DOLLARswitch] = ACTIONS(1488), - [anon_sym_DOLLARfor] = ACTIONS(1488), - [anon_sym_DOLLARforeach] = ACTIONS(1488), - [anon_sym_DOLLARalignof] = ACTIONS(1488), - [anon_sym_DOLLARextnameof] = ACTIONS(1488), - [anon_sym_DOLLARnameof] = ACTIONS(1488), - [anon_sym_DOLLARoffsetof] = ACTIONS(1488), - [anon_sym_DOLLARqnameof] = ACTIONS(1488), - [anon_sym_DOLLARvaconst] = ACTIONS(1488), - [anon_sym_DOLLARvaarg] = ACTIONS(1488), - [anon_sym_DOLLARvaref] = ACTIONS(1488), - [anon_sym_DOLLARvaexpr] = ACTIONS(1488), - [anon_sym_true] = ACTIONS(1488), - [anon_sym_false] = ACTIONS(1488), - [anon_sym_null] = ACTIONS(1488), - [anon_sym_DOLLARvacount] = ACTIONS(1488), - [anon_sym_DOLLARappend] = ACTIONS(1488), - [anon_sym_DOLLARconcat] = ACTIONS(1488), - [anon_sym_DOLLAReval] = ACTIONS(1488), - [anon_sym_DOLLARis_const] = ACTIONS(1488), - [anon_sym_DOLLARsizeof] = ACTIONS(1488), - [anon_sym_DOLLARstringify] = ACTIONS(1488), - [anon_sym_DOLLARand] = ACTIONS(1488), - [anon_sym_DOLLARdefined] = ACTIONS(1488), - [anon_sym_DOLLARembed] = ACTIONS(1488), - [anon_sym_DOLLARor] = ACTIONS(1488), - [anon_sym_DOLLARfeature] = ACTIONS(1488), - [anon_sym_DOLLARassignable] = ACTIONS(1488), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1490), - [anon_sym_DASH_DASH] = ACTIONS(1490), - [anon_sym_typeid] = ACTIONS(1488), - [anon_sym_LBRACE_PIPE] = ACTIONS(1490), - [anon_sym_PIPE_RBRACE] = ACTIONS(1490), - [anon_sym_void] = ACTIONS(1488), - [anon_sym_bool] = ACTIONS(1488), - [anon_sym_char] = ACTIONS(1488), - [anon_sym_ichar] = ACTIONS(1488), - [anon_sym_short] = ACTIONS(1488), - [anon_sym_ushort] = ACTIONS(1488), - [anon_sym_uint] = ACTIONS(1488), - [anon_sym_long] = ACTIONS(1488), - [anon_sym_ulong] = ACTIONS(1488), - [anon_sym_int128] = ACTIONS(1488), - [anon_sym_uint128] = ACTIONS(1488), - [anon_sym_float] = ACTIONS(1488), - [anon_sym_double] = ACTIONS(1488), - [anon_sym_float16] = ACTIONS(1488), - [anon_sym_bfloat16] = ACTIONS(1488), - [anon_sym_float128] = ACTIONS(1488), - [anon_sym_iptr] = ACTIONS(1488), - [anon_sym_uptr] = ACTIONS(1488), - [anon_sym_isz] = ACTIONS(1488), - [anon_sym_usz] = ACTIONS(1488), - [anon_sym_anyfault] = ACTIONS(1488), - [anon_sym_any] = ACTIONS(1488), - [anon_sym_DOLLARtypeof] = ACTIONS(1488), - [anon_sym_DOLLARtypefrom] = ACTIONS(1488), - [anon_sym_DOLLARvatype] = ACTIONS(1488), - [anon_sym_DOLLARevaltype] = ACTIONS(1488), - [sym_real_literal] = ACTIONS(1490), + [sym_ident] = ACTIONS(1367), + [sym_integer_literal] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1369), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_BQUOTE] = ACTIONS(1369), + [sym_bytes_literal] = ACTIONS(1369), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1367), + [sym_at_ident] = ACTIONS(1369), + [sym_hash_ident] = ACTIONS(1369), + [sym_type_ident] = ACTIONS(1369), + [sym_ct_type_ident] = ACTIONS(1369), + [sym_const_ident] = ACTIONS(1367), + [sym_builtin] = ACTIONS(1369), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(1367), + [anon_sym_static] = ACTIONS(1367), + [anon_sym_tlocal] = ACTIONS(1367), + [anon_sym_SEMI] = ACTIONS(1369), + [anon_sym_fn] = ACTIONS(1367), + [anon_sym_LBRACE] = ACTIONS(1367), + [anon_sym_const] = ACTIONS(1367), + [anon_sym_var] = ACTIONS(1367), + [anon_sym_return] = ACTIONS(1367), + [anon_sym_continue] = ACTIONS(1367), + [anon_sym_break] = ACTIONS(1367), + [anon_sym_defer] = ACTIONS(1367), + [anon_sym_assert] = ACTIONS(1367), + [anon_sym_nextcase] = ACTIONS(1367), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_AMP_AMP] = ACTIONS(1369), + [anon_sym_if] = ACTIONS(1367), + [anon_sym_for] = ACTIONS(1367), + [anon_sym_foreach] = ACTIONS(1367), + [anon_sym_foreach_r] = ACTIONS(1367), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_do] = ACTIONS(1367), + [anon_sym_int] = ACTIONS(1367), + [anon_sym_PLUS] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_asm] = ACTIONS(1367), + [anon_sym_DOLLARassert] = ACTIONS(1367), + [anon_sym_DOLLARerror] = ACTIONS(1367), + [anon_sym_DOLLARecho] = ACTIONS(1367), + [anon_sym_DOLLARif] = ACTIONS(1367), + [anon_sym_DOLLARcase] = ACTIONS(1367), + [anon_sym_DOLLARdefault] = ACTIONS(1367), + [anon_sym_DOLLARswitch] = ACTIONS(1367), + [anon_sym_DOLLARendswitch] = ACTIONS(1367), + [anon_sym_DOLLARfor] = ACTIONS(1367), + [anon_sym_DOLLARforeach] = ACTIONS(1367), + [anon_sym_DOLLARalignof] = ACTIONS(1367), + [anon_sym_DOLLARextnameof] = ACTIONS(1367), + [anon_sym_DOLLARnameof] = ACTIONS(1367), + [anon_sym_DOLLARoffsetof] = ACTIONS(1367), + [anon_sym_DOLLARqnameof] = ACTIONS(1367), + [anon_sym_DOLLARvaconst] = ACTIONS(1367), + [anon_sym_DOLLARvaarg] = ACTIONS(1367), + [anon_sym_DOLLARvaref] = ACTIONS(1367), + [anon_sym_DOLLARvaexpr] = ACTIONS(1367), + [anon_sym_true] = ACTIONS(1367), + [anon_sym_false] = ACTIONS(1367), + [anon_sym_null] = ACTIONS(1367), + [anon_sym_DOLLARvacount] = ACTIONS(1367), + [anon_sym_DOLLARappend] = ACTIONS(1367), + [anon_sym_DOLLARconcat] = ACTIONS(1367), + [anon_sym_DOLLAReval] = ACTIONS(1367), + [anon_sym_DOLLARis_const] = ACTIONS(1367), + [anon_sym_DOLLARsizeof] = ACTIONS(1367), + [anon_sym_DOLLARstringify] = ACTIONS(1367), + [anon_sym_DOLLARand] = ACTIONS(1367), + [anon_sym_DOLLARdefined] = ACTIONS(1367), + [anon_sym_DOLLARembed] = ACTIONS(1367), + [anon_sym_DOLLARor] = ACTIONS(1367), + [anon_sym_DOLLARfeature] = ACTIONS(1367), + [anon_sym_DOLLARassignable] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(1369), + [anon_sym_PLUS_PLUS] = ACTIONS(1369), + [anon_sym_DASH_DASH] = ACTIONS(1369), + [anon_sym_typeid] = ACTIONS(1367), + [anon_sym_LBRACE_PIPE] = ACTIONS(1369), + [anon_sym_void] = ACTIONS(1367), + [anon_sym_bool] = ACTIONS(1367), + [anon_sym_char] = ACTIONS(1367), + [anon_sym_ichar] = ACTIONS(1367), + [anon_sym_short] = ACTIONS(1367), + [anon_sym_ushort] = ACTIONS(1367), + [anon_sym_uint] = ACTIONS(1367), + [anon_sym_long] = ACTIONS(1367), + [anon_sym_ulong] = ACTIONS(1367), + [anon_sym_int128] = ACTIONS(1367), + [anon_sym_uint128] = ACTIONS(1367), + [anon_sym_float] = ACTIONS(1367), + [anon_sym_double] = ACTIONS(1367), + [anon_sym_float16] = ACTIONS(1367), + [anon_sym_bfloat16] = ACTIONS(1367), + [anon_sym_float128] = ACTIONS(1367), + [anon_sym_iptr] = ACTIONS(1367), + [anon_sym_uptr] = ACTIONS(1367), + [anon_sym_isz] = ACTIONS(1367), + [anon_sym_usz] = ACTIONS(1367), + [anon_sym_anyfault] = ACTIONS(1367), + [anon_sym_any] = ACTIONS(1367), + [anon_sym_DOLLARtypeof] = ACTIONS(1367), + [anon_sym_DOLLARtypefrom] = ACTIONS(1367), + [anon_sym_DOLLARvatype] = ACTIONS(1367), + [anon_sym_DOLLARevaltype] = ACTIONS(1367), + [sym_real_literal] = ACTIONS(1369), }, [422] = { [sym_line_comment] = STATE(422), [sym_doc_comment] = STATE(422), [sym_block_comment] = STATE(422), - [sym_ident] = ACTIONS(1492), - [sym_integer_literal] = ACTIONS(1494), - [anon_sym_SQUOTE] = ACTIONS(1494), - [anon_sym_DQUOTE] = ACTIONS(1494), - [anon_sym_BQUOTE] = ACTIONS(1494), - [sym_bytes_literal] = ACTIONS(1494), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1492), - [sym_at_ident] = ACTIONS(1494), - [sym_hash_ident] = ACTIONS(1494), - [sym_type_ident] = ACTIONS(1494), - [sym_ct_type_ident] = ACTIONS(1494), - [sym_const_ident] = ACTIONS(1492), - [sym_builtin] = ACTIONS(1494), - [anon_sym_LPAREN] = ACTIONS(1494), - [anon_sym_AMP] = ACTIONS(1492), - [anon_sym_static] = ACTIONS(1492), - [anon_sym_tlocal] = ACTIONS(1492), - [anon_sym_SEMI] = ACTIONS(1494), - [anon_sym_fn] = ACTIONS(1492), - [anon_sym_LBRACE] = ACTIONS(1492), - [anon_sym_RBRACE] = ACTIONS(1494), - [anon_sym_const] = ACTIONS(1492), - [anon_sym_var] = ACTIONS(1492), - [anon_sym_return] = ACTIONS(1492), - [anon_sym_continue] = ACTIONS(1492), - [anon_sym_break] = ACTIONS(1492), - [anon_sym_defer] = ACTIONS(1492), - [anon_sym_assert] = ACTIONS(1492), - [anon_sym_case] = ACTIONS(1492), - [anon_sym_default] = ACTIONS(1492), - [anon_sym_nextcase] = ACTIONS(1492), - [anon_sym_switch] = ACTIONS(1492), - [anon_sym_AMP_AMP] = ACTIONS(1494), - [anon_sym_if] = ACTIONS(1492), - [anon_sym_for] = ACTIONS(1492), - [anon_sym_foreach] = ACTIONS(1492), - [anon_sym_foreach_r] = ACTIONS(1492), - [anon_sym_while] = ACTIONS(1492), - [anon_sym_do] = ACTIONS(1492), - [anon_sym_int] = ACTIONS(1492), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1492), - [anon_sym_STAR] = ACTIONS(1494), - [anon_sym_asm] = ACTIONS(1492), - [anon_sym_DOLLARassert] = ACTIONS(1492), - [anon_sym_DOLLARerror] = ACTIONS(1492), - [anon_sym_DOLLARecho] = ACTIONS(1492), - [anon_sym_DOLLARif] = ACTIONS(1492), - [anon_sym_DOLLARswitch] = ACTIONS(1492), - [anon_sym_DOLLARfor] = ACTIONS(1492), - [anon_sym_DOLLARforeach] = ACTIONS(1492), - [anon_sym_DOLLARalignof] = ACTIONS(1492), - [anon_sym_DOLLARextnameof] = ACTIONS(1492), - [anon_sym_DOLLARnameof] = ACTIONS(1492), - [anon_sym_DOLLARoffsetof] = ACTIONS(1492), - [anon_sym_DOLLARqnameof] = ACTIONS(1492), - [anon_sym_DOLLARvaconst] = ACTIONS(1492), - [anon_sym_DOLLARvaarg] = ACTIONS(1492), - [anon_sym_DOLLARvaref] = ACTIONS(1492), - [anon_sym_DOLLARvaexpr] = ACTIONS(1492), - [anon_sym_true] = ACTIONS(1492), - [anon_sym_false] = ACTIONS(1492), - [anon_sym_null] = ACTIONS(1492), - [anon_sym_DOLLARvacount] = ACTIONS(1492), - [anon_sym_DOLLARappend] = ACTIONS(1492), - [anon_sym_DOLLARconcat] = ACTIONS(1492), - [anon_sym_DOLLAReval] = ACTIONS(1492), - [anon_sym_DOLLARis_const] = ACTIONS(1492), - [anon_sym_DOLLARsizeof] = ACTIONS(1492), - [anon_sym_DOLLARstringify] = ACTIONS(1492), - [anon_sym_DOLLARand] = ACTIONS(1492), - [anon_sym_DOLLARdefined] = ACTIONS(1492), - [anon_sym_DOLLARembed] = ACTIONS(1492), - [anon_sym_DOLLARor] = ACTIONS(1492), - [anon_sym_DOLLARfeature] = ACTIONS(1492), - [anon_sym_DOLLARassignable] = ACTIONS(1492), - [anon_sym_BANG] = ACTIONS(1494), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_DASH_DASH] = ACTIONS(1494), - [anon_sym_typeid] = ACTIONS(1492), - [anon_sym_LBRACE_PIPE] = ACTIONS(1494), - [anon_sym_PIPE_RBRACE] = ACTIONS(1494), - [anon_sym_void] = ACTIONS(1492), - [anon_sym_bool] = ACTIONS(1492), - [anon_sym_char] = ACTIONS(1492), - [anon_sym_ichar] = ACTIONS(1492), - [anon_sym_short] = ACTIONS(1492), - [anon_sym_ushort] = ACTIONS(1492), - [anon_sym_uint] = ACTIONS(1492), - [anon_sym_long] = ACTIONS(1492), - [anon_sym_ulong] = ACTIONS(1492), - [anon_sym_int128] = ACTIONS(1492), - [anon_sym_uint128] = ACTIONS(1492), - [anon_sym_float] = ACTIONS(1492), - [anon_sym_double] = ACTIONS(1492), - [anon_sym_float16] = ACTIONS(1492), - [anon_sym_bfloat16] = ACTIONS(1492), - [anon_sym_float128] = ACTIONS(1492), - [anon_sym_iptr] = ACTIONS(1492), - [anon_sym_uptr] = ACTIONS(1492), - [anon_sym_isz] = ACTIONS(1492), - [anon_sym_usz] = ACTIONS(1492), - [anon_sym_anyfault] = ACTIONS(1492), - [anon_sym_any] = ACTIONS(1492), - [anon_sym_DOLLARtypeof] = ACTIONS(1492), - [anon_sym_DOLLARtypefrom] = ACTIONS(1492), - [anon_sym_DOLLARvatype] = ACTIONS(1492), - [anon_sym_DOLLARevaltype] = ACTIONS(1492), - [sym_real_literal] = ACTIONS(1494), + [sym_ident] = ACTIONS(1509), + [sym_integer_literal] = ACTIONS(1511), + [anon_sym_SQUOTE] = ACTIONS(1511), + [anon_sym_DQUOTE] = ACTIONS(1511), + [anon_sym_BQUOTE] = ACTIONS(1511), + [sym_bytes_literal] = ACTIONS(1511), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1509), + [sym_at_ident] = ACTIONS(1511), + [sym_hash_ident] = ACTIONS(1511), + [sym_type_ident] = ACTIONS(1511), + [sym_ct_type_ident] = ACTIONS(1511), + [sym_const_ident] = ACTIONS(1509), + [sym_builtin] = ACTIONS(1511), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_tlocal] = ACTIONS(1509), + [anon_sym_SEMI] = ACTIONS(1511), + [anon_sym_fn] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1509), + [anon_sym_const] = ACTIONS(1509), + [anon_sym_var] = ACTIONS(1509), + [anon_sym_return] = ACTIONS(1509), + [anon_sym_continue] = ACTIONS(1509), + [anon_sym_break] = ACTIONS(1509), + [anon_sym_defer] = ACTIONS(1509), + [anon_sym_assert] = ACTIONS(1509), + [anon_sym_nextcase] = ACTIONS(1509), + [anon_sym_switch] = ACTIONS(1509), + [anon_sym_AMP_AMP] = ACTIONS(1511), + [anon_sym_if] = ACTIONS(1509), + [anon_sym_for] = ACTIONS(1509), + [anon_sym_foreach] = ACTIONS(1509), + [anon_sym_foreach_r] = ACTIONS(1509), + [anon_sym_while] = ACTIONS(1509), + [anon_sym_do] = ACTIONS(1509), + [anon_sym_int] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(1511), + [anon_sym_asm] = ACTIONS(1509), + [anon_sym_DOLLARassert] = ACTIONS(1509), + [anon_sym_DOLLARerror] = ACTIONS(1509), + [anon_sym_DOLLARecho] = ACTIONS(1509), + [anon_sym_DOLLARif] = ACTIONS(1509), + [anon_sym_DOLLARcase] = ACTIONS(1509), + [anon_sym_DOLLARdefault] = ACTIONS(1509), + [anon_sym_DOLLARswitch] = ACTIONS(1509), + [anon_sym_DOLLARendswitch] = ACTIONS(1509), + [anon_sym_DOLLARfor] = ACTIONS(1509), + [anon_sym_DOLLARforeach] = ACTIONS(1509), + [anon_sym_DOLLARalignof] = ACTIONS(1509), + [anon_sym_DOLLARextnameof] = ACTIONS(1509), + [anon_sym_DOLLARnameof] = ACTIONS(1509), + [anon_sym_DOLLARoffsetof] = ACTIONS(1509), + [anon_sym_DOLLARqnameof] = ACTIONS(1509), + [anon_sym_DOLLARvaconst] = ACTIONS(1509), + [anon_sym_DOLLARvaarg] = ACTIONS(1509), + [anon_sym_DOLLARvaref] = ACTIONS(1509), + [anon_sym_DOLLARvaexpr] = ACTIONS(1509), + [anon_sym_true] = ACTIONS(1509), + [anon_sym_false] = ACTIONS(1509), + [anon_sym_null] = ACTIONS(1509), + [anon_sym_DOLLARvacount] = ACTIONS(1509), + [anon_sym_DOLLARappend] = ACTIONS(1509), + [anon_sym_DOLLARconcat] = ACTIONS(1509), + [anon_sym_DOLLAReval] = ACTIONS(1509), + [anon_sym_DOLLARis_const] = ACTIONS(1509), + [anon_sym_DOLLARsizeof] = ACTIONS(1509), + [anon_sym_DOLLARstringify] = ACTIONS(1509), + [anon_sym_DOLLARand] = ACTIONS(1509), + [anon_sym_DOLLARdefined] = ACTIONS(1509), + [anon_sym_DOLLARembed] = ACTIONS(1509), + [anon_sym_DOLLARor] = ACTIONS(1509), + [anon_sym_DOLLARfeature] = ACTIONS(1509), + [anon_sym_DOLLARassignable] = ACTIONS(1509), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_PLUS_PLUS] = ACTIONS(1511), + [anon_sym_DASH_DASH] = ACTIONS(1511), + [anon_sym_typeid] = ACTIONS(1509), + [anon_sym_LBRACE_PIPE] = ACTIONS(1511), + [anon_sym_void] = ACTIONS(1509), + [anon_sym_bool] = ACTIONS(1509), + [anon_sym_char] = ACTIONS(1509), + [anon_sym_ichar] = ACTIONS(1509), + [anon_sym_short] = ACTIONS(1509), + [anon_sym_ushort] = ACTIONS(1509), + [anon_sym_uint] = ACTIONS(1509), + [anon_sym_long] = ACTIONS(1509), + [anon_sym_ulong] = ACTIONS(1509), + [anon_sym_int128] = ACTIONS(1509), + [anon_sym_uint128] = ACTIONS(1509), + [anon_sym_float] = ACTIONS(1509), + [anon_sym_double] = ACTIONS(1509), + [anon_sym_float16] = ACTIONS(1509), + [anon_sym_bfloat16] = ACTIONS(1509), + [anon_sym_float128] = ACTIONS(1509), + [anon_sym_iptr] = ACTIONS(1509), + [anon_sym_uptr] = ACTIONS(1509), + [anon_sym_isz] = ACTIONS(1509), + [anon_sym_usz] = ACTIONS(1509), + [anon_sym_anyfault] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_DOLLARtypeof] = ACTIONS(1509), + [anon_sym_DOLLARtypefrom] = ACTIONS(1509), + [anon_sym_DOLLARvatype] = ACTIONS(1509), + [anon_sym_DOLLARevaltype] = ACTIONS(1509), + [sym_real_literal] = ACTIONS(1511), }, [423] = { [sym_line_comment] = STATE(423), [sym_doc_comment] = STATE(423), [sym_block_comment] = STATE(423), - [sym_ident] = ACTIONS(1496), - [sym_integer_literal] = ACTIONS(1498), - [anon_sym_SQUOTE] = ACTIONS(1498), - [anon_sym_DQUOTE] = ACTIONS(1498), - [anon_sym_BQUOTE] = ACTIONS(1498), - [sym_bytes_literal] = ACTIONS(1498), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1496), - [sym_at_ident] = ACTIONS(1498), - [sym_hash_ident] = ACTIONS(1498), - [sym_type_ident] = ACTIONS(1498), - [sym_ct_type_ident] = ACTIONS(1498), - [sym_const_ident] = ACTIONS(1496), - [sym_builtin] = ACTIONS(1498), - [anon_sym_LPAREN] = ACTIONS(1498), - [anon_sym_AMP] = ACTIONS(1496), - [anon_sym_static] = ACTIONS(1496), - [anon_sym_tlocal] = ACTIONS(1496), - [anon_sym_SEMI] = ACTIONS(1498), - [anon_sym_fn] = ACTIONS(1496), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_RBRACE] = ACTIONS(1498), - [anon_sym_const] = ACTIONS(1496), - [anon_sym_var] = ACTIONS(1496), - [anon_sym_return] = ACTIONS(1496), - [anon_sym_continue] = ACTIONS(1496), - [anon_sym_break] = ACTIONS(1496), - [anon_sym_defer] = ACTIONS(1496), - [anon_sym_assert] = ACTIONS(1496), - [anon_sym_case] = ACTIONS(1496), - [anon_sym_default] = ACTIONS(1496), - [anon_sym_nextcase] = ACTIONS(1496), - [anon_sym_switch] = ACTIONS(1496), - [anon_sym_AMP_AMP] = ACTIONS(1498), - [anon_sym_if] = ACTIONS(1496), - [anon_sym_for] = ACTIONS(1496), - [anon_sym_foreach] = ACTIONS(1496), - [anon_sym_foreach_r] = ACTIONS(1496), - [anon_sym_while] = ACTIONS(1496), - [anon_sym_do] = ACTIONS(1496), - [anon_sym_int] = ACTIONS(1496), - [anon_sym_PLUS] = ACTIONS(1496), - [anon_sym_DASH] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(1498), - [anon_sym_asm] = ACTIONS(1496), - [anon_sym_DOLLARassert] = ACTIONS(1496), - [anon_sym_DOLLARerror] = ACTIONS(1496), - [anon_sym_DOLLARecho] = ACTIONS(1496), - [anon_sym_DOLLARif] = ACTIONS(1496), - [anon_sym_DOLLARswitch] = ACTIONS(1496), - [anon_sym_DOLLARfor] = ACTIONS(1496), - [anon_sym_DOLLARforeach] = ACTIONS(1496), - [anon_sym_DOLLARalignof] = ACTIONS(1496), - [anon_sym_DOLLARextnameof] = ACTIONS(1496), - [anon_sym_DOLLARnameof] = ACTIONS(1496), - [anon_sym_DOLLARoffsetof] = ACTIONS(1496), - [anon_sym_DOLLARqnameof] = ACTIONS(1496), - [anon_sym_DOLLARvaconst] = ACTIONS(1496), - [anon_sym_DOLLARvaarg] = ACTIONS(1496), - [anon_sym_DOLLARvaref] = ACTIONS(1496), - [anon_sym_DOLLARvaexpr] = ACTIONS(1496), - [anon_sym_true] = ACTIONS(1496), - [anon_sym_false] = ACTIONS(1496), - [anon_sym_null] = ACTIONS(1496), - [anon_sym_DOLLARvacount] = ACTIONS(1496), - [anon_sym_DOLLARappend] = ACTIONS(1496), - [anon_sym_DOLLARconcat] = ACTIONS(1496), - [anon_sym_DOLLAReval] = ACTIONS(1496), - [anon_sym_DOLLARis_const] = ACTIONS(1496), - [anon_sym_DOLLARsizeof] = ACTIONS(1496), - [anon_sym_DOLLARstringify] = ACTIONS(1496), - [anon_sym_DOLLARand] = ACTIONS(1496), - [anon_sym_DOLLARdefined] = ACTIONS(1496), - [anon_sym_DOLLARembed] = ACTIONS(1496), - [anon_sym_DOLLARor] = ACTIONS(1496), - [anon_sym_DOLLARfeature] = ACTIONS(1496), - [anon_sym_DOLLARassignable] = ACTIONS(1496), - [anon_sym_BANG] = ACTIONS(1498), - [anon_sym_TILDE] = ACTIONS(1498), - [anon_sym_PLUS_PLUS] = ACTIONS(1498), - [anon_sym_DASH_DASH] = ACTIONS(1498), - [anon_sym_typeid] = ACTIONS(1496), - [anon_sym_LBRACE_PIPE] = ACTIONS(1498), - [anon_sym_PIPE_RBRACE] = ACTIONS(1498), - [anon_sym_void] = ACTIONS(1496), - [anon_sym_bool] = ACTIONS(1496), - [anon_sym_char] = ACTIONS(1496), - [anon_sym_ichar] = ACTIONS(1496), - [anon_sym_short] = ACTIONS(1496), - [anon_sym_ushort] = ACTIONS(1496), - [anon_sym_uint] = ACTIONS(1496), - [anon_sym_long] = ACTIONS(1496), - [anon_sym_ulong] = ACTIONS(1496), - [anon_sym_int128] = ACTIONS(1496), - [anon_sym_uint128] = ACTIONS(1496), - [anon_sym_float] = ACTIONS(1496), - [anon_sym_double] = ACTIONS(1496), - [anon_sym_float16] = ACTIONS(1496), - [anon_sym_bfloat16] = ACTIONS(1496), - [anon_sym_float128] = ACTIONS(1496), - [anon_sym_iptr] = ACTIONS(1496), - [anon_sym_uptr] = ACTIONS(1496), - [anon_sym_isz] = ACTIONS(1496), - [anon_sym_usz] = ACTIONS(1496), - [anon_sym_anyfault] = ACTIONS(1496), - [anon_sym_any] = ACTIONS(1496), - [anon_sym_DOLLARtypeof] = ACTIONS(1496), - [anon_sym_DOLLARtypefrom] = ACTIONS(1496), - [anon_sym_DOLLARvatype] = ACTIONS(1496), - [anon_sym_DOLLARevaltype] = ACTIONS(1496), - [sym_real_literal] = ACTIONS(1498), + [sym_ident] = ACTIONS(1375), + [sym_integer_literal] = ACTIONS(1377), + [anon_sym_SQUOTE] = ACTIONS(1377), + [anon_sym_DQUOTE] = ACTIONS(1377), + [anon_sym_BQUOTE] = ACTIONS(1377), + [sym_bytes_literal] = ACTIONS(1377), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1375), + [sym_at_ident] = ACTIONS(1377), + [sym_hash_ident] = ACTIONS(1377), + [sym_type_ident] = ACTIONS(1377), + [sym_ct_type_ident] = ACTIONS(1377), + [sym_const_ident] = ACTIONS(1375), + [sym_builtin] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_static] = ACTIONS(1375), + [anon_sym_tlocal] = ACTIONS(1375), + [anon_sym_SEMI] = ACTIONS(1377), + [anon_sym_fn] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1375), + [anon_sym_const] = ACTIONS(1375), + [anon_sym_var] = ACTIONS(1375), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_continue] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1375), + [anon_sym_defer] = ACTIONS(1375), + [anon_sym_assert] = ACTIONS(1375), + [anon_sym_nextcase] = ACTIONS(1375), + [anon_sym_switch] = ACTIONS(1375), + [anon_sym_AMP_AMP] = ACTIONS(1377), + [anon_sym_if] = ACTIONS(1375), + [anon_sym_for] = ACTIONS(1375), + [anon_sym_foreach] = ACTIONS(1375), + [anon_sym_foreach_r] = ACTIONS(1375), + [anon_sym_while] = ACTIONS(1375), + [anon_sym_do] = ACTIONS(1375), + [anon_sym_int] = ACTIONS(1375), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_asm] = ACTIONS(1375), + [anon_sym_DOLLARassert] = ACTIONS(1375), + [anon_sym_DOLLARerror] = ACTIONS(1375), + [anon_sym_DOLLARecho] = ACTIONS(1375), + [anon_sym_DOLLARif] = ACTIONS(1375), + [anon_sym_DOLLARcase] = ACTIONS(1375), + [anon_sym_DOLLARdefault] = ACTIONS(1375), + [anon_sym_DOLLARswitch] = ACTIONS(1375), + [anon_sym_DOLLARendswitch] = ACTIONS(1375), + [anon_sym_DOLLARfor] = ACTIONS(1375), + [anon_sym_DOLLARforeach] = ACTIONS(1375), + [anon_sym_DOLLARalignof] = ACTIONS(1375), + [anon_sym_DOLLARextnameof] = ACTIONS(1375), + [anon_sym_DOLLARnameof] = ACTIONS(1375), + [anon_sym_DOLLARoffsetof] = ACTIONS(1375), + [anon_sym_DOLLARqnameof] = ACTIONS(1375), + [anon_sym_DOLLARvaconst] = ACTIONS(1375), + [anon_sym_DOLLARvaarg] = ACTIONS(1375), + [anon_sym_DOLLARvaref] = ACTIONS(1375), + [anon_sym_DOLLARvaexpr] = ACTIONS(1375), + [anon_sym_true] = ACTIONS(1375), + [anon_sym_false] = ACTIONS(1375), + [anon_sym_null] = ACTIONS(1375), + [anon_sym_DOLLARvacount] = ACTIONS(1375), + [anon_sym_DOLLARappend] = ACTIONS(1375), + [anon_sym_DOLLARconcat] = ACTIONS(1375), + [anon_sym_DOLLAReval] = ACTIONS(1375), + [anon_sym_DOLLARis_const] = ACTIONS(1375), + [anon_sym_DOLLARsizeof] = ACTIONS(1375), + [anon_sym_DOLLARstringify] = ACTIONS(1375), + [anon_sym_DOLLARand] = ACTIONS(1375), + [anon_sym_DOLLARdefined] = ACTIONS(1375), + [anon_sym_DOLLARembed] = ACTIONS(1375), + [anon_sym_DOLLARor] = ACTIONS(1375), + [anon_sym_DOLLARfeature] = ACTIONS(1375), + [anon_sym_DOLLARassignable] = ACTIONS(1375), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_TILDE] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_typeid] = ACTIONS(1375), + [anon_sym_LBRACE_PIPE] = ACTIONS(1377), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_bool] = ACTIONS(1375), + [anon_sym_char] = ACTIONS(1375), + [anon_sym_ichar] = ACTIONS(1375), + [anon_sym_short] = ACTIONS(1375), + [anon_sym_ushort] = ACTIONS(1375), + [anon_sym_uint] = ACTIONS(1375), + [anon_sym_long] = ACTIONS(1375), + [anon_sym_ulong] = ACTIONS(1375), + [anon_sym_int128] = ACTIONS(1375), + [anon_sym_uint128] = ACTIONS(1375), + [anon_sym_float] = ACTIONS(1375), + [anon_sym_double] = ACTIONS(1375), + [anon_sym_float16] = ACTIONS(1375), + [anon_sym_bfloat16] = ACTIONS(1375), + [anon_sym_float128] = ACTIONS(1375), + [anon_sym_iptr] = ACTIONS(1375), + [anon_sym_uptr] = ACTIONS(1375), + [anon_sym_isz] = ACTIONS(1375), + [anon_sym_usz] = ACTIONS(1375), + [anon_sym_anyfault] = ACTIONS(1375), + [anon_sym_any] = ACTIONS(1375), + [anon_sym_DOLLARtypeof] = ACTIONS(1375), + [anon_sym_DOLLARtypefrom] = ACTIONS(1375), + [anon_sym_DOLLARvatype] = ACTIONS(1375), + [anon_sym_DOLLARevaltype] = ACTIONS(1375), + [sym_real_literal] = ACTIONS(1377), }, [424] = { [sym_line_comment] = STATE(424), [sym_doc_comment] = STATE(424), [sym_block_comment] = STATE(424), - [sym_ident] = ACTIONS(1382), - [sym_integer_literal] = ACTIONS(1384), - [anon_sym_SQUOTE] = ACTIONS(1384), - [anon_sym_DQUOTE] = ACTIONS(1384), - [anon_sym_BQUOTE] = ACTIONS(1384), - [sym_bytes_literal] = ACTIONS(1384), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1382), - [sym_at_ident] = ACTIONS(1384), - [sym_hash_ident] = ACTIONS(1384), - [sym_type_ident] = ACTIONS(1384), - [sym_ct_type_ident] = ACTIONS(1384), - [sym_const_ident] = ACTIONS(1382), - [sym_builtin] = ACTIONS(1384), - [anon_sym_LPAREN] = ACTIONS(1384), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_static] = ACTIONS(1382), - [anon_sym_tlocal] = ACTIONS(1382), - [anon_sym_SEMI] = ACTIONS(1384), - [anon_sym_fn] = ACTIONS(1382), - [anon_sym_LBRACE] = ACTIONS(1382), - [anon_sym_const] = ACTIONS(1382), - [anon_sym_var] = ACTIONS(1382), - [anon_sym_return] = ACTIONS(1382), - [anon_sym_continue] = ACTIONS(1382), - [anon_sym_break] = ACTIONS(1382), - [anon_sym_defer] = ACTIONS(1382), - [anon_sym_assert] = ACTIONS(1382), - [anon_sym_nextcase] = ACTIONS(1382), - [anon_sym_switch] = ACTIONS(1382), - [anon_sym_AMP_AMP] = ACTIONS(1384), - [anon_sym_if] = ACTIONS(1382), - [anon_sym_else] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1382), - [anon_sym_foreach] = ACTIONS(1382), - [anon_sym_foreach_r] = ACTIONS(1382), - [anon_sym_while] = ACTIONS(1382), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_int] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_asm] = ACTIONS(1382), - [anon_sym_DOLLARassert] = ACTIONS(1382), - [anon_sym_DOLLARerror] = ACTIONS(1382), - [anon_sym_DOLLARecho] = ACTIONS(1382), - [anon_sym_DOLLARif] = ACTIONS(1382), - [anon_sym_DOLLARcase] = ACTIONS(1382), - [anon_sym_DOLLARdefault] = ACTIONS(1382), - [anon_sym_DOLLARswitch] = ACTIONS(1382), - [anon_sym_DOLLARendswitch] = ACTIONS(1382), - [anon_sym_DOLLARfor] = ACTIONS(1382), - [anon_sym_DOLLARforeach] = ACTIONS(1382), - [anon_sym_DOLLARalignof] = ACTIONS(1382), - [anon_sym_DOLLARextnameof] = ACTIONS(1382), - [anon_sym_DOLLARnameof] = ACTIONS(1382), - [anon_sym_DOLLARoffsetof] = ACTIONS(1382), - [anon_sym_DOLLARqnameof] = ACTIONS(1382), - [anon_sym_DOLLARvaconst] = ACTIONS(1382), - [anon_sym_DOLLARvaarg] = ACTIONS(1382), - [anon_sym_DOLLARvaref] = ACTIONS(1382), - [anon_sym_DOLLARvaexpr] = ACTIONS(1382), - [anon_sym_true] = ACTIONS(1382), - [anon_sym_false] = ACTIONS(1382), - [anon_sym_null] = ACTIONS(1382), - [anon_sym_DOLLARvacount] = ACTIONS(1382), - [anon_sym_DOLLARappend] = ACTIONS(1382), - [anon_sym_DOLLARconcat] = ACTIONS(1382), - [anon_sym_DOLLAReval] = ACTIONS(1382), - [anon_sym_DOLLARis_const] = ACTIONS(1382), - [anon_sym_DOLLARsizeof] = ACTIONS(1382), - [anon_sym_DOLLARstringify] = ACTIONS(1382), - [anon_sym_DOLLARand] = ACTIONS(1382), - [anon_sym_DOLLARdefined] = ACTIONS(1382), - [anon_sym_DOLLARembed] = ACTIONS(1382), - [anon_sym_DOLLARor] = ACTIONS(1382), - [anon_sym_DOLLARfeature] = ACTIONS(1382), - [anon_sym_DOLLARassignable] = ACTIONS(1382), - [anon_sym_BANG] = ACTIONS(1384), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_PLUS_PLUS] = ACTIONS(1384), - [anon_sym_DASH_DASH] = ACTIONS(1384), - [anon_sym_typeid] = ACTIONS(1382), - [anon_sym_LBRACE_PIPE] = ACTIONS(1384), - [anon_sym_void] = ACTIONS(1382), - [anon_sym_bool] = ACTIONS(1382), - [anon_sym_char] = ACTIONS(1382), - [anon_sym_ichar] = ACTIONS(1382), - [anon_sym_short] = ACTIONS(1382), - [anon_sym_ushort] = ACTIONS(1382), - [anon_sym_uint] = ACTIONS(1382), - [anon_sym_long] = ACTIONS(1382), - [anon_sym_ulong] = ACTIONS(1382), - [anon_sym_int128] = ACTIONS(1382), - [anon_sym_uint128] = ACTIONS(1382), - [anon_sym_float] = ACTIONS(1382), - [anon_sym_double] = ACTIONS(1382), - [anon_sym_float16] = ACTIONS(1382), - [anon_sym_bfloat16] = ACTIONS(1382), - [anon_sym_float128] = ACTIONS(1382), - [anon_sym_iptr] = ACTIONS(1382), - [anon_sym_uptr] = ACTIONS(1382), - [anon_sym_isz] = ACTIONS(1382), - [anon_sym_usz] = ACTIONS(1382), - [anon_sym_anyfault] = ACTIONS(1382), - [anon_sym_any] = ACTIONS(1382), - [anon_sym_DOLLARtypeof] = ACTIONS(1382), - [anon_sym_DOLLARtypefrom] = ACTIONS(1382), - [anon_sym_DOLLARvatype] = ACTIONS(1382), - [anon_sym_DOLLARevaltype] = ACTIONS(1382), - [sym_real_literal] = ACTIONS(1384), + [sym_ident] = ACTIONS(1379), + [sym_integer_literal] = ACTIONS(1381), + [anon_sym_SQUOTE] = ACTIONS(1381), + [anon_sym_DQUOTE] = ACTIONS(1381), + [anon_sym_BQUOTE] = ACTIONS(1381), + [sym_bytes_literal] = ACTIONS(1381), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1379), + [sym_at_ident] = ACTIONS(1381), + [sym_hash_ident] = ACTIONS(1381), + [sym_type_ident] = ACTIONS(1381), + [sym_ct_type_ident] = ACTIONS(1381), + [sym_const_ident] = ACTIONS(1379), + [sym_builtin] = ACTIONS(1381), + [anon_sym_LPAREN] = ACTIONS(1381), + [anon_sym_AMP] = ACTIONS(1379), + [anon_sym_static] = ACTIONS(1379), + [anon_sym_tlocal] = ACTIONS(1379), + [anon_sym_SEMI] = ACTIONS(1381), + [anon_sym_fn] = ACTIONS(1379), + [anon_sym_LBRACE] = ACTIONS(1379), + [anon_sym_const] = ACTIONS(1379), + [anon_sym_var] = ACTIONS(1379), + [anon_sym_return] = ACTIONS(1379), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_break] = ACTIONS(1379), + [anon_sym_defer] = ACTIONS(1379), + [anon_sym_assert] = ACTIONS(1379), + [anon_sym_nextcase] = ACTIONS(1379), + [anon_sym_switch] = ACTIONS(1379), + [anon_sym_AMP_AMP] = ACTIONS(1381), + [anon_sym_if] = ACTIONS(1379), + [anon_sym_for] = ACTIONS(1379), + [anon_sym_foreach] = ACTIONS(1379), + [anon_sym_foreach_r] = ACTIONS(1379), + [anon_sym_while] = ACTIONS(1379), + [anon_sym_do] = ACTIONS(1379), + [anon_sym_int] = ACTIONS(1379), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(1381), + [anon_sym_asm] = ACTIONS(1379), + [anon_sym_DOLLARassert] = ACTIONS(1379), + [anon_sym_DOLLARerror] = ACTIONS(1379), + [anon_sym_DOLLARecho] = ACTIONS(1379), + [anon_sym_DOLLARif] = ACTIONS(1379), + [anon_sym_DOLLARcase] = ACTIONS(1379), + [anon_sym_DOLLARdefault] = ACTIONS(1379), + [anon_sym_DOLLARswitch] = ACTIONS(1379), + [anon_sym_DOLLARendswitch] = ACTIONS(1379), + [anon_sym_DOLLARfor] = ACTIONS(1379), + [anon_sym_DOLLARforeach] = ACTIONS(1379), + [anon_sym_DOLLARalignof] = ACTIONS(1379), + [anon_sym_DOLLARextnameof] = ACTIONS(1379), + [anon_sym_DOLLARnameof] = ACTIONS(1379), + [anon_sym_DOLLARoffsetof] = ACTIONS(1379), + [anon_sym_DOLLARqnameof] = ACTIONS(1379), + [anon_sym_DOLLARvaconst] = ACTIONS(1379), + [anon_sym_DOLLARvaarg] = ACTIONS(1379), + [anon_sym_DOLLARvaref] = ACTIONS(1379), + [anon_sym_DOLLARvaexpr] = ACTIONS(1379), + [anon_sym_true] = ACTIONS(1379), + [anon_sym_false] = ACTIONS(1379), + [anon_sym_null] = ACTIONS(1379), + [anon_sym_DOLLARvacount] = ACTIONS(1379), + [anon_sym_DOLLARappend] = ACTIONS(1379), + [anon_sym_DOLLARconcat] = ACTIONS(1379), + [anon_sym_DOLLAReval] = ACTIONS(1379), + [anon_sym_DOLLARis_const] = ACTIONS(1379), + [anon_sym_DOLLARsizeof] = ACTIONS(1379), + [anon_sym_DOLLARstringify] = ACTIONS(1379), + [anon_sym_DOLLARand] = ACTIONS(1379), + [anon_sym_DOLLARdefined] = ACTIONS(1379), + [anon_sym_DOLLARembed] = ACTIONS(1379), + [anon_sym_DOLLARor] = ACTIONS(1379), + [anon_sym_DOLLARfeature] = ACTIONS(1379), + [anon_sym_DOLLARassignable] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_PLUS_PLUS] = ACTIONS(1381), + [anon_sym_DASH_DASH] = ACTIONS(1381), + [anon_sym_typeid] = ACTIONS(1379), + [anon_sym_LBRACE_PIPE] = ACTIONS(1381), + [anon_sym_void] = ACTIONS(1379), + [anon_sym_bool] = ACTIONS(1379), + [anon_sym_char] = ACTIONS(1379), + [anon_sym_ichar] = ACTIONS(1379), + [anon_sym_short] = ACTIONS(1379), + [anon_sym_ushort] = ACTIONS(1379), + [anon_sym_uint] = ACTIONS(1379), + [anon_sym_long] = ACTIONS(1379), + [anon_sym_ulong] = ACTIONS(1379), + [anon_sym_int128] = ACTIONS(1379), + [anon_sym_uint128] = ACTIONS(1379), + [anon_sym_float] = ACTIONS(1379), + [anon_sym_double] = ACTIONS(1379), + [anon_sym_float16] = ACTIONS(1379), + [anon_sym_bfloat16] = ACTIONS(1379), + [anon_sym_float128] = ACTIONS(1379), + [anon_sym_iptr] = ACTIONS(1379), + [anon_sym_uptr] = ACTIONS(1379), + [anon_sym_isz] = ACTIONS(1379), + [anon_sym_usz] = ACTIONS(1379), + [anon_sym_anyfault] = ACTIONS(1379), + [anon_sym_any] = ACTIONS(1379), + [anon_sym_DOLLARtypeof] = ACTIONS(1379), + [anon_sym_DOLLARtypefrom] = ACTIONS(1379), + [anon_sym_DOLLARvatype] = ACTIONS(1379), + [anon_sym_DOLLARevaltype] = ACTIONS(1379), + [sym_real_literal] = ACTIONS(1381), }, [425] = { [sym_line_comment] = STATE(425), [sym_doc_comment] = STATE(425), [sym_block_comment] = STATE(425), - [sym_ident] = ACTIONS(1500), - [sym_integer_literal] = ACTIONS(1502), - [anon_sym_SQUOTE] = ACTIONS(1502), - [anon_sym_DQUOTE] = ACTIONS(1502), - [anon_sym_BQUOTE] = ACTIONS(1502), - [sym_bytes_literal] = ACTIONS(1502), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1500), - [sym_at_ident] = ACTIONS(1502), - [sym_hash_ident] = ACTIONS(1502), - [sym_type_ident] = ACTIONS(1502), - [sym_ct_type_ident] = ACTIONS(1502), - [sym_const_ident] = ACTIONS(1500), - [sym_builtin] = ACTIONS(1502), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_AMP] = ACTIONS(1500), - [anon_sym_static] = ACTIONS(1500), - [anon_sym_tlocal] = ACTIONS(1500), - [anon_sym_SEMI] = ACTIONS(1502), - [anon_sym_fn] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_RBRACE] = ACTIONS(1502), - [anon_sym_const] = ACTIONS(1500), - [anon_sym_var] = ACTIONS(1500), - [anon_sym_return] = ACTIONS(1500), - [anon_sym_continue] = ACTIONS(1500), - [anon_sym_break] = ACTIONS(1500), - [anon_sym_defer] = ACTIONS(1500), - [anon_sym_assert] = ACTIONS(1500), - [anon_sym_case] = ACTIONS(1500), - [anon_sym_default] = ACTIONS(1500), - [anon_sym_nextcase] = ACTIONS(1500), - [anon_sym_switch] = ACTIONS(1500), - [anon_sym_AMP_AMP] = ACTIONS(1502), - [anon_sym_if] = ACTIONS(1500), - [anon_sym_for] = ACTIONS(1500), - [anon_sym_foreach] = ACTIONS(1500), - [anon_sym_foreach_r] = ACTIONS(1500), - [anon_sym_while] = ACTIONS(1500), - [anon_sym_do] = ACTIONS(1500), - [anon_sym_int] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1500), - [anon_sym_DASH] = ACTIONS(1500), - [anon_sym_STAR] = ACTIONS(1502), - [anon_sym_asm] = ACTIONS(1500), - [anon_sym_DOLLARassert] = ACTIONS(1500), - [anon_sym_DOLLARerror] = ACTIONS(1500), - [anon_sym_DOLLARecho] = ACTIONS(1500), - [anon_sym_DOLLARif] = ACTIONS(1500), - [anon_sym_DOLLARswitch] = ACTIONS(1500), - [anon_sym_DOLLARfor] = ACTIONS(1500), - [anon_sym_DOLLARforeach] = ACTIONS(1500), - [anon_sym_DOLLARalignof] = ACTIONS(1500), - [anon_sym_DOLLARextnameof] = ACTIONS(1500), - [anon_sym_DOLLARnameof] = ACTIONS(1500), - [anon_sym_DOLLARoffsetof] = ACTIONS(1500), - [anon_sym_DOLLARqnameof] = ACTIONS(1500), - [anon_sym_DOLLARvaconst] = ACTIONS(1500), - [anon_sym_DOLLARvaarg] = ACTIONS(1500), - [anon_sym_DOLLARvaref] = ACTIONS(1500), - [anon_sym_DOLLARvaexpr] = ACTIONS(1500), - [anon_sym_true] = ACTIONS(1500), - [anon_sym_false] = ACTIONS(1500), - [anon_sym_null] = ACTIONS(1500), - [anon_sym_DOLLARvacount] = ACTIONS(1500), - [anon_sym_DOLLARappend] = ACTIONS(1500), - [anon_sym_DOLLARconcat] = ACTIONS(1500), - [anon_sym_DOLLAReval] = ACTIONS(1500), - [anon_sym_DOLLARis_const] = ACTIONS(1500), - [anon_sym_DOLLARsizeof] = ACTIONS(1500), - [anon_sym_DOLLARstringify] = ACTIONS(1500), - [anon_sym_DOLLARand] = ACTIONS(1500), - [anon_sym_DOLLARdefined] = ACTIONS(1500), - [anon_sym_DOLLARembed] = ACTIONS(1500), - [anon_sym_DOLLARor] = ACTIONS(1500), - [anon_sym_DOLLARfeature] = ACTIONS(1500), - [anon_sym_DOLLARassignable] = ACTIONS(1500), - [anon_sym_BANG] = ACTIONS(1502), - [anon_sym_TILDE] = ACTIONS(1502), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), - [anon_sym_DASH_DASH] = ACTIONS(1502), - [anon_sym_typeid] = ACTIONS(1500), - [anon_sym_LBRACE_PIPE] = ACTIONS(1502), - [anon_sym_PIPE_RBRACE] = ACTIONS(1502), - [anon_sym_void] = ACTIONS(1500), - [anon_sym_bool] = ACTIONS(1500), - [anon_sym_char] = ACTIONS(1500), - [anon_sym_ichar] = ACTIONS(1500), - [anon_sym_short] = ACTIONS(1500), - [anon_sym_ushort] = ACTIONS(1500), - [anon_sym_uint] = ACTIONS(1500), - [anon_sym_long] = ACTIONS(1500), - [anon_sym_ulong] = ACTIONS(1500), - [anon_sym_int128] = ACTIONS(1500), - [anon_sym_uint128] = ACTIONS(1500), - [anon_sym_float] = ACTIONS(1500), - [anon_sym_double] = ACTIONS(1500), - [anon_sym_float16] = ACTIONS(1500), - [anon_sym_bfloat16] = ACTIONS(1500), - [anon_sym_float128] = ACTIONS(1500), - [anon_sym_iptr] = ACTIONS(1500), - [anon_sym_uptr] = ACTIONS(1500), - [anon_sym_isz] = ACTIONS(1500), - [anon_sym_usz] = ACTIONS(1500), - [anon_sym_anyfault] = ACTIONS(1500), - [anon_sym_any] = ACTIONS(1500), - [anon_sym_DOLLARtypeof] = ACTIONS(1500), - [anon_sym_DOLLARtypefrom] = ACTIONS(1500), - [anon_sym_DOLLARvatype] = ACTIONS(1500), - [anon_sym_DOLLARevaltype] = ACTIONS(1500), - [sym_real_literal] = ACTIONS(1502), + [sym_ident] = ACTIONS(1383), + [sym_integer_literal] = ACTIONS(1385), + [anon_sym_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE] = ACTIONS(1385), + [anon_sym_BQUOTE] = ACTIONS(1385), + [sym_bytes_literal] = ACTIONS(1385), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1383), + [sym_at_ident] = ACTIONS(1385), + [sym_hash_ident] = ACTIONS(1385), + [sym_type_ident] = ACTIONS(1385), + [sym_ct_type_ident] = ACTIONS(1385), + [sym_const_ident] = ACTIONS(1383), + [sym_builtin] = ACTIONS(1385), + [anon_sym_LPAREN] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_static] = ACTIONS(1383), + [anon_sym_tlocal] = ACTIONS(1383), + [anon_sym_SEMI] = ACTIONS(1385), + [anon_sym_fn] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1383), + [anon_sym_const] = ACTIONS(1383), + [anon_sym_var] = ACTIONS(1383), + [anon_sym_return] = ACTIONS(1383), + [anon_sym_continue] = ACTIONS(1383), + [anon_sym_break] = ACTIONS(1383), + [anon_sym_defer] = ACTIONS(1383), + [anon_sym_assert] = ACTIONS(1383), + [anon_sym_nextcase] = ACTIONS(1383), + [anon_sym_switch] = ACTIONS(1383), + [anon_sym_AMP_AMP] = ACTIONS(1385), + [anon_sym_if] = ACTIONS(1383), + [anon_sym_for] = ACTIONS(1383), + [anon_sym_foreach] = ACTIONS(1383), + [anon_sym_foreach_r] = ACTIONS(1383), + [anon_sym_while] = ACTIONS(1383), + [anon_sym_do] = ACTIONS(1383), + [anon_sym_int] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1383), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_STAR] = ACTIONS(1385), + [anon_sym_asm] = ACTIONS(1383), + [anon_sym_DOLLARassert] = ACTIONS(1383), + [anon_sym_DOLLARerror] = ACTIONS(1383), + [anon_sym_DOLLARecho] = ACTIONS(1383), + [anon_sym_DOLLARif] = ACTIONS(1383), + [anon_sym_DOLLARcase] = ACTIONS(1383), + [anon_sym_DOLLARdefault] = ACTIONS(1383), + [anon_sym_DOLLARswitch] = ACTIONS(1383), + [anon_sym_DOLLARendswitch] = ACTIONS(1383), + [anon_sym_DOLLARfor] = ACTIONS(1383), + [anon_sym_DOLLARforeach] = ACTIONS(1383), + [anon_sym_DOLLARalignof] = ACTIONS(1383), + [anon_sym_DOLLARextnameof] = ACTIONS(1383), + [anon_sym_DOLLARnameof] = ACTIONS(1383), + [anon_sym_DOLLARoffsetof] = ACTIONS(1383), + [anon_sym_DOLLARqnameof] = ACTIONS(1383), + [anon_sym_DOLLARvaconst] = ACTIONS(1383), + [anon_sym_DOLLARvaarg] = ACTIONS(1383), + [anon_sym_DOLLARvaref] = ACTIONS(1383), + [anon_sym_DOLLARvaexpr] = ACTIONS(1383), + [anon_sym_true] = ACTIONS(1383), + [anon_sym_false] = ACTIONS(1383), + [anon_sym_null] = ACTIONS(1383), + [anon_sym_DOLLARvacount] = ACTIONS(1383), + [anon_sym_DOLLARappend] = ACTIONS(1383), + [anon_sym_DOLLARconcat] = ACTIONS(1383), + [anon_sym_DOLLAReval] = ACTIONS(1383), + [anon_sym_DOLLARis_const] = ACTIONS(1383), + [anon_sym_DOLLARsizeof] = ACTIONS(1383), + [anon_sym_DOLLARstringify] = ACTIONS(1383), + [anon_sym_DOLLARand] = ACTIONS(1383), + [anon_sym_DOLLARdefined] = ACTIONS(1383), + [anon_sym_DOLLARembed] = ACTIONS(1383), + [anon_sym_DOLLARor] = ACTIONS(1383), + [anon_sym_DOLLARfeature] = ACTIONS(1383), + [anon_sym_DOLLARassignable] = ACTIONS(1383), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_TILDE] = ACTIONS(1385), + [anon_sym_PLUS_PLUS] = ACTIONS(1385), + [anon_sym_DASH_DASH] = ACTIONS(1385), + [anon_sym_typeid] = ACTIONS(1383), + [anon_sym_LBRACE_PIPE] = ACTIONS(1385), + [anon_sym_void] = ACTIONS(1383), + [anon_sym_bool] = ACTIONS(1383), + [anon_sym_char] = ACTIONS(1383), + [anon_sym_ichar] = ACTIONS(1383), + [anon_sym_short] = ACTIONS(1383), + [anon_sym_ushort] = ACTIONS(1383), + [anon_sym_uint] = ACTIONS(1383), + [anon_sym_long] = ACTIONS(1383), + [anon_sym_ulong] = ACTIONS(1383), + [anon_sym_int128] = ACTIONS(1383), + [anon_sym_uint128] = ACTIONS(1383), + [anon_sym_float] = ACTIONS(1383), + [anon_sym_double] = ACTIONS(1383), + [anon_sym_float16] = ACTIONS(1383), + [anon_sym_bfloat16] = ACTIONS(1383), + [anon_sym_float128] = ACTIONS(1383), + [anon_sym_iptr] = ACTIONS(1383), + [anon_sym_uptr] = ACTIONS(1383), + [anon_sym_isz] = ACTIONS(1383), + [anon_sym_usz] = ACTIONS(1383), + [anon_sym_anyfault] = ACTIONS(1383), + [anon_sym_any] = ACTIONS(1383), + [anon_sym_DOLLARtypeof] = ACTIONS(1383), + [anon_sym_DOLLARtypefrom] = ACTIONS(1383), + [anon_sym_DOLLARvatype] = ACTIONS(1383), + [anon_sym_DOLLARevaltype] = ACTIONS(1383), + [sym_real_literal] = ACTIONS(1385), }, [426] = { [sym_line_comment] = STATE(426), [sym_doc_comment] = STATE(426), [sym_block_comment] = STATE(426), - [sym_ident] = ACTIONS(1504), - [sym_integer_literal] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1506), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_BQUOTE] = ACTIONS(1506), - [sym_bytes_literal] = ACTIONS(1506), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1504), - [sym_at_ident] = ACTIONS(1506), - [sym_hash_ident] = ACTIONS(1506), - [sym_type_ident] = ACTIONS(1506), - [sym_ct_type_ident] = ACTIONS(1506), - [sym_const_ident] = ACTIONS(1504), - [sym_builtin] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_AMP] = ACTIONS(1504), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_tlocal] = ACTIONS(1504), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym_fn] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(1504), - [anon_sym_RBRACE] = ACTIONS(1506), - [anon_sym_const] = ACTIONS(1504), - [anon_sym_var] = ACTIONS(1504), - [anon_sym_return] = ACTIONS(1504), - [anon_sym_continue] = ACTIONS(1504), - [anon_sym_break] = ACTIONS(1504), - [anon_sym_defer] = ACTIONS(1504), - [anon_sym_assert] = ACTIONS(1504), - [anon_sym_case] = ACTIONS(1504), - [anon_sym_default] = ACTIONS(1504), - [anon_sym_nextcase] = ACTIONS(1504), - [anon_sym_switch] = ACTIONS(1504), - [anon_sym_AMP_AMP] = ACTIONS(1506), - [anon_sym_if] = ACTIONS(1504), - [anon_sym_for] = ACTIONS(1504), - [anon_sym_foreach] = ACTIONS(1504), - [anon_sym_foreach_r] = ACTIONS(1504), - [anon_sym_while] = ACTIONS(1504), - [anon_sym_do] = ACTIONS(1504), - [anon_sym_int] = ACTIONS(1504), - [anon_sym_PLUS] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1504), - [anon_sym_STAR] = ACTIONS(1506), - [anon_sym_asm] = ACTIONS(1504), - [anon_sym_DOLLARassert] = ACTIONS(1504), - [anon_sym_DOLLARerror] = ACTIONS(1504), - [anon_sym_DOLLARecho] = ACTIONS(1504), - [anon_sym_DOLLARif] = ACTIONS(1504), - [anon_sym_DOLLARswitch] = ACTIONS(1504), - [anon_sym_DOLLARfor] = ACTIONS(1504), - [anon_sym_DOLLARforeach] = ACTIONS(1504), - [anon_sym_DOLLARalignof] = ACTIONS(1504), - [anon_sym_DOLLARextnameof] = ACTIONS(1504), - [anon_sym_DOLLARnameof] = ACTIONS(1504), - [anon_sym_DOLLARoffsetof] = ACTIONS(1504), - [anon_sym_DOLLARqnameof] = ACTIONS(1504), - [anon_sym_DOLLARvaconst] = ACTIONS(1504), - [anon_sym_DOLLARvaarg] = ACTIONS(1504), - [anon_sym_DOLLARvaref] = ACTIONS(1504), - [anon_sym_DOLLARvaexpr] = ACTIONS(1504), - [anon_sym_true] = ACTIONS(1504), - [anon_sym_false] = ACTIONS(1504), - [anon_sym_null] = ACTIONS(1504), - [anon_sym_DOLLARvacount] = ACTIONS(1504), - [anon_sym_DOLLARappend] = ACTIONS(1504), - [anon_sym_DOLLARconcat] = ACTIONS(1504), - [anon_sym_DOLLAReval] = ACTIONS(1504), - [anon_sym_DOLLARis_const] = ACTIONS(1504), - [anon_sym_DOLLARsizeof] = ACTIONS(1504), - [anon_sym_DOLLARstringify] = ACTIONS(1504), - [anon_sym_DOLLARand] = ACTIONS(1504), - [anon_sym_DOLLARdefined] = ACTIONS(1504), - [anon_sym_DOLLARembed] = ACTIONS(1504), - [anon_sym_DOLLARor] = ACTIONS(1504), - [anon_sym_DOLLARfeature] = ACTIONS(1504), - [anon_sym_DOLLARassignable] = ACTIONS(1504), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1506), - [anon_sym_typeid] = ACTIONS(1504), - [anon_sym_LBRACE_PIPE] = ACTIONS(1506), - [anon_sym_PIPE_RBRACE] = ACTIONS(1506), - [anon_sym_void] = ACTIONS(1504), - [anon_sym_bool] = ACTIONS(1504), - [anon_sym_char] = ACTIONS(1504), - [anon_sym_ichar] = ACTIONS(1504), - [anon_sym_short] = ACTIONS(1504), - [anon_sym_ushort] = ACTIONS(1504), - [anon_sym_uint] = ACTIONS(1504), - [anon_sym_long] = ACTIONS(1504), - [anon_sym_ulong] = ACTIONS(1504), - [anon_sym_int128] = ACTIONS(1504), - [anon_sym_uint128] = ACTIONS(1504), - [anon_sym_float] = ACTIONS(1504), - [anon_sym_double] = ACTIONS(1504), - [anon_sym_float16] = ACTIONS(1504), - [anon_sym_bfloat16] = ACTIONS(1504), - [anon_sym_float128] = ACTIONS(1504), - [anon_sym_iptr] = ACTIONS(1504), - [anon_sym_uptr] = ACTIONS(1504), - [anon_sym_isz] = ACTIONS(1504), - [anon_sym_usz] = ACTIONS(1504), - [anon_sym_anyfault] = ACTIONS(1504), - [anon_sym_any] = ACTIONS(1504), - [anon_sym_DOLLARtypeof] = ACTIONS(1504), - [anon_sym_DOLLARtypefrom] = ACTIONS(1504), - [anon_sym_DOLLARvatype] = ACTIONS(1504), - [anon_sym_DOLLARevaltype] = ACTIONS(1504), - [sym_real_literal] = ACTIONS(1506), + [sym_ident] = ACTIONS(1387), + [sym_integer_literal] = ACTIONS(1389), + [anon_sym_SQUOTE] = ACTIONS(1389), + [anon_sym_DQUOTE] = ACTIONS(1389), + [anon_sym_BQUOTE] = ACTIONS(1389), + [sym_bytes_literal] = ACTIONS(1389), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1387), + [sym_at_ident] = ACTIONS(1389), + [sym_hash_ident] = ACTIONS(1389), + [sym_type_ident] = ACTIONS(1389), + [sym_ct_type_ident] = ACTIONS(1389), + [sym_const_ident] = ACTIONS(1387), + [sym_builtin] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_AMP] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1387), + [anon_sym_tlocal] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1389), + [anon_sym_fn] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_defer] = ACTIONS(1387), + [anon_sym_assert] = ACTIONS(1387), + [anon_sym_nextcase] = ACTIONS(1387), + [anon_sym_switch] = ACTIONS(1387), + [anon_sym_AMP_AMP] = ACTIONS(1389), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_foreach] = ACTIONS(1387), + [anon_sym_foreach_r] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_int] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1389), + [anon_sym_asm] = ACTIONS(1387), + [anon_sym_DOLLARassert] = ACTIONS(1387), + [anon_sym_DOLLARerror] = ACTIONS(1387), + [anon_sym_DOLLARecho] = ACTIONS(1387), + [anon_sym_DOLLARif] = ACTIONS(1387), + [anon_sym_DOLLARcase] = ACTIONS(1387), + [anon_sym_DOLLARdefault] = ACTIONS(1387), + [anon_sym_DOLLARswitch] = ACTIONS(1387), + [anon_sym_DOLLARendswitch] = ACTIONS(1387), + [anon_sym_DOLLARfor] = ACTIONS(1387), + [anon_sym_DOLLARforeach] = ACTIONS(1387), + [anon_sym_DOLLARalignof] = ACTIONS(1387), + [anon_sym_DOLLARextnameof] = ACTIONS(1387), + [anon_sym_DOLLARnameof] = ACTIONS(1387), + [anon_sym_DOLLARoffsetof] = ACTIONS(1387), + [anon_sym_DOLLARqnameof] = ACTIONS(1387), + [anon_sym_DOLLARvaconst] = ACTIONS(1387), + [anon_sym_DOLLARvaarg] = ACTIONS(1387), + [anon_sym_DOLLARvaref] = ACTIONS(1387), + [anon_sym_DOLLARvaexpr] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_DOLLARvacount] = ACTIONS(1387), + [anon_sym_DOLLARappend] = ACTIONS(1387), + [anon_sym_DOLLARconcat] = ACTIONS(1387), + [anon_sym_DOLLAReval] = ACTIONS(1387), + [anon_sym_DOLLARis_const] = ACTIONS(1387), + [anon_sym_DOLLARsizeof] = ACTIONS(1387), + [anon_sym_DOLLARstringify] = ACTIONS(1387), + [anon_sym_DOLLARand] = ACTIONS(1387), + [anon_sym_DOLLARdefined] = ACTIONS(1387), + [anon_sym_DOLLARembed] = ACTIONS(1387), + [anon_sym_DOLLARor] = ACTIONS(1387), + [anon_sym_DOLLARfeature] = ACTIONS(1387), + [anon_sym_DOLLARassignable] = ACTIONS(1387), + [anon_sym_BANG] = ACTIONS(1389), + [anon_sym_TILDE] = ACTIONS(1389), + [anon_sym_PLUS_PLUS] = ACTIONS(1389), + [anon_sym_DASH_DASH] = ACTIONS(1389), + [anon_sym_typeid] = ACTIONS(1387), + [anon_sym_LBRACE_PIPE] = ACTIONS(1389), + [anon_sym_void] = ACTIONS(1387), + [anon_sym_bool] = ACTIONS(1387), + [anon_sym_char] = ACTIONS(1387), + [anon_sym_ichar] = ACTIONS(1387), + [anon_sym_short] = ACTIONS(1387), + [anon_sym_ushort] = ACTIONS(1387), + [anon_sym_uint] = ACTIONS(1387), + [anon_sym_long] = ACTIONS(1387), + [anon_sym_ulong] = ACTIONS(1387), + [anon_sym_int128] = ACTIONS(1387), + [anon_sym_uint128] = ACTIONS(1387), + [anon_sym_float] = ACTIONS(1387), + [anon_sym_double] = ACTIONS(1387), + [anon_sym_float16] = ACTIONS(1387), + [anon_sym_bfloat16] = ACTIONS(1387), + [anon_sym_float128] = ACTIONS(1387), + [anon_sym_iptr] = ACTIONS(1387), + [anon_sym_uptr] = ACTIONS(1387), + [anon_sym_isz] = ACTIONS(1387), + [anon_sym_usz] = ACTIONS(1387), + [anon_sym_anyfault] = ACTIONS(1387), + [anon_sym_any] = ACTIONS(1387), + [anon_sym_DOLLARtypeof] = ACTIONS(1387), + [anon_sym_DOLLARtypefrom] = ACTIONS(1387), + [anon_sym_DOLLARvatype] = ACTIONS(1387), + [anon_sym_DOLLARevaltype] = ACTIONS(1387), + [sym_real_literal] = ACTIONS(1389), }, [427] = { [sym_line_comment] = STATE(427), [sym_doc_comment] = STATE(427), [sym_block_comment] = STATE(427), - [sym_ident] = ACTIONS(1508), - [sym_integer_literal] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1510), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_BQUOTE] = ACTIONS(1510), - [sym_bytes_literal] = ACTIONS(1510), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1508), - [sym_at_ident] = ACTIONS(1510), - [sym_hash_ident] = ACTIONS(1510), - [sym_type_ident] = ACTIONS(1510), - [sym_ct_type_ident] = ACTIONS(1510), - [sym_const_ident] = ACTIONS(1508), - [sym_builtin] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(1508), - [anon_sym_static] = ACTIONS(1508), - [anon_sym_tlocal] = ACTIONS(1508), - [anon_sym_SEMI] = ACTIONS(1510), - [anon_sym_fn] = ACTIONS(1508), - [anon_sym_LBRACE] = ACTIONS(1508), - [anon_sym_RBRACE] = ACTIONS(1510), - [anon_sym_const] = ACTIONS(1508), - [anon_sym_var] = ACTIONS(1508), - [anon_sym_return] = ACTIONS(1508), - [anon_sym_continue] = ACTIONS(1508), - [anon_sym_break] = ACTIONS(1508), - [anon_sym_defer] = ACTIONS(1508), - [anon_sym_assert] = ACTIONS(1508), - [anon_sym_case] = ACTIONS(1508), - [anon_sym_default] = ACTIONS(1508), - [anon_sym_nextcase] = ACTIONS(1508), - [anon_sym_switch] = ACTIONS(1508), - [anon_sym_AMP_AMP] = ACTIONS(1510), - [anon_sym_if] = ACTIONS(1508), - [anon_sym_for] = ACTIONS(1508), - [anon_sym_foreach] = ACTIONS(1508), - [anon_sym_foreach_r] = ACTIONS(1508), - [anon_sym_while] = ACTIONS(1508), - [anon_sym_do] = ACTIONS(1508), - [anon_sym_int] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(1508), - [anon_sym_STAR] = ACTIONS(1510), - [anon_sym_asm] = ACTIONS(1508), - [anon_sym_DOLLARassert] = ACTIONS(1508), - [anon_sym_DOLLARerror] = ACTIONS(1508), - [anon_sym_DOLLARecho] = ACTIONS(1508), - [anon_sym_DOLLARif] = ACTIONS(1508), - [anon_sym_DOLLARswitch] = ACTIONS(1508), - [anon_sym_DOLLARfor] = ACTIONS(1508), - [anon_sym_DOLLARforeach] = ACTIONS(1508), - [anon_sym_DOLLARalignof] = ACTIONS(1508), - [anon_sym_DOLLARextnameof] = ACTIONS(1508), - [anon_sym_DOLLARnameof] = ACTIONS(1508), - [anon_sym_DOLLARoffsetof] = ACTIONS(1508), - [anon_sym_DOLLARqnameof] = ACTIONS(1508), - [anon_sym_DOLLARvaconst] = ACTIONS(1508), - [anon_sym_DOLLARvaarg] = ACTIONS(1508), - [anon_sym_DOLLARvaref] = ACTIONS(1508), - [anon_sym_DOLLARvaexpr] = ACTIONS(1508), - [anon_sym_true] = ACTIONS(1508), - [anon_sym_false] = ACTIONS(1508), - [anon_sym_null] = ACTIONS(1508), - [anon_sym_DOLLARvacount] = ACTIONS(1508), - [anon_sym_DOLLARappend] = ACTIONS(1508), - [anon_sym_DOLLARconcat] = ACTIONS(1508), - [anon_sym_DOLLAReval] = ACTIONS(1508), - [anon_sym_DOLLARis_const] = ACTIONS(1508), - [anon_sym_DOLLARsizeof] = ACTIONS(1508), - [anon_sym_DOLLARstringify] = ACTIONS(1508), - [anon_sym_DOLLARand] = ACTIONS(1508), - [anon_sym_DOLLARdefined] = ACTIONS(1508), - [anon_sym_DOLLARembed] = ACTIONS(1508), - [anon_sym_DOLLARor] = ACTIONS(1508), - [anon_sym_DOLLARfeature] = ACTIONS(1508), - [anon_sym_DOLLARassignable] = ACTIONS(1508), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_PLUS_PLUS] = ACTIONS(1510), - [anon_sym_DASH_DASH] = ACTIONS(1510), - [anon_sym_typeid] = ACTIONS(1508), - [anon_sym_LBRACE_PIPE] = ACTIONS(1510), - [anon_sym_PIPE_RBRACE] = ACTIONS(1510), - [anon_sym_void] = ACTIONS(1508), - [anon_sym_bool] = ACTIONS(1508), - [anon_sym_char] = ACTIONS(1508), - [anon_sym_ichar] = ACTIONS(1508), - [anon_sym_short] = ACTIONS(1508), - [anon_sym_ushort] = ACTIONS(1508), - [anon_sym_uint] = ACTIONS(1508), - [anon_sym_long] = ACTIONS(1508), - [anon_sym_ulong] = ACTIONS(1508), - [anon_sym_int128] = ACTIONS(1508), - [anon_sym_uint128] = ACTIONS(1508), - [anon_sym_float] = ACTIONS(1508), - [anon_sym_double] = ACTIONS(1508), - [anon_sym_float16] = ACTIONS(1508), - [anon_sym_bfloat16] = ACTIONS(1508), - [anon_sym_float128] = ACTIONS(1508), - [anon_sym_iptr] = ACTIONS(1508), - [anon_sym_uptr] = ACTIONS(1508), - [anon_sym_isz] = ACTIONS(1508), - [anon_sym_usz] = ACTIONS(1508), - [anon_sym_anyfault] = ACTIONS(1508), - [anon_sym_any] = ACTIONS(1508), - [anon_sym_DOLLARtypeof] = ACTIONS(1508), - [anon_sym_DOLLARtypefrom] = ACTIONS(1508), - [anon_sym_DOLLARvatype] = ACTIONS(1508), - [anon_sym_DOLLARevaltype] = ACTIONS(1508), - [sym_real_literal] = ACTIONS(1510), + [sym_ident] = ACTIONS(1625), + [sym_integer_literal] = ACTIONS(1627), + [anon_sym_SQUOTE] = ACTIONS(1627), + [anon_sym_DQUOTE] = ACTIONS(1627), + [anon_sym_BQUOTE] = ACTIONS(1627), + [sym_bytes_literal] = ACTIONS(1627), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1625), + [sym_at_ident] = ACTIONS(1627), + [sym_hash_ident] = ACTIONS(1627), + [sym_type_ident] = ACTIONS(1627), + [sym_ct_type_ident] = ACTIONS(1627), + [sym_const_ident] = ACTIONS(1625), + [sym_builtin] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1627), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_static] = ACTIONS(1625), + [anon_sym_tlocal] = ACTIONS(1625), + [anon_sym_SEMI] = ACTIONS(1627), + [anon_sym_fn] = ACTIONS(1625), + [anon_sym_LBRACE] = ACTIONS(1625), + [anon_sym_const] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1625), + [anon_sym_return] = ACTIONS(1625), + [anon_sym_continue] = ACTIONS(1625), + [anon_sym_break] = ACTIONS(1625), + [anon_sym_defer] = ACTIONS(1625), + [anon_sym_assert] = ACTIONS(1625), + [anon_sym_nextcase] = ACTIONS(1625), + [anon_sym_switch] = ACTIONS(1625), + [anon_sym_AMP_AMP] = ACTIONS(1627), + [anon_sym_if] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1625), + [anon_sym_foreach] = ACTIONS(1625), + [anon_sym_foreach_r] = ACTIONS(1625), + [anon_sym_while] = ACTIONS(1625), + [anon_sym_do] = ACTIONS(1625), + [anon_sym_int] = ACTIONS(1625), + [anon_sym_PLUS] = ACTIONS(1625), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(1627), + [anon_sym_asm] = ACTIONS(1625), + [anon_sym_DOLLARassert] = ACTIONS(1625), + [anon_sym_DOLLARerror] = ACTIONS(1625), + [anon_sym_DOLLARecho] = ACTIONS(1625), + [anon_sym_DOLLARif] = ACTIONS(1625), + [anon_sym_DOLLARcase] = ACTIONS(1625), + [anon_sym_DOLLARdefault] = ACTIONS(1625), + [anon_sym_DOLLARswitch] = ACTIONS(1625), + [anon_sym_DOLLARendswitch] = ACTIONS(1625), + [anon_sym_DOLLARfor] = ACTIONS(1625), + [anon_sym_DOLLARforeach] = ACTIONS(1625), + [anon_sym_DOLLARalignof] = ACTIONS(1625), + [anon_sym_DOLLARextnameof] = ACTIONS(1625), + [anon_sym_DOLLARnameof] = ACTIONS(1625), + [anon_sym_DOLLARoffsetof] = ACTIONS(1625), + [anon_sym_DOLLARqnameof] = ACTIONS(1625), + [anon_sym_DOLLARvaconst] = ACTIONS(1625), + [anon_sym_DOLLARvaarg] = ACTIONS(1625), + [anon_sym_DOLLARvaref] = ACTIONS(1625), + [anon_sym_DOLLARvaexpr] = ACTIONS(1625), + [anon_sym_true] = ACTIONS(1625), + [anon_sym_false] = ACTIONS(1625), + [anon_sym_null] = ACTIONS(1625), + [anon_sym_DOLLARvacount] = ACTIONS(1625), + [anon_sym_DOLLARappend] = ACTIONS(1625), + [anon_sym_DOLLARconcat] = ACTIONS(1625), + [anon_sym_DOLLAReval] = ACTIONS(1625), + [anon_sym_DOLLARis_const] = ACTIONS(1625), + [anon_sym_DOLLARsizeof] = ACTIONS(1625), + [anon_sym_DOLLARstringify] = ACTIONS(1625), + [anon_sym_DOLLARand] = ACTIONS(1625), + [anon_sym_DOLLARdefined] = ACTIONS(1625), + [anon_sym_DOLLARembed] = ACTIONS(1625), + [anon_sym_DOLLARor] = ACTIONS(1625), + [anon_sym_DOLLARfeature] = ACTIONS(1625), + [anon_sym_DOLLARassignable] = ACTIONS(1625), + [anon_sym_BANG] = ACTIONS(1627), + [anon_sym_TILDE] = ACTIONS(1627), + [anon_sym_PLUS_PLUS] = ACTIONS(1627), + [anon_sym_DASH_DASH] = ACTIONS(1627), + [anon_sym_typeid] = ACTIONS(1625), + [anon_sym_LBRACE_PIPE] = ACTIONS(1627), + [anon_sym_void] = ACTIONS(1625), + [anon_sym_bool] = ACTIONS(1625), + [anon_sym_char] = ACTIONS(1625), + [anon_sym_ichar] = ACTIONS(1625), + [anon_sym_short] = ACTIONS(1625), + [anon_sym_ushort] = ACTIONS(1625), + [anon_sym_uint] = ACTIONS(1625), + [anon_sym_long] = ACTIONS(1625), + [anon_sym_ulong] = ACTIONS(1625), + [anon_sym_int128] = ACTIONS(1625), + [anon_sym_uint128] = ACTIONS(1625), + [anon_sym_float] = ACTIONS(1625), + [anon_sym_double] = ACTIONS(1625), + [anon_sym_float16] = ACTIONS(1625), + [anon_sym_bfloat16] = ACTIONS(1625), + [anon_sym_float128] = ACTIONS(1625), + [anon_sym_iptr] = ACTIONS(1625), + [anon_sym_uptr] = ACTIONS(1625), + [anon_sym_isz] = ACTIONS(1625), + [anon_sym_usz] = ACTIONS(1625), + [anon_sym_anyfault] = ACTIONS(1625), + [anon_sym_any] = ACTIONS(1625), + [anon_sym_DOLLARtypeof] = ACTIONS(1625), + [anon_sym_DOLLARtypefrom] = ACTIONS(1625), + [anon_sym_DOLLARvatype] = ACTIONS(1625), + [anon_sym_DOLLARevaltype] = ACTIONS(1625), + [sym_real_literal] = ACTIONS(1627), }, [428] = { [sym_line_comment] = STATE(428), [sym_doc_comment] = STATE(428), [sym_block_comment] = STATE(428), - [sym_ident] = ACTIONS(1512), - [sym_integer_literal] = ACTIONS(1514), - [anon_sym_SQUOTE] = ACTIONS(1514), - [anon_sym_DQUOTE] = ACTIONS(1514), - [anon_sym_BQUOTE] = ACTIONS(1514), - [sym_bytes_literal] = ACTIONS(1514), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1512), - [sym_at_ident] = ACTIONS(1514), - [sym_hash_ident] = ACTIONS(1514), - [sym_type_ident] = ACTIONS(1514), - [sym_ct_type_ident] = ACTIONS(1514), - [sym_const_ident] = ACTIONS(1512), - [sym_builtin] = ACTIONS(1514), - [anon_sym_LPAREN] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(1512), - [anon_sym_static] = ACTIONS(1512), - [anon_sym_tlocal] = ACTIONS(1512), - [anon_sym_SEMI] = ACTIONS(1514), - [anon_sym_fn] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(1512), - [anon_sym_RBRACE] = ACTIONS(1514), - [anon_sym_const] = ACTIONS(1512), - [anon_sym_var] = ACTIONS(1512), - [anon_sym_return] = ACTIONS(1512), - [anon_sym_continue] = ACTIONS(1512), - [anon_sym_break] = ACTIONS(1512), - [anon_sym_defer] = ACTIONS(1512), - [anon_sym_assert] = ACTIONS(1512), - [anon_sym_case] = ACTIONS(1512), - [anon_sym_default] = ACTIONS(1512), - [anon_sym_nextcase] = ACTIONS(1512), - [anon_sym_switch] = ACTIONS(1512), - [anon_sym_AMP_AMP] = ACTIONS(1514), - [anon_sym_if] = ACTIONS(1512), - [anon_sym_for] = ACTIONS(1512), - [anon_sym_foreach] = ACTIONS(1512), - [anon_sym_foreach_r] = ACTIONS(1512), - [anon_sym_while] = ACTIONS(1512), - [anon_sym_do] = ACTIONS(1512), - [anon_sym_int] = ACTIONS(1512), - [anon_sym_PLUS] = ACTIONS(1512), - [anon_sym_DASH] = ACTIONS(1512), - [anon_sym_STAR] = ACTIONS(1514), - [anon_sym_asm] = ACTIONS(1512), - [anon_sym_DOLLARassert] = ACTIONS(1512), - [anon_sym_DOLLARerror] = ACTIONS(1512), - [anon_sym_DOLLARecho] = ACTIONS(1512), - [anon_sym_DOLLARif] = ACTIONS(1512), - [anon_sym_DOLLARswitch] = ACTIONS(1512), - [anon_sym_DOLLARfor] = ACTIONS(1512), - [anon_sym_DOLLARforeach] = ACTIONS(1512), - [anon_sym_DOLLARalignof] = ACTIONS(1512), - [anon_sym_DOLLARextnameof] = ACTIONS(1512), - [anon_sym_DOLLARnameof] = ACTIONS(1512), - [anon_sym_DOLLARoffsetof] = ACTIONS(1512), - [anon_sym_DOLLARqnameof] = ACTIONS(1512), - [anon_sym_DOLLARvaconst] = ACTIONS(1512), - [anon_sym_DOLLARvaarg] = ACTIONS(1512), - [anon_sym_DOLLARvaref] = ACTIONS(1512), - [anon_sym_DOLLARvaexpr] = ACTIONS(1512), - [anon_sym_true] = ACTIONS(1512), - [anon_sym_false] = ACTIONS(1512), - [anon_sym_null] = ACTIONS(1512), - [anon_sym_DOLLARvacount] = ACTIONS(1512), - [anon_sym_DOLLARappend] = ACTIONS(1512), - [anon_sym_DOLLARconcat] = ACTIONS(1512), - [anon_sym_DOLLAReval] = ACTIONS(1512), - [anon_sym_DOLLARis_const] = ACTIONS(1512), - [anon_sym_DOLLARsizeof] = ACTIONS(1512), - [anon_sym_DOLLARstringify] = ACTIONS(1512), - [anon_sym_DOLLARand] = ACTIONS(1512), - [anon_sym_DOLLARdefined] = ACTIONS(1512), - [anon_sym_DOLLARembed] = ACTIONS(1512), - [anon_sym_DOLLARor] = ACTIONS(1512), - [anon_sym_DOLLARfeature] = ACTIONS(1512), - [anon_sym_DOLLARassignable] = ACTIONS(1512), - [anon_sym_BANG] = ACTIONS(1514), - [anon_sym_TILDE] = ACTIONS(1514), - [anon_sym_PLUS_PLUS] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1514), - [anon_sym_typeid] = ACTIONS(1512), - [anon_sym_LBRACE_PIPE] = ACTIONS(1514), - [anon_sym_PIPE_RBRACE] = ACTIONS(1514), - [anon_sym_void] = ACTIONS(1512), - [anon_sym_bool] = ACTIONS(1512), - [anon_sym_char] = ACTIONS(1512), - [anon_sym_ichar] = ACTIONS(1512), - [anon_sym_short] = ACTIONS(1512), - [anon_sym_ushort] = ACTIONS(1512), - [anon_sym_uint] = ACTIONS(1512), - [anon_sym_long] = ACTIONS(1512), - [anon_sym_ulong] = ACTIONS(1512), - [anon_sym_int128] = ACTIONS(1512), - [anon_sym_uint128] = ACTIONS(1512), - [anon_sym_float] = ACTIONS(1512), - [anon_sym_double] = ACTIONS(1512), - [anon_sym_float16] = ACTIONS(1512), - [anon_sym_bfloat16] = ACTIONS(1512), - [anon_sym_float128] = ACTIONS(1512), - [anon_sym_iptr] = ACTIONS(1512), - [anon_sym_uptr] = ACTIONS(1512), - [anon_sym_isz] = ACTIONS(1512), - [anon_sym_usz] = ACTIONS(1512), - [anon_sym_anyfault] = ACTIONS(1512), - [anon_sym_any] = ACTIONS(1512), - [anon_sym_DOLLARtypeof] = ACTIONS(1512), - [anon_sym_DOLLARtypefrom] = ACTIONS(1512), - [anon_sym_DOLLARvatype] = ACTIONS(1512), - [anon_sym_DOLLARevaltype] = ACTIONS(1512), - [sym_real_literal] = ACTIONS(1514), + [sym_ident] = ACTIONS(1371), + [sym_integer_literal] = ACTIONS(1373), + [anon_sym_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE] = ACTIONS(1373), + [anon_sym_BQUOTE] = ACTIONS(1373), + [sym_bytes_literal] = ACTIONS(1373), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1371), + [sym_at_ident] = ACTIONS(1373), + [sym_hash_ident] = ACTIONS(1373), + [sym_type_ident] = ACTIONS(1373), + [sym_ct_type_ident] = ACTIONS(1373), + [sym_const_ident] = ACTIONS(1371), + [sym_builtin] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(1373), + [anon_sym_AMP] = ACTIONS(1371), + [anon_sym_static] = ACTIONS(1371), + [anon_sym_tlocal] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_fn] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1371), + [anon_sym_const] = ACTIONS(1371), + [anon_sym_var] = ACTIONS(1371), + [anon_sym_return] = ACTIONS(1371), + [anon_sym_continue] = ACTIONS(1371), + [anon_sym_break] = ACTIONS(1371), + [anon_sym_defer] = ACTIONS(1371), + [anon_sym_assert] = ACTIONS(1371), + [anon_sym_nextcase] = ACTIONS(1371), + [anon_sym_switch] = ACTIONS(1371), + [anon_sym_AMP_AMP] = ACTIONS(1373), + [anon_sym_if] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1371), + [anon_sym_foreach] = ACTIONS(1371), + [anon_sym_foreach_r] = ACTIONS(1371), + [anon_sym_while] = ACTIONS(1371), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_int] = ACTIONS(1371), + [anon_sym_PLUS] = ACTIONS(1371), + [anon_sym_DASH] = ACTIONS(1371), + [anon_sym_STAR] = ACTIONS(1373), + [anon_sym_asm] = ACTIONS(1371), + [anon_sym_DOLLARassert] = ACTIONS(1371), + [anon_sym_DOLLARerror] = ACTIONS(1371), + [anon_sym_DOLLARecho] = ACTIONS(1371), + [anon_sym_DOLLARif] = ACTIONS(1371), + [anon_sym_DOLLARcase] = ACTIONS(1371), + [anon_sym_DOLLARdefault] = ACTIONS(1371), + [anon_sym_DOLLARswitch] = ACTIONS(1371), + [anon_sym_DOLLARendswitch] = ACTIONS(1371), + [anon_sym_DOLLARfor] = ACTIONS(1371), + [anon_sym_DOLLARforeach] = ACTIONS(1371), + [anon_sym_DOLLARalignof] = ACTIONS(1371), + [anon_sym_DOLLARextnameof] = ACTIONS(1371), + [anon_sym_DOLLARnameof] = ACTIONS(1371), + [anon_sym_DOLLARoffsetof] = ACTIONS(1371), + [anon_sym_DOLLARqnameof] = ACTIONS(1371), + [anon_sym_DOLLARvaconst] = ACTIONS(1371), + [anon_sym_DOLLARvaarg] = ACTIONS(1371), + [anon_sym_DOLLARvaref] = ACTIONS(1371), + [anon_sym_DOLLARvaexpr] = ACTIONS(1371), + [anon_sym_true] = ACTIONS(1371), + [anon_sym_false] = ACTIONS(1371), + [anon_sym_null] = ACTIONS(1371), + [anon_sym_DOLLARvacount] = ACTIONS(1371), + [anon_sym_DOLLARappend] = ACTIONS(1371), + [anon_sym_DOLLARconcat] = ACTIONS(1371), + [anon_sym_DOLLAReval] = ACTIONS(1371), + [anon_sym_DOLLARis_const] = ACTIONS(1371), + [anon_sym_DOLLARsizeof] = ACTIONS(1371), + [anon_sym_DOLLARstringify] = ACTIONS(1371), + [anon_sym_DOLLARand] = ACTIONS(1371), + [anon_sym_DOLLARdefined] = ACTIONS(1371), + [anon_sym_DOLLARembed] = ACTIONS(1371), + [anon_sym_DOLLARor] = ACTIONS(1371), + [anon_sym_DOLLARfeature] = ACTIONS(1371), + [anon_sym_DOLLARassignable] = ACTIONS(1371), + [anon_sym_BANG] = ACTIONS(1373), + [anon_sym_TILDE] = ACTIONS(1373), + [anon_sym_PLUS_PLUS] = ACTIONS(1373), + [anon_sym_DASH_DASH] = ACTIONS(1373), + [anon_sym_typeid] = ACTIONS(1371), + [anon_sym_LBRACE_PIPE] = ACTIONS(1373), + [anon_sym_void] = ACTIONS(1371), + [anon_sym_bool] = ACTIONS(1371), + [anon_sym_char] = ACTIONS(1371), + [anon_sym_ichar] = ACTIONS(1371), + [anon_sym_short] = ACTIONS(1371), + [anon_sym_ushort] = ACTIONS(1371), + [anon_sym_uint] = ACTIONS(1371), + [anon_sym_long] = ACTIONS(1371), + [anon_sym_ulong] = ACTIONS(1371), + [anon_sym_int128] = ACTIONS(1371), + [anon_sym_uint128] = ACTIONS(1371), + [anon_sym_float] = ACTIONS(1371), + [anon_sym_double] = ACTIONS(1371), + [anon_sym_float16] = ACTIONS(1371), + [anon_sym_bfloat16] = ACTIONS(1371), + [anon_sym_float128] = ACTIONS(1371), + [anon_sym_iptr] = ACTIONS(1371), + [anon_sym_uptr] = ACTIONS(1371), + [anon_sym_isz] = ACTIONS(1371), + [anon_sym_usz] = ACTIONS(1371), + [anon_sym_anyfault] = ACTIONS(1371), + [anon_sym_any] = ACTIONS(1371), + [anon_sym_DOLLARtypeof] = ACTIONS(1371), + [anon_sym_DOLLARtypefrom] = ACTIONS(1371), + [anon_sym_DOLLARvatype] = ACTIONS(1371), + [anon_sym_DOLLARevaltype] = ACTIONS(1371), + [sym_real_literal] = ACTIONS(1373), }, [429] = { [sym_line_comment] = STATE(429), [sym_doc_comment] = STATE(429), [sym_block_comment] = STATE(429), - [sym_ident] = ACTIONS(1516), - [sym_integer_literal] = ACTIONS(1518), - [anon_sym_SQUOTE] = ACTIONS(1518), - [anon_sym_DQUOTE] = ACTIONS(1518), - [anon_sym_BQUOTE] = ACTIONS(1518), - [sym_bytes_literal] = ACTIONS(1518), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1516), - [sym_at_ident] = ACTIONS(1518), - [sym_hash_ident] = ACTIONS(1518), - [sym_type_ident] = ACTIONS(1518), - [sym_ct_type_ident] = ACTIONS(1518), - [sym_const_ident] = ACTIONS(1516), - [sym_builtin] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1518), - [anon_sym_AMP] = ACTIONS(1516), - [anon_sym_static] = ACTIONS(1516), - [anon_sym_tlocal] = ACTIONS(1516), - [anon_sym_SEMI] = ACTIONS(1518), - [anon_sym_fn] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1516), - [anon_sym_RBRACE] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1516), - [anon_sym_var] = ACTIONS(1516), - [anon_sym_return] = ACTIONS(1516), - [anon_sym_continue] = ACTIONS(1516), - [anon_sym_break] = ACTIONS(1516), - [anon_sym_defer] = ACTIONS(1516), - [anon_sym_assert] = ACTIONS(1516), - [anon_sym_case] = ACTIONS(1516), - [anon_sym_default] = ACTIONS(1516), - [anon_sym_nextcase] = ACTIONS(1516), - [anon_sym_switch] = ACTIONS(1516), - [anon_sym_AMP_AMP] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1516), - [anon_sym_for] = ACTIONS(1516), - [anon_sym_foreach] = ACTIONS(1516), - [anon_sym_foreach_r] = ACTIONS(1516), - [anon_sym_while] = ACTIONS(1516), - [anon_sym_do] = ACTIONS(1516), - [anon_sym_int] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1516), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_STAR] = ACTIONS(1518), - [anon_sym_asm] = ACTIONS(1516), - [anon_sym_DOLLARassert] = ACTIONS(1516), - [anon_sym_DOLLARerror] = ACTIONS(1516), - [anon_sym_DOLLARecho] = ACTIONS(1516), - [anon_sym_DOLLARif] = ACTIONS(1516), - [anon_sym_DOLLARswitch] = ACTIONS(1516), - [anon_sym_DOLLARfor] = ACTIONS(1516), - [anon_sym_DOLLARforeach] = ACTIONS(1516), - [anon_sym_DOLLARalignof] = ACTIONS(1516), - [anon_sym_DOLLARextnameof] = ACTIONS(1516), - [anon_sym_DOLLARnameof] = ACTIONS(1516), - [anon_sym_DOLLARoffsetof] = ACTIONS(1516), - [anon_sym_DOLLARqnameof] = ACTIONS(1516), - [anon_sym_DOLLARvaconst] = ACTIONS(1516), - [anon_sym_DOLLARvaarg] = ACTIONS(1516), - [anon_sym_DOLLARvaref] = ACTIONS(1516), - [anon_sym_DOLLARvaexpr] = ACTIONS(1516), - [anon_sym_true] = ACTIONS(1516), - [anon_sym_false] = ACTIONS(1516), - [anon_sym_null] = ACTIONS(1516), - [anon_sym_DOLLARvacount] = ACTIONS(1516), - [anon_sym_DOLLARappend] = ACTIONS(1516), - [anon_sym_DOLLARconcat] = ACTIONS(1516), - [anon_sym_DOLLAReval] = ACTIONS(1516), - [anon_sym_DOLLARis_const] = ACTIONS(1516), - [anon_sym_DOLLARsizeof] = ACTIONS(1516), - [anon_sym_DOLLARstringify] = ACTIONS(1516), - [anon_sym_DOLLARand] = ACTIONS(1516), - [anon_sym_DOLLARdefined] = ACTIONS(1516), - [anon_sym_DOLLARembed] = ACTIONS(1516), - [anon_sym_DOLLARor] = ACTIONS(1516), - [anon_sym_DOLLARfeature] = ACTIONS(1516), - [anon_sym_DOLLARassignable] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1518), - [anon_sym_TILDE] = ACTIONS(1518), - [anon_sym_PLUS_PLUS] = ACTIONS(1518), - [anon_sym_DASH_DASH] = ACTIONS(1518), - [anon_sym_typeid] = ACTIONS(1516), - [anon_sym_LBRACE_PIPE] = ACTIONS(1518), - [anon_sym_PIPE_RBRACE] = ACTIONS(1518), - [anon_sym_void] = ACTIONS(1516), - [anon_sym_bool] = ACTIONS(1516), - [anon_sym_char] = ACTIONS(1516), - [anon_sym_ichar] = ACTIONS(1516), - [anon_sym_short] = ACTIONS(1516), - [anon_sym_ushort] = ACTIONS(1516), - [anon_sym_uint] = ACTIONS(1516), - [anon_sym_long] = ACTIONS(1516), - [anon_sym_ulong] = ACTIONS(1516), - [anon_sym_int128] = ACTIONS(1516), - [anon_sym_uint128] = ACTIONS(1516), - [anon_sym_float] = ACTIONS(1516), - [anon_sym_double] = ACTIONS(1516), - [anon_sym_float16] = ACTIONS(1516), - [anon_sym_bfloat16] = ACTIONS(1516), - [anon_sym_float128] = ACTIONS(1516), - [anon_sym_iptr] = ACTIONS(1516), - [anon_sym_uptr] = ACTIONS(1516), - [anon_sym_isz] = ACTIONS(1516), - [anon_sym_usz] = ACTIONS(1516), - [anon_sym_anyfault] = ACTIONS(1516), - [anon_sym_any] = ACTIONS(1516), - [anon_sym_DOLLARtypeof] = ACTIONS(1516), - [anon_sym_DOLLARtypefrom] = ACTIONS(1516), - [anon_sym_DOLLARvatype] = ACTIONS(1516), - [anon_sym_DOLLARevaltype] = ACTIONS(1516), - [sym_real_literal] = ACTIONS(1518), + [sym_ident] = ACTIONS(1391), + [sym_integer_literal] = ACTIONS(1393), + [anon_sym_SQUOTE] = ACTIONS(1393), + [anon_sym_DQUOTE] = ACTIONS(1393), + [anon_sym_BQUOTE] = ACTIONS(1393), + [sym_bytes_literal] = ACTIONS(1393), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1391), + [sym_at_ident] = ACTIONS(1393), + [sym_hash_ident] = ACTIONS(1393), + [sym_type_ident] = ACTIONS(1393), + [sym_ct_type_ident] = ACTIONS(1393), + [sym_const_ident] = ACTIONS(1391), + [sym_builtin] = ACTIONS(1393), + [anon_sym_LPAREN] = ACTIONS(1393), + [anon_sym_AMP] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1391), + [anon_sym_tlocal] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1393), + [anon_sym_fn] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_var] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_defer] = ACTIONS(1391), + [anon_sym_assert] = ACTIONS(1391), + [anon_sym_nextcase] = ACTIONS(1391), + [anon_sym_switch] = ACTIONS(1391), + [anon_sym_AMP_AMP] = ACTIONS(1393), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_foreach] = ACTIONS(1391), + [anon_sym_foreach_r] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_int] = ACTIONS(1391), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1393), + [anon_sym_asm] = ACTIONS(1391), + [anon_sym_DOLLARassert] = ACTIONS(1391), + [anon_sym_DOLLARerror] = ACTIONS(1391), + [anon_sym_DOLLARecho] = ACTIONS(1391), + [anon_sym_DOLLARif] = ACTIONS(1391), + [anon_sym_DOLLARcase] = ACTIONS(1391), + [anon_sym_DOLLARdefault] = ACTIONS(1391), + [anon_sym_DOLLARswitch] = ACTIONS(1391), + [anon_sym_DOLLARendswitch] = ACTIONS(1391), + [anon_sym_DOLLARfor] = ACTIONS(1391), + [anon_sym_DOLLARforeach] = ACTIONS(1391), + [anon_sym_DOLLARalignof] = ACTIONS(1391), + [anon_sym_DOLLARextnameof] = ACTIONS(1391), + [anon_sym_DOLLARnameof] = ACTIONS(1391), + [anon_sym_DOLLARoffsetof] = ACTIONS(1391), + [anon_sym_DOLLARqnameof] = ACTIONS(1391), + [anon_sym_DOLLARvaconst] = ACTIONS(1391), + [anon_sym_DOLLARvaarg] = ACTIONS(1391), + [anon_sym_DOLLARvaref] = ACTIONS(1391), + [anon_sym_DOLLARvaexpr] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_DOLLARvacount] = ACTIONS(1391), + [anon_sym_DOLLARappend] = ACTIONS(1391), + [anon_sym_DOLLARconcat] = ACTIONS(1391), + [anon_sym_DOLLAReval] = ACTIONS(1391), + [anon_sym_DOLLARis_const] = ACTIONS(1391), + [anon_sym_DOLLARsizeof] = ACTIONS(1391), + [anon_sym_DOLLARstringify] = ACTIONS(1391), + [anon_sym_DOLLARand] = ACTIONS(1391), + [anon_sym_DOLLARdefined] = ACTIONS(1391), + [anon_sym_DOLLARembed] = ACTIONS(1391), + [anon_sym_DOLLARor] = ACTIONS(1391), + [anon_sym_DOLLARfeature] = ACTIONS(1391), + [anon_sym_DOLLARassignable] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1393), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_PLUS_PLUS] = ACTIONS(1393), + [anon_sym_DASH_DASH] = ACTIONS(1393), + [anon_sym_typeid] = ACTIONS(1391), + [anon_sym_LBRACE_PIPE] = ACTIONS(1393), + [anon_sym_void] = ACTIONS(1391), + [anon_sym_bool] = ACTIONS(1391), + [anon_sym_char] = ACTIONS(1391), + [anon_sym_ichar] = ACTIONS(1391), + [anon_sym_short] = ACTIONS(1391), + [anon_sym_ushort] = ACTIONS(1391), + [anon_sym_uint] = ACTIONS(1391), + [anon_sym_long] = ACTIONS(1391), + [anon_sym_ulong] = ACTIONS(1391), + [anon_sym_int128] = ACTIONS(1391), + [anon_sym_uint128] = ACTIONS(1391), + [anon_sym_float] = ACTIONS(1391), + [anon_sym_double] = ACTIONS(1391), + [anon_sym_float16] = ACTIONS(1391), + [anon_sym_bfloat16] = ACTIONS(1391), + [anon_sym_float128] = ACTIONS(1391), + [anon_sym_iptr] = ACTIONS(1391), + [anon_sym_uptr] = ACTIONS(1391), + [anon_sym_isz] = ACTIONS(1391), + [anon_sym_usz] = ACTIONS(1391), + [anon_sym_anyfault] = ACTIONS(1391), + [anon_sym_any] = ACTIONS(1391), + [anon_sym_DOLLARtypeof] = ACTIONS(1391), + [anon_sym_DOLLARtypefrom] = ACTIONS(1391), + [anon_sym_DOLLARvatype] = ACTIONS(1391), + [anon_sym_DOLLARevaltype] = ACTIONS(1391), + [sym_real_literal] = ACTIONS(1393), }, [430] = { [sym_line_comment] = STATE(430), [sym_doc_comment] = STATE(430), [sym_block_comment] = STATE(430), - [sym_ident] = ACTIONS(1520), - [sym_integer_literal] = ACTIONS(1522), - [anon_sym_SQUOTE] = ACTIONS(1522), - [anon_sym_DQUOTE] = ACTIONS(1522), - [anon_sym_BQUOTE] = ACTIONS(1522), - [sym_bytes_literal] = ACTIONS(1522), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1520), - [sym_at_ident] = ACTIONS(1522), - [sym_hash_ident] = ACTIONS(1522), - [sym_type_ident] = ACTIONS(1522), - [sym_ct_type_ident] = ACTIONS(1522), - [sym_const_ident] = ACTIONS(1520), - [sym_builtin] = ACTIONS(1522), - [anon_sym_LPAREN] = ACTIONS(1522), - [anon_sym_AMP] = ACTIONS(1520), - [anon_sym_static] = ACTIONS(1520), - [anon_sym_tlocal] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1522), - [anon_sym_fn] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1520), - [anon_sym_RBRACE] = ACTIONS(1522), - [anon_sym_const] = ACTIONS(1520), - [anon_sym_var] = ACTIONS(1520), - [anon_sym_return] = ACTIONS(1520), - [anon_sym_continue] = ACTIONS(1520), - [anon_sym_break] = ACTIONS(1520), - [anon_sym_defer] = ACTIONS(1520), - [anon_sym_assert] = ACTIONS(1520), - [anon_sym_case] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1520), - [anon_sym_nextcase] = ACTIONS(1520), - [anon_sym_switch] = ACTIONS(1520), - [anon_sym_AMP_AMP] = ACTIONS(1522), - [anon_sym_if] = ACTIONS(1520), - [anon_sym_for] = ACTIONS(1520), - [anon_sym_foreach] = ACTIONS(1520), - [anon_sym_foreach_r] = ACTIONS(1520), - [anon_sym_while] = ACTIONS(1520), - [anon_sym_do] = ACTIONS(1520), - [anon_sym_int] = ACTIONS(1520), - [anon_sym_PLUS] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1520), - [anon_sym_STAR] = ACTIONS(1522), - [anon_sym_asm] = ACTIONS(1520), - [anon_sym_DOLLARassert] = ACTIONS(1520), - [anon_sym_DOLLARerror] = ACTIONS(1520), - [anon_sym_DOLLARecho] = ACTIONS(1520), - [anon_sym_DOLLARif] = ACTIONS(1520), - [anon_sym_DOLLARswitch] = ACTIONS(1520), - [anon_sym_DOLLARfor] = ACTIONS(1520), - [anon_sym_DOLLARforeach] = ACTIONS(1520), - [anon_sym_DOLLARalignof] = ACTIONS(1520), - [anon_sym_DOLLARextnameof] = ACTIONS(1520), - [anon_sym_DOLLARnameof] = ACTIONS(1520), - [anon_sym_DOLLARoffsetof] = ACTIONS(1520), - [anon_sym_DOLLARqnameof] = ACTIONS(1520), - [anon_sym_DOLLARvaconst] = ACTIONS(1520), - [anon_sym_DOLLARvaarg] = ACTIONS(1520), - [anon_sym_DOLLARvaref] = ACTIONS(1520), - [anon_sym_DOLLARvaexpr] = ACTIONS(1520), - [anon_sym_true] = ACTIONS(1520), - [anon_sym_false] = ACTIONS(1520), - [anon_sym_null] = ACTIONS(1520), - [anon_sym_DOLLARvacount] = ACTIONS(1520), - [anon_sym_DOLLARappend] = ACTIONS(1520), - [anon_sym_DOLLARconcat] = ACTIONS(1520), - [anon_sym_DOLLAReval] = ACTIONS(1520), - [anon_sym_DOLLARis_const] = ACTIONS(1520), - [anon_sym_DOLLARsizeof] = ACTIONS(1520), - [anon_sym_DOLLARstringify] = ACTIONS(1520), - [anon_sym_DOLLARand] = ACTIONS(1520), - [anon_sym_DOLLARdefined] = ACTIONS(1520), - [anon_sym_DOLLARembed] = ACTIONS(1520), - [anon_sym_DOLLARor] = ACTIONS(1520), - [anon_sym_DOLLARfeature] = ACTIONS(1520), - [anon_sym_DOLLARassignable] = ACTIONS(1520), - [anon_sym_BANG] = ACTIONS(1522), - [anon_sym_TILDE] = ACTIONS(1522), - [anon_sym_PLUS_PLUS] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1522), - [anon_sym_typeid] = ACTIONS(1520), - [anon_sym_LBRACE_PIPE] = ACTIONS(1522), - [anon_sym_PIPE_RBRACE] = ACTIONS(1522), - [anon_sym_void] = ACTIONS(1520), - [anon_sym_bool] = ACTIONS(1520), - [anon_sym_char] = ACTIONS(1520), - [anon_sym_ichar] = ACTIONS(1520), - [anon_sym_short] = ACTIONS(1520), - [anon_sym_ushort] = ACTIONS(1520), - [anon_sym_uint] = ACTIONS(1520), - [anon_sym_long] = ACTIONS(1520), - [anon_sym_ulong] = ACTIONS(1520), - [anon_sym_int128] = ACTIONS(1520), - [anon_sym_uint128] = ACTIONS(1520), - [anon_sym_float] = ACTIONS(1520), - [anon_sym_double] = ACTIONS(1520), - [anon_sym_float16] = ACTIONS(1520), - [anon_sym_bfloat16] = ACTIONS(1520), - [anon_sym_float128] = ACTIONS(1520), - [anon_sym_iptr] = ACTIONS(1520), - [anon_sym_uptr] = ACTIONS(1520), - [anon_sym_isz] = ACTIONS(1520), - [anon_sym_usz] = ACTIONS(1520), - [anon_sym_anyfault] = ACTIONS(1520), - [anon_sym_any] = ACTIONS(1520), - [anon_sym_DOLLARtypeof] = ACTIONS(1520), - [anon_sym_DOLLARtypefrom] = ACTIONS(1520), - [anon_sym_DOLLARvatype] = ACTIONS(1520), - [anon_sym_DOLLARevaltype] = ACTIONS(1520), - [sym_real_literal] = ACTIONS(1522), + [sym_ident] = ACTIONS(1395), + [sym_integer_literal] = ACTIONS(1397), + [anon_sym_SQUOTE] = ACTIONS(1397), + [anon_sym_DQUOTE] = ACTIONS(1397), + [anon_sym_BQUOTE] = ACTIONS(1397), + [sym_bytes_literal] = ACTIONS(1397), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1395), + [sym_at_ident] = ACTIONS(1397), + [sym_hash_ident] = ACTIONS(1397), + [sym_type_ident] = ACTIONS(1397), + [sym_ct_type_ident] = ACTIONS(1397), + [sym_const_ident] = ACTIONS(1395), + [sym_builtin] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_AMP] = ACTIONS(1395), + [anon_sym_static] = ACTIONS(1395), + [anon_sym_tlocal] = ACTIONS(1395), + [anon_sym_SEMI] = ACTIONS(1397), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_const] = ACTIONS(1395), + [anon_sym_var] = ACTIONS(1395), + [anon_sym_return] = ACTIONS(1395), + [anon_sym_continue] = ACTIONS(1395), + [anon_sym_break] = ACTIONS(1395), + [anon_sym_defer] = ACTIONS(1395), + [anon_sym_assert] = ACTIONS(1395), + [anon_sym_nextcase] = ACTIONS(1395), + [anon_sym_switch] = ACTIONS(1395), + [anon_sym_AMP_AMP] = ACTIONS(1397), + [anon_sym_if] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1395), + [anon_sym_foreach] = ACTIONS(1395), + [anon_sym_foreach_r] = ACTIONS(1395), + [anon_sym_while] = ACTIONS(1395), + [anon_sym_do] = ACTIONS(1395), + [anon_sym_int] = ACTIONS(1395), + [anon_sym_PLUS] = ACTIONS(1395), + [anon_sym_DASH] = ACTIONS(1395), + [anon_sym_STAR] = ACTIONS(1397), + [anon_sym_asm] = ACTIONS(1395), + [anon_sym_DOLLARassert] = ACTIONS(1395), + [anon_sym_DOLLARerror] = ACTIONS(1395), + [anon_sym_DOLLARecho] = ACTIONS(1395), + [anon_sym_DOLLARif] = ACTIONS(1395), + [anon_sym_DOLLARcase] = ACTIONS(1395), + [anon_sym_DOLLARdefault] = ACTIONS(1395), + [anon_sym_DOLLARswitch] = ACTIONS(1395), + [anon_sym_DOLLARendswitch] = ACTIONS(1395), + [anon_sym_DOLLARfor] = ACTIONS(1395), + [anon_sym_DOLLARforeach] = ACTIONS(1395), + [anon_sym_DOLLARalignof] = ACTIONS(1395), + [anon_sym_DOLLARextnameof] = ACTIONS(1395), + [anon_sym_DOLLARnameof] = ACTIONS(1395), + [anon_sym_DOLLARoffsetof] = ACTIONS(1395), + [anon_sym_DOLLARqnameof] = ACTIONS(1395), + [anon_sym_DOLLARvaconst] = ACTIONS(1395), + [anon_sym_DOLLARvaarg] = ACTIONS(1395), + [anon_sym_DOLLARvaref] = ACTIONS(1395), + [anon_sym_DOLLARvaexpr] = ACTIONS(1395), + [anon_sym_true] = ACTIONS(1395), + [anon_sym_false] = ACTIONS(1395), + [anon_sym_null] = ACTIONS(1395), + [anon_sym_DOLLARvacount] = ACTIONS(1395), + [anon_sym_DOLLARappend] = ACTIONS(1395), + [anon_sym_DOLLARconcat] = ACTIONS(1395), + [anon_sym_DOLLAReval] = ACTIONS(1395), + [anon_sym_DOLLARis_const] = ACTIONS(1395), + [anon_sym_DOLLARsizeof] = ACTIONS(1395), + [anon_sym_DOLLARstringify] = ACTIONS(1395), + [anon_sym_DOLLARand] = ACTIONS(1395), + [anon_sym_DOLLARdefined] = ACTIONS(1395), + [anon_sym_DOLLARembed] = ACTIONS(1395), + [anon_sym_DOLLARor] = ACTIONS(1395), + [anon_sym_DOLLARfeature] = ACTIONS(1395), + [anon_sym_DOLLARassignable] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_PLUS_PLUS] = ACTIONS(1397), + [anon_sym_DASH_DASH] = ACTIONS(1397), + [anon_sym_typeid] = ACTIONS(1395), + [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [anon_sym_void] = ACTIONS(1395), + [anon_sym_bool] = ACTIONS(1395), + [anon_sym_char] = ACTIONS(1395), + [anon_sym_ichar] = ACTIONS(1395), + [anon_sym_short] = ACTIONS(1395), + [anon_sym_ushort] = ACTIONS(1395), + [anon_sym_uint] = ACTIONS(1395), + [anon_sym_long] = ACTIONS(1395), + [anon_sym_ulong] = ACTIONS(1395), + [anon_sym_int128] = ACTIONS(1395), + [anon_sym_uint128] = ACTIONS(1395), + [anon_sym_float] = ACTIONS(1395), + [anon_sym_double] = ACTIONS(1395), + [anon_sym_float16] = ACTIONS(1395), + [anon_sym_bfloat16] = ACTIONS(1395), + [anon_sym_float128] = ACTIONS(1395), + [anon_sym_iptr] = ACTIONS(1395), + [anon_sym_uptr] = ACTIONS(1395), + [anon_sym_isz] = ACTIONS(1395), + [anon_sym_usz] = ACTIONS(1395), + [anon_sym_anyfault] = ACTIONS(1395), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_DOLLARtypeof] = ACTIONS(1395), + [anon_sym_DOLLARtypefrom] = ACTIONS(1395), + [anon_sym_DOLLARvatype] = ACTIONS(1395), + [anon_sym_DOLLARevaltype] = ACTIONS(1395), + [sym_real_literal] = ACTIONS(1397), }, [431] = { [sym_line_comment] = STATE(431), [sym_doc_comment] = STATE(431), [sym_block_comment] = STATE(431), - [sym_ident] = ACTIONS(1524), - [sym_integer_literal] = ACTIONS(1526), - [anon_sym_SQUOTE] = ACTIONS(1526), - [anon_sym_DQUOTE] = ACTIONS(1526), - [anon_sym_BQUOTE] = ACTIONS(1526), - [sym_bytes_literal] = ACTIONS(1526), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1524), - [sym_at_ident] = ACTIONS(1526), - [sym_hash_ident] = ACTIONS(1526), - [sym_type_ident] = ACTIONS(1526), - [sym_ct_type_ident] = ACTIONS(1526), - [sym_const_ident] = ACTIONS(1524), - [sym_builtin] = ACTIONS(1526), - [anon_sym_LPAREN] = ACTIONS(1526), - [anon_sym_AMP] = ACTIONS(1524), - [anon_sym_static] = ACTIONS(1524), - [anon_sym_tlocal] = ACTIONS(1524), - [anon_sym_SEMI] = ACTIONS(1526), - [anon_sym_fn] = ACTIONS(1524), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_RBRACE] = ACTIONS(1526), - [anon_sym_const] = ACTIONS(1524), - [anon_sym_var] = ACTIONS(1524), - [anon_sym_return] = ACTIONS(1524), - [anon_sym_continue] = ACTIONS(1524), - [anon_sym_break] = ACTIONS(1524), - [anon_sym_defer] = ACTIONS(1524), - [anon_sym_assert] = ACTIONS(1524), - [anon_sym_case] = ACTIONS(1524), - [anon_sym_default] = ACTIONS(1524), - [anon_sym_nextcase] = ACTIONS(1524), - [anon_sym_switch] = ACTIONS(1524), - [anon_sym_AMP_AMP] = ACTIONS(1526), - [anon_sym_if] = ACTIONS(1524), - [anon_sym_for] = ACTIONS(1524), - [anon_sym_foreach] = ACTIONS(1524), - [anon_sym_foreach_r] = ACTIONS(1524), - [anon_sym_while] = ACTIONS(1524), - [anon_sym_do] = ACTIONS(1524), - [anon_sym_int] = ACTIONS(1524), - [anon_sym_PLUS] = ACTIONS(1524), - [anon_sym_DASH] = ACTIONS(1524), - [anon_sym_STAR] = ACTIONS(1526), - [anon_sym_asm] = ACTIONS(1524), - [anon_sym_DOLLARassert] = ACTIONS(1524), - [anon_sym_DOLLARerror] = ACTIONS(1524), - [anon_sym_DOLLARecho] = ACTIONS(1524), - [anon_sym_DOLLARif] = ACTIONS(1524), - [anon_sym_DOLLARswitch] = ACTIONS(1524), - [anon_sym_DOLLARfor] = ACTIONS(1524), - [anon_sym_DOLLARforeach] = ACTIONS(1524), - [anon_sym_DOLLARalignof] = ACTIONS(1524), - [anon_sym_DOLLARextnameof] = ACTIONS(1524), - [anon_sym_DOLLARnameof] = ACTIONS(1524), - [anon_sym_DOLLARoffsetof] = ACTIONS(1524), - [anon_sym_DOLLARqnameof] = ACTIONS(1524), - [anon_sym_DOLLARvaconst] = ACTIONS(1524), - [anon_sym_DOLLARvaarg] = ACTIONS(1524), - [anon_sym_DOLLARvaref] = ACTIONS(1524), - [anon_sym_DOLLARvaexpr] = ACTIONS(1524), - [anon_sym_true] = ACTIONS(1524), - [anon_sym_false] = ACTIONS(1524), - [anon_sym_null] = ACTIONS(1524), - [anon_sym_DOLLARvacount] = ACTIONS(1524), - [anon_sym_DOLLARappend] = ACTIONS(1524), - [anon_sym_DOLLARconcat] = ACTIONS(1524), - [anon_sym_DOLLAReval] = ACTIONS(1524), - [anon_sym_DOLLARis_const] = ACTIONS(1524), - [anon_sym_DOLLARsizeof] = ACTIONS(1524), - [anon_sym_DOLLARstringify] = ACTIONS(1524), - [anon_sym_DOLLARand] = ACTIONS(1524), - [anon_sym_DOLLARdefined] = ACTIONS(1524), - [anon_sym_DOLLARembed] = ACTIONS(1524), - [anon_sym_DOLLARor] = ACTIONS(1524), - [anon_sym_DOLLARfeature] = ACTIONS(1524), - [anon_sym_DOLLARassignable] = ACTIONS(1524), - [anon_sym_BANG] = ACTIONS(1526), - [anon_sym_TILDE] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1526), - [anon_sym_DASH_DASH] = ACTIONS(1526), - [anon_sym_typeid] = ACTIONS(1524), - [anon_sym_LBRACE_PIPE] = ACTIONS(1526), - [anon_sym_PIPE_RBRACE] = ACTIONS(1526), - [anon_sym_void] = ACTIONS(1524), - [anon_sym_bool] = ACTIONS(1524), - [anon_sym_char] = ACTIONS(1524), - [anon_sym_ichar] = ACTIONS(1524), - [anon_sym_short] = ACTIONS(1524), - [anon_sym_ushort] = ACTIONS(1524), - [anon_sym_uint] = ACTIONS(1524), - [anon_sym_long] = ACTIONS(1524), - [anon_sym_ulong] = ACTIONS(1524), - [anon_sym_int128] = ACTIONS(1524), - [anon_sym_uint128] = ACTIONS(1524), - [anon_sym_float] = ACTIONS(1524), - [anon_sym_double] = ACTIONS(1524), - [anon_sym_float16] = ACTIONS(1524), - [anon_sym_bfloat16] = ACTIONS(1524), - [anon_sym_float128] = ACTIONS(1524), - [anon_sym_iptr] = ACTIONS(1524), - [anon_sym_uptr] = ACTIONS(1524), - [anon_sym_isz] = ACTIONS(1524), - [anon_sym_usz] = ACTIONS(1524), - [anon_sym_anyfault] = ACTIONS(1524), - [anon_sym_any] = ACTIONS(1524), - [anon_sym_DOLLARtypeof] = ACTIONS(1524), - [anon_sym_DOLLARtypefrom] = ACTIONS(1524), - [anon_sym_DOLLARvatype] = ACTIONS(1524), - [anon_sym_DOLLARevaltype] = ACTIONS(1524), - [sym_real_literal] = ACTIONS(1526), + [sym_ident] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(1405), + [anon_sym_SQUOTE] = ACTIONS(1405), + [anon_sym_DQUOTE] = ACTIONS(1405), + [anon_sym_BQUOTE] = ACTIONS(1405), + [sym_bytes_literal] = ACTIONS(1405), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1403), + [sym_at_ident] = ACTIONS(1405), + [sym_hash_ident] = ACTIONS(1405), + [sym_type_ident] = ACTIONS(1405), + [sym_ct_type_ident] = ACTIONS(1405), + [sym_const_ident] = ACTIONS(1403), + [sym_builtin] = ACTIONS(1405), + [anon_sym_LPAREN] = ACTIONS(1405), + [anon_sym_AMP] = ACTIONS(1403), + [anon_sym_static] = ACTIONS(1403), + [anon_sym_tlocal] = ACTIONS(1403), + [anon_sym_SEMI] = ACTIONS(1405), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_const] = ACTIONS(1403), + [anon_sym_var] = ACTIONS(1403), + [anon_sym_return] = ACTIONS(1403), + [anon_sym_continue] = ACTIONS(1403), + [anon_sym_break] = ACTIONS(1403), + [anon_sym_defer] = ACTIONS(1403), + [anon_sym_assert] = ACTIONS(1403), + [anon_sym_nextcase] = ACTIONS(1403), + [anon_sym_switch] = ACTIONS(1403), + [anon_sym_AMP_AMP] = ACTIONS(1405), + [anon_sym_if] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1403), + [anon_sym_foreach] = ACTIONS(1403), + [anon_sym_foreach_r] = ACTIONS(1403), + [anon_sym_while] = ACTIONS(1403), + [anon_sym_do] = ACTIONS(1403), + [anon_sym_int] = ACTIONS(1403), + [anon_sym_PLUS] = ACTIONS(1403), + [anon_sym_DASH] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(1405), + [anon_sym_asm] = ACTIONS(1403), + [anon_sym_DOLLARassert] = ACTIONS(1403), + [anon_sym_DOLLARerror] = ACTIONS(1403), + [anon_sym_DOLLARecho] = ACTIONS(1403), + [anon_sym_DOLLARif] = ACTIONS(1403), + [anon_sym_DOLLARcase] = ACTIONS(1403), + [anon_sym_DOLLARdefault] = ACTIONS(1403), + [anon_sym_DOLLARswitch] = ACTIONS(1403), + [anon_sym_DOLLARendswitch] = ACTIONS(1403), + [anon_sym_DOLLARfor] = ACTIONS(1403), + [anon_sym_DOLLARforeach] = ACTIONS(1403), + [anon_sym_DOLLARalignof] = ACTIONS(1403), + [anon_sym_DOLLARextnameof] = ACTIONS(1403), + [anon_sym_DOLLARnameof] = ACTIONS(1403), + [anon_sym_DOLLARoffsetof] = ACTIONS(1403), + [anon_sym_DOLLARqnameof] = ACTIONS(1403), + [anon_sym_DOLLARvaconst] = ACTIONS(1403), + [anon_sym_DOLLARvaarg] = ACTIONS(1403), + [anon_sym_DOLLARvaref] = ACTIONS(1403), + [anon_sym_DOLLARvaexpr] = ACTIONS(1403), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), + [anon_sym_null] = ACTIONS(1403), + [anon_sym_DOLLARvacount] = ACTIONS(1403), + [anon_sym_DOLLARappend] = ACTIONS(1403), + [anon_sym_DOLLARconcat] = ACTIONS(1403), + [anon_sym_DOLLAReval] = ACTIONS(1403), + [anon_sym_DOLLARis_const] = ACTIONS(1403), + [anon_sym_DOLLARsizeof] = ACTIONS(1403), + [anon_sym_DOLLARstringify] = ACTIONS(1403), + [anon_sym_DOLLARand] = ACTIONS(1403), + [anon_sym_DOLLARdefined] = ACTIONS(1403), + [anon_sym_DOLLARembed] = ACTIONS(1403), + [anon_sym_DOLLARor] = ACTIONS(1403), + [anon_sym_DOLLARfeature] = ACTIONS(1403), + [anon_sym_DOLLARassignable] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1405), + [anon_sym_PLUS_PLUS] = ACTIONS(1405), + [anon_sym_DASH_DASH] = ACTIONS(1405), + [anon_sym_typeid] = ACTIONS(1403), + [anon_sym_LBRACE_PIPE] = ACTIONS(1405), + [anon_sym_void] = ACTIONS(1403), + [anon_sym_bool] = ACTIONS(1403), + [anon_sym_char] = ACTIONS(1403), + [anon_sym_ichar] = ACTIONS(1403), + [anon_sym_short] = ACTIONS(1403), + [anon_sym_ushort] = ACTIONS(1403), + [anon_sym_uint] = ACTIONS(1403), + [anon_sym_long] = ACTIONS(1403), + [anon_sym_ulong] = ACTIONS(1403), + [anon_sym_int128] = ACTIONS(1403), + [anon_sym_uint128] = ACTIONS(1403), + [anon_sym_float] = ACTIONS(1403), + [anon_sym_double] = ACTIONS(1403), + [anon_sym_float16] = ACTIONS(1403), + [anon_sym_bfloat16] = ACTIONS(1403), + [anon_sym_float128] = ACTIONS(1403), + [anon_sym_iptr] = ACTIONS(1403), + [anon_sym_uptr] = ACTIONS(1403), + [anon_sym_isz] = ACTIONS(1403), + [anon_sym_usz] = ACTIONS(1403), + [anon_sym_anyfault] = ACTIONS(1403), + [anon_sym_any] = ACTIONS(1403), + [anon_sym_DOLLARtypeof] = ACTIONS(1403), + [anon_sym_DOLLARtypefrom] = ACTIONS(1403), + [anon_sym_DOLLARvatype] = ACTIONS(1403), + [anon_sym_DOLLARevaltype] = ACTIONS(1403), + [sym_real_literal] = ACTIONS(1405), }, [432] = { [sym_line_comment] = STATE(432), [sym_doc_comment] = STATE(432), [sym_block_comment] = STATE(432), - [sym_ident] = ACTIONS(1528), - [sym_integer_literal] = ACTIONS(1530), - [anon_sym_SQUOTE] = ACTIONS(1530), - [anon_sym_DQUOTE] = ACTIONS(1530), - [anon_sym_BQUOTE] = ACTIONS(1530), - [sym_bytes_literal] = ACTIONS(1530), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1528), - [sym_at_ident] = ACTIONS(1530), - [sym_hash_ident] = ACTIONS(1530), - [sym_type_ident] = ACTIONS(1530), - [sym_ct_type_ident] = ACTIONS(1530), - [sym_const_ident] = ACTIONS(1528), - [sym_builtin] = ACTIONS(1530), - [anon_sym_LPAREN] = ACTIONS(1530), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_static] = ACTIONS(1528), - [anon_sym_tlocal] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(1530), - [anon_sym_fn] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(1530), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_var] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(1528), - [anon_sym_continue] = ACTIONS(1528), - [anon_sym_break] = ACTIONS(1528), - [anon_sym_defer] = ACTIONS(1528), - [anon_sym_assert] = ACTIONS(1528), - [anon_sym_case] = ACTIONS(1528), - [anon_sym_default] = ACTIONS(1528), - [anon_sym_nextcase] = ACTIONS(1528), - [anon_sym_switch] = ACTIONS(1528), - [anon_sym_AMP_AMP] = ACTIONS(1530), - [anon_sym_if] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1528), - [anon_sym_foreach] = ACTIONS(1528), - [anon_sym_foreach_r] = ACTIONS(1528), - [anon_sym_while] = ACTIONS(1528), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_int] = ACTIONS(1528), - [anon_sym_PLUS] = ACTIONS(1528), - [anon_sym_DASH] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1530), - [anon_sym_asm] = ACTIONS(1528), - [anon_sym_DOLLARassert] = ACTIONS(1528), - [anon_sym_DOLLARerror] = ACTIONS(1528), - [anon_sym_DOLLARecho] = ACTIONS(1528), - [anon_sym_DOLLARif] = ACTIONS(1528), - [anon_sym_DOLLARswitch] = ACTIONS(1528), - [anon_sym_DOLLARfor] = ACTIONS(1528), - [anon_sym_DOLLARforeach] = ACTIONS(1528), - [anon_sym_DOLLARalignof] = ACTIONS(1528), - [anon_sym_DOLLARextnameof] = ACTIONS(1528), - [anon_sym_DOLLARnameof] = ACTIONS(1528), - [anon_sym_DOLLARoffsetof] = ACTIONS(1528), - [anon_sym_DOLLARqnameof] = ACTIONS(1528), - [anon_sym_DOLLARvaconst] = ACTIONS(1528), - [anon_sym_DOLLARvaarg] = ACTIONS(1528), - [anon_sym_DOLLARvaref] = ACTIONS(1528), - [anon_sym_DOLLARvaexpr] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [anon_sym_null] = ACTIONS(1528), - [anon_sym_DOLLARvacount] = ACTIONS(1528), - [anon_sym_DOLLARappend] = ACTIONS(1528), - [anon_sym_DOLLARconcat] = ACTIONS(1528), - [anon_sym_DOLLAReval] = ACTIONS(1528), - [anon_sym_DOLLARis_const] = ACTIONS(1528), - [anon_sym_DOLLARsizeof] = ACTIONS(1528), - [anon_sym_DOLLARstringify] = ACTIONS(1528), - [anon_sym_DOLLARand] = ACTIONS(1528), - [anon_sym_DOLLARdefined] = ACTIONS(1528), - [anon_sym_DOLLARembed] = ACTIONS(1528), - [anon_sym_DOLLARor] = ACTIONS(1528), - [anon_sym_DOLLARfeature] = ACTIONS(1528), - [anon_sym_DOLLARassignable] = ACTIONS(1528), - [anon_sym_BANG] = ACTIONS(1530), - [anon_sym_TILDE] = ACTIONS(1530), - [anon_sym_PLUS_PLUS] = ACTIONS(1530), - [anon_sym_DASH_DASH] = ACTIONS(1530), - [anon_sym_typeid] = ACTIONS(1528), - [anon_sym_LBRACE_PIPE] = ACTIONS(1530), - [anon_sym_PIPE_RBRACE] = ACTIONS(1530), - [anon_sym_void] = ACTIONS(1528), - [anon_sym_bool] = ACTIONS(1528), - [anon_sym_char] = ACTIONS(1528), - [anon_sym_ichar] = ACTIONS(1528), - [anon_sym_short] = ACTIONS(1528), - [anon_sym_ushort] = ACTIONS(1528), - [anon_sym_uint] = ACTIONS(1528), - [anon_sym_long] = ACTIONS(1528), - [anon_sym_ulong] = ACTIONS(1528), - [anon_sym_int128] = ACTIONS(1528), - [anon_sym_uint128] = ACTIONS(1528), - [anon_sym_float] = ACTIONS(1528), - [anon_sym_double] = ACTIONS(1528), - [anon_sym_float16] = ACTIONS(1528), - [anon_sym_bfloat16] = ACTIONS(1528), - [anon_sym_float128] = ACTIONS(1528), - [anon_sym_iptr] = ACTIONS(1528), - [anon_sym_uptr] = ACTIONS(1528), - [anon_sym_isz] = ACTIONS(1528), - [anon_sym_usz] = ACTIONS(1528), - [anon_sym_anyfault] = ACTIONS(1528), - [anon_sym_any] = ACTIONS(1528), - [anon_sym_DOLLARtypeof] = ACTIONS(1528), - [anon_sym_DOLLARtypefrom] = ACTIONS(1528), - [anon_sym_DOLLARvatype] = ACTIONS(1528), - [anon_sym_DOLLARevaltype] = ACTIONS(1528), - [sym_real_literal] = ACTIONS(1530), + [sym_ident] = ACTIONS(1407), + [sym_integer_literal] = ACTIONS(1409), + [anon_sym_SQUOTE] = ACTIONS(1409), + [anon_sym_DQUOTE] = ACTIONS(1409), + [anon_sym_BQUOTE] = ACTIONS(1409), + [sym_bytes_literal] = ACTIONS(1409), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1407), + [sym_at_ident] = ACTIONS(1409), + [sym_hash_ident] = ACTIONS(1409), + [sym_type_ident] = ACTIONS(1409), + [sym_ct_type_ident] = ACTIONS(1409), + [sym_const_ident] = ACTIONS(1407), + [sym_builtin] = ACTIONS(1409), + [anon_sym_LPAREN] = ACTIONS(1409), + [anon_sym_AMP] = ACTIONS(1407), + [anon_sym_static] = ACTIONS(1407), + [anon_sym_tlocal] = ACTIONS(1407), + [anon_sym_SEMI] = ACTIONS(1409), + [anon_sym_fn] = ACTIONS(1407), + [anon_sym_LBRACE] = ACTIONS(1407), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_var] = ACTIONS(1407), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_continue] = ACTIONS(1407), + [anon_sym_break] = ACTIONS(1407), + [anon_sym_defer] = ACTIONS(1407), + [anon_sym_assert] = ACTIONS(1407), + [anon_sym_nextcase] = ACTIONS(1407), + [anon_sym_switch] = ACTIONS(1407), + [anon_sym_AMP_AMP] = ACTIONS(1409), + [anon_sym_if] = ACTIONS(1407), + [anon_sym_for] = ACTIONS(1407), + [anon_sym_foreach] = ACTIONS(1407), + [anon_sym_foreach_r] = ACTIONS(1407), + [anon_sym_while] = ACTIONS(1407), + [anon_sym_do] = ACTIONS(1407), + [anon_sym_int] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1407), + [anon_sym_DASH] = ACTIONS(1407), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_asm] = ACTIONS(1407), + [anon_sym_DOLLARassert] = ACTIONS(1407), + [anon_sym_DOLLARerror] = ACTIONS(1407), + [anon_sym_DOLLARecho] = ACTIONS(1407), + [anon_sym_DOLLARif] = ACTIONS(1407), + [anon_sym_DOLLARcase] = ACTIONS(1407), + [anon_sym_DOLLARdefault] = ACTIONS(1407), + [anon_sym_DOLLARswitch] = ACTIONS(1407), + [anon_sym_DOLLARendswitch] = ACTIONS(1407), + [anon_sym_DOLLARfor] = ACTIONS(1407), + [anon_sym_DOLLARforeach] = ACTIONS(1407), + [anon_sym_DOLLARalignof] = ACTIONS(1407), + [anon_sym_DOLLARextnameof] = ACTIONS(1407), + [anon_sym_DOLLARnameof] = ACTIONS(1407), + [anon_sym_DOLLARoffsetof] = ACTIONS(1407), + [anon_sym_DOLLARqnameof] = ACTIONS(1407), + [anon_sym_DOLLARvaconst] = ACTIONS(1407), + [anon_sym_DOLLARvaarg] = ACTIONS(1407), + [anon_sym_DOLLARvaref] = ACTIONS(1407), + [anon_sym_DOLLARvaexpr] = ACTIONS(1407), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_null] = ACTIONS(1407), + [anon_sym_DOLLARvacount] = ACTIONS(1407), + [anon_sym_DOLLARappend] = ACTIONS(1407), + [anon_sym_DOLLARconcat] = ACTIONS(1407), + [anon_sym_DOLLAReval] = ACTIONS(1407), + [anon_sym_DOLLARis_const] = ACTIONS(1407), + [anon_sym_DOLLARsizeof] = ACTIONS(1407), + [anon_sym_DOLLARstringify] = ACTIONS(1407), + [anon_sym_DOLLARand] = ACTIONS(1407), + [anon_sym_DOLLARdefined] = ACTIONS(1407), + [anon_sym_DOLLARembed] = ACTIONS(1407), + [anon_sym_DOLLARor] = ACTIONS(1407), + [anon_sym_DOLLARfeature] = ACTIONS(1407), + [anon_sym_DOLLARassignable] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1409), + [anon_sym_TILDE] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1409), + [anon_sym_DASH_DASH] = ACTIONS(1409), + [anon_sym_typeid] = ACTIONS(1407), + [anon_sym_LBRACE_PIPE] = ACTIONS(1409), + [anon_sym_void] = ACTIONS(1407), + [anon_sym_bool] = ACTIONS(1407), + [anon_sym_char] = ACTIONS(1407), + [anon_sym_ichar] = ACTIONS(1407), + [anon_sym_short] = ACTIONS(1407), + [anon_sym_ushort] = ACTIONS(1407), + [anon_sym_uint] = ACTIONS(1407), + [anon_sym_long] = ACTIONS(1407), + [anon_sym_ulong] = ACTIONS(1407), + [anon_sym_int128] = ACTIONS(1407), + [anon_sym_uint128] = ACTIONS(1407), + [anon_sym_float] = ACTIONS(1407), + [anon_sym_double] = ACTIONS(1407), + [anon_sym_float16] = ACTIONS(1407), + [anon_sym_bfloat16] = ACTIONS(1407), + [anon_sym_float128] = ACTIONS(1407), + [anon_sym_iptr] = ACTIONS(1407), + [anon_sym_uptr] = ACTIONS(1407), + [anon_sym_isz] = ACTIONS(1407), + [anon_sym_usz] = ACTIONS(1407), + [anon_sym_anyfault] = ACTIONS(1407), + [anon_sym_any] = ACTIONS(1407), + [anon_sym_DOLLARtypeof] = ACTIONS(1407), + [anon_sym_DOLLARtypefrom] = ACTIONS(1407), + [anon_sym_DOLLARvatype] = ACTIONS(1407), + [anon_sym_DOLLARevaltype] = ACTIONS(1407), + [sym_real_literal] = ACTIONS(1409), }, [433] = { [sym_line_comment] = STATE(433), [sym_doc_comment] = STATE(433), [sym_block_comment] = STATE(433), - [sym_ident] = ACTIONS(1532), - [sym_integer_literal] = ACTIONS(1534), - [anon_sym_SQUOTE] = ACTIONS(1534), - [anon_sym_DQUOTE] = ACTIONS(1534), - [anon_sym_BQUOTE] = ACTIONS(1534), - [sym_bytes_literal] = ACTIONS(1534), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1532), - [sym_at_ident] = ACTIONS(1534), - [sym_hash_ident] = ACTIONS(1534), - [sym_type_ident] = ACTIONS(1534), - [sym_ct_type_ident] = ACTIONS(1534), - [sym_const_ident] = ACTIONS(1532), - [sym_builtin] = ACTIONS(1534), - [anon_sym_LPAREN] = ACTIONS(1534), - [anon_sym_AMP] = ACTIONS(1532), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_tlocal] = ACTIONS(1532), - [anon_sym_SEMI] = ACTIONS(1534), - [anon_sym_fn] = ACTIONS(1532), - [anon_sym_LBRACE] = ACTIONS(1532), - [anon_sym_RBRACE] = ACTIONS(1534), - [anon_sym_const] = ACTIONS(1532), - [anon_sym_var] = ACTIONS(1532), - [anon_sym_return] = ACTIONS(1532), - [anon_sym_continue] = ACTIONS(1532), - [anon_sym_break] = ACTIONS(1532), - [anon_sym_defer] = ACTIONS(1532), - [anon_sym_assert] = ACTIONS(1532), - [anon_sym_case] = ACTIONS(1532), - [anon_sym_default] = ACTIONS(1532), - [anon_sym_nextcase] = ACTIONS(1532), - [anon_sym_switch] = ACTIONS(1532), - [anon_sym_AMP_AMP] = ACTIONS(1534), - [anon_sym_if] = ACTIONS(1532), - [anon_sym_for] = ACTIONS(1532), - [anon_sym_foreach] = ACTIONS(1532), - [anon_sym_foreach_r] = ACTIONS(1532), - [anon_sym_while] = ACTIONS(1532), - [anon_sym_do] = ACTIONS(1532), - [anon_sym_int] = ACTIONS(1532), - [anon_sym_PLUS] = ACTIONS(1532), - [anon_sym_DASH] = ACTIONS(1532), - [anon_sym_STAR] = ACTIONS(1534), - [anon_sym_asm] = ACTIONS(1532), - [anon_sym_DOLLARassert] = ACTIONS(1532), - [anon_sym_DOLLARerror] = ACTIONS(1532), - [anon_sym_DOLLARecho] = ACTIONS(1532), - [anon_sym_DOLLARif] = ACTIONS(1532), - [anon_sym_DOLLARswitch] = ACTIONS(1532), - [anon_sym_DOLLARfor] = ACTIONS(1532), - [anon_sym_DOLLARforeach] = ACTIONS(1532), - [anon_sym_DOLLARalignof] = ACTIONS(1532), - [anon_sym_DOLLARextnameof] = ACTIONS(1532), - [anon_sym_DOLLARnameof] = ACTIONS(1532), - [anon_sym_DOLLARoffsetof] = ACTIONS(1532), - [anon_sym_DOLLARqnameof] = ACTIONS(1532), - [anon_sym_DOLLARvaconst] = ACTIONS(1532), - [anon_sym_DOLLARvaarg] = ACTIONS(1532), - [anon_sym_DOLLARvaref] = ACTIONS(1532), - [anon_sym_DOLLARvaexpr] = ACTIONS(1532), - [anon_sym_true] = ACTIONS(1532), - [anon_sym_false] = ACTIONS(1532), - [anon_sym_null] = ACTIONS(1532), - [anon_sym_DOLLARvacount] = ACTIONS(1532), - [anon_sym_DOLLARappend] = ACTIONS(1532), - [anon_sym_DOLLARconcat] = ACTIONS(1532), - [anon_sym_DOLLAReval] = ACTIONS(1532), - [anon_sym_DOLLARis_const] = ACTIONS(1532), - [anon_sym_DOLLARsizeof] = ACTIONS(1532), - [anon_sym_DOLLARstringify] = ACTIONS(1532), - [anon_sym_DOLLARand] = ACTIONS(1532), - [anon_sym_DOLLARdefined] = ACTIONS(1532), - [anon_sym_DOLLARembed] = ACTIONS(1532), - [anon_sym_DOLLARor] = ACTIONS(1532), - [anon_sym_DOLLARfeature] = ACTIONS(1532), - [anon_sym_DOLLARassignable] = ACTIONS(1532), - [anon_sym_BANG] = ACTIONS(1534), - [anon_sym_TILDE] = ACTIONS(1534), - [anon_sym_PLUS_PLUS] = ACTIONS(1534), - [anon_sym_DASH_DASH] = ACTIONS(1534), - [anon_sym_typeid] = ACTIONS(1532), - [anon_sym_LBRACE_PIPE] = ACTIONS(1534), - [anon_sym_PIPE_RBRACE] = ACTIONS(1534), - [anon_sym_void] = ACTIONS(1532), - [anon_sym_bool] = ACTIONS(1532), - [anon_sym_char] = ACTIONS(1532), - [anon_sym_ichar] = ACTIONS(1532), - [anon_sym_short] = ACTIONS(1532), - [anon_sym_ushort] = ACTIONS(1532), - [anon_sym_uint] = ACTIONS(1532), - [anon_sym_long] = ACTIONS(1532), - [anon_sym_ulong] = ACTIONS(1532), - [anon_sym_int128] = ACTIONS(1532), - [anon_sym_uint128] = ACTIONS(1532), - [anon_sym_float] = ACTIONS(1532), - [anon_sym_double] = ACTIONS(1532), - [anon_sym_float16] = ACTIONS(1532), - [anon_sym_bfloat16] = ACTIONS(1532), - [anon_sym_float128] = ACTIONS(1532), - [anon_sym_iptr] = ACTIONS(1532), - [anon_sym_uptr] = ACTIONS(1532), - [anon_sym_isz] = ACTIONS(1532), - [anon_sym_usz] = ACTIONS(1532), - [anon_sym_anyfault] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_DOLLARtypeof] = ACTIONS(1532), - [anon_sym_DOLLARtypefrom] = ACTIONS(1532), - [anon_sym_DOLLARvatype] = ACTIONS(1532), - [anon_sym_DOLLARevaltype] = ACTIONS(1532), - [sym_real_literal] = ACTIONS(1534), + [sym_ident] = ACTIONS(1399), + [sym_integer_literal] = ACTIONS(1401), + [anon_sym_SQUOTE] = ACTIONS(1401), + [anon_sym_DQUOTE] = ACTIONS(1401), + [anon_sym_BQUOTE] = ACTIONS(1401), + [sym_bytes_literal] = ACTIONS(1401), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1399), + [sym_at_ident] = ACTIONS(1401), + [sym_hash_ident] = ACTIONS(1401), + [sym_type_ident] = ACTIONS(1401), + [sym_ct_type_ident] = ACTIONS(1401), + [sym_const_ident] = ACTIONS(1399), + [sym_builtin] = ACTIONS(1401), + [anon_sym_LPAREN] = ACTIONS(1401), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_static] = ACTIONS(1399), + [anon_sym_tlocal] = ACTIONS(1399), + [anon_sym_SEMI] = ACTIONS(1401), + [anon_sym_fn] = ACTIONS(1399), + [anon_sym_LBRACE] = ACTIONS(1399), + [anon_sym_const] = ACTIONS(1399), + [anon_sym_var] = ACTIONS(1399), + [anon_sym_return] = ACTIONS(1399), + [anon_sym_continue] = ACTIONS(1399), + [anon_sym_break] = ACTIONS(1399), + [anon_sym_defer] = ACTIONS(1399), + [anon_sym_assert] = ACTIONS(1399), + [anon_sym_nextcase] = ACTIONS(1399), + [anon_sym_switch] = ACTIONS(1399), + [anon_sym_AMP_AMP] = ACTIONS(1401), + [anon_sym_if] = ACTIONS(1399), + [anon_sym_for] = ACTIONS(1399), + [anon_sym_foreach] = ACTIONS(1399), + [anon_sym_foreach_r] = ACTIONS(1399), + [anon_sym_while] = ACTIONS(1399), + [anon_sym_do] = ACTIONS(1399), + [anon_sym_int] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1399), + [anon_sym_DASH] = ACTIONS(1399), + [anon_sym_STAR] = ACTIONS(1401), + [anon_sym_asm] = ACTIONS(1399), + [anon_sym_DOLLARassert] = ACTIONS(1399), + [anon_sym_DOLLARerror] = ACTIONS(1399), + [anon_sym_DOLLARecho] = ACTIONS(1399), + [anon_sym_DOLLARif] = ACTIONS(1399), + [anon_sym_DOLLARcase] = ACTIONS(1399), + [anon_sym_DOLLARdefault] = ACTIONS(1399), + [anon_sym_DOLLARswitch] = ACTIONS(1399), + [anon_sym_DOLLARendswitch] = ACTIONS(1399), + [anon_sym_DOLLARfor] = ACTIONS(1399), + [anon_sym_DOLLARforeach] = ACTIONS(1399), + [anon_sym_DOLLARalignof] = ACTIONS(1399), + [anon_sym_DOLLARextnameof] = ACTIONS(1399), + [anon_sym_DOLLARnameof] = ACTIONS(1399), + [anon_sym_DOLLARoffsetof] = ACTIONS(1399), + [anon_sym_DOLLARqnameof] = ACTIONS(1399), + [anon_sym_DOLLARvaconst] = ACTIONS(1399), + [anon_sym_DOLLARvaarg] = ACTIONS(1399), + [anon_sym_DOLLARvaref] = ACTIONS(1399), + [anon_sym_DOLLARvaexpr] = ACTIONS(1399), + [anon_sym_true] = ACTIONS(1399), + [anon_sym_false] = ACTIONS(1399), + [anon_sym_null] = ACTIONS(1399), + [anon_sym_DOLLARvacount] = ACTIONS(1399), + [anon_sym_DOLLARappend] = ACTIONS(1399), + [anon_sym_DOLLARconcat] = ACTIONS(1399), + [anon_sym_DOLLAReval] = ACTIONS(1399), + [anon_sym_DOLLARis_const] = ACTIONS(1399), + [anon_sym_DOLLARsizeof] = ACTIONS(1399), + [anon_sym_DOLLARstringify] = ACTIONS(1399), + [anon_sym_DOLLARand] = ACTIONS(1399), + [anon_sym_DOLLARdefined] = ACTIONS(1399), + [anon_sym_DOLLARembed] = ACTIONS(1399), + [anon_sym_DOLLARor] = ACTIONS(1399), + [anon_sym_DOLLARfeature] = ACTIONS(1399), + [anon_sym_DOLLARassignable] = ACTIONS(1399), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_TILDE] = ACTIONS(1401), + [anon_sym_PLUS_PLUS] = ACTIONS(1401), + [anon_sym_DASH_DASH] = ACTIONS(1401), + [anon_sym_typeid] = ACTIONS(1399), + [anon_sym_LBRACE_PIPE] = ACTIONS(1401), + [anon_sym_void] = ACTIONS(1399), + [anon_sym_bool] = ACTIONS(1399), + [anon_sym_char] = ACTIONS(1399), + [anon_sym_ichar] = ACTIONS(1399), + [anon_sym_short] = ACTIONS(1399), + [anon_sym_ushort] = ACTIONS(1399), + [anon_sym_uint] = ACTIONS(1399), + [anon_sym_long] = ACTIONS(1399), + [anon_sym_ulong] = ACTIONS(1399), + [anon_sym_int128] = ACTIONS(1399), + [anon_sym_uint128] = ACTIONS(1399), + [anon_sym_float] = ACTIONS(1399), + [anon_sym_double] = ACTIONS(1399), + [anon_sym_float16] = ACTIONS(1399), + [anon_sym_bfloat16] = ACTIONS(1399), + [anon_sym_float128] = ACTIONS(1399), + [anon_sym_iptr] = ACTIONS(1399), + [anon_sym_uptr] = ACTIONS(1399), + [anon_sym_isz] = ACTIONS(1399), + [anon_sym_usz] = ACTIONS(1399), + [anon_sym_anyfault] = ACTIONS(1399), + [anon_sym_any] = ACTIONS(1399), + [anon_sym_DOLLARtypeof] = ACTIONS(1399), + [anon_sym_DOLLARtypefrom] = ACTIONS(1399), + [anon_sym_DOLLARvatype] = ACTIONS(1399), + [anon_sym_DOLLARevaltype] = ACTIONS(1399), + [sym_real_literal] = ACTIONS(1401), }, [434] = { [sym_line_comment] = STATE(434), [sym_doc_comment] = STATE(434), [sym_block_comment] = STATE(434), - [sym_ident] = ACTIONS(1536), - [sym_integer_literal] = ACTIONS(1538), - [anon_sym_SQUOTE] = ACTIONS(1538), - [anon_sym_DQUOTE] = ACTIONS(1538), - [anon_sym_BQUOTE] = ACTIONS(1538), - [sym_bytes_literal] = ACTIONS(1538), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1536), - [sym_at_ident] = ACTIONS(1538), - [sym_hash_ident] = ACTIONS(1538), - [sym_type_ident] = ACTIONS(1538), - [sym_ct_type_ident] = ACTIONS(1538), - [sym_const_ident] = ACTIONS(1536), - [sym_builtin] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1538), - [anon_sym_AMP] = ACTIONS(1536), - [anon_sym_static] = ACTIONS(1536), - [anon_sym_tlocal] = ACTIONS(1536), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_fn] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(1536), - [anon_sym_RBRACE] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(1536), - [anon_sym_var] = ACTIONS(1536), - [anon_sym_return] = ACTIONS(1536), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_break] = ACTIONS(1536), - [anon_sym_defer] = ACTIONS(1536), - [anon_sym_assert] = ACTIONS(1536), - [anon_sym_case] = ACTIONS(1536), - [anon_sym_default] = ACTIONS(1536), - [anon_sym_nextcase] = ACTIONS(1536), - [anon_sym_switch] = ACTIONS(1536), - [anon_sym_AMP_AMP] = ACTIONS(1538), - [anon_sym_if] = ACTIONS(1536), - [anon_sym_for] = ACTIONS(1536), - [anon_sym_foreach] = ACTIONS(1536), - [anon_sym_foreach_r] = ACTIONS(1536), - [anon_sym_while] = ACTIONS(1536), - [anon_sym_do] = ACTIONS(1536), - [anon_sym_int] = ACTIONS(1536), - [anon_sym_PLUS] = ACTIONS(1536), - [anon_sym_DASH] = ACTIONS(1536), - [anon_sym_STAR] = ACTIONS(1538), - [anon_sym_asm] = ACTIONS(1536), - [anon_sym_DOLLARassert] = ACTIONS(1536), - [anon_sym_DOLLARerror] = ACTIONS(1536), - [anon_sym_DOLLARecho] = ACTIONS(1536), - [anon_sym_DOLLARif] = ACTIONS(1536), - [anon_sym_DOLLARswitch] = ACTIONS(1536), - [anon_sym_DOLLARfor] = ACTIONS(1536), - [anon_sym_DOLLARforeach] = ACTIONS(1536), - [anon_sym_DOLLARalignof] = ACTIONS(1536), - [anon_sym_DOLLARextnameof] = ACTIONS(1536), - [anon_sym_DOLLARnameof] = ACTIONS(1536), - [anon_sym_DOLLARoffsetof] = ACTIONS(1536), - [anon_sym_DOLLARqnameof] = ACTIONS(1536), - [anon_sym_DOLLARvaconst] = ACTIONS(1536), - [anon_sym_DOLLARvaarg] = ACTIONS(1536), - [anon_sym_DOLLARvaref] = ACTIONS(1536), - [anon_sym_DOLLARvaexpr] = ACTIONS(1536), - [anon_sym_true] = ACTIONS(1536), - [anon_sym_false] = ACTIONS(1536), - [anon_sym_null] = ACTIONS(1536), - [anon_sym_DOLLARvacount] = ACTIONS(1536), - [anon_sym_DOLLARappend] = ACTIONS(1536), - [anon_sym_DOLLARconcat] = ACTIONS(1536), - [anon_sym_DOLLAReval] = ACTIONS(1536), - [anon_sym_DOLLARis_const] = ACTIONS(1536), - [anon_sym_DOLLARsizeof] = ACTIONS(1536), - [anon_sym_DOLLARstringify] = ACTIONS(1536), - [anon_sym_DOLLARand] = ACTIONS(1536), - [anon_sym_DOLLARdefined] = ACTIONS(1536), - [anon_sym_DOLLARembed] = ACTIONS(1536), - [anon_sym_DOLLARor] = ACTIONS(1536), - [anon_sym_DOLLARfeature] = ACTIONS(1536), - [anon_sym_DOLLARassignable] = ACTIONS(1536), - [anon_sym_BANG] = ACTIONS(1538), - [anon_sym_TILDE] = ACTIONS(1538), - [anon_sym_PLUS_PLUS] = ACTIONS(1538), - [anon_sym_DASH_DASH] = ACTIONS(1538), - [anon_sym_typeid] = ACTIONS(1536), - [anon_sym_LBRACE_PIPE] = ACTIONS(1538), - [anon_sym_PIPE_RBRACE] = ACTIONS(1538), - [anon_sym_void] = ACTIONS(1536), - [anon_sym_bool] = ACTIONS(1536), - [anon_sym_char] = ACTIONS(1536), - [anon_sym_ichar] = ACTIONS(1536), - [anon_sym_short] = ACTIONS(1536), - [anon_sym_ushort] = ACTIONS(1536), - [anon_sym_uint] = ACTIONS(1536), - [anon_sym_long] = ACTIONS(1536), - [anon_sym_ulong] = ACTIONS(1536), - [anon_sym_int128] = ACTIONS(1536), - [anon_sym_uint128] = ACTIONS(1536), - [anon_sym_float] = ACTIONS(1536), - [anon_sym_double] = ACTIONS(1536), - [anon_sym_float16] = ACTIONS(1536), - [anon_sym_bfloat16] = ACTIONS(1536), - [anon_sym_float128] = ACTIONS(1536), - [anon_sym_iptr] = ACTIONS(1536), - [anon_sym_uptr] = ACTIONS(1536), - [anon_sym_isz] = ACTIONS(1536), - [anon_sym_usz] = ACTIONS(1536), - [anon_sym_anyfault] = ACTIONS(1536), - [anon_sym_any] = ACTIONS(1536), - [anon_sym_DOLLARtypeof] = ACTIONS(1536), - [anon_sym_DOLLARtypefrom] = ACTIONS(1536), - [anon_sym_DOLLARvatype] = ACTIONS(1536), - [anon_sym_DOLLARevaltype] = ACTIONS(1536), - [sym_real_literal] = ACTIONS(1538), + [sym_ident] = ACTIONS(1533), + [sym_integer_literal] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(1535), + [anon_sym_DQUOTE] = ACTIONS(1535), + [anon_sym_BQUOTE] = ACTIONS(1535), + [sym_bytes_literal] = ACTIONS(1535), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1533), + [sym_at_ident] = ACTIONS(1535), + [sym_hash_ident] = ACTIONS(1535), + [sym_type_ident] = ACTIONS(1535), + [sym_ct_type_ident] = ACTIONS(1535), + [sym_const_ident] = ACTIONS(1533), + [sym_builtin] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_AMP] = ACTIONS(1533), + [anon_sym_static] = ACTIONS(1533), + [anon_sym_tlocal] = ACTIONS(1533), + [anon_sym_SEMI] = ACTIONS(1535), + [anon_sym_fn] = ACTIONS(1533), + [anon_sym_LBRACE] = ACTIONS(1533), + [anon_sym_const] = ACTIONS(1533), + [anon_sym_var] = ACTIONS(1533), + [anon_sym_return] = ACTIONS(1533), + [anon_sym_continue] = ACTIONS(1533), + [anon_sym_break] = ACTIONS(1533), + [anon_sym_defer] = ACTIONS(1533), + [anon_sym_assert] = ACTIONS(1533), + [anon_sym_nextcase] = ACTIONS(1533), + [anon_sym_switch] = ACTIONS(1533), + [anon_sym_AMP_AMP] = ACTIONS(1535), + [anon_sym_if] = ACTIONS(1533), + [anon_sym_for] = ACTIONS(1533), + [anon_sym_foreach] = ACTIONS(1533), + [anon_sym_foreach_r] = ACTIONS(1533), + [anon_sym_while] = ACTIONS(1533), + [anon_sym_do] = ACTIONS(1533), + [anon_sym_int] = ACTIONS(1533), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_STAR] = ACTIONS(1535), + [anon_sym_asm] = ACTIONS(1533), + [anon_sym_DOLLARassert] = ACTIONS(1533), + [anon_sym_DOLLARerror] = ACTIONS(1533), + [anon_sym_DOLLARecho] = ACTIONS(1533), + [anon_sym_DOLLARif] = ACTIONS(1533), + [anon_sym_DOLLARcase] = ACTIONS(1533), + [anon_sym_DOLLARdefault] = ACTIONS(1533), + [anon_sym_DOLLARswitch] = ACTIONS(1533), + [anon_sym_DOLLARendswitch] = ACTIONS(1533), + [anon_sym_DOLLARfor] = ACTIONS(1533), + [anon_sym_DOLLARforeach] = ACTIONS(1533), + [anon_sym_DOLLARalignof] = ACTIONS(1533), + [anon_sym_DOLLARextnameof] = ACTIONS(1533), + [anon_sym_DOLLARnameof] = ACTIONS(1533), + [anon_sym_DOLLARoffsetof] = ACTIONS(1533), + [anon_sym_DOLLARqnameof] = ACTIONS(1533), + [anon_sym_DOLLARvaconst] = ACTIONS(1533), + [anon_sym_DOLLARvaarg] = ACTIONS(1533), + [anon_sym_DOLLARvaref] = ACTIONS(1533), + [anon_sym_DOLLARvaexpr] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(1533), + [anon_sym_false] = ACTIONS(1533), + [anon_sym_null] = ACTIONS(1533), + [anon_sym_DOLLARvacount] = ACTIONS(1533), + [anon_sym_DOLLARappend] = ACTIONS(1533), + [anon_sym_DOLLARconcat] = ACTIONS(1533), + [anon_sym_DOLLAReval] = ACTIONS(1533), + [anon_sym_DOLLARis_const] = ACTIONS(1533), + [anon_sym_DOLLARsizeof] = ACTIONS(1533), + [anon_sym_DOLLARstringify] = ACTIONS(1533), + [anon_sym_DOLLARand] = ACTIONS(1533), + [anon_sym_DOLLARdefined] = ACTIONS(1533), + [anon_sym_DOLLARembed] = ACTIONS(1533), + [anon_sym_DOLLARor] = ACTIONS(1533), + [anon_sym_DOLLARfeature] = ACTIONS(1533), + [anon_sym_DOLLARassignable] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1535), + [anon_sym_TILDE] = ACTIONS(1535), + [anon_sym_PLUS_PLUS] = ACTIONS(1535), + [anon_sym_DASH_DASH] = ACTIONS(1535), + [anon_sym_typeid] = ACTIONS(1533), + [anon_sym_LBRACE_PIPE] = ACTIONS(1535), + [anon_sym_void] = ACTIONS(1533), + [anon_sym_bool] = ACTIONS(1533), + [anon_sym_char] = ACTIONS(1533), + [anon_sym_ichar] = ACTIONS(1533), + [anon_sym_short] = ACTIONS(1533), + [anon_sym_ushort] = ACTIONS(1533), + [anon_sym_uint] = ACTIONS(1533), + [anon_sym_long] = ACTIONS(1533), + [anon_sym_ulong] = ACTIONS(1533), + [anon_sym_int128] = ACTIONS(1533), + [anon_sym_uint128] = ACTIONS(1533), + [anon_sym_float] = ACTIONS(1533), + [anon_sym_double] = ACTIONS(1533), + [anon_sym_float16] = ACTIONS(1533), + [anon_sym_bfloat16] = ACTIONS(1533), + [anon_sym_float128] = ACTIONS(1533), + [anon_sym_iptr] = ACTIONS(1533), + [anon_sym_uptr] = ACTIONS(1533), + [anon_sym_isz] = ACTIONS(1533), + [anon_sym_usz] = ACTIONS(1533), + [anon_sym_anyfault] = ACTIONS(1533), + [anon_sym_any] = ACTIONS(1533), + [anon_sym_DOLLARtypeof] = ACTIONS(1533), + [anon_sym_DOLLARtypefrom] = ACTIONS(1533), + [anon_sym_DOLLARvatype] = ACTIONS(1533), + [anon_sym_DOLLARevaltype] = ACTIONS(1533), + [sym_real_literal] = ACTIONS(1535), }, [435] = { [sym_line_comment] = STATE(435), [sym_doc_comment] = STATE(435), [sym_block_comment] = STATE(435), - [sym_ident] = ACTIONS(1540), - [sym_integer_literal] = ACTIONS(1542), - [anon_sym_SQUOTE] = ACTIONS(1542), - [anon_sym_DQUOTE] = ACTIONS(1542), - [anon_sym_BQUOTE] = ACTIONS(1542), - [sym_bytes_literal] = ACTIONS(1542), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1540), - [sym_at_ident] = ACTIONS(1542), - [sym_hash_ident] = ACTIONS(1542), - [sym_type_ident] = ACTIONS(1542), - [sym_ct_type_ident] = ACTIONS(1542), - [sym_const_ident] = ACTIONS(1540), - [sym_builtin] = ACTIONS(1542), - [anon_sym_LPAREN] = ACTIONS(1542), - [anon_sym_AMP] = ACTIONS(1540), - [anon_sym_static] = ACTIONS(1540), - [anon_sym_tlocal] = ACTIONS(1540), - [anon_sym_SEMI] = ACTIONS(1542), - [anon_sym_fn] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(1540), - [anon_sym_RBRACE] = ACTIONS(1542), - [anon_sym_const] = ACTIONS(1540), - [anon_sym_var] = ACTIONS(1540), - [anon_sym_return] = ACTIONS(1540), - [anon_sym_continue] = ACTIONS(1540), - [anon_sym_break] = ACTIONS(1540), - [anon_sym_defer] = ACTIONS(1540), - [anon_sym_assert] = ACTIONS(1540), - [anon_sym_case] = ACTIONS(1540), - [anon_sym_default] = ACTIONS(1540), - [anon_sym_nextcase] = ACTIONS(1540), - [anon_sym_switch] = ACTIONS(1540), - [anon_sym_AMP_AMP] = ACTIONS(1542), - [anon_sym_if] = ACTIONS(1540), - [anon_sym_for] = ACTIONS(1540), - [anon_sym_foreach] = ACTIONS(1540), - [anon_sym_foreach_r] = ACTIONS(1540), - [anon_sym_while] = ACTIONS(1540), - [anon_sym_do] = ACTIONS(1540), - [anon_sym_int] = ACTIONS(1540), - [anon_sym_PLUS] = ACTIONS(1540), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_STAR] = ACTIONS(1542), - [anon_sym_asm] = ACTIONS(1540), - [anon_sym_DOLLARassert] = ACTIONS(1540), - [anon_sym_DOLLARerror] = ACTIONS(1540), - [anon_sym_DOLLARecho] = ACTIONS(1540), - [anon_sym_DOLLARif] = ACTIONS(1540), - [anon_sym_DOLLARswitch] = ACTIONS(1540), - [anon_sym_DOLLARfor] = ACTIONS(1540), - [anon_sym_DOLLARforeach] = ACTIONS(1540), - [anon_sym_DOLLARalignof] = ACTIONS(1540), - [anon_sym_DOLLARextnameof] = ACTIONS(1540), - [anon_sym_DOLLARnameof] = ACTIONS(1540), - [anon_sym_DOLLARoffsetof] = ACTIONS(1540), - [anon_sym_DOLLARqnameof] = ACTIONS(1540), - [anon_sym_DOLLARvaconst] = ACTIONS(1540), - [anon_sym_DOLLARvaarg] = ACTIONS(1540), - [anon_sym_DOLLARvaref] = ACTIONS(1540), - [anon_sym_DOLLARvaexpr] = ACTIONS(1540), - [anon_sym_true] = ACTIONS(1540), - [anon_sym_false] = ACTIONS(1540), - [anon_sym_null] = ACTIONS(1540), - [anon_sym_DOLLARvacount] = ACTIONS(1540), - [anon_sym_DOLLARappend] = ACTIONS(1540), - [anon_sym_DOLLARconcat] = ACTIONS(1540), - [anon_sym_DOLLAReval] = ACTIONS(1540), - [anon_sym_DOLLARis_const] = ACTIONS(1540), - [anon_sym_DOLLARsizeof] = ACTIONS(1540), - [anon_sym_DOLLARstringify] = ACTIONS(1540), - [anon_sym_DOLLARand] = ACTIONS(1540), - [anon_sym_DOLLARdefined] = ACTIONS(1540), - [anon_sym_DOLLARembed] = ACTIONS(1540), - [anon_sym_DOLLARor] = ACTIONS(1540), - [anon_sym_DOLLARfeature] = ACTIONS(1540), - [anon_sym_DOLLARassignable] = ACTIONS(1540), - [anon_sym_BANG] = ACTIONS(1542), - [anon_sym_TILDE] = ACTIONS(1542), - [anon_sym_PLUS_PLUS] = ACTIONS(1542), - [anon_sym_DASH_DASH] = ACTIONS(1542), - [anon_sym_typeid] = ACTIONS(1540), - [anon_sym_LBRACE_PIPE] = ACTIONS(1542), - [anon_sym_PIPE_RBRACE] = ACTIONS(1542), - [anon_sym_void] = ACTIONS(1540), - [anon_sym_bool] = ACTIONS(1540), - [anon_sym_char] = ACTIONS(1540), - [anon_sym_ichar] = ACTIONS(1540), - [anon_sym_short] = ACTIONS(1540), - [anon_sym_ushort] = ACTIONS(1540), - [anon_sym_uint] = ACTIONS(1540), - [anon_sym_long] = ACTIONS(1540), - [anon_sym_ulong] = ACTIONS(1540), - [anon_sym_int128] = ACTIONS(1540), - [anon_sym_uint128] = ACTIONS(1540), - [anon_sym_float] = ACTIONS(1540), - [anon_sym_double] = ACTIONS(1540), - [anon_sym_float16] = ACTIONS(1540), - [anon_sym_bfloat16] = ACTIONS(1540), - [anon_sym_float128] = ACTIONS(1540), - [anon_sym_iptr] = ACTIONS(1540), - [anon_sym_uptr] = ACTIONS(1540), - [anon_sym_isz] = ACTIONS(1540), - [anon_sym_usz] = ACTIONS(1540), - [anon_sym_anyfault] = ACTIONS(1540), - [anon_sym_any] = ACTIONS(1540), - [anon_sym_DOLLARtypeof] = ACTIONS(1540), - [anon_sym_DOLLARtypefrom] = ACTIONS(1540), - [anon_sym_DOLLARvatype] = ACTIONS(1540), - [anon_sym_DOLLARevaltype] = ACTIONS(1540), - [sym_real_literal] = ACTIONS(1542), + [sym_ident] = ACTIONS(1359), + [sym_integer_literal] = ACTIONS(1361), + [anon_sym_SQUOTE] = ACTIONS(1361), + [anon_sym_DQUOTE] = ACTIONS(1361), + [anon_sym_BQUOTE] = ACTIONS(1361), + [sym_bytes_literal] = ACTIONS(1361), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1359), + [sym_at_ident] = ACTIONS(1361), + [sym_hash_ident] = ACTIONS(1361), + [sym_type_ident] = ACTIONS(1361), + [sym_ct_type_ident] = ACTIONS(1361), + [sym_const_ident] = ACTIONS(1359), + [sym_builtin] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(1361), + [anon_sym_AMP] = ACTIONS(1359), + [anon_sym_static] = ACTIONS(1359), + [anon_sym_tlocal] = ACTIONS(1359), + [anon_sym_SEMI] = ACTIONS(1361), + [anon_sym_fn] = ACTIONS(1359), + [anon_sym_LBRACE] = ACTIONS(1359), + [anon_sym_const] = ACTIONS(1359), + [anon_sym_var] = ACTIONS(1359), + [anon_sym_return] = ACTIONS(1359), + [anon_sym_continue] = ACTIONS(1359), + [anon_sym_break] = ACTIONS(1359), + [anon_sym_defer] = ACTIONS(1359), + [anon_sym_assert] = ACTIONS(1359), + [anon_sym_nextcase] = ACTIONS(1359), + [anon_sym_switch] = ACTIONS(1359), + [anon_sym_AMP_AMP] = ACTIONS(1361), + [anon_sym_if] = ACTIONS(1359), + [anon_sym_for] = ACTIONS(1359), + [anon_sym_foreach] = ACTIONS(1359), + [anon_sym_foreach_r] = ACTIONS(1359), + [anon_sym_while] = ACTIONS(1359), + [anon_sym_do] = ACTIONS(1359), + [anon_sym_int] = ACTIONS(1359), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_asm] = ACTIONS(1359), + [anon_sym_DOLLARassert] = ACTIONS(1359), + [anon_sym_DOLLARerror] = ACTIONS(1359), + [anon_sym_DOLLARecho] = ACTIONS(1359), + [anon_sym_DOLLARif] = ACTIONS(1359), + [anon_sym_DOLLARcase] = ACTIONS(1359), + [anon_sym_DOLLARdefault] = ACTIONS(1359), + [anon_sym_DOLLARswitch] = ACTIONS(1359), + [anon_sym_DOLLARendswitch] = ACTIONS(1359), + [anon_sym_DOLLARfor] = ACTIONS(1359), + [anon_sym_DOLLARforeach] = ACTIONS(1359), + [anon_sym_DOLLARalignof] = ACTIONS(1359), + [anon_sym_DOLLARextnameof] = ACTIONS(1359), + [anon_sym_DOLLARnameof] = ACTIONS(1359), + [anon_sym_DOLLARoffsetof] = ACTIONS(1359), + [anon_sym_DOLLARqnameof] = ACTIONS(1359), + [anon_sym_DOLLARvaconst] = ACTIONS(1359), + [anon_sym_DOLLARvaarg] = ACTIONS(1359), + [anon_sym_DOLLARvaref] = ACTIONS(1359), + [anon_sym_DOLLARvaexpr] = ACTIONS(1359), + [anon_sym_true] = ACTIONS(1359), + [anon_sym_false] = ACTIONS(1359), + [anon_sym_null] = ACTIONS(1359), + [anon_sym_DOLLARvacount] = ACTIONS(1359), + [anon_sym_DOLLARappend] = ACTIONS(1359), + [anon_sym_DOLLARconcat] = ACTIONS(1359), + [anon_sym_DOLLAReval] = ACTIONS(1359), + [anon_sym_DOLLARis_const] = ACTIONS(1359), + [anon_sym_DOLLARsizeof] = ACTIONS(1359), + [anon_sym_DOLLARstringify] = ACTIONS(1359), + [anon_sym_DOLLARand] = ACTIONS(1359), + [anon_sym_DOLLARdefined] = ACTIONS(1359), + [anon_sym_DOLLARembed] = ACTIONS(1359), + [anon_sym_DOLLARor] = ACTIONS(1359), + [anon_sym_DOLLARfeature] = ACTIONS(1359), + [anon_sym_DOLLARassignable] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1361), + [anon_sym_TILDE] = ACTIONS(1361), + [anon_sym_PLUS_PLUS] = ACTIONS(1361), + [anon_sym_DASH_DASH] = ACTIONS(1361), + [anon_sym_typeid] = ACTIONS(1359), + [anon_sym_LBRACE_PIPE] = ACTIONS(1361), + [anon_sym_void] = ACTIONS(1359), + [anon_sym_bool] = ACTIONS(1359), + [anon_sym_char] = ACTIONS(1359), + [anon_sym_ichar] = ACTIONS(1359), + [anon_sym_short] = ACTIONS(1359), + [anon_sym_ushort] = ACTIONS(1359), + [anon_sym_uint] = ACTIONS(1359), + [anon_sym_long] = ACTIONS(1359), + [anon_sym_ulong] = ACTIONS(1359), + [anon_sym_int128] = ACTIONS(1359), + [anon_sym_uint128] = ACTIONS(1359), + [anon_sym_float] = ACTIONS(1359), + [anon_sym_double] = ACTIONS(1359), + [anon_sym_float16] = ACTIONS(1359), + [anon_sym_bfloat16] = ACTIONS(1359), + [anon_sym_float128] = ACTIONS(1359), + [anon_sym_iptr] = ACTIONS(1359), + [anon_sym_uptr] = ACTIONS(1359), + [anon_sym_isz] = ACTIONS(1359), + [anon_sym_usz] = ACTIONS(1359), + [anon_sym_anyfault] = ACTIONS(1359), + [anon_sym_any] = ACTIONS(1359), + [anon_sym_DOLLARtypeof] = ACTIONS(1359), + [anon_sym_DOLLARtypefrom] = ACTIONS(1359), + [anon_sym_DOLLARvatype] = ACTIONS(1359), + [anon_sym_DOLLARevaltype] = ACTIONS(1359), + [sym_real_literal] = ACTIONS(1361), }, [436] = { [sym_line_comment] = STATE(436), [sym_doc_comment] = STATE(436), [sym_block_comment] = STATE(436), - [sym_ident] = ACTIONS(1544), - [sym_integer_literal] = ACTIONS(1546), - [anon_sym_SQUOTE] = ACTIONS(1546), - [anon_sym_DQUOTE] = ACTIONS(1546), - [anon_sym_BQUOTE] = ACTIONS(1546), - [sym_bytes_literal] = ACTIONS(1546), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1544), - [sym_at_ident] = ACTIONS(1546), - [sym_hash_ident] = ACTIONS(1546), - [sym_type_ident] = ACTIONS(1546), - [sym_ct_type_ident] = ACTIONS(1546), - [sym_const_ident] = ACTIONS(1544), - [sym_builtin] = ACTIONS(1546), - [anon_sym_LPAREN] = ACTIONS(1546), - [anon_sym_AMP] = ACTIONS(1544), - [anon_sym_static] = ACTIONS(1544), - [anon_sym_tlocal] = ACTIONS(1544), - [anon_sym_SEMI] = ACTIONS(1546), - [anon_sym_fn] = ACTIONS(1544), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_RBRACE] = ACTIONS(1546), - [anon_sym_const] = ACTIONS(1544), - [anon_sym_var] = ACTIONS(1544), - [anon_sym_return] = ACTIONS(1544), - [anon_sym_continue] = ACTIONS(1544), - [anon_sym_break] = ACTIONS(1544), - [anon_sym_defer] = ACTIONS(1544), - [anon_sym_assert] = ACTIONS(1544), - [anon_sym_case] = ACTIONS(1544), - [anon_sym_default] = ACTIONS(1544), - [anon_sym_nextcase] = ACTIONS(1544), - [anon_sym_switch] = ACTIONS(1544), - [anon_sym_AMP_AMP] = ACTIONS(1546), - [anon_sym_if] = ACTIONS(1544), - [anon_sym_for] = ACTIONS(1544), - [anon_sym_foreach] = ACTIONS(1544), - [anon_sym_foreach_r] = ACTIONS(1544), - [anon_sym_while] = ACTIONS(1544), - [anon_sym_do] = ACTIONS(1544), - [anon_sym_int] = ACTIONS(1544), - [anon_sym_PLUS] = ACTIONS(1544), - [anon_sym_DASH] = ACTIONS(1544), - [anon_sym_STAR] = ACTIONS(1546), - [anon_sym_asm] = ACTIONS(1544), - [anon_sym_DOLLARassert] = ACTIONS(1544), - [anon_sym_DOLLARerror] = ACTIONS(1544), - [anon_sym_DOLLARecho] = ACTIONS(1544), - [anon_sym_DOLLARif] = ACTIONS(1544), - [anon_sym_DOLLARswitch] = ACTIONS(1544), - [anon_sym_DOLLARfor] = ACTIONS(1544), - [anon_sym_DOLLARforeach] = ACTIONS(1544), - [anon_sym_DOLLARalignof] = ACTIONS(1544), - [anon_sym_DOLLARextnameof] = ACTIONS(1544), - [anon_sym_DOLLARnameof] = ACTIONS(1544), - [anon_sym_DOLLARoffsetof] = ACTIONS(1544), - [anon_sym_DOLLARqnameof] = ACTIONS(1544), - [anon_sym_DOLLARvaconst] = ACTIONS(1544), - [anon_sym_DOLLARvaarg] = ACTIONS(1544), - [anon_sym_DOLLARvaref] = ACTIONS(1544), - [anon_sym_DOLLARvaexpr] = ACTIONS(1544), - [anon_sym_true] = ACTIONS(1544), - [anon_sym_false] = ACTIONS(1544), - [anon_sym_null] = ACTIONS(1544), - [anon_sym_DOLLARvacount] = ACTIONS(1544), - [anon_sym_DOLLARappend] = ACTIONS(1544), - [anon_sym_DOLLARconcat] = ACTIONS(1544), - [anon_sym_DOLLAReval] = ACTIONS(1544), - [anon_sym_DOLLARis_const] = ACTIONS(1544), - [anon_sym_DOLLARsizeof] = ACTIONS(1544), - [anon_sym_DOLLARstringify] = ACTIONS(1544), - [anon_sym_DOLLARand] = ACTIONS(1544), - [anon_sym_DOLLARdefined] = ACTIONS(1544), - [anon_sym_DOLLARembed] = ACTIONS(1544), - [anon_sym_DOLLARor] = ACTIONS(1544), - [anon_sym_DOLLARfeature] = ACTIONS(1544), - [anon_sym_DOLLARassignable] = ACTIONS(1544), - [anon_sym_BANG] = ACTIONS(1546), - [anon_sym_TILDE] = ACTIONS(1546), - [anon_sym_PLUS_PLUS] = ACTIONS(1546), - [anon_sym_DASH_DASH] = ACTIONS(1546), - [anon_sym_typeid] = ACTIONS(1544), - [anon_sym_LBRACE_PIPE] = ACTIONS(1546), - [anon_sym_PIPE_RBRACE] = ACTIONS(1546), - [anon_sym_void] = ACTIONS(1544), - [anon_sym_bool] = ACTIONS(1544), - [anon_sym_char] = ACTIONS(1544), - [anon_sym_ichar] = ACTIONS(1544), - [anon_sym_short] = ACTIONS(1544), - [anon_sym_ushort] = ACTIONS(1544), - [anon_sym_uint] = ACTIONS(1544), - [anon_sym_long] = ACTIONS(1544), - [anon_sym_ulong] = ACTIONS(1544), - [anon_sym_int128] = ACTIONS(1544), - [anon_sym_uint128] = ACTIONS(1544), - [anon_sym_float] = ACTIONS(1544), - [anon_sym_double] = ACTIONS(1544), - [anon_sym_float16] = ACTIONS(1544), - [anon_sym_bfloat16] = ACTIONS(1544), - [anon_sym_float128] = ACTIONS(1544), - [anon_sym_iptr] = ACTIONS(1544), - [anon_sym_uptr] = ACTIONS(1544), - [anon_sym_isz] = ACTIONS(1544), - [anon_sym_usz] = ACTIONS(1544), - [anon_sym_anyfault] = ACTIONS(1544), - [anon_sym_any] = ACTIONS(1544), - [anon_sym_DOLLARtypeof] = ACTIONS(1544), - [anon_sym_DOLLARtypefrom] = ACTIONS(1544), - [anon_sym_DOLLARvatype] = ACTIONS(1544), - [anon_sym_DOLLARevaltype] = ACTIONS(1544), - [sym_real_literal] = ACTIONS(1546), + [sym_ident] = ACTIONS(1351), + [sym_integer_literal] = ACTIONS(1353), + [anon_sym_SQUOTE] = ACTIONS(1353), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_BQUOTE] = ACTIONS(1353), + [sym_bytes_literal] = ACTIONS(1353), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1351), + [sym_at_ident] = ACTIONS(1353), + [sym_hash_ident] = ACTIONS(1353), + [sym_type_ident] = ACTIONS(1353), + [sym_ct_type_ident] = ACTIONS(1353), + [sym_const_ident] = ACTIONS(1351), + [sym_builtin] = ACTIONS(1353), + [anon_sym_LPAREN] = ACTIONS(1353), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_static] = ACTIONS(1351), + [anon_sym_tlocal] = ACTIONS(1351), + [anon_sym_SEMI] = ACTIONS(1353), + [anon_sym_fn] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1351), + [anon_sym_const] = ACTIONS(1351), + [anon_sym_var] = ACTIONS(1351), + [anon_sym_return] = ACTIONS(1351), + [anon_sym_continue] = ACTIONS(1351), + [anon_sym_break] = ACTIONS(1351), + [anon_sym_defer] = ACTIONS(1351), + [anon_sym_assert] = ACTIONS(1351), + [anon_sym_nextcase] = ACTIONS(1351), + [anon_sym_switch] = ACTIONS(1351), + [anon_sym_AMP_AMP] = ACTIONS(1353), + [anon_sym_if] = ACTIONS(1351), + [anon_sym_else] = ACTIONS(1351), + [anon_sym_for] = ACTIONS(1351), + [anon_sym_foreach] = ACTIONS(1351), + [anon_sym_foreach_r] = ACTIONS(1351), + [anon_sym_while] = ACTIONS(1351), + [anon_sym_do] = ACTIONS(1351), + [anon_sym_int] = ACTIONS(1351), + [anon_sym_PLUS] = ACTIONS(1351), + [anon_sym_DASH] = ACTIONS(1351), + [anon_sym_STAR] = ACTIONS(1353), + [anon_sym_asm] = ACTIONS(1351), + [anon_sym_DOLLARassert] = ACTIONS(1351), + [anon_sym_DOLLARerror] = ACTIONS(1351), + [anon_sym_DOLLARecho] = ACTIONS(1351), + [anon_sym_DOLLARif] = ACTIONS(1351), + [anon_sym_DOLLARendif] = ACTIONS(1351), + [anon_sym_DOLLARelse] = ACTIONS(1351), + [anon_sym_DOLLARswitch] = ACTIONS(1351), + [anon_sym_DOLLARfor] = ACTIONS(1351), + [anon_sym_DOLLARforeach] = ACTIONS(1351), + [anon_sym_DOLLARalignof] = ACTIONS(1351), + [anon_sym_DOLLARextnameof] = ACTIONS(1351), + [anon_sym_DOLLARnameof] = ACTIONS(1351), + [anon_sym_DOLLARoffsetof] = ACTIONS(1351), + [anon_sym_DOLLARqnameof] = ACTIONS(1351), + [anon_sym_DOLLARvaconst] = ACTIONS(1351), + [anon_sym_DOLLARvaarg] = ACTIONS(1351), + [anon_sym_DOLLARvaref] = ACTIONS(1351), + [anon_sym_DOLLARvaexpr] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_null] = ACTIONS(1351), + [anon_sym_DOLLARvacount] = ACTIONS(1351), + [anon_sym_DOLLARappend] = ACTIONS(1351), + [anon_sym_DOLLARconcat] = ACTIONS(1351), + [anon_sym_DOLLAReval] = ACTIONS(1351), + [anon_sym_DOLLARis_const] = ACTIONS(1351), + [anon_sym_DOLLARsizeof] = ACTIONS(1351), + [anon_sym_DOLLARstringify] = ACTIONS(1351), + [anon_sym_DOLLARand] = ACTIONS(1351), + [anon_sym_DOLLARdefined] = ACTIONS(1351), + [anon_sym_DOLLARembed] = ACTIONS(1351), + [anon_sym_DOLLARor] = ACTIONS(1351), + [anon_sym_DOLLARfeature] = ACTIONS(1351), + [anon_sym_DOLLARassignable] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_PLUS_PLUS] = ACTIONS(1353), + [anon_sym_DASH_DASH] = ACTIONS(1353), + [anon_sym_typeid] = ACTIONS(1351), + [anon_sym_LBRACE_PIPE] = ACTIONS(1353), + [anon_sym_void] = ACTIONS(1351), + [anon_sym_bool] = ACTIONS(1351), + [anon_sym_char] = ACTIONS(1351), + [anon_sym_ichar] = ACTIONS(1351), + [anon_sym_short] = ACTIONS(1351), + [anon_sym_ushort] = ACTIONS(1351), + [anon_sym_uint] = ACTIONS(1351), + [anon_sym_long] = ACTIONS(1351), + [anon_sym_ulong] = ACTIONS(1351), + [anon_sym_int128] = ACTIONS(1351), + [anon_sym_uint128] = ACTIONS(1351), + [anon_sym_float] = ACTIONS(1351), + [anon_sym_double] = ACTIONS(1351), + [anon_sym_float16] = ACTIONS(1351), + [anon_sym_bfloat16] = ACTIONS(1351), + [anon_sym_float128] = ACTIONS(1351), + [anon_sym_iptr] = ACTIONS(1351), + [anon_sym_uptr] = ACTIONS(1351), + [anon_sym_isz] = ACTIONS(1351), + [anon_sym_usz] = ACTIONS(1351), + [anon_sym_anyfault] = ACTIONS(1351), + [anon_sym_any] = ACTIONS(1351), + [anon_sym_DOLLARtypeof] = ACTIONS(1351), + [anon_sym_DOLLARtypefrom] = ACTIONS(1351), + [anon_sym_DOLLARvatype] = ACTIONS(1351), + [anon_sym_DOLLARevaltype] = ACTIONS(1351), + [sym_real_literal] = ACTIONS(1353), }, [437] = { [sym_line_comment] = STATE(437), [sym_doc_comment] = STATE(437), [sym_block_comment] = STATE(437), - [sym_ident] = ACTIONS(1548), - [sym_integer_literal] = ACTIONS(1550), - [anon_sym_SQUOTE] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1550), - [anon_sym_BQUOTE] = ACTIONS(1550), - [sym_bytes_literal] = ACTIONS(1550), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1548), - [sym_at_ident] = ACTIONS(1550), - [sym_hash_ident] = ACTIONS(1550), - [sym_type_ident] = ACTIONS(1550), - [sym_ct_type_ident] = ACTIONS(1550), - [sym_const_ident] = ACTIONS(1548), - [sym_builtin] = ACTIONS(1550), - [anon_sym_LPAREN] = ACTIONS(1550), - [anon_sym_AMP] = ACTIONS(1548), - [anon_sym_static] = ACTIONS(1548), - [anon_sym_tlocal] = ACTIONS(1548), - [anon_sym_SEMI] = ACTIONS(1550), - [anon_sym_fn] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(1548), - [anon_sym_RBRACE] = ACTIONS(1550), - [anon_sym_const] = ACTIONS(1548), - [anon_sym_var] = ACTIONS(1548), - [anon_sym_return] = ACTIONS(1548), - [anon_sym_continue] = ACTIONS(1548), - [anon_sym_break] = ACTIONS(1548), - [anon_sym_defer] = ACTIONS(1548), - [anon_sym_assert] = ACTIONS(1548), - [anon_sym_case] = ACTIONS(1548), - [anon_sym_default] = ACTIONS(1548), - [anon_sym_nextcase] = ACTIONS(1548), - [anon_sym_switch] = ACTIONS(1548), - [anon_sym_AMP_AMP] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(1548), - [anon_sym_for] = ACTIONS(1548), - [anon_sym_foreach] = ACTIONS(1548), - [anon_sym_foreach_r] = ACTIONS(1548), - [anon_sym_while] = ACTIONS(1548), - [anon_sym_do] = ACTIONS(1548), - [anon_sym_int] = ACTIONS(1548), - [anon_sym_PLUS] = ACTIONS(1548), - [anon_sym_DASH] = ACTIONS(1548), - [anon_sym_STAR] = ACTIONS(1550), - [anon_sym_asm] = ACTIONS(1548), - [anon_sym_DOLLARassert] = ACTIONS(1548), - [anon_sym_DOLLARerror] = ACTIONS(1548), - [anon_sym_DOLLARecho] = ACTIONS(1548), - [anon_sym_DOLLARif] = ACTIONS(1548), - [anon_sym_DOLLARswitch] = ACTIONS(1548), - [anon_sym_DOLLARfor] = ACTIONS(1548), - [anon_sym_DOLLARforeach] = ACTIONS(1548), - [anon_sym_DOLLARalignof] = ACTIONS(1548), - [anon_sym_DOLLARextnameof] = ACTIONS(1548), - [anon_sym_DOLLARnameof] = ACTIONS(1548), - [anon_sym_DOLLARoffsetof] = ACTIONS(1548), - [anon_sym_DOLLARqnameof] = ACTIONS(1548), - [anon_sym_DOLLARvaconst] = ACTIONS(1548), - [anon_sym_DOLLARvaarg] = ACTIONS(1548), - [anon_sym_DOLLARvaref] = ACTIONS(1548), - [anon_sym_DOLLARvaexpr] = ACTIONS(1548), - [anon_sym_true] = ACTIONS(1548), - [anon_sym_false] = ACTIONS(1548), - [anon_sym_null] = ACTIONS(1548), - [anon_sym_DOLLARvacount] = ACTIONS(1548), - [anon_sym_DOLLARappend] = ACTIONS(1548), - [anon_sym_DOLLARconcat] = ACTIONS(1548), - [anon_sym_DOLLAReval] = ACTIONS(1548), - [anon_sym_DOLLARis_const] = ACTIONS(1548), - [anon_sym_DOLLARsizeof] = ACTIONS(1548), - [anon_sym_DOLLARstringify] = ACTIONS(1548), - [anon_sym_DOLLARand] = ACTIONS(1548), - [anon_sym_DOLLARdefined] = ACTIONS(1548), - [anon_sym_DOLLARembed] = ACTIONS(1548), - [anon_sym_DOLLARor] = ACTIONS(1548), - [anon_sym_DOLLARfeature] = ACTIONS(1548), - [anon_sym_DOLLARassignable] = ACTIONS(1548), - [anon_sym_BANG] = ACTIONS(1550), - [anon_sym_TILDE] = ACTIONS(1550), - [anon_sym_PLUS_PLUS] = ACTIONS(1550), - [anon_sym_DASH_DASH] = ACTIONS(1550), - [anon_sym_typeid] = ACTIONS(1548), - [anon_sym_LBRACE_PIPE] = ACTIONS(1550), - [anon_sym_PIPE_RBRACE] = ACTIONS(1550), - [anon_sym_void] = ACTIONS(1548), - [anon_sym_bool] = ACTIONS(1548), - [anon_sym_char] = ACTIONS(1548), - [anon_sym_ichar] = ACTIONS(1548), - [anon_sym_short] = ACTIONS(1548), - [anon_sym_ushort] = ACTIONS(1548), - [anon_sym_uint] = ACTIONS(1548), - [anon_sym_long] = ACTIONS(1548), - [anon_sym_ulong] = ACTIONS(1548), - [anon_sym_int128] = ACTIONS(1548), - [anon_sym_uint128] = ACTIONS(1548), - [anon_sym_float] = ACTIONS(1548), - [anon_sym_double] = ACTIONS(1548), - [anon_sym_float16] = ACTIONS(1548), - [anon_sym_bfloat16] = ACTIONS(1548), - [anon_sym_float128] = ACTIONS(1548), - [anon_sym_iptr] = ACTIONS(1548), - [anon_sym_uptr] = ACTIONS(1548), - [anon_sym_isz] = ACTIONS(1548), - [anon_sym_usz] = ACTIONS(1548), - [anon_sym_anyfault] = ACTIONS(1548), - [anon_sym_any] = ACTIONS(1548), - [anon_sym_DOLLARtypeof] = ACTIONS(1548), - [anon_sym_DOLLARtypefrom] = ACTIONS(1548), - [anon_sym_DOLLARvatype] = ACTIONS(1548), - [anon_sym_DOLLARevaltype] = ACTIONS(1548), - [sym_real_literal] = ACTIONS(1550), + [sym_ident] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1507), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1507), + [anon_sym_BQUOTE] = ACTIONS(1507), + [sym_bytes_literal] = ACTIONS(1507), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1505), + [sym_at_ident] = ACTIONS(1507), + [sym_hash_ident] = ACTIONS(1507), + [sym_type_ident] = ACTIONS(1507), + [sym_ct_type_ident] = ACTIONS(1507), + [sym_const_ident] = ACTIONS(1505), + [sym_builtin] = ACTIONS(1507), + [anon_sym_LPAREN] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_static] = ACTIONS(1505), + [anon_sym_tlocal] = ACTIONS(1505), + [anon_sym_SEMI] = ACTIONS(1507), + [anon_sym_fn] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_const] = ACTIONS(1505), + [anon_sym_var] = ACTIONS(1505), + [anon_sym_return] = ACTIONS(1505), + [anon_sym_continue] = ACTIONS(1505), + [anon_sym_break] = ACTIONS(1505), + [anon_sym_defer] = ACTIONS(1505), + [anon_sym_assert] = ACTIONS(1505), + [anon_sym_nextcase] = ACTIONS(1505), + [anon_sym_switch] = ACTIONS(1505), + [anon_sym_AMP_AMP] = ACTIONS(1507), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_for] = ACTIONS(1505), + [anon_sym_foreach] = ACTIONS(1505), + [anon_sym_foreach_r] = ACTIONS(1505), + [anon_sym_while] = ACTIONS(1505), + [anon_sym_do] = ACTIONS(1505), + [anon_sym_int] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1505), + [anon_sym_DASH] = ACTIONS(1505), + [anon_sym_STAR] = ACTIONS(1507), + [anon_sym_asm] = ACTIONS(1505), + [anon_sym_DOLLARassert] = ACTIONS(1505), + [anon_sym_DOLLARerror] = ACTIONS(1505), + [anon_sym_DOLLARecho] = ACTIONS(1505), + [anon_sym_DOLLARif] = ACTIONS(1505), + [anon_sym_DOLLARcase] = ACTIONS(1505), + [anon_sym_DOLLARdefault] = ACTIONS(1505), + [anon_sym_DOLLARswitch] = ACTIONS(1505), + [anon_sym_DOLLARendswitch] = ACTIONS(1505), + [anon_sym_DOLLARfor] = ACTIONS(1505), + [anon_sym_DOLLARforeach] = ACTIONS(1505), + [anon_sym_DOLLARalignof] = ACTIONS(1505), + [anon_sym_DOLLARextnameof] = ACTIONS(1505), + [anon_sym_DOLLARnameof] = ACTIONS(1505), + [anon_sym_DOLLARoffsetof] = ACTIONS(1505), + [anon_sym_DOLLARqnameof] = ACTIONS(1505), + [anon_sym_DOLLARvaconst] = ACTIONS(1505), + [anon_sym_DOLLARvaarg] = ACTIONS(1505), + [anon_sym_DOLLARvaref] = ACTIONS(1505), + [anon_sym_DOLLARvaexpr] = ACTIONS(1505), + [anon_sym_true] = ACTIONS(1505), + [anon_sym_false] = ACTIONS(1505), + [anon_sym_null] = ACTIONS(1505), + [anon_sym_DOLLARvacount] = ACTIONS(1505), + [anon_sym_DOLLARappend] = ACTIONS(1505), + [anon_sym_DOLLARconcat] = ACTIONS(1505), + [anon_sym_DOLLAReval] = ACTIONS(1505), + [anon_sym_DOLLARis_const] = ACTIONS(1505), + [anon_sym_DOLLARsizeof] = ACTIONS(1505), + [anon_sym_DOLLARstringify] = ACTIONS(1505), + [anon_sym_DOLLARand] = ACTIONS(1505), + [anon_sym_DOLLARdefined] = ACTIONS(1505), + [anon_sym_DOLLARembed] = ACTIONS(1505), + [anon_sym_DOLLARor] = ACTIONS(1505), + [anon_sym_DOLLARfeature] = ACTIONS(1505), + [anon_sym_DOLLARassignable] = ACTIONS(1505), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_TILDE] = ACTIONS(1507), + [anon_sym_PLUS_PLUS] = ACTIONS(1507), + [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_typeid] = ACTIONS(1505), + [anon_sym_LBRACE_PIPE] = ACTIONS(1507), + [anon_sym_void] = ACTIONS(1505), + [anon_sym_bool] = ACTIONS(1505), + [anon_sym_char] = ACTIONS(1505), + [anon_sym_ichar] = ACTIONS(1505), + [anon_sym_short] = ACTIONS(1505), + [anon_sym_ushort] = ACTIONS(1505), + [anon_sym_uint] = ACTIONS(1505), + [anon_sym_long] = ACTIONS(1505), + [anon_sym_ulong] = ACTIONS(1505), + [anon_sym_int128] = ACTIONS(1505), + [anon_sym_uint128] = ACTIONS(1505), + [anon_sym_float] = ACTIONS(1505), + [anon_sym_double] = ACTIONS(1505), + [anon_sym_float16] = ACTIONS(1505), + [anon_sym_bfloat16] = ACTIONS(1505), + [anon_sym_float128] = ACTIONS(1505), + [anon_sym_iptr] = ACTIONS(1505), + [anon_sym_uptr] = ACTIONS(1505), + [anon_sym_isz] = ACTIONS(1505), + [anon_sym_usz] = ACTIONS(1505), + [anon_sym_anyfault] = ACTIONS(1505), + [anon_sym_any] = ACTIONS(1505), + [anon_sym_DOLLARtypeof] = ACTIONS(1505), + [anon_sym_DOLLARtypefrom] = ACTIONS(1505), + [anon_sym_DOLLARvatype] = ACTIONS(1505), + [anon_sym_DOLLARevaltype] = ACTIONS(1505), + [sym_real_literal] = ACTIONS(1507), }, [438] = { [sym_line_comment] = STATE(438), [sym_doc_comment] = STATE(438), [sym_block_comment] = STATE(438), - [sym_ident] = ACTIONS(1552), - [sym_integer_literal] = ACTIONS(1554), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_DQUOTE] = ACTIONS(1554), - [anon_sym_BQUOTE] = ACTIONS(1554), - [sym_bytes_literal] = ACTIONS(1554), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1552), - [sym_at_ident] = ACTIONS(1554), - [sym_hash_ident] = ACTIONS(1554), - [sym_type_ident] = ACTIONS(1554), - [sym_ct_type_ident] = ACTIONS(1554), - [sym_const_ident] = ACTIONS(1552), - [sym_builtin] = ACTIONS(1554), - [anon_sym_LPAREN] = ACTIONS(1554), - [anon_sym_AMP] = ACTIONS(1552), - [anon_sym_static] = ACTIONS(1552), - [anon_sym_tlocal] = ACTIONS(1552), - [anon_sym_SEMI] = ACTIONS(1554), - [anon_sym_fn] = ACTIONS(1552), - [anon_sym_LBRACE] = ACTIONS(1552), - [anon_sym_RBRACE] = ACTIONS(1554), - [anon_sym_const] = ACTIONS(1552), - [anon_sym_var] = ACTIONS(1552), - [anon_sym_return] = ACTIONS(1552), - [anon_sym_continue] = ACTIONS(1552), - [anon_sym_break] = ACTIONS(1552), - [anon_sym_defer] = ACTIONS(1552), - [anon_sym_assert] = ACTIONS(1552), - [anon_sym_case] = ACTIONS(1552), - [anon_sym_default] = ACTIONS(1552), - [anon_sym_nextcase] = ACTIONS(1552), - [anon_sym_switch] = ACTIONS(1552), - [anon_sym_AMP_AMP] = ACTIONS(1554), - [anon_sym_if] = ACTIONS(1552), - [anon_sym_for] = ACTIONS(1552), - [anon_sym_foreach] = ACTIONS(1552), - [anon_sym_foreach_r] = ACTIONS(1552), - [anon_sym_while] = ACTIONS(1552), - [anon_sym_do] = ACTIONS(1552), - [anon_sym_int] = ACTIONS(1552), - [anon_sym_PLUS] = ACTIONS(1552), - [anon_sym_DASH] = ACTIONS(1552), - [anon_sym_STAR] = ACTIONS(1554), - [anon_sym_asm] = ACTIONS(1552), - [anon_sym_DOLLARassert] = ACTIONS(1552), - [anon_sym_DOLLARerror] = ACTIONS(1552), - [anon_sym_DOLLARecho] = ACTIONS(1552), - [anon_sym_DOLLARif] = ACTIONS(1552), - [anon_sym_DOLLARswitch] = ACTIONS(1552), - [anon_sym_DOLLARfor] = ACTIONS(1552), - [anon_sym_DOLLARforeach] = ACTIONS(1552), - [anon_sym_DOLLARalignof] = ACTIONS(1552), - [anon_sym_DOLLARextnameof] = ACTIONS(1552), - [anon_sym_DOLLARnameof] = ACTIONS(1552), - [anon_sym_DOLLARoffsetof] = ACTIONS(1552), - [anon_sym_DOLLARqnameof] = ACTIONS(1552), - [anon_sym_DOLLARvaconst] = ACTIONS(1552), - [anon_sym_DOLLARvaarg] = ACTIONS(1552), - [anon_sym_DOLLARvaref] = ACTIONS(1552), - [anon_sym_DOLLARvaexpr] = ACTIONS(1552), - [anon_sym_true] = ACTIONS(1552), - [anon_sym_false] = ACTIONS(1552), - [anon_sym_null] = ACTIONS(1552), - [anon_sym_DOLLARvacount] = ACTIONS(1552), - [anon_sym_DOLLARappend] = ACTIONS(1552), - [anon_sym_DOLLARconcat] = ACTIONS(1552), - [anon_sym_DOLLAReval] = ACTIONS(1552), - [anon_sym_DOLLARis_const] = ACTIONS(1552), - [anon_sym_DOLLARsizeof] = ACTIONS(1552), - [anon_sym_DOLLARstringify] = ACTIONS(1552), - [anon_sym_DOLLARand] = ACTIONS(1552), - [anon_sym_DOLLARdefined] = ACTIONS(1552), - [anon_sym_DOLLARembed] = ACTIONS(1552), - [anon_sym_DOLLARor] = ACTIONS(1552), - [anon_sym_DOLLARfeature] = ACTIONS(1552), - [anon_sym_DOLLARassignable] = ACTIONS(1552), - [anon_sym_BANG] = ACTIONS(1554), - [anon_sym_TILDE] = ACTIONS(1554), - [anon_sym_PLUS_PLUS] = ACTIONS(1554), - [anon_sym_DASH_DASH] = ACTIONS(1554), - [anon_sym_typeid] = ACTIONS(1552), - [anon_sym_LBRACE_PIPE] = ACTIONS(1554), - [anon_sym_PIPE_RBRACE] = ACTIONS(1554), - [anon_sym_void] = ACTIONS(1552), - [anon_sym_bool] = ACTIONS(1552), - [anon_sym_char] = ACTIONS(1552), - [anon_sym_ichar] = ACTIONS(1552), - [anon_sym_short] = ACTIONS(1552), - [anon_sym_ushort] = ACTIONS(1552), - [anon_sym_uint] = ACTIONS(1552), - [anon_sym_long] = ACTIONS(1552), - [anon_sym_ulong] = ACTIONS(1552), - [anon_sym_int128] = ACTIONS(1552), - [anon_sym_uint128] = ACTIONS(1552), - [anon_sym_float] = ACTIONS(1552), - [anon_sym_double] = ACTIONS(1552), - [anon_sym_float16] = ACTIONS(1552), - [anon_sym_bfloat16] = ACTIONS(1552), - [anon_sym_float128] = ACTIONS(1552), - [anon_sym_iptr] = ACTIONS(1552), - [anon_sym_uptr] = ACTIONS(1552), - [anon_sym_isz] = ACTIONS(1552), - [anon_sym_usz] = ACTIONS(1552), - [anon_sym_anyfault] = ACTIONS(1552), - [anon_sym_any] = ACTIONS(1552), - [anon_sym_DOLLARtypeof] = ACTIONS(1552), - [anon_sym_DOLLARtypefrom] = ACTIONS(1552), - [anon_sym_DOLLARvatype] = ACTIONS(1552), - [anon_sym_DOLLARevaltype] = ACTIONS(1552), - [sym_real_literal] = ACTIONS(1554), + [sym_ident] = ACTIONS(1497), + [sym_integer_literal] = ACTIONS(1499), + [anon_sym_SQUOTE] = ACTIONS(1499), + [anon_sym_DQUOTE] = ACTIONS(1499), + [anon_sym_BQUOTE] = ACTIONS(1499), + [sym_bytes_literal] = ACTIONS(1499), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1497), + [sym_at_ident] = ACTIONS(1499), + [sym_hash_ident] = ACTIONS(1499), + [sym_type_ident] = ACTIONS(1499), + [sym_ct_type_ident] = ACTIONS(1499), + [sym_const_ident] = ACTIONS(1497), + [sym_builtin] = ACTIONS(1499), + [anon_sym_LPAREN] = ACTIONS(1499), + [anon_sym_AMP] = ACTIONS(1497), + [anon_sym_static] = ACTIONS(1497), + [anon_sym_tlocal] = ACTIONS(1497), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_fn] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_const] = ACTIONS(1497), + [anon_sym_var] = ACTIONS(1497), + [anon_sym_return] = ACTIONS(1497), + [anon_sym_continue] = ACTIONS(1497), + [anon_sym_break] = ACTIONS(1497), + [anon_sym_defer] = ACTIONS(1497), + [anon_sym_assert] = ACTIONS(1497), + [anon_sym_nextcase] = ACTIONS(1497), + [anon_sym_switch] = ACTIONS(1497), + [anon_sym_AMP_AMP] = ACTIONS(1499), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_for] = ACTIONS(1497), + [anon_sym_foreach] = ACTIONS(1497), + [anon_sym_foreach_r] = ACTIONS(1497), + [anon_sym_while] = ACTIONS(1497), + [anon_sym_do] = ACTIONS(1497), + [anon_sym_int] = ACTIONS(1497), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_asm] = ACTIONS(1497), + [anon_sym_DOLLARassert] = ACTIONS(1497), + [anon_sym_DOLLARerror] = ACTIONS(1497), + [anon_sym_DOLLARecho] = ACTIONS(1497), + [anon_sym_DOLLARif] = ACTIONS(1497), + [anon_sym_DOLLARcase] = ACTIONS(1497), + [anon_sym_DOLLARdefault] = ACTIONS(1497), + [anon_sym_DOLLARswitch] = ACTIONS(1497), + [anon_sym_DOLLARendswitch] = ACTIONS(1497), + [anon_sym_DOLLARfor] = ACTIONS(1497), + [anon_sym_DOLLARforeach] = ACTIONS(1497), + [anon_sym_DOLLARalignof] = ACTIONS(1497), + [anon_sym_DOLLARextnameof] = ACTIONS(1497), + [anon_sym_DOLLARnameof] = ACTIONS(1497), + [anon_sym_DOLLARoffsetof] = ACTIONS(1497), + [anon_sym_DOLLARqnameof] = ACTIONS(1497), + [anon_sym_DOLLARvaconst] = ACTIONS(1497), + [anon_sym_DOLLARvaarg] = ACTIONS(1497), + [anon_sym_DOLLARvaref] = ACTIONS(1497), + [anon_sym_DOLLARvaexpr] = ACTIONS(1497), + [anon_sym_true] = ACTIONS(1497), + [anon_sym_false] = ACTIONS(1497), + [anon_sym_null] = ACTIONS(1497), + [anon_sym_DOLLARvacount] = ACTIONS(1497), + [anon_sym_DOLLARappend] = ACTIONS(1497), + [anon_sym_DOLLARconcat] = ACTIONS(1497), + [anon_sym_DOLLAReval] = ACTIONS(1497), + [anon_sym_DOLLARis_const] = ACTIONS(1497), + [anon_sym_DOLLARsizeof] = ACTIONS(1497), + [anon_sym_DOLLARstringify] = ACTIONS(1497), + [anon_sym_DOLLARand] = ACTIONS(1497), + [anon_sym_DOLLARdefined] = ACTIONS(1497), + [anon_sym_DOLLARembed] = ACTIONS(1497), + [anon_sym_DOLLARor] = ACTIONS(1497), + [anon_sym_DOLLARfeature] = ACTIONS(1497), + [anon_sym_DOLLARassignable] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_TILDE] = ACTIONS(1499), + [anon_sym_PLUS_PLUS] = ACTIONS(1499), + [anon_sym_DASH_DASH] = ACTIONS(1499), + [anon_sym_typeid] = ACTIONS(1497), + [anon_sym_LBRACE_PIPE] = ACTIONS(1499), + [anon_sym_void] = ACTIONS(1497), + [anon_sym_bool] = ACTIONS(1497), + [anon_sym_char] = ACTIONS(1497), + [anon_sym_ichar] = ACTIONS(1497), + [anon_sym_short] = ACTIONS(1497), + [anon_sym_ushort] = ACTIONS(1497), + [anon_sym_uint] = ACTIONS(1497), + [anon_sym_long] = ACTIONS(1497), + [anon_sym_ulong] = ACTIONS(1497), + [anon_sym_int128] = ACTIONS(1497), + [anon_sym_uint128] = ACTIONS(1497), + [anon_sym_float] = ACTIONS(1497), + [anon_sym_double] = ACTIONS(1497), + [anon_sym_float16] = ACTIONS(1497), + [anon_sym_bfloat16] = ACTIONS(1497), + [anon_sym_float128] = ACTIONS(1497), + [anon_sym_iptr] = ACTIONS(1497), + [anon_sym_uptr] = ACTIONS(1497), + [anon_sym_isz] = ACTIONS(1497), + [anon_sym_usz] = ACTIONS(1497), + [anon_sym_anyfault] = ACTIONS(1497), + [anon_sym_any] = ACTIONS(1497), + [anon_sym_DOLLARtypeof] = ACTIONS(1497), + [anon_sym_DOLLARtypefrom] = ACTIONS(1497), + [anon_sym_DOLLARvatype] = ACTIONS(1497), + [anon_sym_DOLLARevaltype] = ACTIONS(1497), + [sym_real_literal] = ACTIONS(1499), }, [439] = { [sym_line_comment] = STATE(439), [sym_doc_comment] = STATE(439), [sym_block_comment] = STATE(439), - [sym_ident] = ACTIONS(1556), - [sym_integer_literal] = ACTIONS(1558), - [anon_sym_SQUOTE] = ACTIONS(1558), - [anon_sym_DQUOTE] = ACTIONS(1558), - [anon_sym_BQUOTE] = ACTIONS(1558), - [sym_bytes_literal] = ACTIONS(1558), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1556), - [sym_at_ident] = ACTIONS(1558), - [sym_hash_ident] = ACTIONS(1558), - [sym_type_ident] = ACTIONS(1558), - [sym_ct_type_ident] = ACTIONS(1558), - [sym_const_ident] = ACTIONS(1556), - [sym_builtin] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1558), - [anon_sym_AMP] = ACTIONS(1556), - [anon_sym_static] = ACTIONS(1556), - [anon_sym_tlocal] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1558), - [anon_sym_fn] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1558), - [anon_sym_const] = ACTIONS(1556), - [anon_sym_var] = ACTIONS(1556), - [anon_sym_return] = ACTIONS(1556), - [anon_sym_continue] = ACTIONS(1556), - [anon_sym_break] = ACTIONS(1556), - [anon_sym_defer] = ACTIONS(1556), - [anon_sym_assert] = ACTIONS(1556), - [anon_sym_case] = ACTIONS(1556), - [anon_sym_default] = ACTIONS(1556), - [anon_sym_nextcase] = ACTIONS(1556), - [anon_sym_switch] = ACTIONS(1556), - [anon_sym_AMP_AMP] = ACTIONS(1558), - [anon_sym_if] = ACTIONS(1556), - [anon_sym_for] = ACTIONS(1556), - [anon_sym_foreach] = ACTIONS(1556), - [anon_sym_foreach_r] = ACTIONS(1556), - [anon_sym_while] = ACTIONS(1556), - [anon_sym_do] = ACTIONS(1556), - [anon_sym_int] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1558), - [anon_sym_asm] = ACTIONS(1556), - [anon_sym_DOLLARassert] = ACTIONS(1556), - [anon_sym_DOLLARerror] = ACTIONS(1556), - [anon_sym_DOLLARecho] = ACTIONS(1556), - [anon_sym_DOLLARif] = ACTIONS(1556), - [anon_sym_DOLLARswitch] = ACTIONS(1556), - [anon_sym_DOLLARfor] = ACTIONS(1556), - [anon_sym_DOLLARforeach] = ACTIONS(1556), - [anon_sym_DOLLARalignof] = ACTIONS(1556), - [anon_sym_DOLLARextnameof] = ACTIONS(1556), - [anon_sym_DOLLARnameof] = ACTIONS(1556), - [anon_sym_DOLLARoffsetof] = ACTIONS(1556), - [anon_sym_DOLLARqnameof] = ACTIONS(1556), - [anon_sym_DOLLARvaconst] = ACTIONS(1556), - [anon_sym_DOLLARvaarg] = ACTIONS(1556), - [anon_sym_DOLLARvaref] = ACTIONS(1556), - [anon_sym_DOLLARvaexpr] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [anon_sym_DOLLARvacount] = ACTIONS(1556), - [anon_sym_DOLLARappend] = ACTIONS(1556), - [anon_sym_DOLLARconcat] = ACTIONS(1556), - [anon_sym_DOLLAReval] = ACTIONS(1556), - [anon_sym_DOLLARis_const] = ACTIONS(1556), - [anon_sym_DOLLARsizeof] = ACTIONS(1556), - [anon_sym_DOLLARstringify] = ACTIONS(1556), - [anon_sym_DOLLARand] = ACTIONS(1556), - [anon_sym_DOLLARdefined] = ACTIONS(1556), - [anon_sym_DOLLARembed] = ACTIONS(1556), - [anon_sym_DOLLARor] = ACTIONS(1556), - [anon_sym_DOLLARfeature] = ACTIONS(1556), - [anon_sym_DOLLARassignable] = ACTIONS(1556), - [anon_sym_BANG] = ACTIONS(1558), - [anon_sym_TILDE] = ACTIONS(1558), - [anon_sym_PLUS_PLUS] = ACTIONS(1558), - [anon_sym_DASH_DASH] = ACTIONS(1558), - [anon_sym_typeid] = ACTIONS(1556), - [anon_sym_LBRACE_PIPE] = ACTIONS(1558), - [anon_sym_PIPE_RBRACE] = ACTIONS(1558), - [anon_sym_void] = ACTIONS(1556), - [anon_sym_bool] = ACTIONS(1556), - [anon_sym_char] = ACTIONS(1556), - [anon_sym_ichar] = ACTIONS(1556), - [anon_sym_short] = ACTIONS(1556), - [anon_sym_ushort] = ACTIONS(1556), - [anon_sym_uint] = ACTIONS(1556), - [anon_sym_long] = ACTIONS(1556), - [anon_sym_ulong] = ACTIONS(1556), - [anon_sym_int128] = ACTIONS(1556), - [anon_sym_uint128] = ACTIONS(1556), - [anon_sym_float] = ACTIONS(1556), - [anon_sym_double] = ACTIONS(1556), - [anon_sym_float16] = ACTIONS(1556), - [anon_sym_bfloat16] = ACTIONS(1556), - [anon_sym_float128] = ACTIONS(1556), - [anon_sym_iptr] = ACTIONS(1556), - [anon_sym_uptr] = ACTIONS(1556), - [anon_sym_isz] = ACTIONS(1556), - [anon_sym_usz] = ACTIONS(1556), - [anon_sym_anyfault] = ACTIONS(1556), - [anon_sym_any] = ACTIONS(1556), - [anon_sym_DOLLARtypeof] = ACTIONS(1556), - [anon_sym_DOLLARtypefrom] = ACTIONS(1556), - [anon_sym_DOLLARvatype] = ACTIONS(1556), - [anon_sym_DOLLARevaltype] = ACTIONS(1556), - [sym_real_literal] = ACTIONS(1558), + [sym_ident] = ACTIONS(1485), + [sym_integer_literal] = ACTIONS(1487), + [anon_sym_SQUOTE] = ACTIONS(1487), + [anon_sym_DQUOTE] = ACTIONS(1487), + [anon_sym_BQUOTE] = ACTIONS(1487), + [sym_bytes_literal] = ACTIONS(1487), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1485), + [sym_at_ident] = ACTIONS(1487), + [sym_hash_ident] = ACTIONS(1487), + [sym_type_ident] = ACTIONS(1487), + [sym_ct_type_ident] = ACTIONS(1487), + [sym_const_ident] = ACTIONS(1485), + [sym_builtin] = ACTIONS(1487), + [anon_sym_LPAREN] = ACTIONS(1487), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_static] = ACTIONS(1485), + [anon_sym_tlocal] = ACTIONS(1485), + [anon_sym_SEMI] = ACTIONS(1487), + [anon_sym_fn] = ACTIONS(1485), + [anon_sym_LBRACE] = ACTIONS(1485), + [anon_sym_const] = ACTIONS(1485), + [anon_sym_var] = ACTIONS(1485), + [anon_sym_return] = ACTIONS(1485), + [anon_sym_continue] = ACTIONS(1485), + [anon_sym_break] = ACTIONS(1485), + [anon_sym_defer] = ACTIONS(1485), + [anon_sym_assert] = ACTIONS(1485), + [anon_sym_nextcase] = ACTIONS(1485), + [anon_sym_switch] = ACTIONS(1485), + [anon_sym_AMP_AMP] = ACTIONS(1487), + [anon_sym_if] = ACTIONS(1485), + [anon_sym_for] = ACTIONS(1485), + [anon_sym_foreach] = ACTIONS(1485), + [anon_sym_foreach_r] = ACTIONS(1485), + [anon_sym_while] = ACTIONS(1485), + [anon_sym_do] = ACTIONS(1485), + [anon_sym_int] = ACTIONS(1485), + [anon_sym_PLUS] = ACTIONS(1485), + [anon_sym_DASH] = ACTIONS(1485), + [anon_sym_STAR] = ACTIONS(1487), + [anon_sym_asm] = ACTIONS(1485), + [anon_sym_DOLLARassert] = ACTIONS(1485), + [anon_sym_DOLLARerror] = ACTIONS(1485), + [anon_sym_DOLLARecho] = ACTIONS(1485), + [anon_sym_DOLLARif] = ACTIONS(1485), + [anon_sym_DOLLARcase] = ACTIONS(1485), + [anon_sym_DOLLARdefault] = ACTIONS(1485), + [anon_sym_DOLLARswitch] = ACTIONS(1485), + [anon_sym_DOLLARendswitch] = ACTIONS(1485), + [anon_sym_DOLLARfor] = ACTIONS(1485), + [anon_sym_DOLLARforeach] = ACTIONS(1485), + [anon_sym_DOLLARalignof] = ACTIONS(1485), + [anon_sym_DOLLARextnameof] = ACTIONS(1485), + [anon_sym_DOLLARnameof] = ACTIONS(1485), + [anon_sym_DOLLARoffsetof] = ACTIONS(1485), + [anon_sym_DOLLARqnameof] = ACTIONS(1485), + [anon_sym_DOLLARvaconst] = ACTIONS(1485), + [anon_sym_DOLLARvaarg] = ACTIONS(1485), + [anon_sym_DOLLARvaref] = ACTIONS(1485), + [anon_sym_DOLLARvaexpr] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(1485), + [anon_sym_false] = ACTIONS(1485), + [anon_sym_null] = ACTIONS(1485), + [anon_sym_DOLLARvacount] = ACTIONS(1485), + [anon_sym_DOLLARappend] = ACTIONS(1485), + [anon_sym_DOLLARconcat] = ACTIONS(1485), + [anon_sym_DOLLAReval] = ACTIONS(1485), + [anon_sym_DOLLARis_const] = ACTIONS(1485), + [anon_sym_DOLLARsizeof] = ACTIONS(1485), + [anon_sym_DOLLARstringify] = ACTIONS(1485), + [anon_sym_DOLLARand] = ACTIONS(1485), + [anon_sym_DOLLARdefined] = ACTIONS(1485), + [anon_sym_DOLLARembed] = ACTIONS(1485), + [anon_sym_DOLLARor] = ACTIONS(1485), + [anon_sym_DOLLARfeature] = ACTIONS(1485), + [anon_sym_DOLLARassignable] = ACTIONS(1485), + [anon_sym_BANG] = ACTIONS(1487), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1487), + [anon_sym_DASH_DASH] = ACTIONS(1487), + [anon_sym_typeid] = ACTIONS(1485), + [anon_sym_LBRACE_PIPE] = ACTIONS(1487), + [anon_sym_void] = ACTIONS(1485), + [anon_sym_bool] = ACTIONS(1485), + [anon_sym_char] = ACTIONS(1485), + [anon_sym_ichar] = ACTIONS(1485), + [anon_sym_short] = ACTIONS(1485), + [anon_sym_ushort] = ACTIONS(1485), + [anon_sym_uint] = ACTIONS(1485), + [anon_sym_long] = ACTIONS(1485), + [anon_sym_ulong] = ACTIONS(1485), + [anon_sym_int128] = ACTIONS(1485), + [anon_sym_uint128] = ACTIONS(1485), + [anon_sym_float] = ACTIONS(1485), + [anon_sym_double] = ACTIONS(1485), + [anon_sym_float16] = ACTIONS(1485), + [anon_sym_bfloat16] = ACTIONS(1485), + [anon_sym_float128] = ACTIONS(1485), + [anon_sym_iptr] = ACTIONS(1485), + [anon_sym_uptr] = ACTIONS(1485), + [anon_sym_isz] = ACTIONS(1485), + [anon_sym_usz] = ACTIONS(1485), + [anon_sym_anyfault] = ACTIONS(1485), + [anon_sym_any] = ACTIONS(1485), + [anon_sym_DOLLARtypeof] = ACTIONS(1485), + [anon_sym_DOLLARtypefrom] = ACTIONS(1485), + [anon_sym_DOLLARvatype] = ACTIONS(1485), + [anon_sym_DOLLARevaltype] = ACTIONS(1485), + [sym_real_literal] = ACTIONS(1487), }, [440] = { [sym_line_comment] = STATE(440), [sym_doc_comment] = STATE(440), [sym_block_comment] = STATE(440), - [sym_ident] = ACTIONS(1560), - [sym_integer_literal] = ACTIONS(1562), - [anon_sym_SQUOTE] = ACTIONS(1562), - [anon_sym_DQUOTE] = ACTIONS(1562), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_bytes_literal] = ACTIONS(1562), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1560), - [sym_at_ident] = ACTIONS(1562), - [sym_hash_ident] = ACTIONS(1562), - [sym_type_ident] = ACTIONS(1562), - [sym_ct_type_ident] = ACTIONS(1562), - [sym_const_ident] = ACTIONS(1560), - [sym_builtin] = ACTIONS(1562), - [anon_sym_LPAREN] = ACTIONS(1562), - [anon_sym_AMP] = ACTIONS(1560), - [anon_sym_static] = ACTIONS(1560), - [anon_sym_tlocal] = ACTIONS(1560), - [anon_sym_SEMI] = ACTIONS(1562), - [anon_sym_fn] = ACTIONS(1560), - [anon_sym_LBRACE] = ACTIONS(1560), - [anon_sym_RBRACE] = ACTIONS(1562), - [anon_sym_const] = ACTIONS(1560), - [anon_sym_var] = ACTIONS(1560), - [anon_sym_return] = ACTIONS(1560), - [anon_sym_continue] = ACTIONS(1560), - [anon_sym_break] = ACTIONS(1560), - [anon_sym_defer] = ACTIONS(1560), - [anon_sym_assert] = ACTIONS(1560), - [anon_sym_case] = ACTIONS(1560), - [anon_sym_default] = ACTIONS(1560), - [anon_sym_nextcase] = ACTIONS(1560), - [anon_sym_switch] = ACTIONS(1560), - [anon_sym_AMP_AMP] = ACTIONS(1562), - [anon_sym_if] = ACTIONS(1560), - [anon_sym_for] = ACTIONS(1560), - [anon_sym_foreach] = ACTIONS(1560), - [anon_sym_foreach_r] = ACTIONS(1560), - [anon_sym_while] = ACTIONS(1560), - [anon_sym_do] = ACTIONS(1560), - [anon_sym_int] = ACTIONS(1560), - [anon_sym_PLUS] = ACTIONS(1560), - [anon_sym_DASH] = ACTIONS(1560), - [anon_sym_STAR] = ACTIONS(1562), - [anon_sym_asm] = ACTIONS(1560), - [anon_sym_DOLLARassert] = ACTIONS(1560), - [anon_sym_DOLLARerror] = ACTIONS(1560), - [anon_sym_DOLLARecho] = ACTIONS(1560), - [anon_sym_DOLLARif] = ACTIONS(1560), - [anon_sym_DOLLARswitch] = ACTIONS(1560), - [anon_sym_DOLLARfor] = ACTIONS(1560), - [anon_sym_DOLLARforeach] = ACTIONS(1560), - [anon_sym_DOLLARalignof] = ACTIONS(1560), - [anon_sym_DOLLARextnameof] = ACTIONS(1560), - [anon_sym_DOLLARnameof] = ACTIONS(1560), - [anon_sym_DOLLARoffsetof] = ACTIONS(1560), - [anon_sym_DOLLARqnameof] = ACTIONS(1560), - [anon_sym_DOLLARvaconst] = ACTIONS(1560), - [anon_sym_DOLLARvaarg] = ACTIONS(1560), - [anon_sym_DOLLARvaref] = ACTIONS(1560), - [anon_sym_DOLLARvaexpr] = ACTIONS(1560), - [anon_sym_true] = ACTIONS(1560), - [anon_sym_false] = ACTIONS(1560), - [anon_sym_null] = ACTIONS(1560), - [anon_sym_DOLLARvacount] = ACTIONS(1560), - [anon_sym_DOLLARappend] = ACTIONS(1560), - [anon_sym_DOLLARconcat] = ACTIONS(1560), - [anon_sym_DOLLAReval] = ACTIONS(1560), - [anon_sym_DOLLARis_const] = ACTIONS(1560), - [anon_sym_DOLLARsizeof] = ACTIONS(1560), - [anon_sym_DOLLARstringify] = ACTIONS(1560), - [anon_sym_DOLLARand] = ACTIONS(1560), - [anon_sym_DOLLARdefined] = ACTIONS(1560), - [anon_sym_DOLLARembed] = ACTIONS(1560), - [anon_sym_DOLLARor] = ACTIONS(1560), - [anon_sym_DOLLARfeature] = ACTIONS(1560), - [anon_sym_DOLLARassignable] = ACTIONS(1560), - [anon_sym_BANG] = ACTIONS(1562), - [anon_sym_TILDE] = ACTIONS(1562), - [anon_sym_PLUS_PLUS] = ACTIONS(1562), - [anon_sym_DASH_DASH] = ACTIONS(1562), - [anon_sym_typeid] = ACTIONS(1560), - [anon_sym_LBRACE_PIPE] = ACTIONS(1562), - [anon_sym_PIPE_RBRACE] = ACTIONS(1562), - [anon_sym_void] = ACTIONS(1560), - [anon_sym_bool] = ACTIONS(1560), - [anon_sym_char] = ACTIONS(1560), - [anon_sym_ichar] = ACTIONS(1560), - [anon_sym_short] = ACTIONS(1560), - [anon_sym_ushort] = ACTIONS(1560), - [anon_sym_uint] = ACTIONS(1560), - [anon_sym_long] = ACTIONS(1560), - [anon_sym_ulong] = ACTIONS(1560), - [anon_sym_int128] = ACTIONS(1560), - [anon_sym_uint128] = ACTIONS(1560), - [anon_sym_float] = ACTIONS(1560), - [anon_sym_double] = ACTIONS(1560), - [anon_sym_float16] = ACTIONS(1560), - [anon_sym_bfloat16] = ACTIONS(1560), - [anon_sym_float128] = ACTIONS(1560), - [anon_sym_iptr] = ACTIONS(1560), - [anon_sym_uptr] = ACTIONS(1560), - [anon_sym_isz] = ACTIONS(1560), - [anon_sym_usz] = ACTIONS(1560), - [anon_sym_anyfault] = ACTIONS(1560), - [anon_sym_any] = ACTIONS(1560), - [anon_sym_DOLLARtypeof] = ACTIONS(1560), - [anon_sym_DOLLARtypefrom] = ACTIONS(1560), - [anon_sym_DOLLARvatype] = ACTIONS(1560), - [anon_sym_DOLLARevaltype] = ACTIONS(1560), - [sym_real_literal] = ACTIONS(1562), + [sym_ident] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1413), + [anon_sym_SQUOTE] = ACTIONS(1413), + [anon_sym_DQUOTE] = ACTIONS(1413), + [anon_sym_BQUOTE] = ACTIONS(1413), + [sym_bytes_literal] = ACTIONS(1413), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1411), + [sym_at_ident] = ACTIONS(1413), + [sym_hash_ident] = ACTIONS(1413), + [sym_type_ident] = ACTIONS(1413), + [sym_ct_type_ident] = ACTIONS(1413), + [sym_const_ident] = ACTIONS(1411), + [sym_builtin] = ACTIONS(1413), + [anon_sym_LPAREN] = ACTIONS(1413), + [anon_sym_AMP] = ACTIONS(1411), + [anon_sym_static] = ACTIONS(1411), + [anon_sym_tlocal] = ACTIONS(1411), + [anon_sym_SEMI] = ACTIONS(1413), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_LBRACE] = ACTIONS(1411), + [anon_sym_const] = ACTIONS(1411), + [anon_sym_var] = ACTIONS(1411), + [anon_sym_return] = ACTIONS(1411), + [anon_sym_continue] = ACTIONS(1411), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_defer] = ACTIONS(1411), + [anon_sym_assert] = ACTIONS(1411), + [anon_sym_nextcase] = ACTIONS(1411), + [anon_sym_switch] = ACTIONS(1411), + [anon_sym_AMP_AMP] = ACTIONS(1413), + [anon_sym_if] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1411), + [anon_sym_foreach] = ACTIONS(1411), + [anon_sym_foreach_r] = ACTIONS(1411), + [anon_sym_while] = ACTIONS(1411), + [anon_sym_do] = ACTIONS(1411), + [anon_sym_int] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_STAR] = ACTIONS(1413), + [anon_sym_asm] = ACTIONS(1411), + [anon_sym_DOLLARassert] = ACTIONS(1411), + [anon_sym_DOLLARerror] = ACTIONS(1411), + [anon_sym_DOLLARecho] = ACTIONS(1411), + [anon_sym_DOLLARif] = ACTIONS(1411), + [anon_sym_DOLLARcase] = ACTIONS(1411), + [anon_sym_DOLLARdefault] = ACTIONS(1411), + [anon_sym_DOLLARswitch] = ACTIONS(1411), + [anon_sym_DOLLARendswitch] = ACTIONS(1411), + [anon_sym_DOLLARfor] = ACTIONS(1411), + [anon_sym_DOLLARforeach] = ACTIONS(1411), + [anon_sym_DOLLARalignof] = ACTIONS(1411), + [anon_sym_DOLLARextnameof] = ACTIONS(1411), + [anon_sym_DOLLARnameof] = ACTIONS(1411), + [anon_sym_DOLLARoffsetof] = ACTIONS(1411), + [anon_sym_DOLLARqnameof] = ACTIONS(1411), + [anon_sym_DOLLARvaconst] = ACTIONS(1411), + [anon_sym_DOLLARvaarg] = ACTIONS(1411), + [anon_sym_DOLLARvaref] = ACTIONS(1411), + [anon_sym_DOLLARvaexpr] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1411), + [anon_sym_false] = ACTIONS(1411), + [anon_sym_null] = ACTIONS(1411), + [anon_sym_DOLLARvacount] = ACTIONS(1411), + [anon_sym_DOLLARappend] = ACTIONS(1411), + [anon_sym_DOLLARconcat] = ACTIONS(1411), + [anon_sym_DOLLAReval] = ACTIONS(1411), + [anon_sym_DOLLARis_const] = ACTIONS(1411), + [anon_sym_DOLLARsizeof] = ACTIONS(1411), + [anon_sym_DOLLARstringify] = ACTIONS(1411), + [anon_sym_DOLLARand] = ACTIONS(1411), + [anon_sym_DOLLARdefined] = ACTIONS(1411), + [anon_sym_DOLLARembed] = ACTIONS(1411), + [anon_sym_DOLLARor] = ACTIONS(1411), + [anon_sym_DOLLARfeature] = ACTIONS(1411), + [anon_sym_DOLLARassignable] = ACTIONS(1411), + [anon_sym_BANG] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_typeid] = ACTIONS(1411), + [anon_sym_LBRACE_PIPE] = ACTIONS(1413), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_bool] = ACTIONS(1411), + [anon_sym_char] = ACTIONS(1411), + [anon_sym_ichar] = ACTIONS(1411), + [anon_sym_short] = ACTIONS(1411), + [anon_sym_ushort] = ACTIONS(1411), + [anon_sym_uint] = ACTIONS(1411), + [anon_sym_long] = ACTIONS(1411), + [anon_sym_ulong] = ACTIONS(1411), + [anon_sym_int128] = ACTIONS(1411), + [anon_sym_uint128] = ACTIONS(1411), + [anon_sym_float] = ACTIONS(1411), + [anon_sym_double] = ACTIONS(1411), + [anon_sym_float16] = ACTIONS(1411), + [anon_sym_bfloat16] = ACTIONS(1411), + [anon_sym_float128] = ACTIONS(1411), + [anon_sym_iptr] = ACTIONS(1411), + [anon_sym_uptr] = ACTIONS(1411), + [anon_sym_isz] = ACTIONS(1411), + [anon_sym_usz] = ACTIONS(1411), + [anon_sym_anyfault] = ACTIONS(1411), + [anon_sym_any] = ACTIONS(1411), + [anon_sym_DOLLARtypeof] = ACTIONS(1411), + [anon_sym_DOLLARtypefrom] = ACTIONS(1411), + [anon_sym_DOLLARvatype] = ACTIONS(1411), + [anon_sym_DOLLARevaltype] = ACTIONS(1411), + [sym_real_literal] = ACTIONS(1413), }, [441] = { [sym_line_comment] = STATE(441), [sym_doc_comment] = STATE(441), [sym_block_comment] = STATE(441), - [sym_ident] = ACTIONS(1564), - [sym_integer_literal] = ACTIONS(1566), - [anon_sym_SQUOTE] = ACTIONS(1566), - [anon_sym_DQUOTE] = ACTIONS(1566), - [anon_sym_BQUOTE] = ACTIONS(1566), - [sym_bytes_literal] = ACTIONS(1566), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1564), - [sym_at_ident] = ACTIONS(1566), - [sym_hash_ident] = ACTIONS(1566), - [sym_type_ident] = ACTIONS(1566), - [sym_ct_type_ident] = ACTIONS(1566), - [sym_const_ident] = ACTIONS(1564), - [sym_builtin] = ACTIONS(1566), - [anon_sym_LPAREN] = ACTIONS(1566), - [anon_sym_AMP] = ACTIONS(1564), - [anon_sym_static] = ACTIONS(1564), - [anon_sym_tlocal] = ACTIONS(1564), - [anon_sym_SEMI] = ACTIONS(1566), - [anon_sym_fn] = ACTIONS(1564), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_RBRACE] = ACTIONS(1566), - [anon_sym_const] = ACTIONS(1564), - [anon_sym_var] = ACTIONS(1564), - [anon_sym_return] = ACTIONS(1564), - [anon_sym_continue] = ACTIONS(1564), - [anon_sym_break] = ACTIONS(1564), - [anon_sym_defer] = ACTIONS(1564), - [anon_sym_assert] = ACTIONS(1564), - [anon_sym_case] = ACTIONS(1564), - [anon_sym_default] = ACTIONS(1564), - [anon_sym_nextcase] = ACTIONS(1564), - [anon_sym_switch] = ACTIONS(1564), - [anon_sym_AMP_AMP] = ACTIONS(1566), - [anon_sym_if] = ACTIONS(1564), - [anon_sym_for] = ACTIONS(1564), - [anon_sym_foreach] = ACTIONS(1564), - [anon_sym_foreach_r] = ACTIONS(1564), - [anon_sym_while] = ACTIONS(1564), - [anon_sym_do] = ACTIONS(1564), - [anon_sym_int] = ACTIONS(1564), - [anon_sym_PLUS] = ACTIONS(1564), - [anon_sym_DASH] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1566), - [anon_sym_asm] = ACTIONS(1564), - [anon_sym_DOLLARassert] = ACTIONS(1564), - [anon_sym_DOLLARerror] = ACTIONS(1564), - [anon_sym_DOLLARecho] = ACTIONS(1564), - [anon_sym_DOLLARif] = ACTIONS(1564), - [anon_sym_DOLLARswitch] = ACTIONS(1564), - [anon_sym_DOLLARfor] = ACTIONS(1564), - [anon_sym_DOLLARforeach] = ACTIONS(1564), - [anon_sym_DOLLARalignof] = ACTIONS(1564), - [anon_sym_DOLLARextnameof] = ACTIONS(1564), - [anon_sym_DOLLARnameof] = ACTIONS(1564), - [anon_sym_DOLLARoffsetof] = ACTIONS(1564), - [anon_sym_DOLLARqnameof] = ACTIONS(1564), - [anon_sym_DOLLARvaconst] = ACTIONS(1564), - [anon_sym_DOLLARvaarg] = ACTIONS(1564), - [anon_sym_DOLLARvaref] = ACTIONS(1564), - [anon_sym_DOLLARvaexpr] = ACTIONS(1564), - [anon_sym_true] = ACTIONS(1564), - [anon_sym_false] = ACTIONS(1564), - [anon_sym_null] = ACTIONS(1564), - [anon_sym_DOLLARvacount] = ACTIONS(1564), - [anon_sym_DOLLARappend] = ACTIONS(1564), - [anon_sym_DOLLARconcat] = ACTIONS(1564), - [anon_sym_DOLLAReval] = ACTIONS(1564), - [anon_sym_DOLLARis_const] = ACTIONS(1564), - [anon_sym_DOLLARsizeof] = ACTIONS(1564), - [anon_sym_DOLLARstringify] = ACTIONS(1564), - [anon_sym_DOLLARand] = ACTIONS(1564), - [anon_sym_DOLLARdefined] = ACTIONS(1564), - [anon_sym_DOLLARembed] = ACTIONS(1564), - [anon_sym_DOLLARor] = ACTIONS(1564), - [anon_sym_DOLLARfeature] = ACTIONS(1564), - [anon_sym_DOLLARassignable] = ACTIONS(1564), - [anon_sym_BANG] = ACTIONS(1566), - [anon_sym_TILDE] = ACTIONS(1566), - [anon_sym_PLUS_PLUS] = ACTIONS(1566), - [anon_sym_DASH_DASH] = ACTIONS(1566), - [anon_sym_typeid] = ACTIONS(1564), - [anon_sym_LBRACE_PIPE] = ACTIONS(1566), - [anon_sym_PIPE_RBRACE] = ACTIONS(1566), - [anon_sym_void] = ACTIONS(1564), - [anon_sym_bool] = ACTIONS(1564), - [anon_sym_char] = ACTIONS(1564), - [anon_sym_ichar] = ACTIONS(1564), - [anon_sym_short] = ACTIONS(1564), - [anon_sym_ushort] = ACTIONS(1564), - [anon_sym_uint] = ACTIONS(1564), - [anon_sym_long] = ACTIONS(1564), - [anon_sym_ulong] = ACTIONS(1564), - [anon_sym_int128] = ACTIONS(1564), - [anon_sym_uint128] = ACTIONS(1564), - [anon_sym_float] = ACTIONS(1564), - [anon_sym_double] = ACTIONS(1564), - [anon_sym_float16] = ACTIONS(1564), - [anon_sym_bfloat16] = ACTIONS(1564), - [anon_sym_float128] = ACTIONS(1564), - [anon_sym_iptr] = ACTIONS(1564), - [anon_sym_uptr] = ACTIONS(1564), - [anon_sym_isz] = ACTIONS(1564), - [anon_sym_usz] = ACTIONS(1564), - [anon_sym_anyfault] = ACTIONS(1564), - [anon_sym_any] = ACTIONS(1564), - [anon_sym_DOLLARtypeof] = ACTIONS(1564), - [anon_sym_DOLLARtypefrom] = ACTIONS(1564), - [anon_sym_DOLLARvatype] = ACTIONS(1564), - [anon_sym_DOLLARevaltype] = ACTIONS(1564), - [sym_real_literal] = ACTIONS(1566), + [sym_else_part] = STATE(615), + [sym_ident] = ACTIONS(1343), + [sym_integer_literal] = ACTIONS(1345), + [anon_sym_SQUOTE] = ACTIONS(1345), + [anon_sym_DQUOTE] = ACTIONS(1345), + [anon_sym_BQUOTE] = ACTIONS(1345), + [sym_bytes_literal] = ACTIONS(1345), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1343), + [sym_at_ident] = ACTIONS(1345), + [sym_hash_ident] = ACTIONS(1345), + [sym_type_ident] = ACTIONS(1345), + [sym_ct_type_ident] = ACTIONS(1345), + [sym_const_ident] = ACTIONS(1343), + [sym_builtin] = ACTIONS(1345), + [anon_sym_LPAREN] = ACTIONS(1345), + [anon_sym_AMP] = ACTIONS(1343), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_tlocal] = ACTIONS(1343), + [anon_sym_SEMI] = ACTIONS(1345), + [anon_sym_fn] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1343), + [anon_sym_const] = ACTIONS(1343), + [anon_sym_var] = ACTIONS(1343), + [anon_sym_return] = ACTIONS(1343), + [anon_sym_continue] = ACTIONS(1343), + [anon_sym_break] = ACTIONS(1343), + [anon_sym_defer] = ACTIONS(1343), + [anon_sym_assert] = ACTIONS(1343), + [anon_sym_nextcase] = ACTIONS(1343), + [anon_sym_switch] = ACTIONS(1343), + [anon_sym_AMP_AMP] = ACTIONS(1345), + [anon_sym_if] = ACTIONS(1343), + [anon_sym_else] = ACTIONS(1641), + [anon_sym_for] = ACTIONS(1343), + [anon_sym_foreach] = ACTIONS(1343), + [anon_sym_foreach_r] = ACTIONS(1343), + [anon_sym_while] = ACTIONS(1343), + [anon_sym_do] = ACTIONS(1343), + [anon_sym_int] = ACTIONS(1343), + [anon_sym_PLUS] = ACTIONS(1343), + [anon_sym_DASH] = ACTIONS(1343), + [anon_sym_STAR] = ACTIONS(1345), + [anon_sym_asm] = ACTIONS(1343), + [anon_sym_DOLLARassert] = ACTIONS(1343), + [anon_sym_DOLLARerror] = ACTIONS(1343), + [anon_sym_DOLLARecho] = ACTIONS(1343), + [anon_sym_DOLLARif] = ACTIONS(1343), + [anon_sym_DOLLARswitch] = ACTIONS(1343), + [anon_sym_DOLLARfor] = ACTIONS(1343), + [anon_sym_DOLLARendfor] = ACTIONS(1343), + [anon_sym_DOLLARforeach] = ACTIONS(1343), + [anon_sym_DOLLARalignof] = ACTIONS(1343), + [anon_sym_DOLLARextnameof] = ACTIONS(1343), + [anon_sym_DOLLARnameof] = ACTIONS(1343), + [anon_sym_DOLLARoffsetof] = ACTIONS(1343), + [anon_sym_DOLLARqnameof] = ACTIONS(1343), + [anon_sym_DOLLARvaconst] = ACTIONS(1343), + [anon_sym_DOLLARvaarg] = ACTIONS(1343), + [anon_sym_DOLLARvaref] = ACTIONS(1343), + [anon_sym_DOLLARvaexpr] = ACTIONS(1343), + [anon_sym_true] = ACTIONS(1343), + [anon_sym_false] = ACTIONS(1343), + [anon_sym_null] = ACTIONS(1343), + [anon_sym_DOLLARvacount] = ACTIONS(1343), + [anon_sym_DOLLARappend] = ACTIONS(1343), + [anon_sym_DOLLARconcat] = ACTIONS(1343), + [anon_sym_DOLLAReval] = ACTIONS(1343), + [anon_sym_DOLLARis_const] = ACTIONS(1343), + [anon_sym_DOLLARsizeof] = ACTIONS(1343), + [anon_sym_DOLLARstringify] = ACTIONS(1343), + [anon_sym_DOLLARand] = ACTIONS(1343), + [anon_sym_DOLLARdefined] = ACTIONS(1343), + [anon_sym_DOLLARembed] = ACTIONS(1343), + [anon_sym_DOLLARor] = ACTIONS(1343), + [anon_sym_DOLLARfeature] = ACTIONS(1343), + [anon_sym_DOLLARassignable] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(1345), + [anon_sym_TILDE] = ACTIONS(1345), + [anon_sym_PLUS_PLUS] = ACTIONS(1345), + [anon_sym_DASH_DASH] = ACTIONS(1345), + [anon_sym_typeid] = ACTIONS(1343), + [anon_sym_LBRACE_PIPE] = ACTIONS(1345), + [anon_sym_void] = ACTIONS(1343), + [anon_sym_bool] = ACTIONS(1343), + [anon_sym_char] = ACTIONS(1343), + [anon_sym_ichar] = ACTIONS(1343), + [anon_sym_short] = ACTIONS(1343), + [anon_sym_ushort] = ACTIONS(1343), + [anon_sym_uint] = ACTIONS(1343), + [anon_sym_long] = ACTIONS(1343), + [anon_sym_ulong] = ACTIONS(1343), + [anon_sym_int128] = ACTIONS(1343), + [anon_sym_uint128] = ACTIONS(1343), + [anon_sym_float] = ACTIONS(1343), + [anon_sym_double] = ACTIONS(1343), + [anon_sym_float16] = ACTIONS(1343), + [anon_sym_bfloat16] = ACTIONS(1343), + [anon_sym_float128] = ACTIONS(1343), + [anon_sym_iptr] = ACTIONS(1343), + [anon_sym_uptr] = ACTIONS(1343), + [anon_sym_isz] = ACTIONS(1343), + [anon_sym_usz] = ACTIONS(1343), + [anon_sym_anyfault] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_DOLLARtypeof] = ACTIONS(1343), + [anon_sym_DOLLARtypefrom] = ACTIONS(1343), + [anon_sym_DOLLARvatype] = ACTIONS(1343), + [anon_sym_DOLLARevaltype] = ACTIONS(1343), + [sym_real_literal] = ACTIONS(1345), }, [442] = { [sym_line_comment] = STATE(442), [sym_doc_comment] = STATE(442), [sym_block_comment] = STATE(442), - [sym_ident] = ACTIONS(1568), - [sym_integer_literal] = ACTIONS(1570), - [anon_sym_SQUOTE] = ACTIONS(1570), - [anon_sym_DQUOTE] = ACTIONS(1570), - [anon_sym_BQUOTE] = ACTIONS(1570), - [sym_bytes_literal] = ACTIONS(1570), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1568), - [sym_at_ident] = ACTIONS(1570), - [sym_hash_ident] = ACTIONS(1570), - [sym_type_ident] = ACTIONS(1570), - [sym_ct_type_ident] = ACTIONS(1570), - [sym_const_ident] = ACTIONS(1568), - [sym_builtin] = ACTIONS(1570), - [anon_sym_LPAREN] = ACTIONS(1570), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_static] = ACTIONS(1568), - [anon_sym_tlocal] = ACTIONS(1568), - [anon_sym_SEMI] = ACTIONS(1570), - [anon_sym_fn] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(1568), - [anon_sym_RBRACE] = ACTIONS(1570), - [anon_sym_const] = ACTIONS(1568), - [anon_sym_var] = ACTIONS(1568), - [anon_sym_return] = ACTIONS(1568), - [anon_sym_continue] = ACTIONS(1568), - [anon_sym_break] = ACTIONS(1568), - [anon_sym_defer] = ACTIONS(1568), - [anon_sym_assert] = ACTIONS(1568), - [anon_sym_case] = ACTIONS(1568), - [anon_sym_default] = ACTIONS(1568), - [anon_sym_nextcase] = ACTIONS(1568), - [anon_sym_switch] = ACTIONS(1568), - [anon_sym_AMP_AMP] = ACTIONS(1570), - [anon_sym_if] = ACTIONS(1568), - [anon_sym_for] = ACTIONS(1568), - [anon_sym_foreach] = ACTIONS(1568), - [anon_sym_foreach_r] = ACTIONS(1568), - [anon_sym_while] = ACTIONS(1568), - [anon_sym_do] = ACTIONS(1568), - [anon_sym_int] = ACTIONS(1568), - [anon_sym_PLUS] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1568), - [anon_sym_STAR] = ACTIONS(1570), - [anon_sym_asm] = ACTIONS(1568), - [anon_sym_DOLLARassert] = ACTIONS(1568), - [anon_sym_DOLLARerror] = ACTIONS(1568), - [anon_sym_DOLLARecho] = ACTIONS(1568), - [anon_sym_DOLLARif] = ACTIONS(1568), - [anon_sym_DOLLARswitch] = ACTIONS(1568), - [anon_sym_DOLLARfor] = ACTIONS(1568), - [anon_sym_DOLLARforeach] = ACTIONS(1568), - [anon_sym_DOLLARalignof] = ACTIONS(1568), - [anon_sym_DOLLARextnameof] = ACTIONS(1568), - [anon_sym_DOLLARnameof] = ACTIONS(1568), - [anon_sym_DOLLARoffsetof] = ACTIONS(1568), - [anon_sym_DOLLARqnameof] = ACTIONS(1568), - [anon_sym_DOLLARvaconst] = ACTIONS(1568), - [anon_sym_DOLLARvaarg] = ACTIONS(1568), - [anon_sym_DOLLARvaref] = ACTIONS(1568), - [anon_sym_DOLLARvaexpr] = ACTIONS(1568), - [anon_sym_true] = ACTIONS(1568), - [anon_sym_false] = ACTIONS(1568), - [anon_sym_null] = ACTIONS(1568), - [anon_sym_DOLLARvacount] = ACTIONS(1568), - [anon_sym_DOLLARappend] = ACTIONS(1568), - [anon_sym_DOLLARconcat] = ACTIONS(1568), - [anon_sym_DOLLAReval] = ACTIONS(1568), - [anon_sym_DOLLARis_const] = ACTIONS(1568), - [anon_sym_DOLLARsizeof] = ACTIONS(1568), - [anon_sym_DOLLARstringify] = ACTIONS(1568), - [anon_sym_DOLLARand] = ACTIONS(1568), - [anon_sym_DOLLARdefined] = ACTIONS(1568), - [anon_sym_DOLLARembed] = ACTIONS(1568), - [anon_sym_DOLLARor] = ACTIONS(1568), - [anon_sym_DOLLARfeature] = ACTIONS(1568), - [anon_sym_DOLLARassignable] = ACTIONS(1568), - [anon_sym_BANG] = ACTIONS(1570), - [anon_sym_TILDE] = ACTIONS(1570), - [anon_sym_PLUS_PLUS] = ACTIONS(1570), - [anon_sym_DASH_DASH] = ACTIONS(1570), - [anon_sym_typeid] = ACTIONS(1568), - [anon_sym_LBRACE_PIPE] = ACTIONS(1570), - [anon_sym_PIPE_RBRACE] = ACTIONS(1570), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_bool] = ACTIONS(1568), - [anon_sym_char] = ACTIONS(1568), - [anon_sym_ichar] = ACTIONS(1568), - [anon_sym_short] = ACTIONS(1568), - [anon_sym_ushort] = ACTIONS(1568), - [anon_sym_uint] = ACTIONS(1568), - [anon_sym_long] = ACTIONS(1568), - [anon_sym_ulong] = ACTIONS(1568), - [anon_sym_int128] = ACTIONS(1568), - [anon_sym_uint128] = ACTIONS(1568), - [anon_sym_float] = ACTIONS(1568), - [anon_sym_double] = ACTIONS(1568), - [anon_sym_float16] = ACTIONS(1568), - [anon_sym_bfloat16] = ACTIONS(1568), - [anon_sym_float128] = ACTIONS(1568), - [anon_sym_iptr] = ACTIONS(1568), - [anon_sym_uptr] = ACTIONS(1568), - [anon_sym_isz] = ACTIONS(1568), - [anon_sym_usz] = ACTIONS(1568), - [anon_sym_anyfault] = ACTIONS(1568), - [anon_sym_any] = ACTIONS(1568), - [anon_sym_DOLLARtypeof] = ACTIONS(1568), - [anon_sym_DOLLARtypefrom] = ACTIONS(1568), - [anon_sym_DOLLARvatype] = ACTIONS(1568), - [anon_sym_DOLLARevaltype] = ACTIONS(1568), - [sym_real_literal] = ACTIONS(1570), + [sym_ident] = ACTIONS(1427), + [sym_integer_literal] = ACTIONS(1429), + [anon_sym_SQUOTE] = ACTIONS(1429), + [anon_sym_DQUOTE] = ACTIONS(1429), + [anon_sym_BQUOTE] = ACTIONS(1429), + [sym_bytes_literal] = ACTIONS(1429), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1427), + [sym_at_ident] = ACTIONS(1429), + [sym_hash_ident] = ACTIONS(1429), + [sym_type_ident] = ACTIONS(1429), + [sym_ct_type_ident] = ACTIONS(1429), + [sym_const_ident] = ACTIONS(1427), + [sym_builtin] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1429), + [anon_sym_AMP] = ACTIONS(1427), + [anon_sym_static] = ACTIONS(1427), + [anon_sym_tlocal] = ACTIONS(1427), + [anon_sym_SEMI] = ACTIONS(1429), + [anon_sym_fn] = ACTIONS(1427), + [anon_sym_LBRACE] = ACTIONS(1427), + [anon_sym_const] = ACTIONS(1427), + [anon_sym_var] = ACTIONS(1427), + [anon_sym_return] = ACTIONS(1427), + [anon_sym_continue] = ACTIONS(1427), + [anon_sym_break] = ACTIONS(1427), + [anon_sym_defer] = ACTIONS(1427), + [anon_sym_assert] = ACTIONS(1427), + [anon_sym_nextcase] = ACTIONS(1427), + [anon_sym_switch] = ACTIONS(1427), + [anon_sym_AMP_AMP] = ACTIONS(1429), + [anon_sym_if] = ACTIONS(1427), + [anon_sym_for] = ACTIONS(1427), + [anon_sym_foreach] = ACTIONS(1427), + [anon_sym_foreach_r] = ACTIONS(1427), + [anon_sym_while] = ACTIONS(1427), + [anon_sym_do] = ACTIONS(1427), + [anon_sym_int] = ACTIONS(1427), + [anon_sym_PLUS] = ACTIONS(1427), + [anon_sym_DASH] = ACTIONS(1427), + [anon_sym_STAR] = ACTIONS(1429), + [anon_sym_asm] = ACTIONS(1427), + [anon_sym_DOLLARassert] = ACTIONS(1427), + [anon_sym_DOLLARerror] = ACTIONS(1427), + [anon_sym_DOLLARecho] = ACTIONS(1427), + [anon_sym_DOLLARif] = ACTIONS(1427), + [anon_sym_DOLLARcase] = ACTIONS(1427), + [anon_sym_DOLLARdefault] = ACTIONS(1427), + [anon_sym_DOLLARswitch] = ACTIONS(1427), + [anon_sym_DOLLARendswitch] = ACTIONS(1427), + [anon_sym_DOLLARfor] = ACTIONS(1427), + [anon_sym_DOLLARforeach] = ACTIONS(1427), + [anon_sym_DOLLARalignof] = ACTIONS(1427), + [anon_sym_DOLLARextnameof] = ACTIONS(1427), + [anon_sym_DOLLARnameof] = ACTIONS(1427), + [anon_sym_DOLLARoffsetof] = ACTIONS(1427), + [anon_sym_DOLLARqnameof] = ACTIONS(1427), + [anon_sym_DOLLARvaconst] = ACTIONS(1427), + [anon_sym_DOLLARvaarg] = ACTIONS(1427), + [anon_sym_DOLLARvaref] = ACTIONS(1427), + [anon_sym_DOLLARvaexpr] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1427), + [anon_sym_false] = ACTIONS(1427), + [anon_sym_null] = ACTIONS(1427), + [anon_sym_DOLLARvacount] = ACTIONS(1427), + [anon_sym_DOLLARappend] = ACTIONS(1427), + [anon_sym_DOLLARconcat] = ACTIONS(1427), + [anon_sym_DOLLAReval] = ACTIONS(1427), + [anon_sym_DOLLARis_const] = ACTIONS(1427), + [anon_sym_DOLLARsizeof] = ACTIONS(1427), + [anon_sym_DOLLARstringify] = ACTIONS(1427), + [anon_sym_DOLLARand] = ACTIONS(1427), + [anon_sym_DOLLARdefined] = ACTIONS(1427), + [anon_sym_DOLLARembed] = ACTIONS(1427), + [anon_sym_DOLLARor] = ACTIONS(1427), + [anon_sym_DOLLARfeature] = ACTIONS(1427), + [anon_sym_DOLLARassignable] = ACTIONS(1427), + [anon_sym_BANG] = ACTIONS(1429), + [anon_sym_TILDE] = ACTIONS(1429), + [anon_sym_PLUS_PLUS] = ACTIONS(1429), + [anon_sym_DASH_DASH] = ACTIONS(1429), + [anon_sym_typeid] = ACTIONS(1427), + [anon_sym_LBRACE_PIPE] = ACTIONS(1429), + [anon_sym_void] = ACTIONS(1427), + [anon_sym_bool] = ACTIONS(1427), + [anon_sym_char] = ACTIONS(1427), + [anon_sym_ichar] = ACTIONS(1427), + [anon_sym_short] = ACTIONS(1427), + [anon_sym_ushort] = ACTIONS(1427), + [anon_sym_uint] = ACTIONS(1427), + [anon_sym_long] = ACTIONS(1427), + [anon_sym_ulong] = ACTIONS(1427), + [anon_sym_int128] = ACTIONS(1427), + [anon_sym_uint128] = ACTIONS(1427), + [anon_sym_float] = ACTIONS(1427), + [anon_sym_double] = ACTIONS(1427), + [anon_sym_float16] = ACTIONS(1427), + [anon_sym_bfloat16] = ACTIONS(1427), + [anon_sym_float128] = ACTIONS(1427), + [anon_sym_iptr] = ACTIONS(1427), + [anon_sym_uptr] = ACTIONS(1427), + [anon_sym_isz] = ACTIONS(1427), + [anon_sym_usz] = ACTIONS(1427), + [anon_sym_anyfault] = ACTIONS(1427), + [anon_sym_any] = ACTIONS(1427), + [anon_sym_DOLLARtypeof] = ACTIONS(1427), + [anon_sym_DOLLARtypefrom] = ACTIONS(1427), + [anon_sym_DOLLARvatype] = ACTIONS(1427), + [anon_sym_DOLLARevaltype] = ACTIONS(1427), + [sym_real_literal] = ACTIONS(1429), }, [443] = { [sym_line_comment] = STATE(443), [sym_doc_comment] = STATE(443), [sym_block_comment] = STATE(443), - [sym_ident] = ACTIONS(1572), - [sym_integer_literal] = ACTIONS(1574), - [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_DQUOTE] = ACTIONS(1574), - [anon_sym_BQUOTE] = ACTIONS(1574), - [sym_bytes_literal] = ACTIONS(1574), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1572), - [sym_at_ident] = ACTIONS(1574), - [sym_hash_ident] = ACTIONS(1574), - [sym_type_ident] = ACTIONS(1574), - [sym_ct_type_ident] = ACTIONS(1574), - [sym_const_ident] = ACTIONS(1572), - [sym_builtin] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1574), - [anon_sym_AMP] = ACTIONS(1572), - [anon_sym_static] = ACTIONS(1572), - [anon_sym_tlocal] = ACTIONS(1572), - [anon_sym_SEMI] = ACTIONS(1574), - [anon_sym_fn] = ACTIONS(1572), - [anon_sym_LBRACE] = ACTIONS(1572), - [anon_sym_RBRACE] = ACTIONS(1574), - [anon_sym_const] = ACTIONS(1572), - [anon_sym_var] = ACTIONS(1572), - [anon_sym_return] = ACTIONS(1572), - [anon_sym_continue] = ACTIONS(1572), - [anon_sym_break] = ACTIONS(1572), - [anon_sym_defer] = ACTIONS(1572), - [anon_sym_assert] = ACTIONS(1572), - [anon_sym_case] = ACTIONS(1572), - [anon_sym_default] = ACTIONS(1572), - [anon_sym_nextcase] = ACTIONS(1572), - [anon_sym_switch] = ACTIONS(1572), - [anon_sym_AMP_AMP] = ACTIONS(1574), - [anon_sym_if] = ACTIONS(1572), - [anon_sym_for] = ACTIONS(1572), - [anon_sym_foreach] = ACTIONS(1572), - [anon_sym_foreach_r] = ACTIONS(1572), - [anon_sym_while] = ACTIONS(1572), - [anon_sym_do] = ACTIONS(1572), - [anon_sym_int] = ACTIONS(1572), - [anon_sym_PLUS] = ACTIONS(1572), - [anon_sym_DASH] = ACTIONS(1572), - [anon_sym_STAR] = ACTIONS(1574), - [anon_sym_asm] = ACTIONS(1572), - [anon_sym_DOLLARassert] = ACTIONS(1572), - [anon_sym_DOLLARerror] = ACTIONS(1572), - [anon_sym_DOLLARecho] = ACTIONS(1572), - [anon_sym_DOLLARif] = ACTIONS(1572), - [anon_sym_DOLLARswitch] = ACTIONS(1572), - [anon_sym_DOLLARfor] = ACTIONS(1572), - [anon_sym_DOLLARforeach] = ACTIONS(1572), - [anon_sym_DOLLARalignof] = ACTIONS(1572), - [anon_sym_DOLLARextnameof] = ACTIONS(1572), - [anon_sym_DOLLARnameof] = ACTIONS(1572), - [anon_sym_DOLLARoffsetof] = ACTIONS(1572), - [anon_sym_DOLLARqnameof] = ACTIONS(1572), - [anon_sym_DOLLARvaconst] = ACTIONS(1572), - [anon_sym_DOLLARvaarg] = ACTIONS(1572), - [anon_sym_DOLLARvaref] = ACTIONS(1572), - [anon_sym_DOLLARvaexpr] = ACTIONS(1572), - [anon_sym_true] = ACTIONS(1572), - [anon_sym_false] = ACTIONS(1572), - [anon_sym_null] = ACTIONS(1572), - [anon_sym_DOLLARvacount] = ACTIONS(1572), - [anon_sym_DOLLARappend] = ACTIONS(1572), - [anon_sym_DOLLARconcat] = ACTIONS(1572), - [anon_sym_DOLLAReval] = ACTIONS(1572), - [anon_sym_DOLLARis_const] = ACTIONS(1572), - [anon_sym_DOLLARsizeof] = ACTIONS(1572), - [anon_sym_DOLLARstringify] = ACTIONS(1572), - [anon_sym_DOLLARand] = ACTIONS(1572), - [anon_sym_DOLLARdefined] = ACTIONS(1572), - [anon_sym_DOLLARembed] = ACTIONS(1572), - [anon_sym_DOLLARor] = ACTIONS(1572), - [anon_sym_DOLLARfeature] = ACTIONS(1572), - [anon_sym_DOLLARassignable] = ACTIONS(1572), - [anon_sym_BANG] = ACTIONS(1574), - [anon_sym_TILDE] = ACTIONS(1574), - [anon_sym_PLUS_PLUS] = ACTIONS(1574), - [anon_sym_DASH_DASH] = ACTIONS(1574), - [anon_sym_typeid] = ACTIONS(1572), - [anon_sym_LBRACE_PIPE] = ACTIONS(1574), - [anon_sym_PIPE_RBRACE] = ACTIONS(1574), - [anon_sym_void] = ACTIONS(1572), - [anon_sym_bool] = ACTIONS(1572), - [anon_sym_char] = ACTIONS(1572), - [anon_sym_ichar] = ACTIONS(1572), - [anon_sym_short] = ACTIONS(1572), - [anon_sym_ushort] = ACTIONS(1572), - [anon_sym_uint] = ACTIONS(1572), - [anon_sym_long] = ACTIONS(1572), - [anon_sym_ulong] = ACTIONS(1572), - [anon_sym_int128] = ACTIONS(1572), - [anon_sym_uint128] = ACTIONS(1572), - [anon_sym_float] = ACTIONS(1572), - [anon_sym_double] = ACTIONS(1572), - [anon_sym_float16] = ACTIONS(1572), - [anon_sym_bfloat16] = ACTIONS(1572), - [anon_sym_float128] = ACTIONS(1572), - [anon_sym_iptr] = ACTIONS(1572), - [anon_sym_uptr] = ACTIONS(1572), - [anon_sym_isz] = ACTIONS(1572), - [anon_sym_usz] = ACTIONS(1572), - [anon_sym_anyfault] = ACTIONS(1572), - [anon_sym_any] = ACTIONS(1572), - [anon_sym_DOLLARtypeof] = ACTIONS(1572), - [anon_sym_DOLLARtypefrom] = ACTIONS(1572), - [anon_sym_DOLLARvatype] = ACTIONS(1572), - [anon_sym_DOLLARevaltype] = ACTIONS(1572), - [sym_real_literal] = ACTIONS(1574), + [sym_ident] = ACTIONS(1581), + [sym_integer_literal] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1583), + [anon_sym_DQUOTE] = ACTIONS(1583), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_bytes_literal] = ACTIONS(1583), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1581), + [sym_at_ident] = ACTIONS(1583), + [sym_hash_ident] = ACTIONS(1583), + [sym_type_ident] = ACTIONS(1583), + [sym_ct_type_ident] = ACTIONS(1583), + [sym_const_ident] = ACTIONS(1581), + [sym_builtin] = ACTIONS(1583), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_AMP] = ACTIONS(1581), + [anon_sym_static] = ACTIONS(1581), + [anon_sym_tlocal] = ACTIONS(1581), + [anon_sym_SEMI] = ACTIONS(1583), + [anon_sym_fn] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_const] = ACTIONS(1581), + [anon_sym_var] = ACTIONS(1581), + [anon_sym_return] = ACTIONS(1581), + [anon_sym_continue] = ACTIONS(1581), + [anon_sym_break] = ACTIONS(1581), + [anon_sym_defer] = ACTIONS(1581), + [anon_sym_assert] = ACTIONS(1581), + [anon_sym_nextcase] = ACTIONS(1581), + [anon_sym_switch] = ACTIONS(1581), + [anon_sym_AMP_AMP] = ACTIONS(1583), + [anon_sym_if] = ACTIONS(1581), + [anon_sym_for] = ACTIONS(1581), + [anon_sym_foreach] = ACTIONS(1581), + [anon_sym_foreach_r] = ACTIONS(1581), + [anon_sym_while] = ACTIONS(1581), + [anon_sym_do] = ACTIONS(1581), + [anon_sym_int] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1581), + [anon_sym_DASH] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1583), + [anon_sym_asm] = ACTIONS(1581), + [anon_sym_DOLLARassert] = ACTIONS(1581), + [anon_sym_DOLLARerror] = ACTIONS(1581), + [anon_sym_DOLLARecho] = ACTIONS(1581), + [anon_sym_DOLLARif] = ACTIONS(1581), + [anon_sym_DOLLARcase] = ACTIONS(1581), + [anon_sym_DOLLARdefault] = ACTIONS(1581), + [anon_sym_DOLLARswitch] = ACTIONS(1581), + [anon_sym_DOLLARendswitch] = ACTIONS(1581), + [anon_sym_DOLLARfor] = ACTIONS(1581), + [anon_sym_DOLLARforeach] = ACTIONS(1581), + [anon_sym_DOLLARalignof] = ACTIONS(1581), + [anon_sym_DOLLARextnameof] = ACTIONS(1581), + [anon_sym_DOLLARnameof] = ACTIONS(1581), + [anon_sym_DOLLARoffsetof] = ACTIONS(1581), + [anon_sym_DOLLARqnameof] = ACTIONS(1581), + [anon_sym_DOLLARvaconst] = ACTIONS(1581), + [anon_sym_DOLLARvaarg] = ACTIONS(1581), + [anon_sym_DOLLARvaref] = ACTIONS(1581), + [anon_sym_DOLLARvaexpr] = ACTIONS(1581), + [anon_sym_true] = ACTIONS(1581), + [anon_sym_false] = ACTIONS(1581), + [anon_sym_null] = ACTIONS(1581), + [anon_sym_DOLLARvacount] = ACTIONS(1581), + [anon_sym_DOLLARappend] = ACTIONS(1581), + [anon_sym_DOLLARconcat] = ACTIONS(1581), + [anon_sym_DOLLAReval] = ACTIONS(1581), + [anon_sym_DOLLARis_const] = ACTIONS(1581), + [anon_sym_DOLLARsizeof] = ACTIONS(1581), + [anon_sym_DOLLARstringify] = ACTIONS(1581), + [anon_sym_DOLLARand] = ACTIONS(1581), + [anon_sym_DOLLARdefined] = ACTIONS(1581), + [anon_sym_DOLLARembed] = ACTIONS(1581), + [anon_sym_DOLLARor] = ACTIONS(1581), + [anon_sym_DOLLARfeature] = ACTIONS(1581), + [anon_sym_DOLLARassignable] = ACTIONS(1581), + [anon_sym_BANG] = ACTIONS(1583), + [anon_sym_TILDE] = ACTIONS(1583), + [anon_sym_PLUS_PLUS] = ACTIONS(1583), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [anon_sym_typeid] = ACTIONS(1581), + [anon_sym_LBRACE_PIPE] = ACTIONS(1583), + [anon_sym_void] = ACTIONS(1581), + [anon_sym_bool] = ACTIONS(1581), + [anon_sym_char] = ACTIONS(1581), + [anon_sym_ichar] = ACTIONS(1581), + [anon_sym_short] = ACTIONS(1581), + [anon_sym_ushort] = ACTIONS(1581), + [anon_sym_uint] = ACTIONS(1581), + [anon_sym_long] = ACTIONS(1581), + [anon_sym_ulong] = ACTIONS(1581), + [anon_sym_int128] = ACTIONS(1581), + [anon_sym_uint128] = ACTIONS(1581), + [anon_sym_float] = ACTIONS(1581), + [anon_sym_double] = ACTIONS(1581), + [anon_sym_float16] = ACTIONS(1581), + [anon_sym_bfloat16] = ACTIONS(1581), + [anon_sym_float128] = ACTIONS(1581), + [anon_sym_iptr] = ACTIONS(1581), + [anon_sym_uptr] = ACTIONS(1581), + [anon_sym_isz] = ACTIONS(1581), + [anon_sym_usz] = ACTIONS(1581), + [anon_sym_anyfault] = ACTIONS(1581), + [anon_sym_any] = ACTIONS(1581), + [anon_sym_DOLLARtypeof] = ACTIONS(1581), + [anon_sym_DOLLARtypefrom] = ACTIONS(1581), + [anon_sym_DOLLARvatype] = ACTIONS(1581), + [anon_sym_DOLLARevaltype] = ACTIONS(1581), + [sym_real_literal] = ACTIONS(1583), }, [444] = { [sym_line_comment] = STATE(444), [sym_doc_comment] = STATE(444), [sym_block_comment] = STATE(444), - [sym_ident] = ACTIONS(1576), - [sym_integer_literal] = ACTIONS(1578), - [anon_sym_SQUOTE] = ACTIONS(1578), - [anon_sym_DQUOTE] = ACTIONS(1578), - [anon_sym_BQUOTE] = ACTIONS(1578), - [sym_bytes_literal] = ACTIONS(1578), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1576), - [sym_at_ident] = ACTIONS(1578), - [sym_hash_ident] = ACTIONS(1578), - [sym_type_ident] = ACTIONS(1578), - [sym_ct_type_ident] = ACTIONS(1578), - [sym_const_ident] = ACTIONS(1576), - [sym_builtin] = ACTIONS(1578), - [anon_sym_LPAREN] = ACTIONS(1578), - [anon_sym_AMP] = ACTIONS(1576), - [anon_sym_static] = ACTIONS(1576), - [anon_sym_tlocal] = ACTIONS(1576), - [anon_sym_SEMI] = ACTIONS(1578), - [anon_sym_fn] = ACTIONS(1576), - [anon_sym_LBRACE] = ACTIONS(1576), - [anon_sym_RBRACE] = ACTIONS(1578), - [anon_sym_const] = ACTIONS(1576), - [anon_sym_var] = ACTIONS(1576), - [anon_sym_return] = ACTIONS(1576), - [anon_sym_continue] = ACTIONS(1576), - [anon_sym_break] = ACTIONS(1576), - [anon_sym_defer] = ACTIONS(1576), - [anon_sym_assert] = ACTIONS(1576), - [anon_sym_case] = ACTIONS(1576), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_nextcase] = ACTIONS(1576), - [anon_sym_switch] = ACTIONS(1576), - [anon_sym_AMP_AMP] = ACTIONS(1578), - [anon_sym_if] = ACTIONS(1576), - [anon_sym_for] = ACTIONS(1576), - [anon_sym_foreach] = ACTIONS(1576), - [anon_sym_foreach_r] = ACTIONS(1576), - [anon_sym_while] = ACTIONS(1576), - [anon_sym_do] = ACTIONS(1576), - [anon_sym_int] = ACTIONS(1576), - [anon_sym_PLUS] = ACTIONS(1576), - [anon_sym_DASH] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(1578), - [anon_sym_asm] = ACTIONS(1576), - [anon_sym_DOLLARassert] = ACTIONS(1576), - [anon_sym_DOLLARerror] = ACTIONS(1576), - [anon_sym_DOLLARecho] = ACTIONS(1576), - [anon_sym_DOLLARif] = ACTIONS(1576), - [anon_sym_DOLLARswitch] = ACTIONS(1576), - [anon_sym_DOLLARfor] = ACTIONS(1576), - [anon_sym_DOLLARforeach] = ACTIONS(1576), - [anon_sym_DOLLARalignof] = ACTIONS(1576), - [anon_sym_DOLLARextnameof] = ACTIONS(1576), - [anon_sym_DOLLARnameof] = ACTIONS(1576), - [anon_sym_DOLLARoffsetof] = ACTIONS(1576), - [anon_sym_DOLLARqnameof] = ACTIONS(1576), - [anon_sym_DOLLARvaconst] = ACTIONS(1576), - [anon_sym_DOLLARvaarg] = ACTIONS(1576), - [anon_sym_DOLLARvaref] = ACTIONS(1576), - [anon_sym_DOLLARvaexpr] = ACTIONS(1576), - [anon_sym_true] = ACTIONS(1576), - [anon_sym_false] = ACTIONS(1576), - [anon_sym_null] = ACTIONS(1576), - [anon_sym_DOLLARvacount] = ACTIONS(1576), - [anon_sym_DOLLARappend] = ACTIONS(1576), - [anon_sym_DOLLARconcat] = ACTIONS(1576), - [anon_sym_DOLLAReval] = ACTIONS(1576), - [anon_sym_DOLLARis_const] = ACTIONS(1576), - [anon_sym_DOLLARsizeof] = ACTIONS(1576), - [anon_sym_DOLLARstringify] = ACTIONS(1576), - [anon_sym_DOLLARand] = ACTIONS(1576), - [anon_sym_DOLLARdefined] = ACTIONS(1576), - [anon_sym_DOLLARembed] = ACTIONS(1576), - [anon_sym_DOLLARor] = ACTIONS(1576), - [anon_sym_DOLLARfeature] = ACTIONS(1576), - [anon_sym_DOLLARassignable] = ACTIONS(1576), - [anon_sym_BANG] = ACTIONS(1578), - [anon_sym_TILDE] = ACTIONS(1578), - [anon_sym_PLUS_PLUS] = ACTIONS(1578), - [anon_sym_DASH_DASH] = ACTIONS(1578), - [anon_sym_typeid] = ACTIONS(1576), - [anon_sym_LBRACE_PIPE] = ACTIONS(1578), - [anon_sym_PIPE_RBRACE] = ACTIONS(1578), - [anon_sym_void] = ACTIONS(1576), - [anon_sym_bool] = ACTIONS(1576), - [anon_sym_char] = ACTIONS(1576), - [anon_sym_ichar] = ACTIONS(1576), - [anon_sym_short] = ACTIONS(1576), - [anon_sym_ushort] = ACTIONS(1576), - [anon_sym_uint] = ACTIONS(1576), - [anon_sym_long] = ACTIONS(1576), - [anon_sym_ulong] = ACTIONS(1576), - [anon_sym_int128] = ACTIONS(1576), - [anon_sym_uint128] = ACTIONS(1576), - [anon_sym_float] = ACTIONS(1576), - [anon_sym_double] = ACTIONS(1576), - [anon_sym_float16] = ACTIONS(1576), - [anon_sym_bfloat16] = ACTIONS(1576), - [anon_sym_float128] = ACTIONS(1576), - [anon_sym_iptr] = ACTIONS(1576), - [anon_sym_uptr] = ACTIONS(1576), - [anon_sym_isz] = ACTIONS(1576), - [anon_sym_usz] = ACTIONS(1576), - [anon_sym_anyfault] = ACTIONS(1576), - [anon_sym_any] = ACTIONS(1576), - [anon_sym_DOLLARtypeof] = ACTIONS(1576), - [anon_sym_DOLLARtypefrom] = ACTIONS(1576), - [anon_sym_DOLLARvatype] = ACTIONS(1576), - [anon_sym_DOLLARevaltype] = ACTIONS(1576), - [sym_real_literal] = ACTIONS(1578), + [sym_ident] = ACTIONS(1449), + [sym_integer_literal] = ACTIONS(1451), + [anon_sym_SQUOTE] = ACTIONS(1451), + [anon_sym_DQUOTE] = ACTIONS(1451), + [anon_sym_BQUOTE] = ACTIONS(1451), + [sym_bytes_literal] = ACTIONS(1451), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1449), + [sym_at_ident] = ACTIONS(1451), + [sym_hash_ident] = ACTIONS(1451), + [sym_type_ident] = ACTIONS(1451), + [sym_ct_type_ident] = ACTIONS(1451), + [sym_const_ident] = ACTIONS(1449), + [sym_builtin] = ACTIONS(1451), + [anon_sym_LPAREN] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_static] = ACTIONS(1449), + [anon_sym_tlocal] = ACTIONS(1449), + [anon_sym_SEMI] = ACTIONS(1451), + [anon_sym_fn] = ACTIONS(1449), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_const] = ACTIONS(1449), + [anon_sym_var] = ACTIONS(1449), + [anon_sym_return] = ACTIONS(1449), + [anon_sym_continue] = ACTIONS(1449), + [anon_sym_break] = ACTIONS(1449), + [anon_sym_defer] = ACTIONS(1449), + [anon_sym_assert] = ACTIONS(1449), + [anon_sym_nextcase] = ACTIONS(1449), + [anon_sym_switch] = ACTIONS(1449), + [anon_sym_AMP_AMP] = ACTIONS(1451), + [anon_sym_if] = ACTIONS(1449), + [anon_sym_for] = ACTIONS(1449), + [anon_sym_foreach] = ACTIONS(1449), + [anon_sym_foreach_r] = ACTIONS(1449), + [anon_sym_while] = ACTIONS(1449), + [anon_sym_do] = ACTIONS(1449), + [anon_sym_int] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1449), + [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_STAR] = ACTIONS(1451), + [anon_sym_asm] = ACTIONS(1449), + [anon_sym_DOLLARassert] = ACTIONS(1449), + [anon_sym_DOLLARerror] = ACTIONS(1449), + [anon_sym_DOLLARecho] = ACTIONS(1449), + [anon_sym_DOLLARif] = ACTIONS(1449), + [anon_sym_DOLLARcase] = ACTIONS(1449), + [anon_sym_DOLLARdefault] = ACTIONS(1449), + [anon_sym_DOLLARswitch] = ACTIONS(1449), + [anon_sym_DOLLARendswitch] = ACTIONS(1449), + [anon_sym_DOLLARfor] = ACTIONS(1449), + [anon_sym_DOLLARforeach] = ACTIONS(1449), + [anon_sym_DOLLARalignof] = ACTIONS(1449), + [anon_sym_DOLLARextnameof] = ACTIONS(1449), + [anon_sym_DOLLARnameof] = ACTIONS(1449), + [anon_sym_DOLLARoffsetof] = ACTIONS(1449), + [anon_sym_DOLLARqnameof] = ACTIONS(1449), + [anon_sym_DOLLARvaconst] = ACTIONS(1449), + [anon_sym_DOLLARvaarg] = ACTIONS(1449), + [anon_sym_DOLLARvaref] = ACTIONS(1449), + [anon_sym_DOLLARvaexpr] = ACTIONS(1449), + [anon_sym_true] = ACTIONS(1449), + [anon_sym_false] = ACTIONS(1449), + [anon_sym_null] = ACTIONS(1449), + [anon_sym_DOLLARvacount] = ACTIONS(1449), + [anon_sym_DOLLARappend] = ACTIONS(1449), + [anon_sym_DOLLARconcat] = ACTIONS(1449), + [anon_sym_DOLLAReval] = ACTIONS(1449), + [anon_sym_DOLLARis_const] = ACTIONS(1449), + [anon_sym_DOLLARsizeof] = ACTIONS(1449), + [anon_sym_DOLLARstringify] = ACTIONS(1449), + [anon_sym_DOLLARand] = ACTIONS(1449), + [anon_sym_DOLLARdefined] = ACTIONS(1449), + [anon_sym_DOLLARembed] = ACTIONS(1449), + [anon_sym_DOLLARor] = ACTIONS(1449), + [anon_sym_DOLLARfeature] = ACTIONS(1449), + [anon_sym_DOLLARassignable] = ACTIONS(1449), + [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_TILDE] = ACTIONS(1451), + [anon_sym_PLUS_PLUS] = ACTIONS(1451), + [anon_sym_DASH_DASH] = ACTIONS(1451), + [anon_sym_typeid] = ACTIONS(1449), + [anon_sym_LBRACE_PIPE] = ACTIONS(1451), + [anon_sym_void] = ACTIONS(1449), + [anon_sym_bool] = ACTIONS(1449), + [anon_sym_char] = ACTIONS(1449), + [anon_sym_ichar] = ACTIONS(1449), + [anon_sym_short] = ACTIONS(1449), + [anon_sym_ushort] = ACTIONS(1449), + [anon_sym_uint] = ACTIONS(1449), + [anon_sym_long] = ACTIONS(1449), + [anon_sym_ulong] = ACTIONS(1449), + [anon_sym_int128] = ACTIONS(1449), + [anon_sym_uint128] = ACTIONS(1449), + [anon_sym_float] = ACTIONS(1449), + [anon_sym_double] = ACTIONS(1449), + [anon_sym_float16] = ACTIONS(1449), + [anon_sym_bfloat16] = ACTIONS(1449), + [anon_sym_float128] = ACTIONS(1449), + [anon_sym_iptr] = ACTIONS(1449), + [anon_sym_uptr] = ACTIONS(1449), + [anon_sym_isz] = ACTIONS(1449), + [anon_sym_usz] = ACTIONS(1449), + [anon_sym_anyfault] = ACTIONS(1449), + [anon_sym_any] = ACTIONS(1449), + [anon_sym_DOLLARtypeof] = ACTIONS(1449), + [anon_sym_DOLLARtypefrom] = ACTIONS(1449), + [anon_sym_DOLLARvatype] = ACTIONS(1449), + [anon_sym_DOLLARevaltype] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1451), }, [445] = { [sym_line_comment] = STATE(445), [sym_doc_comment] = STATE(445), [sym_block_comment] = STATE(445), - [sym_ident] = ACTIONS(1580), - [sym_integer_literal] = ACTIONS(1582), - [anon_sym_SQUOTE] = ACTIONS(1582), - [anon_sym_DQUOTE] = ACTIONS(1582), - [anon_sym_BQUOTE] = ACTIONS(1582), - [sym_bytes_literal] = ACTIONS(1582), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1580), - [sym_at_ident] = ACTIONS(1582), - [sym_hash_ident] = ACTIONS(1582), - [sym_type_ident] = ACTIONS(1582), - [sym_ct_type_ident] = ACTIONS(1582), - [sym_const_ident] = ACTIONS(1580), - [sym_builtin] = ACTIONS(1582), - [anon_sym_LPAREN] = ACTIONS(1582), - [anon_sym_AMP] = ACTIONS(1580), - [anon_sym_static] = ACTIONS(1580), - [anon_sym_tlocal] = ACTIONS(1580), - [anon_sym_SEMI] = ACTIONS(1582), - [anon_sym_fn] = ACTIONS(1580), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_RBRACE] = ACTIONS(1582), - [anon_sym_const] = ACTIONS(1580), - [anon_sym_var] = ACTIONS(1580), - [anon_sym_return] = ACTIONS(1580), - [anon_sym_continue] = ACTIONS(1580), - [anon_sym_break] = ACTIONS(1580), - [anon_sym_defer] = ACTIONS(1580), - [anon_sym_assert] = ACTIONS(1580), - [anon_sym_case] = ACTIONS(1580), - [anon_sym_default] = ACTIONS(1580), - [anon_sym_nextcase] = ACTIONS(1580), - [anon_sym_switch] = ACTIONS(1580), - [anon_sym_AMP_AMP] = ACTIONS(1582), - [anon_sym_if] = ACTIONS(1580), - [anon_sym_for] = ACTIONS(1580), - [anon_sym_foreach] = ACTIONS(1580), - [anon_sym_foreach_r] = ACTIONS(1580), - [anon_sym_while] = ACTIONS(1580), - [anon_sym_do] = ACTIONS(1580), - [anon_sym_int] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1580), - [anon_sym_DASH] = ACTIONS(1580), - [anon_sym_STAR] = ACTIONS(1582), - [anon_sym_asm] = ACTIONS(1580), - [anon_sym_DOLLARassert] = ACTIONS(1580), - [anon_sym_DOLLARerror] = ACTIONS(1580), - [anon_sym_DOLLARecho] = ACTIONS(1580), - [anon_sym_DOLLARif] = ACTIONS(1580), - [anon_sym_DOLLARswitch] = ACTIONS(1580), - [anon_sym_DOLLARfor] = ACTIONS(1580), - [anon_sym_DOLLARforeach] = ACTIONS(1580), - [anon_sym_DOLLARalignof] = ACTIONS(1580), - [anon_sym_DOLLARextnameof] = ACTIONS(1580), - [anon_sym_DOLLARnameof] = ACTIONS(1580), - [anon_sym_DOLLARoffsetof] = ACTIONS(1580), - [anon_sym_DOLLARqnameof] = ACTIONS(1580), - [anon_sym_DOLLARvaconst] = ACTIONS(1580), - [anon_sym_DOLLARvaarg] = ACTIONS(1580), - [anon_sym_DOLLARvaref] = ACTIONS(1580), - [anon_sym_DOLLARvaexpr] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1580), - [anon_sym_false] = ACTIONS(1580), - [anon_sym_null] = ACTIONS(1580), - [anon_sym_DOLLARvacount] = ACTIONS(1580), - [anon_sym_DOLLARappend] = ACTIONS(1580), - [anon_sym_DOLLARconcat] = ACTIONS(1580), - [anon_sym_DOLLAReval] = ACTIONS(1580), - [anon_sym_DOLLARis_const] = ACTIONS(1580), - [anon_sym_DOLLARsizeof] = ACTIONS(1580), - [anon_sym_DOLLARstringify] = ACTIONS(1580), - [anon_sym_DOLLARand] = ACTIONS(1580), - [anon_sym_DOLLARdefined] = ACTIONS(1580), - [anon_sym_DOLLARembed] = ACTIONS(1580), - [anon_sym_DOLLARor] = ACTIONS(1580), - [anon_sym_DOLLARfeature] = ACTIONS(1580), - [anon_sym_DOLLARassignable] = ACTIONS(1580), - [anon_sym_BANG] = ACTIONS(1582), - [anon_sym_TILDE] = ACTIONS(1582), - [anon_sym_PLUS_PLUS] = ACTIONS(1582), - [anon_sym_DASH_DASH] = ACTIONS(1582), - [anon_sym_typeid] = ACTIONS(1580), - [anon_sym_LBRACE_PIPE] = ACTIONS(1582), - [anon_sym_PIPE_RBRACE] = ACTIONS(1582), - [anon_sym_void] = ACTIONS(1580), - [anon_sym_bool] = ACTIONS(1580), - [anon_sym_char] = ACTIONS(1580), - [anon_sym_ichar] = ACTIONS(1580), - [anon_sym_short] = ACTIONS(1580), - [anon_sym_ushort] = ACTIONS(1580), - [anon_sym_uint] = ACTIONS(1580), - [anon_sym_long] = ACTIONS(1580), - [anon_sym_ulong] = ACTIONS(1580), - [anon_sym_int128] = ACTIONS(1580), - [anon_sym_uint128] = ACTIONS(1580), - [anon_sym_float] = ACTIONS(1580), - [anon_sym_double] = ACTIONS(1580), - [anon_sym_float16] = ACTIONS(1580), - [anon_sym_bfloat16] = ACTIONS(1580), - [anon_sym_float128] = ACTIONS(1580), - [anon_sym_iptr] = ACTIONS(1580), - [anon_sym_uptr] = ACTIONS(1580), - [anon_sym_isz] = ACTIONS(1580), - [anon_sym_usz] = ACTIONS(1580), - [anon_sym_anyfault] = ACTIONS(1580), - [anon_sym_any] = ACTIONS(1580), - [anon_sym_DOLLARtypeof] = ACTIONS(1580), - [anon_sym_DOLLARtypefrom] = ACTIONS(1580), - [anon_sym_DOLLARvatype] = ACTIONS(1580), - [anon_sym_DOLLARevaltype] = ACTIONS(1580), - [sym_real_literal] = ACTIONS(1582), + [sym_ident] = ACTIONS(1453), + [sym_integer_literal] = ACTIONS(1455), + [anon_sym_SQUOTE] = ACTIONS(1455), + [anon_sym_DQUOTE] = ACTIONS(1455), + [anon_sym_BQUOTE] = ACTIONS(1455), + [sym_bytes_literal] = ACTIONS(1455), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1453), + [sym_at_ident] = ACTIONS(1455), + [sym_hash_ident] = ACTIONS(1455), + [sym_type_ident] = ACTIONS(1455), + [sym_ct_type_ident] = ACTIONS(1455), + [sym_const_ident] = ACTIONS(1453), + [sym_builtin] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_AMP] = ACTIONS(1453), + [anon_sym_static] = ACTIONS(1453), + [anon_sym_tlocal] = ACTIONS(1453), + [anon_sym_SEMI] = ACTIONS(1455), + [anon_sym_fn] = ACTIONS(1453), + [anon_sym_LBRACE] = ACTIONS(1453), + [anon_sym_const] = ACTIONS(1453), + [anon_sym_var] = ACTIONS(1453), + [anon_sym_return] = ACTIONS(1453), + [anon_sym_continue] = ACTIONS(1453), + [anon_sym_break] = ACTIONS(1453), + [anon_sym_defer] = ACTIONS(1453), + [anon_sym_assert] = ACTIONS(1453), + [anon_sym_nextcase] = ACTIONS(1453), + [anon_sym_switch] = ACTIONS(1453), + [anon_sym_AMP_AMP] = ACTIONS(1455), + [anon_sym_if] = ACTIONS(1453), + [anon_sym_for] = ACTIONS(1453), + [anon_sym_foreach] = ACTIONS(1453), + [anon_sym_foreach_r] = ACTIONS(1453), + [anon_sym_while] = ACTIONS(1453), + [anon_sym_do] = ACTIONS(1453), + [anon_sym_int] = ACTIONS(1453), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_STAR] = ACTIONS(1455), + [anon_sym_asm] = ACTIONS(1453), + [anon_sym_DOLLARassert] = ACTIONS(1453), + [anon_sym_DOLLARerror] = ACTIONS(1453), + [anon_sym_DOLLARecho] = ACTIONS(1453), + [anon_sym_DOLLARif] = ACTIONS(1453), + [anon_sym_DOLLARcase] = ACTIONS(1453), + [anon_sym_DOLLARdefault] = ACTIONS(1453), + [anon_sym_DOLLARswitch] = ACTIONS(1453), + [anon_sym_DOLLARendswitch] = ACTIONS(1453), + [anon_sym_DOLLARfor] = ACTIONS(1453), + [anon_sym_DOLLARforeach] = ACTIONS(1453), + [anon_sym_DOLLARalignof] = ACTIONS(1453), + [anon_sym_DOLLARextnameof] = ACTIONS(1453), + [anon_sym_DOLLARnameof] = ACTIONS(1453), + [anon_sym_DOLLARoffsetof] = ACTIONS(1453), + [anon_sym_DOLLARqnameof] = ACTIONS(1453), + [anon_sym_DOLLARvaconst] = ACTIONS(1453), + [anon_sym_DOLLARvaarg] = ACTIONS(1453), + [anon_sym_DOLLARvaref] = ACTIONS(1453), + [anon_sym_DOLLARvaexpr] = ACTIONS(1453), + [anon_sym_true] = ACTIONS(1453), + [anon_sym_false] = ACTIONS(1453), + [anon_sym_null] = ACTIONS(1453), + [anon_sym_DOLLARvacount] = ACTIONS(1453), + [anon_sym_DOLLARappend] = ACTIONS(1453), + [anon_sym_DOLLARconcat] = ACTIONS(1453), + [anon_sym_DOLLAReval] = ACTIONS(1453), + [anon_sym_DOLLARis_const] = ACTIONS(1453), + [anon_sym_DOLLARsizeof] = ACTIONS(1453), + [anon_sym_DOLLARstringify] = ACTIONS(1453), + [anon_sym_DOLLARand] = ACTIONS(1453), + [anon_sym_DOLLARdefined] = ACTIONS(1453), + [anon_sym_DOLLARembed] = ACTIONS(1453), + [anon_sym_DOLLARor] = ACTIONS(1453), + [anon_sym_DOLLARfeature] = ACTIONS(1453), + [anon_sym_DOLLARassignable] = ACTIONS(1453), + [anon_sym_BANG] = ACTIONS(1455), + [anon_sym_TILDE] = ACTIONS(1455), + [anon_sym_PLUS_PLUS] = ACTIONS(1455), + [anon_sym_DASH_DASH] = ACTIONS(1455), + [anon_sym_typeid] = ACTIONS(1453), + [anon_sym_LBRACE_PIPE] = ACTIONS(1455), + [anon_sym_void] = ACTIONS(1453), + [anon_sym_bool] = ACTIONS(1453), + [anon_sym_char] = ACTIONS(1453), + [anon_sym_ichar] = ACTIONS(1453), + [anon_sym_short] = ACTIONS(1453), + [anon_sym_ushort] = ACTIONS(1453), + [anon_sym_uint] = ACTIONS(1453), + [anon_sym_long] = ACTIONS(1453), + [anon_sym_ulong] = ACTIONS(1453), + [anon_sym_int128] = ACTIONS(1453), + [anon_sym_uint128] = ACTIONS(1453), + [anon_sym_float] = ACTIONS(1453), + [anon_sym_double] = ACTIONS(1453), + [anon_sym_float16] = ACTIONS(1453), + [anon_sym_bfloat16] = ACTIONS(1453), + [anon_sym_float128] = ACTIONS(1453), + [anon_sym_iptr] = ACTIONS(1453), + [anon_sym_uptr] = ACTIONS(1453), + [anon_sym_isz] = ACTIONS(1453), + [anon_sym_usz] = ACTIONS(1453), + [anon_sym_anyfault] = ACTIONS(1453), + [anon_sym_any] = ACTIONS(1453), + [anon_sym_DOLLARtypeof] = ACTIONS(1453), + [anon_sym_DOLLARtypefrom] = ACTIONS(1453), + [anon_sym_DOLLARvatype] = ACTIONS(1453), + [anon_sym_DOLLARevaltype] = ACTIONS(1453), + [sym_real_literal] = ACTIONS(1455), }, [446] = { [sym_line_comment] = STATE(446), [sym_doc_comment] = STATE(446), [sym_block_comment] = STATE(446), - [sym_ident] = ACTIONS(1584), - [sym_integer_literal] = ACTIONS(1586), - [anon_sym_SQUOTE] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1586), - [anon_sym_BQUOTE] = ACTIONS(1586), - [sym_bytes_literal] = ACTIONS(1586), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1584), - [sym_at_ident] = ACTIONS(1586), - [sym_hash_ident] = ACTIONS(1586), - [sym_type_ident] = ACTIONS(1586), - [sym_ct_type_ident] = ACTIONS(1586), - [sym_const_ident] = ACTIONS(1584), - [sym_builtin] = ACTIONS(1586), - [anon_sym_LPAREN] = ACTIONS(1586), - [anon_sym_AMP] = ACTIONS(1584), - [anon_sym_static] = ACTIONS(1584), - [anon_sym_tlocal] = ACTIONS(1584), - [anon_sym_SEMI] = ACTIONS(1586), - [anon_sym_fn] = ACTIONS(1584), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1586), - [anon_sym_const] = ACTIONS(1584), - [anon_sym_var] = ACTIONS(1584), - [anon_sym_return] = ACTIONS(1584), - [anon_sym_continue] = ACTIONS(1584), - [anon_sym_break] = ACTIONS(1584), - [anon_sym_defer] = ACTIONS(1584), - [anon_sym_assert] = ACTIONS(1584), - [anon_sym_case] = ACTIONS(1584), - [anon_sym_default] = ACTIONS(1584), - [anon_sym_nextcase] = ACTIONS(1584), - [anon_sym_switch] = ACTIONS(1584), - [anon_sym_AMP_AMP] = ACTIONS(1586), - [anon_sym_if] = ACTIONS(1584), - [anon_sym_for] = ACTIONS(1584), - [anon_sym_foreach] = ACTIONS(1584), - [anon_sym_foreach_r] = ACTIONS(1584), - [anon_sym_while] = ACTIONS(1584), - [anon_sym_do] = ACTIONS(1584), - [anon_sym_int] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1584), - [anon_sym_DASH] = ACTIONS(1584), - [anon_sym_STAR] = ACTIONS(1586), - [anon_sym_asm] = ACTIONS(1584), - [anon_sym_DOLLARassert] = ACTIONS(1584), - [anon_sym_DOLLARerror] = ACTIONS(1584), - [anon_sym_DOLLARecho] = ACTIONS(1584), - [anon_sym_DOLLARif] = ACTIONS(1584), - [anon_sym_DOLLARswitch] = ACTIONS(1584), - [anon_sym_DOLLARfor] = ACTIONS(1584), - [anon_sym_DOLLARforeach] = ACTIONS(1584), - [anon_sym_DOLLARalignof] = ACTIONS(1584), - [anon_sym_DOLLARextnameof] = ACTIONS(1584), - [anon_sym_DOLLARnameof] = ACTIONS(1584), - [anon_sym_DOLLARoffsetof] = ACTIONS(1584), - [anon_sym_DOLLARqnameof] = ACTIONS(1584), - [anon_sym_DOLLARvaconst] = ACTIONS(1584), - [anon_sym_DOLLARvaarg] = ACTIONS(1584), - [anon_sym_DOLLARvaref] = ACTIONS(1584), - [anon_sym_DOLLARvaexpr] = ACTIONS(1584), - [anon_sym_true] = ACTIONS(1584), - [anon_sym_false] = ACTIONS(1584), - [anon_sym_null] = ACTIONS(1584), - [anon_sym_DOLLARvacount] = ACTIONS(1584), - [anon_sym_DOLLARappend] = ACTIONS(1584), - [anon_sym_DOLLARconcat] = ACTIONS(1584), - [anon_sym_DOLLAReval] = ACTIONS(1584), - [anon_sym_DOLLARis_const] = ACTIONS(1584), - [anon_sym_DOLLARsizeof] = ACTIONS(1584), - [anon_sym_DOLLARstringify] = ACTIONS(1584), - [anon_sym_DOLLARand] = ACTIONS(1584), - [anon_sym_DOLLARdefined] = ACTIONS(1584), - [anon_sym_DOLLARembed] = ACTIONS(1584), - [anon_sym_DOLLARor] = ACTIONS(1584), - [anon_sym_DOLLARfeature] = ACTIONS(1584), - [anon_sym_DOLLARassignable] = ACTIONS(1584), - [anon_sym_BANG] = ACTIONS(1586), - [anon_sym_TILDE] = ACTIONS(1586), - [anon_sym_PLUS_PLUS] = ACTIONS(1586), - [anon_sym_DASH_DASH] = ACTIONS(1586), - [anon_sym_typeid] = ACTIONS(1584), - [anon_sym_LBRACE_PIPE] = ACTIONS(1586), - [anon_sym_PIPE_RBRACE] = ACTIONS(1586), - [anon_sym_void] = ACTIONS(1584), - [anon_sym_bool] = ACTIONS(1584), - [anon_sym_char] = ACTIONS(1584), - [anon_sym_ichar] = ACTIONS(1584), - [anon_sym_short] = ACTIONS(1584), - [anon_sym_ushort] = ACTIONS(1584), - [anon_sym_uint] = ACTIONS(1584), - [anon_sym_long] = ACTIONS(1584), - [anon_sym_ulong] = ACTIONS(1584), - [anon_sym_int128] = ACTIONS(1584), - [anon_sym_uint128] = ACTIONS(1584), - [anon_sym_float] = ACTIONS(1584), - [anon_sym_double] = ACTIONS(1584), - [anon_sym_float16] = ACTIONS(1584), - [anon_sym_bfloat16] = ACTIONS(1584), - [anon_sym_float128] = ACTIONS(1584), - [anon_sym_iptr] = ACTIONS(1584), - [anon_sym_uptr] = ACTIONS(1584), - [anon_sym_isz] = ACTIONS(1584), - [anon_sym_usz] = ACTIONS(1584), - [anon_sym_anyfault] = ACTIONS(1584), - [anon_sym_any] = ACTIONS(1584), - [anon_sym_DOLLARtypeof] = ACTIONS(1584), - [anon_sym_DOLLARtypefrom] = ACTIONS(1584), - [anon_sym_DOLLARvatype] = ACTIONS(1584), - [anon_sym_DOLLARevaltype] = ACTIONS(1584), - [sym_real_literal] = ACTIONS(1586), + [sym_ident] = ACTIONS(1465), + [sym_integer_literal] = ACTIONS(1467), + [anon_sym_SQUOTE] = ACTIONS(1467), + [anon_sym_DQUOTE] = ACTIONS(1467), + [anon_sym_BQUOTE] = ACTIONS(1467), + [sym_bytes_literal] = ACTIONS(1467), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1465), + [sym_at_ident] = ACTIONS(1467), + [sym_hash_ident] = ACTIONS(1467), + [sym_type_ident] = ACTIONS(1467), + [sym_ct_type_ident] = ACTIONS(1467), + [sym_const_ident] = ACTIONS(1465), + [sym_builtin] = ACTIONS(1467), + [anon_sym_LPAREN] = ACTIONS(1467), + [anon_sym_AMP] = ACTIONS(1465), + [anon_sym_static] = ACTIONS(1465), + [anon_sym_tlocal] = ACTIONS(1465), + [anon_sym_SEMI] = ACTIONS(1467), + [anon_sym_fn] = ACTIONS(1465), + [anon_sym_LBRACE] = ACTIONS(1465), + [anon_sym_const] = ACTIONS(1465), + [anon_sym_var] = ACTIONS(1465), + [anon_sym_return] = ACTIONS(1465), + [anon_sym_continue] = ACTIONS(1465), + [anon_sym_break] = ACTIONS(1465), + [anon_sym_defer] = ACTIONS(1465), + [anon_sym_assert] = ACTIONS(1465), + [anon_sym_nextcase] = ACTIONS(1465), + [anon_sym_switch] = ACTIONS(1465), + [anon_sym_AMP_AMP] = ACTIONS(1467), + [anon_sym_if] = ACTIONS(1465), + [anon_sym_for] = ACTIONS(1465), + [anon_sym_foreach] = ACTIONS(1465), + [anon_sym_foreach_r] = ACTIONS(1465), + [anon_sym_while] = ACTIONS(1465), + [anon_sym_do] = ACTIONS(1465), + [anon_sym_int] = ACTIONS(1465), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_STAR] = ACTIONS(1467), + [anon_sym_asm] = ACTIONS(1465), + [anon_sym_DOLLARassert] = ACTIONS(1465), + [anon_sym_DOLLARerror] = ACTIONS(1465), + [anon_sym_DOLLARecho] = ACTIONS(1465), + [anon_sym_DOLLARif] = ACTIONS(1465), + [anon_sym_DOLLARcase] = ACTIONS(1465), + [anon_sym_DOLLARdefault] = ACTIONS(1465), + [anon_sym_DOLLARswitch] = ACTIONS(1465), + [anon_sym_DOLLARendswitch] = ACTIONS(1465), + [anon_sym_DOLLARfor] = ACTIONS(1465), + [anon_sym_DOLLARforeach] = ACTIONS(1465), + [anon_sym_DOLLARalignof] = ACTIONS(1465), + [anon_sym_DOLLARextnameof] = ACTIONS(1465), + [anon_sym_DOLLARnameof] = ACTIONS(1465), + [anon_sym_DOLLARoffsetof] = ACTIONS(1465), + [anon_sym_DOLLARqnameof] = ACTIONS(1465), + [anon_sym_DOLLARvaconst] = ACTIONS(1465), + [anon_sym_DOLLARvaarg] = ACTIONS(1465), + [anon_sym_DOLLARvaref] = ACTIONS(1465), + [anon_sym_DOLLARvaexpr] = ACTIONS(1465), + [anon_sym_true] = ACTIONS(1465), + [anon_sym_false] = ACTIONS(1465), + [anon_sym_null] = ACTIONS(1465), + [anon_sym_DOLLARvacount] = ACTIONS(1465), + [anon_sym_DOLLARappend] = ACTIONS(1465), + [anon_sym_DOLLARconcat] = ACTIONS(1465), + [anon_sym_DOLLAReval] = ACTIONS(1465), + [anon_sym_DOLLARis_const] = ACTIONS(1465), + [anon_sym_DOLLARsizeof] = ACTIONS(1465), + [anon_sym_DOLLARstringify] = ACTIONS(1465), + [anon_sym_DOLLARand] = ACTIONS(1465), + [anon_sym_DOLLARdefined] = ACTIONS(1465), + [anon_sym_DOLLARembed] = ACTIONS(1465), + [anon_sym_DOLLARor] = ACTIONS(1465), + [anon_sym_DOLLARfeature] = ACTIONS(1465), + [anon_sym_DOLLARassignable] = ACTIONS(1465), + [anon_sym_BANG] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1467), + [anon_sym_PLUS_PLUS] = ACTIONS(1467), + [anon_sym_DASH_DASH] = ACTIONS(1467), + [anon_sym_typeid] = ACTIONS(1465), + [anon_sym_LBRACE_PIPE] = ACTIONS(1467), + [anon_sym_void] = ACTIONS(1465), + [anon_sym_bool] = ACTIONS(1465), + [anon_sym_char] = ACTIONS(1465), + [anon_sym_ichar] = ACTIONS(1465), + [anon_sym_short] = ACTIONS(1465), + [anon_sym_ushort] = ACTIONS(1465), + [anon_sym_uint] = ACTIONS(1465), + [anon_sym_long] = ACTIONS(1465), + [anon_sym_ulong] = ACTIONS(1465), + [anon_sym_int128] = ACTIONS(1465), + [anon_sym_uint128] = ACTIONS(1465), + [anon_sym_float] = ACTIONS(1465), + [anon_sym_double] = ACTIONS(1465), + [anon_sym_float16] = ACTIONS(1465), + [anon_sym_bfloat16] = ACTIONS(1465), + [anon_sym_float128] = ACTIONS(1465), + [anon_sym_iptr] = ACTIONS(1465), + [anon_sym_uptr] = ACTIONS(1465), + [anon_sym_isz] = ACTIONS(1465), + [anon_sym_usz] = ACTIONS(1465), + [anon_sym_anyfault] = ACTIONS(1465), + [anon_sym_any] = ACTIONS(1465), + [anon_sym_DOLLARtypeof] = ACTIONS(1465), + [anon_sym_DOLLARtypefrom] = ACTIONS(1465), + [anon_sym_DOLLARvatype] = ACTIONS(1465), + [anon_sym_DOLLARevaltype] = ACTIONS(1465), + [sym_real_literal] = ACTIONS(1467), }, [447] = { [sym_line_comment] = STATE(447), [sym_doc_comment] = STATE(447), [sym_block_comment] = STATE(447), - [sym_ident] = ACTIONS(1588), - [sym_integer_literal] = ACTIONS(1590), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_DQUOTE] = ACTIONS(1590), - [anon_sym_BQUOTE] = ACTIONS(1590), - [sym_bytes_literal] = ACTIONS(1590), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1588), - [sym_at_ident] = ACTIONS(1590), - [sym_hash_ident] = ACTIONS(1590), - [sym_type_ident] = ACTIONS(1590), - [sym_ct_type_ident] = ACTIONS(1590), - [sym_const_ident] = ACTIONS(1588), - [sym_builtin] = ACTIONS(1590), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_AMP] = ACTIONS(1588), - [anon_sym_static] = ACTIONS(1588), - [anon_sym_tlocal] = ACTIONS(1588), - [anon_sym_SEMI] = ACTIONS(1590), - [anon_sym_fn] = ACTIONS(1588), - [anon_sym_LBRACE] = ACTIONS(1588), - [anon_sym_RBRACE] = ACTIONS(1590), - [anon_sym_const] = ACTIONS(1588), - [anon_sym_var] = ACTIONS(1588), - [anon_sym_return] = ACTIONS(1588), - [anon_sym_continue] = ACTIONS(1588), - [anon_sym_break] = ACTIONS(1588), - [anon_sym_defer] = ACTIONS(1588), - [anon_sym_assert] = ACTIONS(1588), - [anon_sym_case] = ACTIONS(1588), - [anon_sym_default] = ACTIONS(1588), - [anon_sym_nextcase] = ACTIONS(1588), - [anon_sym_switch] = ACTIONS(1588), - [anon_sym_AMP_AMP] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1588), - [anon_sym_for] = ACTIONS(1588), - [anon_sym_foreach] = ACTIONS(1588), - [anon_sym_foreach_r] = ACTIONS(1588), - [anon_sym_while] = ACTIONS(1588), - [anon_sym_do] = ACTIONS(1588), - [anon_sym_int] = ACTIONS(1588), - [anon_sym_PLUS] = ACTIONS(1588), - [anon_sym_DASH] = ACTIONS(1588), - [anon_sym_STAR] = ACTIONS(1590), - [anon_sym_asm] = ACTIONS(1588), - [anon_sym_DOLLARassert] = ACTIONS(1588), - [anon_sym_DOLLARerror] = ACTIONS(1588), - [anon_sym_DOLLARecho] = ACTIONS(1588), - [anon_sym_DOLLARif] = ACTIONS(1588), - [anon_sym_DOLLARswitch] = ACTIONS(1588), - [anon_sym_DOLLARfor] = ACTIONS(1588), - [anon_sym_DOLLARforeach] = ACTIONS(1588), - [anon_sym_DOLLARalignof] = ACTIONS(1588), - [anon_sym_DOLLARextnameof] = ACTIONS(1588), - [anon_sym_DOLLARnameof] = ACTIONS(1588), - [anon_sym_DOLLARoffsetof] = ACTIONS(1588), - [anon_sym_DOLLARqnameof] = ACTIONS(1588), - [anon_sym_DOLLARvaconst] = ACTIONS(1588), - [anon_sym_DOLLARvaarg] = ACTIONS(1588), - [anon_sym_DOLLARvaref] = ACTIONS(1588), - [anon_sym_DOLLARvaexpr] = ACTIONS(1588), - [anon_sym_true] = ACTIONS(1588), - [anon_sym_false] = ACTIONS(1588), - [anon_sym_null] = ACTIONS(1588), - [anon_sym_DOLLARvacount] = ACTIONS(1588), - [anon_sym_DOLLARappend] = ACTIONS(1588), - [anon_sym_DOLLARconcat] = ACTIONS(1588), - [anon_sym_DOLLAReval] = ACTIONS(1588), - [anon_sym_DOLLARis_const] = ACTIONS(1588), - [anon_sym_DOLLARsizeof] = ACTIONS(1588), - [anon_sym_DOLLARstringify] = ACTIONS(1588), - [anon_sym_DOLLARand] = ACTIONS(1588), - [anon_sym_DOLLARdefined] = ACTIONS(1588), - [anon_sym_DOLLARembed] = ACTIONS(1588), - [anon_sym_DOLLARor] = ACTIONS(1588), - [anon_sym_DOLLARfeature] = ACTIONS(1588), - [anon_sym_DOLLARassignable] = ACTIONS(1588), - [anon_sym_BANG] = ACTIONS(1590), - [anon_sym_TILDE] = ACTIONS(1590), - [anon_sym_PLUS_PLUS] = ACTIONS(1590), - [anon_sym_DASH_DASH] = ACTIONS(1590), - [anon_sym_typeid] = ACTIONS(1588), - [anon_sym_LBRACE_PIPE] = ACTIONS(1590), - [anon_sym_PIPE_RBRACE] = ACTIONS(1590), - [anon_sym_void] = ACTIONS(1588), - [anon_sym_bool] = ACTIONS(1588), - [anon_sym_char] = ACTIONS(1588), - [anon_sym_ichar] = ACTIONS(1588), - [anon_sym_short] = ACTIONS(1588), - [anon_sym_ushort] = ACTIONS(1588), - [anon_sym_uint] = ACTIONS(1588), - [anon_sym_long] = ACTIONS(1588), - [anon_sym_ulong] = ACTIONS(1588), - [anon_sym_int128] = ACTIONS(1588), - [anon_sym_uint128] = ACTIONS(1588), - [anon_sym_float] = ACTIONS(1588), - [anon_sym_double] = ACTIONS(1588), - [anon_sym_float16] = ACTIONS(1588), - [anon_sym_bfloat16] = ACTIONS(1588), - [anon_sym_float128] = ACTIONS(1588), - [anon_sym_iptr] = ACTIONS(1588), - [anon_sym_uptr] = ACTIONS(1588), - [anon_sym_isz] = ACTIONS(1588), - [anon_sym_usz] = ACTIONS(1588), - [anon_sym_anyfault] = ACTIONS(1588), - [anon_sym_any] = ACTIONS(1588), - [anon_sym_DOLLARtypeof] = ACTIONS(1588), - [anon_sym_DOLLARtypefrom] = ACTIONS(1588), - [anon_sym_DOLLARvatype] = ACTIONS(1588), - [anon_sym_DOLLARevaltype] = ACTIONS(1588), - [sym_real_literal] = ACTIONS(1590), + [sym_ident] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1459), + [anon_sym_SQUOTE] = ACTIONS(1459), + [anon_sym_DQUOTE] = ACTIONS(1459), + [anon_sym_BQUOTE] = ACTIONS(1459), + [sym_bytes_literal] = ACTIONS(1459), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1457), + [sym_at_ident] = ACTIONS(1459), + [sym_hash_ident] = ACTIONS(1459), + [sym_type_ident] = ACTIONS(1459), + [sym_ct_type_ident] = ACTIONS(1459), + [sym_const_ident] = ACTIONS(1457), + [sym_builtin] = ACTIONS(1459), + [anon_sym_LPAREN] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_tlocal] = ACTIONS(1457), + [anon_sym_SEMI] = ACTIONS(1459), + [anon_sym_fn] = ACTIONS(1457), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_const] = ACTIONS(1457), + [anon_sym_var] = ACTIONS(1457), + [anon_sym_return] = ACTIONS(1457), + [anon_sym_continue] = ACTIONS(1457), + [anon_sym_break] = ACTIONS(1457), + [anon_sym_defer] = ACTIONS(1457), + [anon_sym_assert] = ACTIONS(1457), + [anon_sym_nextcase] = ACTIONS(1457), + [anon_sym_switch] = ACTIONS(1457), + [anon_sym_AMP_AMP] = ACTIONS(1459), + [anon_sym_if] = ACTIONS(1457), + [anon_sym_for] = ACTIONS(1457), + [anon_sym_foreach] = ACTIONS(1457), + [anon_sym_foreach_r] = ACTIONS(1457), + [anon_sym_while] = ACTIONS(1457), + [anon_sym_do] = ACTIONS(1457), + [anon_sym_int] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_asm] = ACTIONS(1457), + [anon_sym_DOLLARassert] = ACTIONS(1457), + [anon_sym_DOLLARerror] = ACTIONS(1457), + [anon_sym_DOLLARecho] = ACTIONS(1457), + [anon_sym_DOLLARif] = ACTIONS(1457), + [anon_sym_DOLLARcase] = ACTIONS(1457), + [anon_sym_DOLLARdefault] = ACTIONS(1457), + [anon_sym_DOLLARswitch] = ACTIONS(1457), + [anon_sym_DOLLARendswitch] = ACTIONS(1457), + [anon_sym_DOLLARfor] = ACTIONS(1457), + [anon_sym_DOLLARforeach] = ACTIONS(1457), + [anon_sym_DOLLARalignof] = ACTIONS(1457), + [anon_sym_DOLLARextnameof] = ACTIONS(1457), + [anon_sym_DOLLARnameof] = ACTIONS(1457), + [anon_sym_DOLLARoffsetof] = ACTIONS(1457), + [anon_sym_DOLLARqnameof] = ACTIONS(1457), + [anon_sym_DOLLARvaconst] = ACTIONS(1457), + [anon_sym_DOLLARvaarg] = ACTIONS(1457), + [anon_sym_DOLLARvaref] = ACTIONS(1457), + [anon_sym_DOLLARvaexpr] = ACTIONS(1457), + [anon_sym_true] = ACTIONS(1457), + [anon_sym_false] = ACTIONS(1457), + [anon_sym_null] = ACTIONS(1457), + [anon_sym_DOLLARvacount] = ACTIONS(1457), + [anon_sym_DOLLARappend] = ACTIONS(1457), + [anon_sym_DOLLARconcat] = ACTIONS(1457), + [anon_sym_DOLLAReval] = ACTIONS(1457), + [anon_sym_DOLLARis_const] = ACTIONS(1457), + [anon_sym_DOLLARsizeof] = ACTIONS(1457), + [anon_sym_DOLLARstringify] = ACTIONS(1457), + [anon_sym_DOLLARand] = ACTIONS(1457), + [anon_sym_DOLLARdefined] = ACTIONS(1457), + [anon_sym_DOLLARembed] = ACTIONS(1457), + [anon_sym_DOLLARor] = ACTIONS(1457), + [anon_sym_DOLLARfeature] = ACTIONS(1457), + [anon_sym_DOLLARassignable] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_TILDE] = ACTIONS(1459), + [anon_sym_PLUS_PLUS] = ACTIONS(1459), + [anon_sym_DASH_DASH] = ACTIONS(1459), + [anon_sym_typeid] = ACTIONS(1457), + [anon_sym_LBRACE_PIPE] = ACTIONS(1459), + [anon_sym_void] = ACTIONS(1457), + [anon_sym_bool] = ACTIONS(1457), + [anon_sym_char] = ACTIONS(1457), + [anon_sym_ichar] = ACTIONS(1457), + [anon_sym_short] = ACTIONS(1457), + [anon_sym_ushort] = ACTIONS(1457), + [anon_sym_uint] = ACTIONS(1457), + [anon_sym_long] = ACTIONS(1457), + [anon_sym_ulong] = ACTIONS(1457), + [anon_sym_int128] = ACTIONS(1457), + [anon_sym_uint128] = ACTIONS(1457), + [anon_sym_float] = ACTIONS(1457), + [anon_sym_double] = ACTIONS(1457), + [anon_sym_float16] = ACTIONS(1457), + [anon_sym_bfloat16] = ACTIONS(1457), + [anon_sym_float128] = ACTIONS(1457), + [anon_sym_iptr] = ACTIONS(1457), + [anon_sym_uptr] = ACTIONS(1457), + [anon_sym_isz] = ACTIONS(1457), + [anon_sym_usz] = ACTIONS(1457), + [anon_sym_anyfault] = ACTIONS(1457), + [anon_sym_any] = ACTIONS(1457), + [anon_sym_DOLLARtypeof] = ACTIONS(1457), + [anon_sym_DOLLARtypefrom] = ACTIONS(1457), + [anon_sym_DOLLARvatype] = ACTIONS(1457), + [anon_sym_DOLLARevaltype] = ACTIONS(1457), + [sym_real_literal] = ACTIONS(1459), }, [448] = { [sym_line_comment] = STATE(448), [sym_doc_comment] = STATE(448), [sym_block_comment] = STATE(448), - [sym_ident] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(1594), - [anon_sym_SQUOTE] = ACTIONS(1594), - [anon_sym_DQUOTE] = ACTIONS(1594), - [anon_sym_BQUOTE] = ACTIONS(1594), - [sym_bytes_literal] = ACTIONS(1594), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1592), - [sym_at_ident] = ACTIONS(1594), - [sym_hash_ident] = ACTIONS(1594), - [sym_type_ident] = ACTIONS(1594), - [sym_ct_type_ident] = ACTIONS(1594), - [sym_const_ident] = ACTIONS(1592), - [sym_builtin] = ACTIONS(1594), - [anon_sym_LPAREN] = ACTIONS(1594), - [anon_sym_AMP] = ACTIONS(1592), - [anon_sym_static] = ACTIONS(1592), - [anon_sym_tlocal] = ACTIONS(1592), - [anon_sym_SEMI] = ACTIONS(1594), - [anon_sym_fn] = ACTIONS(1592), - [anon_sym_LBRACE] = ACTIONS(1592), - [anon_sym_RBRACE] = ACTIONS(1594), - [anon_sym_const] = ACTIONS(1592), - [anon_sym_var] = ACTIONS(1592), - [anon_sym_return] = ACTIONS(1592), - [anon_sym_continue] = ACTIONS(1592), - [anon_sym_break] = ACTIONS(1592), - [anon_sym_defer] = ACTIONS(1592), - [anon_sym_assert] = ACTIONS(1592), - [anon_sym_case] = ACTIONS(1592), - [anon_sym_default] = ACTIONS(1592), - [anon_sym_nextcase] = ACTIONS(1592), - [anon_sym_switch] = ACTIONS(1592), - [anon_sym_AMP_AMP] = ACTIONS(1594), - [anon_sym_if] = ACTIONS(1592), - [anon_sym_for] = ACTIONS(1592), - [anon_sym_foreach] = ACTIONS(1592), - [anon_sym_foreach_r] = ACTIONS(1592), - [anon_sym_while] = ACTIONS(1592), - [anon_sym_do] = ACTIONS(1592), - [anon_sym_int] = ACTIONS(1592), - [anon_sym_PLUS] = ACTIONS(1592), - [anon_sym_DASH] = ACTIONS(1592), - [anon_sym_STAR] = ACTIONS(1594), - [anon_sym_asm] = ACTIONS(1592), - [anon_sym_DOLLARassert] = ACTIONS(1592), - [anon_sym_DOLLARerror] = ACTIONS(1592), - [anon_sym_DOLLARecho] = ACTIONS(1592), - [anon_sym_DOLLARif] = ACTIONS(1592), - [anon_sym_DOLLARswitch] = ACTIONS(1592), - [anon_sym_DOLLARfor] = ACTIONS(1592), - [anon_sym_DOLLARforeach] = ACTIONS(1592), - [anon_sym_DOLLARalignof] = ACTIONS(1592), - [anon_sym_DOLLARextnameof] = ACTIONS(1592), - [anon_sym_DOLLARnameof] = ACTIONS(1592), - [anon_sym_DOLLARoffsetof] = ACTIONS(1592), - [anon_sym_DOLLARqnameof] = ACTIONS(1592), - [anon_sym_DOLLARvaconst] = ACTIONS(1592), - [anon_sym_DOLLARvaarg] = ACTIONS(1592), - [anon_sym_DOLLARvaref] = ACTIONS(1592), - [anon_sym_DOLLARvaexpr] = ACTIONS(1592), - [anon_sym_true] = ACTIONS(1592), - [anon_sym_false] = ACTIONS(1592), - [anon_sym_null] = ACTIONS(1592), - [anon_sym_DOLLARvacount] = ACTIONS(1592), - [anon_sym_DOLLARappend] = ACTIONS(1592), - [anon_sym_DOLLARconcat] = ACTIONS(1592), - [anon_sym_DOLLAReval] = ACTIONS(1592), - [anon_sym_DOLLARis_const] = ACTIONS(1592), - [anon_sym_DOLLARsizeof] = ACTIONS(1592), - [anon_sym_DOLLARstringify] = ACTIONS(1592), - [anon_sym_DOLLARand] = ACTIONS(1592), - [anon_sym_DOLLARdefined] = ACTIONS(1592), - [anon_sym_DOLLARembed] = ACTIONS(1592), - [anon_sym_DOLLARor] = ACTIONS(1592), - [anon_sym_DOLLARfeature] = ACTIONS(1592), - [anon_sym_DOLLARassignable] = ACTIONS(1592), - [anon_sym_BANG] = ACTIONS(1594), - [anon_sym_TILDE] = ACTIONS(1594), - [anon_sym_PLUS_PLUS] = ACTIONS(1594), - [anon_sym_DASH_DASH] = ACTIONS(1594), - [anon_sym_typeid] = ACTIONS(1592), - [anon_sym_LBRACE_PIPE] = ACTIONS(1594), - [anon_sym_PIPE_RBRACE] = ACTIONS(1594), - [anon_sym_void] = ACTIONS(1592), - [anon_sym_bool] = ACTIONS(1592), - [anon_sym_char] = ACTIONS(1592), - [anon_sym_ichar] = ACTIONS(1592), - [anon_sym_short] = ACTIONS(1592), - [anon_sym_ushort] = ACTIONS(1592), - [anon_sym_uint] = ACTIONS(1592), - [anon_sym_long] = ACTIONS(1592), - [anon_sym_ulong] = ACTIONS(1592), - [anon_sym_int128] = ACTIONS(1592), - [anon_sym_uint128] = ACTIONS(1592), - [anon_sym_float] = ACTIONS(1592), - [anon_sym_double] = ACTIONS(1592), - [anon_sym_float16] = ACTIONS(1592), - [anon_sym_bfloat16] = ACTIONS(1592), - [anon_sym_float128] = ACTIONS(1592), - [anon_sym_iptr] = ACTIONS(1592), - [anon_sym_uptr] = ACTIONS(1592), - [anon_sym_isz] = ACTIONS(1592), - [anon_sym_usz] = ACTIONS(1592), - [anon_sym_anyfault] = ACTIONS(1592), - [anon_sym_any] = ACTIONS(1592), - [anon_sym_DOLLARtypeof] = ACTIONS(1592), - [anon_sym_DOLLARtypefrom] = ACTIONS(1592), - [anon_sym_DOLLARvatype] = ACTIONS(1592), - [anon_sym_DOLLARevaltype] = ACTIONS(1592), - [sym_real_literal] = ACTIONS(1594), + [sym_ident] = ACTIONS(1363), + [sym_integer_literal] = ACTIONS(1365), + [anon_sym_SQUOTE] = ACTIONS(1365), + [anon_sym_DQUOTE] = ACTIONS(1365), + [anon_sym_BQUOTE] = ACTIONS(1365), + [sym_bytes_literal] = ACTIONS(1365), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1363), + [sym_at_ident] = ACTIONS(1365), + [sym_hash_ident] = ACTIONS(1365), + [sym_type_ident] = ACTIONS(1365), + [sym_ct_type_ident] = ACTIONS(1365), + [sym_const_ident] = ACTIONS(1363), + [sym_builtin] = ACTIONS(1365), + [anon_sym_LPAREN] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1363), + [anon_sym_static] = ACTIONS(1363), + [anon_sym_tlocal] = ACTIONS(1363), + [anon_sym_SEMI] = ACTIONS(1365), + [anon_sym_fn] = ACTIONS(1363), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_const] = ACTIONS(1363), + [anon_sym_var] = ACTIONS(1363), + [anon_sym_return] = ACTIONS(1363), + [anon_sym_continue] = ACTIONS(1363), + [anon_sym_break] = ACTIONS(1363), + [anon_sym_defer] = ACTIONS(1363), + [anon_sym_assert] = ACTIONS(1363), + [anon_sym_nextcase] = ACTIONS(1363), + [anon_sym_switch] = ACTIONS(1363), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_if] = ACTIONS(1363), + [anon_sym_for] = ACTIONS(1363), + [anon_sym_foreach] = ACTIONS(1363), + [anon_sym_foreach_r] = ACTIONS(1363), + [anon_sym_while] = ACTIONS(1363), + [anon_sym_do] = ACTIONS(1363), + [anon_sym_int] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_asm] = ACTIONS(1363), + [anon_sym_DOLLARassert] = ACTIONS(1363), + [anon_sym_DOLLARerror] = ACTIONS(1363), + [anon_sym_DOLLARecho] = ACTIONS(1363), + [anon_sym_DOLLARif] = ACTIONS(1363), + [anon_sym_DOLLARcase] = ACTIONS(1363), + [anon_sym_DOLLARdefault] = ACTIONS(1363), + [anon_sym_DOLLARswitch] = ACTIONS(1363), + [anon_sym_DOLLARendswitch] = ACTIONS(1363), + [anon_sym_DOLLARfor] = ACTIONS(1363), + [anon_sym_DOLLARforeach] = ACTIONS(1363), + [anon_sym_DOLLARalignof] = ACTIONS(1363), + [anon_sym_DOLLARextnameof] = ACTIONS(1363), + [anon_sym_DOLLARnameof] = ACTIONS(1363), + [anon_sym_DOLLARoffsetof] = ACTIONS(1363), + [anon_sym_DOLLARqnameof] = ACTIONS(1363), + [anon_sym_DOLLARvaconst] = ACTIONS(1363), + [anon_sym_DOLLARvaarg] = ACTIONS(1363), + [anon_sym_DOLLARvaref] = ACTIONS(1363), + [anon_sym_DOLLARvaexpr] = ACTIONS(1363), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_null] = ACTIONS(1363), + [anon_sym_DOLLARvacount] = ACTIONS(1363), + [anon_sym_DOLLARappend] = ACTIONS(1363), + [anon_sym_DOLLARconcat] = ACTIONS(1363), + [anon_sym_DOLLAReval] = ACTIONS(1363), + [anon_sym_DOLLARis_const] = ACTIONS(1363), + [anon_sym_DOLLARsizeof] = ACTIONS(1363), + [anon_sym_DOLLARstringify] = ACTIONS(1363), + [anon_sym_DOLLARand] = ACTIONS(1363), + [anon_sym_DOLLARdefined] = ACTIONS(1363), + [anon_sym_DOLLARembed] = ACTIONS(1363), + [anon_sym_DOLLARor] = ACTIONS(1363), + [anon_sym_DOLLARfeature] = ACTIONS(1363), + [anon_sym_DOLLARassignable] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1365), + [anon_sym_TILDE] = ACTIONS(1365), + [anon_sym_PLUS_PLUS] = ACTIONS(1365), + [anon_sym_DASH_DASH] = ACTIONS(1365), + [anon_sym_typeid] = ACTIONS(1363), + [anon_sym_LBRACE_PIPE] = ACTIONS(1365), + [anon_sym_void] = ACTIONS(1363), + [anon_sym_bool] = ACTIONS(1363), + [anon_sym_char] = ACTIONS(1363), + [anon_sym_ichar] = ACTIONS(1363), + [anon_sym_short] = ACTIONS(1363), + [anon_sym_ushort] = ACTIONS(1363), + [anon_sym_uint] = ACTIONS(1363), + [anon_sym_long] = ACTIONS(1363), + [anon_sym_ulong] = ACTIONS(1363), + [anon_sym_int128] = ACTIONS(1363), + [anon_sym_uint128] = ACTIONS(1363), + [anon_sym_float] = ACTIONS(1363), + [anon_sym_double] = ACTIONS(1363), + [anon_sym_float16] = ACTIONS(1363), + [anon_sym_bfloat16] = ACTIONS(1363), + [anon_sym_float128] = ACTIONS(1363), + [anon_sym_iptr] = ACTIONS(1363), + [anon_sym_uptr] = ACTIONS(1363), + [anon_sym_isz] = ACTIONS(1363), + [anon_sym_usz] = ACTIONS(1363), + [anon_sym_anyfault] = ACTIONS(1363), + [anon_sym_any] = ACTIONS(1363), + [anon_sym_DOLLARtypeof] = ACTIONS(1363), + [anon_sym_DOLLARtypefrom] = ACTIONS(1363), + [anon_sym_DOLLARvatype] = ACTIONS(1363), + [anon_sym_DOLLARevaltype] = ACTIONS(1363), + [sym_real_literal] = ACTIONS(1365), }, [449] = { [sym_line_comment] = STATE(449), [sym_doc_comment] = STATE(449), [sym_block_comment] = STATE(449), - [sym_ident] = ACTIONS(1596), - [sym_integer_literal] = ACTIONS(1598), - [anon_sym_SQUOTE] = ACTIONS(1598), - [anon_sym_DQUOTE] = ACTIONS(1598), - [anon_sym_BQUOTE] = ACTIONS(1598), - [sym_bytes_literal] = ACTIONS(1598), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1596), - [sym_at_ident] = ACTIONS(1598), - [sym_hash_ident] = ACTIONS(1598), - [sym_type_ident] = ACTIONS(1598), - [sym_ct_type_ident] = ACTIONS(1598), - [sym_const_ident] = ACTIONS(1596), - [sym_builtin] = ACTIONS(1598), - [anon_sym_LPAREN] = ACTIONS(1598), - [anon_sym_AMP] = ACTIONS(1596), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_tlocal] = ACTIONS(1596), - [anon_sym_SEMI] = ACTIONS(1598), - [anon_sym_fn] = ACTIONS(1596), - [anon_sym_LBRACE] = ACTIONS(1596), - [anon_sym_RBRACE] = ACTIONS(1598), - [anon_sym_const] = ACTIONS(1596), - [anon_sym_var] = ACTIONS(1596), - [anon_sym_return] = ACTIONS(1596), - [anon_sym_continue] = ACTIONS(1596), - [anon_sym_break] = ACTIONS(1596), - [anon_sym_defer] = ACTIONS(1596), - [anon_sym_assert] = ACTIONS(1596), - [anon_sym_case] = ACTIONS(1596), - [anon_sym_default] = ACTIONS(1596), - [anon_sym_nextcase] = ACTIONS(1596), - [anon_sym_switch] = ACTIONS(1596), - [anon_sym_AMP_AMP] = ACTIONS(1598), - [anon_sym_if] = ACTIONS(1596), - [anon_sym_for] = ACTIONS(1596), - [anon_sym_foreach] = ACTIONS(1596), - [anon_sym_foreach_r] = ACTIONS(1596), - [anon_sym_while] = ACTIONS(1596), - [anon_sym_do] = ACTIONS(1596), - [anon_sym_int] = ACTIONS(1596), - [anon_sym_PLUS] = ACTIONS(1596), - [anon_sym_DASH] = ACTIONS(1596), - [anon_sym_STAR] = ACTIONS(1598), - [anon_sym_asm] = ACTIONS(1596), - [anon_sym_DOLLARassert] = ACTIONS(1596), - [anon_sym_DOLLARerror] = ACTIONS(1596), - [anon_sym_DOLLARecho] = ACTIONS(1596), - [anon_sym_DOLLARif] = ACTIONS(1596), - [anon_sym_DOLLARswitch] = ACTIONS(1596), - [anon_sym_DOLLARfor] = ACTIONS(1596), - [anon_sym_DOLLARforeach] = ACTIONS(1596), - [anon_sym_DOLLARalignof] = ACTIONS(1596), - [anon_sym_DOLLARextnameof] = ACTIONS(1596), - [anon_sym_DOLLARnameof] = ACTIONS(1596), - [anon_sym_DOLLARoffsetof] = ACTIONS(1596), - [anon_sym_DOLLARqnameof] = ACTIONS(1596), - [anon_sym_DOLLARvaconst] = ACTIONS(1596), - [anon_sym_DOLLARvaarg] = ACTIONS(1596), - [anon_sym_DOLLARvaref] = ACTIONS(1596), - [anon_sym_DOLLARvaexpr] = ACTIONS(1596), - [anon_sym_true] = ACTIONS(1596), - [anon_sym_false] = ACTIONS(1596), - [anon_sym_null] = ACTIONS(1596), - [anon_sym_DOLLARvacount] = ACTIONS(1596), - [anon_sym_DOLLARappend] = ACTIONS(1596), - [anon_sym_DOLLARconcat] = ACTIONS(1596), - [anon_sym_DOLLAReval] = ACTIONS(1596), - [anon_sym_DOLLARis_const] = ACTIONS(1596), - [anon_sym_DOLLARsizeof] = ACTIONS(1596), - [anon_sym_DOLLARstringify] = ACTIONS(1596), - [anon_sym_DOLLARand] = ACTIONS(1596), - [anon_sym_DOLLARdefined] = ACTIONS(1596), - [anon_sym_DOLLARembed] = ACTIONS(1596), - [anon_sym_DOLLARor] = ACTIONS(1596), - [anon_sym_DOLLARfeature] = ACTIONS(1596), - [anon_sym_DOLLARassignable] = ACTIONS(1596), - [anon_sym_BANG] = ACTIONS(1598), - [anon_sym_TILDE] = ACTIONS(1598), - [anon_sym_PLUS_PLUS] = ACTIONS(1598), - [anon_sym_DASH_DASH] = ACTIONS(1598), - [anon_sym_typeid] = ACTIONS(1596), - [anon_sym_LBRACE_PIPE] = ACTIONS(1598), - [anon_sym_PIPE_RBRACE] = ACTIONS(1598), - [anon_sym_void] = ACTIONS(1596), - [anon_sym_bool] = ACTIONS(1596), - [anon_sym_char] = ACTIONS(1596), - [anon_sym_ichar] = ACTIONS(1596), - [anon_sym_short] = ACTIONS(1596), - [anon_sym_ushort] = ACTIONS(1596), - [anon_sym_uint] = ACTIONS(1596), - [anon_sym_long] = ACTIONS(1596), - [anon_sym_ulong] = ACTIONS(1596), - [anon_sym_int128] = ACTIONS(1596), - [anon_sym_uint128] = ACTIONS(1596), - [anon_sym_float] = ACTIONS(1596), - [anon_sym_double] = ACTIONS(1596), - [anon_sym_float16] = ACTIONS(1596), - [anon_sym_bfloat16] = ACTIONS(1596), - [anon_sym_float128] = ACTIONS(1596), - [anon_sym_iptr] = ACTIONS(1596), - [anon_sym_uptr] = ACTIONS(1596), - [anon_sym_isz] = ACTIONS(1596), - [anon_sym_usz] = ACTIONS(1596), - [anon_sym_anyfault] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_DOLLARtypeof] = ACTIONS(1596), - [anon_sym_DOLLARtypefrom] = ACTIONS(1596), - [anon_sym_DOLLARvatype] = ACTIONS(1596), - [anon_sym_DOLLARevaltype] = ACTIONS(1596), - [sym_real_literal] = ACTIONS(1598), + [sym_ident] = ACTIONS(1481), + [sym_integer_literal] = ACTIONS(1483), + [anon_sym_SQUOTE] = ACTIONS(1483), + [anon_sym_DQUOTE] = ACTIONS(1483), + [anon_sym_BQUOTE] = ACTIONS(1483), + [sym_bytes_literal] = ACTIONS(1483), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1481), + [sym_at_ident] = ACTIONS(1483), + [sym_hash_ident] = ACTIONS(1483), + [sym_type_ident] = ACTIONS(1483), + [sym_ct_type_ident] = ACTIONS(1483), + [sym_const_ident] = ACTIONS(1481), + [sym_builtin] = ACTIONS(1483), + [anon_sym_LPAREN] = ACTIONS(1483), + [anon_sym_AMP] = ACTIONS(1481), + [anon_sym_static] = ACTIONS(1481), + [anon_sym_tlocal] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1483), + [anon_sym_fn] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_const] = ACTIONS(1481), + [anon_sym_var] = ACTIONS(1481), + [anon_sym_return] = ACTIONS(1481), + [anon_sym_continue] = ACTIONS(1481), + [anon_sym_break] = ACTIONS(1481), + [anon_sym_defer] = ACTIONS(1481), + [anon_sym_assert] = ACTIONS(1481), + [anon_sym_nextcase] = ACTIONS(1481), + [anon_sym_switch] = ACTIONS(1481), + [anon_sym_AMP_AMP] = ACTIONS(1483), + [anon_sym_if] = ACTIONS(1481), + [anon_sym_for] = ACTIONS(1481), + [anon_sym_foreach] = ACTIONS(1481), + [anon_sym_foreach_r] = ACTIONS(1481), + [anon_sym_while] = ACTIONS(1481), + [anon_sym_do] = ACTIONS(1481), + [anon_sym_int] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_STAR] = ACTIONS(1483), + [anon_sym_asm] = ACTIONS(1481), + [anon_sym_DOLLARassert] = ACTIONS(1481), + [anon_sym_DOLLARerror] = ACTIONS(1481), + [anon_sym_DOLLARecho] = ACTIONS(1481), + [anon_sym_DOLLARif] = ACTIONS(1481), + [anon_sym_DOLLARcase] = ACTIONS(1481), + [anon_sym_DOLLARdefault] = ACTIONS(1481), + [anon_sym_DOLLARswitch] = ACTIONS(1481), + [anon_sym_DOLLARendswitch] = ACTIONS(1481), + [anon_sym_DOLLARfor] = ACTIONS(1481), + [anon_sym_DOLLARforeach] = ACTIONS(1481), + [anon_sym_DOLLARalignof] = ACTIONS(1481), + [anon_sym_DOLLARextnameof] = ACTIONS(1481), + [anon_sym_DOLLARnameof] = ACTIONS(1481), + [anon_sym_DOLLARoffsetof] = ACTIONS(1481), + [anon_sym_DOLLARqnameof] = ACTIONS(1481), + [anon_sym_DOLLARvaconst] = ACTIONS(1481), + [anon_sym_DOLLARvaarg] = ACTIONS(1481), + [anon_sym_DOLLARvaref] = ACTIONS(1481), + [anon_sym_DOLLARvaexpr] = ACTIONS(1481), + [anon_sym_true] = ACTIONS(1481), + [anon_sym_false] = ACTIONS(1481), + [anon_sym_null] = ACTIONS(1481), + [anon_sym_DOLLARvacount] = ACTIONS(1481), + [anon_sym_DOLLARappend] = ACTIONS(1481), + [anon_sym_DOLLARconcat] = ACTIONS(1481), + [anon_sym_DOLLAReval] = ACTIONS(1481), + [anon_sym_DOLLARis_const] = ACTIONS(1481), + [anon_sym_DOLLARsizeof] = ACTIONS(1481), + [anon_sym_DOLLARstringify] = ACTIONS(1481), + [anon_sym_DOLLARand] = ACTIONS(1481), + [anon_sym_DOLLARdefined] = ACTIONS(1481), + [anon_sym_DOLLARembed] = ACTIONS(1481), + [anon_sym_DOLLARor] = ACTIONS(1481), + [anon_sym_DOLLARfeature] = ACTIONS(1481), + [anon_sym_DOLLARassignable] = ACTIONS(1481), + [anon_sym_BANG] = ACTIONS(1483), + [anon_sym_TILDE] = ACTIONS(1483), + [anon_sym_PLUS_PLUS] = ACTIONS(1483), + [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_typeid] = ACTIONS(1481), + [anon_sym_LBRACE_PIPE] = ACTIONS(1483), + [anon_sym_void] = ACTIONS(1481), + [anon_sym_bool] = ACTIONS(1481), + [anon_sym_char] = ACTIONS(1481), + [anon_sym_ichar] = ACTIONS(1481), + [anon_sym_short] = ACTIONS(1481), + [anon_sym_ushort] = ACTIONS(1481), + [anon_sym_uint] = ACTIONS(1481), + [anon_sym_long] = ACTIONS(1481), + [anon_sym_ulong] = ACTIONS(1481), + [anon_sym_int128] = ACTIONS(1481), + [anon_sym_uint128] = ACTIONS(1481), + [anon_sym_float] = ACTIONS(1481), + [anon_sym_double] = ACTIONS(1481), + [anon_sym_float16] = ACTIONS(1481), + [anon_sym_bfloat16] = ACTIONS(1481), + [anon_sym_float128] = ACTIONS(1481), + [anon_sym_iptr] = ACTIONS(1481), + [anon_sym_uptr] = ACTIONS(1481), + [anon_sym_isz] = ACTIONS(1481), + [anon_sym_usz] = ACTIONS(1481), + [anon_sym_anyfault] = ACTIONS(1481), + [anon_sym_any] = ACTIONS(1481), + [anon_sym_DOLLARtypeof] = ACTIONS(1481), + [anon_sym_DOLLARtypefrom] = ACTIONS(1481), + [anon_sym_DOLLARvatype] = ACTIONS(1481), + [anon_sym_DOLLARevaltype] = ACTIONS(1481), + [sym_real_literal] = ACTIONS(1483), }, [450] = { [sym_line_comment] = STATE(450), [sym_doc_comment] = STATE(450), [sym_block_comment] = STATE(450), - [sym_ident] = ACTIONS(1600), - [sym_integer_literal] = ACTIONS(1602), - [anon_sym_SQUOTE] = ACTIONS(1602), - [anon_sym_DQUOTE] = ACTIONS(1602), - [anon_sym_BQUOTE] = ACTIONS(1602), - [sym_bytes_literal] = ACTIONS(1602), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1600), - [sym_at_ident] = ACTIONS(1602), - [sym_hash_ident] = ACTIONS(1602), - [sym_type_ident] = ACTIONS(1602), - [sym_ct_type_ident] = ACTIONS(1602), - [sym_const_ident] = ACTIONS(1600), - [sym_builtin] = ACTIONS(1602), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_AMP] = ACTIONS(1600), - [anon_sym_static] = ACTIONS(1600), - [anon_sym_tlocal] = ACTIONS(1600), - [anon_sym_SEMI] = ACTIONS(1602), - [anon_sym_fn] = ACTIONS(1600), - [anon_sym_LBRACE] = ACTIONS(1600), - [anon_sym_RBRACE] = ACTIONS(1602), - [anon_sym_const] = ACTIONS(1600), - [anon_sym_var] = ACTIONS(1600), - [anon_sym_return] = ACTIONS(1600), - [anon_sym_continue] = ACTIONS(1600), - [anon_sym_break] = ACTIONS(1600), - [anon_sym_defer] = ACTIONS(1600), - [anon_sym_assert] = ACTIONS(1600), - [anon_sym_case] = ACTIONS(1600), - [anon_sym_default] = ACTIONS(1600), - [anon_sym_nextcase] = ACTIONS(1600), - [anon_sym_switch] = ACTIONS(1600), - [anon_sym_AMP_AMP] = ACTIONS(1602), - [anon_sym_if] = ACTIONS(1600), - [anon_sym_for] = ACTIONS(1600), - [anon_sym_foreach] = ACTIONS(1600), - [anon_sym_foreach_r] = ACTIONS(1600), - [anon_sym_while] = ACTIONS(1600), - [anon_sym_do] = ACTIONS(1600), - [anon_sym_int] = ACTIONS(1600), - [anon_sym_PLUS] = ACTIONS(1600), - [anon_sym_DASH] = ACTIONS(1600), - [anon_sym_STAR] = ACTIONS(1602), - [anon_sym_asm] = ACTIONS(1600), - [anon_sym_DOLLARassert] = ACTIONS(1600), - [anon_sym_DOLLARerror] = ACTIONS(1600), - [anon_sym_DOLLARecho] = ACTIONS(1600), - [anon_sym_DOLLARif] = ACTIONS(1600), - [anon_sym_DOLLARswitch] = ACTIONS(1600), - [anon_sym_DOLLARfor] = ACTIONS(1600), - [anon_sym_DOLLARforeach] = ACTIONS(1600), - [anon_sym_DOLLARalignof] = ACTIONS(1600), - [anon_sym_DOLLARextnameof] = ACTIONS(1600), - [anon_sym_DOLLARnameof] = ACTIONS(1600), - [anon_sym_DOLLARoffsetof] = ACTIONS(1600), - [anon_sym_DOLLARqnameof] = ACTIONS(1600), - [anon_sym_DOLLARvaconst] = ACTIONS(1600), - [anon_sym_DOLLARvaarg] = ACTIONS(1600), - [anon_sym_DOLLARvaref] = ACTIONS(1600), - [anon_sym_DOLLARvaexpr] = ACTIONS(1600), - [anon_sym_true] = ACTIONS(1600), - [anon_sym_false] = ACTIONS(1600), - [anon_sym_null] = ACTIONS(1600), - [anon_sym_DOLLARvacount] = ACTIONS(1600), - [anon_sym_DOLLARappend] = ACTIONS(1600), - [anon_sym_DOLLARconcat] = ACTIONS(1600), - [anon_sym_DOLLAReval] = ACTIONS(1600), - [anon_sym_DOLLARis_const] = ACTIONS(1600), - [anon_sym_DOLLARsizeof] = ACTIONS(1600), - [anon_sym_DOLLARstringify] = ACTIONS(1600), - [anon_sym_DOLLARand] = ACTIONS(1600), - [anon_sym_DOLLARdefined] = ACTIONS(1600), - [anon_sym_DOLLARembed] = ACTIONS(1600), - [anon_sym_DOLLARor] = ACTIONS(1600), - [anon_sym_DOLLARfeature] = ACTIONS(1600), - [anon_sym_DOLLARassignable] = ACTIONS(1600), - [anon_sym_BANG] = ACTIONS(1602), - [anon_sym_TILDE] = ACTIONS(1602), - [anon_sym_PLUS_PLUS] = ACTIONS(1602), - [anon_sym_DASH_DASH] = ACTIONS(1602), - [anon_sym_typeid] = ACTIONS(1600), - [anon_sym_LBRACE_PIPE] = ACTIONS(1602), - [anon_sym_PIPE_RBRACE] = ACTIONS(1602), - [anon_sym_void] = ACTIONS(1600), - [anon_sym_bool] = ACTIONS(1600), - [anon_sym_char] = ACTIONS(1600), - [anon_sym_ichar] = ACTIONS(1600), - [anon_sym_short] = ACTIONS(1600), - [anon_sym_ushort] = ACTIONS(1600), - [anon_sym_uint] = ACTIONS(1600), - [anon_sym_long] = ACTIONS(1600), - [anon_sym_ulong] = ACTIONS(1600), - [anon_sym_int128] = ACTIONS(1600), - [anon_sym_uint128] = ACTIONS(1600), - [anon_sym_float] = ACTIONS(1600), - [anon_sym_double] = ACTIONS(1600), - [anon_sym_float16] = ACTIONS(1600), - [anon_sym_bfloat16] = ACTIONS(1600), - [anon_sym_float128] = ACTIONS(1600), - [anon_sym_iptr] = ACTIONS(1600), - [anon_sym_uptr] = ACTIONS(1600), - [anon_sym_isz] = ACTIONS(1600), - [anon_sym_usz] = ACTIONS(1600), - [anon_sym_anyfault] = ACTIONS(1600), - [anon_sym_any] = ACTIONS(1600), - [anon_sym_DOLLARtypeof] = ACTIONS(1600), - [anon_sym_DOLLARtypefrom] = ACTIONS(1600), - [anon_sym_DOLLARvatype] = ACTIONS(1600), - [anon_sym_DOLLARevaltype] = ACTIONS(1600), - [sym_real_literal] = ACTIONS(1602), + [sym_ident] = ACTIONS(1431), + [sym_integer_literal] = ACTIONS(1433), + [anon_sym_SQUOTE] = ACTIONS(1433), + [anon_sym_DQUOTE] = ACTIONS(1433), + [anon_sym_BQUOTE] = ACTIONS(1433), + [sym_bytes_literal] = ACTIONS(1433), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1431), + [sym_at_ident] = ACTIONS(1433), + [sym_hash_ident] = ACTIONS(1433), + [sym_type_ident] = ACTIONS(1433), + [sym_ct_type_ident] = ACTIONS(1433), + [sym_const_ident] = ACTIONS(1431), + [sym_builtin] = ACTIONS(1433), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_AMP] = ACTIONS(1431), + [anon_sym_static] = ACTIONS(1431), + [anon_sym_tlocal] = ACTIONS(1431), + [anon_sym_SEMI] = ACTIONS(1433), + [anon_sym_fn] = ACTIONS(1431), + [anon_sym_LBRACE] = ACTIONS(1431), + [anon_sym_const] = ACTIONS(1431), + [anon_sym_var] = ACTIONS(1431), + [anon_sym_return] = ACTIONS(1431), + [anon_sym_continue] = ACTIONS(1431), + [anon_sym_break] = ACTIONS(1431), + [anon_sym_defer] = ACTIONS(1431), + [anon_sym_assert] = ACTIONS(1431), + [anon_sym_nextcase] = ACTIONS(1431), + [anon_sym_switch] = ACTIONS(1431), + [anon_sym_AMP_AMP] = ACTIONS(1433), + [anon_sym_if] = ACTIONS(1431), + [anon_sym_for] = ACTIONS(1431), + [anon_sym_foreach] = ACTIONS(1431), + [anon_sym_foreach_r] = ACTIONS(1431), + [anon_sym_while] = ACTIONS(1431), + [anon_sym_do] = ACTIONS(1431), + [anon_sym_int] = ACTIONS(1431), + [anon_sym_PLUS] = ACTIONS(1431), + [anon_sym_DASH] = ACTIONS(1431), + [anon_sym_STAR] = ACTIONS(1433), + [anon_sym_asm] = ACTIONS(1431), + [anon_sym_DOLLARassert] = ACTIONS(1431), + [anon_sym_DOLLARerror] = ACTIONS(1431), + [anon_sym_DOLLARecho] = ACTIONS(1431), + [anon_sym_DOLLARif] = ACTIONS(1431), + [anon_sym_DOLLARcase] = ACTIONS(1431), + [anon_sym_DOLLARdefault] = ACTIONS(1431), + [anon_sym_DOLLARswitch] = ACTIONS(1431), + [anon_sym_DOLLARendswitch] = ACTIONS(1431), + [anon_sym_DOLLARfor] = ACTIONS(1431), + [anon_sym_DOLLARforeach] = ACTIONS(1431), + [anon_sym_DOLLARalignof] = ACTIONS(1431), + [anon_sym_DOLLARextnameof] = ACTIONS(1431), + [anon_sym_DOLLARnameof] = ACTIONS(1431), + [anon_sym_DOLLARoffsetof] = ACTIONS(1431), + [anon_sym_DOLLARqnameof] = ACTIONS(1431), + [anon_sym_DOLLARvaconst] = ACTIONS(1431), + [anon_sym_DOLLARvaarg] = ACTIONS(1431), + [anon_sym_DOLLARvaref] = ACTIONS(1431), + [anon_sym_DOLLARvaexpr] = ACTIONS(1431), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_null] = ACTIONS(1431), + [anon_sym_DOLLARvacount] = ACTIONS(1431), + [anon_sym_DOLLARappend] = ACTIONS(1431), + [anon_sym_DOLLARconcat] = ACTIONS(1431), + [anon_sym_DOLLAReval] = ACTIONS(1431), + [anon_sym_DOLLARis_const] = ACTIONS(1431), + [anon_sym_DOLLARsizeof] = ACTIONS(1431), + [anon_sym_DOLLARstringify] = ACTIONS(1431), + [anon_sym_DOLLARand] = ACTIONS(1431), + [anon_sym_DOLLARdefined] = ACTIONS(1431), + [anon_sym_DOLLARembed] = ACTIONS(1431), + [anon_sym_DOLLARor] = ACTIONS(1431), + [anon_sym_DOLLARfeature] = ACTIONS(1431), + [anon_sym_DOLLARassignable] = ACTIONS(1431), + [anon_sym_BANG] = ACTIONS(1433), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_PLUS_PLUS] = ACTIONS(1433), + [anon_sym_DASH_DASH] = ACTIONS(1433), + [anon_sym_typeid] = ACTIONS(1431), + [anon_sym_LBRACE_PIPE] = ACTIONS(1433), + [anon_sym_void] = ACTIONS(1431), + [anon_sym_bool] = ACTIONS(1431), + [anon_sym_char] = ACTIONS(1431), + [anon_sym_ichar] = ACTIONS(1431), + [anon_sym_short] = ACTIONS(1431), + [anon_sym_ushort] = ACTIONS(1431), + [anon_sym_uint] = ACTIONS(1431), + [anon_sym_long] = ACTIONS(1431), + [anon_sym_ulong] = ACTIONS(1431), + [anon_sym_int128] = ACTIONS(1431), + [anon_sym_uint128] = ACTIONS(1431), + [anon_sym_float] = ACTIONS(1431), + [anon_sym_double] = ACTIONS(1431), + [anon_sym_float16] = ACTIONS(1431), + [anon_sym_bfloat16] = ACTIONS(1431), + [anon_sym_float128] = ACTIONS(1431), + [anon_sym_iptr] = ACTIONS(1431), + [anon_sym_uptr] = ACTIONS(1431), + [anon_sym_isz] = ACTIONS(1431), + [anon_sym_usz] = ACTIONS(1431), + [anon_sym_anyfault] = ACTIONS(1431), + [anon_sym_any] = ACTIONS(1431), + [anon_sym_DOLLARtypeof] = ACTIONS(1431), + [anon_sym_DOLLARtypefrom] = ACTIONS(1431), + [anon_sym_DOLLARvatype] = ACTIONS(1431), + [anon_sym_DOLLARevaltype] = ACTIONS(1431), + [sym_real_literal] = ACTIONS(1433), }, [451] = { [sym_line_comment] = STATE(451), [sym_doc_comment] = STATE(451), [sym_block_comment] = STATE(451), - [sym_ident] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(1606), - [anon_sym_SQUOTE] = ACTIONS(1606), - [anon_sym_DQUOTE] = ACTIONS(1606), - [anon_sym_BQUOTE] = ACTIONS(1606), - [sym_bytes_literal] = ACTIONS(1606), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1604), - [sym_at_ident] = ACTIONS(1606), - [sym_hash_ident] = ACTIONS(1606), - [sym_type_ident] = ACTIONS(1606), - [sym_ct_type_ident] = ACTIONS(1606), - [sym_const_ident] = ACTIONS(1604), - [sym_builtin] = ACTIONS(1606), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_AMP] = ACTIONS(1604), - [anon_sym_static] = ACTIONS(1604), - [anon_sym_tlocal] = ACTIONS(1604), - [anon_sym_SEMI] = ACTIONS(1606), - [anon_sym_fn] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(1604), - [anon_sym_RBRACE] = ACTIONS(1606), - [anon_sym_const] = ACTIONS(1604), - [anon_sym_var] = ACTIONS(1604), - [anon_sym_return] = ACTIONS(1604), - [anon_sym_continue] = ACTIONS(1604), - [anon_sym_break] = ACTIONS(1604), - [anon_sym_defer] = ACTIONS(1604), - [anon_sym_assert] = ACTIONS(1604), - [anon_sym_case] = ACTIONS(1604), - [anon_sym_default] = ACTIONS(1604), - [anon_sym_nextcase] = ACTIONS(1604), - [anon_sym_switch] = ACTIONS(1604), - [anon_sym_AMP_AMP] = ACTIONS(1606), - [anon_sym_if] = ACTIONS(1604), - [anon_sym_for] = ACTIONS(1604), - [anon_sym_foreach] = ACTIONS(1604), - [anon_sym_foreach_r] = ACTIONS(1604), - [anon_sym_while] = ACTIONS(1604), - [anon_sym_do] = ACTIONS(1604), - [anon_sym_int] = ACTIONS(1604), - [anon_sym_PLUS] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1606), - [anon_sym_asm] = ACTIONS(1604), - [anon_sym_DOLLARassert] = ACTIONS(1604), - [anon_sym_DOLLARerror] = ACTIONS(1604), - [anon_sym_DOLLARecho] = ACTIONS(1604), - [anon_sym_DOLLARif] = ACTIONS(1604), - [anon_sym_DOLLARswitch] = ACTIONS(1604), - [anon_sym_DOLLARfor] = ACTIONS(1604), - [anon_sym_DOLLARforeach] = ACTIONS(1604), - [anon_sym_DOLLARalignof] = ACTIONS(1604), - [anon_sym_DOLLARextnameof] = ACTIONS(1604), - [anon_sym_DOLLARnameof] = ACTIONS(1604), - [anon_sym_DOLLARoffsetof] = ACTIONS(1604), - [anon_sym_DOLLARqnameof] = ACTIONS(1604), - [anon_sym_DOLLARvaconst] = ACTIONS(1604), - [anon_sym_DOLLARvaarg] = ACTIONS(1604), - [anon_sym_DOLLARvaref] = ACTIONS(1604), - [anon_sym_DOLLARvaexpr] = ACTIONS(1604), - [anon_sym_true] = ACTIONS(1604), - [anon_sym_false] = ACTIONS(1604), - [anon_sym_null] = ACTIONS(1604), - [anon_sym_DOLLARvacount] = ACTIONS(1604), - [anon_sym_DOLLARappend] = ACTIONS(1604), - [anon_sym_DOLLARconcat] = ACTIONS(1604), - [anon_sym_DOLLAReval] = ACTIONS(1604), - [anon_sym_DOLLARis_const] = ACTIONS(1604), - [anon_sym_DOLLARsizeof] = ACTIONS(1604), - [anon_sym_DOLLARstringify] = ACTIONS(1604), - [anon_sym_DOLLARand] = ACTIONS(1604), - [anon_sym_DOLLARdefined] = ACTIONS(1604), - [anon_sym_DOLLARembed] = ACTIONS(1604), - [anon_sym_DOLLARor] = ACTIONS(1604), - [anon_sym_DOLLARfeature] = ACTIONS(1604), - [anon_sym_DOLLARassignable] = ACTIONS(1604), - [anon_sym_BANG] = ACTIONS(1606), - [anon_sym_TILDE] = ACTIONS(1606), - [anon_sym_PLUS_PLUS] = ACTIONS(1606), - [anon_sym_DASH_DASH] = ACTIONS(1606), - [anon_sym_typeid] = ACTIONS(1604), - [anon_sym_LBRACE_PIPE] = ACTIONS(1606), - [anon_sym_PIPE_RBRACE] = ACTIONS(1606), - [anon_sym_void] = ACTIONS(1604), - [anon_sym_bool] = ACTIONS(1604), - [anon_sym_char] = ACTIONS(1604), - [anon_sym_ichar] = ACTIONS(1604), - [anon_sym_short] = ACTIONS(1604), - [anon_sym_ushort] = ACTIONS(1604), - [anon_sym_uint] = ACTIONS(1604), - [anon_sym_long] = ACTIONS(1604), - [anon_sym_ulong] = ACTIONS(1604), - [anon_sym_int128] = ACTIONS(1604), - [anon_sym_uint128] = ACTIONS(1604), - [anon_sym_float] = ACTIONS(1604), - [anon_sym_double] = ACTIONS(1604), - [anon_sym_float16] = ACTIONS(1604), - [anon_sym_bfloat16] = ACTIONS(1604), - [anon_sym_float128] = ACTIONS(1604), - [anon_sym_iptr] = ACTIONS(1604), - [anon_sym_uptr] = ACTIONS(1604), - [anon_sym_isz] = ACTIONS(1604), - [anon_sym_usz] = ACTIONS(1604), - [anon_sym_anyfault] = ACTIONS(1604), - [anon_sym_any] = ACTIONS(1604), - [anon_sym_DOLLARtypeof] = ACTIONS(1604), - [anon_sym_DOLLARtypefrom] = ACTIONS(1604), - [anon_sym_DOLLARvatype] = ACTIONS(1604), - [anon_sym_DOLLARevaltype] = ACTIONS(1604), - [sym_real_literal] = ACTIONS(1606), + [sym_ident] = ACTIONS(1501), + [sym_integer_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1503), + [anon_sym_BQUOTE] = ACTIONS(1503), + [sym_bytes_literal] = ACTIONS(1503), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1501), + [sym_at_ident] = ACTIONS(1503), + [sym_hash_ident] = ACTIONS(1503), + [sym_type_ident] = ACTIONS(1503), + [sym_ct_type_ident] = ACTIONS(1503), + [sym_const_ident] = ACTIONS(1501), + [sym_builtin] = ACTIONS(1503), + [anon_sym_LPAREN] = ACTIONS(1503), + [anon_sym_AMP] = ACTIONS(1501), + [anon_sym_static] = ACTIONS(1501), + [anon_sym_tlocal] = ACTIONS(1501), + [anon_sym_SEMI] = ACTIONS(1503), + [anon_sym_fn] = ACTIONS(1501), + [anon_sym_LBRACE] = ACTIONS(1501), + [anon_sym_const] = ACTIONS(1501), + [anon_sym_var] = ACTIONS(1501), + [anon_sym_return] = ACTIONS(1501), + [anon_sym_continue] = ACTIONS(1501), + [anon_sym_break] = ACTIONS(1501), + [anon_sym_defer] = ACTIONS(1501), + [anon_sym_assert] = ACTIONS(1501), + [anon_sym_nextcase] = ACTIONS(1501), + [anon_sym_switch] = ACTIONS(1501), + [anon_sym_AMP_AMP] = ACTIONS(1503), + [anon_sym_if] = ACTIONS(1501), + [anon_sym_for] = ACTIONS(1501), + [anon_sym_foreach] = ACTIONS(1501), + [anon_sym_foreach_r] = ACTIONS(1501), + [anon_sym_while] = ACTIONS(1501), + [anon_sym_do] = ACTIONS(1501), + [anon_sym_int] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_asm] = ACTIONS(1501), + [anon_sym_DOLLARassert] = ACTIONS(1501), + [anon_sym_DOLLARerror] = ACTIONS(1501), + [anon_sym_DOLLARecho] = ACTIONS(1501), + [anon_sym_DOLLARif] = ACTIONS(1501), + [anon_sym_DOLLARcase] = ACTIONS(1501), + [anon_sym_DOLLARdefault] = ACTIONS(1501), + [anon_sym_DOLLARswitch] = ACTIONS(1501), + [anon_sym_DOLLARendswitch] = ACTIONS(1501), + [anon_sym_DOLLARfor] = ACTIONS(1501), + [anon_sym_DOLLARforeach] = ACTIONS(1501), + [anon_sym_DOLLARalignof] = ACTIONS(1501), + [anon_sym_DOLLARextnameof] = ACTIONS(1501), + [anon_sym_DOLLARnameof] = ACTIONS(1501), + [anon_sym_DOLLARoffsetof] = ACTIONS(1501), + [anon_sym_DOLLARqnameof] = ACTIONS(1501), + [anon_sym_DOLLARvaconst] = ACTIONS(1501), + [anon_sym_DOLLARvaarg] = ACTIONS(1501), + [anon_sym_DOLLARvaref] = ACTIONS(1501), + [anon_sym_DOLLARvaexpr] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1501), + [anon_sym_false] = ACTIONS(1501), + [anon_sym_null] = ACTIONS(1501), + [anon_sym_DOLLARvacount] = ACTIONS(1501), + [anon_sym_DOLLARappend] = ACTIONS(1501), + [anon_sym_DOLLARconcat] = ACTIONS(1501), + [anon_sym_DOLLAReval] = ACTIONS(1501), + [anon_sym_DOLLARis_const] = ACTIONS(1501), + [anon_sym_DOLLARsizeof] = ACTIONS(1501), + [anon_sym_DOLLARstringify] = ACTIONS(1501), + [anon_sym_DOLLARand] = ACTIONS(1501), + [anon_sym_DOLLARdefined] = ACTIONS(1501), + [anon_sym_DOLLARembed] = ACTIONS(1501), + [anon_sym_DOLLARor] = ACTIONS(1501), + [anon_sym_DOLLARfeature] = ACTIONS(1501), + [anon_sym_DOLLARassignable] = ACTIONS(1501), + [anon_sym_BANG] = ACTIONS(1503), + [anon_sym_TILDE] = ACTIONS(1503), + [anon_sym_PLUS_PLUS] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1503), + [anon_sym_typeid] = ACTIONS(1501), + [anon_sym_LBRACE_PIPE] = ACTIONS(1503), + [anon_sym_void] = ACTIONS(1501), + [anon_sym_bool] = ACTIONS(1501), + [anon_sym_char] = ACTIONS(1501), + [anon_sym_ichar] = ACTIONS(1501), + [anon_sym_short] = ACTIONS(1501), + [anon_sym_ushort] = ACTIONS(1501), + [anon_sym_uint] = ACTIONS(1501), + [anon_sym_long] = ACTIONS(1501), + [anon_sym_ulong] = ACTIONS(1501), + [anon_sym_int128] = ACTIONS(1501), + [anon_sym_uint128] = ACTIONS(1501), + [anon_sym_float] = ACTIONS(1501), + [anon_sym_double] = ACTIONS(1501), + [anon_sym_float16] = ACTIONS(1501), + [anon_sym_bfloat16] = ACTIONS(1501), + [anon_sym_float128] = ACTIONS(1501), + [anon_sym_iptr] = ACTIONS(1501), + [anon_sym_uptr] = ACTIONS(1501), + [anon_sym_isz] = ACTIONS(1501), + [anon_sym_usz] = ACTIONS(1501), + [anon_sym_anyfault] = ACTIONS(1501), + [anon_sym_any] = ACTIONS(1501), + [anon_sym_DOLLARtypeof] = ACTIONS(1501), + [anon_sym_DOLLARtypefrom] = ACTIONS(1501), + [anon_sym_DOLLARvatype] = ACTIONS(1501), + [anon_sym_DOLLARevaltype] = ACTIONS(1501), + [sym_real_literal] = ACTIONS(1503), }, [452] = { [sym_line_comment] = STATE(452), [sym_doc_comment] = STATE(452), [sym_block_comment] = STATE(452), - [sym_ident] = ACTIONS(1608), - [sym_integer_literal] = ACTIONS(1610), - [anon_sym_SQUOTE] = ACTIONS(1610), - [anon_sym_DQUOTE] = ACTIONS(1610), - [anon_sym_BQUOTE] = ACTIONS(1610), - [sym_bytes_literal] = ACTIONS(1610), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1608), - [sym_at_ident] = ACTIONS(1610), - [sym_hash_ident] = ACTIONS(1610), - [sym_type_ident] = ACTIONS(1610), - [sym_ct_type_ident] = ACTIONS(1610), - [sym_const_ident] = ACTIONS(1608), - [sym_builtin] = ACTIONS(1610), - [anon_sym_LPAREN] = ACTIONS(1610), - [anon_sym_AMP] = ACTIONS(1608), - [anon_sym_static] = ACTIONS(1608), - [anon_sym_tlocal] = ACTIONS(1608), - [anon_sym_SEMI] = ACTIONS(1610), - [anon_sym_fn] = ACTIONS(1608), - [anon_sym_LBRACE] = ACTIONS(1608), - [anon_sym_RBRACE] = ACTIONS(1610), - [anon_sym_const] = ACTIONS(1608), - [anon_sym_var] = ACTIONS(1608), - [anon_sym_return] = ACTIONS(1608), - [anon_sym_continue] = ACTIONS(1608), - [anon_sym_break] = ACTIONS(1608), - [anon_sym_defer] = ACTIONS(1608), - [anon_sym_assert] = ACTIONS(1608), - [anon_sym_case] = ACTIONS(1608), - [anon_sym_default] = ACTIONS(1608), - [anon_sym_nextcase] = ACTIONS(1608), - [anon_sym_switch] = ACTIONS(1608), - [anon_sym_AMP_AMP] = ACTIONS(1610), - [anon_sym_if] = ACTIONS(1608), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_foreach] = ACTIONS(1608), - [anon_sym_foreach_r] = ACTIONS(1608), - [anon_sym_while] = ACTIONS(1608), - [anon_sym_do] = ACTIONS(1608), - [anon_sym_int] = ACTIONS(1608), - [anon_sym_PLUS] = ACTIONS(1608), - [anon_sym_DASH] = ACTIONS(1608), - [anon_sym_STAR] = ACTIONS(1610), - [anon_sym_asm] = ACTIONS(1608), - [anon_sym_DOLLARassert] = ACTIONS(1608), - [anon_sym_DOLLARerror] = ACTIONS(1608), - [anon_sym_DOLLARecho] = ACTIONS(1608), - [anon_sym_DOLLARif] = ACTIONS(1608), - [anon_sym_DOLLARswitch] = ACTIONS(1608), - [anon_sym_DOLLARfor] = ACTIONS(1608), - [anon_sym_DOLLARforeach] = ACTIONS(1608), - [anon_sym_DOLLARalignof] = ACTIONS(1608), - [anon_sym_DOLLARextnameof] = ACTIONS(1608), - [anon_sym_DOLLARnameof] = ACTIONS(1608), - [anon_sym_DOLLARoffsetof] = ACTIONS(1608), - [anon_sym_DOLLARqnameof] = ACTIONS(1608), - [anon_sym_DOLLARvaconst] = ACTIONS(1608), - [anon_sym_DOLLARvaarg] = ACTIONS(1608), - [anon_sym_DOLLARvaref] = ACTIONS(1608), - [anon_sym_DOLLARvaexpr] = ACTIONS(1608), - [anon_sym_true] = ACTIONS(1608), - [anon_sym_false] = ACTIONS(1608), - [anon_sym_null] = ACTIONS(1608), - [anon_sym_DOLLARvacount] = ACTIONS(1608), - [anon_sym_DOLLARappend] = ACTIONS(1608), - [anon_sym_DOLLARconcat] = ACTIONS(1608), - [anon_sym_DOLLAReval] = ACTIONS(1608), - [anon_sym_DOLLARis_const] = ACTIONS(1608), - [anon_sym_DOLLARsizeof] = ACTIONS(1608), - [anon_sym_DOLLARstringify] = ACTIONS(1608), - [anon_sym_DOLLARand] = ACTIONS(1608), - [anon_sym_DOLLARdefined] = ACTIONS(1608), - [anon_sym_DOLLARembed] = ACTIONS(1608), - [anon_sym_DOLLARor] = ACTIONS(1608), - [anon_sym_DOLLARfeature] = ACTIONS(1608), - [anon_sym_DOLLARassignable] = ACTIONS(1608), - [anon_sym_BANG] = ACTIONS(1610), - [anon_sym_TILDE] = ACTIONS(1610), - [anon_sym_PLUS_PLUS] = ACTIONS(1610), - [anon_sym_DASH_DASH] = ACTIONS(1610), - [anon_sym_typeid] = ACTIONS(1608), - [anon_sym_LBRACE_PIPE] = ACTIONS(1610), - [anon_sym_PIPE_RBRACE] = ACTIONS(1610), - [anon_sym_void] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_ichar] = ACTIONS(1608), - [anon_sym_short] = ACTIONS(1608), - [anon_sym_ushort] = ACTIONS(1608), - [anon_sym_uint] = ACTIONS(1608), - [anon_sym_long] = ACTIONS(1608), - [anon_sym_ulong] = ACTIONS(1608), - [anon_sym_int128] = ACTIONS(1608), - [anon_sym_uint128] = ACTIONS(1608), - [anon_sym_float] = ACTIONS(1608), - [anon_sym_double] = ACTIONS(1608), - [anon_sym_float16] = ACTIONS(1608), - [anon_sym_bfloat16] = ACTIONS(1608), - [anon_sym_float128] = ACTIONS(1608), - [anon_sym_iptr] = ACTIONS(1608), - [anon_sym_uptr] = ACTIONS(1608), - [anon_sym_isz] = ACTIONS(1608), - [anon_sym_usz] = ACTIONS(1608), - [anon_sym_anyfault] = ACTIONS(1608), - [anon_sym_any] = ACTIONS(1608), - [anon_sym_DOLLARtypeof] = ACTIONS(1608), - [anon_sym_DOLLARtypefrom] = ACTIONS(1608), - [anon_sym_DOLLARvatype] = ACTIONS(1608), - [anon_sym_DOLLARevaltype] = ACTIONS(1608), - [sym_real_literal] = ACTIONS(1610), + [sym_ident] = ACTIONS(1577), + [sym_integer_literal] = ACTIONS(1579), + [anon_sym_SQUOTE] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1579), + [sym_bytes_literal] = ACTIONS(1579), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1577), + [sym_at_ident] = ACTIONS(1579), + [sym_hash_ident] = ACTIONS(1579), + [sym_type_ident] = ACTIONS(1579), + [sym_ct_type_ident] = ACTIONS(1579), + [sym_const_ident] = ACTIONS(1577), + [sym_builtin] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_AMP] = ACTIONS(1577), + [anon_sym_static] = ACTIONS(1577), + [anon_sym_tlocal] = ACTIONS(1577), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_fn] = ACTIONS(1577), + [anon_sym_LBRACE] = ACTIONS(1577), + [anon_sym_const] = ACTIONS(1577), + [anon_sym_var] = ACTIONS(1577), + [anon_sym_return] = ACTIONS(1577), + [anon_sym_continue] = ACTIONS(1577), + [anon_sym_break] = ACTIONS(1577), + [anon_sym_defer] = ACTIONS(1577), + [anon_sym_assert] = ACTIONS(1577), + [anon_sym_nextcase] = ACTIONS(1577), + [anon_sym_switch] = ACTIONS(1577), + [anon_sym_AMP_AMP] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1577), + [anon_sym_for] = ACTIONS(1577), + [anon_sym_foreach] = ACTIONS(1577), + [anon_sym_foreach_r] = ACTIONS(1577), + [anon_sym_while] = ACTIONS(1577), + [anon_sym_do] = ACTIONS(1577), + [anon_sym_int] = ACTIONS(1577), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_asm] = ACTIONS(1577), + [anon_sym_DOLLARassert] = ACTIONS(1577), + [anon_sym_DOLLARerror] = ACTIONS(1577), + [anon_sym_DOLLARecho] = ACTIONS(1577), + [anon_sym_DOLLARif] = ACTIONS(1577), + [anon_sym_DOLLARcase] = ACTIONS(1577), + [anon_sym_DOLLARdefault] = ACTIONS(1577), + [anon_sym_DOLLARswitch] = ACTIONS(1577), + [anon_sym_DOLLARendswitch] = ACTIONS(1577), + [anon_sym_DOLLARfor] = ACTIONS(1577), + [anon_sym_DOLLARforeach] = ACTIONS(1577), + [anon_sym_DOLLARalignof] = ACTIONS(1577), + [anon_sym_DOLLARextnameof] = ACTIONS(1577), + [anon_sym_DOLLARnameof] = ACTIONS(1577), + [anon_sym_DOLLARoffsetof] = ACTIONS(1577), + [anon_sym_DOLLARqnameof] = ACTIONS(1577), + [anon_sym_DOLLARvaconst] = ACTIONS(1577), + [anon_sym_DOLLARvaarg] = ACTIONS(1577), + [anon_sym_DOLLARvaref] = ACTIONS(1577), + [anon_sym_DOLLARvaexpr] = ACTIONS(1577), + [anon_sym_true] = ACTIONS(1577), + [anon_sym_false] = ACTIONS(1577), + [anon_sym_null] = ACTIONS(1577), + [anon_sym_DOLLARvacount] = ACTIONS(1577), + [anon_sym_DOLLARappend] = ACTIONS(1577), + [anon_sym_DOLLARconcat] = ACTIONS(1577), + [anon_sym_DOLLAReval] = ACTIONS(1577), + [anon_sym_DOLLARis_const] = ACTIONS(1577), + [anon_sym_DOLLARsizeof] = ACTIONS(1577), + [anon_sym_DOLLARstringify] = ACTIONS(1577), + [anon_sym_DOLLARand] = ACTIONS(1577), + [anon_sym_DOLLARdefined] = ACTIONS(1577), + [anon_sym_DOLLARembed] = ACTIONS(1577), + [anon_sym_DOLLARor] = ACTIONS(1577), + [anon_sym_DOLLARfeature] = ACTIONS(1577), + [anon_sym_DOLLARassignable] = ACTIONS(1577), + [anon_sym_BANG] = ACTIONS(1579), + [anon_sym_TILDE] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_DASH_DASH] = ACTIONS(1579), + [anon_sym_typeid] = ACTIONS(1577), + [anon_sym_LBRACE_PIPE] = ACTIONS(1579), + [anon_sym_void] = ACTIONS(1577), + [anon_sym_bool] = ACTIONS(1577), + [anon_sym_char] = ACTIONS(1577), + [anon_sym_ichar] = ACTIONS(1577), + [anon_sym_short] = ACTIONS(1577), + [anon_sym_ushort] = ACTIONS(1577), + [anon_sym_uint] = ACTIONS(1577), + [anon_sym_long] = ACTIONS(1577), + [anon_sym_ulong] = ACTIONS(1577), + [anon_sym_int128] = ACTIONS(1577), + [anon_sym_uint128] = ACTIONS(1577), + [anon_sym_float] = ACTIONS(1577), + [anon_sym_double] = ACTIONS(1577), + [anon_sym_float16] = ACTIONS(1577), + [anon_sym_bfloat16] = ACTIONS(1577), + [anon_sym_float128] = ACTIONS(1577), + [anon_sym_iptr] = ACTIONS(1577), + [anon_sym_uptr] = ACTIONS(1577), + [anon_sym_isz] = ACTIONS(1577), + [anon_sym_usz] = ACTIONS(1577), + [anon_sym_anyfault] = ACTIONS(1577), + [anon_sym_any] = ACTIONS(1577), + [anon_sym_DOLLARtypeof] = ACTIONS(1577), + [anon_sym_DOLLARtypefrom] = ACTIONS(1577), + [anon_sym_DOLLARvatype] = ACTIONS(1577), + [anon_sym_DOLLARevaltype] = ACTIONS(1577), + [sym_real_literal] = ACTIONS(1579), }, [453] = { [sym_line_comment] = STATE(453), [sym_doc_comment] = STATE(453), [sym_block_comment] = STATE(453), - [sym_ident] = ACTIONS(1612), - [sym_integer_literal] = ACTIONS(1614), - [anon_sym_SQUOTE] = ACTIONS(1614), - [anon_sym_DQUOTE] = ACTIONS(1614), - [anon_sym_BQUOTE] = ACTIONS(1614), - [sym_bytes_literal] = ACTIONS(1614), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1612), - [sym_at_ident] = ACTIONS(1614), - [sym_hash_ident] = ACTIONS(1614), - [sym_type_ident] = ACTIONS(1614), - [sym_ct_type_ident] = ACTIONS(1614), - [sym_const_ident] = ACTIONS(1612), - [sym_builtin] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_static] = ACTIONS(1612), - [anon_sym_tlocal] = ACTIONS(1612), - [anon_sym_SEMI] = ACTIONS(1614), - [anon_sym_fn] = ACTIONS(1612), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(1614), - [anon_sym_const] = ACTIONS(1612), - [anon_sym_var] = ACTIONS(1612), - [anon_sym_return] = ACTIONS(1612), - [anon_sym_continue] = ACTIONS(1612), - [anon_sym_break] = ACTIONS(1612), - [anon_sym_defer] = ACTIONS(1612), - [anon_sym_assert] = ACTIONS(1612), - [anon_sym_case] = ACTIONS(1612), - [anon_sym_default] = ACTIONS(1612), - [anon_sym_nextcase] = ACTIONS(1612), - [anon_sym_switch] = ACTIONS(1612), - [anon_sym_AMP_AMP] = ACTIONS(1614), - [anon_sym_if] = ACTIONS(1612), - [anon_sym_for] = ACTIONS(1612), - [anon_sym_foreach] = ACTIONS(1612), - [anon_sym_foreach_r] = ACTIONS(1612), - [anon_sym_while] = ACTIONS(1612), - [anon_sym_do] = ACTIONS(1612), - [anon_sym_int] = ACTIONS(1612), - [anon_sym_PLUS] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1612), - [anon_sym_STAR] = ACTIONS(1614), - [anon_sym_asm] = ACTIONS(1612), - [anon_sym_DOLLARassert] = ACTIONS(1612), - [anon_sym_DOLLARerror] = ACTIONS(1612), - [anon_sym_DOLLARecho] = ACTIONS(1612), - [anon_sym_DOLLARif] = ACTIONS(1612), - [anon_sym_DOLLARswitch] = ACTIONS(1612), - [anon_sym_DOLLARfor] = ACTIONS(1612), - [anon_sym_DOLLARforeach] = ACTIONS(1612), - [anon_sym_DOLLARalignof] = ACTIONS(1612), - [anon_sym_DOLLARextnameof] = ACTIONS(1612), - [anon_sym_DOLLARnameof] = ACTIONS(1612), - [anon_sym_DOLLARoffsetof] = ACTIONS(1612), - [anon_sym_DOLLARqnameof] = ACTIONS(1612), - [anon_sym_DOLLARvaconst] = ACTIONS(1612), - [anon_sym_DOLLARvaarg] = ACTIONS(1612), - [anon_sym_DOLLARvaref] = ACTIONS(1612), - [anon_sym_DOLLARvaexpr] = ACTIONS(1612), - [anon_sym_true] = ACTIONS(1612), - [anon_sym_false] = ACTIONS(1612), - [anon_sym_null] = ACTIONS(1612), - [anon_sym_DOLLARvacount] = ACTIONS(1612), - [anon_sym_DOLLARappend] = ACTIONS(1612), - [anon_sym_DOLLARconcat] = ACTIONS(1612), - [anon_sym_DOLLAReval] = ACTIONS(1612), - [anon_sym_DOLLARis_const] = ACTIONS(1612), - [anon_sym_DOLLARsizeof] = ACTIONS(1612), - [anon_sym_DOLLARstringify] = ACTIONS(1612), - [anon_sym_DOLLARand] = ACTIONS(1612), - [anon_sym_DOLLARdefined] = ACTIONS(1612), - [anon_sym_DOLLARembed] = ACTIONS(1612), - [anon_sym_DOLLARor] = ACTIONS(1612), - [anon_sym_DOLLARfeature] = ACTIONS(1612), - [anon_sym_DOLLARassignable] = ACTIONS(1612), - [anon_sym_BANG] = ACTIONS(1614), - [anon_sym_TILDE] = ACTIONS(1614), - [anon_sym_PLUS_PLUS] = ACTIONS(1614), - [anon_sym_DASH_DASH] = ACTIONS(1614), - [anon_sym_typeid] = ACTIONS(1612), - [anon_sym_LBRACE_PIPE] = ACTIONS(1614), - [anon_sym_PIPE_RBRACE] = ACTIONS(1614), - [anon_sym_void] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_ichar] = ACTIONS(1612), - [anon_sym_short] = ACTIONS(1612), - [anon_sym_ushort] = ACTIONS(1612), - [anon_sym_uint] = ACTIONS(1612), - [anon_sym_long] = ACTIONS(1612), - [anon_sym_ulong] = ACTIONS(1612), - [anon_sym_int128] = ACTIONS(1612), - [anon_sym_uint128] = ACTIONS(1612), - [anon_sym_float] = ACTIONS(1612), - [anon_sym_double] = ACTIONS(1612), - [anon_sym_float16] = ACTIONS(1612), - [anon_sym_bfloat16] = ACTIONS(1612), - [anon_sym_float128] = ACTIONS(1612), - [anon_sym_iptr] = ACTIONS(1612), - [anon_sym_uptr] = ACTIONS(1612), - [anon_sym_isz] = ACTIONS(1612), - [anon_sym_usz] = ACTIONS(1612), - [anon_sym_anyfault] = ACTIONS(1612), - [anon_sym_any] = ACTIONS(1612), - [anon_sym_DOLLARtypeof] = ACTIONS(1612), - [anon_sym_DOLLARtypefrom] = ACTIONS(1612), - [anon_sym_DOLLARvatype] = ACTIONS(1612), - [anon_sym_DOLLARevaltype] = ACTIONS(1612), - [sym_real_literal] = ACTIONS(1614), + [sym_ident] = ACTIONS(1517), + [sym_integer_literal] = ACTIONS(1519), + [anon_sym_SQUOTE] = ACTIONS(1519), + [anon_sym_DQUOTE] = ACTIONS(1519), + [anon_sym_BQUOTE] = ACTIONS(1519), + [sym_bytes_literal] = ACTIONS(1519), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1517), + [sym_at_ident] = ACTIONS(1519), + [sym_hash_ident] = ACTIONS(1519), + [sym_type_ident] = ACTIONS(1519), + [sym_ct_type_ident] = ACTIONS(1519), + [sym_const_ident] = ACTIONS(1517), + [sym_builtin] = ACTIONS(1519), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_static] = ACTIONS(1517), + [anon_sym_tlocal] = ACTIONS(1517), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_fn] = ACTIONS(1517), + [anon_sym_LBRACE] = ACTIONS(1517), + [anon_sym_const] = ACTIONS(1517), + [anon_sym_var] = ACTIONS(1517), + [anon_sym_return] = ACTIONS(1517), + [anon_sym_continue] = ACTIONS(1517), + [anon_sym_break] = ACTIONS(1517), + [anon_sym_defer] = ACTIONS(1517), + [anon_sym_assert] = ACTIONS(1517), + [anon_sym_nextcase] = ACTIONS(1517), + [anon_sym_switch] = ACTIONS(1517), + [anon_sym_AMP_AMP] = ACTIONS(1519), + [anon_sym_if] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1517), + [anon_sym_foreach] = ACTIONS(1517), + [anon_sym_foreach_r] = ACTIONS(1517), + [anon_sym_while] = ACTIONS(1517), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_int] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1517), + [anon_sym_DASH] = ACTIONS(1517), + [anon_sym_STAR] = ACTIONS(1519), + [anon_sym_asm] = ACTIONS(1517), + [anon_sym_DOLLARassert] = ACTIONS(1517), + [anon_sym_DOLLARerror] = ACTIONS(1517), + [anon_sym_DOLLARecho] = ACTIONS(1517), + [anon_sym_DOLLARif] = ACTIONS(1517), + [anon_sym_DOLLARcase] = ACTIONS(1517), + [anon_sym_DOLLARdefault] = ACTIONS(1517), + [anon_sym_DOLLARswitch] = ACTIONS(1517), + [anon_sym_DOLLARendswitch] = ACTIONS(1517), + [anon_sym_DOLLARfor] = ACTIONS(1517), + [anon_sym_DOLLARforeach] = ACTIONS(1517), + [anon_sym_DOLLARalignof] = ACTIONS(1517), + [anon_sym_DOLLARextnameof] = ACTIONS(1517), + [anon_sym_DOLLARnameof] = ACTIONS(1517), + [anon_sym_DOLLARoffsetof] = ACTIONS(1517), + [anon_sym_DOLLARqnameof] = ACTIONS(1517), + [anon_sym_DOLLARvaconst] = ACTIONS(1517), + [anon_sym_DOLLARvaarg] = ACTIONS(1517), + [anon_sym_DOLLARvaref] = ACTIONS(1517), + [anon_sym_DOLLARvaexpr] = ACTIONS(1517), + [anon_sym_true] = ACTIONS(1517), + [anon_sym_false] = ACTIONS(1517), + [anon_sym_null] = ACTIONS(1517), + [anon_sym_DOLLARvacount] = ACTIONS(1517), + [anon_sym_DOLLARappend] = ACTIONS(1517), + [anon_sym_DOLLARconcat] = ACTIONS(1517), + [anon_sym_DOLLAReval] = ACTIONS(1517), + [anon_sym_DOLLARis_const] = ACTIONS(1517), + [anon_sym_DOLLARsizeof] = ACTIONS(1517), + [anon_sym_DOLLARstringify] = ACTIONS(1517), + [anon_sym_DOLLARand] = ACTIONS(1517), + [anon_sym_DOLLARdefined] = ACTIONS(1517), + [anon_sym_DOLLARembed] = ACTIONS(1517), + [anon_sym_DOLLARor] = ACTIONS(1517), + [anon_sym_DOLLARfeature] = ACTIONS(1517), + [anon_sym_DOLLARassignable] = ACTIONS(1517), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1519), + [anon_sym_PLUS_PLUS] = ACTIONS(1519), + [anon_sym_DASH_DASH] = ACTIONS(1519), + [anon_sym_typeid] = ACTIONS(1517), + [anon_sym_LBRACE_PIPE] = ACTIONS(1519), + [anon_sym_void] = ACTIONS(1517), + [anon_sym_bool] = ACTIONS(1517), + [anon_sym_char] = ACTIONS(1517), + [anon_sym_ichar] = ACTIONS(1517), + [anon_sym_short] = ACTIONS(1517), + [anon_sym_ushort] = ACTIONS(1517), + [anon_sym_uint] = ACTIONS(1517), + [anon_sym_long] = ACTIONS(1517), + [anon_sym_ulong] = ACTIONS(1517), + [anon_sym_int128] = ACTIONS(1517), + [anon_sym_uint128] = ACTIONS(1517), + [anon_sym_float] = ACTIONS(1517), + [anon_sym_double] = ACTIONS(1517), + [anon_sym_float16] = ACTIONS(1517), + [anon_sym_bfloat16] = ACTIONS(1517), + [anon_sym_float128] = ACTIONS(1517), + [anon_sym_iptr] = ACTIONS(1517), + [anon_sym_uptr] = ACTIONS(1517), + [anon_sym_isz] = ACTIONS(1517), + [anon_sym_usz] = ACTIONS(1517), + [anon_sym_anyfault] = ACTIONS(1517), + [anon_sym_any] = ACTIONS(1517), + [anon_sym_DOLLARtypeof] = ACTIONS(1517), + [anon_sym_DOLLARtypefrom] = ACTIONS(1517), + [anon_sym_DOLLARvatype] = ACTIONS(1517), + [anon_sym_DOLLARevaltype] = ACTIONS(1517), + [sym_real_literal] = ACTIONS(1519), }, [454] = { [sym_line_comment] = STATE(454), [sym_doc_comment] = STATE(454), [sym_block_comment] = STATE(454), - [sym_ident] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(1618), - [anon_sym_SQUOTE] = ACTIONS(1618), - [anon_sym_DQUOTE] = ACTIONS(1618), - [anon_sym_BQUOTE] = ACTIONS(1618), - [sym_bytes_literal] = ACTIONS(1618), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1616), - [sym_at_ident] = ACTIONS(1618), - [sym_hash_ident] = ACTIONS(1618), - [sym_type_ident] = ACTIONS(1618), - [sym_ct_type_ident] = ACTIONS(1618), - [sym_const_ident] = ACTIONS(1616), - [sym_builtin] = ACTIONS(1618), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_static] = ACTIONS(1616), - [anon_sym_tlocal] = ACTIONS(1616), - [anon_sym_SEMI] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1616), - [anon_sym_LBRACE] = ACTIONS(1616), - [anon_sym_RBRACE] = ACTIONS(1618), - [anon_sym_const] = ACTIONS(1616), - [anon_sym_var] = ACTIONS(1616), - [anon_sym_return] = ACTIONS(1616), - [anon_sym_continue] = ACTIONS(1616), - [anon_sym_break] = ACTIONS(1616), - [anon_sym_defer] = ACTIONS(1616), - [anon_sym_assert] = ACTIONS(1616), - [anon_sym_case] = ACTIONS(1616), - [anon_sym_default] = ACTIONS(1616), - [anon_sym_nextcase] = ACTIONS(1616), - [anon_sym_switch] = ACTIONS(1616), - [anon_sym_AMP_AMP] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1616), - [anon_sym_for] = ACTIONS(1616), - [anon_sym_foreach] = ACTIONS(1616), - [anon_sym_foreach_r] = ACTIONS(1616), - [anon_sym_while] = ACTIONS(1616), - [anon_sym_do] = ACTIONS(1616), - [anon_sym_int] = ACTIONS(1616), - [anon_sym_PLUS] = ACTIONS(1616), - [anon_sym_DASH] = ACTIONS(1616), - [anon_sym_STAR] = ACTIONS(1618), - [anon_sym_asm] = ACTIONS(1616), - [anon_sym_DOLLARassert] = ACTIONS(1616), - [anon_sym_DOLLARerror] = ACTIONS(1616), - [anon_sym_DOLLARecho] = ACTIONS(1616), - [anon_sym_DOLLARif] = ACTIONS(1616), - [anon_sym_DOLLARswitch] = ACTIONS(1616), - [anon_sym_DOLLARfor] = ACTIONS(1616), - [anon_sym_DOLLARforeach] = ACTIONS(1616), - [anon_sym_DOLLARalignof] = ACTIONS(1616), - [anon_sym_DOLLARextnameof] = ACTIONS(1616), - [anon_sym_DOLLARnameof] = ACTIONS(1616), - [anon_sym_DOLLARoffsetof] = ACTIONS(1616), - [anon_sym_DOLLARqnameof] = ACTIONS(1616), - [anon_sym_DOLLARvaconst] = ACTIONS(1616), - [anon_sym_DOLLARvaarg] = ACTIONS(1616), - [anon_sym_DOLLARvaref] = ACTIONS(1616), - [anon_sym_DOLLARvaexpr] = ACTIONS(1616), - [anon_sym_true] = ACTIONS(1616), - [anon_sym_false] = ACTIONS(1616), - [anon_sym_null] = ACTIONS(1616), - [anon_sym_DOLLARvacount] = ACTIONS(1616), - [anon_sym_DOLLARappend] = ACTIONS(1616), - [anon_sym_DOLLARconcat] = ACTIONS(1616), - [anon_sym_DOLLAReval] = ACTIONS(1616), - [anon_sym_DOLLARis_const] = ACTIONS(1616), - [anon_sym_DOLLARsizeof] = ACTIONS(1616), - [anon_sym_DOLLARstringify] = ACTIONS(1616), - [anon_sym_DOLLARand] = ACTIONS(1616), - [anon_sym_DOLLARdefined] = ACTIONS(1616), - [anon_sym_DOLLARembed] = ACTIONS(1616), - [anon_sym_DOLLARor] = ACTIONS(1616), - [anon_sym_DOLLARfeature] = ACTIONS(1616), - [anon_sym_DOLLARassignable] = ACTIONS(1616), - [anon_sym_BANG] = ACTIONS(1618), - [anon_sym_TILDE] = ACTIONS(1618), - [anon_sym_PLUS_PLUS] = ACTIONS(1618), - [anon_sym_DASH_DASH] = ACTIONS(1618), - [anon_sym_typeid] = ACTIONS(1616), - [anon_sym_LBRACE_PIPE] = ACTIONS(1618), - [anon_sym_PIPE_RBRACE] = ACTIONS(1618), - [anon_sym_void] = ACTIONS(1616), - [anon_sym_bool] = ACTIONS(1616), - [anon_sym_char] = ACTIONS(1616), - [anon_sym_ichar] = ACTIONS(1616), - [anon_sym_short] = ACTIONS(1616), - [anon_sym_ushort] = ACTIONS(1616), - [anon_sym_uint] = ACTIONS(1616), - [anon_sym_long] = ACTIONS(1616), - [anon_sym_ulong] = ACTIONS(1616), - [anon_sym_int128] = ACTIONS(1616), - [anon_sym_uint128] = ACTIONS(1616), - [anon_sym_float] = ACTIONS(1616), - [anon_sym_double] = ACTIONS(1616), - [anon_sym_float16] = ACTIONS(1616), - [anon_sym_bfloat16] = ACTIONS(1616), - [anon_sym_float128] = ACTIONS(1616), - [anon_sym_iptr] = ACTIONS(1616), - [anon_sym_uptr] = ACTIONS(1616), - [anon_sym_isz] = ACTIONS(1616), - [anon_sym_usz] = ACTIONS(1616), - [anon_sym_anyfault] = ACTIONS(1616), - [anon_sym_any] = ACTIONS(1616), - [anon_sym_DOLLARtypeof] = ACTIONS(1616), - [anon_sym_DOLLARtypefrom] = ACTIONS(1616), - [anon_sym_DOLLARvatype] = ACTIONS(1616), - [anon_sym_DOLLARevaltype] = ACTIONS(1616), - [sym_real_literal] = ACTIONS(1618), + [sym_ident] = ACTIONS(1541), + [sym_integer_literal] = ACTIONS(1543), + [anon_sym_SQUOTE] = ACTIONS(1543), + [anon_sym_DQUOTE] = ACTIONS(1543), + [anon_sym_BQUOTE] = ACTIONS(1543), + [sym_bytes_literal] = ACTIONS(1543), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1541), + [sym_at_ident] = ACTIONS(1543), + [sym_hash_ident] = ACTIONS(1543), + [sym_type_ident] = ACTIONS(1543), + [sym_ct_type_ident] = ACTIONS(1543), + [sym_const_ident] = ACTIONS(1541), + [sym_builtin] = ACTIONS(1543), + [anon_sym_LPAREN] = ACTIONS(1543), + [anon_sym_AMP] = ACTIONS(1541), + [anon_sym_static] = ACTIONS(1541), + [anon_sym_tlocal] = ACTIONS(1541), + [anon_sym_SEMI] = ACTIONS(1543), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1541), + [anon_sym_const] = ACTIONS(1541), + [anon_sym_var] = ACTIONS(1541), + [anon_sym_return] = ACTIONS(1541), + [anon_sym_continue] = ACTIONS(1541), + [anon_sym_break] = ACTIONS(1541), + [anon_sym_defer] = ACTIONS(1541), + [anon_sym_assert] = ACTIONS(1541), + [anon_sym_nextcase] = ACTIONS(1541), + [anon_sym_switch] = ACTIONS(1541), + [anon_sym_AMP_AMP] = ACTIONS(1543), + [anon_sym_if] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1541), + [anon_sym_foreach] = ACTIONS(1541), + [anon_sym_foreach_r] = ACTIONS(1541), + [anon_sym_while] = ACTIONS(1541), + [anon_sym_do] = ACTIONS(1541), + [anon_sym_int] = ACTIONS(1541), + [anon_sym_PLUS] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_asm] = ACTIONS(1541), + [anon_sym_DOLLARassert] = ACTIONS(1541), + [anon_sym_DOLLARerror] = ACTIONS(1541), + [anon_sym_DOLLARecho] = ACTIONS(1541), + [anon_sym_DOLLARif] = ACTIONS(1541), + [anon_sym_DOLLARcase] = ACTIONS(1541), + [anon_sym_DOLLARdefault] = ACTIONS(1541), + [anon_sym_DOLLARswitch] = ACTIONS(1541), + [anon_sym_DOLLARendswitch] = ACTIONS(1541), + [anon_sym_DOLLARfor] = ACTIONS(1541), + [anon_sym_DOLLARforeach] = ACTIONS(1541), + [anon_sym_DOLLARalignof] = ACTIONS(1541), + [anon_sym_DOLLARextnameof] = ACTIONS(1541), + [anon_sym_DOLLARnameof] = ACTIONS(1541), + [anon_sym_DOLLARoffsetof] = ACTIONS(1541), + [anon_sym_DOLLARqnameof] = ACTIONS(1541), + [anon_sym_DOLLARvaconst] = ACTIONS(1541), + [anon_sym_DOLLARvaarg] = ACTIONS(1541), + [anon_sym_DOLLARvaref] = ACTIONS(1541), + [anon_sym_DOLLARvaexpr] = ACTIONS(1541), + [anon_sym_true] = ACTIONS(1541), + [anon_sym_false] = ACTIONS(1541), + [anon_sym_null] = ACTIONS(1541), + [anon_sym_DOLLARvacount] = ACTIONS(1541), + [anon_sym_DOLLARappend] = ACTIONS(1541), + [anon_sym_DOLLARconcat] = ACTIONS(1541), + [anon_sym_DOLLAReval] = ACTIONS(1541), + [anon_sym_DOLLARis_const] = ACTIONS(1541), + [anon_sym_DOLLARsizeof] = ACTIONS(1541), + [anon_sym_DOLLARstringify] = ACTIONS(1541), + [anon_sym_DOLLARand] = ACTIONS(1541), + [anon_sym_DOLLARdefined] = ACTIONS(1541), + [anon_sym_DOLLARembed] = ACTIONS(1541), + [anon_sym_DOLLARor] = ACTIONS(1541), + [anon_sym_DOLLARfeature] = ACTIONS(1541), + [anon_sym_DOLLARassignable] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_PLUS_PLUS] = ACTIONS(1543), + [anon_sym_DASH_DASH] = ACTIONS(1543), + [anon_sym_typeid] = ACTIONS(1541), + [anon_sym_LBRACE_PIPE] = ACTIONS(1543), + [anon_sym_void] = ACTIONS(1541), + [anon_sym_bool] = ACTIONS(1541), + [anon_sym_char] = ACTIONS(1541), + [anon_sym_ichar] = ACTIONS(1541), + [anon_sym_short] = ACTIONS(1541), + [anon_sym_ushort] = ACTIONS(1541), + [anon_sym_uint] = ACTIONS(1541), + [anon_sym_long] = ACTIONS(1541), + [anon_sym_ulong] = ACTIONS(1541), + [anon_sym_int128] = ACTIONS(1541), + [anon_sym_uint128] = ACTIONS(1541), + [anon_sym_float] = ACTIONS(1541), + [anon_sym_double] = ACTIONS(1541), + [anon_sym_float16] = ACTIONS(1541), + [anon_sym_bfloat16] = ACTIONS(1541), + [anon_sym_float128] = ACTIONS(1541), + [anon_sym_iptr] = ACTIONS(1541), + [anon_sym_uptr] = ACTIONS(1541), + [anon_sym_isz] = ACTIONS(1541), + [anon_sym_usz] = ACTIONS(1541), + [anon_sym_anyfault] = ACTIONS(1541), + [anon_sym_any] = ACTIONS(1541), + [anon_sym_DOLLARtypeof] = ACTIONS(1541), + [anon_sym_DOLLARtypefrom] = ACTIONS(1541), + [anon_sym_DOLLARvatype] = ACTIONS(1541), + [anon_sym_DOLLARevaltype] = ACTIONS(1541), + [sym_real_literal] = ACTIONS(1543), }, [455] = { [sym_line_comment] = STATE(455), [sym_doc_comment] = STATE(455), [sym_block_comment] = STATE(455), - [sym_ident] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(1622), - [anon_sym_SQUOTE] = ACTIONS(1622), - [anon_sym_DQUOTE] = ACTIONS(1622), - [anon_sym_BQUOTE] = ACTIONS(1622), - [sym_bytes_literal] = ACTIONS(1622), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1620), - [sym_at_ident] = ACTIONS(1622), - [sym_hash_ident] = ACTIONS(1622), - [sym_type_ident] = ACTIONS(1622), - [sym_ct_type_ident] = ACTIONS(1622), - [sym_const_ident] = ACTIONS(1620), - [sym_builtin] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(1622), - [anon_sym_AMP] = ACTIONS(1620), - [anon_sym_static] = ACTIONS(1620), - [anon_sym_tlocal] = ACTIONS(1620), - [anon_sym_SEMI] = ACTIONS(1622), - [anon_sym_fn] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1620), - [anon_sym_RBRACE] = ACTIONS(1622), - [anon_sym_const] = ACTIONS(1620), - [anon_sym_var] = ACTIONS(1620), - [anon_sym_return] = ACTIONS(1620), - [anon_sym_continue] = ACTIONS(1620), - [anon_sym_break] = ACTIONS(1620), - [anon_sym_defer] = ACTIONS(1620), - [anon_sym_assert] = ACTIONS(1620), - [anon_sym_case] = ACTIONS(1620), - [anon_sym_default] = ACTIONS(1620), - [anon_sym_nextcase] = ACTIONS(1620), - [anon_sym_switch] = ACTIONS(1620), - [anon_sym_AMP_AMP] = ACTIONS(1622), - [anon_sym_if] = ACTIONS(1620), - [anon_sym_for] = ACTIONS(1620), - [anon_sym_foreach] = ACTIONS(1620), - [anon_sym_foreach_r] = ACTIONS(1620), - [anon_sym_while] = ACTIONS(1620), - [anon_sym_do] = ACTIONS(1620), - [anon_sym_int] = ACTIONS(1620), - [anon_sym_PLUS] = ACTIONS(1620), - [anon_sym_DASH] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1622), - [anon_sym_asm] = ACTIONS(1620), - [anon_sym_DOLLARassert] = ACTIONS(1620), - [anon_sym_DOLLARerror] = ACTIONS(1620), - [anon_sym_DOLLARecho] = ACTIONS(1620), - [anon_sym_DOLLARif] = ACTIONS(1620), - [anon_sym_DOLLARswitch] = ACTIONS(1620), - [anon_sym_DOLLARfor] = ACTIONS(1620), - [anon_sym_DOLLARforeach] = ACTIONS(1620), - [anon_sym_DOLLARalignof] = ACTIONS(1620), - [anon_sym_DOLLARextnameof] = ACTIONS(1620), - [anon_sym_DOLLARnameof] = ACTIONS(1620), - [anon_sym_DOLLARoffsetof] = ACTIONS(1620), - [anon_sym_DOLLARqnameof] = ACTIONS(1620), - [anon_sym_DOLLARvaconst] = ACTIONS(1620), - [anon_sym_DOLLARvaarg] = ACTIONS(1620), - [anon_sym_DOLLARvaref] = ACTIONS(1620), - [anon_sym_DOLLARvaexpr] = ACTIONS(1620), - [anon_sym_true] = ACTIONS(1620), - [anon_sym_false] = ACTIONS(1620), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_DOLLARvacount] = ACTIONS(1620), - [anon_sym_DOLLARappend] = ACTIONS(1620), - [anon_sym_DOLLARconcat] = ACTIONS(1620), - [anon_sym_DOLLAReval] = ACTIONS(1620), - [anon_sym_DOLLARis_const] = ACTIONS(1620), - [anon_sym_DOLLARsizeof] = ACTIONS(1620), - [anon_sym_DOLLARstringify] = ACTIONS(1620), - [anon_sym_DOLLARand] = ACTIONS(1620), - [anon_sym_DOLLARdefined] = ACTIONS(1620), - [anon_sym_DOLLARembed] = ACTIONS(1620), - [anon_sym_DOLLARor] = ACTIONS(1620), - [anon_sym_DOLLARfeature] = ACTIONS(1620), - [anon_sym_DOLLARassignable] = ACTIONS(1620), - [anon_sym_BANG] = ACTIONS(1622), - [anon_sym_TILDE] = ACTIONS(1622), - [anon_sym_PLUS_PLUS] = ACTIONS(1622), - [anon_sym_DASH_DASH] = ACTIONS(1622), - [anon_sym_typeid] = ACTIONS(1620), - [anon_sym_LBRACE_PIPE] = ACTIONS(1622), - [anon_sym_PIPE_RBRACE] = ACTIONS(1622), - [anon_sym_void] = ACTIONS(1620), - [anon_sym_bool] = ACTIONS(1620), - [anon_sym_char] = ACTIONS(1620), - [anon_sym_ichar] = ACTIONS(1620), - [anon_sym_short] = ACTIONS(1620), - [anon_sym_ushort] = ACTIONS(1620), - [anon_sym_uint] = ACTIONS(1620), - [anon_sym_long] = ACTIONS(1620), - [anon_sym_ulong] = ACTIONS(1620), - [anon_sym_int128] = ACTIONS(1620), - [anon_sym_uint128] = ACTIONS(1620), - [anon_sym_float] = ACTIONS(1620), - [anon_sym_double] = ACTIONS(1620), - [anon_sym_float16] = ACTIONS(1620), - [anon_sym_bfloat16] = ACTIONS(1620), - [anon_sym_float128] = ACTIONS(1620), - [anon_sym_iptr] = ACTIONS(1620), - [anon_sym_uptr] = ACTIONS(1620), - [anon_sym_isz] = ACTIONS(1620), - [anon_sym_usz] = ACTIONS(1620), - [anon_sym_anyfault] = ACTIONS(1620), - [anon_sym_any] = ACTIONS(1620), - [anon_sym_DOLLARtypeof] = ACTIONS(1620), - [anon_sym_DOLLARtypefrom] = ACTIONS(1620), - [anon_sym_DOLLARvatype] = ACTIONS(1620), - [anon_sym_DOLLARevaltype] = ACTIONS(1620), - [sym_real_literal] = ACTIONS(1622), + [sym_ident] = ACTIONS(1441), + [sym_integer_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1443), + [anon_sym_DQUOTE] = ACTIONS(1443), + [anon_sym_BQUOTE] = ACTIONS(1443), + [sym_bytes_literal] = ACTIONS(1443), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1441), + [sym_at_ident] = ACTIONS(1443), + [sym_hash_ident] = ACTIONS(1443), + [sym_type_ident] = ACTIONS(1443), + [sym_ct_type_ident] = ACTIONS(1443), + [sym_const_ident] = ACTIONS(1441), + [sym_builtin] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_tlocal] = ACTIONS(1441), + [anon_sym_SEMI] = ACTIONS(1443), + [anon_sym_fn] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1441), + [anon_sym_const] = ACTIONS(1441), + [anon_sym_var] = ACTIONS(1441), + [anon_sym_return] = ACTIONS(1441), + [anon_sym_continue] = ACTIONS(1441), + [anon_sym_break] = ACTIONS(1441), + [anon_sym_defer] = ACTIONS(1441), + [anon_sym_assert] = ACTIONS(1441), + [anon_sym_nextcase] = ACTIONS(1441), + [anon_sym_switch] = ACTIONS(1441), + [anon_sym_AMP_AMP] = ACTIONS(1443), + [anon_sym_if] = ACTIONS(1441), + [anon_sym_for] = ACTIONS(1441), + [anon_sym_foreach] = ACTIONS(1441), + [anon_sym_foreach_r] = ACTIONS(1441), + [anon_sym_while] = ACTIONS(1441), + [anon_sym_do] = ACTIONS(1441), + [anon_sym_int] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1441), + [anon_sym_DASH] = ACTIONS(1441), + [anon_sym_STAR] = ACTIONS(1443), + [anon_sym_asm] = ACTIONS(1441), + [anon_sym_DOLLARassert] = ACTIONS(1441), + [anon_sym_DOLLARerror] = ACTIONS(1441), + [anon_sym_DOLLARecho] = ACTIONS(1441), + [anon_sym_DOLLARif] = ACTIONS(1441), + [anon_sym_DOLLARcase] = ACTIONS(1441), + [anon_sym_DOLLARdefault] = ACTIONS(1441), + [anon_sym_DOLLARswitch] = ACTIONS(1441), + [anon_sym_DOLLARendswitch] = ACTIONS(1441), + [anon_sym_DOLLARfor] = ACTIONS(1441), + [anon_sym_DOLLARforeach] = ACTIONS(1441), + [anon_sym_DOLLARalignof] = ACTIONS(1441), + [anon_sym_DOLLARextnameof] = ACTIONS(1441), + [anon_sym_DOLLARnameof] = ACTIONS(1441), + [anon_sym_DOLLARoffsetof] = ACTIONS(1441), + [anon_sym_DOLLARqnameof] = ACTIONS(1441), + [anon_sym_DOLLARvaconst] = ACTIONS(1441), + [anon_sym_DOLLARvaarg] = ACTIONS(1441), + [anon_sym_DOLLARvaref] = ACTIONS(1441), + [anon_sym_DOLLARvaexpr] = ACTIONS(1441), + [anon_sym_true] = ACTIONS(1441), + [anon_sym_false] = ACTIONS(1441), + [anon_sym_null] = ACTIONS(1441), + [anon_sym_DOLLARvacount] = ACTIONS(1441), + [anon_sym_DOLLARappend] = ACTIONS(1441), + [anon_sym_DOLLARconcat] = ACTIONS(1441), + [anon_sym_DOLLAReval] = ACTIONS(1441), + [anon_sym_DOLLARis_const] = ACTIONS(1441), + [anon_sym_DOLLARsizeof] = ACTIONS(1441), + [anon_sym_DOLLARstringify] = ACTIONS(1441), + [anon_sym_DOLLARand] = ACTIONS(1441), + [anon_sym_DOLLARdefined] = ACTIONS(1441), + [anon_sym_DOLLARembed] = ACTIONS(1441), + [anon_sym_DOLLARor] = ACTIONS(1441), + [anon_sym_DOLLARfeature] = ACTIONS(1441), + [anon_sym_DOLLARassignable] = ACTIONS(1441), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_TILDE] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(1443), + [anon_sym_DASH_DASH] = ACTIONS(1443), + [anon_sym_typeid] = ACTIONS(1441), + [anon_sym_LBRACE_PIPE] = ACTIONS(1443), + [anon_sym_void] = ACTIONS(1441), + [anon_sym_bool] = ACTIONS(1441), + [anon_sym_char] = ACTIONS(1441), + [anon_sym_ichar] = ACTIONS(1441), + [anon_sym_short] = ACTIONS(1441), + [anon_sym_ushort] = ACTIONS(1441), + [anon_sym_uint] = ACTIONS(1441), + [anon_sym_long] = ACTIONS(1441), + [anon_sym_ulong] = ACTIONS(1441), + [anon_sym_int128] = ACTIONS(1441), + [anon_sym_uint128] = ACTIONS(1441), + [anon_sym_float] = ACTIONS(1441), + [anon_sym_double] = ACTIONS(1441), + [anon_sym_float16] = ACTIONS(1441), + [anon_sym_bfloat16] = ACTIONS(1441), + [anon_sym_float128] = ACTIONS(1441), + [anon_sym_iptr] = ACTIONS(1441), + [anon_sym_uptr] = ACTIONS(1441), + [anon_sym_isz] = ACTIONS(1441), + [anon_sym_usz] = ACTIONS(1441), + [anon_sym_anyfault] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_DOLLARtypeof] = ACTIONS(1441), + [anon_sym_DOLLARtypefrom] = ACTIONS(1441), + [anon_sym_DOLLARvatype] = ACTIONS(1441), + [anon_sym_DOLLARevaltype] = ACTIONS(1441), + [sym_real_literal] = ACTIONS(1443), }, [456] = { [sym_line_comment] = STATE(456), [sym_doc_comment] = STATE(456), [sym_block_comment] = STATE(456), - [sym_ident] = ACTIONS(1624), - [sym_integer_literal] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1626), - [anon_sym_DQUOTE] = ACTIONS(1626), - [anon_sym_BQUOTE] = ACTIONS(1626), - [sym_bytes_literal] = ACTIONS(1626), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1624), - [sym_at_ident] = ACTIONS(1626), - [sym_hash_ident] = ACTIONS(1626), - [sym_type_ident] = ACTIONS(1626), - [sym_ct_type_ident] = ACTIONS(1626), - [sym_const_ident] = ACTIONS(1624), - [sym_builtin] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(1626), - [anon_sym_AMP] = ACTIONS(1624), - [anon_sym_static] = ACTIONS(1624), - [anon_sym_tlocal] = ACTIONS(1624), - [anon_sym_SEMI] = ACTIONS(1626), - [anon_sym_fn] = ACTIONS(1624), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1626), - [anon_sym_const] = ACTIONS(1624), - [anon_sym_var] = ACTIONS(1624), - [anon_sym_return] = ACTIONS(1624), - [anon_sym_continue] = ACTIONS(1624), - [anon_sym_break] = ACTIONS(1624), - [anon_sym_defer] = ACTIONS(1624), - [anon_sym_assert] = ACTIONS(1624), - [anon_sym_case] = ACTIONS(1624), - [anon_sym_default] = ACTIONS(1624), - [anon_sym_nextcase] = ACTIONS(1624), - [anon_sym_switch] = ACTIONS(1624), - [anon_sym_AMP_AMP] = ACTIONS(1626), - [anon_sym_if] = ACTIONS(1624), - [anon_sym_for] = ACTIONS(1624), - [anon_sym_foreach] = ACTIONS(1624), - [anon_sym_foreach_r] = ACTIONS(1624), - [anon_sym_while] = ACTIONS(1624), - [anon_sym_do] = ACTIONS(1624), - [anon_sym_int] = ACTIONS(1624), - [anon_sym_PLUS] = ACTIONS(1624), - [anon_sym_DASH] = ACTIONS(1624), - [anon_sym_STAR] = ACTIONS(1626), - [anon_sym_asm] = ACTIONS(1624), - [anon_sym_DOLLARassert] = ACTIONS(1624), - [anon_sym_DOLLARerror] = ACTIONS(1624), - [anon_sym_DOLLARecho] = ACTIONS(1624), - [anon_sym_DOLLARif] = ACTIONS(1624), - [anon_sym_DOLLARswitch] = ACTIONS(1624), - [anon_sym_DOLLARfor] = ACTIONS(1624), - [anon_sym_DOLLARforeach] = ACTIONS(1624), - [anon_sym_DOLLARalignof] = ACTIONS(1624), - [anon_sym_DOLLARextnameof] = ACTIONS(1624), - [anon_sym_DOLLARnameof] = ACTIONS(1624), - [anon_sym_DOLLARoffsetof] = ACTIONS(1624), - [anon_sym_DOLLARqnameof] = ACTIONS(1624), - [anon_sym_DOLLARvaconst] = ACTIONS(1624), - [anon_sym_DOLLARvaarg] = ACTIONS(1624), - [anon_sym_DOLLARvaref] = ACTIONS(1624), - [anon_sym_DOLLARvaexpr] = ACTIONS(1624), - [anon_sym_true] = ACTIONS(1624), - [anon_sym_false] = ACTIONS(1624), - [anon_sym_null] = ACTIONS(1624), - [anon_sym_DOLLARvacount] = ACTIONS(1624), - [anon_sym_DOLLARappend] = ACTIONS(1624), - [anon_sym_DOLLARconcat] = ACTIONS(1624), - [anon_sym_DOLLAReval] = ACTIONS(1624), - [anon_sym_DOLLARis_const] = ACTIONS(1624), - [anon_sym_DOLLARsizeof] = ACTIONS(1624), - [anon_sym_DOLLARstringify] = ACTIONS(1624), - [anon_sym_DOLLARand] = ACTIONS(1624), - [anon_sym_DOLLARdefined] = ACTIONS(1624), - [anon_sym_DOLLARembed] = ACTIONS(1624), - [anon_sym_DOLLARor] = ACTIONS(1624), - [anon_sym_DOLLARfeature] = ACTIONS(1624), - [anon_sym_DOLLARassignable] = ACTIONS(1624), - [anon_sym_BANG] = ACTIONS(1626), - [anon_sym_TILDE] = ACTIONS(1626), - [anon_sym_PLUS_PLUS] = ACTIONS(1626), - [anon_sym_DASH_DASH] = ACTIONS(1626), - [anon_sym_typeid] = ACTIONS(1624), - [anon_sym_LBRACE_PIPE] = ACTIONS(1626), - [anon_sym_PIPE_RBRACE] = ACTIONS(1626), - [anon_sym_void] = ACTIONS(1624), - [anon_sym_bool] = ACTIONS(1624), - [anon_sym_char] = ACTIONS(1624), - [anon_sym_ichar] = ACTIONS(1624), - [anon_sym_short] = ACTIONS(1624), - [anon_sym_ushort] = ACTIONS(1624), - [anon_sym_uint] = ACTIONS(1624), - [anon_sym_long] = ACTIONS(1624), - [anon_sym_ulong] = ACTIONS(1624), - [anon_sym_int128] = ACTIONS(1624), - [anon_sym_uint128] = ACTIONS(1624), - [anon_sym_float] = ACTIONS(1624), - [anon_sym_double] = ACTIONS(1624), - [anon_sym_float16] = ACTIONS(1624), - [anon_sym_bfloat16] = ACTIONS(1624), - [anon_sym_float128] = ACTIONS(1624), - [anon_sym_iptr] = ACTIONS(1624), - [anon_sym_uptr] = ACTIONS(1624), - [anon_sym_isz] = ACTIONS(1624), - [anon_sym_usz] = ACTIONS(1624), - [anon_sym_anyfault] = ACTIONS(1624), - [anon_sym_any] = ACTIONS(1624), - [anon_sym_DOLLARtypeof] = ACTIONS(1624), - [anon_sym_DOLLARtypefrom] = ACTIONS(1624), - [anon_sym_DOLLARvatype] = ACTIONS(1624), - [anon_sym_DOLLARevaltype] = ACTIONS(1624), - [sym_real_literal] = ACTIONS(1626), + [sym_else_part] = STATE(688), + [sym_ident] = ACTIONS(1343), + [sym_integer_literal] = ACTIONS(1345), + [anon_sym_SQUOTE] = ACTIONS(1345), + [anon_sym_DQUOTE] = ACTIONS(1345), + [anon_sym_BQUOTE] = ACTIONS(1345), + [sym_bytes_literal] = ACTIONS(1345), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1343), + [sym_at_ident] = ACTIONS(1345), + [sym_hash_ident] = ACTIONS(1345), + [sym_type_ident] = ACTIONS(1345), + [sym_ct_type_ident] = ACTIONS(1345), + [sym_const_ident] = ACTIONS(1343), + [sym_builtin] = ACTIONS(1345), + [anon_sym_LPAREN] = ACTIONS(1345), + [anon_sym_AMP] = ACTIONS(1343), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_tlocal] = ACTIONS(1343), + [anon_sym_SEMI] = ACTIONS(1345), + [anon_sym_fn] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1343), + [anon_sym_const] = ACTIONS(1343), + [anon_sym_var] = ACTIONS(1343), + [anon_sym_return] = ACTIONS(1343), + [anon_sym_continue] = ACTIONS(1343), + [anon_sym_break] = ACTIONS(1343), + [anon_sym_defer] = ACTIONS(1343), + [anon_sym_assert] = ACTIONS(1343), + [anon_sym_nextcase] = ACTIONS(1343), + [anon_sym_switch] = ACTIONS(1343), + [anon_sym_AMP_AMP] = ACTIONS(1345), + [anon_sym_if] = ACTIONS(1343), + [anon_sym_else] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1343), + [anon_sym_foreach] = ACTIONS(1343), + [anon_sym_foreach_r] = ACTIONS(1343), + [anon_sym_while] = ACTIONS(1343), + [anon_sym_do] = ACTIONS(1343), + [anon_sym_int] = ACTIONS(1343), + [anon_sym_PLUS] = ACTIONS(1343), + [anon_sym_DASH] = ACTIONS(1343), + [anon_sym_STAR] = ACTIONS(1345), + [anon_sym_asm] = ACTIONS(1343), + [anon_sym_DOLLARassert] = ACTIONS(1343), + [anon_sym_DOLLARerror] = ACTIONS(1343), + [anon_sym_DOLLARecho] = ACTIONS(1343), + [anon_sym_DOLLARif] = ACTIONS(1343), + [anon_sym_DOLLARswitch] = ACTIONS(1343), + [anon_sym_DOLLARfor] = ACTIONS(1343), + [anon_sym_DOLLARforeach] = ACTIONS(1343), + [anon_sym_DOLLARendforeach] = ACTIONS(1343), + [anon_sym_DOLLARalignof] = ACTIONS(1343), + [anon_sym_DOLLARextnameof] = ACTIONS(1343), + [anon_sym_DOLLARnameof] = ACTIONS(1343), + [anon_sym_DOLLARoffsetof] = ACTIONS(1343), + [anon_sym_DOLLARqnameof] = ACTIONS(1343), + [anon_sym_DOLLARvaconst] = ACTIONS(1343), + [anon_sym_DOLLARvaarg] = ACTIONS(1343), + [anon_sym_DOLLARvaref] = ACTIONS(1343), + [anon_sym_DOLLARvaexpr] = ACTIONS(1343), + [anon_sym_true] = ACTIONS(1343), + [anon_sym_false] = ACTIONS(1343), + [anon_sym_null] = ACTIONS(1343), + [anon_sym_DOLLARvacount] = ACTIONS(1343), + [anon_sym_DOLLARappend] = ACTIONS(1343), + [anon_sym_DOLLARconcat] = ACTIONS(1343), + [anon_sym_DOLLAReval] = ACTIONS(1343), + [anon_sym_DOLLARis_const] = ACTIONS(1343), + [anon_sym_DOLLARsizeof] = ACTIONS(1343), + [anon_sym_DOLLARstringify] = ACTIONS(1343), + [anon_sym_DOLLARand] = ACTIONS(1343), + [anon_sym_DOLLARdefined] = ACTIONS(1343), + [anon_sym_DOLLARembed] = ACTIONS(1343), + [anon_sym_DOLLARor] = ACTIONS(1343), + [anon_sym_DOLLARfeature] = ACTIONS(1343), + [anon_sym_DOLLARassignable] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(1345), + [anon_sym_TILDE] = ACTIONS(1345), + [anon_sym_PLUS_PLUS] = ACTIONS(1345), + [anon_sym_DASH_DASH] = ACTIONS(1345), + [anon_sym_typeid] = ACTIONS(1343), + [anon_sym_LBRACE_PIPE] = ACTIONS(1345), + [anon_sym_void] = ACTIONS(1343), + [anon_sym_bool] = ACTIONS(1343), + [anon_sym_char] = ACTIONS(1343), + [anon_sym_ichar] = ACTIONS(1343), + [anon_sym_short] = ACTIONS(1343), + [anon_sym_ushort] = ACTIONS(1343), + [anon_sym_uint] = ACTIONS(1343), + [anon_sym_long] = ACTIONS(1343), + [anon_sym_ulong] = ACTIONS(1343), + [anon_sym_int128] = ACTIONS(1343), + [anon_sym_uint128] = ACTIONS(1343), + [anon_sym_float] = ACTIONS(1343), + [anon_sym_double] = ACTIONS(1343), + [anon_sym_float16] = ACTIONS(1343), + [anon_sym_bfloat16] = ACTIONS(1343), + [anon_sym_float128] = ACTIONS(1343), + [anon_sym_iptr] = ACTIONS(1343), + [anon_sym_uptr] = ACTIONS(1343), + [anon_sym_isz] = ACTIONS(1343), + [anon_sym_usz] = ACTIONS(1343), + [anon_sym_anyfault] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_DOLLARtypeof] = ACTIONS(1343), + [anon_sym_DOLLARtypefrom] = ACTIONS(1343), + [anon_sym_DOLLARvatype] = ACTIONS(1343), + [anon_sym_DOLLARevaltype] = ACTIONS(1343), + [sym_real_literal] = ACTIONS(1345), }, [457] = { [sym_line_comment] = STATE(457), [sym_doc_comment] = STATE(457), [sym_block_comment] = STATE(457), - [sym_ident] = ACTIONS(1628), - [sym_integer_literal] = ACTIONS(1630), - [anon_sym_SQUOTE] = ACTIONS(1630), - [anon_sym_DQUOTE] = ACTIONS(1630), - [anon_sym_BQUOTE] = ACTIONS(1630), - [sym_bytes_literal] = ACTIONS(1630), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1628), - [sym_at_ident] = ACTIONS(1630), - [sym_hash_ident] = ACTIONS(1630), - [sym_type_ident] = ACTIONS(1630), - [sym_ct_type_ident] = ACTIONS(1630), - [sym_const_ident] = ACTIONS(1628), - [sym_builtin] = ACTIONS(1630), - [anon_sym_LPAREN] = ACTIONS(1630), - [anon_sym_AMP] = ACTIONS(1628), - [anon_sym_static] = ACTIONS(1628), - [anon_sym_tlocal] = ACTIONS(1628), - [anon_sym_SEMI] = ACTIONS(1630), - [anon_sym_fn] = ACTIONS(1628), - [anon_sym_LBRACE] = ACTIONS(1628), - [anon_sym_RBRACE] = ACTIONS(1630), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_var] = ACTIONS(1628), - [anon_sym_return] = ACTIONS(1628), - [anon_sym_continue] = ACTIONS(1628), - [anon_sym_break] = ACTIONS(1628), - [anon_sym_defer] = ACTIONS(1628), - [anon_sym_assert] = ACTIONS(1628), - [anon_sym_case] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1628), - [anon_sym_nextcase] = ACTIONS(1628), - [anon_sym_switch] = ACTIONS(1628), - [anon_sym_AMP_AMP] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1628), - [anon_sym_for] = ACTIONS(1628), - [anon_sym_foreach] = ACTIONS(1628), - [anon_sym_foreach_r] = ACTIONS(1628), - [anon_sym_while] = ACTIONS(1628), - [anon_sym_do] = ACTIONS(1628), - [anon_sym_int] = ACTIONS(1628), - [anon_sym_PLUS] = ACTIONS(1628), - [anon_sym_DASH] = ACTIONS(1628), - [anon_sym_STAR] = ACTIONS(1630), - [anon_sym_asm] = ACTIONS(1628), - [anon_sym_DOLLARassert] = ACTIONS(1628), - [anon_sym_DOLLARerror] = ACTIONS(1628), - [anon_sym_DOLLARecho] = ACTIONS(1628), - [anon_sym_DOLLARif] = ACTIONS(1628), - [anon_sym_DOLLARswitch] = ACTIONS(1628), - [anon_sym_DOLLARfor] = ACTIONS(1628), - [anon_sym_DOLLARforeach] = ACTIONS(1628), - [anon_sym_DOLLARalignof] = ACTIONS(1628), - [anon_sym_DOLLARextnameof] = ACTIONS(1628), - [anon_sym_DOLLARnameof] = ACTIONS(1628), - [anon_sym_DOLLARoffsetof] = ACTIONS(1628), - [anon_sym_DOLLARqnameof] = ACTIONS(1628), - [anon_sym_DOLLARvaconst] = ACTIONS(1628), - [anon_sym_DOLLARvaarg] = ACTIONS(1628), - [anon_sym_DOLLARvaref] = ACTIONS(1628), - [anon_sym_DOLLARvaexpr] = ACTIONS(1628), - [anon_sym_true] = ACTIONS(1628), - [anon_sym_false] = ACTIONS(1628), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_DOLLARvacount] = ACTIONS(1628), - [anon_sym_DOLLARappend] = ACTIONS(1628), - [anon_sym_DOLLARconcat] = ACTIONS(1628), - [anon_sym_DOLLAReval] = ACTIONS(1628), - [anon_sym_DOLLARis_const] = ACTIONS(1628), - [anon_sym_DOLLARsizeof] = ACTIONS(1628), - [anon_sym_DOLLARstringify] = ACTIONS(1628), - [anon_sym_DOLLARand] = ACTIONS(1628), - [anon_sym_DOLLARdefined] = ACTIONS(1628), - [anon_sym_DOLLARembed] = ACTIONS(1628), - [anon_sym_DOLLARor] = ACTIONS(1628), - [anon_sym_DOLLARfeature] = ACTIONS(1628), - [anon_sym_DOLLARassignable] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1630), - [anon_sym_TILDE] = ACTIONS(1630), - [anon_sym_PLUS_PLUS] = ACTIONS(1630), - [anon_sym_DASH_DASH] = ACTIONS(1630), - [anon_sym_typeid] = ACTIONS(1628), - [anon_sym_LBRACE_PIPE] = ACTIONS(1630), - [anon_sym_PIPE_RBRACE] = ACTIONS(1630), - [anon_sym_void] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_ichar] = ACTIONS(1628), - [anon_sym_short] = ACTIONS(1628), - [anon_sym_ushort] = ACTIONS(1628), - [anon_sym_uint] = ACTIONS(1628), - [anon_sym_long] = ACTIONS(1628), - [anon_sym_ulong] = ACTIONS(1628), - [anon_sym_int128] = ACTIONS(1628), - [anon_sym_uint128] = ACTIONS(1628), - [anon_sym_float] = ACTIONS(1628), - [anon_sym_double] = ACTIONS(1628), - [anon_sym_float16] = ACTIONS(1628), - [anon_sym_bfloat16] = ACTIONS(1628), - [anon_sym_float128] = ACTIONS(1628), - [anon_sym_iptr] = ACTIONS(1628), - [anon_sym_uptr] = ACTIONS(1628), - [anon_sym_isz] = ACTIONS(1628), - [anon_sym_usz] = ACTIONS(1628), - [anon_sym_anyfault] = ACTIONS(1628), - [anon_sym_any] = ACTIONS(1628), - [anon_sym_DOLLARtypeof] = ACTIONS(1628), - [anon_sym_DOLLARtypefrom] = ACTIONS(1628), - [anon_sym_DOLLARvatype] = ACTIONS(1628), - [anon_sym_DOLLARevaltype] = ACTIONS(1628), - [sym_real_literal] = ACTIONS(1630), + [sym_ident] = ACTIONS(1553), + [sym_integer_literal] = ACTIONS(1555), + [anon_sym_SQUOTE] = ACTIONS(1555), + [anon_sym_DQUOTE] = ACTIONS(1555), + [anon_sym_BQUOTE] = ACTIONS(1555), + [sym_bytes_literal] = ACTIONS(1555), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1553), + [sym_at_ident] = ACTIONS(1555), + [sym_hash_ident] = ACTIONS(1555), + [sym_type_ident] = ACTIONS(1555), + [sym_ct_type_ident] = ACTIONS(1555), + [sym_const_ident] = ACTIONS(1553), + [sym_builtin] = ACTIONS(1555), + [anon_sym_LPAREN] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1553), + [anon_sym_static] = ACTIONS(1553), + [anon_sym_tlocal] = ACTIONS(1553), + [anon_sym_SEMI] = ACTIONS(1555), + [anon_sym_fn] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1553), + [anon_sym_const] = ACTIONS(1553), + [anon_sym_var] = ACTIONS(1553), + [anon_sym_return] = ACTIONS(1553), + [anon_sym_continue] = ACTIONS(1553), + [anon_sym_break] = ACTIONS(1553), + [anon_sym_defer] = ACTIONS(1553), + [anon_sym_assert] = ACTIONS(1553), + [anon_sym_nextcase] = ACTIONS(1553), + [anon_sym_switch] = ACTIONS(1553), + [anon_sym_AMP_AMP] = ACTIONS(1555), + [anon_sym_if] = ACTIONS(1553), + [anon_sym_for] = ACTIONS(1553), + [anon_sym_foreach] = ACTIONS(1553), + [anon_sym_foreach_r] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1553), + [anon_sym_do] = ACTIONS(1553), + [anon_sym_int] = ACTIONS(1553), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1555), + [anon_sym_asm] = ACTIONS(1553), + [anon_sym_DOLLARassert] = ACTIONS(1553), + [anon_sym_DOLLARerror] = ACTIONS(1553), + [anon_sym_DOLLARecho] = ACTIONS(1553), + [anon_sym_DOLLARif] = ACTIONS(1553), + [anon_sym_DOLLARcase] = ACTIONS(1553), + [anon_sym_DOLLARdefault] = ACTIONS(1553), + [anon_sym_DOLLARswitch] = ACTIONS(1553), + [anon_sym_DOLLARendswitch] = ACTIONS(1553), + [anon_sym_DOLLARfor] = ACTIONS(1553), + [anon_sym_DOLLARforeach] = ACTIONS(1553), + [anon_sym_DOLLARalignof] = ACTIONS(1553), + [anon_sym_DOLLARextnameof] = ACTIONS(1553), + [anon_sym_DOLLARnameof] = ACTIONS(1553), + [anon_sym_DOLLARoffsetof] = ACTIONS(1553), + [anon_sym_DOLLARqnameof] = ACTIONS(1553), + [anon_sym_DOLLARvaconst] = ACTIONS(1553), + [anon_sym_DOLLARvaarg] = ACTIONS(1553), + [anon_sym_DOLLARvaref] = ACTIONS(1553), + [anon_sym_DOLLARvaexpr] = ACTIONS(1553), + [anon_sym_true] = ACTIONS(1553), + [anon_sym_false] = ACTIONS(1553), + [anon_sym_null] = ACTIONS(1553), + [anon_sym_DOLLARvacount] = ACTIONS(1553), + [anon_sym_DOLLARappend] = ACTIONS(1553), + [anon_sym_DOLLARconcat] = ACTIONS(1553), + [anon_sym_DOLLAReval] = ACTIONS(1553), + [anon_sym_DOLLARis_const] = ACTIONS(1553), + [anon_sym_DOLLARsizeof] = ACTIONS(1553), + [anon_sym_DOLLARstringify] = ACTIONS(1553), + [anon_sym_DOLLARand] = ACTIONS(1553), + [anon_sym_DOLLARdefined] = ACTIONS(1553), + [anon_sym_DOLLARembed] = ACTIONS(1553), + [anon_sym_DOLLARor] = ACTIONS(1553), + [anon_sym_DOLLARfeature] = ACTIONS(1553), + [anon_sym_DOLLARassignable] = ACTIONS(1553), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_TILDE] = ACTIONS(1555), + [anon_sym_PLUS_PLUS] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(1555), + [anon_sym_typeid] = ACTIONS(1553), + [anon_sym_LBRACE_PIPE] = ACTIONS(1555), + [anon_sym_void] = ACTIONS(1553), + [anon_sym_bool] = ACTIONS(1553), + [anon_sym_char] = ACTIONS(1553), + [anon_sym_ichar] = ACTIONS(1553), + [anon_sym_short] = ACTIONS(1553), + [anon_sym_ushort] = ACTIONS(1553), + [anon_sym_uint] = ACTIONS(1553), + [anon_sym_long] = ACTIONS(1553), + [anon_sym_ulong] = ACTIONS(1553), + [anon_sym_int128] = ACTIONS(1553), + [anon_sym_uint128] = ACTIONS(1553), + [anon_sym_float] = ACTIONS(1553), + [anon_sym_double] = ACTIONS(1553), + [anon_sym_float16] = ACTIONS(1553), + [anon_sym_bfloat16] = ACTIONS(1553), + [anon_sym_float128] = ACTIONS(1553), + [anon_sym_iptr] = ACTIONS(1553), + [anon_sym_uptr] = ACTIONS(1553), + [anon_sym_isz] = ACTIONS(1553), + [anon_sym_usz] = ACTIONS(1553), + [anon_sym_anyfault] = ACTIONS(1553), + [anon_sym_any] = ACTIONS(1553), + [anon_sym_DOLLARtypeof] = ACTIONS(1553), + [anon_sym_DOLLARtypefrom] = ACTIONS(1553), + [anon_sym_DOLLARvatype] = ACTIONS(1553), + [anon_sym_DOLLARevaltype] = ACTIONS(1553), + [sym_real_literal] = ACTIONS(1555), }, [458] = { [sym_line_comment] = STATE(458), [sym_doc_comment] = STATE(458), [sym_block_comment] = STATE(458), - [sym_ident] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(1634), - [anon_sym_DQUOTE] = ACTIONS(1634), - [anon_sym_BQUOTE] = ACTIONS(1634), - [sym_bytes_literal] = ACTIONS(1634), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1632), - [sym_at_ident] = ACTIONS(1634), - [sym_hash_ident] = ACTIONS(1634), - [sym_type_ident] = ACTIONS(1634), - [sym_ct_type_ident] = ACTIONS(1634), - [sym_const_ident] = ACTIONS(1632), - [sym_builtin] = ACTIONS(1634), - [anon_sym_LPAREN] = ACTIONS(1634), - [anon_sym_AMP] = ACTIONS(1632), - [anon_sym_static] = ACTIONS(1632), - [anon_sym_tlocal] = ACTIONS(1632), - [anon_sym_SEMI] = ACTIONS(1634), - [anon_sym_fn] = ACTIONS(1632), - [anon_sym_LBRACE] = ACTIONS(1632), - [anon_sym_RBRACE] = ACTIONS(1634), - [anon_sym_const] = ACTIONS(1632), - [anon_sym_var] = ACTIONS(1632), - [anon_sym_return] = ACTIONS(1632), - [anon_sym_continue] = ACTIONS(1632), - [anon_sym_break] = ACTIONS(1632), - [anon_sym_defer] = ACTIONS(1632), - [anon_sym_assert] = ACTIONS(1632), - [anon_sym_case] = ACTIONS(1632), - [anon_sym_default] = ACTIONS(1632), - [anon_sym_nextcase] = ACTIONS(1632), - [anon_sym_switch] = ACTIONS(1632), - [anon_sym_AMP_AMP] = ACTIONS(1634), - [anon_sym_if] = ACTIONS(1632), - [anon_sym_for] = ACTIONS(1632), - [anon_sym_foreach] = ACTIONS(1632), - [anon_sym_foreach_r] = ACTIONS(1632), - [anon_sym_while] = ACTIONS(1632), - [anon_sym_do] = ACTIONS(1632), - [anon_sym_int] = ACTIONS(1632), - [anon_sym_PLUS] = ACTIONS(1632), - [anon_sym_DASH] = ACTIONS(1632), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_asm] = ACTIONS(1632), - [anon_sym_DOLLARassert] = ACTIONS(1632), - [anon_sym_DOLLARerror] = ACTIONS(1632), - [anon_sym_DOLLARecho] = ACTIONS(1632), - [anon_sym_DOLLARif] = ACTIONS(1632), - [anon_sym_DOLLARswitch] = ACTIONS(1632), - [anon_sym_DOLLARfor] = ACTIONS(1632), - [anon_sym_DOLLARforeach] = ACTIONS(1632), - [anon_sym_DOLLARalignof] = ACTIONS(1632), - [anon_sym_DOLLARextnameof] = ACTIONS(1632), - [anon_sym_DOLLARnameof] = ACTIONS(1632), - [anon_sym_DOLLARoffsetof] = ACTIONS(1632), - [anon_sym_DOLLARqnameof] = ACTIONS(1632), - [anon_sym_DOLLARvaconst] = ACTIONS(1632), - [anon_sym_DOLLARvaarg] = ACTIONS(1632), - [anon_sym_DOLLARvaref] = ACTIONS(1632), - [anon_sym_DOLLARvaexpr] = ACTIONS(1632), - [anon_sym_true] = ACTIONS(1632), - [anon_sym_false] = ACTIONS(1632), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_DOLLARvacount] = ACTIONS(1632), - [anon_sym_DOLLARappend] = ACTIONS(1632), - [anon_sym_DOLLARconcat] = ACTIONS(1632), - [anon_sym_DOLLAReval] = ACTIONS(1632), - [anon_sym_DOLLARis_const] = ACTIONS(1632), - [anon_sym_DOLLARsizeof] = ACTIONS(1632), - [anon_sym_DOLLARstringify] = ACTIONS(1632), - [anon_sym_DOLLARand] = ACTIONS(1632), - [anon_sym_DOLLARdefined] = ACTIONS(1632), - [anon_sym_DOLLARembed] = ACTIONS(1632), - [anon_sym_DOLLARor] = ACTIONS(1632), - [anon_sym_DOLLARfeature] = ACTIONS(1632), - [anon_sym_DOLLARassignable] = ACTIONS(1632), - [anon_sym_BANG] = ACTIONS(1634), - [anon_sym_TILDE] = ACTIONS(1634), - [anon_sym_PLUS_PLUS] = ACTIONS(1634), - [anon_sym_DASH_DASH] = ACTIONS(1634), - [anon_sym_typeid] = ACTIONS(1632), - [anon_sym_LBRACE_PIPE] = ACTIONS(1634), - [anon_sym_PIPE_RBRACE] = ACTIONS(1634), - [anon_sym_void] = ACTIONS(1632), - [anon_sym_bool] = ACTIONS(1632), - [anon_sym_char] = ACTIONS(1632), - [anon_sym_ichar] = ACTIONS(1632), - [anon_sym_short] = ACTIONS(1632), - [anon_sym_ushort] = ACTIONS(1632), - [anon_sym_uint] = ACTIONS(1632), - [anon_sym_long] = ACTIONS(1632), - [anon_sym_ulong] = ACTIONS(1632), - [anon_sym_int128] = ACTIONS(1632), - [anon_sym_uint128] = ACTIONS(1632), - [anon_sym_float] = ACTIONS(1632), - [anon_sym_double] = ACTIONS(1632), - [anon_sym_float16] = ACTIONS(1632), - [anon_sym_bfloat16] = ACTIONS(1632), - [anon_sym_float128] = ACTIONS(1632), - [anon_sym_iptr] = ACTIONS(1632), - [anon_sym_uptr] = ACTIONS(1632), - [anon_sym_isz] = ACTIONS(1632), - [anon_sym_usz] = ACTIONS(1632), - [anon_sym_anyfault] = ACTIONS(1632), - [anon_sym_any] = ACTIONS(1632), - [anon_sym_DOLLARtypeof] = ACTIONS(1632), - [anon_sym_DOLLARtypefrom] = ACTIONS(1632), - [anon_sym_DOLLARvatype] = ACTIONS(1632), - [anon_sym_DOLLARevaltype] = ACTIONS(1632), - [sym_real_literal] = ACTIONS(1634), + [sym_ident] = ACTIONS(1473), + [sym_integer_literal] = ACTIONS(1475), + [anon_sym_SQUOTE] = ACTIONS(1475), + [anon_sym_DQUOTE] = ACTIONS(1475), + [anon_sym_BQUOTE] = ACTIONS(1475), + [sym_bytes_literal] = ACTIONS(1475), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1473), + [sym_at_ident] = ACTIONS(1475), + [sym_hash_ident] = ACTIONS(1475), + [sym_type_ident] = ACTIONS(1475), + [sym_ct_type_ident] = ACTIONS(1475), + [sym_const_ident] = ACTIONS(1473), + [sym_builtin] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1475), + [anon_sym_AMP] = ACTIONS(1473), + [anon_sym_static] = ACTIONS(1473), + [anon_sym_tlocal] = ACTIONS(1473), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_fn] = ACTIONS(1473), + [anon_sym_LBRACE] = ACTIONS(1473), + [anon_sym_const] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(1473), + [anon_sym_return] = ACTIONS(1473), + [anon_sym_continue] = ACTIONS(1473), + [anon_sym_break] = ACTIONS(1473), + [anon_sym_defer] = ACTIONS(1473), + [anon_sym_assert] = ACTIONS(1473), + [anon_sym_nextcase] = ACTIONS(1473), + [anon_sym_switch] = ACTIONS(1473), + [anon_sym_AMP_AMP] = ACTIONS(1475), + [anon_sym_if] = ACTIONS(1473), + [anon_sym_for] = ACTIONS(1473), + [anon_sym_foreach] = ACTIONS(1473), + [anon_sym_foreach_r] = ACTIONS(1473), + [anon_sym_while] = ACTIONS(1473), + [anon_sym_do] = ACTIONS(1473), + [anon_sym_int] = ACTIONS(1473), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1475), + [anon_sym_asm] = ACTIONS(1473), + [anon_sym_DOLLARassert] = ACTIONS(1473), + [anon_sym_DOLLARerror] = ACTIONS(1473), + [anon_sym_DOLLARecho] = ACTIONS(1473), + [anon_sym_DOLLARif] = ACTIONS(1473), + [anon_sym_DOLLARcase] = ACTIONS(1473), + [anon_sym_DOLLARdefault] = ACTIONS(1473), + [anon_sym_DOLLARswitch] = ACTIONS(1473), + [anon_sym_DOLLARendswitch] = ACTIONS(1473), + [anon_sym_DOLLARfor] = ACTIONS(1473), + [anon_sym_DOLLARforeach] = ACTIONS(1473), + [anon_sym_DOLLARalignof] = ACTIONS(1473), + [anon_sym_DOLLARextnameof] = ACTIONS(1473), + [anon_sym_DOLLARnameof] = ACTIONS(1473), + [anon_sym_DOLLARoffsetof] = ACTIONS(1473), + [anon_sym_DOLLARqnameof] = ACTIONS(1473), + [anon_sym_DOLLARvaconst] = ACTIONS(1473), + [anon_sym_DOLLARvaarg] = ACTIONS(1473), + [anon_sym_DOLLARvaref] = ACTIONS(1473), + [anon_sym_DOLLARvaexpr] = ACTIONS(1473), + [anon_sym_true] = ACTIONS(1473), + [anon_sym_false] = ACTIONS(1473), + [anon_sym_null] = ACTIONS(1473), + [anon_sym_DOLLARvacount] = ACTIONS(1473), + [anon_sym_DOLLARappend] = ACTIONS(1473), + [anon_sym_DOLLARconcat] = ACTIONS(1473), + [anon_sym_DOLLAReval] = ACTIONS(1473), + [anon_sym_DOLLARis_const] = ACTIONS(1473), + [anon_sym_DOLLARsizeof] = ACTIONS(1473), + [anon_sym_DOLLARstringify] = ACTIONS(1473), + [anon_sym_DOLLARand] = ACTIONS(1473), + [anon_sym_DOLLARdefined] = ACTIONS(1473), + [anon_sym_DOLLARembed] = ACTIONS(1473), + [anon_sym_DOLLARor] = ACTIONS(1473), + [anon_sym_DOLLARfeature] = ACTIONS(1473), + [anon_sym_DOLLARassignable] = ACTIONS(1473), + [anon_sym_BANG] = ACTIONS(1475), + [anon_sym_TILDE] = ACTIONS(1475), + [anon_sym_PLUS_PLUS] = ACTIONS(1475), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_typeid] = ACTIONS(1473), + [anon_sym_LBRACE_PIPE] = ACTIONS(1475), + [anon_sym_void] = ACTIONS(1473), + [anon_sym_bool] = ACTIONS(1473), + [anon_sym_char] = ACTIONS(1473), + [anon_sym_ichar] = ACTIONS(1473), + [anon_sym_short] = ACTIONS(1473), + [anon_sym_ushort] = ACTIONS(1473), + [anon_sym_uint] = ACTIONS(1473), + [anon_sym_long] = ACTIONS(1473), + [anon_sym_ulong] = ACTIONS(1473), + [anon_sym_int128] = ACTIONS(1473), + [anon_sym_uint128] = ACTIONS(1473), + [anon_sym_float] = ACTIONS(1473), + [anon_sym_double] = ACTIONS(1473), + [anon_sym_float16] = ACTIONS(1473), + [anon_sym_bfloat16] = ACTIONS(1473), + [anon_sym_float128] = ACTIONS(1473), + [anon_sym_iptr] = ACTIONS(1473), + [anon_sym_uptr] = ACTIONS(1473), + [anon_sym_isz] = ACTIONS(1473), + [anon_sym_usz] = ACTIONS(1473), + [anon_sym_anyfault] = ACTIONS(1473), + [anon_sym_any] = ACTIONS(1473), + [anon_sym_DOLLARtypeof] = ACTIONS(1473), + [anon_sym_DOLLARtypefrom] = ACTIONS(1473), + [anon_sym_DOLLARvatype] = ACTIONS(1473), + [anon_sym_DOLLARevaltype] = ACTIONS(1473), + [sym_real_literal] = ACTIONS(1475), }, [459] = { [sym_line_comment] = STATE(459), [sym_doc_comment] = STATE(459), [sym_block_comment] = STATE(459), - [sym_ident] = ACTIONS(1636), - [sym_integer_literal] = ACTIONS(1638), - [anon_sym_SQUOTE] = ACTIONS(1638), - [anon_sym_DQUOTE] = ACTIONS(1638), - [anon_sym_BQUOTE] = ACTIONS(1638), - [sym_bytes_literal] = ACTIONS(1638), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1636), - [sym_at_ident] = ACTIONS(1638), - [sym_hash_ident] = ACTIONS(1638), - [sym_type_ident] = ACTIONS(1638), - [sym_ct_type_ident] = ACTIONS(1638), - [sym_const_ident] = ACTIONS(1636), - [sym_builtin] = ACTIONS(1638), - [anon_sym_LPAREN] = ACTIONS(1638), - [anon_sym_AMP] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(1636), - [anon_sym_tlocal] = ACTIONS(1636), - [anon_sym_SEMI] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1636), - [anon_sym_LBRACE] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(1638), - [anon_sym_const] = ACTIONS(1636), - [anon_sym_var] = ACTIONS(1636), - [anon_sym_return] = ACTIONS(1636), - [anon_sym_continue] = ACTIONS(1636), - [anon_sym_break] = ACTIONS(1636), - [anon_sym_defer] = ACTIONS(1636), - [anon_sym_assert] = ACTIONS(1636), - [anon_sym_case] = ACTIONS(1636), - [anon_sym_default] = ACTIONS(1636), - [anon_sym_nextcase] = ACTIONS(1636), - [anon_sym_switch] = ACTIONS(1636), - [anon_sym_AMP_AMP] = ACTIONS(1638), - [anon_sym_if] = ACTIONS(1636), - [anon_sym_for] = ACTIONS(1636), - [anon_sym_foreach] = ACTIONS(1636), - [anon_sym_foreach_r] = ACTIONS(1636), - [anon_sym_while] = ACTIONS(1636), - [anon_sym_do] = ACTIONS(1636), - [anon_sym_int] = ACTIONS(1636), - [anon_sym_PLUS] = ACTIONS(1636), - [anon_sym_DASH] = ACTIONS(1636), - [anon_sym_STAR] = ACTIONS(1638), - [anon_sym_asm] = ACTIONS(1636), - [anon_sym_DOLLARassert] = ACTIONS(1636), - [anon_sym_DOLLARerror] = ACTIONS(1636), - [anon_sym_DOLLARecho] = ACTIONS(1636), - [anon_sym_DOLLARif] = ACTIONS(1636), - [anon_sym_DOLLARswitch] = ACTIONS(1636), - [anon_sym_DOLLARfor] = ACTIONS(1636), - [anon_sym_DOLLARforeach] = ACTIONS(1636), - [anon_sym_DOLLARalignof] = ACTIONS(1636), - [anon_sym_DOLLARextnameof] = ACTIONS(1636), - [anon_sym_DOLLARnameof] = ACTIONS(1636), - [anon_sym_DOLLARoffsetof] = ACTIONS(1636), - [anon_sym_DOLLARqnameof] = ACTIONS(1636), - [anon_sym_DOLLARvaconst] = ACTIONS(1636), - [anon_sym_DOLLARvaarg] = ACTIONS(1636), - [anon_sym_DOLLARvaref] = ACTIONS(1636), - [anon_sym_DOLLARvaexpr] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1636), - [anon_sym_false] = ACTIONS(1636), - [anon_sym_null] = ACTIONS(1636), - [anon_sym_DOLLARvacount] = ACTIONS(1636), - [anon_sym_DOLLARappend] = ACTIONS(1636), - [anon_sym_DOLLARconcat] = ACTIONS(1636), - [anon_sym_DOLLAReval] = ACTIONS(1636), - [anon_sym_DOLLARis_const] = ACTIONS(1636), - [anon_sym_DOLLARsizeof] = ACTIONS(1636), - [anon_sym_DOLLARstringify] = ACTIONS(1636), - [anon_sym_DOLLARand] = ACTIONS(1636), - [anon_sym_DOLLARdefined] = ACTIONS(1636), - [anon_sym_DOLLARembed] = ACTIONS(1636), - [anon_sym_DOLLARor] = ACTIONS(1636), - [anon_sym_DOLLARfeature] = ACTIONS(1636), - [anon_sym_DOLLARassignable] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1638), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_PLUS_PLUS] = ACTIONS(1638), - [anon_sym_DASH_DASH] = ACTIONS(1638), - [anon_sym_typeid] = ACTIONS(1636), - [anon_sym_LBRACE_PIPE] = ACTIONS(1638), - [anon_sym_PIPE_RBRACE] = ACTIONS(1638), - [anon_sym_void] = ACTIONS(1636), - [anon_sym_bool] = ACTIONS(1636), - [anon_sym_char] = ACTIONS(1636), - [anon_sym_ichar] = ACTIONS(1636), - [anon_sym_short] = ACTIONS(1636), - [anon_sym_ushort] = ACTIONS(1636), - [anon_sym_uint] = ACTIONS(1636), - [anon_sym_long] = ACTIONS(1636), - [anon_sym_ulong] = ACTIONS(1636), - [anon_sym_int128] = ACTIONS(1636), - [anon_sym_uint128] = ACTIONS(1636), - [anon_sym_float] = ACTIONS(1636), - [anon_sym_double] = ACTIONS(1636), - [anon_sym_float16] = ACTIONS(1636), - [anon_sym_bfloat16] = ACTIONS(1636), - [anon_sym_float128] = ACTIONS(1636), - [anon_sym_iptr] = ACTIONS(1636), - [anon_sym_uptr] = ACTIONS(1636), - [anon_sym_isz] = ACTIONS(1636), - [anon_sym_usz] = ACTIONS(1636), - [anon_sym_anyfault] = ACTIONS(1636), - [anon_sym_any] = ACTIONS(1636), - [anon_sym_DOLLARtypeof] = ACTIONS(1636), - [anon_sym_DOLLARtypefrom] = ACTIONS(1636), - [anon_sym_DOLLARvatype] = ACTIONS(1636), - [anon_sym_DOLLARevaltype] = ACTIONS(1636), - [sym_real_literal] = ACTIONS(1638), + [sym_ident] = ACTIONS(1355), + [sym_integer_literal] = ACTIONS(1357), + [anon_sym_SQUOTE] = ACTIONS(1357), + [anon_sym_DQUOTE] = ACTIONS(1357), + [anon_sym_BQUOTE] = ACTIONS(1357), + [sym_bytes_literal] = ACTIONS(1357), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1355), + [sym_at_ident] = ACTIONS(1357), + [sym_hash_ident] = ACTIONS(1357), + [sym_type_ident] = ACTIONS(1357), + [sym_ct_type_ident] = ACTIONS(1357), + [sym_const_ident] = ACTIONS(1355), + [sym_builtin] = ACTIONS(1357), + [anon_sym_LPAREN] = ACTIONS(1357), + [anon_sym_AMP] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1355), + [anon_sym_tlocal] = ACTIONS(1355), + [anon_sym_SEMI] = ACTIONS(1357), + [anon_sym_fn] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_const] = ACTIONS(1355), + [anon_sym_var] = ACTIONS(1355), + [anon_sym_return] = ACTIONS(1355), + [anon_sym_continue] = ACTIONS(1355), + [anon_sym_break] = ACTIONS(1355), + [anon_sym_defer] = ACTIONS(1355), + [anon_sym_assert] = ACTIONS(1355), + [anon_sym_nextcase] = ACTIONS(1355), + [anon_sym_switch] = ACTIONS(1355), + [anon_sym_AMP_AMP] = ACTIONS(1357), + [anon_sym_if] = ACTIONS(1355), + [anon_sym_else] = ACTIONS(1355), + [anon_sym_for] = ACTIONS(1355), + [anon_sym_foreach] = ACTIONS(1355), + [anon_sym_foreach_r] = ACTIONS(1355), + [anon_sym_while] = ACTIONS(1355), + [anon_sym_do] = ACTIONS(1355), + [anon_sym_int] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1355), + [anon_sym_DASH] = ACTIONS(1355), + [anon_sym_STAR] = ACTIONS(1357), + [anon_sym_asm] = ACTIONS(1355), + [anon_sym_DOLLARassert] = ACTIONS(1355), + [anon_sym_DOLLARerror] = ACTIONS(1355), + [anon_sym_DOLLARecho] = ACTIONS(1355), + [anon_sym_DOLLARif] = ACTIONS(1355), + [anon_sym_DOLLARendif] = ACTIONS(1355), + [anon_sym_DOLLARelse] = ACTIONS(1355), + [anon_sym_DOLLARswitch] = ACTIONS(1355), + [anon_sym_DOLLARfor] = ACTIONS(1355), + [anon_sym_DOLLARforeach] = ACTIONS(1355), + [anon_sym_DOLLARalignof] = ACTIONS(1355), + [anon_sym_DOLLARextnameof] = ACTIONS(1355), + [anon_sym_DOLLARnameof] = ACTIONS(1355), + [anon_sym_DOLLARoffsetof] = ACTIONS(1355), + [anon_sym_DOLLARqnameof] = ACTIONS(1355), + [anon_sym_DOLLARvaconst] = ACTIONS(1355), + [anon_sym_DOLLARvaarg] = ACTIONS(1355), + [anon_sym_DOLLARvaref] = ACTIONS(1355), + [anon_sym_DOLLARvaexpr] = ACTIONS(1355), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), + [anon_sym_null] = ACTIONS(1355), + [anon_sym_DOLLARvacount] = ACTIONS(1355), + [anon_sym_DOLLARappend] = ACTIONS(1355), + [anon_sym_DOLLARconcat] = ACTIONS(1355), + [anon_sym_DOLLAReval] = ACTIONS(1355), + [anon_sym_DOLLARis_const] = ACTIONS(1355), + [anon_sym_DOLLARsizeof] = ACTIONS(1355), + [anon_sym_DOLLARstringify] = ACTIONS(1355), + [anon_sym_DOLLARand] = ACTIONS(1355), + [anon_sym_DOLLARdefined] = ACTIONS(1355), + [anon_sym_DOLLARembed] = ACTIONS(1355), + [anon_sym_DOLLARor] = ACTIONS(1355), + [anon_sym_DOLLARfeature] = ACTIONS(1355), + [anon_sym_DOLLARassignable] = ACTIONS(1355), + [anon_sym_BANG] = ACTIONS(1357), + [anon_sym_TILDE] = ACTIONS(1357), + [anon_sym_PLUS_PLUS] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1357), + [anon_sym_typeid] = ACTIONS(1355), + [anon_sym_LBRACE_PIPE] = ACTIONS(1357), + [anon_sym_void] = ACTIONS(1355), + [anon_sym_bool] = ACTIONS(1355), + [anon_sym_char] = ACTIONS(1355), + [anon_sym_ichar] = ACTIONS(1355), + [anon_sym_short] = ACTIONS(1355), + [anon_sym_ushort] = ACTIONS(1355), + [anon_sym_uint] = ACTIONS(1355), + [anon_sym_long] = ACTIONS(1355), + [anon_sym_ulong] = ACTIONS(1355), + [anon_sym_int128] = ACTIONS(1355), + [anon_sym_uint128] = ACTIONS(1355), + [anon_sym_float] = ACTIONS(1355), + [anon_sym_double] = ACTIONS(1355), + [anon_sym_float16] = ACTIONS(1355), + [anon_sym_bfloat16] = ACTIONS(1355), + [anon_sym_float128] = ACTIONS(1355), + [anon_sym_iptr] = ACTIONS(1355), + [anon_sym_uptr] = ACTIONS(1355), + [anon_sym_isz] = ACTIONS(1355), + [anon_sym_usz] = ACTIONS(1355), + [anon_sym_anyfault] = ACTIONS(1355), + [anon_sym_any] = ACTIONS(1355), + [anon_sym_DOLLARtypeof] = ACTIONS(1355), + [anon_sym_DOLLARtypefrom] = ACTIONS(1355), + [anon_sym_DOLLARvatype] = ACTIONS(1355), + [anon_sym_DOLLARevaltype] = ACTIONS(1355), + [sym_real_literal] = ACTIONS(1357), }, [460] = { [sym_line_comment] = STATE(460), [sym_doc_comment] = STATE(460), [sym_block_comment] = STATE(460), - [sym_ident] = ACTIONS(1640), - [sym_integer_literal] = ACTIONS(1642), - [anon_sym_SQUOTE] = ACTIONS(1642), - [anon_sym_DQUOTE] = ACTIONS(1642), - [anon_sym_BQUOTE] = ACTIONS(1642), - [sym_bytes_literal] = ACTIONS(1642), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1640), - [sym_at_ident] = ACTIONS(1642), - [sym_hash_ident] = ACTIONS(1642), - [sym_type_ident] = ACTIONS(1642), - [sym_ct_type_ident] = ACTIONS(1642), - [sym_const_ident] = ACTIONS(1640), - [sym_builtin] = ACTIONS(1642), - [anon_sym_LPAREN] = ACTIONS(1642), - [anon_sym_AMP] = ACTIONS(1640), - [anon_sym_static] = ACTIONS(1640), - [anon_sym_tlocal] = ACTIONS(1640), - [anon_sym_SEMI] = ACTIONS(1642), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_LBRACE] = ACTIONS(1640), - [anon_sym_RBRACE] = ACTIONS(1642), - [anon_sym_const] = ACTIONS(1640), - [anon_sym_var] = ACTIONS(1640), - [anon_sym_return] = ACTIONS(1640), - [anon_sym_continue] = ACTIONS(1640), - [anon_sym_break] = ACTIONS(1640), - [anon_sym_defer] = ACTIONS(1640), - [anon_sym_assert] = ACTIONS(1640), - [anon_sym_case] = ACTIONS(1640), - [anon_sym_default] = ACTIONS(1640), - [anon_sym_nextcase] = ACTIONS(1640), - [anon_sym_switch] = ACTIONS(1640), - [anon_sym_AMP_AMP] = ACTIONS(1642), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1640), - [anon_sym_foreach] = ACTIONS(1640), - [anon_sym_foreach_r] = ACTIONS(1640), - [anon_sym_while] = ACTIONS(1640), - [anon_sym_do] = ACTIONS(1640), - [anon_sym_int] = ACTIONS(1640), - [anon_sym_PLUS] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1640), - [anon_sym_STAR] = ACTIONS(1642), - [anon_sym_asm] = ACTIONS(1640), - [anon_sym_DOLLARassert] = ACTIONS(1640), - [anon_sym_DOLLARerror] = ACTIONS(1640), - [anon_sym_DOLLARecho] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1640), - [anon_sym_DOLLARswitch] = ACTIONS(1640), - [anon_sym_DOLLARfor] = ACTIONS(1640), - [anon_sym_DOLLARforeach] = ACTIONS(1640), - [anon_sym_DOLLARalignof] = ACTIONS(1640), - [anon_sym_DOLLARextnameof] = ACTIONS(1640), - [anon_sym_DOLLARnameof] = ACTIONS(1640), - [anon_sym_DOLLARoffsetof] = ACTIONS(1640), - [anon_sym_DOLLARqnameof] = ACTIONS(1640), - [anon_sym_DOLLARvaconst] = ACTIONS(1640), - [anon_sym_DOLLARvaarg] = ACTIONS(1640), - [anon_sym_DOLLARvaref] = ACTIONS(1640), - [anon_sym_DOLLARvaexpr] = ACTIONS(1640), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_null] = ACTIONS(1640), - [anon_sym_DOLLARvacount] = ACTIONS(1640), - [anon_sym_DOLLARappend] = ACTIONS(1640), - [anon_sym_DOLLARconcat] = ACTIONS(1640), - [anon_sym_DOLLAReval] = ACTIONS(1640), - [anon_sym_DOLLARis_const] = ACTIONS(1640), - [anon_sym_DOLLARsizeof] = ACTIONS(1640), - [anon_sym_DOLLARstringify] = ACTIONS(1640), - [anon_sym_DOLLARand] = ACTIONS(1640), - [anon_sym_DOLLARdefined] = ACTIONS(1640), - [anon_sym_DOLLARembed] = ACTIONS(1640), - [anon_sym_DOLLARor] = ACTIONS(1640), - [anon_sym_DOLLARfeature] = ACTIONS(1640), - [anon_sym_DOLLARassignable] = ACTIONS(1640), - [anon_sym_BANG] = ACTIONS(1642), - [anon_sym_TILDE] = ACTIONS(1642), - [anon_sym_PLUS_PLUS] = ACTIONS(1642), - [anon_sym_DASH_DASH] = ACTIONS(1642), - [anon_sym_typeid] = ACTIONS(1640), - [anon_sym_LBRACE_PIPE] = ACTIONS(1642), - [anon_sym_PIPE_RBRACE] = ACTIONS(1642), - [anon_sym_void] = ACTIONS(1640), - [anon_sym_bool] = ACTIONS(1640), - [anon_sym_char] = ACTIONS(1640), - [anon_sym_ichar] = ACTIONS(1640), - [anon_sym_short] = ACTIONS(1640), - [anon_sym_ushort] = ACTIONS(1640), - [anon_sym_uint] = ACTIONS(1640), - [anon_sym_long] = ACTIONS(1640), - [anon_sym_ulong] = ACTIONS(1640), - [anon_sym_int128] = ACTIONS(1640), - [anon_sym_uint128] = ACTIONS(1640), - [anon_sym_float] = ACTIONS(1640), - [anon_sym_double] = ACTIONS(1640), - [anon_sym_float16] = ACTIONS(1640), - [anon_sym_bfloat16] = ACTIONS(1640), - [anon_sym_float128] = ACTIONS(1640), - [anon_sym_iptr] = ACTIONS(1640), - [anon_sym_uptr] = ACTIONS(1640), - [anon_sym_isz] = ACTIONS(1640), - [anon_sym_usz] = ACTIONS(1640), - [anon_sym_anyfault] = ACTIONS(1640), - [anon_sym_any] = ACTIONS(1640), - [anon_sym_DOLLARtypeof] = ACTIONS(1640), - [anon_sym_DOLLARtypefrom] = ACTIONS(1640), - [anon_sym_DOLLARvatype] = ACTIONS(1640), - [anon_sym_DOLLARevaltype] = ACTIONS(1640), - [sym_real_literal] = ACTIONS(1642), + [sym_ident] = ACTIONS(1629), + [sym_integer_literal] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1631), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_BQUOTE] = ACTIONS(1631), + [sym_bytes_literal] = ACTIONS(1631), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1629), + [sym_at_ident] = ACTIONS(1631), + [sym_hash_ident] = ACTIONS(1631), + [sym_type_ident] = ACTIONS(1631), + [sym_ct_type_ident] = ACTIONS(1631), + [sym_const_ident] = ACTIONS(1629), + [sym_builtin] = ACTIONS(1631), + [anon_sym_LPAREN] = ACTIONS(1631), + [anon_sym_AMP] = ACTIONS(1629), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_tlocal] = ACTIONS(1629), + [anon_sym_SEMI] = ACTIONS(1631), + [anon_sym_fn] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1629), + [anon_sym_const] = ACTIONS(1629), + [anon_sym_var] = ACTIONS(1629), + [anon_sym_return] = ACTIONS(1629), + [anon_sym_continue] = ACTIONS(1629), + [anon_sym_break] = ACTIONS(1629), + [anon_sym_defer] = ACTIONS(1629), + [anon_sym_assert] = ACTIONS(1629), + [anon_sym_nextcase] = ACTIONS(1629), + [anon_sym_switch] = ACTIONS(1629), + [anon_sym_AMP_AMP] = ACTIONS(1631), + [anon_sym_if] = ACTIONS(1629), + [anon_sym_for] = ACTIONS(1629), + [anon_sym_foreach] = ACTIONS(1629), + [anon_sym_foreach_r] = ACTIONS(1629), + [anon_sym_while] = ACTIONS(1629), + [anon_sym_do] = ACTIONS(1629), + [anon_sym_int] = ACTIONS(1629), + [anon_sym_PLUS] = ACTIONS(1629), + [anon_sym_DASH] = ACTIONS(1629), + [anon_sym_STAR] = ACTIONS(1631), + [anon_sym_asm] = ACTIONS(1629), + [anon_sym_DOLLARassert] = ACTIONS(1629), + [anon_sym_DOLLARerror] = ACTIONS(1629), + [anon_sym_DOLLARecho] = ACTIONS(1629), + [anon_sym_DOLLARif] = ACTIONS(1629), + [anon_sym_DOLLARcase] = ACTIONS(1629), + [anon_sym_DOLLARdefault] = ACTIONS(1629), + [anon_sym_DOLLARswitch] = ACTIONS(1629), + [anon_sym_DOLLARendswitch] = ACTIONS(1629), + [anon_sym_DOLLARfor] = ACTIONS(1629), + [anon_sym_DOLLARforeach] = ACTIONS(1629), + [anon_sym_DOLLARalignof] = ACTIONS(1629), + [anon_sym_DOLLARextnameof] = ACTIONS(1629), + [anon_sym_DOLLARnameof] = ACTIONS(1629), + [anon_sym_DOLLARoffsetof] = ACTIONS(1629), + [anon_sym_DOLLARqnameof] = ACTIONS(1629), + [anon_sym_DOLLARvaconst] = ACTIONS(1629), + [anon_sym_DOLLARvaarg] = ACTIONS(1629), + [anon_sym_DOLLARvaref] = ACTIONS(1629), + [anon_sym_DOLLARvaexpr] = ACTIONS(1629), + [anon_sym_true] = ACTIONS(1629), + [anon_sym_false] = ACTIONS(1629), + [anon_sym_null] = ACTIONS(1629), + [anon_sym_DOLLARvacount] = ACTIONS(1629), + [anon_sym_DOLLARappend] = ACTIONS(1629), + [anon_sym_DOLLARconcat] = ACTIONS(1629), + [anon_sym_DOLLAReval] = ACTIONS(1629), + [anon_sym_DOLLARis_const] = ACTIONS(1629), + [anon_sym_DOLLARsizeof] = ACTIONS(1629), + [anon_sym_DOLLARstringify] = ACTIONS(1629), + [anon_sym_DOLLARand] = ACTIONS(1629), + [anon_sym_DOLLARdefined] = ACTIONS(1629), + [anon_sym_DOLLARembed] = ACTIONS(1629), + [anon_sym_DOLLARor] = ACTIONS(1629), + [anon_sym_DOLLARfeature] = ACTIONS(1629), + [anon_sym_DOLLARassignable] = ACTIONS(1629), + [anon_sym_BANG] = ACTIONS(1631), + [anon_sym_TILDE] = ACTIONS(1631), + [anon_sym_PLUS_PLUS] = ACTIONS(1631), + [anon_sym_DASH_DASH] = ACTIONS(1631), + [anon_sym_typeid] = ACTIONS(1629), + [anon_sym_LBRACE_PIPE] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1629), + [anon_sym_bool] = ACTIONS(1629), + [anon_sym_char] = ACTIONS(1629), + [anon_sym_ichar] = ACTIONS(1629), + [anon_sym_short] = ACTIONS(1629), + [anon_sym_ushort] = ACTIONS(1629), + [anon_sym_uint] = ACTIONS(1629), + [anon_sym_long] = ACTIONS(1629), + [anon_sym_ulong] = ACTIONS(1629), + [anon_sym_int128] = ACTIONS(1629), + [anon_sym_uint128] = ACTIONS(1629), + [anon_sym_float] = ACTIONS(1629), + [anon_sym_double] = ACTIONS(1629), + [anon_sym_float16] = ACTIONS(1629), + [anon_sym_bfloat16] = ACTIONS(1629), + [anon_sym_float128] = ACTIONS(1629), + [anon_sym_iptr] = ACTIONS(1629), + [anon_sym_uptr] = ACTIONS(1629), + [anon_sym_isz] = ACTIONS(1629), + [anon_sym_usz] = ACTIONS(1629), + [anon_sym_anyfault] = ACTIONS(1629), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_DOLLARtypeof] = ACTIONS(1629), + [anon_sym_DOLLARtypefrom] = ACTIONS(1629), + [anon_sym_DOLLARvatype] = ACTIONS(1629), + [anon_sym_DOLLARevaltype] = ACTIONS(1629), + [sym_real_literal] = ACTIONS(1631), }, [461] = { [sym_line_comment] = STATE(461), [sym_doc_comment] = STATE(461), [sym_block_comment] = STATE(461), - [sym_ident] = ACTIONS(1644), - [sym_integer_literal] = ACTIONS(1646), - [anon_sym_SQUOTE] = ACTIONS(1646), - [anon_sym_DQUOTE] = ACTIONS(1646), - [anon_sym_BQUOTE] = ACTIONS(1646), - [sym_bytes_literal] = ACTIONS(1646), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1644), - [sym_at_ident] = ACTIONS(1646), - [sym_hash_ident] = ACTIONS(1646), - [sym_type_ident] = ACTIONS(1646), - [sym_ct_type_ident] = ACTIONS(1646), - [sym_const_ident] = ACTIONS(1644), - [sym_builtin] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(1646), - [anon_sym_AMP] = ACTIONS(1644), - [anon_sym_static] = ACTIONS(1644), - [anon_sym_tlocal] = ACTIONS(1644), - [anon_sym_SEMI] = ACTIONS(1646), - [anon_sym_fn] = ACTIONS(1644), - [anon_sym_LBRACE] = ACTIONS(1644), - [anon_sym_RBRACE] = ACTIONS(1646), - [anon_sym_const] = ACTIONS(1644), - [anon_sym_var] = ACTIONS(1644), - [anon_sym_return] = ACTIONS(1644), - [anon_sym_continue] = ACTIONS(1644), - [anon_sym_break] = ACTIONS(1644), - [anon_sym_defer] = ACTIONS(1644), - [anon_sym_assert] = ACTIONS(1644), - [anon_sym_case] = ACTIONS(1644), - [anon_sym_default] = ACTIONS(1644), - [anon_sym_nextcase] = ACTIONS(1644), - [anon_sym_switch] = ACTIONS(1644), - [anon_sym_AMP_AMP] = ACTIONS(1646), - [anon_sym_if] = ACTIONS(1644), - [anon_sym_for] = ACTIONS(1644), - [anon_sym_foreach] = ACTIONS(1644), - [anon_sym_foreach_r] = ACTIONS(1644), - [anon_sym_while] = ACTIONS(1644), - [anon_sym_do] = ACTIONS(1644), - [anon_sym_int] = ACTIONS(1644), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_asm] = ACTIONS(1644), - [anon_sym_DOLLARassert] = ACTIONS(1644), - [anon_sym_DOLLARerror] = ACTIONS(1644), - [anon_sym_DOLLARecho] = ACTIONS(1644), - [anon_sym_DOLLARif] = ACTIONS(1644), - [anon_sym_DOLLARswitch] = ACTIONS(1644), - [anon_sym_DOLLARfor] = ACTIONS(1644), - [anon_sym_DOLLARforeach] = ACTIONS(1644), - [anon_sym_DOLLARalignof] = ACTIONS(1644), - [anon_sym_DOLLARextnameof] = ACTIONS(1644), - [anon_sym_DOLLARnameof] = ACTIONS(1644), - [anon_sym_DOLLARoffsetof] = ACTIONS(1644), - [anon_sym_DOLLARqnameof] = ACTIONS(1644), - [anon_sym_DOLLARvaconst] = ACTIONS(1644), - [anon_sym_DOLLARvaarg] = ACTIONS(1644), - [anon_sym_DOLLARvaref] = ACTIONS(1644), - [anon_sym_DOLLARvaexpr] = ACTIONS(1644), - [anon_sym_true] = ACTIONS(1644), - [anon_sym_false] = ACTIONS(1644), - [anon_sym_null] = ACTIONS(1644), - [anon_sym_DOLLARvacount] = ACTIONS(1644), - [anon_sym_DOLLARappend] = ACTIONS(1644), - [anon_sym_DOLLARconcat] = ACTIONS(1644), - [anon_sym_DOLLAReval] = ACTIONS(1644), - [anon_sym_DOLLARis_const] = ACTIONS(1644), - [anon_sym_DOLLARsizeof] = ACTIONS(1644), - [anon_sym_DOLLARstringify] = ACTIONS(1644), - [anon_sym_DOLLARand] = ACTIONS(1644), - [anon_sym_DOLLARdefined] = ACTIONS(1644), - [anon_sym_DOLLARembed] = ACTIONS(1644), - [anon_sym_DOLLARor] = ACTIONS(1644), - [anon_sym_DOLLARfeature] = ACTIONS(1644), - [anon_sym_DOLLARassignable] = ACTIONS(1644), - [anon_sym_BANG] = ACTIONS(1646), - [anon_sym_TILDE] = ACTIONS(1646), - [anon_sym_PLUS_PLUS] = ACTIONS(1646), - [anon_sym_DASH_DASH] = ACTIONS(1646), - [anon_sym_typeid] = ACTIONS(1644), - [anon_sym_LBRACE_PIPE] = ACTIONS(1646), - [anon_sym_PIPE_RBRACE] = ACTIONS(1646), - [anon_sym_void] = ACTIONS(1644), - [anon_sym_bool] = ACTIONS(1644), - [anon_sym_char] = ACTIONS(1644), - [anon_sym_ichar] = ACTIONS(1644), - [anon_sym_short] = ACTIONS(1644), - [anon_sym_ushort] = ACTIONS(1644), - [anon_sym_uint] = ACTIONS(1644), - [anon_sym_long] = ACTIONS(1644), - [anon_sym_ulong] = ACTIONS(1644), - [anon_sym_int128] = ACTIONS(1644), - [anon_sym_uint128] = ACTIONS(1644), - [anon_sym_float] = ACTIONS(1644), - [anon_sym_double] = ACTIONS(1644), - [anon_sym_float16] = ACTIONS(1644), - [anon_sym_bfloat16] = ACTIONS(1644), - [anon_sym_float128] = ACTIONS(1644), - [anon_sym_iptr] = ACTIONS(1644), - [anon_sym_uptr] = ACTIONS(1644), - [anon_sym_isz] = ACTIONS(1644), - [anon_sym_usz] = ACTIONS(1644), - [anon_sym_anyfault] = ACTIONS(1644), - [anon_sym_any] = ACTIONS(1644), - [anon_sym_DOLLARtypeof] = ACTIONS(1644), - [anon_sym_DOLLARtypefrom] = ACTIONS(1644), - [anon_sym_DOLLARvatype] = ACTIONS(1644), - [anon_sym_DOLLARevaltype] = ACTIONS(1644), - [sym_real_literal] = ACTIONS(1646), + [sym_ident] = ACTIONS(1477), + [sym_integer_literal] = ACTIONS(1479), + [anon_sym_SQUOTE] = ACTIONS(1479), + [anon_sym_DQUOTE] = ACTIONS(1479), + [anon_sym_BQUOTE] = ACTIONS(1479), + [sym_bytes_literal] = ACTIONS(1479), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1477), + [sym_at_ident] = ACTIONS(1479), + [sym_hash_ident] = ACTIONS(1479), + [sym_type_ident] = ACTIONS(1479), + [sym_ct_type_ident] = ACTIONS(1479), + [sym_const_ident] = ACTIONS(1477), + [sym_builtin] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1479), + [anon_sym_AMP] = ACTIONS(1477), + [anon_sym_static] = ACTIONS(1477), + [anon_sym_tlocal] = ACTIONS(1477), + [anon_sym_SEMI] = ACTIONS(1479), + [anon_sym_fn] = ACTIONS(1477), + [anon_sym_LBRACE] = ACTIONS(1477), + [anon_sym_const] = ACTIONS(1477), + [anon_sym_var] = ACTIONS(1477), + [anon_sym_return] = ACTIONS(1477), + [anon_sym_continue] = ACTIONS(1477), + [anon_sym_break] = ACTIONS(1477), + [anon_sym_defer] = ACTIONS(1477), + [anon_sym_assert] = ACTIONS(1477), + [anon_sym_nextcase] = ACTIONS(1477), + [anon_sym_switch] = ACTIONS(1477), + [anon_sym_AMP_AMP] = ACTIONS(1479), + [anon_sym_if] = ACTIONS(1477), + [anon_sym_for] = ACTIONS(1477), + [anon_sym_foreach] = ACTIONS(1477), + [anon_sym_foreach_r] = ACTIONS(1477), + [anon_sym_while] = ACTIONS(1477), + [anon_sym_do] = ACTIONS(1477), + [anon_sym_int] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1477), + [anon_sym_DASH] = ACTIONS(1477), + [anon_sym_STAR] = ACTIONS(1479), + [anon_sym_asm] = ACTIONS(1477), + [anon_sym_DOLLARassert] = ACTIONS(1477), + [anon_sym_DOLLARerror] = ACTIONS(1477), + [anon_sym_DOLLARecho] = ACTIONS(1477), + [anon_sym_DOLLARif] = ACTIONS(1477), + [anon_sym_DOLLARcase] = ACTIONS(1477), + [anon_sym_DOLLARdefault] = ACTIONS(1477), + [anon_sym_DOLLARswitch] = ACTIONS(1477), + [anon_sym_DOLLARendswitch] = ACTIONS(1477), + [anon_sym_DOLLARfor] = ACTIONS(1477), + [anon_sym_DOLLARforeach] = ACTIONS(1477), + [anon_sym_DOLLARalignof] = ACTIONS(1477), + [anon_sym_DOLLARextnameof] = ACTIONS(1477), + [anon_sym_DOLLARnameof] = ACTIONS(1477), + [anon_sym_DOLLARoffsetof] = ACTIONS(1477), + [anon_sym_DOLLARqnameof] = ACTIONS(1477), + [anon_sym_DOLLARvaconst] = ACTIONS(1477), + [anon_sym_DOLLARvaarg] = ACTIONS(1477), + [anon_sym_DOLLARvaref] = ACTIONS(1477), + [anon_sym_DOLLARvaexpr] = ACTIONS(1477), + [anon_sym_true] = ACTIONS(1477), + [anon_sym_false] = ACTIONS(1477), + [anon_sym_null] = ACTIONS(1477), + [anon_sym_DOLLARvacount] = ACTIONS(1477), + [anon_sym_DOLLARappend] = ACTIONS(1477), + [anon_sym_DOLLARconcat] = ACTIONS(1477), + [anon_sym_DOLLAReval] = ACTIONS(1477), + [anon_sym_DOLLARis_const] = ACTIONS(1477), + [anon_sym_DOLLARsizeof] = ACTIONS(1477), + [anon_sym_DOLLARstringify] = ACTIONS(1477), + [anon_sym_DOLLARand] = ACTIONS(1477), + [anon_sym_DOLLARdefined] = ACTIONS(1477), + [anon_sym_DOLLARembed] = ACTIONS(1477), + [anon_sym_DOLLARor] = ACTIONS(1477), + [anon_sym_DOLLARfeature] = ACTIONS(1477), + [anon_sym_DOLLARassignable] = ACTIONS(1477), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_TILDE] = ACTIONS(1479), + [anon_sym_PLUS_PLUS] = ACTIONS(1479), + [anon_sym_DASH_DASH] = ACTIONS(1479), + [anon_sym_typeid] = ACTIONS(1477), + [anon_sym_LBRACE_PIPE] = ACTIONS(1479), + [anon_sym_void] = ACTIONS(1477), + [anon_sym_bool] = ACTIONS(1477), + [anon_sym_char] = ACTIONS(1477), + [anon_sym_ichar] = ACTIONS(1477), + [anon_sym_short] = ACTIONS(1477), + [anon_sym_ushort] = ACTIONS(1477), + [anon_sym_uint] = ACTIONS(1477), + [anon_sym_long] = ACTIONS(1477), + [anon_sym_ulong] = ACTIONS(1477), + [anon_sym_int128] = ACTIONS(1477), + [anon_sym_uint128] = ACTIONS(1477), + [anon_sym_float] = ACTIONS(1477), + [anon_sym_double] = ACTIONS(1477), + [anon_sym_float16] = ACTIONS(1477), + [anon_sym_bfloat16] = ACTIONS(1477), + [anon_sym_float128] = ACTIONS(1477), + [anon_sym_iptr] = ACTIONS(1477), + [anon_sym_uptr] = ACTIONS(1477), + [anon_sym_isz] = ACTIONS(1477), + [anon_sym_usz] = ACTIONS(1477), + [anon_sym_anyfault] = ACTIONS(1477), + [anon_sym_any] = ACTIONS(1477), + [anon_sym_DOLLARtypeof] = ACTIONS(1477), + [anon_sym_DOLLARtypefrom] = ACTIONS(1477), + [anon_sym_DOLLARvatype] = ACTIONS(1477), + [anon_sym_DOLLARevaltype] = ACTIONS(1477), + [sym_real_literal] = ACTIONS(1479), }, [462] = { [sym_line_comment] = STATE(462), [sym_doc_comment] = STATE(462), [sym_block_comment] = STATE(462), - [sym_ident] = ACTIONS(1648), - [sym_integer_literal] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1650), - [anon_sym_BQUOTE] = ACTIONS(1650), - [sym_bytes_literal] = ACTIONS(1650), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1648), - [sym_at_ident] = ACTIONS(1650), - [sym_hash_ident] = ACTIONS(1650), - [sym_type_ident] = ACTIONS(1650), - [sym_ct_type_ident] = ACTIONS(1650), - [sym_const_ident] = ACTIONS(1648), - [sym_builtin] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_AMP] = ACTIONS(1648), - [anon_sym_static] = ACTIONS(1648), - [anon_sym_tlocal] = ACTIONS(1648), - [anon_sym_SEMI] = ACTIONS(1650), - [anon_sym_fn] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1650), - [anon_sym_const] = ACTIONS(1648), - [anon_sym_var] = ACTIONS(1648), - [anon_sym_return] = ACTIONS(1648), - [anon_sym_continue] = ACTIONS(1648), - [anon_sym_break] = ACTIONS(1648), - [anon_sym_defer] = ACTIONS(1648), - [anon_sym_assert] = ACTIONS(1648), - [anon_sym_case] = ACTIONS(1648), - [anon_sym_default] = ACTIONS(1648), - [anon_sym_nextcase] = ACTIONS(1648), - [anon_sym_switch] = ACTIONS(1648), - [anon_sym_AMP_AMP] = ACTIONS(1650), - [anon_sym_if] = ACTIONS(1648), - [anon_sym_for] = ACTIONS(1648), - [anon_sym_foreach] = ACTIONS(1648), - [anon_sym_foreach_r] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1648), - [anon_sym_do] = ACTIONS(1648), - [anon_sym_int] = ACTIONS(1648), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_STAR] = ACTIONS(1650), - [anon_sym_asm] = ACTIONS(1648), - [anon_sym_DOLLARassert] = ACTIONS(1648), - [anon_sym_DOLLARerror] = ACTIONS(1648), - [anon_sym_DOLLARecho] = ACTIONS(1648), - [anon_sym_DOLLARif] = ACTIONS(1648), - [anon_sym_DOLLARswitch] = ACTIONS(1648), - [anon_sym_DOLLARfor] = ACTIONS(1648), - [anon_sym_DOLLARforeach] = ACTIONS(1648), - [anon_sym_DOLLARalignof] = ACTIONS(1648), - [anon_sym_DOLLARextnameof] = ACTIONS(1648), - [anon_sym_DOLLARnameof] = ACTIONS(1648), - [anon_sym_DOLLARoffsetof] = ACTIONS(1648), - [anon_sym_DOLLARqnameof] = ACTIONS(1648), - [anon_sym_DOLLARvaconst] = ACTIONS(1648), - [anon_sym_DOLLARvaarg] = ACTIONS(1648), - [anon_sym_DOLLARvaref] = ACTIONS(1648), - [anon_sym_DOLLARvaexpr] = ACTIONS(1648), - [anon_sym_true] = ACTIONS(1648), - [anon_sym_false] = ACTIONS(1648), - [anon_sym_null] = ACTIONS(1648), - [anon_sym_DOLLARvacount] = ACTIONS(1648), - [anon_sym_DOLLARappend] = ACTIONS(1648), - [anon_sym_DOLLARconcat] = ACTIONS(1648), - [anon_sym_DOLLAReval] = ACTIONS(1648), - [anon_sym_DOLLARis_const] = ACTIONS(1648), - [anon_sym_DOLLARsizeof] = ACTIONS(1648), - [anon_sym_DOLLARstringify] = ACTIONS(1648), - [anon_sym_DOLLARand] = ACTIONS(1648), - [anon_sym_DOLLARdefined] = ACTIONS(1648), - [anon_sym_DOLLARembed] = ACTIONS(1648), - [anon_sym_DOLLARor] = ACTIONS(1648), - [anon_sym_DOLLARfeature] = ACTIONS(1648), - [anon_sym_DOLLARassignable] = ACTIONS(1648), - [anon_sym_BANG] = ACTIONS(1650), - [anon_sym_TILDE] = ACTIONS(1650), - [anon_sym_PLUS_PLUS] = ACTIONS(1650), - [anon_sym_DASH_DASH] = ACTIONS(1650), - [anon_sym_typeid] = ACTIONS(1648), - [anon_sym_LBRACE_PIPE] = ACTIONS(1650), - [anon_sym_PIPE_RBRACE] = ACTIONS(1650), - [anon_sym_void] = ACTIONS(1648), - [anon_sym_bool] = ACTIONS(1648), - [anon_sym_char] = ACTIONS(1648), - [anon_sym_ichar] = ACTIONS(1648), - [anon_sym_short] = ACTIONS(1648), - [anon_sym_ushort] = ACTIONS(1648), - [anon_sym_uint] = ACTIONS(1648), - [anon_sym_long] = ACTIONS(1648), - [anon_sym_ulong] = ACTIONS(1648), - [anon_sym_int128] = ACTIONS(1648), - [anon_sym_uint128] = ACTIONS(1648), - [anon_sym_float] = ACTIONS(1648), - [anon_sym_double] = ACTIONS(1648), - [anon_sym_float16] = ACTIONS(1648), - [anon_sym_bfloat16] = ACTIONS(1648), - [anon_sym_float128] = ACTIONS(1648), - [anon_sym_iptr] = ACTIONS(1648), - [anon_sym_uptr] = ACTIONS(1648), - [anon_sym_isz] = ACTIONS(1648), - [anon_sym_usz] = ACTIONS(1648), - [anon_sym_anyfault] = ACTIONS(1648), - [anon_sym_any] = ACTIONS(1648), - [anon_sym_DOLLARtypeof] = ACTIONS(1648), - [anon_sym_DOLLARtypefrom] = ACTIONS(1648), - [anon_sym_DOLLARvatype] = ACTIONS(1648), - [anon_sym_DOLLARevaltype] = ACTIONS(1648), - [sym_real_literal] = ACTIONS(1650), + [sym_else_part] = STATE(762), + [sym_ident] = ACTIONS(1343), + [sym_integer_literal] = ACTIONS(1345), + [anon_sym_SQUOTE] = ACTIONS(1345), + [anon_sym_DQUOTE] = ACTIONS(1345), + [anon_sym_BQUOTE] = ACTIONS(1345), + [sym_bytes_literal] = ACTIONS(1345), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1343), + [sym_at_ident] = ACTIONS(1345), + [sym_hash_ident] = ACTIONS(1345), + [sym_type_ident] = ACTIONS(1345), + [sym_ct_type_ident] = ACTIONS(1345), + [sym_const_ident] = ACTIONS(1343), + [sym_builtin] = ACTIONS(1345), + [anon_sym_LPAREN] = ACTIONS(1345), + [anon_sym_AMP] = ACTIONS(1343), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_tlocal] = ACTIONS(1343), + [anon_sym_SEMI] = ACTIONS(1345), + [anon_sym_fn] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1343), + [anon_sym_const] = ACTIONS(1343), + [anon_sym_var] = ACTIONS(1343), + [anon_sym_return] = ACTIONS(1343), + [anon_sym_continue] = ACTIONS(1343), + [anon_sym_break] = ACTIONS(1343), + [anon_sym_defer] = ACTIONS(1343), + [anon_sym_assert] = ACTIONS(1343), + [anon_sym_nextcase] = ACTIONS(1343), + [anon_sym_switch] = ACTIONS(1343), + [anon_sym_AMP_AMP] = ACTIONS(1345), + [anon_sym_if] = ACTIONS(1343), + [anon_sym_else] = ACTIONS(1645), + [anon_sym_for] = ACTIONS(1343), + [anon_sym_foreach] = ACTIONS(1343), + [anon_sym_foreach_r] = ACTIONS(1343), + [anon_sym_while] = ACTIONS(1343), + [anon_sym_do] = ACTIONS(1343), + [anon_sym_int] = ACTIONS(1343), + [anon_sym_PLUS] = ACTIONS(1343), + [anon_sym_DASH] = ACTIONS(1343), + [anon_sym_STAR] = ACTIONS(1345), + [anon_sym_asm] = ACTIONS(1343), + [anon_sym_DOLLARassert] = ACTIONS(1343), + [anon_sym_DOLLARerror] = ACTIONS(1343), + [anon_sym_DOLLARecho] = ACTIONS(1343), + [anon_sym_DOLLARif] = ACTIONS(1343), + [anon_sym_DOLLARendif] = ACTIONS(1343), + [anon_sym_DOLLARswitch] = ACTIONS(1343), + [anon_sym_DOLLARfor] = ACTIONS(1343), + [anon_sym_DOLLARforeach] = ACTIONS(1343), + [anon_sym_DOLLARalignof] = ACTIONS(1343), + [anon_sym_DOLLARextnameof] = ACTIONS(1343), + [anon_sym_DOLLARnameof] = ACTIONS(1343), + [anon_sym_DOLLARoffsetof] = ACTIONS(1343), + [anon_sym_DOLLARqnameof] = ACTIONS(1343), + [anon_sym_DOLLARvaconst] = ACTIONS(1343), + [anon_sym_DOLLARvaarg] = ACTIONS(1343), + [anon_sym_DOLLARvaref] = ACTIONS(1343), + [anon_sym_DOLLARvaexpr] = ACTIONS(1343), + [anon_sym_true] = ACTIONS(1343), + [anon_sym_false] = ACTIONS(1343), + [anon_sym_null] = ACTIONS(1343), + [anon_sym_DOLLARvacount] = ACTIONS(1343), + [anon_sym_DOLLARappend] = ACTIONS(1343), + [anon_sym_DOLLARconcat] = ACTIONS(1343), + [anon_sym_DOLLAReval] = ACTIONS(1343), + [anon_sym_DOLLARis_const] = ACTIONS(1343), + [anon_sym_DOLLARsizeof] = ACTIONS(1343), + [anon_sym_DOLLARstringify] = ACTIONS(1343), + [anon_sym_DOLLARand] = ACTIONS(1343), + [anon_sym_DOLLARdefined] = ACTIONS(1343), + [anon_sym_DOLLARembed] = ACTIONS(1343), + [anon_sym_DOLLARor] = ACTIONS(1343), + [anon_sym_DOLLARfeature] = ACTIONS(1343), + [anon_sym_DOLLARassignable] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(1345), + [anon_sym_TILDE] = ACTIONS(1345), + [anon_sym_PLUS_PLUS] = ACTIONS(1345), + [anon_sym_DASH_DASH] = ACTIONS(1345), + [anon_sym_typeid] = ACTIONS(1343), + [anon_sym_LBRACE_PIPE] = ACTIONS(1345), + [anon_sym_void] = ACTIONS(1343), + [anon_sym_bool] = ACTIONS(1343), + [anon_sym_char] = ACTIONS(1343), + [anon_sym_ichar] = ACTIONS(1343), + [anon_sym_short] = ACTIONS(1343), + [anon_sym_ushort] = ACTIONS(1343), + [anon_sym_uint] = ACTIONS(1343), + [anon_sym_long] = ACTIONS(1343), + [anon_sym_ulong] = ACTIONS(1343), + [anon_sym_int128] = ACTIONS(1343), + [anon_sym_uint128] = ACTIONS(1343), + [anon_sym_float] = ACTIONS(1343), + [anon_sym_double] = ACTIONS(1343), + [anon_sym_float16] = ACTIONS(1343), + [anon_sym_bfloat16] = ACTIONS(1343), + [anon_sym_float128] = ACTIONS(1343), + [anon_sym_iptr] = ACTIONS(1343), + [anon_sym_uptr] = ACTIONS(1343), + [anon_sym_isz] = ACTIONS(1343), + [anon_sym_usz] = ACTIONS(1343), + [anon_sym_anyfault] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_DOLLARtypeof] = ACTIONS(1343), + [anon_sym_DOLLARtypefrom] = ACTIONS(1343), + [anon_sym_DOLLARvatype] = ACTIONS(1343), + [anon_sym_DOLLARevaltype] = ACTIONS(1343), + [sym_real_literal] = ACTIONS(1345), }, [463] = { [sym_line_comment] = STATE(463), [sym_doc_comment] = STATE(463), [sym_block_comment] = STATE(463), - [sym_ident] = ACTIONS(1652), - [sym_integer_literal] = ACTIONS(1654), - [anon_sym_SQUOTE] = ACTIONS(1654), - [anon_sym_DQUOTE] = ACTIONS(1654), - [anon_sym_BQUOTE] = ACTIONS(1654), - [sym_bytes_literal] = ACTIONS(1654), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1652), - [sym_at_ident] = ACTIONS(1654), - [sym_hash_ident] = ACTIONS(1654), - [sym_type_ident] = ACTIONS(1654), - [sym_ct_type_ident] = ACTIONS(1654), - [sym_const_ident] = ACTIONS(1652), - [sym_builtin] = ACTIONS(1654), - [anon_sym_LPAREN] = ACTIONS(1654), - [anon_sym_AMP] = ACTIONS(1652), - [anon_sym_static] = ACTIONS(1652), - [anon_sym_tlocal] = ACTIONS(1652), - [anon_sym_SEMI] = ACTIONS(1654), - [anon_sym_fn] = ACTIONS(1652), - [anon_sym_LBRACE] = ACTIONS(1652), - [anon_sym_RBRACE] = ACTIONS(1654), - [anon_sym_const] = ACTIONS(1652), - [anon_sym_var] = ACTIONS(1652), - [anon_sym_return] = ACTIONS(1652), - [anon_sym_continue] = ACTIONS(1652), - [anon_sym_break] = ACTIONS(1652), - [anon_sym_defer] = ACTIONS(1652), - [anon_sym_assert] = ACTIONS(1652), - [anon_sym_case] = ACTIONS(1652), - [anon_sym_default] = ACTIONS(1652), - [anon_sym_nextcase] = ACTIONS(1652), - [anon_sym_switch] = ACTIONS(1652), - [anon_sym_AMP_AMP] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1652), - [anon_sym_for] = ACTIONS(1652), - [anon_sym_foreach] = ACTIONS(1652), - [anon_sym_foreach_r] = ACTIONS(1652), - [anon_sym_while] = ACTIONS(1652), - [anon_sym_do] = ACTIONS(1652), - [anon_sym_int] = ACTIONS(1652), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_asm] = ACTIONS(1652), - [anon_sym_DOLLARassert] = ACTIONS(1652), - [anon_sym_DOLLARerror] = ACTIONS(1652), - [anon_sym_DOLLARecho] = ACTIONS(1652), - [anon_sym_DOLLARif] = ACTIONS(1652), - [anon_sym_DOLLARswitch] = ACTIONS(1652), - [anon_sym_DOLLARfor] = ACTIONS(1652), - [anon_sym_DOLLARforeach] = ACTIONS(1652), - [anon_sym_DOLLARalignof] = ACTIONS(1652), - [anon_sym_DOLLARextnameof] = ACTIONS(1652), - [anon_sym_DOLLARnameof] = ACTIONS(1652), - [anon_sym_DOLLARoffsetof] = ACTIONS(1652), - [anon_sym_DOLLARqnameof] = ACTIONS(1652), - [anon_sym_DOLLARvaconst] = ACTIONS(1652), - [anon_sym_DOLLARvaarg] = ACTIONS(1652), - [anon_sym_DOLLARvaref] = ACTIONS(1652), - [anon_sym_DOLLARvaexpr] = ACTIONS(1652), - [anon_sym_true] = ACTIONS(1652), - [anon_sym_false] = ACTIONS(1652), - [anon_sym_null] = ACTIONS(1652), - [anon_sym_DOLLARvacount] = ACTIONS(1652), - [anon_sym_DOLLARappend] = ACTIONS(1652), - [anon_sym_DOLLARconcat] = ACTIONS(1652), - [anon_sym_DOLLAReval] = ACTIONS(1652), - [anon_sym_DOLLARis_const] = ACTIONS(1652), - [anon_sym_DOLLARsizeof] = ACTIONS(1652), - [anon_sym_DOLLARstringify] = ACTIONS(1652), - [anon_sym_DOLLARand] = ACTIONS(1652), - [anon_sym_DOLLARdefined] = ACTIONS(1652), - [anon_sym_DOLLARembed] = ACTIONS(1652), - [anon_sym_DOLLARor] = ACTIONS(1652), - [anon_sym_DOLLARfeature] = ACTIONS(1652), - [anon_sym_DOLLARassignable] = ACTIONS(1652), - [anon_sym_BANG] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1654), - [anon_sym_PLUS_PLUS] = ACTIONS(1654), - [anon_sym_DASH_DASH] = ACTIONS(1654), - [anon_sym_typeid] = ACTIONS(1652), - [anon_sym_LBRACE_PIPE] = ACTIONS(1654), - [anon_sym_PIPE_RBRACE] = ACTIONS(1654), - [anon_sym_void] = ACTIONS(1652), - [anon_sym_bool] = ACTIONS(1652), - [anon_sym_char] = ACTIONS(1652), - [anon_sym_ichar] = ACTIONS(1652), - [anon_sym_short] = ACTIONS(1652), - [anon_sym_ushort] = ACTIONS(1652), - [anon_sym_uint] = ACTIONS(1652), - [anon_sym_long] = ACTIONS(1652), - [anon_sym_ulong] = ACTIONS(1652), - [anon_sym_int128] = ACTIONS(1652), - [anon_sym_uint128] = ACTIONS(1652), - [anon_sym_float] = ACTIONS(1652), - [anon_sym_double] = ACTIONS(1652), - [anon_sym_float16] = ACTIONS(1652), - [anon_sym_bfloat16] = ACTIONS(1652), - [anon_sym_float128] = ACTIONS(1652), - [anon_sym_iptr] = ACTIONS(1652), - [anon_sym_uptr] = ACTIONS(1652), - [anon_sym_isz] = ACTIONS(1652), - [anon_sym_usz] = ACTIONS(1652), - [anon_sym_anyfault] = ACTIONS(1652), - [anon_sym_any] = ACTIONS(1652), - [anon_sym_DOLLARtypeof] = ACTIONS(1652), - [anon_sym_DOLLARtypefrom] = ACTIONS(1652), - [anon_sym_DOLLARvatype] = ACTIONS(1652), - [anon_sym_DOLLARevaltype] = ACTIONS(1652), - [sym_real_literal] = ACTIONS(1654), + [sym_ident] = ACTIONS(1493), + [sym_integer_literal] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1495), + [anon_sym_DQUOTE] = ACTIONS(1495), + [anon_sym_BQUOTE] = ACTIONS(1495), + [sym_bytes_literal] = ACTIONS(1495), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1493), + [sym_at_ident] = ACTIONS(1495), + [sym_hash_ident] = ACTIONS(1495), + [sym_type_ident] = ACTIONS(1495), + [sym_ct_type_ident] = ACTIONS(1495), + [sym_const_ident] = ACTIONS(1493), + [sym_builtin] = ACTIONS(1495), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1493), + [anon_sym_static] = ACTIONS(1493), + [anon_sym_tlocal] = ACTIONS(1493), + [anon_sym_SEMI] = ACTIONS(1495), + [anon_sym_fn] = ACTIONS(1493), + [anon_sym_LBRACE] = ACTIONS(1493), + [anon_sym_const] = ACTIONS(1493), + [anon_sym_var] = ACTIONS(1493), + [anon_sym_return] = ACTIONS(1493), + [anon_sym_continue] = ACTIONS(1493), + [anon_sym_break] = ACTIONS(1493), + [anon_sym_defer] = ACTIONS(1493), + [anon_sym_assert] = ACTIONS(1493), + [anon_sym_nextcase] = ACTIONS(1493), + [anon_sym_switch] = ACTIONS(1493), + [anon_sym_AMP_AMP] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1493), + [anon_sym_for] = ACTIONS(1493), + [anon_sym_foreach] = ACTIONS(1493), + [anon_sym_foreach_r] = ACTIONS(1493), + [anon_sym_while] = ACTIONS(1493), + [anon_sym_do] = ACTIONS(1493), + [anon_sym_int] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1493), + [anon_sym_DASH] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1495), + [anon_sym_asm] = ACTIONS(1493), + [anon_sym_DOLLARassert] = ACTIONS(1493), + [anon_sym_DOLLARerror] = ACTIONS(1493), + [anon_sym_DOLLARecho] = ACTIONS(1493), + [anon_sym_DOLLARif] = ACTIONS(1493), + [anon_sym_DOLLARcase] = ACTIONS(1493), + [anon_sym_DOLLARdefault] = ACTIONS(1493), + [anon_sym_DOLLARswitch] = ACTIONS(1493), + [anon_sym_DOLLARendswitch] = ACTIONS(1493), + [anon_sym_DOLLARfor] = ACTIONS(1493), + [anon_sym_DOLLARforeach] = ACTIONS(1493), + [anon_sym_DOLLARalignof] = ACTIONS(1493), + [anon_sym_DOLLARextnameof] = ACTIONS(1493), + [anon_sym_DOLLARnameof] = ACTIONS(1493), + [anon_sym_DOLLARoffsetof] = ACTIONS(1493), + [anon_sym_DOLLARqnameof] = ACTIONS(1493), + [anon_sym_DOLLARvaconst] = ACTIONS(1493), + [anon_sym_DOLLARvaarg] = ACTIONS(1493), + [anon_sym_DOLLARvaref] = ACTIONS(1493), + [anon_sym_DOLLARvaexpr] = ACTIONS(1493), + [anon_sym_true] = ACTIONS(1493), + [anon_sym_false] = ACTIONS(1493), + [anon_sym_null] = ACTIONS(1493), + [anon_sym_DOLLARvacount] = ACTIONS(1493), + [anon_sym_DOLLARappend] = ACTIONS(1493), + [anon_sym_DOLLARconcat] = ACTIONS(1493), + [anon_sym_DOLLAReval] = ACTIONS(1493), + [anon_sym_DOLLARis_const] = ACTIONS(1493), + [anon_sym_DOLLARsizeof] = ACTIONS(1493), + [anon_sym_DOLLARstringify] = ACTIONS(1493), + [anon_sym_DOLLARand] = ACTIONS(1493), + [anon_sym_DOLLARdefined] = ACTIONS(1493), + [anon_sym_DOLLARembed] = ACTIONS(1493), + [anon_sym_DOLLARor] = ACTIONS(1493), + [anon_sym_DOLLARfeature] = ACTIONS(1493), + [anon_sym_DOLLARassignable] = ACTIONS(1493), + [anon_sym_BANG] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(1495), + [anon_sym_PLUS_PLUS] = ACTIONS(1495), + [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_typeid] = ACTIONS(1493), + [anon_sym_LBRACE_PIPE] = ACTIONS(1495), + [anon_sym_void] = ACTIONS(1493), + [anon_sym_bool] = ACTIONS(1493), + [anon_sym_char] = ACTIONS(1493), + [anon_sym_ichar] = ACTIONS(1493), + [anon_sym_short] = ACTIONS(1493), + [anon_sym_ushort] = ACTIONS(1493), + [anon_sym_uint] = ACTIONS(1493), + [anon_sym_long] = ACTIONS(1493), + [anon_sym_ulong] = ACTIONS(1493), + [anon_sym_int128] = ACTIONS(1493), + [anon_sym_uint128] = ACTIONS(1493), + [anon_sym_float] = ACTIONS(1493), + [anon_sym_double] = ACTIONS(1493), + [anon_sym_float16] = ACTIONS(1493), + [anon_sym_bfloat16] = ACTIONS(1493), + [anon_sym_float128] = ACTIONS(1493), + [anon_sym_iptr] = ACTIONS(1493), + [anon_sym_uptr] = ACTIONS(1493), + [anon_sym_isz] = ACTIONS(1493), + [anon_sym_usz] = ACTIONS(1493), + [anon_sym_anyfault] = ACTIONS(1493), + [anon_sym_any] = ACTIONS(1493), + [anon_sym_DOLLARtypeof] = ACTIONS(1493), + [anon_sym_DOLLARtypefrom] = ACTIONS(1493), + [anon_sym_DOLLARvatype] = ACTIONS(1493), + [anon_sym_DOLLARevaltype] = ACTIONS(1493), + [sym_real_literal] = ACTIONS(1495), }, [464] = { [sym_line_comment] = STATE(464), [sym_doc_comment] = STATE(464), [sym_block_comment] = STATE(464), - [sym_ident] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(1658), - [anon_sym_SQUOTE] = ACTIONS(1658), - [anon_sym_DQUOTE] = ACTIONS(1658), - [anon_sym_BQUOTE] = ACTIONS(1658), - [sym_bytes_literal] = ACTIONS(1658), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1656), - [sym_at_ident] = ACTIONS(1658), - [sym_hash_ident] = ACTIONS(1658), - [sym_type_ident] = ACTIONS(1658), - [sym_ct_type_ident] = ACTIONS(1658), - [sym_const_ident] = ACTIONS(1656), - [sym_builtin] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_static] = ACTIONS(1656), - [anon_sym_tlocal] = ACTIONS(1656), - [anon_sym_SEMI] = ACTIONS(1658), - [anon_sym_fn] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_RBRACE] = ACTIONS(1658), - [anon_sym_const] = ACTIONS(1656), - [anon_sym_var] = ACTIONS(1656), - [anon_sym_return] = ACTIONS(1656), - [anon_sym_continue] = ACTIONS(1656), - [anon_sym_break] = ACTIONS(1656), - [anon_sym_defer] = ACTIONS(1656), - [anon_sym_assert] = ACTIONS(1656), - [anon_sym_case] = ACTIONS(1656), - [anon_sym_default] = ACTIONS(1656), - [anon_sym_nextcase] = ACTIONS(1656), - [anon_sym_switch] = ACTIONS(1656), - [anon_sym_AMP_AMP] = ACTIONS(1658), - [anon_sym_if] = ACTIONS(1656), - [anon_sym_for] = ACTIONS(1656), - [anon_sym_foreach] = ACTIONS(1656), - [anon_sym_foreach_r] = ACTIONS(1656), - [anon_sym_while] = ACTIONS(1656), - [anon_sym_do] = ACTIONS(1656), - [anon_sym_int] = ACTIONS(1656), - [anon_sym_PLUS] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1656), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_asm] = ACTIONS(1656), - [anon_sym_DOLLARassert] = ACTIONS(1656), - [anon_sym_DOLLARerror] = ACTIONS(1656), - [anon_sym_DOLLARecho] = ACTIONS(1656), - [anon_sym_DOLLARif] = ACTIONS(1656), - [anon_sym_DOLLARswitch] = ACTIONS(1656), - [anon_sym_DOLLARfor] = ACTIONS(1656), - [anon_sym_DOLLARforeach] = ACTIONS(1656), - [anon_sym_DOLLARalignof] = ACTIONS(1656), - [anon_sym_DOLLARextnameof] = ACTIONS(1656), - [anon_sym_DOLLARnameof] = ACTIONS(1656), - [anon_sym_DOLLARoffsetof] = ACTIONS(1656), - [anon_sym_DOLLARqnameof] = ACTIONS(1656), - [anon_sym_DOLLARvaconst] = ACTIONS(1656), - [anon_sym_DOLLARvaarg] = ACTIONS(1656), - [anon_sym_DOLLARvaref] = ACTIONS(1656), - [anon_sym_DOLLARvaexpr] = ACTIONS(1656), - [anon_sym_true] = ACTIONS(1656), - [anon_sym_false] = ACTIONS(1656), - [anon_sym_null] = ACTIONS(1656), - [anon_sym_DOLLARvacount] = ACTIONS(1656), - [anon_sym_DOLLARappend] = ACTIONS(1656), - [anon_sym_DOLLARconcat] = ACTIONS(1656), - [anon_sym_DOLLAReval] = ACTIONS(1656), - [anon_sym_DOLLARis_const] = ACTIONS(1656), - [anon_sym_DOLLARsizeof] = ACTIONS(1656), - [anon_sym_DOLLARstringify] = ACTIONS(1656), - [anon_sym_DOLLARand] = ACTIONS(1656), - [anon_sym_DOLLARdefined] = ACTIONS(1656), - [anon_sym_DOLLARembed] = ACTIONS(1656), - [anon_sym_DOLLARor] = ACTIONS(1656), - [anon_sym_DOLLARfeature] = ACTIONS(1656), - [anon_sym_DOLLARassignable] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(1658), - [anon_sym_TILDE] = ACTIONS(1658), - [anon_sym_PLUS_PLUS] = ACTIONS(1658), - [anon_sym_DASH_DASH] = ACTIONS(1658), - [anon_sym_typeid] = ACTIONS(1656), - [anon_sym_LBRACE_PIPE] = ACTIONS(1658), - [anon_sym_PIPE_RBRACE] = ACTIONS(1658), - [anon_sym_void] = ACTIONS(1656), - [anon_sym_bool] = ACTIONS(1656), - [anon_sym_char] = ACTIONS(1656), - [anon_sym_ichar] = ACTIONS(1656), - [anon_sym_short] = ACTIONS(1656), - [anon_sym_ushort] = ACTIONS(1656), - [anon_sym_uint] = ACTIONS(1656), - [anon_sym_long] = ACTIONS(1656), - [anon_sym_ulong] = ACTIONS(1656), - [anon_sym_int128] = ACTIONS(1656), - [anon_sym_uint128] = ACTIONS(1656), - [anon_sym_float] = ACTIONS(1656), - [anon_sym_double] = ACTIONS(1656), - [anon_sym_float16] = ACTIONS(1656), - [anon_sym_bfloat16] = ACTIONS(1656), - [anon_sym_float128] = ACTIONS(1656), - [anon_sym_iptr] = ACTIONS(1656), - [anon_sym_uptr] = ACTIONS(1656), - [anon_sym_isz] = ACTIONS(1656), - [anon_sym_usz] = ACTIONS(1656), - [anon_sym_anyfault] = ACTIONS(1656), - [anon_sym_any] = ACTIONS(1656), - [anon_sym_DOLLARtypeof] = ACTIONS(1656), - [anon_sym_DOLLARtypefrom] = ACTIONS(1656), - [anon_sym_DOLLARvatype] = ACTIONS(1656), - [anon_sym_DOLLARevaltype] = ACTIONS(1656), - [sym_real_literal] = ACTIONS(1658), + [sym_ident] = ACTIONS(1609), + [sym_integer_literal] = ACTIONS(1611), + [anon_sym_SQUOTE] = ACTIONS(1611), + [anon_sym_DQUOTE] = ACTIONS(1611), + [anon_sym_BQUOTE] = ACTIONS(1611), + [sym_bytes_literal] = ACTIONS(1611), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1609), + [sym_at_ident] = ACTIONS(1611), + [sym_hash_ident] = ACTIONS(1611), + [sym_type_ident] = ACTIONS(1611), + [sym_ct_type_ident] = ACTIONS(1611), + [sym_const_ident] = ACTIONS(1609), + [sym_builtin] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1611), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_static] = ACTIONS(1609), + [anon_sym_tlocal] = ACTIONS(1609), + [anon_sym_SEMI] = ACTIONS(1611), + [anon_sym_fn] = ACTIONS(1609), + [anon_sym_LBRACE] = ACTIONS(1609), + [anon_sym_const] = ACTIONS(1609), + [anon_sym_var] = ACTIONS(1609), + [anon_sym_return] = ACTIONS(1609), + [anon_sym_continue] = ACTIONS(1609), + [anon_sym_break] = ACTIONS(1609), + [anon_sym_defer] = ACTIONS(1609), + [anon_sym_assert] = ACTIONS(1609), + [anon_sym_nextcase] = ACTIONS(1609), + [anon_sym_switch] = ACTIONS(1609), + [anon_sym_AMP_AMP] = ACTIONS(1611), + [anon_sym_if] = ACTIONS(1609), + [anon_sym_for] = ACTIONS(1609), + [anon_sym_foreach] = ACTIONS(1609), + [anon_sym_foreach_r] = ACTIONS(1609), + [anon_sym_while] = ACTIONS(1609), + [anon_sym_do] = ACTIONS(1609), + [anon_sym_int] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1609), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(1611), + [anon_sym_asm] = ACTIONS(1609), + [anon_sym_DOLLARassert] = ACTIONS(1609), + [anon_sym_DOLLARerror] = ACTIONS(1609), + [anon_sym_DOLLARecho] = ACTIONS(1609), + [anon_sym_DOLLARif] = ACTIONS(1609), + [anon_sym_DOLLARcase] = ACTIONS(1609), + [anon_sym_DOLLARdefault] = ACTIONS(1609), + [anon_sym_DOLLARswitch] = ACTIONS(1609), + [anon_sym_DOLLARendswitch] = ACTIONS(1609), + [anon_sym_DOLLARfor] = ACTIONS(1609), + [anon_sym_DOLLARforeach] = ACTIONS(1609), + [anon_sym_DOLLARalignof] = ACTIONS(1609), + [anon_sym_DOLLARextnameof] = ACTIONS(1609), + [anon_sym_DOLLARnameof] = ACTIONS(1609), + [anon_sym_DOLLARoffsetof] = ACTIONS(1609), + [anon_sym_DOLLARqnameof] = ACTIONS(1609), + [anon_sym_DOLLARvaconst] = ACTIONS(1609), + [anon_sym_DOLLARvaarg] = ACTIONS(1609), + [anon_sym_DOLLARvaref] = ACTIONS(1609), + [anon_sym_DOLLARvaexpr] = ACTIONS(1609), + [anon_sym_true] = ACTIONS(1609), + [anon_sym_false] = ACTIONS(1609), + [anon_sym_null] = ACTIONS(1609), + [anon_sym_DOLLARvacount] = ACTIONS(1609), + [anon_sym_DOLLARappend] = ACTIONS(1609), + [anon_sym_DOLLARconcat] = ACTIONS(1609), + [anon_sym_DOLLAReval] = ACTIONS(1609), + [anon_sym_DOLLARis_const] = ACTIONS(1609), + [anon_sym_DOLLARsizeof] = ACTIONS(1609), + [anon_sym_DOLLARstringify] = ACTIONS(1609), + [anon_sym_DOLLARand] = ACTIONS(1609), + [anon_sym_DOLLARdefined] = ACTIONS(1609), + [anon_sym_DOLLARembed] = ACTIONS(1609), + [anon_sym_DOLLARor] = ACTIONS(1609), + [anon_sym_DOLLARfeature] = ACTIONS(1609), + [anon_sym_DOLLARassignable] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1611), + [anon_sym_TILDE] = ACTIONS(1611), + [anon_sym_PLUS_PLUS] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_typeid] = ACTIONS(1609), + [anon_sym_LBRACE_PIPE] = ACTIONS(1611), + [anon_sym_void] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_ichar] = ACTIONS(1609), + [anon_sym_short] = ACTIONS(1609), + [anon_sym_ushort] = ACTIONS(1609), + [anon_sym_uint] = ACTIONS(1609), + [anon_sym_long] = ACTIONS(1609), + [anon_sym_ulong] = ACTIONS(1609), + [anon_sym_int128] = ACTIONS(1609), + [anon_sym_uint128] = ACTIONS(1609), + [anon_sym_float] = ACTIONS(1609), + [anon_sym_double] = ACTIONS(1609), + [anon_sym_float16] = ACTIONS(1609), + [anon_sym_bfloat16] = ACTIONS(1609), + [anon_sym_float128] = ACTIONS(1609), + [anon_sym_iptr] = ACTIONS(1609), + [anon_sym_uptr] = ACTIONS(1609), + [anon_sym_isz] = ACTIONS(1609), + [anon_sym_usz] = ACTIONS(1609), + [anon_sym_anyfault] = ACTIONS(1609), + [anon_sym_any] = ACTIONS(1609), + [anon_sym_DOLLARtypeof] = ACTIONS(1609), + [anon_sym_DOLLARtypefrom] = ACTIONS(1609), + [anon_sym_DOLLARvatype] = ACTIONS(1609), + [anon_sym_DOLLARevaltype] = ACTIONS(1609), + [sym_real_literal] = ACTIONS(1611), }, [465] = { [sym_line_comment] = STATE(465), [sym_doc_comment] = STATE(465), [sym_block_comment] = STATE(465), - [sym_ident] = ACTIONS(1660), - [sym_integer_literal] = ACTIONS(1662), - [anon_sym_SQUOTE] = ACTIONS(1662), - [anon_sym_DQUOTE] = ACTIONS(1662), - [anon_sym_BQUOTE] = ACTIONS(1662), - [sym_bytes_literal] = ACTIONS(1662), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1660), - [sym_at_ident] = ACTIONS(1662), - [sym_hash_ident] = ACTIONS(1662), - [sym_type_ident] = ACTIONS(1662), - [sym_ct_type_ident] = ACTIONS(1662), - [sym_const_ident] = ACTIONS(1660), - [sym_builtin] = ACTIONS(1662), - [anon_sym_LPAREN] = ACTIONS(1662), - [anon_sym_AMP] = ACTIONS(1660), - [anon_sym_static] = ACTIONS(1660), - [anon_sym_tlocal] = ACTIONS(1660), - [anon_sym_SEMI] = ACTIONS(1662), - [anon_sym_fn] = ACTIONS(1660), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(1662), - [anon_sym_const] = ACTIONS(1660), - [anon_sym_var] = ACTIONS(1660), - [anon_sym_return] = ACTIONS(1660), - [anon_sym_continue] = ACTIONS(1660), - [anon_sym_break] = ACTIONS(1660), - [anon_sym_defer] = ACTIONS(1660), - [anon_sym_assert] = ACTIONS(1660), - [anon_sym_case] = ACTIONS(1660), - [anon_sym_default] = ACTIONS(1660), - [anon_sym_nextcase] = ACTIONS(1660), - [anon_sym_switch] = ACTIONS(1660), - [anon_sym_AMP_AMP] = ACTIONS(1662), - [anon_sym_if] = ACTIONS(1660), - [anon_sym_for] = ACTIONS(1660), - [anon_sym_foreach] = ACTIONS(1660), - [anon_sym_foreach_r] = ACTIONS(1660), - [anon_sym_while] = ACTIONS(1660), - [anon_sym_do] = ACTIONS(1660), - [anon_sym_int] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1660), - [anon_sym_DASH] = ACTIONS(1660), - [anon_sym_STAR] = ACTIONS(1662), - [anon_sym_asm] = ACTIONS(1660), - [anon_sym_DOLLARassert] = ACTIONS(1660), - [anon_sym_DOLLARerror] = ACTIONS(1660), - [anon_sym_DOLLARecho] = ACTIONS(1660), - [anon_sym_DOLLARif] = ACTIONS(1660), - [anon_sym_DOLLARswitch] = ACTIONS(1660), - [anon_sym_DOLLARfor] = ACTIONS(1660), - [anon_sym_DOLLARforeach] = ACTIONS(1660), - [anon_sym_DOLLARalignof] = ACTIONS(1660), - [anon_sym_DOLLARextnameof] = ACTIONS(1660), - [anon_sym_DOLLARnameof] = ACTIONS(1660), - [anon_sym_DOLLARoffsetof] = ACTIONS(1660), - [anon_sym_DOLLARqnameof] = ACTIONS(1660), - [anon_sym_DOLLARvaconst] = ACTIONS(1660), - [anon_sym_DOLLARvaarg] = ACTIONS(1660), - [anon_sym_DOLLARvaref] = ACTIONS(1660), - [anon_sym_DOLLARvaexpr] = ACTIONS(1660), - [anon_sym_true] = ACTIONS(1660), - [anon_sym_false] = ACTIONS(1660), - [anon_sym_null] = ACTIONS(1660), - [anon_sym_DOLLARvacount] = ACTIONS(1660), - [anon_sym_DOLLARappend] = ACTIONS(1660), - [anon_sym_DOLLARconcat] = ACTIONS(1660), - [anon_sym_DOLLAReval] = ACTIONS(1660), - [anon_sym_DOLLARis_const] = ACTIONS(1660), - [anon_sym_DOLLARsizeof] = ACTIONS(1660), - [anon_sym_DOLLARstringify] = ACTIONS(1660), - [anon_sym_DOLLARand] = ACTIONS(1660), - [anon_sym_DOLLARdefined] = ACTIONS(1660), - [anon_sym_DOLLARembed] = ACTIONS(1660), - [anon_sym_DOLLARor] = ACTIONS(1660), - [anon_sym_DOLLARfeature] = ACTIONS(1660), - [anon_sym_DOLLARassignable] = ACTIONS(1660), - [anon_sym_BANG] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1662), - [anon_sym_PLUS_PLUS] = ACTIONS(1662), - [anon_sym_DASH_DASH] = ACTIONS(1662), - [anon_sym_typeid] = ACTIONS(1660), - [anon_sym_LBRACE_PIPE] = ACTIONS(1662), - [anon_sym_PIPE_RBRACE] = ACTIONS(1662), - [anon_sym_void] = ACTIONS(1660), - [anon_sym_bool] = ACTIONS(1660), - [anon_sym_char] = ACTIONS(1660), - [anon_sym_ichar] = ACTIONS(1660), - [anon_sym_short] = ACTIONS(1660), - [anon_sym_ushort] = ACTIONS(1660), - [anon_sym_uint] = ACTIONS(1660), - [anon_sym_long] = ACTIONS(1660), - [anon_sym_ulong] = ACTIONS(1660), - [anon_sym_int128] = ACTIONS(1660), - [anon_sym_uint128] = ACTIONS(1660), - [anon_sym_float] = ACTIONS(1660), - [anon_sym_double] = ACTIONS(1660), - [anon_sym_float16] = ACTIONS(1660), - [anon_sym_bfloat16] = ACTIONS(1660), - [anon_sym_float128] = ACTIONS(1660), - [anon_sym_iptr] = ACTIONS(1660), - [anon_sym_uptr] = ACTIONS(1660), - [anon_sym_isz] = ACTIONS(1660), - [anon_sym_usz] = ACTIONS(1660), - [anon_sym_anyfault] = ACTIONS(1660), - [anon_sym_any] = ACTIONS(1660), - [anon_sym_DOLLARtypeof] = ACTIONS(1660), - [anon_sym_DOLLARtypefrom] = ACTIONS(1660), - [anon_sym_DOLLARvatype] = ACTIONS(1660), - [anon_sym_DOLLARevaltype] = ACTIONS(1660), - [sym_real_literal] = ACTIONS(1662), + [sym_ident] = ACTIONS(1557), + [sym_integer_literal] = ACTIONS(1559), + [anon_sym_SQUOTE] = ACTIONS(1559), + [anon_sym_DQUOTE] = ACTIONS(1559), + [anon_sym_BQUOTE] = ACTIONS(1559), + [sym_bytes_literal] = ACTIONS(1559), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1557), + [sym_at_ident] = ACTIONS(1559), + [sym_hash_ident] = ACTIONS(1559), + [sym_type_ident] = ACTIONS(1559), + [sym_ct_type_ident] = ACTIONS(1559), + [sym_const_ident] = ACTIONS(1557), + [sym_builtin] = ACTIONS(1559), + [anon_sym_LPAREN] = ACTIONS(1559), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_static] = ACTIONS(1557), + [anon_sym_tlocal] = ACTIONS(1557), + [anon_sym_SEMI] = ACTIONS(1559), + [anon_sym_fn] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1557), + [anon_sym_const] = ACTIONS(1557), + [anon_sym_var] = ACTIONS(1557), + [anon_sym_return] = ACTIONS(1557), + [anon_sym_continue] = ACTIONS(1557), + [anon_sym_break] = ACTIONS(1557), + [anon_sym_defer] = ACTIONS(1557), + [anon_sym_assert] = ACTIONS(1557), + [anon_sym_nextcase] = ACTIONS(1557), + [anon_sym_switch] = ACTIONS(1557), + [anon_sym_AMP_AMP] = ACTIONS(1559), + [anon_sym_if] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(1557), + [anon_sym_foreach] = ACTIONS(1557), + [anon_sym_foreach_r] = ACTIONS(1557), + [anon_sym_while] = ACTIONS(1557), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_int] = ACTIONS(1557), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_STAR] = ACTIONS(1559), + [anon_sym_asm] = ACTIONS(1557), + [anon_sym_DOLLARassert] = ACTIONS(1557), + [anon_sym_DOLLARerror] = ACTIONS(1557), + [anon_sym_DOLLARecho] = ACTIONS(1557), + [anon_sym_DOLLARif] = ACTIONS(1557), + [anon_sym_DOLLARcase] = ACTIONS(1557), + [anon_sym_DOLLARdefault] = ACTIONS(1557), + [anon_sym_DOLLARswitch] = ACTIONS(1557), + [anon_sym_DOLLARendswitch] = ACTIONS(1557), + [anon_sym_DOLLARfor] = ACTIONS(1557), + [anon_sym_DOLLARforeach] = ACTIONS(1557), + [anon_sym_DOLLARalignof] = ACTIONS(1557), + [anon_sym_DOLLARextnameof] = ACTIONS(1557), + [anon_sym_DOLLARnameof] = ACTIONS(1557), + [anon_sym_DOLLARoffsetof] = ACTIONS(1557), + [anon_sym_DOLLARqnameof] = ACTIONS(1557), + [anon_sym_DOLLARvaconst] = ACTIONS(1557), + [anon_sym_DOLLARvaarg] = ACTIONS(1557), + [anon_sym_DOLLARvaref] = ACTIONS(1557), + [anon_sym_DOLLARvaexpr] = ACTIONS(1557), + [anon_sym_true] = ACTIONS(1557), + [anon_sym_false] = ACTIONS(1557), + [anon_sym_null] = ACTIONS(1557), + [anon_sym_DOLLARvacount] = ACTIONS(1557), + [anon_sym_DOLLARappend] = ACTIONS(1557), + [anon_sym_DOLLARconcat] = ACTIONS(1557), + [anon_sym_DOLLAReval] = ACTIONS(1557), + [anon_sym_DOLLARis_const] = ACTIONS(1557), + [anon_sym_DOLLARsizeof] = ACTIONS(1557), + [anon_sym_DOLLARstringify] = ACTIONS(1557), + [anon_sym_DOLLARand] = ACTIONS(1557), + [anon_sym_DOLLARdefined] = ACTIONS(1557), + [anon_sym_DOLLARembed] = ACTIONS(1557), + [anon_sym_DOLLARor] = ACTIONS(1557), + [anon_sym_DOLLARfeature] = ACTIONS(1557), + [anon_sym_DOLLARassignable] = ACTIONS(1557), + [anon_sym_BANG] = ACTIONS(1559), + [anon_sym_TILDE] = ACTIONS(1559), + [anon_sym_PLUS_PLUS] = ACTIONS(1559), + [anon_sym_DASH_DASH] = ACTIONS(1559), + [anon_sym_typeid] = ACTIONS(1557), + [anon_sym_LBRACE_PIPE] = ACTIONS(1559), + [anon_sym_void] = ACTIONS(1557), + [anon_sym_bool] = ACTIONS(1557), + [anon_sym_char] = ACTIONS(1557), + [anon_sym_ichar] = ACTIONS(1557), + [anon_sym_short] = ACTIONS(1557), + [anon_sym_ushort] = ACTIONS(1557), + [anon_sym_uint] = ACTIONS(1557), + [anon_sym_long] = ACTIONS(1557), + [anon_sym_ulong] = ACTIONS(1557), + [anon_sym_int128] = ACTIONS(1557), + [anon_sym_uint128] = ACTIONS(1557), + [anon_sym_float] = ACTIONS(1557), + [anon_sym_double] = ACTIONS(1557), + [anon_sym_float16] = ACTIONS(1557), + [anon_sym_bfloat16] = ACTIONS(1557), + [anon_sym_float128] = ACTIONS(1557), + [anon_sym_iptr] = ACTIONS(1557), + [anon_sym_uptr] = ACTIONS(1557), + [anon_sym_isz] = ACTIONS(1557), + [anon_sym_usz] = ACTIONS(1557), + [anon_sym_anyfault] = ACTIONS(1557), + [anon_sym_any] = ACTIONS(1557), + [anon_sym_DOLLARtypeof] = ACTIONS(1557), + [anon_sym_DOLLARtypefrom] = ACTIONS(1557), + [anon_sym_DOLLARvatype] = ACTIONS(1557), + [anon_sym_DOLLARevaltype] = ACTIONS(1557), + [sym_real_literal] = ACTIONS(1559), }, [466] = { [sym_line_comment] = STATE(466), [sym_doc_comment] = STATE(466), [sym_block_comment] = STATE(466), - [sym_ident] = ACTIONS(1664), - [sym_integer_literal] = ACTIONS(1666), - [anon_sym_SQUOTE] = ACTIONS(1666), - [anon_sym_DQUOTE] = ACTIONS(1666), - [anon_sym_BQUOTE] = ACTIONS(1666), - [sym_bytes_literal] = ACTIONS(1666), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1664), - [sym_at_ident] = ACTIONS(1666), - [sym_hash_ident] = ACTIONS(1666), - [sym_type_ident] = ACTIONS(1666), - [sym_ct_type_ident] = ACTIONS(1666), - [sym_const_ident] = ACTIONS(1664), - [sym_builtin] = ACTIONS(1666), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_static] = ACTIONS(1664), - [anon_sym_tlocal] = ACTIONS(1664), - [anon_sym_SEMI] = ACTIONS(1666), - [anon_sym_fn] = ACTIONS(1664), - [anon_sym_LBRACE] = ACTIONS(1664), - [anon_sym_RBRACE] = ACTIONS(1666), - [anon_sym_const] = ACTIONS(1664), - [anon_sym_var] = ACTIONS(1664), - [anon_sym_return] = ACTIONS(1664), - [anon_sym_continue] = ACTIONS(1664), - [anon_sym_break] = ACTIONS(1664), - [anon_sym_defer] = ACTIONS(1664), - [anon_sym_assert] = ACTIONS(1664), - [anon_sym_case] = ACTIONS(1664), - [anon_sym_default] = ACTIONS(1664), - [anon_sym_nextcase] = ACTIONS(1664), - [anon_sym_switch] = ACTIONS(1664), - [anon_sym_AMP_AMP] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_for] = ACTIONS(1664), - [anon_sym_foreach] = ACTIONS(1664), - [anon_sym_foreach_r] = ACTIONS(1664), - [anon_sym_while] = ACTIONS(1664), - [anon_sym_do] = ACTIONS(1664), - [anon_sym_int] = ACTIONS(1664), - [anon_sym_PLUS] = ACTIONS(1664), - [anon_sym_DASH] = ACTIONS(1664), - [anon_sym_STAR] = ACTIONS(1666), - [anon_sym_asm] = ACTIONS(1664), - [anon_sym_DOLLARassert] = ACTIONS(1664), - [anon_sym_DOLLARerror] = ACTIONS(1664), - [anon_sym_DOLLARecho] = ACTIONS(1664), - [anon_sym_DOLLARif] = ACTIONS(1664), - [anon_sym_DOLLARswitch] = ACTIONS(1664), - [anon_sym_DOLLARfor] = ACTIONS(1664), - [anon_sym_DOLLARforeach] = ACTIONS(1664), - [anon_sym_DOLLARalignof] = ACTIONS(1664), - [anon_sym_DOLLARextnameof] = ACTIONS(1664), - [anon_sym_DOLLARnameof] = ACTIONS(1664), - [anon_sym_DOLLARoffsetof] = ACTIONS(1664), - [anon_sym_DOLLARqnameof] = ACTIONS(1664), - [anon_sym_DOLLARvaconst] = ACTIONS(1664), - [anon_sym_DOLLARvaarg] = ACTIONS(1664), - [anon_sym_DOLLARvaref] = ACTIONS(1664), - [anon_sym_DOLLARvaexpr] = ACTIONS(1664), - [anon_sym_true] = ACTIONS(1664), - [anon_sym_false] = ACTIONS(1664), - [anon_sym_null] = ACTIONS(1664), - [anon_sym_DOLLARvacount] = ACTIONS(1664), - [anon_sym_DOLLARappend] = ACTIONS(1664), - [anon_sym_DOLLARconcat] = ACTIONS(1664), - [anon_sym_DOLLAReval] = ACTIONS(1664), - [anon_sym_DOLLARis_const] = ACTIONS(1664), - [anon_sym_DOLLARsizeof] = ACTIONS(1664), - [anon_sym_DOLLARstringify] = ACTIONS(1664), - [anon_sym_DOLLARand] = ACTIONS(1664), - [anon_sym_DOLLARdefined] = ACTIONS(1664), - [anon_sym_DOLLARembed] = ACTIONS(1664), - [anon_sym_DOLLARor] = ACTIONS(1664), - [anon_sym_DOLLARfeature] = ACTIONS(1664), - [anon_sym_DOLLARassignable] = ACTIONS(1664), - [anon_sym_BANG] = ACTIONS(1666), - [anon_sym_TILDE] = ACTIONS(1666), - [anon_sym_PLUS_PLUS] = ACTIONS(1666), - [anon_sym_DASH_DASH] = ACTIONS(1666), - [anon_sym_typeid] = ACTIONS(1664), - [anon_sym_LBRACE_PIPE] = ACTIONS(1666), - [anon_sym_PIPE_RBRACE] = ACTIONS(1666), - [anon_sym_void] = ACTIONS(1664), - [anon_sym_bool] = ACTIONS(1664), - [anon_sym_char] = ACTIONS(1664), - [anon_sym_ichar] = ACTIONS(1664), - [anon_sym_short] = ACTIONS(1664), - [anon_sym_ushort] = ACTIONS(1664), - [anon_sym_uint] = ACTIONS(1664), - [anon_sym_long] = ACTIONS(1664), - [anon_sym_ulong] = ACTIONS(1664), - [anon_sym_int128] = ACTIONS(1664), - [anon_sym_uint128] = ACTIONS(1664), - [anon_sym_float] = ACTIONS(1664), - [anon_sym_double] = ACTIONS(1664), - [anon_sym_float16] = ACTIONS(1664), - [anon_sym_bfloat16] = ACTIONS(1664), - [anon_sym_float128] = ACTIONS(1664), - [anon_sym_iptr] = ACTIONS(1664), - [anon_sym_uptr] = ACTIONS(1664), - [anon_sym_isz] = ACTIONS(1664), - [anon_sym_usz] = ACTIONS(1664), - [anon_sym_anyfault] = ACTIONS(1664), - [anon_sym_any] = ACTIONS(1664), - [anon_sym_DOLLARtypeof] = ACTIONS(1664), - [anon_sym_DOLLARtypefrom] = ACTIONS(1664), - [anon_sym_DOLLARvatype] = ACTIONS(1664), - [anon_sym_DOLLARevaltype] = ACTIONS(1664), - [sym_real_literal] = ACTIONS(1666), + [sym_ident] = ACTIONS(1573), + [sym_integer_literal] = ACTIONS(1575), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_DQUOTE] = ACTIONS(1575), + [anon_sym_BQUOTE] = ACTIONS(1575), + [sym_bytes_literal] = ACTIONS(1575), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1573), + [sym_at_ident] = ACTIONS(1575), + [sym_hash_ident] = ACTIONS(1575), + [sym_type_ident] = ACTIONS(1575), + [sym_ct_type_ident] = ACTIONS(1575), + [sym_const_ident] = ACTIONS(1573), + [sym_builtin] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(1575), + [anon_sym_AMP] = ACTIONS(1573), + [anon_sym_static] = ACTIONS(1573), + [anon_sym_tlocal] = ACTIONS(1573), + [anon_sym_SEMI] = ACTIONS(1575), + [anon_sym_fn] = ACTIONS(1573), + [anon_sym_LBRACE] = ACTIONS(1573), + [anon_sym_const] = ACTIONS(1573), + [anon_sym_var] = ACTIONS(1573), + [anon_sym_return] = ACTIONS(1573), + [anon_sym_continue] = ACTIONS(1573), + [anon_sym_break] = ACTIONS(1573), + [anon_sym_defer] = ACTIONS(1573), + [anon_sym_assert] = ACTIONS(1573), + [anon_sym_nextcase] = ACTIONS(1573), + [anon_sym_switch] = ACTIONS(1573), + [anon_sym_AMP_AMP] = ACTIONS(1575), + [anon_sym_if] = ACTIONS(1573), + [anon_sym_for] = ACTIONS(1573), + [anon_sym_foreach] = ACTIONS(1573), + [anon_sym_foreach_r] = ACTIONS(1573), + [anon_sym_while] = ACTIONS(1573), + [anon_sym_do] = ACTIONS(1573), + [anon_sym_int] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1573), + [anon_sym_DASH] = ACTIONS(1573), + [anon_sym_STAR] = ACTIONS(1575), + [anon_sym_asm] = ACTIONS(1573), + [anon_sym_DOLLARassert] = ACTIONS(1573), + [anon_sym_DOLLARerror] = ACTIONS(1573), + [anon_sym_DOLLARecho] = ACTIONS(1573), + [anon_sym_DOLLARif] = ACTIONS(1573), + [anon_sym_DOLLARcase] = ACTIONS(1573), + [anon_sym_DOLLARdefault] = ACTIONS(1573), + [anon_sym_DOLLARswitch] = ACTIONS(1573), + [anon_sym_DOLLARendswitch] = ACTIONS(1573), + [anon_sym_DOLLARfor] = ACTIONS(1573), + [anon_sym_DOLLARforeach] = ACTIONS(1573), + [anon_sym_DOLLARalignof] = ACTIONS(1573), + [anon_sym_DOLLARextnameof] = ACTIONS(1573), + [anon_sym_DOLLARnameof] = ACTIONS(1573), + [anon_sym_DOLLARoffsetof] = ACTIONS(1573), + [anon_sym_DOLLARqnameof] = ACTIONS(1573), + [anon_sym_DOLLARvaconst] = ACTIONS(1573), + [anon_sym_DOLLARvaarg] = ACTIONS(1573), + [anon_sym_DOLLARvaref] = ACTIONS(1573), + [anon_sym_DOLLARvaexpr] = ACTIONS(1573), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [anon_sym_null] = ACTIONS(1573), + [anon_sym_DOLLARvacount] = ACTIONS(1573), + [anon_sym_DOLLARappend] = ACTIONS(1573), + [anon_sym_DOLLARconcat] = ACTIONS(1573), + [anon_sym_DOLLAReval] = ACTIONS(1573), + [anon_sym_DOLLARis_const] = ACTIONS(1573), + [anon_sym_DOLLARsizeof] = ACTIONS(1573), + [anon_sym_DOLLARstringify] = ACTIONS(1573), + [anon_sym_DOLLARand] = ACTIONS(1573), + [anon_sym_DOLLARdefined] = ACTIONS(1573), + [anon_sym_DOLLARembed] = ACTIONS(1573), + [anon_sym_DOLLARor] = ACTIONS(1573), + [anon_sym_DOLLARfeature] = ACTIONS(1573), + [anon_sym_DOLLARassignable] = ACTIONS(1573), + [anon_sym_BANG] = ACTIONS(1575), + [anon_sym_TILDE] = ACTIONS(1575), + [anon_sym_PLUS_PLUS] = ACTIONS(1575), + [anon_sym_DASH_DASH] = ACTIONS(1575), + [anon_sym_typeid] = ACTIONS(1573), + [anon_sym_LBRACE_PIPE] = ACTIONS(1575), + [anon_sym_void] = ACTIONS(1573), + [anon_sym_bool] = ACTIONS(1573), + [anon_sym_char] = ACTIONS(1573), + [anon_sym_ichar] = ACTIONS(1573), + [anon_sym_short] = ACTIONS(1573), + [anon_sym_ushort] = ACTIONS(1573), + [anon_sym_uint] = ACTIONS(1573), + [anon_sym_long] = ACTIONS(1573), + [anon_sym_ulong] = ACTIONS(1573), + [anon_sym_int128] = ACTIONS(1573), + [anon_sym_uint128] = ACTIONS(1573), + [anon_sym_float] = ACTIONS(1573), + [anon_sym_double] = ACTIONS(1573), + [anon_sym_float16] = ACTIONS(1573), + [anon_sym_bfloat16] = ACTIONS(1573), + [anon_sym_float128] = ACTIONS(1573), + [anon_sym_iptr] = ACTIONS(1573), + [anon_sym_uptr] = ACTIONS(1573), + [anon_sym_isz] = ACTIONS(1573), + [anon_sym_usz] = ACTIONS(1573), + [anon_sym_anyfault] = ACTIONS(1573), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_DOLLARtypeof] = ACTIONS(1573), + [anon_sym_DOLLARtypefrom] = ACTIONS(1573), + [anon_sym_DOLLARvatype] = ACTIONS(1573), + [anon_sym_DOLLARevaltype] = ACTIONS(1573), + [sym_real_literal] = ACTIONS(1575), }, [467] = { [sym_line_comment] = STATE(467), [sym_doc_comment] = STATE(467), [sym_block_comment] = STATE(467), - [sym_ident] = ACTIONS(1402), - [sym_integer_literal] = ACTIONS(1404), - [anon_sym_SQUOTE] = ACTIONS(1404), - [anon_sym_DQUOTE] = ACTIONS(1404), - [anon_sym_BQUOTE] = ACTIONS(1404), - [sym_bytes_literal] = ACTIONS(1404), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1402), - [sym_at_ident] = ACTIONS(1404), - [sym_hash_ident] = ACTIONS(1404), - [sym_type_ident] = ACTIONS(1404), - [sym_ct_type_ident] = ACTIONS(1404), - [sym_const_ident] = ACTIONS(1402), - [sym_builtin] = ACTIONS(1404), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_AMP] = ACTIONS(1402), - [anon_sym_static] = ACTIONS(1402), - [anon_sym_tlocal] = ACTIONS(1402), - [anon_sym_SEMI] = ACTIONS(1404), - [anon_sym_fn] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1402), - [anon_sym_const] = ACTIONS(1402), - [anon_sym_var] = ACTIONS(1402), - [anon_sym_return] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [anon_sym_break] = ACTIONS(1402), - [anon_sym_defer] = ACTIONS(1402), - [anon_sym_assert] = ACTIONS(1402), - [anon_sym_nextcase] = ACTIONS(1402), - [anon_sym_switch] = ACTIONS(1402), - [anon_sym_AMP_AMP] = ACTIONS(1404), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_for] = ACTIONS(1402), - [anon_sym_foreach] = ACTIONS(1402), - [anon_sym_foreach_r] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1402), - [anon_sym_do] = ACTIONS(1402), - [anon_sym_int] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1402), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_STAR] = ACTIONS(1404), - [anon_sym_asm] = ACTIONS(1402), - [anon_sym_DOLLARassert] = ACTIONS(1402), - [anon_sym_DOLLARerror] = ACTIONS(1402), - [anon_sym_DOLLARecho] = ACTIONS(1402), - [anon_sym_DOLLARif] = ACTIONS(1402), - [anon_sym_DOLLARcase] = ACTIONS(1402), - [anon_sym_DOLLARdefault] = ACTIONS(1402), - [anon_sym_DOLLARswitch] = ACTIONS(1402), - [anon_sym_DOLLARendswitch] = ACTIONS(1402), - [anon_sym_DOLLARfor] = ACTIONS(1402), - [anon_sym_DOLLARforeach] = ACTIONS(1402), - [anon_sym_DOLLARalignof] = ACTIONS(1402), - [anon_sym_DOLLARextnameof] = ACTIONS(1402), - [anon_sym_DOLLARnameof] = ACTIONS(1402), - [anon_sym_DOLLARoffsetof] = ACTIONS(1402), - [anon_sym_DOLLARqnameof] = ACTIONS(1402), - [anon_sym_DOLLARvaconst] = ACTIONS(1402), - [anon_sym_DOLLARvaarg] = ACTIONS(1402), - [anon_sym_DOLLARvaref] = ACTIONS(1402), - [anon_sym_DOLLARvaexpr] = ACTIONS(1402), - [anon_sym_true] = ACTIONS(1402), - [anon_sym_false] = ACTIONS(1402), - [anon_sym_null] = ACTIONS(1402), - [anon_sym_DOLLARvacount] = ACTIONS(1402), - [anon_sym_DOLLARappend] = ACTIONS(1402), - [anon_sym_DOLLARconcat] = ACTIONS(1402), - [anon_sym_DOLLAReval] = ACTIONS(1402), - [anon_sym_DOLLARis_const] = ACTIONS(1402), - [anon_sym_DOLLARsizeof] = ACTIONS(1402), - [anon_sym_DOLLARstringify] = ACTIONS(1402), - [anon_sym_DOLLARand] = ACTIONS(1402), - [anon_sym_DOLLARdefined] = ACTIONS(1402), - [anon_sym_DOLLARembed] = ACTIONS(1402), - [anon_sym_DOLLARor] = ACTIONS(1402), - [anon_sym_DOLLARfeature] = ACTIONS(1402), - [anon_sym_DOLLARassignable] = ACTIONS(1402), - [anon_sym_BANG] = ACTIONS(1404), - [anon_sym_TILDE] = ACTIONS(1404), - [anon_sym_PLUS_PLUS] = ACTIONS(1404), - [anon_sym_DASH_DASH] = ACTIONS(1404), - [anon_sym_typeid] = ACTIONS(1402), - [anon_sym_LBRACE_PIPE] = ACTIONS(1404), - [anon_sym_void] = ACTIONS(1402), - [anon_sym_bool] = ACTIONS(1402), - [anon_sym_char] = ACTIONS(1402), - [anon_sym_ichar] = ACTIONS(1402), - [anon_sym_short] = ACTIONS(1402), - [anon_sym_ushort] = ACTIONS(1402), - [anon_sym_uint] = ACTIONS(1402), - [anon_sym_long] = ACTIONS(1402), - [anon_sym_ulong] = ACTIONS(1402), - [anon_sym_int128] = ACTIONS(1402), - [anon_sym_uint128] = ACTIONS(1402), - [anon_sym_float] = ACTIONS(1402), - [anon_sym_double] = ACTIONS(1402), - [anon_sym_float16] = ACTIONS(1402), - [anon_sym_bfloat16] = ACTIONS(1402), - [anon_sym_float128] = ACTIONS(1402), - [anon_sym_iptr] = ACTIONS(1402), - [anon_sym_uptr] = ACTIONS(1402), - [anon_sym_isz] = ACTIONS(1402), - [anon_sym_usz] = ACTIONS(1402), - [anon_sym_anyfault] = ACTIONS(1402), - [anon_sym_any] = ACTIONS(1402), - [anon_sym_DOLLARtypeof] = ACTIONS(1402), - [anon_sym_DOLLARtypefrom] = ACTIONS(1402), - [anon_sym_DOLLARvatype] = ACTIONS(1402), - [anon_sym_DOLLARevaltype] = ACTIONS(1402), - [sym_real_literal] = ACTIONS(1404), + [sym_ident] = ACTIONS(1423), + [sym_integer_literal] = ACTIONS(1425), + [anon_sym_SQUOTE] = ACTIONS(1425), + [anon_sym_DQUOTE] = ACTIONS(1425), + [anon_sym_BQUOTE] = ACTIONS(1425), + [sym_bytes_literal] = ACTIONS(1425), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1423), + [sym_at_ident] = ACTIONS(1425), + [sym_hash_ident] = ACTIONS(1425), + [sym_type_ident] = ACTIONS(1425), + [sym_ct_type_ident] = ACTIONS(1425), + [sym_const_ident] = ACTIONS(1423), + [sym_builtin] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1423), + [anon_sym_static] = ACTIONS(1423), + [anon_sym_tlocal] = ACTIONS(1423), + [anon_sym_SEMI] = ACTIONS(1425), + [anon_sym_fn] = ACTIONS(1423), + [anon_sym_LBRACE] = ACTIONS(1423), + [anon_sym_const] = ACTIONS(1423), + [anon_sym_var] = ACTIONS(1423), + [anon_sym_return] = ACTIONS(1423), + [anon_sym_continue] = ACTIONS(1423), + [anon_sym_break] = ACTIONS(1423), + [anon_sym_defer] = ACTIONS(1423), + [anon_sym_assert] = ACTIONS(1423), + [anon_sym_nextcase] = ACTIONS(1423), + [anon_sym_switch] = ACTIONS(1423), + [anon_sym_AMP_AMP] = ACTIONS(1425), + [anon_sym_if] = ACTIONS(1423), + [anon_sym_for] = ACTIONS(1423), + [anon_sym_foreach] = ACTIONS(1423), + [anon_sym_foreach_r] = ACTIONS(1423), + [anon_sym_while] = ACTIONS(1423), + [anon_sym_do] = ACTIONS(1423), + [anon_sym_int] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_asm] = ACTIONS(1423), + [anon_sym_DOLLARassert] = ACTIONS(1423), + [anon_sym_DOLLARerror] = ACTIONS(1423), + [anon_sym_DOLLARecho] = ACTIONS(1423), + [anon_sym_DOLLARif] = ACTIONS(1423), + [anon_sym_DOLLARcase] = ACTIONS(1423), + [anon_sym_DOLLARdefault] = ACTIONS(1423), + [anon_sym_DOLLARswitch] = ACTIONS(1423), + [anon_sym_DOLLARendswitch] = ACTIONS(1423), + [anon_sym_DOLLARfor] = ACTIONS(1423), + [anon_sym_DOLLARforeach] = ACTIONS(1423), + [anon_sym_DOLLARalignof] = ACTIONS(1423), + [anon_sym_DOLLARextnameof] = ACTIONS(1423), + [anon_sym_DOLLARnameof] = ACTIONS(1423), + [anon_sym_DOLLARoffsetof] = ACTIONS(1423), + [anon_sym_DOLLARqnameof] = ACTIONS(1423), + [anon_sym_DOLLARvaconst] = ACTIONS(1423), + [anon_sym_DOLLARvaarg] = ACTIONS(1423), + [anon_sym_DOLLARvaref] = ACTIONS(1423), + [anon_sym_DOLLARvaexpr] = ACTIONS(1423), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_null] = ACTIONS(1423), + [anon_sym_DOLLARvacount] = ACTIONS(1423), + [anon_sym_DOLLARappend] = ACTIONS(1423), + [anon_sym_DOLLARconcat] = ACTIONS(1423), + [anon_sym_DOLLAReval] = ACTIONS(1423), + [anon_sym_DOLLARis_const] = ACTIONS(1423), + [anon_sym_DOLLARsizeof] = ACTIONS(1423), + [anon_sym_DOLLARstringify] = ACTIONS(1423), + [anon_sym_DOLLARand] = ACTIONS(1423), + [anon_sym_DOLLARdefined] = ACTIONS(1423), + [anon_sym_DOLLARembed] = ACTIONS(1423), + [anon_sym_DOLLARor] = ACTIONS(1423), + [anon_sym_DOLLARfeature] = ACTIONS(1423), + [anon_sym_DOLLARassignable] = ACTIONS(1423), + [anon_sym_BANG] = ACTIONS(1425), + [anon_sym_TILDE] = ACTIONS(1425), + [anon_sym_PLUS_PLUS] = ACTIONS(1425), + [anon_sym_DASH_DASH] = ACTIONS(1425), + [anon_sym_typeid] = ACTIONS(1423), + [anon_sym_LBRACE_PIPE] = ACTIONS(1425), + [anon_sym_void] = ACTIONS(1423), + [anon_sym_bool] = ACTIONS(1423), + [anon_sym_char] = ACTIONS(1423), + [anon_sym_ichar] = ACTIONS(1423), + [anon_sym_short] = ACTIONS(1423), + [anon_sym_ushort] = ACTIONS(1423), + [anon_sym_uint] = ACTIONS(1423), + [anon_sym_long] = ACTIONS(1423), + [anon_sym_ulong] = ACTIONS(1423), + [anon_sym_int128] = ACTIONS(1423), + [anon_sym_uint128] = ACTIONS(1423), + [anon_sym_float] = ACTIONS(1423), + [anon_sym_double] = ACTIONS(1423), + [anon_sym_float16] = ACTIONS(1423), + [anon_sym_bfloat16] = ACTIONS(1423), + [anon_sym_float128] = ACTIONS(1423), + [anon_sym_iptr] = ACTIONS(1423), + [anon_sym_uptr] = ACTIONS(1423), + [anon_sym_isz] = ACTIONS(1423), + [anon_sym_usz] = ACTIONS(1423), + [anon_sym_anyfault] = ACTIONS(1423), + [anon_sym_any] = ACTIONS(1423), + [anon_sym_DOLLARtypeof] = ACTIONS(1423), + [anon_sym_DOLLARtypefrom] = ACTIONS(1423), + [anon_sym_DOLLARvatype] = ACTIONS(1423), + [anon_sym_DOLLARevaltype] = ACTIONS(1423), + [sym_real_literal] = ACTIONS(1425), }, [468] = { [sym_line_comment] = STATE(468), [sym_doc_comment] = STATE(468), [sym_block_comment] = STATE(468), - [sym_ident] = ACTIONS(1500), - [sym_integer_literal] = ACTIONS(1502), - [anon_sym_SQUOTE] = ACTIONS(1502), - [anon_sym_DQUOTE] = ACTIONS(1502), - [anon_sym_BQUOTE] = ACTIONS(1502), - [sym_bytes_literal] = ACTIONS(1502), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1500), - [sym_at_ident] = ACTIONS(1502), - [sym_hash_ident] = ACTIONS(1502), - [sym_type_ident] = ACTIONS(1502), - [sym_ct_type_ident] = ACTIONS(1502), - [sym_const_ident] = ACTIONS(1500), - [sym_builtin] = ACTIONS(1502), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_AMP] = ACTIONS(1500), - [anon_sym_static] = ACTIONS(1500), - [anon_sym_tlocal] = ACTIONS(1500), - [anon_sym_SEMI] = ACTIONS(1502), - [anon_sym_fn] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_const] = ACTIONS(1500), - [anon_sym_var] = ACTIONS(1500), - [anon_sym_return] = ACTIONS(1500), - [anon_sym_continue] = ACTIONS(1500), - [anon_sym_break] = ACTIONS(1500), - [anon_sym_defer] = ACTIONS(1500), - [anon_sym_assert] = ACTIONS(1500), - [anon_sym_nextcase] = ACTIONS(1500), - [anon_sym_switch] = ACTIONS(1500), - [anon_sym_AMP_AMP] = ACTIONS(1502), - [anon_sym_if] = ACTIONS(1500), - [anon_sym_for] = ACTIONS(1500), - [anon_sym_foreach] = ACTIONS(1500), - [anon_sym_foreach_r] = ACTIONS(1500), - [anon_sym_while] = ACTIONS(1500), - [anon_sym_do] = ACTIONS(1500), - [anon_sym_int] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1500), - [anon_sym_DASH] = ACTIONS(1500), - [anon_sym_STAR] = ACTIONS(1502), - [anon_sym_asm] = ACTIONS(1500), - [anon_sym_DOLLARassert] = ACTIONS(1500), - [anon_sym_DOLLARerror] = ACTIONS(1500), - [anon_sym_DOLLARecho] = ACTIONS(1500), - [anon_sym_DOLLARif] = ACTIONS(1500), - [anon_sym_DOLLARcase] = ACTIONS(1500), - [anon_sym_DOLLARdefault] = ACTIONS(1500), - [anon_sym_DOLLARswitch] = ACTIONS(1500), - [anon_sym_DOLLARendswitch] = ACTIONS(1500), - [anon_sym_DOLLARfor] = ACTIONS(1500), - [anon_sym_DOLLARforeach] = ACTIONS(1500), - [anon_sym_DOLLARalignof] = ACTIONS(1500), - [anon_sym_DOLLARextnameof] = ACTIONS(1500), - [anon_sym_DOLLARnameof] = ACTIONS(1500), - [anon_sym_DOLLARoffsetof] = ACTIONS(1500), - [anon_sym_DOLLARqnameof] = ACTIONS(1500), - [anon_sym_DOLLARvaconst] = ACTIONS(1500), - [anon_sym_DOLLARvaarg] = ACTIONS(1500), - [anon_sym_DOLLARvaref] = ACTIONS(1500), - [anon_sym_DOLLARvaexpr] = ACTIONS(1500), - [anon_sym_true] = ACTIONS(1500), - [anon_sym_false] = ACTIONS(1500), - [anon_sym_null] = ACTIONS(1500), - [anon_sym_DOLLARvacount] = ACTIONS(1500), - [anon_sym_DOLLARappend] = ACTIONS(1500), - [anon_sym_DOLLARconcat] = ACTIONS(1500), - [anon_sym_DOLLAReval] = ACTIONS(1500), - [anon_sym_DOLLARis_const] = ACTIONS(1500), - [anon_sym_DOLLARsizeof] = ACTIONS(1500), - [anon_sym_DOLLARstringify] = ACTIONS(1500), - [anon_sym_DOLLARand] = ACTIONS(1500), - [anon_sym_DOLLARdefined] = ACTIONS(1500), - [anon_sym_DOLLARembed] = ACTIONS(1500), - [anon_sym_DOLLARor] = ACTIONS(1500), - [anon_sym_DOLLARfeature] = ACTIONS(1500), - [anon_sym_DOLLARassignable] = ACTIONS(1500), - [anon_sym_BANG] = ACTIONS(1502), - [anon_sym_TILDE] = ACTIONS(1502), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), - [anon_sym_DASH_DASH] = ACTIONS(1502), - [anon_sym_typeid] = ACTIONS(1500), - [anon_sym_LBRACE_PIPE] = ACTIONS(1502), - [anon_sym_void] = ACTIONS(1500), - [anon_sym_bool] = ACTIONS(1500), - [anon_sym_char] = ACTIONS(1500), - [anon_sym_ichar] = ACTIONS(1500), - [anon_sym_short] = ACTIONS(1500), - [anon_sym_ushort] = ACTIONS(1500), - [anon_sym_uint] = ACTIONS(1500), - [anon_sym_long] = ACTIONS(1500), - [anon_sym_ulong] = ACTIONS(1500), - [anon_sym_int128] = ACTIONS(1500), - [anon_sym_uint128] = ACTIONS(1500), - [anon_sym_float] = ACTIONS(1500), - [anon_sym_double] = ACTIONS(1500), - [anon_sym_float16] = ACTIONS(1500), - [anon_sym_bfloat16] = ACTIONS(1500), - [anon_sym_float128] = ACTIONS(1500), - [anon_sym_iptr] = ACTIONS(1500), - [anon_sym_uptr] = ACTIONS(1500), - [anon_sym_isz] = ACTIONS(1500), - [anon_sym_usz] = ACTIONS(1500), - [anon_sym_anyfault] = ACTIONS(1500), - [anon_sym_any] = ACTIONS(1500), - [anon_sym_DOLLARtypeof] = ACTIONS(1500), - [anon_sym_DOLLARtypefrom] = ACTIONS(1500), - [anon_sym_DOLLARvatype] = ACTIONS(1500), - [anon_sym_DOLLARevaltype] = ACTIONS(1500), - [sym_real_literal] = ACTIONS(1502), + [sym_ident] = ACTIONS(1589), + [sym_integer_literal] = ACTIONS(1591), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1591), + [anon_sym_BQUOTE] = ACTIONS(1591), + [sym_bytes_literal] = ACTIONS(1591), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1589), + [sym_at_ident] = ACTIONS(1591), + [sym_hash_ident] = ACTIONS(1591), + [sym_type_ident] = ACTIONS(1591), + [sym_ct_type_ident] = ACTIONS(1591), + [sym_const_ident] = ACTIONS(1589), + [sym_builtin] = ACTIONS(1591), + [anon_sym_LPAREN] = ACTIONS(1591), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_static] = ACTIONS(1589), + [anon_sym_tlocal] = ACTIONS(1589), + [anon_sym_SEMI] = ACTIONS(1591), + [anon_sym_fn] = ACTIONS(1589), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_const] = ACTIONS(1589), + [anon_sym_var] = ACTIONS(1589), + [anon_sym_return] = ACTIONS(1589), + [anon_sym_continue] = ACTIONS(1589), + [anon_sym_break] = ACTIONS(1589), + [anon_sym_defer] = ACTIONS(1589), + [anon_sym_assert] = ACTIONS(1589), + [anon_sym_nextcase] = ACTIONS(1589), + [anon_sym_switch] = ACTIONS(1589), + [anon_sym_AMP_AMP] = ACTIONS(1591), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_for] = ACTIONS(1589), + [anon_sym_foreach] = ACTIONS(1589), + [anon_sym_foreach_r] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1589), + [anon_sym_do] = ACTIONS(1589), + [anon_sym_int] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1589), + [anon_sym_STAR] = ACTIONS(1591), + [anon_sym_asm] = ACTIONS(1589), + [anon_sym_DOLLARassert] = ACTIONS(1589), + [anon_sym_DOLLARerror] = ACTIONS(1589), + [anon_sym_DOLLARecho] = ACTIONS(1589), + [anon_sym_DOLLARif] = ACTIONS(1589), + [anon_sym_DOLLARcase] = ACTIONS(1589), + [anon_sym_DOLLARdefault] = ACTIONS(1589), + [anon_sym_DOLLARswitch] = ACTIONS(1589), + [anon_sym_DOLLARendswitch] = ACTIONS(1589), + [anon_sym_DOLLARfor] = ACTIONS(1589), + [anon_sym_DOLLARforeach] = ACTIONS(1589), + [anon_sym_DOLLARalignof] = ACTIONS(1589), + [anon_sym_DOLLARextnameof] = ACTIONS(1589), + [anon_sym_DOLLARnameof] = ACTIONS(1589), + [anon_sym_DOLLARoffsetof] = ACTIONS(1589), + [anon_sym_DOLLARqnameof] = ACTIONS(1589), + [anon_sym_DOLLARvaconst] = ACTIONS(1589), + [anon_sym_DOLLARvaarg] = ACTIONS(1589), + [anon_sym_DOLLARvaref] = ACTIONS(1589), + [anon_sym_DOLLARvaexpr] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1589), + [anon_sym_false] = ACTIONS(1589), + [anon_sym_null] = ACTIONS(1589), + [anon_sym_DOLLARvacount] = ACTIONS(1589), + [anon_sym_DOLLARappend] = ACTIONS(1589), + [anon_sym_DOLLARconcat] = ACTIONS(1589), + [anon_sym_DOLLAReval] = ACTIONS(1589), + [anon_sym_DOLLARis_const] = ACTIONS(1589), + [anon_sym_DOLLARsizeof] = ACTIONS(1589), + [anon_sym_DOLLARstringify] = ACTIONS(1589), + [anon_sym_DOLLARand] = ACTIONS(1589), + [anon_sym_DOLLARdefined] = ACTIONS(1589), + [anon_sym_DOLLARembed] = ACTIONS(1589), + [anon_sym_DOLLARor] = ACTIONS(1589), + [anon_sym_DOLLARfeature] = ACTIONS(1589), + [anon_sym_DOLLARassignable] = ACTIONS(1589), + [anon_sym_BANG] = ACTIONS(1591), + [anon_sym_TILDE] = ACTIONS(1591), + [anon_sym_PLUS_PLUS] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1591), + [anon_sym_typeid] = ACTIONS(1589), + [anon_sym_LBRACE_PIPE] = ACTIONS(1591), + [anon_sym_void] = ACTIONS(1589), + [anon_sym_bool] = ACTIONS(1589), + [anon_sym_char] = ACTIONS(1589), + [anon_sym_ichar] = ACTIONS(1589), + [anon_sym_short] = ACTIONS(1589), + [anon_sym_ushort] = ACTIONS(1589), + [anon_sym_uint] = ACTIONS(1589), + [anon_sym_long] = ACTIONS(1589), + [anon_sym_ulong] = ACTIONS(1589), + [anon_sym_int128] = ACTIONS(1589), + [anon_sym_uint128] = ACTIONS(1589), + [anon_sym_float] = ACTIONS(1589), + [anon_sym_double] = ACTIONS(1589), + [anon_sym_float16] = ACTIONS(1589), + [anon_sym_bfloat16] = ACTIONS(1589), + [anon_sym_float128] = ACTIONS(1589), + [anon_sym_iptr] = ACTIONS(1589), + [anon_sym_uptr] = ACTIONS(1589), + [anon_sym_isz] = ACTIONS(1589), + [anon_sym_usz] = ACTIONS(1589), + [anon_sym_anyfault] = ACTIONS(1589), + [anon_sym_any] = ACTIONS(1589), + [anon_sym_DOLLARtypeof] = ACTIONS(1589), + [anon_sym_DOLLARtypefrom] = ACTIONS(1589), + [anon_sym_DOLLARvatype] = ACTIONS(1589), + [anon_sym_DOLLARevaltype] = ACTIONS(1589), + [sym_real_literal] = ACTIONS(1591), }, [469] = { [sym_line_comment] = STATE(469), [sym_doc_comment] = STATE(469), [sym_block_comment] = STATE(469), - [sym_ident] = ACTIONS(1644), - [sym_integer_literal] = ACTIONS(1646), - [anon_sym_SQUOTE] = ACTIONS(1646), - [anon_sym_DQUOTE] = ACTIONS(1646), - [anon_sym_BQUOTE] = ACTIONS(1646), - [sym_bytes_literal] = ACTIONS(1646), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1644), - [sym_at_ident] = ACTIONS(1646), - [sym_hash_ident] = ACTIONS(1646), - [sym_type_ident] = ACTIONS(1646), - [sym_ct_type_ident] = ACTIONS(1646), - [sym_const_ident] = ACTIONS(1644), - [sym_builtin] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(1646), - [anon_sym_AMP] = ACTIONS(1644), - [anon_sym_static] = ACTIONS(1644), - [anon_sym_tlocal] = ACTIONS(1644), - [anon_sym_SEMI] = ACTIONS(1646), - [anon_sym_fn] = ACTIONS(1644), - [anon_sym_LBRACE] = ACTIONS(1644), - [anon_sym_const] = ACTIONS(1644), - [anon_sym_var] = ACTIONS(1644), - [anon_sym_return] = ACTIONS(1644), - [anon_sym_continue] = ACTIONS(1644), - [anon_sym_break] = ACTIONS(1644), - [anon_sym_defer] = ACTIONS(1644), - [anon_sym_assert] = ACTIONS(1644), - [anon_sym_nextcase] = ACTIONS(1644), - [anon_sym_switch] = ACTIONS(1644), - [anon_sym_AMP_AMP] = ACTIONS(1646), - [anon_sym_if] = ACTIONS(1644), - [anon_sym_for] = ACTIONS(1644), - [anon_sym_foreach] = ACTIONS(1644), - [anon_sym_foreach_r] = ACTIONS(1644), - [anon_sym_while] = ACTIONS(1644), - [anon_sym_do] = ACTIONS(1644), - [anon_sym_int] = ACTIONS(1644), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_asm] = ACTIONS(1644), - [anon_sym_DOLLARassert] = ACTIONS(1644), - [anon_sym_DOLLARerror] = ACTIONS(1644), - [anon_sym_DOLLARecho] = ACTIONS(1644), - [anon_sym_DOLLARif] = ACTIONS(1644), - [anon_sym_DOLLARcase] = ACTIONS(1644), - [anon_sym_DOLLARdefault] = ACTIONS(1644), - [anon_sym_DOLLARswitch] = ACTIONS(1644), - [anon_sym_DOLLARendswitch] = ACTIONS(1644), - [anon_sym_DOLLARfor] = ACTIONS(1644), - [anon_sym_DOLLARforeach] = ACTIONS(1644), - [anon_sym_DOLLARalignof] = ACTIONS(1644), - [anon_sym_DOLLARextnameof] = ACTIONS(1644), - [anon_sym_DOLLARnameof] = ACTIONS(1644), - [anon_sym_DOLLARoffsetof] = ACTIONS(1644), - [anon_sym_DOLLARqnameof] = ACTIONS(1644), - [anon_sym_DOLLARvaconst] = ACTIONS(1644), - [anon_sym_DOLLARvaarg] = ACTIONS(1644), - [anon_sym_DOLLARvaref] = ACTIONS(1644), - [anon_sym_DOLLARvaexpr] = ACTIONS(1644), - [anon_sym_true] = ACTIONS(1644), - [anon_sym_false] = ACTIONS(1644), - [anon_sym_null] = ACTIONS(1644), - [anon_sym_DOLLARvacount] = ACTIONS(1644), - [anon_sym_DOLLARappend] = ACTIONS(1644), - [anon_sym_DOLLARconcat] = ACTIONS(1644), - [anon_sym_DOLLAReval] = ACTIONS(1644), - [anon_sym_DOLLARis_const] = ACTIONS(1644), - [anon_sym_DOLLARsizeof] = ACTIONS(1644), - [anon_sym_DOLLARstringify] = ACTIONS(1644), - [anon_sym_DOLLARand] = ACTIONS(1644), - [anon_sym_DOLLARdefined] = ACTIONS(1644), - [anon_sym_DOLLARembed] = ACTIONS(1644), - [anon_sym_DOLLARor] = ACTIONS(1644), - [anon_sym_DOLLARfeature] = ACTIONS(1644), - [anon_sym_DOLLARassignable] = ACTIONS(1644), - [anon_sym_BANG] = ACTIONS(1646), - [anon_sym_TILDE] = ACTIONS(1646), - [anon_sym_PLUS_PLUS] = ACTIONS(1646), - [anon_sym_DASH_DASH] = ACTIONS(1646), - [anon_sym_typeid] = ACTIONS(1644), - [anon_sym_LBRACE_PIPE] = ACTIONS(1646), - [anon_sym_void] = ACTIONS(1644), - [anon_sym_bool] = ACTIONS(1644), - [anon_sym_char] = ACTIONS(1644), - [anon_sym_ichar] = ACTIONS(1644), - [anon_sym_short] = ACTIONS(1644), - [anon_sym_ushort] = ACTIONS(1644), - [anon_sym_uint] = ACTIONS(1644), - [anon_sym_long] = ACTIONS(1644), - [anon_sym_ulong] = ACTIONS(1644), - [anon_sym_int128] = ACTIONS(1644), - [anon_sym_uint128] = ACTIONS(1644), - [anon_sym_float] = ACTIONS(1644), - [anon_sym_double] = ACTIONS(1644), - [anon_sym_float16] = ACTIONS(1644), - [anon_sym_bfloat16] = ACTIONS(1644), - [anon_sym_float128] = ACTIONS(1644), - [anon_sym_iptr] = ACTIONS(1644), - [anon_sym_uptr] = ACTIONS(1644), - [anon_sym_isz] = ACTIONS(1644), - [anon_sym_usz] = ACTIONS(1644), - [anon_sym_anyfault] = ACTIONS(1644), - [anon_sym_any] = ACTIONS(1644), - [anon_sym_DOLLARtypeof] = ACTIONS(1644), - [anon_sym_DOLLARtypefrom] = ACTIONS(1644), - [anon_sym_DOLLARvatype] = ACTIONS(1644), - [anon_sym_DOLLARevaltype] = ACTIONS(1644), - [sym_real_literal] = ACTIONS(1646), + [sym_ident] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1515), + [anon_sym_SQUOTE] = ACTIONS(1515), + [anon_sym_DQUOTE] = ACTIONS(1515), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_bytes_literal] = ACTIONS(1515), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1513), + [sym_at_ident] = ACTIONS(1515), + [sym_hash_ident] = ACTIONS(1515), + [sym_type_ident] = ACTIONS(1515), + [sym_ct_type_ident] = ACTIONS(1515), + [sym_const_ident] = ACTIONS(1513), + [sym_builtin] = ACTIONS(1515), + [anon_sym_LPAREN] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1513), + [anon_sym_static] = ACTIONS(1513), + [anon_sym_tlocal] = ACTIONS(1513), + [anon_sym_SEMI] = ACTIONS(1515), + [anon_sym_fn] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1513), + [anon_sym_const] = ACTIONS(1513), + [anon_sym_var] = ACTIONS(1513), + [anon_sym_return] = ACTIONS(1513), + [anon_sym_continue] = ACTIONS(1513), + [anon_sym_break] = ACTIONS(1513), + [anon_sym_defer] = ACTIONS(1513), + [anon_sym_assert] = ACTIONS(1513), + [anon_sym_nextcase] = ACTIONS(1513), + [anon_sym_switch] = ACTIONS(1513), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [anon_sym_if] = ACTIONS(1513), + [anon_sym_for] = ACTIONS(1513), + [anon_sym_foreach] = ACTIONS(1513), + [anon_sym_foreach_r] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1513), + [anon_sym_do] = ACTIONS(1513), + [anon_sym_int] = ACTIONS(1513), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(1515), + [anon_sym_asm] = ACTIONS(1513), + [anon_sym_DOLLARassert] = ACTIONS(1513), + [anon_sym_DOLLARerror] = ACTIONS(1513), + [anon_sym_DOLLARecho] = ACTIONS(1513), + [anon_sym_DOLLARif] = ACTIONS(1513), + [anon_sym_DOLLARcase] = ACTIONS(1513), + [anon_sym_DOLLARdefault] = ACTIONS(1513), + [anon_sym_DOLLARswitch] = ACTIONS(1513), + [anon_sym_DOLLARendswitch] = ACTIONS(1513), + [anon_sym_DOLLARfor] = ACTIONS(1513), + [anon_sym_DOLLARforeach] = ACTIONS(1513), + [anon_sym_DOLLARalignof] = ACTIONS(1513), + [anon_sym_DOLLARextnameof] = ACTIONS(1513), + [anon_sym_DOLLARnameof] = ACTIONS(1513), + [anon_sym_DOLLARoffsetof] = ACTIONS(1513), + [anon_sym_DOLLARqnameof] = ACTIONS(1513), + [anon_sym_DOLLARvaconst] = ACTIONS(1513), + [anon_sym_DOLLARvaarg] = ACTIONS(1513), + [anon_sym_DOLLARvaref] = ACTIONS(1513), + [anon_sym_DOLLARvaexpr] = ACTIONS(1513), + [anon_sym_true] = ACTIONS(1513), + [anon_sym_false] = ACTIONS(1513), + [anon_sym_null] = ACTIONS(1513), + [anon_sym_DOLLARvacount] = ACTIONS(1513), + [anon_sym_DOLLARappend] = ACTIONS(1513), + [anon_sym_DOLLARconcat] = ACTIONS(1513), + [anon_sym_DOLLAReval] = ACTIONS(1513), + [anon_sym_DOLLARis_const] = ACTIONS(1513), + [anon_sym_DOLLARsizeof] = ACTIONS(1513), + [anon_sym_DOLLARstringify] = ACTIONS(1513), + [anon_sym_DOLLARand] = ACTIONS(1513), + [anon_sym_DOLLARdefined] = ACTIONS(1513), + [anon_sym_DOLLARembed] = ACTIONS(1513), + [anon_sym_DOLLARor] = ACTIONS(1513), + [anon_sym_DOLLARfeature] = ACTIONS(1513), + [anon_sym_DOLLARassignable] = ACTIONS(1513), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_typeid] = ACTIONS(1513), + [anon_sym_LBRACE_PIPE] = ACTIONS(1515), + [anon_sym_void] = ACTIONS(1513), + [anon_sym_bool] = ACTIONS(1513), + [anon_sym_char] = ACTIONS(1513), + [anon_sym_ichar] = ACTIONS(1513), + [anon_sym_short] = ACTIONS(1513), + [anon_sym_ushort] = ACTIONS(1513), + [anon_sym_uint] = ACTIONS(1513), + [anon_sym_long] = ACTIONS(1513), + [anon_sym_ulong] = ACTIONS(1513), + [anon_sym_int128] = ACTIONS(1513), + [anon_sym_uint128] = ACTIONS(1513), + [anon_sym_float] = ACTIONS(1513), + [anon_sym_double] = ACTIONS(1513), + [anon_sym_float16] = ACTIONS(1513), + [anon_sym_bfloat16] = ACTIONS(1513), + [anon_sym_float128] = ACTIONS(1513), + [anon_sym_iptr] = ACTIONS(1513), + [anon_sym_uptr] = ACTIONS(1513), + [anon_sym_isz] = ACTIONS(1513), + [anon_sym_usz] = ACTIONS(1513), + [anon_sym_anyfault] = ACTIONS(1513), + [anon_sym_any] = ACTIONS(1513), + [anon_sym_DOLLARtypeof] = ACTIONS(1513), + [anon_sym_DOLLARtypefrom] = ACTIONS(1513), + [anon_sym_DOLLARvatype] = ACTIONS(1513), + [anon_sym_DOLLARevaltype] = ACTIONS(1513), + [sym_real_literal] = ACTIONS(1515), }, [470] = { [sym_line_comment] = STATE(470), [sym_doc_comment] = STATE(470), [sym_block_comment] = STATE(470), - [sym_ident] = ACTIONS(1544), - [sym_integer_literal] = ACTIONS(1546), - [anon_sym_SQUOTE] = ACTIONS(1546), - [anon_sym_DQUOTE] = ACTIONS(1546), - [anon_sym_BQUOTE] = ACTIONS(1546), - [sym_bytes_literal] = ACTIONS(1546), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1544), - [sym_at_ident] = ACTIONS(1546), - [sym_hash_ident] = ACTIONS(1546), - [sym_type_ident] = ACTIONS(1546), - [sym_ct_type_ident] = ACTIONS(1546), - [sym_const_ident] = ACTIONS(1544), - [sym_builtin] = ACTIONS(1546), - [anon_sym_LPAREN] = ACTIONS(1546), - [anon_sym_AMP] = ACTIONS(1544), - [anon_sym_static] = ACTIONS(1544), - [anon_sym_tlocal] = ACTIONS(1544), - [anon_sym_SEMI] = ACTIONS(1546), - [anon_sym_fn] = ACTIONS(1544), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_const] = ACTIONS(1544), - [anon_sym_var] = ACTIONS(1544), - [anon_sym_return] = ACTIONS(1544), - [anon_sym_continue] = ACTIONS(1544), - [anon_sym_break] = ACTIONS(1544), - [anon_sym_defer] = ACTIONS(1544), - [anon_sym_assert] = ACTIONS(1544), - [anon_sym_nextcase] = ACTIONS(1544), - [anon_sym_switch] = ACTIONS(1544), - [anon_sym_AMP_AMP] = ACTIONS(1546), - [anon_sym_if] = ACTIONS(1544), - [anon_sym_for] = ACTIONS(1544), - [anon_sym_foreach] = ACTIONS(1544), - [anon_sym_foreach_r] = ACTIONS(1544), - [anon_sym_while] = ACTIONS(1544), - [anon_sym_do] = ACTIONS(1544), - [anon_sym_int] = ACTIONS(1544), - [anon_sym_PLUS] = ACTIONS(1544), - [anon_sym_DASH] = ACTIONS(1544), - [anon_sym_STAR] = ACTIONS(1546), - [anon_sym_asm] = ACTIONS(1544), - [anon_sym_DOLLARassert] = ACTIONS(1544), - [anon_sym_DOLLARerror] = ACTIONS(1544), - [anon_sym_DOLLARecho] = ACTIONS(1544), - [anon_sym_DOLLARif] = ACTIONS(1544), - [anon_sym_DOLLARcase] = ACTIONS(1544), - [anon_sym_DOLLARdefault] = ACTIONS(1544), - [anon_sym_DOLLARswitch] = ACTIONS(1544), - [anon_sym_DOLLARendswitch] = ACTIONS(1544), - [anon_sym_DOLLARfor] = ACTIONS(1544), - [anon_sym_DOLLARforeach] = ACTIONS(1544), - [anon_sym_DOLLARalignof] = ACTIONS(1544), - [anon_sym_DOLLARextnameof] = ACTIONS(1544), - [anon_sym_DOLLARnameof] = ACTIONS(1544), - [anon_sym_DOLLARoffsetof] = ACTIONS(1544), - [anon_sym_DOLLARqnameof] = ACTIONS(1544), - [anon_sym_DOLLARvaconst] = ACTIONS(1544), - [anon_sym_DOLLARvaarg] = ACTIONS(1544), - [anon_sym_DOLLARvaref] = ACTIONS(1544), - [anon_sym_DOLLARvaexpr] = ACTIONS(1544), - [anon_sym_true] = ACTIONS(1544), - [anon_sym_false] = ACTIONS(1544), - [anon_sym_null] = ACTIONS(1544), - [anon_sym_DOLLARvacount] = ACTIONS(1544), - [anon_sym_DOLLARappend] = ACTIONS(1544), - [anon_sym_DOLLARconcat] = ACTIONS(1544), - [anon_sym_DOLLAReval] = ACTIONS(1544), - [anon_sym_DOLLARis_const] = ACTIONS(1544), - [anon_sym_DOLLARsizeof] = ACTIONS(1544), - [anon_sym_DOLLARstringify] = ACTIONS(1544), - [anon_sym_DOLLARand] = ACTIONS(1544), - [anon_sym_DOLLARdefined] = ACTIONS(1544), - [anon_sym_DOLLARembed] = ACTIONS(1544), - [anon_sym_DOLLARor] = ACTIONS(1544), - [anon_sym_DOLLARfeature] = ACTIONS(1544), - [anon_sym_DOLLARassignable] = ACTIONS(1544), - [anon_sym_BANG] = ACTIONS(1546), - [anon_sym_TILDE] = ACTIONS(1546), - [anon_sym_PLUS_PLUS] = ACTIONS(1546), - [anon_sym_DASH_DASH] = ACTIONS(1546), - [anon_sym_typeid] = ACTIONS(1544), - [anon_sym_LBRACE_PIPE] = ACTIONS(1546), - [anon_sym_void] = ACTIONS(1544), - [anon_sym_bool] = ACTIONS(1544), - [anon_sym_char] = ACTIONS(1544), - [anon_sym_ichar] = ACTIONS(1544), - [anon_sym_short] = ACTIONS(1544), - [anon_sym_ushort] = ACTIONS(1544), - [anon_sym_uint] = ACTIONS(1544), - [anon_sym_long] = ACTIONS(1544), - [anon_sym_ulong] = ACTIONS(1544), - [anon_sym_int128] = ACTIONS(1544), - [anon_sym_uint128] = ACTIONS(1544), - [anon_sym_float] = ACTIONS(1544), - [anon_sym_double] = ACTIONS(1544), - [anon_sym_float16] = ACTIONS(1544), - [anon_sym_bfloat16] = ACTIONS(1544), - [anon_sym_float128] = ACTIONS(1544), - [anon_sym_iptr] = ACTIONS(1544), - [anon_sym_uptr] = ACTIONS(1544), - [anon_sym_isz] = ACTIONS(1544), - [anon_sym_usz] = ACTIONS(1544), - [anon_sym_anyfault] = ACTIONS(1544), - [anon_sym_any] = ACTIONS(1544), - [anon_sym_DOLLARtypeof] = ACTIONS(1544), - [anon_sym_DOLLARtypefrom] = ACTIONS(1544), - [anon_sym_DOLLARvatype] = ACTIONS(1544), - [anon_sym_DOLLARevaltype] = ACTIONS(1544), - [sym_real_literal] = ACTIONS(1546), + [sym_ident] = ACTIONS(1621), + [sym_integer_literal] = ACTIONS(1623), + [anon_sym_SQUOTE] = ACTIONS(1623), + [anon_sym_DQUOTE] = ACTIONS(1623), + [anon_sym_BQUOTE] = ACTIONS(1623), + [sym_bytes_literal] = ACTIONS(1623), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1621), + [sym_at_ident] = ACTIONS(1623), + [sym_hash_ident] = ACTIONS(1623), + [sym_type_ident] = ACTIONS(1623), + [sym_ct_type_ident] = ACTIONS(1623), + [sym_const_ident] = ACTIONS(1621), + [sym_builtin] = ACTIONS(1623), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_AMP] = ACTIONS(1621), + [anon_sym_static] = ACTIONS(1621), + [anon_sym_tlocal] = ACTIONS(1621), + [anon_sym_SEMI] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_LBRACE] = ACTIONS(1621), + [anon_sym_const] = ACTIONS(1621), + [anon_sym_var] = ACTIONS(1621), + [anon_sym_return] = ACTIONS(1621), + [anon_sym_continue] = ACTIONS(1621), + [anon_sym_break] = ACTIONS(1621), + [anon_sym_defer] = ACTIONS(1621), + [anon_sym_assert] = ACTIONS(1621), + [anon_sym_nextcase] = ACTIONS(1621), + [anon_sym_switch] = ACTIONS(1621), + [anon_sym_AMP_AMP] = ACTIONS(1623), + [anon_sym_if] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1621), + [anon_sym_foreach] = ACTIONS(1621), + [anon_sym_foreach_r] = ACTIONS(1621), + [anon_sym_while] = ACTIONS(1621), + [anon_sym_do] = ACTIONS(1621), + [anon_sym_int] = ACTIONS(1621), + [anon_sym_PLUS] = ACTIONS(1621), + [anon_sym_DASH] = ACTIONS(1621), + [anon_sym_STAR] = ACTIONS(1623), + [anon_sym_asm] = ACTIONS(1621), + [anon_sym_DOLLARassert] = ACTIONS(1621), + [anon_sym_DOLLARerror] = ACTIONS(1621), + [anon_sym_DOLLARecho] = ACTIONS(1621), + [anon_sym_DOLLARif] = ACTIONS(1621), + [anon_sym_DOLLARcase] = ACTIONS(1621), + [anon_sym_DOLLARdefault] = ACTIONS(1621), + [anon_sym_DOLLARswitch] = ACTIONS(1621), + [anon_sym_DOLLARendswitch] = ACTIONS(1621), + [anon_sym_DOLLARfor] = ACTIONS(1621), + [anon_sym_DOLLARforeach] = ACTIONS(1621), + [anon_sym_DOLLARalignof] = ACTIONS(1621), + [anon_sym_DOLLARextnameof] = ACTIONS(1621), + [anon_sym_DOLLARnameof] = ACTIONS(1621), + [anon_sym_DOLLARoffsetof] = ACTIONS(1621), + [anon_sym_DOLLARqnameof] = ACTIONS(1621), + [anon_sym_DOLLARvaconst] = ACTIONS(1621), + [anon_sym_DOLLARvaarg] = ACTIONS(1621), + [anon_sym_DOLLARvaref] = ACTIONS(1621), + [anon_sym_DOLLARvaexpr] = ACTIONS(1621), + [anon_sym_true] = ACTIONS(1621), + [anon_sym_false] = ACTIONS(1621), + [anon_sym_null] = ACTIONS(1621), + [anon_sym_DOLLARvacount] = ACTIONS(1621), + [anon_sym_DOLLARappend] = ACTIONS(1621), + [anon_sym_DOLLARconcat] = ACTIONS(1621), + [anon_sym_DOLLAReval] = ACTIONS(1621), + [anon_sym_DOLLARis_const] = ACTIONS(1621), + [anon_sym_DOLLARsizeof] = ACTIONS(1621), + [anon_sym_DOLLARstringify] = ACTIONS(1621), + [anon_sym_DOLLARand] = ACTIONS(1621), + [anon_sym_DOLLARdefined] = ACTIONS(1621), + [anon_sym_DOLLARembed] = ACTIONS(1621), + [anon_sym_DOLLARor] = ACTIONS(1621), + [anon_sym_DOLLARfeature] = ACTIONS(1621), + [anon_sym_DOLLARassignable] = ACTIONS(1621), + [anon_sym_BANG] = ACTIONS(1623), + [anon_sym_TILDE] = ACTIONS(1623), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_typeid] = ACTIONS(1621), + [anon_sym_LBRACE_PIPE] = ACTIONS(1623), + [anon_sym_void] = ACTIONS(1621), + [anon_sym_bool] = ACTIONS(1621), + [anon_sym_char] = ACTIONS(1621), + [anon_sym_ichar] = ACTIONS(1621), + [anon_sym_short] = ACTIONS(1621), + [anon_sym_ushort] = ACTIONS(1621), + [anon_sym_uint] = ACTIONS(1621), + [anon_sym_long] = ACTIONS(1621), + [anon_sym_ulong] = ACTIONS(1621), + [anon_sym_int128] = ACTIONS(1621), + [anon_sym_uint128] = ACTIONS(1621), + [anon_sym_float] = ACTIONS(1621), + [anon_sym_double] = ACTIONS(1621), + [anon_sym_float16] = ACTIONS(1621), + [anon_sym_bfloat16] = ACTIONS(1621), + [anon_sym_float128] = ACTIONS(1621), + [anon_sym_iptr] = ACTIONS(1621), + [anon_sym_uptr] = ACTIONS(1621), + [anon_sym_isz] = ACTIONS(1621), + [anon_sym_usz] = ACTIONS(1621), + [anon_sym_anyfault] = ACTIONS(1621), + [anon_sym_any] = ACTIONS(1621), + [anon_sym_DOLLARtypeof] = ACTIONS(1621), + [anon_sym_DOLLARtypefrom] = ACTIONS(1621), + [anon_sym_DOLLARvatype] = ACTIONS(1621), + [anon_sym_DOLLARevaltype] = ACTIONS(1621), + [sym_real_literal] = ACTIONS(1623), }, [471] = { [sym_line_comment] = STATE(471), [sym_doc_comment] = STATE(471), [sym_block_comment] = STATE(471), - [sym_ident] = ACTIONS(1548), - [sym_integer_literal] = ACTIONS(1550), - [anon_sym_SQUOTE] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1550), - [anon_sym_BQUOTE] = ACTIONS(1550), - [sym_bytes_literal] = ACTIONS(1550), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1548), - [sym_at_ident] = ACTIONS(1550), - [sym_hash_ident] = ACTIONS(1550), - [sym_type_ident] = ACTIONS(1550), - [sym_ct_type_ident] = ACTIONS(1550), - [sym_const_ident] = ACTIONS(1548), - [sym_builtin] = ACTIONS(1550), - [anon_sym_LPAREN] = ACTIONS(1550), - [anon_sym_AMP] = ACTIONS(1548), - [anon_sym_static] = ACTIONS(1548), - [anon_sym_tlocal] = ACTIONS(1548), - [anon_sym_SEMI] = ACTIONS(1550), - [anon_sym_fn] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(1548), - [anon_sym_const] = ACTIONS(1548), - [anon_sym_var] = ACTIONS(1548), - [anon_sym_return] = ACTIONS(1548), - [anon_sym_continue] = ACTIONS(1548), - [anon_sym_break] = ACTIONS(1548), - [anon_sym_defer] = ACTIONS(1548), - [anon_sym_assert] = ACTIONS(1548), - [anon_sym_nextcase] = ACTIONS(1548), - [anon_sym_switch] = ACTIONS(1548), - [anon_sym_AMP_AMP] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(1548), - [anon_sym_for] = ACTIONS(1548), - [anon_sym_foreach] = ACTIONS(1548), - [anon_sym_foreach_r] = ACTIONS(1548), - [anon_sym_while] = ACTIONS(1548), - [anon_sym_do] = ACTIONS(1548), - [anon_sym_int] = ACTIONS(1548), - [anon_sym_PLUS] = ACTIONS(1548), - [anon_sym_DASH] = ACTIONS(1548), - [anon_sym_STAR] = ACTIONS(1550), - [anon_sym_asm] = ACTIONS(1548), - [anon_sym_DOLLARassert] = ACTIONS(1548), - [anon_sym_DOLLARerror] = ACTIONS(1548), - [anon_sym_DOLLARecho] = ACTIONS(1548), - [anon_sym_DOLLARif] = ACTIONS(1548), - [anon_sym_DOLLARcase] = ACTIONS(1548), - [anon_sym_DOLLARdefault] = ACTIONS(1548), - [anon_sym_DOLLARswitch] = ACTIONS(1548), - [anon_sym_DOLLARendswitch] = ACTIONS(1548), - [anon_sym_DOLLARfor] = ACTIONS(1548), - [anon_sym_DOLLARforeach] = ACTIONS(1548), - [anon_sym_DOLLARalignof] = ACTIONS(1548), - [anon_sym_DOLLARextnameof] = ACTIONS(1548), - [anon_sym_DOLLARnameof] = ACTIONS(1548), - [anon_sym_DOLLARoffsetof] = ACTIONS(1548), - [anon_sym_DOLLARqnameof] = ACTIONS(1548), - [anon_sym_DOLLARvaconst] = ACTIONS(1548), - [anon_sym_DOLLARvaarg] = ACTIONS(1548), - [anon_sym_DOLLARvaref] = ACTIONS(1548), - [anon_sym_DOLLARvaexpr] = ACTIONS(1548), - [anon_sym_true] = ACTIONS(1548), - [anon_sym_false] = ACTIONS(1548), - [anon_sym_null] = ACTIONS(1548), - [anon_sym_DOLLARvacount] = ACTIONS(1548), - [anon_sym_DOLLARappend] = ACTIONS(1548), - [anon_sym_DOLLARconcat] = ACTIONS(1548), - [anon_sym_DOLLAReval] = ACTIONS(1548), - [anon_sym_DOLLARis_const] = ACTIONS(1548), - [anon_sym_DOLLARsizeof] = ACTIONS(1548), - [anon_sym_DOLLARstringify] = ACTIONS(1548), - [anon_sym_DOLLARand] = ACTIONS(1548), - [anon_sym_DOLLARdefined] = ACTIONS(1548), - [anon_sym_DOLLARembed] = ACTIONS(1548), - [anon_sym_DOLLARor] = ACTIONS(1548), - [anon_sym_DOLLARfeature] = ACTIONS(1548), - [anon_sym_DOLLARassignable] = ACTIONS(1548), - [anon_sym_BANG] = ACTIONS(1550), - [anon_sym_TILDE] = ACTIONS(1550), - [anon_sym_PLUS_PLUS] = ACTIONS(1550), - [anon_sym_DASH_DASH] = ACTIONS(1550), - [anon_sym_typeid] = ACTIONS(1548), - [anon_sym_LBRACE_PIPE] = ACTIONS(1550), - [anon_sym_void] = ACTIONS(1548), - [anon_sym_bool] = ACTIONS(1548), - [anon_sym_char] = ACTIONS(1548), - [anon_sym_ichar] = ACTIONS(1548), - [anon_sym_short] = ACTIONS(1548), - [anon_sym_ushort] = ACTIONS(1548), - [anon_sym_uint] = ACTIONS(1548), - [anon_sym_long] = ACTIONS(1548), - [anon_sym_ulong] = ACTIONS(1548), - [anon_sym_int128] = ACTIONS(1548), - [anon_sym_uint128] = ACTIONS(1548), - [anon_sym_float] = ACTIONS(1548), - [anon_sym_double] = ACTIONS(1548), - [anon_sym_float16] = ACTIONS(1548), - [anon_sym_bfloat16] = ACTIONS(1548), - [anon_sym_float128] = ACTIONS(1548), - [anon_sym_iptr] = ACTIONS(1548), - [anon_sym_uptr] = ACTIONS(1548), - [anon_sym_isz] = ACTIONS(1548), - [anon_sym_usz] = ACTIONS(1548), - [anon_sym_anyfault] = ACTIONS(1548), - [anon_sym_any] = ACTIONS(1548), - [anon_sym_DOLLARtypeof] = ACTIONS(1548), - [anon_sym_DOLLARtypefrom] = ACTIONS(1548), - [anon_sym_DOLLARvatype] = ACTIONS(1548), - [anon_sym_DOLLARevaltype] = ACTIONS(1548), - [sym_real_literal] = ACTIONS(1550), + [sym_ident] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1523), + [anon_sym_SQUOTE] = ACTIONS(1523), + [anon_sym_DQUOTE] = ACTIONS(1523), + [anon_sym_BQUOTE] = ACTIONS(1523), + [sym_bytes_literal] = ACTIONS(1523), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1521), + [sym_at_ident] = ACTIONS(1523), + [sym_hash_ident] = ACTIONS(1523), + [sym_type_ident] = ACTIONS(1523), + [sym_ct_type_ident] = ACTIONS(1523), + [sym_const_ident] = ACTIONS(1521), + [sym_builtin] = ACTIONS(1523), + [anon_sym_LPAREN] = ACTIONS(1523), + [anon_sym_AMP] = ACTIONS(1521), + [anon_sym_static] = ACTIONS(1521), + [anon_sym_tlocal] = ACTIONS(1521), + [anon_sym_SEMI] = ACTIONS(1523), + [anon_sym_fn] = ACTIONS(1521), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_const] = ACTIONS(1521), + [anon_sym_var] = ACTIONS(1521), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_continue] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1521), + [anon_sym_defer] = ACTIONS(1521), + [anon_sym_assert] = ACTIONS(1521), + [anon_sym_nextcase] = ACTIONS(1521), + [anon_sym_switch] = ACTIONS(1521), + [anon_sym_AMP_AMP] = ACTIONS(1523), + [anon_sym_if] = ACTIONS(1521), + [anon_sym_for] = ACTIONS(1521), + [anon_sym_foreach] = ACTIONS(1521), + [anon_sym_foreach_r] = ACTIONS(1521), + [anon_sym_while] = ACTIONS(1521), + [anon_sym_do] = ACTIONS(1521), + [anon_sym_int] = ACTIONS(1521), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), + [anon_sym_asm] = ACTIONS(1521), + [anon_sym_DOLLARassert] = ACTIONS(1521), + [anon_sym_DOLLARerror] = ACTIONS(1521), + [anon_sym_DOLLARecho] = ACTIONS(1521), + [anon_sym_DOLLARif] = ACTIONS(1521), + [anon_sym_DOLLARcase] = ACTIONS(1521), + [anon_sym_DOLLARdefault] = ACTIONS(1521), + [anon_sym_DOLLARswitch] = ACTIONS(1521), + [anon_sym_DOLLARendswitch] = ACTIONS(1521), + [anon_sym_DOLLARfor] = ACTIONS(1521), + [anon_sym_DOLLARforeach] = ACTIONS(1521), + [anon_sym_DOLLARalignof] = ACTIONS(1521), + [anon_sym_DOLLARextnameof] = ACTIONS(1521), + [anon_sym_DOLLARnameof] = ACTIONS(1521), + [anon_sym_DOLLARoffsetof] = ACTIONS(1521), + [anon_sym_DOLLARqnameof] = ACTIONS(1521), + [anon_sym_DOLLARvaconst] = ACTIONS(1521), + [anon_sym_DOLLARvaarg] = ACTIONS(1521), + [anon_sym_DOLLARvaref] = ACTIONS(1521), + [anon_sym_DOLLARvaexpr] = ACTIONS(1521), + [anon_sym_true] = ACTIONS(1521), + [anon_sym_false] = ACTIONS(1521), + [anon_sym_null] = ACTIONS(1521), + [anon_sym_DOLLARvacount] = ACTIONS(1521), + [anon_sym_DOLLARappend] = ACTIONS(1521), + [anon_sym_DOLLARconcat] = ACTIONS(1521), + [anon_sym_DOLLAReval] = ACTIONS(1521), + [anon_sym_DOLLARis_const] = ACTIONS(1521), + [anon_sym_DOLLARsizeof] = ACTIONS(1521), + [anon_sym_DOLLARstringify] = ACTIONS(1521), + [anon_sym_DOLLARand] = ACTIONS(1521), + [anon_sym_DOLLARdefined] = ACTIONS(1521), + [anon_sym_DOLLARembed] = ACTIONS(1521), + [anon_sym_DOLLARor] = ACTIONS(1521), + [anon_sym_DOLLARfeature] = ACTIONS(1521), + [anon_sym_DOLLARassignable] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1523), + [anon_sym_TILDE] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_typeid] = ACTIONS(1521), + [anon_sym_LBRACE_PIPE] = ACTIONS(1523), + [anon_sym_void] = ACTIONS(1521), + [anon_sym_bool] = ACTIONS(1521), + [anon_sym_char] = ACTIONS(1521), + [anon_sym_ichar] = ACTIONS(1521), + [anon_sym_short] = ACTIONS(1521), + [anon_sym_ushort] = ACTIONS(1521), + [anon_sym_uint] = ACTIONS(1521), + [anon_sym_long] = ACTIONS(1521), + [anon_sym_ulong] = ACTIONS(1521), + [anon_sym_int128] = ACTIONS(1521), + [anon_sym_uint128] = ACTIONS(1521), + [anon_sym_float] = ACTIONS(1521), + [anon_sym_double] = ACTIONS(1521), + [anon_sym_float16] = ACTIONS(1521), + [anon_sym_bfloat16] = ACTIONS(1521), + [anon_sym_float128] = ACTIONS(1521), + [anon_sym_iptr] = ACTIONS(1521), + [anon_sym_uptr] = ACTIONS(1521), + [anon_sym_isz] = ACTIONS(1521), + [anon_sym_usz] = ACTIONS(1521), + [anon_sym_anyfault] = ACTIONS(1521), + [anon_sym_any] = ACTIONS(1521), + [anon_sym_DOLLARtypeof] = ACTIONS(1521), + [anon_sym_DOLLARtypefrom] = ACTIONS(1521), + [anon_sym_DOLLARvatype] = ACTIONS(1521), + [anon_sym_DOLLARevaltype] = ACTIONS(1521), + [sym_real_literal] = ACTIONS(1523), }, [472] = { [sym_line_comment] = STATE(472), [sym_doc_comment] = STATE(472), [sym_block_comment] = STATE(472), - [sym_ident] = ACTIONS(1612), - [sym_integer_literal] = ACTIONS(1614), - [anon_sym_SQUOTE] = ACTIONS(1614), - [anon_sym_DQUOTE] = ACTIONS(1614), - [anon_sym_BQUOTE] = ACTIONS(1614), - [sym_bytes_literal] = ACTIONS(1614), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1612), - [sym_at_ident] = ACTIONS(1614), - [sym_hash_ident] = ACTIONS(1614), - [sym_type_ident] = ACTIONS(1614), - [sym_ct_type_ident] = ACTIONS(1614), - [sym_const_ident] = ACTIONS(1612), - [sym_builtin] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_static] = ACTIONS(1612), - [anon_sym_tlocal] = ACTIONS(1612), - [anon_sym_SEMI] = ACTIONS(1614), - [anon_sym_fn] = ACTIONS(1612), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_const] = ACTIONS(1612), - [anon_sym_var] = ACTIONS(1612), - [anon_sym_return] = ACTIONS(1612), - [anon_sym_continue] = ACTIONS(1612), - [anon_sym_break] = ACTIONS(1612), - [anon_sym_defer] = ACTIONS(1612), - [anon_sym_assert] = ACTIONS(1612), - [anon_sym_nextcase] = ACTIONS(1612), - [anon_sym_switch] = ACTIONS(1612), - [anon_sym_AMP_AMP] = ACTIONS(1614), - [anon_sym_if] = ACTIONS(1612), - [anon_sym_for] = ACTIONS(1612), - [anon_sym_foreach] = ACTIONS(1612), - [anon_sym_foreach_r] = ACTIONS(1612), - [anon_sym_while] = ACTIONS(1612), - [anon_sym_do] = ACTIONS(1612), - [anon_sym_int] = ACTIONS(1612), - [anon_sym_PLUS] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1612), - [anon_sym_STAR] = ACTIONS(1614), - [anon_sym_asm] = ACTIONS(1612), - [anon_sym_DOLLARassert] = ACTIONS(1612), - [anon_sym_DOLLARerror] = ACTIONS(1612), - [anon_sym_DOLLARecho] = ACTIONS(1612), - [anon_sym_DOLLARif] = ACTIONS(1612), - [anon_sym_DOLLARcase] = ACTIONS(1612), - [anon_sym_DOLLARdefault] = ACTIONS(1612), - [anon_sym_DOLLARswitch] = ACTIONS(1612), - [anon_sym_DOLLARendswitch] = ACTIONS(1612), - [anon_sym_DOLLARfor] = ACTIONS(1612), - [anon_sym_DOLLARforeach] = ACTIONS(1612), - [anon_sym_DOLLARalignof] = ACTIONS(1612), - [anon_sym_DOLLARextnameof] = ACTIONS(1612), - [anon_sym_DOLLARnameof] = ACTIONS(1612), - [anon_sym_DOLLARoffsetof] = ACTIONS(1612), - [anon_sym_DOLLARqnameof] = ACTIONS(1612), - [anon_sym_DOLLARvaconst] = ACTIONS(1612), - [anon_sym_DOLLARvaarg] = ACTIONS(1612), - [anon_sym_DOLLARvaref] = ACTIONS(1612), - [anon_sym_DOLLARvaexpr] = ACTIONS(1612), - [anon_sym_true] = ACTIONS(1612), - [anon_sym_false] = ACTIONS(1612), - [anon_sym_null] = ACTIONS(1612), - [anon_sym_DOLLARvacount] = ACTIONS(1612), - [anon_sym_DOLLARappend] = ACTIONS(1612), - [anon_sym_DOLLARconcat] = ACTIONS(1612), - [anon_sym_DOLLAReval] = ACTIONS(1612), - [anon_sym_DOLLARis_const] = ACTIONS(1612), - [anon_sym_DOLLARsizeof] = ACTIONS(1612), - [anon_sym_DOLLARstringify] = ACTIONS(1612), - [anon_sym_DOLLARand] = ACTIONS(1612), - [anon_sym_DOLLARdefined] = ACTIONS(1612), - [anon_sym_DOLLARembed] = ACTIONS(1612), - [anon_sym_DOLLARor] = ACTIONS(1612), - [anon_sym_DOLLARfeature] = ACTIONS(1612), - [anon_sym_DOLLARassignable] = ACTIONS(1612), - [anon_sym_BANG] = ACTIONS(1614), - [anon_sym_TILDE] = ACTIONS(1614), - [anon_sym_PLUS_PLUS] = ACTIONS(1614), - [anon_sym_DASH_DASH] = ACTIONS(1614), - [anon_sym_typeid] = ACTIONS(1612), - [anon_sym_LBRACE_PIPE] = ACTIONS(1614), - [anon_sym_void] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_ichar] = ACTIONS(1612), - [anon_sym_short] = ACTIONS(1612), - [anon_sym_ushort] = ACTIONS(1612), - [anon_sym_uint] = ACTIONS(1612), - [anon_sym_long] = ACTIONS(1612), - [anon_sym_ulong] = ACTIONS(1612), - [anon_sym_int128] = ACTIONS(1612), - [anon_sym_uint128] = ACTIONS(1612), - [anon_sym_float] = ACTIONS(1612), - [anon_sym_double] = ACTIONS(1612), - [anon_sym_float16] = ACTIONS(1612), - [anon_sym_bfloat16] = ACTIONS(1612), - [anon_sym_float128] = ACTIONS(1612), - [anon_sym_iptr] = ACTIONS(1612), - [anon_sym_uptr] = ACTIONS(1612), - [anon_sym_isz] = ACTIONS(1612), - [anon_sym_usz] = ACTIONS(1612), - [anon_sym_anyfault] = ACTIONS(1612), - [anon_sym_any] = ACTIONS(1612), - [anon_sym_DOLLARtypeof] = ACTIONS(1612), - [anon_sym_DOLLARtypefrom] = ACTIONS(1612), - [anon_sym_DOLLARvatype] = ACTIONS(1612), - [anon_sym_DOLLARevaltype] = ACTIONS(1612), - [sym_real_literal] = ACTIONS(1614), + [sym_ident] = ACTIONS(1179), + [sym_integer_literal] = ACTIONS(1181), + [anon_sym_SQUOTE] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1181), + [anon_sym_BQUOTE] = ACTIONS(1181), + [sym_bytes_literal] = ACTIONS(1181), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1179), + [sym_at_ident] = ACTIONS(1181), + [sym_hash_ident] = ACTIONS(1181), + [sym_type_ident] = ACTIONS(1181), + [sym_ct_type_ident] = ACTIONS(1181), + [sym_const_ident] = ACTIONS(1179), + [sym_builtin] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1181), + [anon_sym_AMP] = ACTIONS(1179), + [anon_sym_static] = ACTIONS(1179), + [anon_sym_tlocal] = ACTIONS(1179), + [anon_sym_SEMI] = ACTIONS(1181), + [anon_sym_fn] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [anon_sym_var] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_defer] = ACTIONS(1179), + [anon_sym_assert] = ACTIONS(1179), + [anon_sym_nextcase] = ACTIONS(1179), + [anon_sym_switch] = ACTIONS(1179), + [anon_sym_AMP_AMP] = ACTIONS(1181), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_foreach] = ACTIONS(1179), + [anon_sym_foreach_r] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_int] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1181), + [anon_sym_asm] = ACTIONS(1179), + [anon_sym_DOLLARassert] = ACTIONS(1179), + [anon_sym_DOLLARerror] = ACTIONS(1179), + [anon_sym_DOLLARecho] = ACTIONS(1179), + [anon_sym_DOLLARif] = ACTIONS(1179), + [anon_sym_DOLLARcase] = ACTIONS(1179), + [anon_sym_DOLLARdefault] = ACTIONS(1179), + [anon_sym_DOLLARswitch] = ACTIONS(1179), + [anon_sym_DOLLARendswitch] = ACTIONS(1179), + [anon_sym_DOLLARfor] = ACTIONS(1179), + [anon_sym_DOLLARforeach] = ACTIONS(1179), + [anon_sym_DOLLARalignof] = ACTIONS(1179), + [anon_sym_DOLLARextnameof] = ACTIONS(1179), + [anon_sym_DOLLARnameof] = ACTIONS(1179), + [anon_sym_DOLLARoffsetof] = ACTIONS(1179), + [anon_sym_DOLLARqnameof] = ACTIONS(1179), + [anon_sym_DOLLARvaconst] = ACTIONS(1179), + [anon_sym_DOLLARvaarg] = ACTIONS(1179), + [anon_sym_DOLLARvaref] = ACTIONS(1179), + [anon_sym_DOLLARvaexpr] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_DOLLARvacount] = ACTIONS(1179), + [anon_sym_DOLLARappend] = ACTIONS(1179), + [anon_sym_DOLLARconcat] = ACTIONS(1179), + [anon_sym_DOLLAReval] = ACTIONS(1179), + [anon_sym_DOLLARis_const] = ACTIONS(1179), + [anon_sym_DOLLARsizeof] = ACTIONS(1179), + [anon_sym_DOLLARstringify] = ACTIONS(1179), + [anon_sym_DOLLARand] = ACTIONS(1179), + [anon_sym_DOLLARdefined] = ACTIONS(1179), + [anon_sym_DOLLARembed] = ACTIONS(1179), + [anon_sym_DOLLARor] = ACTIONS(1179), + [anon_sym_DOLLARfeature] = ACTIONS(1179), + [anon_sym_DOLLARassignable] = ACTIONS(1179), + [anon_sym_BANG] = ACTIONS(1181), + [anon_sym_TILDE] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(1181), + [anon_sym_DASH_DASH] = ACTIONS(1181), + [anon_sym_typeid] = ACTIONS(1179), + [anon_sym_LBRACE_PIPE] = ACTIONS(1181), + [anon_sym_void] = ACTIONS(1179), + [anon_sym_bool] = ACTIONS(1179), + [anon_sym_char] = ACTIONS(1179), + [anon_sym_ichar] = ACTIONS(1179), + [anon_sym_short] = ACTIONS(1179), + [anon_sym_ushort] = ACTIONS(1179), + [anon_sym_uint] = ACTIONS(1179), + [anon_sym_long] = ACTIONS(1179), + [anon_sym_ulong] = ACTIONS(1179), + [anon_sym_int128] = ACTIONS(1179), + [anon_sym_uint128] = ACTIONS(1179), + [anon_sym_float] = ACTIONS(1179), + [anon_sym_double] = ACTIONS(1179), + [anon_sym_float16] = ACTIONS(1179), + [anon_sym_bfloat16] = ACTIONS(1179), + [anon_sym_float128] = ACTIONS(1179), + [anon_sym_iptr] = ACTIONS(1179), + [anon_sym_uptr] = ACTIONS(1179), + [anon_sym_isz] = ACTIONS(1179), + [anon_sym_usz] = ACTIONS(1179), + [anon_sym_anyfault] = ACTIONS(1179), + [anon_sym_any] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1179), + [anon_sym_DOLLARtypefrom] = ACTIONS(1179), + [anon_sym_DOLLARvatype] = ACTIONS(1179), + [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [sym_real_literal] = ACTIONS(1181), }, [473] = { [sym_line_comment] = STATE(473), [sym_doc_comment] = STATE(473), [sym_block_comment] = STATE(473), - [sym_ident] = ACTIONS(1624), - [sym_integer_literal] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1626), - [anon_sym_DQUOTE] = ACTIONS(1626), - [anon_sym_BQUOTE] = ACTIONS(1626), - [sym_bytes_literal] = ACTIONS(1626), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1624), - [sym_at_ident] = ACTIONS(1626), - [sym_hash_ident] = ACTIONS(1626), - [sym_type_ident] = ACTIONS(1626), - [sym_ct_type_ident] = ACTIONS(1626), - [sym_const_ident] = ACTIONS(1624), - [sym_builtin] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(1626), - [anon_sym_AMP] = ACTIONS(1624), - [anon_sym_static] = ACTIONS(1624), - [anon_sym_tlocal] = ACTIONS(1624), - [anon_sym_SEMI] = ACTIONS(1626), - [anon_sym_fn] = ACTIONS(1624), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_const] = ACTIONS(1624), - [anon_sym_var] = ACTIONS(1624), - [anon_sym_return] = ACTIONS(1624), - [anon_sym_continue] = ACTIONS(1624), - [anon_sym_break] = ACTIONS(1624), - [anon_sym_defer] = ACTIONS(1624), - [anon_sym_assert] = ACTIONS(1624), - [anon_sym_nextcase] = ACTIONS(1624), - [anon_sym_switch] = ACTIONS(1624), - [anon_sym_AMP_AMP] = ACTIONS(1626), - [anon_sym_if] = ACTIONS(1624), - [anon_sym_for] = ACTIONS(1624), - [anon_sym_foreach] = ACTIONS(1624), - [anon_sym_foreach_r] = ACTIONS(1624), - [anon_sym_while] = ACTIONS(1624), - [anon_sym_do] = ACTIONS(1624), - [anon_sym_int] = ACTIONS(1624), - [anon_sym_PLUS] = ACTIONS(1624), - [anon_sym_DASH] = ACTIONS(1624), - [anon_sym_STAR] = ACTIONS(1626), - [anon_sym_asm] = ACTIONS(1624), - [anon_sym_DOLLARassert] = ACTIONS(1624), - [anon_sym_DOLLARerror] = ACTIONS(1624), - [anon_sym_DOLLARecho] = ACTIONS(1624), - [anon_sym_DOLLARif] = ACTIONS(1624), - [anon_sym_DOLLARcase] = ACTIONS(1624), - [anon_sym_DOLLARdefault] = ACTIONS(1624), - [anon_sym_DOLLARswitch] = ACTIONS(1624), - [anon_sym_DOLLARendswitch] = ACTIONS(1624), - [anon_sym_DOLLARfor] = ACTIONS(1624), - [anon_sym_DOLLARforeach] = ACTIONS(1624), - [anon_sym_DOLLARalignof] = ACTIONS(1624), - [anon_sym_DOLLARextnameof] = ACTIONS(1624), - [anon_sym_DOLLARnameof] = ACTIONS(1624), - [anon_sym_DOLLARoffsetof] = ACTIONS(1624), - [anon_sym_DOLLARqnameof] = ACTIONS(1624), - [anon_sym_DOLLARvaconst] = ACTIONS(1624), - [anon_sym_DOLLARvaarg] = ACTIONS(1624), - [anon_sym_DOLLARvaref] = ACTIONS(1624), - [anon_sym_DOLLARvaexpr] = ACTIONS(1624), - [anon_sym_true] = ACTIONS(1624), - [anon_sym_false] = ACTIONS(1624), - [anon_sym_null] = ACTIONS(1624), - [anon_sym_DOLLARvacount] = ACTIONS(1624), - [anon_sym_DOLLARappend] = ACTIONS(1624), - [anon_sym_DOLLARconcat] = ACTIONS(1624), - [anon_sym_DOLLAReval] = ACTIONS(1624), - [anon_sym_DOLLARis_const] = ACTIONS(1624), - [anon_sym_DOLLARsizeof] = ACTIONS(1624), - [anon_sym_DOLLARstringify] = ACTIONS(1624), - [anon_sym_DOLLARand] = ACTIONS(1624), - [anon_sym_DOLLARdefined] = ACTIONS(1624), - [anon_sym_DOLLARembed] = ACTIONS(1624), - [anon_sym_DOLLARor] = ACTIONS(1624), - [anon_sym_DOLLARfeature] = ACTIONS(1624), - [anon_sym_DOLLARassignable] = ACTIONS(1624), - [anon_sym_BANG] = ACTIONS(1626), - [anon_sym_TILDE] = ACTIONS(1626), - [anon_sym_PLUS_PLUS] = ACTIONS(1626), - [anon_sym_DASH_DASH] = ACTIONS(1626), - [anon_sym_typeid] = ACTIONS(1624), - [anon_sym_LBRACE_PIPE] = ACTIONS(1626), - [anon_sym_void] = ACTIONS(1624), - [anon_sym_bool] = ACTIONS(1624), - [anon_sym_char] = ACTIONS(1624), - [anon_sym_ichar] = ACTIONS(1624), - [anon_sym_short] = ACTIONS(1624), - [anon_sym_ushort] = ACTIONS(1624), - [anon_sym_uint] = ACTIONS(1624), - [anon_sym_long] = ACTIONS(1624), - [anon_sym_ulong] = ACTIONS(1624), - [anon_sym_int128] = ACTIONS(1624), - [anon_sym_uint128] = ACTIONS(1624), - [anon_sym_float] = ACTIONS(1624), - [anon_sym_double] = ACTIONS(1624), - [anon_sym_float16] = ACTIONS(1624), - [anon_sym_bfloat16] = ACTIONS(1624), - [anon_sym_float128] = ACTIONS(1624), - [anon_sym_iptr] = ACTIONS(1624), - [anon_sym_uptr] = ACTIONS(1624), - [anon_sym_isz] = ACTIONS(1624), - [anon_sym_usz] = ACTIONS(1624), - [anon_sym_anyfault] = ACTIONS(1624), - [anon_sym_any] = ACTIONS(1624), - [anon_sym_DOLLARtypeof] = ACTIONS(1624), - [anon_sym_DOLLARtypefrom] = ACTIONS(1624), - [anon_sym_DOLLARvatype] = ACTIONS(1624), - [anon_sym_DOLLARevaltype] = ACTIONS(1624), - [sym_real_literal] = ACTIONS(1626), + [sym_ident] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1527), + [anon_sym_SQUOTE] = ACTIONS(1527), + [anon_sym_DQUOTE] = ACTIONS(1527), + [anon_sym_BQUOTE] = ACTIONS(1527), + [sym_bytes_literal] = ACTIONS(1527), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1525), + [sym_at_ident] = ACTIONS(1527), + [sym_hash_ident] = ACTIONS(1527), + [sym_type_ident] = ACTIONS(1527), + [sym_ct_type_ident] = ACTIONS(1527), + [sym_const_ident] = ACTIONS(1525), + [sym_builtin] = ACTIONS(1527), + [anon_sym_LPAREN] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_static] = ACTIONS(1525), + [anon_sym_tlocal] = ACTIONS(1525), + [anon_sym_SEMI] = ACTIONS(1527), + [anon_sym_fn] = ACTIONS(1525), + [anon_sym_LBRACE] = ACTIONS(1525), + [anon_sym_const] = ACTIONS(1525), + [anon_sym_var] = ACTIONS(1525), + [anon_sym_return] = ACTIONS(1525), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_break] = ACTIONS(1525), + [anon_sym_defer] = ACTIONS(1525), + [anon_sym_assert] = ACTIONS(1525), + [anon_sym_nextcase] = ACTIONS(1525), + [anon_sym_switch] = ACTIONS(1525), + [anon_sym_AMP_AMP] = ACTIONS(1527), + [anon_sym_if] = ACTIONS(1525), + [anon_sym_for] = ACTIONS(1525), + [anon_sym_foreach] = ACTIONS(1525), + [anon_sym_foreach_r] = ACTIONS(1525), + [anon_sym_while] = ACTIONS(1525), + [anon_sym_do] = ACTIONS(1525), + [anon_sym_int] = ACTIONS(1525), + [anon_sym_PLUS] = ACTIONS(1525), + [anon_sym_DASH] = ACTIONS(1525), + [anon_sym_STAR] = ACTIONS(1527), + [anon_sym_asm] = ACTIONS(1525), + [anon_sym_DOLLARassert] = ACTIONS(1525), + [anon_sym_DOLLARerror] = ACTIONS(1525), + [anon_sym_DOLLARecho] = ACTIONS(1525), + [anon_sym_DOLLARif] = ACTIONS(1525), + [anon_sym_DOLLARcase] = ACTIONS(1525), + [anon_sym_DOLLARdefault] = ACTIONS(1525), + [anon_sym_DOLLARswitch] = ACTIONS(1525), + [anon_sym_DOLLARendswitch] = ACTIONS(1525), + [anon_sym_DOLLARfor] = ACTIONS(1525), + [anon_sym_DOLLARforeach] = ACTIONS(1525), + [anon_sym_DOLLARalignof] = ACTIONS(1525), + [anon_sym_DOLLARextnameof] = ACTIONS(1525), + [anon_sym_DOLLARnameof] = ACTIONS(1525), + [anon_sym_DOLLARoffsetof] = ACTIONS(1525), + [anon_sym_DOLLARqnameof] = ACTIONS(1525), + [anon_sym_DOLLARvaconst] = ACTIONS(1525), + [anon_sym_DOLLARvaarg] = ACTIONS(1525), + [anon_sym_DOLLARvaref] = ACTIONS(1525), + [anon_sym_DOLLARvaexpr] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(1525), + [anon_sym_false] = ACTIONS(1525), + [anon_sym_null] = ACTIONS(1525), + [anon_sym_DOLLARvacount] = ACTIONS(1525), + [anon_sym_DOLLARappend] = ACTIONS(1525), + [anon_sym_DOLLARconcat] = ACTIONS(1525), + [anon_sym_DOLLAReval] = ACTIONS(1525), + [anon_sym_DOLLARis_const] = ACTIONS(1525), + [anon_sym_DOLLARsizeof] = ACTIONS(1525), + [anon_sym_DOLLARstringify] = ACTIONS(1525), + [anon_sym_DOLLARand] = ACTIONS(1525), + [anon_sym_DOLLARdefined] = ACTIONS(1525), + [anon_sym_DOLLARembed] = ACTIONS(1525), + [anon_sym_DOLLARor] = ACTIONS(1525), + [anon_sym_DOLLARfeature] = ACTIONS(1525), + [anon_sym_DOLLARassignable] = ACTIONS(1525), + [anon_sym_BANG] = ACTIONS(1527), + [anon_sym_TILDE] = ACTIONS(1527), + [anon_sym_PLUS_PLUS] = ACTIONS(1527), + [anon_sym_DASH_DASH] = ACTIONS(1527), + [anon_sym_typeid] = ACTIONS(1525), + [anon_sym_LBRACE_PIPE] = ACTIONS(1527), + [anon_sym_void] = ACTIONS(1525), + [anon_sym_bool] = ACTIONS(1525), + [anon_sym_char] = ACTIONS(1525), + [anon_sym_ichar] = ACTIONS(1525), + [anon_sym_short] = ACTIONS(1525), + [anon_sym_ushort] = ACTIONS(1525), + [anon_sym_uint] = ACTIONS(1525), + [anon_sym_long] = ACTIONS(1525), + [anon_sym_ulong] = ACTIONS(1525), + [anon_sym_int128] = ACTIONS(1525), + [anon_sym_uint128] = ACTIONS(1525), + [anon_sym_float] = ACTIONS(1525), + [anon_sym_double] = ACTIONS(1525), + [anon_sym_float16] = ACTIONS(1525), + [anon_sym_bfloat16] = ACTIONS(1525), + [anon_sym_float128] = ACTIONS(1525), + [anon_sym_iptr] = ACTIONS(1525), + [anon_sym_uptr] = ACTIONS(1525), + [anon_sym_isz] = ACTIONS(1525), + [anon_sym_usz] = ACTIONS(1525), + [anon_sym_anyfault] = ACTIONS(1525), + [anon_sym_any] = ACTIONS(1525), + [anon_sym_DOLLARtypeof] = ACTIONS(1525), + [anon_sym_DOLLARtypefrom] = ACTIONS(1525), + [anon_sym_DOLLARvatype] = ACTIONS(1525), + [anon_sym_DOLLARevaltype] = ACTIONS(1525), + [sym_real_literal] = ACTIONS(1527), }, [474] = { [sym_line_comment] = STATE(474), [sym_doc_comment] = STATE(474), [sym_block_comment] = STATE(474), - [sym_ident] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(1634), - [anon_sym_DQUOTE] = ACTIONS(1634), - [anon_sym_BQUOTE] = ACTIONS(1634), - [sym_bytes_literal] = ACTIONS(1634), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1632), - [sym_at_ident] = ACTIONS(1634), - [sym_hash_ident] = ACTIONS(1634), - [sym_type_ident] = ACTIONS(1634), - [sym_ct_type_ident] = ACTIONS(1634), - [sym_const_ident] = ACTIONS(1632), - [sym_builtin] = ACTIONS(1634), - [anon_sym_LPAREN] = ACTIONS(1634), - [anon_sym_AMP] = ACTIONS(1632), - [anon_sym_static] = ACTIONS(1632), - [anon_sym_tlocal] = ACTIONS(1632), - [anon_sym_SEMI] = ACTIONS(1634), - [anon_sym_fn] = ACTIONS(1632), - [anon_sym_LBRACE] = ACTIONS(1632), - [anon_sym_const] = ACTIONS(1632), - [anon_sym_var] = ACTIONS(1632), - [anon_sym_return] = ACTIONS(1632), - [anon_sym_continue] = ACTIONS(1632), - [anon_sym_break] = ACTIONS(1632), - [anon_sym_defer] = ACTIONS(1632), - [anon_sym_assert] = ACTIONS(1632), - [anon_sym_nextcase] = ACTIONS(1632), - [anon_sym_switch] = ACTIONS(1632), - [anon_sym_AMP_AMP] = ACTIONS(1634), - [anon_sym_if] = ACTIONS(1632), - [anon_sym_for] = ACTIONS(1632), - [anon_sym_foreach] = ACTIONS(1632), - [anon_sym_foreach_r] = ACTIONS(1632), - [anon_sym_while] = ACTIONS(1632), - [anon_sym_do] = ACTIONS(1632), - [anon_sym_int] = ACTIONS(1632), - [anon_sym_PLUS] = ACTIONS(1632), - [anon_sym_DASH] = ACTIONS(1632), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_asm] = ACTIONS(1632), - [anon_sym_DOLLARassert] = ACTIONS(1632), - [anon_sym_DOLLARerror] = ACTIONS(1632), - [anon_sym_DOLLARecho] = ACTIONS(1632), - [anon_sym_DOLLARif] = ACTIONS(1632), - [anon_sym_DOLLARcase] = ACTIONS(1632), - [anon_sym_DOLLARdefault] = ACTIONS(1632), - [anon_sym_DOLLARswitch] = ACTIONS(1632), - [anon_sym_DOLLARendswitch] = ACTIONS(1632), - [anon_sym_DOLLARfor] = ACTIONS(1632), - [anon_sym_DOLLARforeach] = ACTIONS(1632), - [anon_sym_DOLLARalignof] = ACTIONS(1632), - [anon_sym_DOLLARextnameof] = ACTIONS(1632), - [anon_sym_DOLLARnameof] = ACTIONS(1632), - [anon_sym_DOLLARoffsetof] = ACTIONS(1632), - [anon_sym_DOLLARqnameof] = ACTIONS(1632), - [anon_sym_DOLLARvaconst] = ACTIONS(1632), - [anon_sym_DOLLARvaarg] = ACTIONS(1632), - [anon_sym_DOLLARvaref] = ACTIONS(1632), - [anon_sym_DOLLARvaexpr] = ACTIONS(1632), - [anon_sym_true] = ACTIONS(1632), - [anon_sym_false] = ACTIONS(1632), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_DOLLARvacount] = ACTIONS(1632), - [anon_sym_DOLLARappend] = ACTIONS(1632), - [anon_sym_DOLLARconcat] = ACTIONS(1632), - [anon_sym_DOLLAReval] = ACTIONS(1632), - [anon_sym_DOLLARis_const] = ACTIONS(1632), - [anon_sym_DOLLARsizeof] = ACTIONS(1632), - [anon_sym_DOLLARstringify] = ACTIONS(1632), - [anon_sym_DOLLARand] = ACTIONS(1632), - [anon_sym_DOLLARdefined] = ACTIONS(1632), - [anon_sym_DOLLARembed] = ACTIONS(1632), - [anon_sym_DOLLARor] = ACTIONS(1632), - [anon_sym_DOLLARfeature] = ACTIONS(1632), - [anon_sym_DOLLARassignable] = ACTIONS(1632), - [anon_sym_BANG] = ACTIONS(1634), - [anon_sym_TILDE] = ACTIONS(1634), - [anon_sym_PLUS_PLUS] = ACTIONS(1634), - [anon_sym_DASH_DASH] = ACTIONS(1634), - [anon_sym_typeid] = ACTIONS(1632), - [anon_sym_LBRACE_PIPE] = ACTIONS(1634), - [anon_sym_void] = ACTIONS(1632), - [anon_sym_bool] = ACTIONS(1632), - [anon_sym_char] = ACTIONS(1632), - [anon_sym_ichar] = ACTIONS(1632), - [anon_sym_short] = ACTIONS(1632), - [anon_sym_ushort] = ACTIONS(1632), - [anon_sym_uint] = ACTIONS(1632), - [anon_sym_long] = ACTIONS(1632), - [anon_sym_ulong] = ACTIONS(1632), - [anon_sym_int128] = ACTIONS(1632), - [anon_sym_uint128] = ACTIONS(1632), - [anon_sym_float] = ACTIONS(1632), - [anon_sym_double] = ACTIONS(1632), - [anon_sym_float16] = ACTIONS(1632), - [anon_sym_bfloat16] = ACTIONS(1632), - [anon_sym_float128] = ACTIONS(1632), - [anon_sym_iptr] = ACTIONS(1632), - [anon_sym_uptr] = ACTIONS(1632), - [anon_sym_isz] = ACTIONS(1632), - [anon_sym_usz] = ACTIONS(1632), - [anon_sym_anyfault] = ACTIONS(1632), - [anon_sym_any] = ACTIONS(1632), - [anon_sym_DOLLARtypeof] = ACTIONS(1632), - [anon_sym_DOLLARtypefrom] = ACTIONS(1632), - [anon_sym_DOLLARvatype] = ACTIONS(1632), - [anon_sym_DOLLARevaltype] = ACTIONS(1632), - [sym_real_literal] = ACTIONS(1634), + [sym_ident] = ACTIONS(1637), + [sym_integer_literal] = ACTIONS(1639), + [anon_sym_SQUOTE] = ACTIONS(1639), + [anon_sym_DQUOTE] = ACTIONS(1639), + [anon_sym_BQUOTE] = ACTIONS(1639), + [sym_bytes_literal] = ACTIONS(1639), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1637), + [sym_at_ident] = ACTIONS(1639), + [sym_hash_ident] = ACTIONS(1639), + [sym_type_ident] = ACTIONS(1639), + [sym_ct_type_ident] = ACTIONS(1639), + [sym_const_ident] = ACTIONS(1637), + [sym_builtin] = ACTIONS(1639), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_AMP] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1637), + [anon_sym_tlocal] = ACTIONS(1637), + [anon_sym_SEMI] = ACTIONS(1639), + [anon_sym_fn] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(1637), + [anon_sym_const] = ACTIONS(1637), + [anon_sym_var] = ACTIONS(1637), + [anon_sym_return] = ACTIONS(1637), + [anon_sym_continue] = ACTIONS(1637), + [anon_sym_break] = ACTIONS(1637), + [anon_sym_defer] = ACTIONS(1637), + [anon_sym_assert] = ACTIONS(1637), + [anon_sym_nextcase] = ACTIONS(1637), + [anon_sym_switch] = ACTIONS(1637), + [anon_sym_AMP_AMP] = ACTIONS(1639), + [anon_sym_if] = ACTIONS(1637), + [anon_sym_for] = ACTIONS(1637), + [anon_sym_foreach] = ACTIONS(1637), + [anon_sym_foreach_r] = ACTIONS(1637), + [anon_sym_while] = ACTIONS(1637), + [anon_sym_do] = ACTIONS(1637), + [anon_sym_int] = ACTIONS(1637), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1639), + [anon_sym_asm] = ACTIONS(1637), + [anon_sym_DOLLARassert] = ACTIONS(1637), + [anon_sym_DOLLARerror] = ACTIONS(1637), + [anon_sym_DOLLARecho] = ACTIONS(1637), + [anon_sym_DOLLARif] = ACTIONS(1637), + [anon_sym_DOLLARcase] = ACTIONS(1637), + [anon_sym_DOLLARdefault] = ACTIONS(1637), + [anon_sym_DOLLARswitch] = ACTIONS(1637), + [anon_sym_DOLLARendswitch] = ACTIONS(1637), + [anon_sym_DOLLARfor] = ACTIONS(1637), + [anon_sym_DOLLARforeach] = ACTIONS(1637), + [anon_sym_DOLLARalignof] = ACTIONS(1637), + [anon_sym_DOLLARextnameof] = ACTIONS(1637), + [anon_sym_DOLLARnameof] = ACTIONS(1637), + [anon_sym_DOLLARoffsetof] = ACTIONS(1637), + [anon_sym_DOLLARqnameof] = ACTIONS(1637), + [anon_sym_DOLLARvaconst] = ACTIONS(1637), + [anon_sym_DOLLARvaarg] = ACTIONS(1637), + [anon_sym_DOLLARvaref] = ACTIONS(1637), + [anon_sym_DOLLARvaexpr] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1637), + [anon_sym_false] = ACTIONS(1637), + [anon_sym_null] = ACTIONS(1637), + [anon_sym_DOLLARvacount] = ACTIONS(1637), + [anon_sym_DOLLARappend] = ACTIONS(1637), + [anon_sym_DOLLARconcat] = ACTIONS(1637), + [anon_sym_DOLLAReval] = ACTIONS(1637), + [anon_sym_DOLLARis_const] = ACTIONS(1637), + [anon_sym_DOLLARsizeof] = ACTIONS(1637), + [anon_sym_DOLLARstringify] = ACTIONS(1637), + [anon_sym_DOLLARand] = ACTIONS(1637), + [anon_sym_DOLLARdefined] = ACTIONS(1637), + [anon_sym_DOLLARembed] = ACTIONS(1637), + [anon_sym_DOLLARor] = ACTIONS(1637), + [anon_sym_DOLLARfeature] = ACTIONS(1637), + [anon_sym_DOLLARassignable] = ACTIONS(1637), + [anon_sym_BANG] = ACTIONS(1639), + [anon_sym_TILDE] = ACTIONS(1639), + [anon_sym_PLUS_PLUS] = ACTIONS(1639), + [anon_sym_DASH_DASH] = ACTIONS(1639), + [anon_sym_typeid] = ACTIONS(1637), + [anon_sym_LBRACE_PIPE] = ACTIONS(1639), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_bool] = ACTIONS(1637), + [anon_sym_char] = ACTIONS(1637), + [anon_sym_ichar] = ACTIONS(1637), + [anon_sym_short] = ACTIONS(1637), + [anon_sym_ushort] = ACTIONS(1637), + [anon_sym_uint] = ACTIONS(1637), + [anon_sym_long] = ACTIONS(1637), + [anon_sym_ulong] = ACTIONS(1637), + [anon_sym_int128] = ACTIONS(1637), + [anon_sym_uint128] = ACTIONS(1637), + [anon_sym_float] = ACTIONS(1637), + [anon_sym_double] = ACTIONS(1637), + [anon_sym_float16] = ACTIONS(1637), + [anon_sym_bfloat16] = ACTIONS(1637), + [anon_sym_float128] = ACTIONS(1637), + [anon_sym_iptr] = ACTIONS(1637), + [anon_sym_uptr] = ACTIONS(1637), + [anon_sym_isz] = ACTIONS(1637), + [anon_sym_usz] = ACTIONS(1637), + [anon_sym_anyfault] = ACTIONS(1637), + [anon_sym_any] = ACTIONS(1637), + [anon_sym_DOLLARtypeof] = ACTIONS(1637), + [anon_sym_DOLLARtypefrom] = ACTIONS(1637), + [anon_sym_DOLLARvatype] = ACTIONS(1637), + [anon_sym_DOLLARevaltype] = ACTIONS(1637), + [sym_real_literal] = ACTIONS(1639), }, [475] = { [sym_line_comment] = STATE(475), [sym_doc_comment] = STATE(475), [sym_block_comment] = STATE(475), - [sym_ident] = ACTIONS(1512), - [sym_integer_literal] = ACTIONS(1514), - [anon_sym_SQUOTE] = ACTIONS(1514), - [anon_sym_DQUOTE] = ACTIONS(1514), - [anon_sym_BQUOTE] = ACTIONS(1514), - [sym_bytes_literal] = ACTIONS(1514), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1512), - [sym_at_ident] = ACTIONS(1514), - [sym_hash_ident] = ACTIONS(1514), - [sym_type_ident] = ACTIONS(1514), - [sym_ct_type_ident] = ACTIONS(1514), - [sym_const_ident] = ACTIONS(1512), - [sym_builtin] = ACTIONS(1514), - [anon_sym_LPAREN] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(1512), - [anon_sym_static] = ACTIONS(1512), - [anon_sym_tlocal] = ACTIONS(1512), - [anon_sym_SEMI] = ACTIONS(1514), - [anon_sym_fn] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(1512), - [anon_sym_const] = ACTIONS(1512), - [anon_sym_var] = ACTIONS(1512), - [anon_sym_return] = ACTIONS(1512), - [anon_sym_continue] = ACTIONS(1512), - [anon_sym_break] = ACTIONS(1512), - [anon_sym_defer] = ACTIONS(1512), - [anon_sym_assert] = ACTIONS(1512), - [anon_sym_nextcase] = ACTIONS(1512), - [anon_sym_switch] = ACTIONS(1512), - [anon_sym_AMP_AMP] = ACTIONS(1514), - [anon_sym_if] = ACTIONS(1512), - [anon_sym_for] = ACTIONS(1512), - [anon_sym_foreach] = ACTIONS(1512), - [anon_sym_foreach_r] = ACTIONS(1512), - [anon_sym_while] = ACTIONS(1512), - [anon_sym_do] = ACTIONS(1512), - [anon_sym_int] = ACTIONS(1512), - [anon_sym_PLUS] = ACTIONS(1512), - [anon_sym_DASH] = ACTIONS(1512), - [anon_sym_STAR] = ACTIONS(1514), - [anon_sym_asm] = ACTIONS(1512), - [anon_sym_DOLLARassert] = ACTIONS(1512), - [anon_sym_DOLLARerror] = ACTIONS(1512), - [anon_sym_DOLLARecho] = ACTIONS(1512), - [anon_sym_DOLLARif] = ACTIONS(1512), - [anon_sym_DOLLARcase] = ACTIONS(1512), - [anon_sym_DOLLARdefault] = ACTIONS(1512), - [anon_sym_DOLLARswitch] = ACTIONS(1512), - [anon_sym_DOLLARendswitch] = ACTIONS(1512), - [anon_sym_DOLLARfor] = ACTIONS(1512), - [anon_sym_DOLLARforeach] = ACTIONS(1512), - [anon_sym_DOLLARalignof] = ACTIONS(1512), - [anon_sym_DOLLARextnameof] = ACTIONS(1512), - [anon_sym_DOLLARnameof] = ACTIONS(1512), - [anon_sym_DOLLARoffsetof] = ACTIONS(1512), - [anon_sym_DOLLARqnameof] = ACTIONS(1512), - [anon_sym_DOLLARvaconst] = ACTIONS(1512), - [anon_sym_DOLLARvaarg] = ACTIONS(1512), - [anon_sym_DOLLARvaref] = ACTIONS(1512), - [anon_sym_DOLLARvaexpr] = ACTIONS(1512), - [anon_sym_true] = ACTIONS(1512), - [anon_sym_false] = ACTIONS(1512), - [anon_sym_null] = ACTIONS(1512), - [anon_sym_DOLLARvacount] = ACTIONS(1512), - [anon_sym_DOLLARappend] = ACTIONS(1512), - [anon_sym_DOLLARconcat] = ACTIONS(1512), - [anon_sym_DOLLAReval] = ACTIONS(1512), - [anon_sym_DOLLARis_const] = ACTIONS(1512), - [anon_sym_DOLLARsizeof] = ACTIONS(1512), - [anon_sym_DOLLARstringify] = ACTIONS(1512), - [anon_sym_DOLLARand] = ACTIONS(1512), - [anon_sym_DOLLARdefined] = ACTIONS(1512), - [anon_sym_DOLLARembed] = ACTIONS(1512), - [anon_sym_DOLLARor] = ACTIONS(1512), - [anon_sym_DOLLARfeature] = ACTIONS(1512), - [anon_sym_DOLLARassignable] = ACTIONS(1512), - [anon_sym_BANG] = ACTIONS(1514), - [anon_sym_TILDE] = ACTIONS(1514), - [anon_sym_PLUS_PLUS] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1514), - [anon_sym_typeid] = ACTIONS(1512), - [anon_sym_LBRACE_PIPE] = ACTIONS(1514), - [anon_sym_void] = ACTIONS(1512), - [anon_sym_bool] = ACTIONS(1512), - [anon_sym_char] = ACTIONS(1512), - [anon_sym_ichar] = ACTIONS(1512), - [anon_sym_short] = ACTIONS(1512), - [anon_sym_ushort] = ACTIONS(1512), - [anon_sym_uint] = ACTIONS(1512), - [anon_sym_long] = ACTIONS(1512), - [anon_sym_ulong] = ACTIONS(1512), - [anon_sym_int128] = ACTIONS(1512), - [anon_sym_uint128] = ACTIONS(1512), - [anon_sym_float] = ACTIONS(1512), - [anon_sym_double] = ACTIONS(1512), - [anon_sym_float16] = ACTIONS(1512), - [anon_sym_bfloat16] = ACTIONS(1512), - [anon_sym_float128] = ACTIONS(1512), - [anon_sym_iptr] = ACTIONS(1512), - [anon_sym_uptr] = ACTIONS(1512), - [anon_sym_isz] = ACTIONS(1512), - [anon_sym_usz] = ACTIONS(1512), - [anon_sym_anyfault] = ACTIONS(1512), - [anon_sym_any] = ACTIONS(1512), - [anon_sym_DOLLARtypeof] = ACTIONS(1512), - [anon_sym_DOLLARtypefrom] = ACTIONS(1512), - [anon_sym_DOLLARvatype] = ACTIONS(1512), - [anon_sym_DOLLARevaltype] = ACTIONS(1512), - [sym_real_literal] = ACTIONS(1514), + [sym_ident] = ACTIONS(1545), + [sym_integer_literal] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1547), + [anon_sym_DQUOTE] = ACTIONS(1547), + [anon_sym_BQUOTE] = ACTIONS(1547), + [sym_bytes_literal] = ACTIONS(1547), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1545), + [sym_at_ident] = ACTIONS(1547), + [sym_hash_ident] = ACTIONS(1547), + [sym_type_ident] = ACTIONS(1547), + [sym_ct_type_ident] = ACTIONS(1547), + [sym_const_ident] = ACTIONS(1545), + [sym_builtin] = ACTIONS(1547), + [anon_sym_LPAREN] = ACTIONS(1547), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_static] = ACTIONS(1545), + [anon_sym_tlocal] = ACTIONS(1545), + [anon_sym_SEMI] = ACTIONS(1547), + [anon_sym_fn] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(1545), + [anon_sym_const] = ACTIONS(1545), + [anon_sym_var] = ACTIONS(1545), + [anon_sym_return] = ACTIONS(1545), + [anon_sym_continue] = ACTIONS(1545), + [anon_sym_break] = ACTIONS(1545), + [anon_sym_defer] = ACTIONS(1545), + [anon_sym_assert] = ACTIONS(1545), + [anon_sym_nextcase] = ACTIONS(1545), + [anon_sym_switch] = ACTIONS(1545), + [anon_sym_AMP_AMP] = ACTIONS(1547), + [anon_sym_if] = ACTIONS(1545), + [anon_sym_for] = ACTIONS(1545), + [anon_sym_foreach] = ACTIONS(1545), + [anon_sym_foreach_r] = ACTIONS(1545), + [anon_sym_while] = ACTIONS(1545), + [anon_sym_do] = ACTIONS(1545), + [anon_sym_int] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_STAR] = ACTIONS(1547), + [anon_sym_asm] = ACTIONS(1545), + [anon_sym_DOLLARassert] = ACTIONS(1545), + [anon_sym_DOLLARerror] = ACTIONS(1545), + [anon_sym_DOLLARecho] = ACTIONS(1545), + [anon_sym_DOLLARif] = ACTIONS(1545), + [anon_sym_DOLLARcase] = ACTIONS(1545), + [anon_sym_DOLLARdefault] = ACTIONS(1545), + [anon_sym_DOLLARswitch] = ACTIONS(1545), + [anon_sym_DOLLARendswitch] = ACTIONS(1545), + [anon_sym_DOLLARfor] = ACTIONS(1545), + [anon_sym_DOLLARforeach] = ACTIONS(1545), + [anon_sym_DOLLARalignof] = ACTIONS(1545), + [anon_sym_DOLLARextnameof] = ACTIONS(1545), + [anon_sym_DOLLARnameof] = ACTIONS(1545), + [anon_sym_DOLLARoffsetof] = ACTIONS(1545), + [anon_sym_DOLLARqnameof] = ACTIONS(1545), + [anon_sym_DOLLARvaconst] = ACTIONS(1545), + [anon_sym_DOLLARvaarg] = ACTIONS(1545), + [anon_sym_DOLLARvaref] = ACTIONS(1545), + [anon_sym_DOLLARvaexpr] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(1545), + [anon_sym_false] = ACTIONS(1545), + [anon_sym_null] = ACTIONS(1545), + [anon_sym_DOLLARvacount] = ACTIONS(1545), + [anon_sym_DOLLARappend] = ACTIONS(1545), + [anon_sym_DOLLARconcat] = ACTIONS(1545), + [anon_sym_DOLLAReval] = ACTIONS(1545), + [anon_sym_DOLLARis_const] = ACTIONS(1545), + [anon_sym_DOLLARsizeof] = ACTIONS(1545), + [anon_sym_DOLLARstringify] = ACTIONS(1545), + [anon_sym_DOLLARand] = ACTIONS(1545), + [anon_sym_DOLLARdefined] = ACTIONS(1545), + [anon_sym_DOLLARembed] = ACTIONS(1545), + [anon_sym_DOLLARor] = ACTIONS(1545), + [anon_sym_DOLLARfeature] = ACTIONS(1545), + [anon_sym_DOLLARassignable] = ACTIONS(1545), + [anon_sym_BANG] = ACTIONS(1547), + [anon_sym_TILDE] = ACTIONS(1547), + [anon_sym_PLUS_PLUS] = ACTIONS(1547), + [anon_sym_DASH_DASH] = ACTIONS(1547), + [anon_sym_typeid] = ACTIONS(1545), + [anon_sym_LBRACE_PIPE] = ACTIONS(1547), + [anon_sym_void] = ACTIONS(1545), + [anon_sym_bool] = ACTIONS(1545), + [anon_sym_char] = ACTIONS(1545), + [anon_sym_ichar] = ACTIONS(1545), + [anon_sym_short] = ACTIONS(1545), + [anon_sym_ushort] = ACTIONS(1545), + [anon_sym_uint] = ACTIONS(1545), + [anon_sym_long] = ACTIONS(1545), + [anon_sym_ulong] = ACTIONS(1545), + [anon_sym_int128] = ACTIONS(1545), + [anon_sym_uint128] = ACTIONS(1545), + [anon_sym_float] = ACTIONS(1545), + [anon_sym_double] = ACTIONS(1545), + [anon_sym_float16] = ACTIONS(1545), + [anon_sym_bfloat16] = ACTIONS(1545), + [anon_sym_float128] = ACTIONS(1545), + [anon_sym_iptr] = ACTIONS(1545), + [anon_sym_uptr] = ACTIONS(1545), + [anon_sym_isz] = ACTIONS(1545), + [anon_sym_usz] = ACTIONS(1545), + [anon_sym_anyfault] = ACTIONS(1545), + [anon_sym_any] = ACTIONS(1545), + [anon_sym_DOLLARtypeof] = ACTIONS(1545), + [anon_sym_DOLLARtypefrom] = ACTIONS(1545), + [anon_sym_DOLLARvatype] = ACTIONS(1545), + [anon_sym_DOLLARevaltype] = ACTIONS(1545), + [sym_real_literal] = ACTIONS(1547), }, [476] = { [sym_line_comment] = STATE(476), [sym_doc_comment] = STATE(476), [sym_block_comment] = STATE(476), - [sym_ident] = ACTIONS(1640), - [sym_integer_literal] = ACTIONS(1642), - [anon_sym_SQUOTE] = ACTIONS(1642), - [anon_sym_DQUOTE] = ACTIONS(1642), - [anon_sym_BQUOTE] = ACTIONS(1642), - [sym_bytes_literal] = ACTIONS(1642), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1640), - [sym_at_ident] = ACTIONS(1642), - [sym_hash_ident] = ACTIONS(1642), - [sym_type_ident] = ACTIONS(1642), - [sym_ct_type_ident] = ACTIONS(1642), - [sym_const_ident] = ACTIONS(1640), - [sym_builtin] = ACTIONS(1642), - [anon_sym_LPAREN] = ACTIONS(1642), - [anon_sym_AMP] = ACTIONS(1640), - [anon_sym_static] = ACTIONS(1640), - [anon_sym_tlocal] = ACTIONS(1640), - [anon_sym_SEMI] = ACTIONS(1642), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_LBRACE] = ACTIONS(1640), - [anon_sym_const] = ACTIONS(1640), - [anon_sym_var] = ACTIONS(1640), - [anon_sym_return] = ACTIONS(1640), - [anon_sym_continue] = ACTIONS(1640), - [anon_sym_break] = ACTIONS(1640), - [anon_sym_defer] = ACTIONS(1640), - [anon_sym_assert] = ACTIONS(1640), - [anon_sym_nextcase] = ACTIONS(1640), - [anon_sym_switch] = ACTIONS(1640), - [anon_sym_AMP_AMP] = ACTIONS(1642), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1640), - [anon_sym_foreach] = ACTIONS(1640), - [anon_sym_foreach_r] = ACTIONS(1640), - [anon_sym_while] = ACTIONS(1640), - [anon_sym_do] = ACTIONS(1640), - [anon_sym_int] = ACTIONS(1640), - [anon_sym_PLUS] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1640), - [anon_sym_STAR] = ACTIONS(1642), - [anon_sym_asm] = ACTIONS(1640), - [anon_sym_DOLLARassert] = ACTIONS(1640), - [anon_sym_DOLLARerror] = ACTIONS(1640), - [anon_sym_DOLLARecho] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1640), - [anon_sym_DOLLARcase] = ACTIONS(1640), - [anon_sym_DOLLARdefault] = ACTIONS(1640), - [anon_sym_DOLLARswitch] = ACTIONS(1640), - [anon_sym_DOLLARendswitch] = ACTIONS(1640), - [anon_sym_DOLLARfor] = ACTIONS(1640), - [anon_sym_DOLLARforeach] = ACTIONS(1640), - [anon_sym_DOLLARalignof] = ACTIONS(1640), - [anon_sym_DOLLARextnameof] = ACTIONS(1640), - [anon_sym_DOLLARnameof] = ACTIONS(1640), - [anon_sym_DOLLARoffsetof] = ACTIONS(1640), - [anon_sym_DOLLARqnameof] = ACTIONS(1640), - [anon_sym_DOLLARvaconst] = ACTIONS(1640), - [anon_sym_DOLLARvaarg] = ACTIONS(1640), - [anon_sym_DOLLARvaref] = ACTIONS(1640), - [anon_sym_DOLLARvaexpr] = ACTIONS(1640), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_null] = ACTIONS(1640), - [anon_sym_DOLLARvacount] = ACTIONS(1640), - [anon_sym_DOLLARappend] = ACTIONS(1640), - [anon_sym_DOLLARconcat] = ACTIONS(1640), - [anon_sym_DOLLAReval] = ACTIONS(1640), - [anon_sym_DOLLARis_const] = ACTIONS(1640), - [anon_sym_DOLLARsizeof] = ACTIONS(1640), - [anon_sym_DOLLARstringify] = ACTIONS(1640), - [anon_sym_DOLLARand] = ACTIONS(1640), - [anon_sym_DOLLARdefined] = ACTIONS(1640), - [anon_sym_DOLLARembed] = ACTIONS(1640), - [anon_sym_DOLLARor] = ACTIONS(1640), - [anon_sym_DOLLARfeature] = ACTIONS(1640), - [anon_sym_DOLLARassignable] = ACTIONS(1640), - [anon_sym_BANG] = ACTIONS(1642), - [anon_sym_TILDE] = ACTIONS(1642), - [anon_sym_PLUS_PLUS] = ACTIONS(1642), - [anon_sym_DASH_DASH] = ACTIONS(1642), - [anon_sym_typeid] = ACTIONS(1640), - [anon_sym_LBRACE_PIPE] = ACTIONS(1642), - [anon_sym_void] = ACTIONS(1640), - [anon_sym_bool] = ACTIONS(1640), - [anon_sym_char] = ACTIONS(1640), - [anon_sym_ichar] = ACTIONS(1640), - [anon_sym_short] = ACTIONS(1640), - [anon_sym_ushort] = ACTIONS(1640), - [anon_sym_uint] = ACTIONS(1640), - [anon_sym_long] = ACTIONS(1640), - [anon_sym_ulong] = ACTIONS(1640), - [anon_sym_int128] = ACTIONS(1640), - [anon_sym_uint128] = ACTIONS(1640), - [anon_sym_float] = ACTIONS(1640), - [anon_sym_double] = ACTIONS(1640), - [anon_sym_float16] = ACTIONS(1640), - [anon_sym_bfloat16] = ACTIONS(1640), - [anon_sym_float128] = ACTIONS(1640), - [anon_sym_iptr] = ACTIONS(1640), - [anon_sym_uptr] = ACTIONS(1640), - [anon_sym_isz] = ACTIONS(1640), - [anon_sym_usz] = ACTIONS(1640), - [anon_sym_anyfault] = ACTIONS(1640), - [anon_sym_any] = ACTIONS(1640), - [anon_sym_DOLLARtypeof] = ACTIONS(1640), - [anon_sym_DOLLARtypefrom] = ACTIONS(1640), - [anon_sym_DOLLARvatype] = ACTIONS(1640), - [anon_sym_DOLLARevaltype] = ACTIONS(1640), - [sym_real_literal] = ACTIONS(1642), + [sym_ident] = ACTIONS(1529), + [sym_integer_literal] = ACTIONS(1531), + [anon_sym_SQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [anon_sym_BQUOTE] = ACTIONS(1531), + [sym_bytes_literal] = ACTIONS(1531), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1529), + [sym_at_ident] = ACTIONS(1531), + [sym_hash_ident] = ACTIONS(1531), + [sym_type_ident] = ACTIONS(1531), + [sym_ct_type_ident] = ACTIONS(1531), + [sym_const_ident] = ACTIONS(1529), + [sym_builtin] = ACTIONS(1531), + [anon_sym_LPAREN] = ACTIONS(1531), + [anon_sym_AMP] = ACTIONS(1529), + [anon_sym_static] = ACTIONS(1529), + [anon_sym_tlocal] = ACTIONS(1529), + [anon_sym_SEMI] = ACTIONS(1531), + [anon_sym_fn] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1529), + [anon_sym_const] = ACTIONS(1529), + [anon_sym_var] = ACTIONS(1529), + [anon_sym_return] = ACTIONS(1529), + [anon_sym_continue] = ACTIONS(1529), + [anon_sym_break] = ACTIONS(1529), + [anon_sym_defer] = ACTIONS(1529), + [anon_sym_assert] = ACTIONS(1529), + [anon_sym_nextcase] = ACTIONS(1529), + [anon_sym_switch] = ACTIONS(1529), + [anon_sym_AMP_AMP] = ACTIONS(1531), + [anon_sym_if] = ACTIONS(1529), + [anon_sym_for] = ACTIONS(1529), + [anon_sym_foreach] = ACTIONS(1529), + [anon_sym_foreach_r] = ACTIONS(1529), + [anon_sym_while] = ACTIONS(1529), + [anon_sym_do] = ACTIONS(1529), + [anon_sym_int] = ACTIONS(1529), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_STAR] = ACTIONS(1531), + [anon_sym_asm] = ACTIONS(1529), + [anon_sym_DOLLARassert] = ACTIONS(1529), + [anon_sym_DOLLARerror] = ACTIONS(1529), + [anon_sym_DOLLARecho] = ACTIONS(1529), + [anon_sym_DOLLARif] = ACTIONS(1529), + [anon_sym_DOLLARcase] = ACTIONS(1529), + [anon_sym_DOLLARdefault] = ACTIONS(1529), + [anon_sym_DOLLARswitch] = ACTIONS(1529), + [anon_sym_DOLLARendswitch] = ACTIONS(1529), + [anon_sym_DOLLARfor] = ACTIONS(1529), + [anon_sym_DOLLARforeach] = ACTIONS(1529), + [anon_sym_DOLLARalignof] = ACTIONS(1529), + [anon_sym_DOLLARextnameof] = ACTIONS(1529), + [anon_sym_DOLLARnameof] = ACTIONS(1529), + [anon_sym_DOLLARoffsetof] = ACTIONS(1529), + [anon_sym_DOLLARqnameof] = ACTIONS(1529), + [anon_sym_DOLLARvaconst] = ACTIONS(1529), + [anon_sym_DOLLARvaarg] = ACTIONS(1529), + [anon_sym_DOLLARvaref] = ACTIONS(1529), + [anon_sym_DOLLARvaexpr] = ACTIONS(1529), + [anon_sym_true] = ACTIONS(1529), + [anon_sym_false] = ACTIONS(1529), + [anon_sym_null] = ACTIONS(1529), + [anon_sym_DOLLARvacount] = ACTIONS(1529), + [anon_sym_DOLLARappend] = ACTIONS(1529), + [anon_sym_DOLLARconcat] = ACTIONS(1529), + [anon_sym_DOLLAReval] = ACTIONS(1529), + [anon_sym_DOLLARis_const] = ACTIONS(1529), + [anon_sym_DOLLARsizeof] = ACTIONS(1529), + [anon_sym_DOLLARstringify] = ACTIONS(1529), + [anon_sym_DOLLARand] = ACTIONS(1529), + [anon_sym_DOLLARdefined] = ACTIONS(1529), + [anon_sym_DOLLARembed] = ACTIONS(1529), + [anon_sym_DOLLARor] = ACTIONS(1529), + [anon_sym_DOLLARfeature] = ACTIONS(1529), + [anon_sym_DOLLARassignable] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1531), + [anon_sym_TILDE] = ACTIONS(1531), + [anon_sym_PLUS_PLUS] = ACTIONS(1531), + [anon_sym_DASH_DASH] = ACTIONS(1531), + [anon_sym_typeid] = ACTIONS(1529), + [anon_sym_LBRACE_PIPE] = ACTIONS(1531), + [anon_sym_void] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_ichar] = ACTIONS(1529), + [anon_sym_short] = ACTIONS(1529), + [anon_sym_ushort] = ACTIONS(1529), + [anon_sym_uint] = ACTIONS(1529), + [anon_sym_long] = ACTIONS(1529), + [anon_sym_ulong] = ACTIONS(1529), + [anon_sym_int128] = ACTIONS(1529), + [anon_sym_uint128] = ACTIONS(1529), + [anon_sym_float] = ACTIONS(1529), + [anon_sym_double] = ACTIONS(1529), + [anon_sym_float16] = ACTIONS(1529), + [anon_sym_bfloat16] = ACTIONS(1529), + [anon_sym_float128] = ACTIONS(1529), + [anon_sym_iptr] = ACTIONS(1529), + [anon_sym_uptr] = ACTIONS(1529), + [anon_sym_isz] = ACTIONS(1529), + [anon_sym_usz] = ACTIONS(1529), + [anon_sym_anyfault] = ACTIONS(1529), + [anon_sym_any] = ACTIONS(1529), + [anon_sym_DOLLARtypeof] = ACTIONS(1529), + [anon_sym_DOLLARtypefrom] = ACTIONS(1529), + [anon_sym_DOLLARvatype] = ACTIONS(1529), + [anon_sym_DOLLARevaltype] = ACTIONS(1529), + [sym_real_literal] = ACTIONS(1531), }, [477] = { [sym_line_comment] = STATE(477), [sym_doc_comment] = STATE(477), [sym_block_comment] = STATE(477), - [sym_ident] = ACTIONS(1508), - [sym_integer_literal] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1510), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_BQUOTE] = ACTIONS(1510), - [sym_bytes_literal] = ACTIONS(1510), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1508), - [sym_at_ident] = ACTIONS(1510), - [sym_hash_ident] = ACTIONS(1510), - [sym_type_ident] = ACTIONS(1510), - [sym_ct_type_ident] = ACTIONS(1510), - [sym_const_ident] = ACTIONS(1508), - [sym_builtin] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(1508), - [anon_sym_static] = ACTIONS(1508), - [anon_sym_tlocal] = ACTIONS(1508), - [anon_sym_SEMI] = ACTIONS(1510), - [anon_sym_fn] = ACTIONS(1508), - [anon_sym_LBRACE] = ACTIONS(1508), - [anon_sym_const] = ACTIONS(1508), - [anon_sym_var] = ACTIONS(1508), - [anon_sym_return] = ACTIONS(1508), - [anon_sym_continue] = ACTIONS(1508), - [anon_sym_break] = ACTIONS(1508), - [anon_sym_defer] = ACTIONS(1508), - [anon_sym_assert] = ACTIONS(1508), - [anon_sym_nextcase] = ACTIONS(1508), - [anon_sym_switch] = ACTIONS(1508), - [anon_sym_AMP_AMP] = ACTIONS(1510), - [anon_sym_if] = ACTIONS(1508), - [anon_sym_for] = ACTIONS(1508), - [anon_sym_foreach] = ACTIONS(1508), - [anon_sym_foreach_r] = ACTIONS(1508), - [anon_sym_while] = ACTIONS(1508), - [anon_sym_do] = ACTIONS(1508), - [anon_sym_int] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(1508), - [anon_sym_STAR] = ACTIONS(1510), - [anon_sym_asm] = ACTIONS(1508), - [anon_sym_DOLLARassert] = ACTIONS(1508), - [anon_sym_DOLLARerror] = ACTIONS(1508), - [anon_sym_DOLLARecho] = ACTIONS(1508), - [anon_sym_DOLLARif] = ACTIONS(1508), - [anon_sym_DOLLARcase] = ACTIONS(1508), - [anon_sym_DOLLARdefault] = ACTIONS(1508), - [anon_sym_DOLLARswitch] = ACTIONS(1508), - [anon_sym_DOLLARendswitch] = ACTIONS(1508), - [anon_sym_DOLLARfor] = ACTIONS(1508), - [anon_sym_DOLLARforeach] = ACTIONS(1508), - [anon_sym_DOLLARalignof] = ACTIONS(1508), - [anon_sym_DOLLARextnameof] = ACTIONS(1508), - [anon_sym_DOLLARnameof] = ACTIONS(1508), - [anon_sym_DOLLARoffsetof] = ACTIONS(1508), - [anon_sym_DOLLARqnameof] = ACTIONS(1508), - [anon_sym_DOLLARvaconst] = ACTIONS(1508), - [anon_sym_DOLLARvaarg] = ACTIONS(1508), - [anon_sym_DOLLARvaref] = ACTIONS(1508), - [anon_sym_DOLLARvaexpr] = ACTIONS(1508), - [anon_sym_true] = ACTIONS(1508), - [anon_sym_false] = ACTIONS(1508), - [anon_sym_null] = ACTIONS(1508), - [anon_sym_DOLLARvacount] = ACTIONS(1508), - [anon_sym_DOLLARappend] = ACTIONS(1508), - [anon_sym_DOLLARconcat] = ACTIONS(1508), - [anon_sym_DOLLAReval] = ACTIONS(1508), - [anon_sym_DOLLARis_const] = ACTIONS(1508), - [anon_sym_DOLLARsizeof] = ACTIONS(1508), - [anon_sym_DOLLARstringify] = ACTIONS(1508), - [anon_sym_DOLLARand] = ACTIONS(1508), - [anon_sym_DOLLARdefined] = ACTIONS(1508), - [anon_sym_DOLLARembed] = ACTIONS(1508), - [anon_sym_DOLLARor] = ACTIONS(1508), - [anon_sym_DOLLARfeature] = ACTIONS(1508), - [anon_sym_DOLLARassignable] = ACTIONS(1508), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_PLUS_PLUS] = ACTIONS(1510), - [anon_sym_DASH_DASH] = ACTIONS(1510), - [anon_sym_typeid] = ACTIONS(1508), - [anon_sym_LBRACE_PIPE] = ACTIONS(1510), - [anon_sym_void] = ACTIONS(1508), - [anon_sym_bool] = ACTIONS(1508), - [anon_sym_char] = ACTIONS(1508), - [anon_sym_ichar] = ACTIONS(1508), - [anon_sym_short] = ACTIONS(1508), - [anon_sym_ushort] = ACTIONS(1508), - [anon_sym_uint] = ACTIONS(1508), - [anon_sym_long] = ACTIONS(1508), - [anon_sym_ulong] = ACTIONS(1508), - [anon_sym_int128] = ACTIONS(1508), - [anon_sym_uint128] = ACTIONS(1508), - [anon_sym_float] = ACTIONS(1508), - [anon_sym_double] = ACTIONS(1508), - [anon_sym_float16] = ACTIONS(1508), - [anon_sym_bfloat16] = ACTIONS(1508), - [anon_sym_float128] = ACTIONS(1508), - [anon_sym_iptr] = ACTIONS(1508), - [anon_sym_uptr] = ACTIONS(1508), - [anon_sym_isz] = ACTIONS(1508), - [anon_sym_usz] = ACTIONS(1508), - [anon_sym_anyfault] = ACTIONS(1508), - [anon_sym_any] = ACTIONS(1508), - [anon_sym_DOLLARtypeof] = ACTIONS(1508), - [anon_sym_DOLLARtypefrom] = ACTIONS(1508), - [anon_sym_DOLLARvatype] = ACTIONS(1508), - [anon_sym_DOLLARevaltype] = ACTIONS(1508), - [sym_real_literal] = ACTIONS(1510), + [sym_ident] = ACTIONS(1565), + [sym_integer_literal] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_DQUOTE] = ACTIONS(1567), + [anon_sym_BQUOTE] = ACTIONS(1567), + [sym_bytes_literal] = ACTIONS(1567), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1565), + [sym_at_ident] = ACTIONS(1567), + [sym_hash_ident] = ACTIONS(1567), + [sym_type_ident] = ACTIONS(1567), + [sym_ct_type_ident] = ACTIONS(1567), + [sym_const_ident] = ACTIONS(1565), + [sym_builtin] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_static] = ACTIONS(1565), + [anon_sym_tlocal] = ACTIONS(1565), + [anon_sym_SEMI] = ACTIONS(1567), + [anon_sym_fn] = ACTIONS(1565), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_const] = ACTIONS(1565), + [anon_sym_var] = ACTIONS(1565), + [anon_sym_return] = ACTIONS(1565), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_break] = ACTIONS(1565), + [anon_sym_defer] = ACTIONS(1565), + [anon_sym_assert] = ACTIONS(1565), + [anon_sym_nextcase] = ACTIONS(1565), + [anon_sym_switch] = ACTIONS(1565), + [anon_sym_AMP_AMP] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(1565), + [anon_sym_for] = ACTIONS(1565), + [anon_sym_foreach] = ACTIONS(1565), + [anon_sym_foreach_r] = ACTIONS(1565), + [anon_sym_while] = ACTIONS(1565), + [anon_sym_do] = ACTIONS(1565), + [anon_sym_int] = ACTIONS(1565), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_STAR] = ACTIONS(1567), + [anon_sym_asm] = ACTIONS(1565), + [anon_sym_DOLLARassert] = ACTIONS(1565), + [anon_sym_DOLLARerror] = ACTIONS(1565), + [anon_sym_DOLLARecho] = ACTIONS(1565), + [anon_sym_DOLLARif] = ACTIONS(1565), + [anon_sym_DOLLARcase] = ACTIONS(1565), + [anon_sym_DOLLARdefault] = ACTIONS(1565), + [anon_sym_DOLLARswitch] = ACTIONS(1565), + [anon_sym_DOLLARendswitch] = ACTIONS(1565), + [anon_sym_DOLLARfor] = ACTIONS(1565), + [anon_sym_DOLLARforeach] = ACTIONS(1565), + [anon_sym_DOLLARalignof] = ACTIONS(1565), + [anon_sym_DOLLARextnameof] = ACTIONS(1565), + [anon_sym_DOLLARnameof] = ACTIONS(1565), + [anon_sym_DOLLARoffsetof] = ACTIONS(1565), + [anon_sym_DOLLARqnameof] = ACTIONS(1565), + [anon_sym_DOLLARvaconst] = ACTIONS(1565), + [anon_sym_DOLLARvaarg] = ACTIONS(1565), + [anon_sym_DOLLARvaref] = ACTIONS(1565), + [anon_sym_DOLLARvaexpr] = ACTIONS(1565), + [anon_sym_true] = ACTIONS(1565), + [anon_sym_false] = ACTIONS(1565), + [anon_sym_null] = ACTIONS(1565), + [anon_sym_DOLLARvacount] = ACTIONS(1565), + [anon_sym_DOLLARappend] = ACTIONS(1565), + [anon_sym_DOLLARconcat] = ACTIONS(1565), + [anon_sym_DOLLAReval] = ACTIONS(1565), + [anon_sym_DOLLARis_const] = ACTIONS(1565), + [anon_sym_DOLLARsizeof] = ACTIONS(1565), + [anon_sym_DOLLARstringify] = ACTIONS(1565), + [anon_sym_DOLLARand] = ACTIONS(1565), + [anon_sym_DOLLARdefined] = ACTIONS(1565), + [anon_sym_DOLLARembed] = ACTIONS(1565), + [anon_sym_DOLLARor] = ACTIONS(1565), + [anon_sym_DOLLARfeature] = ACTIONS(1565), + [anon_sym_DOLLARassignable] = ACTIONS(1565), + [anon_sym_BANG] = ACTIONS(1567), + [anon_sym_TILDE] = ACTIONS(1567), + [anon_sym_PLUS_PLUS] = ACTIONS(1567), + [anon_sym_DASH_DASH] = ACTIONS(1567), + [anon_sym_typeid] = ACTIONS(1565), + [anon_sym_LBRACE_PIPE] = ACTIONS(1567), + [anon_sym_void] = ACTIONS(1565), + [anon_sym_bool] = ACTIONS(1565), + [anon_sym_char] = ACTIONS(1565), + [anon_sym_ichar] = ACTIONS(1565), + [anon_sym_short] = ACTIONS(1565), + [anon_sym_ushort] = ACTIONS(1565), + [anon_sym_uint] = ACTIONS(1565), + [anon_sym_long] = ACTIONS(1565), + [anon_sym_ulong] = ACTIONS(1565), + [anon_sym_int128] = ACTIONS(1565), + [anon_sym_uint128] = ACTIONS(1565), + [anon_sym_float] = ACTIONS(1565), + [anon_sym_double] = ACTIONS(1565), + [anon_sym_float16] = ACTIONS(1565), + [anon_sym_bfloat16] = ACTIONS(1565), + [anon_sym_float128] = ACTIONS(1565), + [anon_sym_iptr] = ACTIONS(1565), + [anon_sym_uptr] = ACTIONS(1565), + [anon_sym_isz] = ACTIONS(1565), + [anon_sym_usz] = ACTIONS(1565), + [anon_sym_anyfault] = ACTIONS(1565), + [anon_sym_any] = ACTIONS(1565), + [anon_sym_DOLLARtypeof] = ACTIONS(1565), + [anon_sym_DOLLARtypefrom] = ACTIONS(1565), + [anon_sym_DOLLARvatype] = ACTIONS(1565), + [anon_sym_DOLLARevaltype] = ACTIONS(1565), + [sym_real_literal] = ACTIONS(1567), }, [478] = { [sym_line_comment] = STATE(478), [sym_doc_comment] = STATE(478), [sym_block_comment] = STATE(478), - [sym_ident] = ACTIONS(1376), - [sym_integer_literal] = ACTIONS(1378), - [anon_sym_SQUOTE] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1378), - [anon_sym_BQUOTE] = ACTIONS(1378), - [sym_bytes_literal] = ACTIONS(1378), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1376), - [sym_at_ident] = ACTIONS(1378), - [sym_hash_ident] = ACTIONS(1378), - [sym_type_ident] = ACTIONS(1378), - [sym_ct_type_ident] = ACTIONS(1378), - [sym_const_ident] = ACTIONS(1376), - [sym_builtin] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_AMP] = ACTIONS(1376), - [anon_sym_static] = ACTIONS(1376), - [anon_sym_tlocal] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1378), - [anon_sym_fn] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_var] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_defer] = ACTIONS(1376), - [anon_sym_assert] = ACTIONS(1376), - [anon_sym_nextcase] = ACTIONS(1376), - [anon_sym_switch] = ACTIONS(1376), - [anon_sym_AMP_AMP] = ACTIONS(1378), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_else] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_foreach] = ACTIONS(1376), - [anon_sym_foreach_r] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_int] = ACTIONS(1376), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_asm] = ACTIONS(1376), - [anon_sym_DOLLARassert] = ACTIONS(1376), - [anon_sym_DOLLARerror] = ACTIONS(1376), - [anon_sym_DOLLARecho] = ACTIONS(1376), - [anon_sym_DOLLARif] = ACTIONS(1376), - [anon_sym_DOLLARendif] = ACTIONS(1376), - [anon_sym_DOLLARelse] = ACTIONS(1376), - [anon_sym_DOLLARswitch] = ACTIONS(1376), - [anon_sym_DOLLARfor] = ACTIONS(1376), - [anon_sym_DOLLARforeach] = ACTIONS(1376), - [anon_sym_DOLLARalignof] = ACTIONS(1376), - [anon_sym_DOLLARextnameof] = ACTIONS(1376), - [anon_sym_DOLLARnameof] = ACTIONS(1376), - [anon_sym_DOLLARoffsetof] = ACTIONS(1376), - [anon_sym_DOLLARqnameof] = ACTIONS(1376), - [anon_sym_DOLLARvaconst] = ACTIONS(1376), - [anon_sym_DOLLARvaarg] = ACTIONS(1376), - [anon_sym_DOLLARvaref] = ACTIONS(1376), - [anon_sym_DOLLARvaexpr] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_DOLLARvacount] = ACTIONS(1376), - [anon_sym_DOLLARappend] = ACTIONS(1376), - [anon_sym_DOLLARconcat] = ACTIONS(1376), - [anon_sym_DOLLAReval] = ACTIONS(1376), - [anon_sym_DOLLARis_const] = ACTIONS(1376), - [anon_sym_DOLLARsizeof] = ACTIONS(1376), - [anon_sym_DOLLARstringify] = ACTIONS(1376), - [anon_sym_DOLLARand] = ACTIONS(1376), - [anon_sym_DOLLARdefined] = ACTIONS(1376), - [anon_sym_DOLLARembed] = ACTIONS(1376), - [anon_sym_DOLLARor] = ACTIONS(1376), - [anon_sym_DOLLARfeature] = ACTIONS(1376), - [anon_sym_DOLLARassignable] = ACTIONS(1376), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_PLUS_PLUS] = ACTIONS(1378), - [anon_sym_DASH_DASH] = ACTIONS(1378), - [anon_sym_typeid] = ACTIONS(1376), - [anon_sym_LBRACE_PIPE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1376), - [anon_sym_bool] = ACTIONS(1376), - [anon_sym_char] = ACTIONS(1376), - [anon_sym_ichar] = ACTIONS(1376), - [anon_sym_short] = ACTIONS(1376), - [anon_sym_ushort] = ACTIONS(1376), - [anon_sym_uint] = ACTIONS(1376), - [anon_sym_long] = ACTIONS(1376), - [anon_sym_ulong] = ACTIONS(1376), - [anon_sym_int128] = ACTIONS(1376), - [anon_sym_uint128] = ACTIONS(1376), - [anon_sym_float] = ACTIONS(1376), - [anon_sym_double] = ACTIONS(1376), - [anon_sym_float16] = ACTIONS(1376), - [anon_sym_bfloat16] = ACTIONS(1376), - [anon_sym_float128] = ACTIONS(1376), - [anon_sym_iptr] = ACTIONS(1376), - [anon_sym_uptr] = ACTIONS(1376), - [anon_sym_isz] = ACTIONS(1376), - [anon_sym_usz] = ACTIONS(1376), - [anon_sym_anyfault] = ACTIONS(1376), - [anon_sym_any] = ACTIONS(1376), - [anon_sym_DOLLARtypeof] = ACTIONS(1376), - [anon_sym_DOLLARtypefrom] = ACTIONS(1376), - [anon_sym_DOLLARvatype] = ACTIONS(1376), - [anon_sym_DOLLARevaltype] = ACTIONS(1376), - [sym_real_literal] = ACTIONS(1378), + [sym_ident] = ACTIONS(1569), + [sym_integer_literal] = ACTIONS(1571), + [anon_sym_SQUOTE] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1571), + [anon_sym_BQUOTE] = ACTIONS(1571), + [sym_bytes_literal] = ACTIONS(1571), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1569), + [sym_at_ident] = ACTIONS(1571), + [sym_hash_ident] = ACTIONS(1571), + [sym_type_ident] = ACTIONS(1571), + [sym_ct_type_ident] = ACTIONS(1571), + [sym_const_ident] = ACTIONS(1569), + [sym_builtin] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1571), + [anon_sym_AMP] = ACTIONS(1569), + [anon_sym_static] = ACTIONS(1569), + [anon_sym_tlocal] = ACTIONS(1569), + [anon_sym_SEMI] = ACTIONS(1571), + [anon_sym_fn] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1569), + [anon_sym_const] = ACTIONS(1569), + [anon_sym_var] = ACTIONS(1569), + [anon_sym_return] = ACTIONS(1569), + [anon_sym_continue] = ACTIONS(1569), + [anon_sym_break] = ACTIONS(1569), + [anon_sym_defer] = ACTIONS(1569), + [anon_sym_assert] = ACTIONS(1569), + [anon_sym_nextcase] = ACTIONS(1569), + [anon_sym_switch] = ACTIONS(1569), + [anon_sym_AMP_AMP] = ACTIONS(1571), + [anon_sym_if] = ACTIONS(1569), + [anon_sym_for] = ACTIONS(1569), + [anon_sym_foreach] = ACTIONS(1569), + [anon_sym_foreach_r] = ACTIONS(1569), + [anon_sym_while] = ACTIONS(1569), + [anon_sym_do] = ACTIONS(1569), + [anon_sym_int] = ACTIONS(1569), + [anon_sym_PLUS] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_STAR] = ACTIONS(1571), + [anon_sym_asm] = ACTIONS(1569), + [anon_sym_DOLLARassert] = ACTIONS(1569), + [anon_sym_DOLLARerror] = ACTIONS(1569), + [anon_sym_DOLLARecho] = ACTIONS(1569), + [anon_sym_DOLLARif] = ACTIONS(1569), + [anon_sym_DOLLARcase] = ACTIONS(1569), + [anon_sym_DOLLARdefault] = ACTIONS(1569), + [anon_sym_DOLLARswitch] = ACTIONS(1569), + [anon_sym_DOLLARendswitch] = ACTIONS(1569), + [anon_sym_DOLLARfor] = ACTIONS(1569), + [anon_sym_DOLLARforeach] = ACTIONS(1569), + [anon_sym_DOLLARalignof] = ACTIONS(1569), + [anon_sym_DOLLARextnameof] = ACTIONS(1569), + [anon_sym_DOLLARnameof] = ACTIONS(1569), + [anon_sym_DOLLARoffsetof] = ACTIONS(1569), + [anon_sym_DOLLARqnameof] = ACTIONS(1569), + [anon_sym_DOLLARvaconst] = ACTIONS(1569), + [anon_sym_DOLLARvaarg] = ACTIONS(1569), + [anon_sym_DOLLARvaref] = ACTIONS(1569), + [anon_sym_DOLLARvaexpr] = ACTIONS(1569), + [anon_sym_true] = ACTIONS(1569), + [anon_sym_false] = ACTIONS(1569), + [anon_sym_null] = ACTIONS(1569), + [anon_sym_DOLLARvacount] = ACTIONS(1569), + [anon_sym_DOLLARappend] = ACTIONS(1569), + [anon_sym_DOLLARconcat] = ACTIONS(1569), + [anon_sym_DOLLAReval] = ACTIONS(1569), + [anon_sym_DOLLARis_const] = ACTIONS(1569), + [anon_sym_DOLLARsizeof] = ACTIONS(1569), + [anon_sym_DOLLARstringify] = ACTIONS(1569), + [anon_sym_DOLLARand] = ACTIONS(1569), + [anon_sym_DOLLARdefined] = ACTIONS(1569), + [anon_sym_DOLLARembed] = ACTIONS(1569), + [anon_sym_DOLLARor] = ACTIONS(1569), + [anon_sym_DOLLARfeature] = ACTIONS(1569), + [anon_sym_DOLLARassignable] = ACTIONS(1569), + [anon_sym_BANG] = ACTIONS(1571), + [anon_sym_TILDE] = ACTIONS(1571), + [anon_sym_PLUS_PLUS] = ACTIONS(1571), + [anon_sym_DASH_DASH] = ACTIONS(1571), + [anon_sym_typeid] = ACTIONS(1569), + [anon_sym_LBRACE_PIPE] = ACTIONS(1571), + [anon_sym_void] = ACTIONS(1569), + [anon_sym_bool] = ACTIONS(1569), + [anon_sym_char] = ACTIONS(1569), + [anon_sym_ichar] = ACTIONS(1569), + [anon_sym_short] = ACTIONS(1569), + [anon_sym_ushort] = ACTIONS(1569), + [anon_sym_uint] = ACTIONS(1569), + [anon_sym_long] = ACTIONS(1569), + [anon_sym_ulong] = ACTIONS(1569), + [anon_sym_int128] = ACTIONS(1569), + [anon_sym_uint128] = ACTIONS(1569), + [anon_sym_float] = ACTIONS(1569), + [anon_sym_double] = ACTIONS(1569), + [anon_sym_float16] = ACTIONS(1569), + [anon_sym_bfloat16] = ACTIONS(1569), + [anon_sym_float128] = ACTIONS(1569), + [anon_sym_iptr] = ACTIONS(1569), + [anon_sym_uptr] = ACTIONS(1569), + [anon_sym_isz] = ACTIONS(1569), + [anon_sym_usz] = ACTIONS(1569), + [anon_sym_anyfault] = ACTIONS(1569), + [anon_sym_any] = ACTIONS(1569), + [anon_sym_DOLLARtypeof] = ACTIONS(1569), + [anon_sym_DOLLARtypefrom] = ACTIONS(1569), + [anon_sym_DOLLARvatype] = ACTIONS(1569), + [anon_sym_DOLLARevaltype] = ACTIONS(1569), + [sym_real_literal] = ACTIONS(1571), }, [479] = { [sym_line_comment] = STATE(479), [sym_doc_comment] = STATE(479), [sym_block_comment] = STATE(479), - [sym_ident] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1490), - [anon_sym_SQUOTE] = ACTIONS(1490), - [anon_sym_DQUOTE] = ACTIONS(1490), - [anon_sym_BQUOTE] = ACTIONS(1490), - [sym_bytes_literal] = ACTIONS(1490), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1488), - [sym_at_ident] = ACTIONS(1490), - [sym_hash_ident] = ACTIONS(1490), - [sym_type_ident] = ACTIONS(1490), - [sym_ct_type_ident] = ACTIONS(1490), - [sym_const_ident] = ACTIONS(1488), - [sym_builtin] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1490), - [anon_sym_AMP] = ACTIONS(1488), - [anon_sym_static] = ACTIONS(1488), - [anon_sym_tlocal] = ACTIONS(1488), - [anon_sym_SEMI] = ACTIONS(1490), - [anon_sym_fn] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_const] = ACTIONS(1488), - [anon_sym_var] = ACTIONS(1488), - [anon_sym_return] = ACTIONS(1488), - [anon_sym_continue] = ACTIONS(1488), - [anon_sym_break] = ACTIONS(1488), - [anon_sym_defer] = ACTIONS(1488), - [anon_sym_assert] = ACTIONS(1488), - [anon_sym_nextcase] = ACTIONS(1488), - [anon_sym_switch] = ACTIONS(1488), - [anon_sym_AMP_AMP] = ACTIONS(1490), - [anon_sym_if] = ACTIONS(1488), - [anon_sym_for] = ACTIONS(1488), - [anon_sym_foreach] = ACTIONS(1488), - [anon_sym_foreach_r] = ACTIONS(1488), - [anon_sym_while] = ACTIONS(1488), - [anon_sym_do] = ACTIONS(1488), - [anon_sym_int] = ACTIONS(1488), - [anon_sym_PLUS] = ACTIONS(1488), - [anon_sym_DASH] = ACTIONS(1488), - [anon_sym_STAR] = ACTIONS(1490), - [anon_sym_asm] = ACTIONS(1488), - [anon_sym_DOLLARassert] = ACTIONS(1488), - [anon_sym_DOLLARerror] = ACTIONS(1488), - [anon_sym_DOLLARecho] = ACTIONS(1488), - [anon_sym_DOLLARif] = ACTIONS(1488), - [anon_sym_DOLLARcase] = ACTIONS(1488), - [anon_sym_DOLLARdefault] = ACTIONS(1488), - [anon_sym_DOLLARswitch] = ACTIONS(1488), - [anon_sym_DOLLARendswitch] = ACTIONS(1488), - [anon_sym_DOLLARfor] = ACTIONS(1488), - [anon_sym_DOLLARforeach] = ACTIONS(1488), - [anon_sym_DOLLARalignof] = ACTIONS(1488), - [anon_sym_DOLLARextnameof] = ACTIONS(1488), - [anon_sym_DOLLARnameof] = ACTIONS(1488), - [anon_sym_DOLLARoffsetof] = ACTIONS(1488), - [anon_sym_DOLLARqnameof] = ACTIONS(1488), - [anon_sym_DOLLARvaconst] = ACTIONS(1488), - [anon_sym_DOLLARvaarg] = ACTIONS(1488), - [anon_sym_DOLLARvaref] = ACTIONS(1488), - [anon_sym_DOLLARvaexpr] = ACTIONS(1488), - [anon_sym_true] = ACTIONS(1488), - [anon_sym_false] = ACTIONS(1488), - [anon_sym_null] = ACTIONS(1488), - [anon_sym_DOLLARvacount] = ACTIONS(1488), - [anon_sym_DOLLARappend] = ACTIONS(1488), - [anon_sym_DOLLARconcat] = ACTIONS(1488), - [anon_sym_DOLLAReval] = ACTIONS(1488), - [anon_sym_DOLLARis_const] = ACTIONS(1488), - [anon_sym_DOLLARsizeof] = ACTIONS(1488), - [anon_sym_DOLLARstringify] = ACTIONS(1488), - [anon_sym_DOLLARand] = ACTIONS(1488), - [anon_sym_DOLLARdefined] = ACTIONS(1488), - [anon_sym_DOLLARembed] = ACTIONS(1488), - [anon_sym_DOLLARor] = ACTIONS(1488), - [anon_sym_DOLLARfeature] = ACTIONS(1488), - [anon_sym_DOLLARassignable] = ACTIONS(1488), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1490), - [anon_sym_DASH_DASH] = ACTIONS(1490), - [anon_sym_typeid] = ACTIONS(1488), - [anon_sym_LBRACE_PIPE] = ACTIONS(1490), - [anon_sym_void] = ACTIONS(1488), - [anon_sym_bool] = ACTIONS(1488), - [anon_sym_char] = ACTIONS(1488), - [anon_sym_ichar] = ACTIONS(1488), - [anon_sym_short] = ACTIONS(1488), - [anon_sym_ushort] = ACTIONS(1488), - [anon_sym_uint] = ACTIONS(1488), - [anon_sym_long] = ACTIONS(1488), - [anon_sym_ulong] = ACTIONS(1488), - [anon_sym_int128] = ACTIONS(1488), - [anon_sym_uint128] = ACTIONS(1488), - [anon_sym_float] = ACTIONS(1488), - [anon_sym_double] = ACTIONS(1488), - [anon_sym_float16] = ACTIONS(1488), - [anon_sym_bfloat16] = ACTIONS(1488), - [anon_sym_float128] = ACTIONS(1488), - [anon_sym_iptr] = ACTIONS(1488), - [anon_sym_uptr] = ACTIONS(1488), - [anon_sym_isz] = ACTIONS(1488), - [anon_sym_usz] = ACTIONS(1488), - [anon_sym_anyfault] = ACTIONS(1488), - [anon_sym_any] = ACTIONS(1488), - [anon_sym_DOLLARtypeof] = ACTIONS(1488), - [anon_sym_DOLLARtypefrom] = ACTIONS(1488), - [anon_sym_DOLLARvatype] = ACTIONS(1488), - [anon_sym_DOLLARevaltype] = ACTIONS(1488), - [sym_real_literal] = ACTIONS(1490), + [sym_ident] = ACTIONS(1605), + [sym_integer_literal] = ACTIONS(1607), + [anon_sym_SQUOTE] = ACTIONS(1607), + [anon_sym_DQUOTE] = ACTIONS(1607), + [anon_sym_BQUOTE] = ACTIONS(1607), + [sym_bytes_literal] = ACTIONS(1607), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1605), + [sym_at_ident] = ACTIONS(1607), + [sym_hash_ident] = ACTIONS(1607), + [sym_type_ident] = ACTIONS(1607), + [sym_ct_type_ident] = ACTIONS(1607), + [sym_const_ident] = ACTIONS(1605), + [sym_builtin] = ACTIONS(1607), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_static] = ACTIONS(1605), + [anon_sym_tlocal] = ACTIONS(1605), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_fn] = ACTIONS(1605), + [anon_sym_LBRACE] = ACTIONS(1605), + [anon_sym_const] = ACTIONS(1605), + [anon_sym_var] = ACTIONS(1605), + [anon_sym_return] = ACTIONS(1605), + [anon_sym_continue] = ACTIONS(1605), + [anon_sym_break] = ACTIONS(1605), + [anon_sym_defer] = ACTIONS(1605), + [anon_sym_assert] = ACTIONS(1605), + [anon_sym_nextcase] = ACTIONS(1605), + [anon_sym_switch] = ACTIONS(1605), + [anon_sym_AMP_AMP] = ACTIONS(1607), + [anon_sym_if] = ACTIONS(1605), + [anon_sym_for] = ACTIONS(1605), + [anon_sym_foreach] = ACTIONS(1605), + [anon_sym_foreach_r] = ACTIONS(1605), + [anon_sym_while] = ACTIONS(1605), + [anon_sym_do] = ACTIONS(1605), + [anon_sym_int] = ACTIONS(1605), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_asm] = ACTIONS(1605), + [anon_sym_DOLLARassert] = ACTIONS(1605), + [anon_sym_DOLLARerror] = ACTIONS(1605), + [anon_sym_DOLLARecho] = ACTIONS(1605), + [anon_sym_DOLLARif] = ACTIONS(1605), + [anon_sym_DOLLARcase] = ACTIONS(1605), + [anon_sym_DOLLARdefault] = ACTIONS(1605), + [anon_sym_DOLLARswitch] = ACTIONS(1605), + [anon_sym_DOLLARendswitch] = ACTIONS(1605), + [anon_sym_DOLLARfor] = ACTIONS(1605), + [anon_sym_DOLLARforeach] = ACTIONS(1605), + [anon_sym_DOLLARalignof] = ACTIONS(1605), + [anon_sym_DOLLARextnameof] = ACTIONS(1605), + [anon_sym_DOLLARnameof] = ACTIONS(1605), + [anon_sym_DOLLARoffsetof] = ACTIONS(1605), + [anon_sym_DOLLARqnameof] = ACTIONS(1605), + [anon_sym_DOLLARvaconst] = ACTIONS(1605), + [anon_sym_DOLLARvaarg] = ACTIONS(1605), + [anon_sym_DOLLARvaref] = ACTIONS(1605), + [anon_sym_DOLLARvaexpr] = ACTIONS(1605), + [anon_sym_true] = ACTIONS(1605), + [anon_sym_false] = ACTIONS(1605), + [anon_sym_null] = ACTIONS(1605), + [anon_sym_DOLLARvacount] = ACTIONS(1605), + [anon_sym_DOLLARappend] = ACTIONS(1605), + [anon_sym_DOLLARconcat] = ACTIONS(1605), + [anon_sym_DOLLAReval] = ACTIONS(1605), + [anon_sym_DOLLARis_const] = ACTIONS(1605), + [anon_sym_DOLLARsizeof] = ACTIONS(1605), + [anon_sym_DOLLARstringify] = ACTIONS(1605), + [anon_sym_DOLLARand] = ACTIONS(1605), + [anon_sym_DOLLARdefined] = ACTIONS(1605), + [anon_sym_DOLLARembed] = ACTIONS(1605), + [anon_sym_DOLLARor] = ACTIONS(1605), + [anon_sym_DOLLARfeature] = ACTIONS(1605), + [anon_sym_DOLLARassignable] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [anon_sym_TILDE] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1607), + [anon_sym_DASH_DASH] = ACTIONS(1607), + [anon_sym_typeid] = ACTIONS(1605), + [anon_sym_LBRACE_PIPE] = ACTIONS(1607), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_bool] = ACTIONS(1605), + [anon_sym_char] = ACTIONS(1605), + [anon_sym_ichar] = ACTIONS(1605), + [anon_sym_short] = ACTIONS(1605), + [anon_sym_ushort] = ACTIONS(1605), + [anon_sym_uint] = ACTIONS(1605), + [anon_sym_long] = ACTIONS(1605), + [anon_sym_ulong] = ACTIONS(1605), + [anon_sym_int128] = ACTIONS(1605), + [anon_sym_uint128] = ACTIONS(1605), + [anon_sym_float] = ACTIONS(1605), + [anon_sym_double] = ACTIONS(1605), + [anon_sym_float16] = ACTIONS(1605), + [anon_sym_bfloat16] = ACTIONS(1605), + [anon_sym_float128] = ACTIONS(1605), + [anon_sym_iptr] = ACTIONS(1605), + [anon_sym_uptr] = ACTIONS(1605), + [anon_sym_isz] = ACTIONS(1605), + [anon_sym_usz] = ACTIONS(1605), + [anon_sym_anyfault] = ACTIONS(1605), + [anon_sym_any] = ACTIONS(1605), + [anon_sym_DOLLARtypeof] = ACTIONS(1605), + [anon_sym_DOLLARtypefrom] = ACTIONS(1605), + [anon_sym_DOLLARvatype] = ACTIONS(1605), + [anon_sym_DOLLARevaltype] = ACTIONS(1605), + [sym_real_literal] = ACTIONS(1607), }, [480] = { [sym_line_comment] = STATE(480), [sym_doc_comment] = STATE(480), [sym_block_comment] = STATE(480), - [sym_ident] = ACTIONS(1580), - [sym_integer_literal] = ACTIONS(1582), - [anon_sym_SQUOTE] = ACTIONS(1582), - [anon_sym_DQUOTE] = ACTIONS(1582), - [anon_sym_BQUOTE] = ACTIONS(1582), - [sym_bytes_literal] = ACTIONS(1582), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1580), - [sym_at_ident] = ACTIONS(1582), - [sym_hash_ident] = ACTIONS(1582), - [sym_type_ident] = ACTIONS(1582), - [sym_ct_type_ident] = ACTIONS(1582), - [sym_const_ident] = ACTIONS(1580), - [sym_builtin] = ACTIONS(1582), - [anon_sym_LPAREN] = ACTIONS(1582), - [anon_sym_AMP] = ACTIONS(1580), - [anon_sym_static] = ACTIONS(1580), - [anon_sym_tlocal] = ACTIONS(1580), - [anon_sym_SEMI] = ACTIONS(1582), - [anon_sym_fn] = ACTIONS(1580), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_const] = ACTIONS(1580), - [anon_sym_var] = ACTIONS(1580), - [anon_sym_return] = ACTIONS(1580), - [anon_sym_continue] = ACTIONS(1580), - [anon_sym_break] = ACTIONS(1580), - [anon_sym_defer] = ACTIONS(1580), - [anon_sym_assert] = ACTIONS(1580), - [anon_sym_nextcase] = ACTIONS(1580), - [anon_sym_switch] = ACTIONS(1580), - [anon_sym_AMP_AMP] = ACTIONS(1582), - [anon_sym_if] = ACTIONS(1580), - [anon_sym_for] = ACTIONS(1580), - [anon_sym_foreach] = ACTIONS(1580), - [anon_sym_foreach_r] = ACTIONS(1580), - [anon_sym_while] = ACTIONS(1580), - [anon_sym_do] = ACTIONS(1580), - [anon_sym_int] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1580), - [anon_sym_DASH] = ACTIONS(1580), - [anon_sym_STAR] = ACTIONS(1582), - [anon_sym_asm] = ACTIONS(1580), - [anon_sym_DOLLARassert] = ACTIONS(1580), - [anon_sym_DOLLARerror] = ACTIONS(1580), - [anon_sym_DOLLARecho] = ACTIONS(1580), - [anon_sym_DOLLARif] = ACTIONS(1580), - [anon_sym_DOLLARcase] = ACTIONS(1580), - [anon_sym_DOLLARdefault] = ACTIONS(1580), - [anon_sym_DOLLARswitch] = ACTIONS(1580), - [anon_sym_DOLLARendswitch] = ACTIONS(1580), - [anon_sym_DOLLARfor] = ACTIONS(1580), - [anon_sym_DOLLARforeach] = ACTIONS(1580), - [anon_sym_DOLLARalignof] = ACTIONS(1580), - [anon_sym_DOLLARextnameof] = ACTIONS(1580), - [anon_sym_DOLLARnameof] = ACTIONS(1580), - [anon_sym_DOLLARoffsetof] = ACTIONS(1580), - [anon_sym_DOLLARqnameof] = ACTIONS(1580), - [anon_sym_DOLLARvaconst] = ACTIONS(1580), - [anon_sym_DOLLARvaarg] = ACTIONS(1580), - [anon_sym_DOLLARvaref] = ACTIONS(1580), - [anon_sym_DOLLARvaexpr] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1580), - [anon_sym_false] = ACTIONS(1580), - [anon_sym_null] = ACTIONS(1580), - [anon_sym_DOLLARvacount] = ACTIONS(1580), - [anon_sym_DOLLARappend] = ACTIONS(1580), - [anon_sym_DOLLARconcat] = ACTIONS(1580), - [anon_sym_DOLLAReval] = ACTIONS(1580), - [anon_sym_DOLLARis_const] = ACTIONS(1580), - [anon_sym_DOLLARsizeof] = ACTIONS(1580), - [anon_sym_DOLLARstringify] = ACTIONS(1580), - [anon_sym_DOLLARand] = ACTIONS(1580), - [anon_sym_DOLLARdefined] = ACTIONS(1580), - [anon_sym_DOLLARembed] = ACTIONS(1580), - [anon_sym_DOLLARor] = ACTIONS(1580), - [anon_sym_DOLLARfeature] = ACTIONS(1580), - [anon_sym_DOLLARassignable] = ACTIONS(1580), - [anon_sym_BANG] = ACTIONS(1582), - [anon_sym_TILDE] = ACTIONS(1582), - [anon_sym_PLUS_PLUS] = ACTIONS(1582), - [anon_sym_DASH_DASH] = ACTIONS(1582), - [anon_sym_typeid] = ACTIONS(1580), - [anon_sym_LBRACE_PIPE] = ACTIONS(1582), - [anon_sym_void] = ACTIONS(1580), - [anon_sym_bool] = ACTIONS(1580), - [anon_sym_char] = ACTIONS(1580), - [anon_sym_ichar] = ACTIONS(1580), - [anon_sym_short] = ACTIONS(1580), - [anon_sym_ushort] = ACTIONS(1580), - [anon_sym_uint] = ACTIONS(1580), - [anon_sym_long] = ACTIONS(1580), - [anon_sym_ulong] = ACTIONS(1580), - [anon_sym_int128] = ACTIONS(1580), - [anon_sym_uint128] = ACTIONS(1580), - [anon_sym_float] = ACTIONS(1580), - [anon_sym_double] = ACTIONS(1580), - [anon_sym_float16] = ACTIONS(1580), - [anon_sym_bfloat16] = ACTIONS(1580), - [anon_sym_float128] = ACTIONS(1580), - [anon_sym_iptr] = ACTIONS(1580), - [anon_sym_uptr] = ACTIONS(1580), - [anon_sym_isz] = ACTIONS(1580), - [anon_sym_usz] = ACTIONS(1580), - [anon_sym_anyfault] = ACTIONS(1580), - [anon_sym_any] = ACTIONS(1580), - [anon_sym_DOLLARtypeof] = ACTIONS(1580), - [anon_sym_DOLLARtypefrom] = ACTIONS(1580), - [anon_sym_DOLLARvatype] = ACTIONS(1580), - [anon_sym_DOLLARevaltype] = ACTIONS(1580), - [sym_real_literal] = ACTIONS(1582), + [sym_ident] = ACTIONS(1597), + [sym_integer_literal] = ACTIONS(1599), + [anon_sym_SQUOTE] = ACTIONS(1599), + [anon_sym_DQUOTE] = ACTIONS(1599), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_bytes_literal] = ACTIONS(1599), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1597), + [sym_at_ident] = ACTIONS(1599), + [sym_hash_ident] = ACTIONS(1599), + [sym_type_ident] = ACTIONS(1599), + [sym_ct_type_ident] = ACTIONS(1599), + [sym_const_ident] = ACTIONS(1597), + [sym_builtin] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_AMP] = ACTIONS(1597), + [anon_sym_static] = ACTIONS(1597), + [anon_sym_tlocal] = ACTIONS(1597), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_fn] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1597), + [anon_sym_const] = ACTIONS(1597), + [anon_sym_var] = ACTIONS(1597), + [anon_sym_return] = ACTIONS(1597), + [anon_sym_continue] = ACTIONS(1597), + [anon_sym_break] = ACTIONS(1597), + [anon_sym_defer] = ACTIONS(1597), + [anon_sym_assert] = ACTIONS(1597), + [anon_sym_nextcase] = ACTIONS(1597), + [anon_sym_switch] = ACTIONS(1597), + [anon_sym_AMP_AMP] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(1597), + [anon_sym_for] = ACTIONS(1597), + [anon_sym_foreach] = ACTIONS(1597), + [anon_sym_foreach_r] = ACTIONS(1597), + [anon_sym_while] = ACTIONS(1597), + [anon_sym_do] = ACTIONS(1597), + [anon_sym_int] = ACTIONS(1597), + [anon_sym_PLUS] = ACTIONS(1597), + [anon_sym_DASH] = ACTIONS(1597), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_asm] = ACTIONS(1597), + [anon_sym_DOLLARassert] = ACTIONS(1597), + [anon_sym_DOLLARerror] = ACTIONS(1597), + [anon_sym_DOLLARecho] = ACTIONS(1597), + [anon_sym_DOLLARif] = ACTIONS(1597), + [anon_sym_DOLLARcase] = ACTIONS(1597), + [anon_sym_DOLLARdefault] = ACTIONS(1597), + [anon_sym_DOLLARswitch] = ACTIONS(1597), + [anon_sym_DOLLARendswitch] = ACTIONS(1597), + [anon_sym_DOLLARfor] = ACTIONS(1597), + [anon_sym_DOLLARforeach] = ACTIONS(1597), + [anon_sym_DOLLARalignof] = ACTIONS(1597), + [anon_sym_DOLLARextnameof] = ACTIONS(1597), + [anon_sym_DOLLARnameof] = ACTIONS(1597), + [anon_sym_DOLLARoffsetof] = ACTIONS(1597), + [anon_sym_DOLLARqnameof] = ACTIONS(1597), + [anon_sym_DOLLARvaconst] = ACTIONS(1597), + [anon_sym_DOLLARvaarg] = ACTIONS(1597), + [anon_sym_DOLLARvaref] = ACTIONS(1597), + [anon_sym_DOLLARvaexpr] = ACTIONS(1597), + [anon_sym_true] = ACTIONS(1597), + [anon_sym_false] = ACTIONS(1597), + [anon_sym_null] = ACTIONS(1597), + [anon_sym_DOLLARvacount] = ACTIONS(1597), + [anon_sym_DOLLARappend] = ACTIONS(1597), + [anon_sym_DOLLARconcat] = ACTIONS(1597), + [anon_sym_DOLLAReval] = ACTIONS(1597), + [anon_sym_DOLLARis_const] = ACTIONS(1597), + [anon_sym_DOLLARsizeof] = ACTIONS(1597), + [anon_sym_DOLLARstringify] = ACTIONS(1597), + [anon_sym_DOLLARand] = ACTIONS(1597), + [anon_sym_DOLLARdefined] = ACTIONS(1597), + [anon_sym_DOLLARembed] = ACTIONS(1597), + [anon_sym_DOLLARor] = ACTIONS(1597), + [anon_sym_DOLLARfeature] = ACTIONS(1597), + [anon_sym_DOLLARassignable] = ACTIONS(1597), + [anon_sym_BANG] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_DASH_DASH] = ACTIONS(1599), + [anon_sym_typeid] = ACTIONS(1597), + [anon_sym_LBRACE_PIPE] = ACTIONS(1599), + [anon_sym_void] = ACTIONS(1597), + [anon_sym_bool] = ACTIONS(1597), + [anon_sym_char] = ACTIONS(1597), + [anon_sym_ichar] = ACTIONS(1597), + [anon_sym_short] = ACTIONS(1597), + [anon_sym_ushort] = ACTIONS(1597), + [anon_sym_uint] = ACTIONS(1597), + [anon_sym_long] = ACTIONS(1597), + [anon_sym_ulong] = ACTIONS(1597), + [anon_sym_int128] = ACTIONS(1597), + [anon_sym_uint128] = ACTIONS(1597), + [anon_sym_float] = ACTIONS(1597), + [anon_sym_double] = ACTIONS(1597), + [anon_sym_float16] = ACTIONS(1597), + [anon_sym_bfloat16] = ACTIONS(1597), + [anon_sym_float128] = ACTIONS(1597), + [anon_sym_iptr] = ACTIONS(1597), + [anon_sym_uptr] = ACTIONS(1597), + [anon_sym_isz] = ACTIONS(1597), + [anon_sym_usz] = ACTIONS(1597), + [anon_sym_anyfault] = ACTIONS(1597), + [anon_sym_any] = ACTIONS(1597), + [anon_sym_DOLLARtypeof] = ACTIONS(1597), + [anon_sym_DOLLARtypefrom] = ACTIONS(1597), + [anon_sym_DOLLARvatype] = ACTIONS(1597), + [anon_sym_DOLLARevaltype] = ACTIONS(1597), + [sym_real_literal] = ACTIONS(1599), }, [481] = { [sym_line_comment] = STATE(481), [sym_doc_comment] = STATE(481), [sym_block_comment] = STATE(481), - [sym_ident] = ACTIONS(1552), - [sym_integer_literal] = ACTIONS(1554), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_DQUOTE] = ACTIONS(1554), - [anon_sym_BQUOTE] = ACTIONS(1554), - [sym_bytes_literal] = ACTIONS(1554), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1552), - [sym_at_ident] = ACTIONS(1554), - [sym_hash_ident] = ACTIONS(1554), - [sym_type_ident] = ACTIONS(1554), - [sym_ct_type_ident] = ACTIONS(1554), - [sym_const_ident] = ACTIONS(1552), - [sym_builtin] = ACTIONS(1554), - [anon_sym_LPAREN] = ACTIONS(1554), - [anon_sym_AMP] = ACTIONS(1552), - [anon_sym_static] = ACTIONS(1552), - [anon_sym_tlocal] = ACTIONS(1552), - [anon_sym_SEMI] = ACTIONS(1554), - [anon_sym_fn] = ACTIONS(1552), - [anon_sym_LBRACE] = ACTIONS(1552), - [anon_sym_const] = ACTIONS(1552), - [anon_sym_var] = ACTIONS(1552), - [anon_sym_return] = ACTIONS(1552), - [anon_sym_continue] = ACTIONS(1552), - [anon_sym_break] = ACTIONS(1552), - [anon_sym_defer] = ACTIONS(1552), - [anon_sym_assert] = ACTIONS(1552), - [anon_sym_nextcase] = ACTIONS(1552), - [anon_sym_switch] = ACTIONS(1552), - [anon_sym_AMP_AMP] = ACTIONS(1554), - [anon_sym_if] = ACTIONS(1552), - [anon_sym_for] = ACTIONS(1552), - [anon_sym_foreach] = ACTIONS(1552), - [anon_sym_foreach_r] = ACTIONS(1552), - [anon_sym_while] = ACTIONS(1552), - [anon_sym_do] = ACTIONS(1552), - [anon_sym_int] = ACTIONS(1552), - [anon_sym_PLUS] = ACTIONS(1552), - [anon_sym_DASH] = ACTIONS(1552), - [anon_sym_STAR] = ACTIONS(1554), - [anon_sym_asm] = ACTIONS(1552), - [anon_sym_DOLLARassert] = ACTIONS(1552), - [anon_sym_DOLLARerror] = ACTIONS(1552), - [anon_sym_DOLLARecho] = ACTIONS(1552), - [anon_sym_DOLLARif] = ACTIONS(1552), - [anon_sym_DOLLARcase] = ACTIONS(1552), - [anon_sym_DOLLARdefault] = ACTIONS(1552), - [anon_sym_DOLLARswitch] = ACTIONS(1552), - [anon_sym_DOLLARendswitch] = ACTIONS(1552), - [anon_sym_DOLLARfor] = ACTIONS(1552), - [anon_sym_DOLLARforeach] = ACTIONS(1552), - [anon_sym_DOLLARalignof] = ACTIONS(1552), - [anon_sym_DOLLARextnameof] = ACTIONS(1552), - [anon_sym_DOLLARnameof] = ACTIONS(1552), - [anon_sym_DOLLARoffsetof] = ACTIONS(1552), - [anon_sym_DOLLARqnameof] = ACTIONS(1552), - [anon_sym_DOLLARvaconst] = ACTIONS(1552), - [anon_sym_DOLLARvaarg] = ACTIONS(1552), - [anon_sym_DOLLARvaref] = ACTIONS(1552), - [anon_sym_DOLLARvaexpr] = ACTIONS(1552), - [anon_sym_true] = ACTIONS(1552), - [anon_sym_false] = ACTIONS(1552), - [anon_sym_null] = ACTIONS(1552), - [anon_sym_DOLLARvacount] = ACTIONS(1552), - [anon_sym_DOLLARappend] = ACTIONS(1552), - [anon_sym_DOLLARconcat] = ACTIONS(1552), - [anon_sym_DOLLAReval] = ACTIONS(1552), - [anon_sym_DOLLARis_const] = ACTIONS(1552), - [anon_sym_DOLLARsizeof] = ACTIONS(1552), - [anon_sym_DOLLARstringify] = ACTIONS(1552), - [anon_sym_DOLLARand] = ACTIONS(1552), - [anon_sym_DOLLARdefined] = ACTIONS(1552), - [anon_sym_DOLLARembed] = ACTIONS(1552), - [anon_sym_DOLLARor] = ACTIONS(1552), - [anon_sym_DOLLARfeature] = ACTIONS(1552), - [anon_sym_DOLLARassignable] = ACTIONS(1552), - [anon_sym_BANG] = ACTIONS(1554), - [anon_sym_TILDE] = ACTIONS(1554), - [anon_sym_PLUS_PLUS] = ACTIONS(1554), - [anon_sym_DASH_DASH] = ACTIONS(1554), - [anon_sym_typeid] = ACTIONS(1552), - [anon_sym_LBRACE_PIPE] = ACTIONS(1554), - [anon_sym_void] = ACTIONS(1552), - [anon_sym_bool] = ACTIONS(1552), - [anon_sym_char] = ACTIONS(1552), - [anon_sym_ichar] = ACTIONS(1552), - [anon_sym_short] = ACTIONS(1552), - [anon_sym_ushort] = ACTIONS(1552), - [anon_sym_uint] = ACTIONS(1552), - [anon_sym_long] = ACTIONS(1552), - [anon_sym_ulong] = ACTIONS(1552), - [anon_sym_int128] = ACTIONS(1552), - [anon_sym_uint128] = ACTIONS(1552), - [anon_sym_float] = ACTIONS(1552), - [anon_sym_double] = ACTIONS(1552), - [anon_sym_float16] = ACTIONS(1552), - [anon_sym_bfloat16] = ACTIONS(1552), - [anon_sym_float128] = ACTIONS(1552), - [anon_sym_iptr] = ACTIONS(1552), - [anon_sym_uptr] = ACTIONS(1552), - [anon_sym_isz] = ACTIONS(1552), - [anon_sym_usz] = ACTIONS(1552), - [anon_sym_anyfault] = ACTIONS(1552), - [anon_sym_any] = ACTIONS(1552), - [anon_sym_DOLLARtypeof] = ACTIONS(1552), - [anon_sym_DOLLARtypefrom] = ACTIONS(1552), - [anon_sym_DOLLARvatype] = ACTIONS(1552), - [anon_sym_DOLLARevaltype] = ACTIONS(1552), - [sym_real_literal] = ACTIONS(1554), + [sym_ident] = ACTIONS(1601), + [sym_integer_literal] = ACTIONS(1603), + [anon_sym_SQUOTE] = ACTIONS(1603), + [anon_sym_DQUOTE] = ACTIONS(1603), + [anon_sym_BQUOTE] = ACTIONS(1603), + [sym_bytes_literal] = ACTIONS(1603), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1601), + [sym_at_ident] = ACTIONS(1603), + [sym_hash_ident] = ACTIONS(1603), + [sym_type_ident] = ACTIONS(1603), + [sym_ct_type_ident] = ACTIONS(1603), + [sym_const_ident] = ACTIONS(1601), + [sym_builtin] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_static] = ACTIONS(1601), + [anon_sym_tlocal] = ACTIONS(1601), + [anon_sym_SEMI] = ACTIONS(1603), + [anon_sym_fn] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(1601), + [anon_sym_const] = ACTIONS(1601), + [anon_sym_var] = ACTIONS(1601), + [anon_sym_return] = ACTIONS(1601), + [anon_sym_continue] = ACTIONS(1601), + [anon_sym_break] = ACTIONS(1601), + [anon_sym_defer] = ACTIONS(1601), + [anon_sym_assert] = ACTIONS(1601), + [anon_sym_nextcase] = ACTIONS(1601), + [anon_sym_switch] = ACTIONS(1601), + [anon_sym_AMP_AMP] = ACTIONS(1603), + [anon_sym_if] = ACTIONS(1601), + [anon_sym_for] = ACTIONS(1601), + [anon_sym_foreach] = ACTIONS(1601), + [anon_sym_foreach_r] = ACTIONS(1601), + [anon_sym_while] = ACTIONS(1601), + [anon_sym_do] = ACTIONS(1601), + [anon_sym_int] = ACTIONS(1601), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_asm] = ACTIONS(1601), + [anon_sym_DOLLARassert] = ACTIONS(1601), + [anon_sym_DOLLARerror] = ACTIONS(1601), + [anon_sym_DOLLARecho] = ACTIONS(1601), + [anon_sym_DOLLARif] = ACTIONS(1601), + [anon_sym_DOLLARcase] = ACTIONS(1601), + [anon_sym_DOLLARdefault] = ACTIONS(1601), + [anon_sym_DOLLARswitch] = ACTIONS(1601), + [anon_sym_DOLLARendswitch] = ACTIONS(1601), + [anon_sym_DOLLARfor] = ACTIONS(1601), + [anon_sym_DOLLARforeach] = ACTIONS(1601), + [anon_sym_DOLLARalignof] = ACTIONS(1601), + [anon_sym_DOLLARextnameof] = ACTIONS(1601), + [anon_sym_DOLLARnameof] = ACTIONS(1601), + [anon_sym_DOLLARoffsetof] = ACTIONS(1601), + [anon_sym_DOLLARqnameof] = ACTIONS(1601), + [anon_sym_DOLLARvaconst] = ACTIONS(1601), + [anon_sym_DOLLARvaarg] = ACTIONS(1601), + [anon_sym_DOLLARvaref] = ACTIONS(1601), + [anon_sym_DOLLARvaexpr] = ACTIONS(1601), + [anon_sym_true] = ACTIONS(1601), + [anon_sym_false] = ACTIONS(1601), + [anon_sym_null] = ACTIONS(1601), + [anon_sym_DOLLARvacount] = ACTIONS(1601), + [anon_sym_DOLLARappend] = ACTIONS(1601), + [anon_sym_DOLLARconcat] = ACTIONS(1601), + [anon_sym_DOLLAReval] = ACTIONS(1601), + [anon_sym_DOLLARis_const] = ACTIONS(1601), + [anon_sym_DOLLARsizeof] = ACTIONS(1601), + [anon_sym_DOLLARstringify] = ACTIONS(1601), + [anon_sym_DOLLARand] = ACTIONS(1601), + [anon_sym_DOLLARdefined] = ACTIONS(1601), + [anon_sym_DOLLARembed] = ACTIONS(1601), + [anon_sym_DOLLARor] = ACTIONS(1601), + [anon_sym_DOLLARfeature] = ACTIONS(1601), + [anon_sym_DOLLARassignable] = ACTIONS(1601), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1603), + [anon_sym_DASH_DASH] = ACTIONS(1603), + [anon_sym_typeid] = ACTIONS(1601), + [anon_sym_LBRACE_PIPE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1601), + [anon_sym_bool] = ACTIONS(1601), + [anon_sym_char] = ACTIONS(1601), + [anon_sym_ichar] = ACTIONS(1601), + [anon_sym_short] = ACTIONS(1601), + [anon_sym_ushort] = ACTIONS(1601), + [anon_sym_uint] = ACTIONS(1601), + [anon_sym_long] = ACTIONS(1601), + [anon_sym_ulong] = ACTIONS(1601), + [anon_sym_int128] = ACTIONS(1601), + [anon_sym_uint128] = ACTIONS(1601), + [anon_sym_float] = ACTIONS(1601), + [anon_sym_double] = ACTIONS(1601), + [anon_sym_float16] = ACTIONS(1601), + [anon_sym_bfloat16] = ACTIONS(1601), + [anon_sym_float128] = ACTIONS(1601), + [anon_sym_iptr] = ACTIONS(1601), + [anon_sym_uptr] = ACTIONS(1601), + [anon_sym_isz] = ACTIONS(1601), + [anon_sym_usz] = ACTIONS(1601), + [anon_sym_anyfault] = ACTIONS(1601), + [anon_sym_any] = ACTIONS(1601), + [anon_sym_DOLLARtypeof] = ACTIONS(1601), + [anon_sym_DOLLARtypefrom] = ACTIONS(1601), + [anon_sym_DOLLARvatype] = ACTIONS(1601), + [anon_sym_DOLLARevaltype] = ACTIONS(1601), + [sym_real_literal] = ACTIONS(1603), }, [482] = { [sym_line_comment] = STATE(482), [sym_doc_comment] = STATE(482), [sym_block_comment] = STATE(482), - [sym_ident] = ACTIONS(1484), - [sym_integer_literal] = ACTIONS(1486), - [anon_sym_SQUOTE] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(1486), - [anon_sym_BQUOTE] = ACTIONS(1486), - [sym_bytes_literal] = ACTIONS(1486), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1484), - [sym_at_ident] = ACTIONS(1486), - [sym_hash_ident] = ACTIONS(1486), - [sym_type_ident] = ACTIONS(1486), - [sym_ct_type_ident] = ACTIONS(1486), - [sym_const_ident] = ACTIONS(1484), - [sym_builtin] = ACTIONS(1486), - [anon_sym_LPAREN] = ACTIONS(1486), - [anon_sym_AMP] = ACTIONS(1484), - [anon_sym_static] = ACTIONS(1484), - [anon_sym_tlocal] = ACTIONS(1484), - [anon_sym_SEMI] = ACTIONS(1486), - [anon_sym_fn] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1484), - [anon_sym_const] = ACTIONS(1484), - [anon_sym_var] = ACTIONS(1484), - [anon_sym_return] = ACTIONS(1484), - [anon_sym_continue] = ACTIONS(1484), - [anon_sym_break] = ACTIONS(1484), - [anon_sym_defer] = ACTIONS(1484), - [anon_sym_assert] = ACTIONS(1484), - [anon_sym_nextcase] = ACTIONS(1484), - [anon_sym_switch] = ACTIONS(1484), - [anon_sym_AMP_AMP] = ACTIONS(1486), - [anon_sym_if] = ACTIONS(1484), - [anon_sym_for] = ACTIONS(1484), - [anon_sym_foreach] = ACTIONS(1484), - [anon_sym_foreach_r] = ACTIONS(1484), - [anon_sym_while] = ACTIONS(1484), - [anon_sym_do] = ACTIONS(1484), - [anon_sym_int] = ACTIONS(1484), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_DASH] = ACTIONS(1484), - [anon_sym_STAR] = ACTIONS(1486), - [anon_sym_asm] = ACTIONS(1484), - [anon_sym_DOLLARassert] = ACTIONS(1484), - [anon_sym_DOLLARerror] = ACTIONS(1484), - [anon_sym_DOLLARecho] = ACTIONS(1484), - [anon_sym_DOLLARif] = ACTIONS(1484), - [anon_sym_DOLLARcase] = ACTIONS(1484), - [anon_sym_DOLLARdefault] = ACTIONS(1484), - [anon_sym_DOLLARswitch] = ACTIONS(1484), - [anon_sym_DOLLARendswitch] = ACTIONS(1484), - [anon_sym_DOLLARfor] = ACTIONS(1484), - [anon_sym_DOLLARforeach] = ACTIONS(1484), - [anon_sym_DOLLARalignof] = ACTIONS(1484), - [anon_sym_DOLLARextnameof] = ACTIONS(1484), - [anon_sym_DOLLARnameof] = ACTIONS(1484), - [anon_sym_DOLLARoffsetof] = ACTIONS(1484), - [anon_sym_DOLLARqnameof] = ACTIONS(1484), - [anon_sym_DOLLARvaconst] = ACTIONS(1484), - [anon_sym_DOLLARvaarg] = ACTIONS(1484), - [anon_sym_DOLLARvaref] = ACTIONS(1484), - [anon_sym_DOLLARvaexpr] = ACTIONS(1484), - [anon_sym_true] = ACTIONS(1484), - [anon_sym_false] = ACTIONS(1484), - [anon_sym_null] = ACTIONS(1484), - [anon_sym_DOLLARvacount] = ACTIONS(1484), - [anon_sym_DOLLARappend] = ACTIONS(1484), - [anon_sym_DOLLARconcat] = ACTIONS(1484), - [anon_sym_DOLLAReval] = ACTIONS(1484), - [anon_sym_DOLLARis_const] = ACTIONS(1484), - [anon_sym_DOLLARsizeof] = ACTIONS(1484), - [anon_sym_DOLLARstringify] = ACTIONS(1484), - [anon_sym_DOLLARand] = ACTIONS(1484), - [anon_sym_DOLLARdefined] = ACTIONS(1484), - [anon_sym_DOLLARembed] = ACTIONS(1484), - [anon_sym_DOLLARor] = ACTIONS(1484), - [anon_sym_DOLLARfeature] = ACTIONS(1484), - [anon_sym_DOLLARassignable] = ACTIONS(1484), - [anon_sym_BANG] = ACTIONS(1486), - [anon_sym_TILDE] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_typeid] = ACTIONS(1484), - [anon_sym_LBRACE_PIPE] = ACTIONS(1486), - [anon_sym_void] = ACTIONS(1484), - [anon_sym_bool] = ACTIONS(1484), - [anon_sym_char] = ACTIONS(1484), - [anon_sym_ichar] = ACTIONS(1484), - [anon_sym_short] = ACTIONS(1484), - [anon_sym_ushort] = ACTIONS(1484), - [anon_sym_uint] = ACTIONS(1484), - [anon_sym_long] = ACTIONS(1484), - [anon_sym_ulong] = ACTIONS(1484), - [anon_sym_int128] = ACTIONS(1484), - [anon_sym_uint128] = ACTIONS(1484), - [anon_sym_float] = ACTIONS(1484), - [anon_sym_double] = ACTIONS(1484), - [anon_sym_float16] = ACTIONS(1484), - [anon_sym_bfloat16] = ACTIONS(1484), - [anon_sym_float128] = ACTIONS(1484), - [anon_sym_iptr] = ACTIONS(1484), - [anon_sym_uptr] = ACTIONS(1484), - [anon_sym_isz] = ACTIONS(1484), - [anon_sym_usz] = ACTIONS(1484), - [anon_sym_anyfault] = ACTIONS(1484), - [anon_sym_any] = ACTIONS(1484), - [anon_sym_DOLLARtypeof] = ACTIONS(1484), - [anon_sym_DOLLARtypefrom] = ACTIONS(1484), - [anon_sym_DOLLARvatype] = ACTIONS(1484), - [anon_sym_DOLLARevaltype] = ACTIONS(1484), - [sym_real_literal] = ACTIONS(1486), + [sym_ident] = ACTIONS(1613), + [sym_integer_literal] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(1615), + [anon_sym_DQUOTE] = ACTIONS(1615), + [anon_sym_BQUOTE] = ACTIONS(1615), + [sym_bytes_literal] = ACTIONS(1615), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1613), + [sym_at_ident] = ACTIONS(1615), + [sym_hash_ident] = ACTIONS(1615), + [sym_type_ident] = ACTIONS(1615), + [sym_ct_type_ident] = ACTIONS(1615), + [sym_const_ident] = ACTIONS(1613), + [sym_builtin] = ACTIONS(1615), + [anon_sym_LPAREN] = ACTIONS(1615), + [anon_sym_AMP] = ACTIONS(1613), + [anon_sym_static] = ACTIONS(1613), + [anon_sym_tlocal] = ACTIONS(1613), + [anon_sym_SEMI] = ACTIONS(1615), + [anon_sym_fn] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(1613), + [anon_sym_const] = ACTIONS(1613), + [anon_sym_var] = ACTIONS(1613), + [anon_sym_return] = ACTIONS(1613), + [anon_sym_continue] = ACTIONS(1613), + [anon_sym_break] = ACTIONS(1613), + [anon_sym_defer] = ACTIONS(1613), + [anon_sym_assert] = ACTIONS(1613), + [anon_sym_nextcase] = ACTIONS(1613), + [anon_sym_switch] = ACTIONS(1613), + [anon_sym_AMP_AMP] = ACTIONS(1615), + [anon_sym_if] = ACTIONS(1613), + [anon_sym_for] = ACTIONS(1613), + [anon_sym_foreach] = ACTIONS(1613), + [anon_sym_foreach_r] = ACTIONS(1613), + [anon_sym_while] = ACTIONS(1613), + [anon_sym_do] = ACTIONS(1613), + [anon_sym_int] = ACTIONS(1613), + [anon_sym_PLUS] = ACTIONS(1613), + [anon_sym_DASH] = ACTIONS(1613), + [anon_sym_STAR] = ACTIONS(1615), + [anon_sym_asm] = ACTIONS(1613), + [anon_sym_DOLLARassert] = ACTIONS(1613), + [anon_sym_DOLLARerror] = ACTIONS(1613), + [anon_sym_DOLLARecho] = ACTIONS(1613), + [anon_sym_DOLLARif] = ACTIONS(1613), + [anon_sym_DOLLARcase] = ACTIONS(1613), + [anon_sym_DOLLARdefault] = ACTIONS(1613), + [anon_sym_DOLLARswitch] = ACTIONS(1613), + [anon_sym_DOLLARendswitch] = ACTIONS(1613), + [anon_sym_DOLLARfor] = ACTIONS(1613), + [anon_sym_DOLLARforeach] = ACTIONS(1613), + [anon_sym_DOLLARalignof] = ACTIONS(1613), + [anon_sym_DOLLARextnameof] = ACTIONS(1613), + [anon_sym_DOLLARnameof] = ACTIONS(1613), + [anon_sym_DOLLARoffsetof] = ACTIONS(1613), + [anon_sym_DOLLARqnameof] = ACTIONS(1613), + [anon_sym_DOLLARvaconst] = ACTIONS(1613), + [anon_sym_DOLLARvaarg] = ACTIONS(1613), + [anon_sym_DOLLARvaref] = ACTIONS(1613), + [anon_sym_DOLLARvaexpr] = ACTIONS(1613), + [anon_sym_true] = ACTIONS(1613), + [anon_sym_false] = ACTIONS(1613), + [anon_sym_null] = ACTIONS(1613), + [anon_sym_DOLLARvacount] = ACTIONS(1613), + [anon_sym_DOLLARappend] = ACTIONS(1613), + [anon_sym_DOLLARconcat] = ACTIONS(1613), + [anon_sym_DOLLAReval] = ACTIONS(1613), + [anon_sym_DOLLARis_const] = ACTIONS(1613), + [anon_sym_DOLLARsizeof] = ACTIONS(1613), + [anon_sym_DOLLARstringify] = ACTIONS(1613), + [anon_sym_DOLLARand] = ACTIONS(1613), + [anon_sym_DOLLARdefined] = ACTIONS(1613), + [anon_sym_DOLLARembed] = ACTIONS(1613), + [anon_sym_DOLLARor] = ACTIONS(1613), + [anon_sym_DOLLARfeature] = ACTIONS(1613), + [anon_sym_DOLLARassignable] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1615), + [anon_sym_TILDE] = ACTIONS(1615), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), + [anon_sym_typeid] = ACTIONS(1613), + [anon_sym_LBRACE_PIPE] = ACTIONS(1615), + [anon_sym_void] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_ichar] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [anon_sym_ushort] = ACTIONS(1613), + [anon_sym_uint] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_ulong] = ACTIONS(1613), + [anon_sym_int128] = ACTIONS(1613), + [anon_sym_uint128] = ACTIONS(1613), + [anon_sym_float] = ACTIONS(1613), + [anon_sym_double] = ACTIONS(1613), + [anon_sym_float16] = ACTIONS(1613), + [anon_sym_bfloat16] = ACTIONS(1613), + [anon_sym_float128] = ACTIONS(1613), + [anon_sym_iptr] = ACTIONS(1613), + [anon_sym_uptr] = ACTIONS(1613), + [anon_sym_isz] = ACTIONS(1613), + [anon_sym_usz] = ACTIONS(1613), + [anon_sym_anyfault] = ACTIONS(1613), + [anon_sym_any] = ACTIONS(1613), + [anon_sym_DOLLARtypeof] = ACTIONS(1613), + [anon_sym_DOLLARtypefrom] = ACTIONS(1613), + [anon_sym_DOLLARvatype] = ACTIONS(1613), + [anon_sym_DOLLARevaltype] = ACTIONS(1613), + [sym_real_literal] = ACTIONS(1615), }, [483] = { [sym_line_comment] = STATE(483), [sym_doc_comment] = STATE(483), [sym_block_comment] = STATE(483), - [sym_ident] = ACTIONS(1432), - [sym_integer_literal] = ACTIONS(1434), - [anon_sym_SQUOTE] = ACTIONS(1434), - [anon_sym_DQUOTE] = ACTIONS(1434), - [anon_sym_BQUOTE] = ACTIONS(1434), - [sym_bytes_literal] = ACTIONS(1434), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1432), - [sym_at_ident] = ACTIONS(1434), - [sym_hash_ident] = ACTIONS(1434), - [sym_type_ident] = ACTIONS(1434), - [sym_ct_type_ident] = ACTIONS(1434), - [sym_const_ident] = ACTIONS(1432), - [sym_builtin] = ACTIONS(1434), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_AMP] = ACTIONS(1432), - [anon_sym_static] = ACTIONS(1432), - [anon_sym_tlocal] = ACTIONS(1432), - [anon_sym_SEMI] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1432), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_const] = ACTIONS(1432), - [anon_sym_var] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_continue] = ACTIONS(1432), - [anon_sym_break] = ACTIONS(1432), - [anon_sym_defer] = ACTIONS(1432), - [anon_sym_assert] = ACTIONS(1432), - [anon_sym_nextcase] = ACTIONS(1432), - [anon_sym_switch] = ACTIONS(1432), - [anon_sym_AMP_AMP] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_foreach] = ACTIONS(1432), - [anon_sym_foreach_r] = ACTIONS(1432), - [anon_sym_while] = ACTIONS(1432), - [anon_sym_do] = ACTIONS(1432), - [anon_sym_int] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1432), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_STAR] = ACTIONS(1434), - [anon_sym_asm] = ACTIONS(1432), - [anon_sym_DOLLARassert] = ACTIONS(1432), - [anon_sym_DOLLARerror] = ACTIONS(1432), - [anon_sym_DOLLARecho] = ACTIONS(1432), - [anon_sym_DOLLARif] = ACTIONS(1432), - [anon_sym_DOLLARcase] = ACTIONS(1432), - [anon_sym_DOLLARdefault] = ACTIONS(1432), - [anon_sym_DOLLARswitch] = ACTIONS(1432), - [anon_sym_DOLLARendswitch] = ACTIONS(1432), - [anon_sym_DOLLARfor] = ACTIONS(1432), - [anon_sym_DOLLARforeach] = ACTIONS(1432), - [anon_sym_DOLLARalignof] = ACTIONS(1432), - [anon_sym_DOLLARextnameof] = ACTIONS(1432), - [anon_sym_DOLLARnameof] = ACTIONS(1432), - [anon_sym_DOLLARoffsetof] = ACTIONS(1432), - [anon_sym_DOLLARqnameof] = ACTIONS(1432), - [anon_sym_DOLLARvaconst] = ACTIONS(1432), - [anon_sym_DOLLARvaarg] = ACTIONS(1432), - [anon_sym_DOLLARvaref] = ACTIONS(1432), - [anon_sym_DOLLARvaexpr] = ACTIONS(1432), - [anon_sym_true] = ACTIONS(1432), - [anon_sym_false] = ACTIONS(1432), - [anon_sym_null] = ACTIONS(1432), - [anon_sym_DOLLARvacount] = ACTIONS(1432), - [anon_sym_DOLLARappend] = ACTIONS(1432), - [anon_sym_DOLLARconcat] = ACTIONS(1432), - [anon_sym_DOLLAReval] = ACTIONS(1432), - [anon_sym_DOLLARis_const] = ACTIONS(1432), - [anon_sym_DOLLARsizeof] = ACTIONS(1432), - [anon_sym_DOLLARstringify] = ACTIONS(1432), - [anon_sym_DOLLARand] = ACTIONS(1432), - [anon_sym_DOLLARdefined] = ACTIONS(1432), - [anon_sym_DOLLARembed] = ACTIONS(1432), - [anon_sym_DOLLARor] = ACTIONS(1432), - [anon_sym_DOLLARfeature] = ACTIONS(1432), - [anon_sym_DOLLARassignable] = ACTIONS(1432), - [anon_sym_BANG] = ACTIONS(1434), - [anon_sym_TILDE] = ACTIONS(1434), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), - [anon_sym_typeid] = ACTIONS(1432), - [anon_sym_LBRACE_PIPE] = ACTIONS(1434), - [anon_sym_void] = ACTIONS(1432), - [anon_sym_bool] = ACTIONS(1432), - [anon_sym_char] = ACTIONS(1432), - [anon_sym_ichar] = ACTIONS(1432), - [anon_sym_short] = ACTIONS(1432), - [anon_sym_ushort] = ACTIONS(1432), - [anon_sym_uint] = ACTIONS(1432), - [anon_sym_long] = ACTIONS(1432), - [anon_sym_ulong] = ACTIONS(1432), - [anon_sym_int128] = ACTIONS(1432), - [anon_sym_uint128] = ACTIONS(1432), - [anon_sym_float] = ACTIONS(1432), - [anon_sym_double] = ACTIONS(1432), - [anon_sym_float16] = ACTIONS(1432), - [anon_sym_bfloat16] = ACTIONS(1432), - [anon_sym_float128] = ACTIONS(1432), - [anon_sym_iptr] = ACTIONS(1432), - [anon_sym_uptr] = ACTIONS(1432), - [anon_sym_isz] = ACTIONS(1432), - [anon_sym_usz] = ACTIONS(1432), - [anon_sym_anyfault] = ACTIONS(1432), - [anon_sym_any] = ACTIONS(1432), - [anon_sym_DOLLARtypeof] = ACTIONS(1432), - [anon_sym_DOLLARtypefrom] = ACTIONS(1432), - [anon_sym_DOLLARvatype] = ACTIONS(1432), - [anon_sym_DOLLARevaltype] = ACTIONS(1432), - [sym_real_literal] = ACTIONS(1434), + [sym_ident] = ACTIONS(1549), + [sym_integer_literal] = ACTIONS(1551), + [anon_sym_SQUOTE] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [anon_sym_BQUOTE] = ACTIONS(1551), + [sym_bytes_literal] = ACTIONS(1551), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1549), + [sym_at_ident] = ACTIONS(1551), + [sym_hash_ident] = ACTIONS(1551), + [sym_type_ident] = ACTIONS(1551), + [sym_ct_type_ident] = ACTIONS(1551), + [sym_const_ident] = ACTIONS(1549), + [sym_builtin] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_AMP] = ACTIONS(1549), + [anon_sym_static] = ACTIONS(1549), + [anon_sym_tlocal] = ACTIONS(1549), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_fn] = ACTIONS(1549), + [anon_sym_LBRACE] = ACTIONS(1549), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_var] = ACTIONS(1549), + [anon_sym_return] = ACTIONS(1549), + [anon_sym_continue] = ACTIONS(1549), + [anon_sym_break] = ACTIONS(1549), + [anon_sym_defer] = ACTIONS(1549), + [anon_sym_assert] = ACTIONS(1549), + [anon_sym_nextcase] = ACTIONS(1549), + [anon_sym_switch] = ACTIONS(1549), + [anon_sym_AMP_AMP] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1549), + [anon_sym_for] = ACTIONS(1549), + [anon_sym_foreach] = ACTIONS(1549), + [anon_sym_foreach_r] = ACTIONS(1549), + [anon_sym_while] = ACTIONS(1549), + [anon_sym_do] = ACTIONS(1549), + [anon_sym_int] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1551), + [anon_sym_asm] = ACTIONS(1549), + [anon_sym_DOLLARassert] = ACTIONS(1549), + [anon_sym_DOLLARerror] = ACTIONS(1549), + [anon_sym_DOLLARecho] = ACTIONS(1549), + [anon_sym_DOLLARif] = ACTIONS(1549), + [anon_sym_DOLLARcase] = ACTIONS(1549), + [anon_sym_DOLLARdefault] = ACTIONS(1549), + [anon_sym_DOLLARswitch] = ACTIONS(1549), + [anon_sym_DOLLARendswitch] = ACTIONS(1549), + [anon_sym_DOLLARfor] = ACTIONS(1549), + [anon_sym_DOLLARforeach] = ACTIONS(1549), + [anon_sym_DOLLARalignof] = ACTIONS(1549), + [anon_sym_DOLLARextnameof] = ACTIONS(1549), + [anon_sym_DOLLARnameof] = ACTIONS(1549), + [anon_sym_DOLLARoffsetof] = ACTIONS(1549), + [anon_sym_DOLLARqnameof] = ACTIONS(1549), + [anon_sym_DOLLARvaconst] = ACTIONS(1549), + [anon_sym_DOLLARvaarg] = ACTIONS(1549), + [anon_sym_DOLLARvaref] = ACTIONS(1549), + [anon_sym_DOLLARvaexpr] = ACTIONS(1549), + [anon_sym_true] = ACTIONS(1549), + [anon_sym_false] = ACTIONS(1549), + [anon_sym_null] = ACTIONS(1549), + [anon_sym_DOLLARvacount] = ACTIONS(1549), + [anon_sym_DOLLARappend] = ACTIONS(1549), + [anon_sym_DOLLARconcat] = ACTIONS(1549), + [anon_sym_DOLLAReval] = ACTIONS(1549), + [anon_sym_DOLLARis_const] = ACTIONS(1549), + [anon_sym_DOLLARsizeof] = ACTIONS(1549), + [anon_sym_DOLLARstringify] = ACTIONS(1549), + [anon_sym_DOLLARand] = ACTIONS(1549), + [anon_sym_DOLLARdefined] = ACTIONS(1549), + [anon_sym_DOLLARembed] = ACTIONS(1549), + [anon_sym_DOLLARor] = ACTIONS(1549), + [anon_sym_DOLLARfeature] = ACTIONS(1549), + [anon_sym_DOLLARassignable] = ACTIONS(1549), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_PLUS_PLUS] = ACTIONS(1551), + [anon_sym_DASH_DASH] = ACTIONS(1551), + [anon_sym_typeid] = ACTIONS(1549), + [anon_sym_LBRACE_PIPE] = ACTIONS(1551), + [anon_sym_void] = ACTIONS(1549), + [anon_sym_bool] = ACTIONS(1549), + [anon_sym_char] = ACTIONS(1549), + [anon_sym_ichar] = ACTIONS(1549), + [anon_sym_short] = ACTIONS(1549), + [anon_sym_ushort] = ACTIONS(1549), + [anon_sym_uint] = ACTIONS(1549), + [anon_sym_long] = ACTIONS(1549), + [anon_sym_ulong] = ACTIONS(1549), + [anon_sym_int128] = ACTIONS(1549), + [anon_sym_uint128] = ACTIONS(1549), + [anon_sym_float] = ACTIONS(1549), + [anon_sym_double] = ACTIONS(1549), + [anon_sym_float16] = ACTIONS(1549), + [anon_sym_bfloat16] = ACTIONS(1549), + [anon_sym_float128] = ACTIONS(1549), + [anon_sym_iptr] = ACTIONS(1549), + [anon_sym_uptr] = ACTIONS(1549), + [anon_sym_isz] = ACTIONS(1549), + [anon_sym_usz] = ACTIONS(1549), + [anon_sym_anyfault] = ACTIONS(1549), + [anon_sym_any] = ACTIONS(1549), + [anon_sym_DOLLARtypeof] = ACTIONS(1549), + [anon_sym_DOLLARtypefrom] = ACTIONS(1549), + [anon_sym_DOLLARvatype] = ACTIONS(1549), + [anon_sym_DOLLARevaltype] = ACTIONS(1549), + [sym_real_literal] = ACTIONS(1551), }, [484] = { [sym_line_comment] = STATE(484), [sym_doc_comment] = STATE(484), [sym_block_comment] = STATE(484), - [sym_ident] = ACTIONS(1422), - [sym_integer_literal] = ACTIONS(1424), - [anon_sym_SQUOTE] = ACTIONS(1424), - [anon_sym_DQUOTE] = ACTIONS(1424), - [anon_sym_BQUOTE] = ACTIONS(1424), - [sym_bytes_literal] = ACTIONS(1424), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1422), - [sym_at_ident] = ACTIONS(1424), - [sym_hash_ident] = ACTIONS(1424), - [sym_type_ident] = ACTIONS(1424), - [sym_ct_type_ident] = ACTIONS(1424), - [sym_const_ident] = ACTIONS(1422), - [sym_builtin] = ACTIONS(1424), - [anon_sym_LPAREN] = ACTIONS(1424), - [anon_sym_AMP] = ACTIONS(1422), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_tlocal] = ACTIONS(1422), - [anon_sym_SEMI] = ACTIONS(1424), - [anon_sym_fn] = ACTIONS(1422), - [anon_sym_LBRACE] = ACTIONS(1422), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_var] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_continue] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_defer] = ACTIONS(1422), - [anon_sym_assert] = ACTIONS(1422), - [anon_sym_nextcase] = ACTIONS(1422), - [anon_sym_switch] = ACTIONS(1422), - [anon_sym_AMP_AMP] = ACTIONS(1424), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_foreach] = ACTIONS(1422), - [anon_sym_foreach_r] = ACTIONS(1422), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_do] = ACTIONS(1422), - [anon_sym_int] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_STAR] = ACTIONS(1424), - [anon_sym_asm] = ACTIONS(1422), - [anon_sym_DOLLARassert] = ACTIONS(1422), - [anon_sym_DOLLARerror] = ACTIONS(1422), - [anon_sym_DOLLARecho] = ACTIONS(1422), - [anon_sym_DOLLARif] = ACTIONS(1422), - [anon_sym_DOLLARcase] = ACTIONS(1422), - [anon_sym_DOLLARdefault] = ACTIONS(1422), - [anon_sym_DOLLARswitch] = ACTIONS(1422), - [anon_sym_DOLLARendswitch] = ACTIONS(1422), - [anon_sym_DOLLARfor] = ACTIONS(1422), - [anon_sym_DOLLARforeach] = ACTIONS(1422), - [anon_sym_DOLLARalignof] = ACTIONS(1422), - [anon_sym_DOLLARextnameof] = ACTIONS(1422), - [anon_sym_DOLLARnameof] = ACTIONS(1422), - [anon_sym_DOLLARoffsetof] = ACTIONS(1422), - [anon_sym_DOLLARqnameof] = ACTIONS(1422), - [anon_sym_DOLLARvaconst] = ACTIONS(1422), - [anon_sym_DOLLARvaarg] = ACTIONS(1422), - [anon_sym_DOLLARvaref] = ACTIONS(1422), - [anon_sym_DOLLARvaexpr] = ACTIONS(1422), - [anon_sym_true] = ACTIONS(1422), - [anon_sym_false] = ACTIONS(1422), - [anon_sym_null] = ACTIONS(1422), - [anon_sym_DOLLARvacount] = ACTIONS(1422), - [anon_sym_DOLLARappend] = ACTIONS(1422), - [anon_sym_DOLLARconcat] = ACTIONS(1422), - [anon_sym_DOLLAReval] = ACTIONS(1422), - [anon_sym_DOLLARis_const] = ACTIONS(1422), - [anon_sym_DOLLARsizeof] = ACTIONS(1422), - [anon_sym_DOLLARstringify] = ACTIONS(1422), - [anon_sym_DOLLARand] = ACTIONS(1422), - [anon_sym_DOLLARdefined] = ACTIONS(1422), - [anon_sym_DOLLARembed] = ACTIONS(1422), - [anon_sym_DOLLARor] = ACTIONS(1422), - [anon_sym_DOLLARfeature] = ACTIONS(1422), - [anon_sym_DOLLARassignable] = ACTIONS(1422), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_TILDE] = ACTIONS(1424), - [anon_sym_PLUS_PLUS] = ACTIONS(1424), - [anon_sym_DASH_DASH] = ACTIONS(1424), - [anon_sym_typeid] = ACTIONS(1422), - [anon_sym_LBRACE_PIPE] = ACTIONS(1424), - [anon_sym_void] = ACTIONS(1422), - [anon_sym_bool] = ACTIONS(1422), - [anon_sym_char] = ACTIONS(1422), - [anon_sym_ichar] = ACTIONS(1422), - [anon_sym_short] = ACTIONS(1422), - [anon_sym_ushort] = ACTIONS(1422), - [anon_sym_uint] = ACTIONS(1422), - [anon_sym_long] = ACTIONS(1422), - [anon_sym_ulong] = ACTIONS(1422), - [anon_sym_int128] = ACTIONS(1422), - [anon_sym_uint128] = ACTIONS(1422), - [anon_sym_float] = ACTIONS(1422), - [anon_sym_double] = ACTIONS(1422), - [anon_sym_float16] = ACTIONS(1422), - [anon_sym_bfloat16] = ACTIONS(1422), - [anon_sym_float128] = ACTIONS(1422), - [anon_sym_iptr] = ACTIONS(1422), - [anon_sym_uptr] = ACTIONS(1422), - [anon_sym_isz] = ACTIONS(1422), - [anon_sym_usz] = ACTIONS(1422), - [anon_sym_anyfault] = ACTIONS(1422), - [anon_sym_any] = ACTIONS(1422), - [anon_sym_DOLLARtypeof] = ACTIONS(1422), - [anon_sym_DOLLARtypefrom] = ACTIONS(1422), - [anon_sym_DOLLARvatype] = ACTIONS(1422), - [anon_sym_DOLLARevaltype] = ACTIONS(1422), - [sym_real_literal] = ACTIONS(1424), + [sym_ident] = ACTIONS(1617), + [sym_integer_literal] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1619), + [anon_sym_BQUOTE] = ACTIONS(1619), + [sym_bytes_literal] = ACTIONS(1619), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1617), + [sym_at_ident] = ACTIONS(1619), + [sym_hash_ident] = ACTIONS(1619), + [sym_type_ident] = ACTIONS(1619), + [sym_ct_type_ident] = ACTIONS(1619), + [sym_const_ident] = ACTIONS(1617), + [sym_builtin] = ACTIONS(1619), + [anon_sym_LPAREN] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1617), + [anon_sym_static] = ACTIONS(1617), + [anon_sym_tlocal] = ACTIONS(1617), + [anon_sym_SEMI] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1617), + [anon_sym_LBRACE] = ACTIONS(1617), + [anon_sym_const] = ACTIONS(1617), + [anon_sym_var] = ACTIONS(1617), + [anon_sym_return] = ACTIONS(1617), + [anon_sym_continue] = ACTIONS(1617), + [anon_sym_break] = ACTIONS(1617), + [anon_sym_defer] = ACTIONS(1617), + [anon_sym_assert] = ACTIONS(1617), + [anon_sym_nextcase] = ACTIONS(1617), + [anon_sym_switch] = ACTIONS(1617), + [anon_sym_AMP_AMP] = ACTIONS(1619), + [anon_sym_if] = ACTIONS(1617), + [anon_sym_for] = ACTIONS(1617), + [anon_sym_foreach] = ACTIONS(1617), + [anon_sym_foreach_r] = ACTIONS(1617), + [anon_sym_while] = ACTIONS(1617), + [anon_sym_do] = ACTIONS(1617), + [anon_sym_int] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_asm] = ACTIONS(1617), + [anon_sym_DOLLARassert] = ACTIONS(1617), + [anon_sym_DOLLARerror] = ACTIONS(1617), + [anon_sym_DOLLARecho] = ACTIONS(1617), + [anon_sym_DOLLARif] = ACTIONS(1617), + [anon_sym_DOLLARcase] = ACTIONS(1617), + [anon_sym_DOLLARdefault] = ACTIONS(1617), + [anon_sym_DOLLARswitch] = ACTIONS(1617), + [anon_sym_DOLLARendswitch] = ACTIONS(1617), + [anon_sym_DOLLARfor] = ACTIONS(1617), + [anon_sym_DOLLARforeach] = ACTIONS(1617), + [anon_sym_DOLLARalignof] = ACTIONS(1617), + [anon_sym_DOLLARextnameof] = ACTIONS(1617), + [anon_sym_DOLLARnameof] = ACTIONS(1617), + [anon_sym_DOLLARoffsetof] = ACTIONS(1617), + [anon_sym_DOLLARqnameof] = ACTIONS(1617), + [anon_sym_DOLLARvaconst] = ACTIONS(1617), + [anon_sym_DOLLARvaarg] = ACTIONS(1617), + [anon_sym_DOLLARvaref] = ACTIONS(1617), + [anon_sym_DOLLARvaexpr] = ACTIONS(1617), + [anon_sym_true] = ACTIONS(1617), + [anon_sym_false] = ACTIONS(1617), + [anon_sym_null] = ACTIONS(1617), + [anon_sym_DOLLARvacount] = ACTIONS(1617), + [anon_sym_DOLLARappend] = ACTIONS(1617), + [anon_sym_DOLLARconcat] = ACTIONS(1617), + [anon_sym_DOLLAReval] = ACTIONS(1617), + [anon_sym_DOLLARis_const] = ACTIONS(1617), + [anon_sym_DOLLARsizeof] = ACTIONS(1617), + [anon_sym_DOLLARstringify] = ACTIONS(1617), + [anon_sym_DOLLARand] = ACTIONS(1617), + [anon_sym_DOLLARdefined] = ACTIONS(1617), + [anon_sym_DOLLARembed] = ACTIONS(1617), + [anon_sym_DOLLARor] = ACTIONS(1617), + [anon_sym_DOLLARfeature] = ACTIONS(1617), + [anon_sym_DOLLARassignable] = ACTIONS(1617), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_typeid] = ACTIONS(1617), + [anon_sym_LBRACE_PIPE] = ACTIONS(1619), + [anon_sym_void] = ACTIONS(1617), + [anon_sym_bool] = ACTIONS(1617), + [anon_sym_char] = ACTIONS(1617), + [anon_sym_ichar] = ACTIONS(1617), + [anon_sym_short] = ACTIONS(1617), + [anon_sym_ushort] = ACTIONS(1617), + [anon_sym_uint] = ACTIONS(1617), + [anon_sym_long] = ACTIONS(1617), + [anon_sym_ulong] = ACTIONS(1617), + [anon_sym_int128] = ACTIONS(1617), + [anon_sym_uint128] = ACTIONS(1617), + [anon_sym_float] = ACTIONS(1617), + [anon_sym_double] = ACTIONS(1617), + [anon_sym_float16] = ACTIONS(1617), + [anon_sym_bfloat16] = ACTIONS(1617), + [anon_sym_float128] = ACTIONS(1617), + [anon_sym_iptr] = ACTIONS(1617), + [anon_sym_uptr] = ACTIONS(1617), + [anon_sym_isz] = ACTIONS(1617), + [anon_sym_usz] = ACTIONS(1617), + [anon_sym_anyfault] = ACTIONS(1617), + [anon_sym_any] = ACTIONS(1617), + [anon_sym_DOLLARtypeof] = ACTIONS(1617), + [anon_sym_DOLLARtypefrom] = ACTIONS(1617), + [anon_sym_DOLLARvatype] = ACTIONS(1617), + [anon_sym_DOLLARevaltype] = ACTIONS(1617), + [sym_real_literal] = ACTIONS(1619), }, [485] = { [sym_line_comment] = STATE(485), [sym_doc_comment] = STATE(485), [sym_block_comment] = STATE(485), - [sym_ident] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(1618), - [anon_sym_SQUOTE] = ACTIONS(1618), - [anon_sym_DQUOTE] = ACTIONS(1618), - [anon_sym_BQUOTE] = ACTIONS(1618), - [sym_bytes_literal] = ACTIONS(1618), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1616), - [sym_at_ident] = ACTIONS(1618), - [sym_hash_ident] = ACTIONS(1618), - [sym_type_ident] = ACTIONS(1618), - [sym_ct_type_ident] = ACTIONS(1618), - [sym_const_ident] = ACTIONS(1616), - [sym_builtin] = ACTIONS(1618), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_static] = ACTIONS(1616), - [anon_sym_tlocal] = ACTIONS(1616), - [anon_sym_SEMI] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1616), - [anon_sym_LBRACE] = ACTIONS(1616), - [anon_sym_const] = ACTIONS(1616), - [anon_sym_var] = ACTIONS(1616), - [anon_sym_return] = ACTIONS(1616), - [anon_sym_continue] = ACTIONS(1616), - [anon_sym_break] = ACTIONS(1616), - [anon_sym_defer] = ACTIONS(1616), - [anon_sym_assert] = ACTIONS(1616), - [anon_sym_nextcase] = ACTIONS(1616), - [anon_sym_switch] = ACTIONS(1616), - [anon_sym_AMP_AMP] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1616), - [anon_sym_for] = ACTIONS(1616), - [anon_sym_foreach] = ACTIONS(1616), - [anon_sym_foreach_r] = ACTIONS(1616), - [anon_sym_while] = ACTIONS(1616), - [anon_sym_do] = ACTIONS(1616), - [anon_sym_int] = ACTIONS(1616), - [anon_sym_PLUS] = ACTIONS(1616), - [anon_sym_DASH] = ACTIONS(1616), - [anon_sym_STAR] = ACTIONS(1618), - [anon_sym_asm] = ACTIONS(1616), - [anon_sym_DOLLARassert] = ACTIONS(1616), - [anon_sym_DOLLARerror] = ACTIONS(1616), - [anon_sym_DOLLARecho] = ACTIONS(1616), - [anon_sym_DOLLARif] = ACTIONS(1616), - [anon_sym_DOLLARcase] = ACTIONS(1616), - [anon_sym_DOLLARdefault] = ACTIONS(1616), - [anon_sym_DOLLARswitch] = ACTIONS(1616), - [anon_sym_DOLLARendswitch] = ACTIONS(1616), - [anon_sym_DOLLARfor] = ACTIONS(1616), - [anon_sym_DOLLARforeach] = ACTIONS(1616), - [anon_sym_DOLLARalignof] = ACTIONS(1616), - [anon_sym_DOLLARextnameof] = ACTIONS(1616), - [anon_sym_DOLLARnameof] = ACTIONS(1616), - [anon_sym_DOLLARoffsetof] = ACTIONS(1616), - [anon_sym_DOLLARqnameof] = ACTIONS(1616), - [anon_sym_DOLLARvaconst] = ACTIONS(1616), - [anon_sym_DOLLARvaarg] = ACTIONS(1616), - [anon_sym_DOLLARvaref] = ACTIONS(1616), - [anon_sym_DOLLARvaexpr] = ACTIONS(1616), - [anon_sym_true] = ACTIONS(1616), - [anon_sym_false] = ACTIONS(1616), - [anon_sym_null] = ACTIONS(1616), - [anon_sym_DOLLARvacount] = ACTIONS(1616), - [anon_sym_DOLLARappend] = ACTIONS(1616), - [anon_sym_DOLLARconcat] = ACTIONS(1616), - [anon_sym_DOLLAReval] = ACTIONS(1616), - [anon_sym_DOLLARis_const] = ACTIONS(1616), - [anon_sym_DOLLARsizeof] = ACTIONS(1616), - [anon_sym_DOLLARstringify] = ACTIONS(1616), - [anon_sym_DOLLARand] = ACTIONS(1616), - [anon_sym_DOLLARdefined] = ACTIONS(1616), - [anon_sym_DOLLARembed] = ACTIONS(1616), - [anon_sym_DOLLARor] = ACTIONS(1616), - [anon_sym_DOLLARfeature] = ACTIONS(1616), - [anon_sym_DOLLARassignable] = ACTIONS(1616), - [anon_sym_BANG] = ACTIONS(1618), - [anon_sym_TILDE] = ACTIONS(1618), - [anon_sym_PLUS_PLUS] = ACTIONS(1618), - [anon_sym_DASH_DASH] = ACTIONS(1618), - [anon_sym_typeid] = ACTIONS(1616), - [anon_sym_LBRACE_PIPE] = ACTIONS(1618), - [anon_sym_void] = ACTIONS(1616), - [anon_sym_bool] = ACTIONS(1616), - [anon_sym_char] = ACTIONS(1616), - [anon_sym_ichar] = ACTIONS(1616), - [anon_sym_short] = ACTIONS(1616), - [anon_sym_ushort] = ACTIONS(1616), - [anon_sym_uint] = ACTIONS(1616), - [anon_sym_long] = ACTIONS(1616), - [anon_sym_ulong] = ACTIONS(1616), - [anon_sym_int128] = ACTIONS(1616), - [anon_sym_uint128] = ACTIONS(1616), - [anon_sym_float] = ACTIONS(1616), - [anon_sym_double] = ACTIONS(1616), - [anon_sym_float16] = ACTIONS(1616), - [anon_sym_bfloat16] = ACTIONS(1616), - [anon_sym_float128] = ACTIONS(1616), - [anon_sym_iptr] = ACTIONS(1616), - [anon_sym_uptr] = ACTIONS(1616), - [anon_sym_isz] = ACTIONS(1616), - [anon_sym_usz] = ACTIONS(1616), - [anon_sym_anyfault] = ACTIONS(1616), - [anon_sym_any] = ACTIONS(1616), - [anon_sym_DOLLARtypeof] = ACTIONS(1616), - [anon_sym_DOLLARtypefrom] = ACTIONS(1616), - [anon_sym_DOLLARvatype] = ACTIONS(1616), - [anon_sym_DOLLARevaltype] = ACTIONS(1616), - [sym_real_literal] = ACTIONS(1618), + [sym_ident] = ACTIONS(1633), + [sym_integer_literal] = ACTIONS(1635), + [anon_sym_SQUOTE] = ACTIONS(1635), + [anon_sym_DQUOTE] = ACTIONS(1635), + [anon_sym_BQUOTE] = ACTIONS(1635), + [sym_bytes_literal] = ACTIONS(1635), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1633), + [sym_at_ident] = ACTIONS(1635), + [sym_hash_ident] = ACTIONS(1635), + [sym_type_ident] = ACTIONS(1635), + [sym_ct_type_ident] = ACTIONS(1635), + [sym_const_ident] = ACTIONS(1633), + [sym_builtin] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1633), + [anon_sym_static] = ACTIONS(1633), + [anon_sym_tlocal] = ACTIONS(1633), + [anon_sym_SEMI] = ACTIONS(1635), + [anon_sym_fn] = ACTIONS(1633), + [anon_sym_LBRACE] = ACTIONS(1633), + [anon_sym_const] = ACTIONS(1633), + [anon_sym_var] = ACTIONS(1633), + [anon_sym_return] = ACTIONS(1633), + [anon_sym_continue] = ACTIONS(1633), + [anon_sym_break] = ACTIONS(1633), + [anon_sym_defer] = ACTIONS(1633), + [anon_sym_assert] = ACTIONS(1633), + [anon_sym_nextcase] = ACTIONS(1633), + [anon_sym_switch] = ACTIONS(1633), + [anon_sym_AMP_AMP] = ACTIONS(1635), + [anon_sym_if] = ACTIONS(1633), + [anon_sym_for] = ACTIONS(1633), + [anon_sym_foreach] = ACTIONS(1633), + [anon_sym_foreach_r] = ACTIONS(1633), + [anon_sym_while] = ACTIONS(1633), + [anon_sym_do] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_PLUS] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1633), + [anon_sym_STAR] = ACTIONS(1635), + [anon_sym_asm] = ACTIONS(1633), + [anon_sym_DOLLARassert] = ACTIONS(1633), + [anon_sym_DOLLARerror] = ACTIONS(1633), + [anon_sym_DOLLARecho] = ACTIONS(1633), + [anon_sym_DOLLARif] = ACTIONS(1633), + [anon_sym_DOLLARcase] = ACTIONS(1633), + [anon_sym_DOLLARdefault] = ACTIONS(1633), + [anon_sym_DOLLARswitch] = ACTIONS(1633), + [anon_sym_DOLLARendswitch] = ACTIONS(1633), + [anon_sym_DOLLARfor] = ACTIONS(1633), + [anon_sym_DOLLARforeach] = ACTIONS(1633), + [anon_sym_DOLLARalignof] = ACTIONS(1633), + [anon_sym_DOLLARextnameof] = ACTIONS(1633), + [anon_sym_DOLLARnameof] = ACTIONS(1633), + [anon_sym_DOLLARoffsetof] = ACTIONS(1633), + [anon_sym_DOLLARqnameof] = ACTIONS(1633), + [anon_sym_DOLLARvaconst] = ACTIONS(1633), + [anon_sym_DOLLARvaarg] = ACTIONS(1633), + [anon_sym_DOLLARvaref] = ACTIONS(1633), + [anon_sym_DOLLARvaexpr] = ACTIONS(1633), + [anon_sym_true] = ACTIONS(1633), + [anon_sym_false] = ACTIONS(1633), + [anon_sym_null] = ACTIONS(1633), + [anon_sym_DOLLARvacount] = ACTIONS(1633), + [anon_sym_DOLLARappend] = ACTIONS(1633), + [anon_sym_DOLLARconcat] = ACTIONS(1633), + [anon_sym_DOLLAReval] = ACTIONS(1633), + [anon_sym_DOLLARis_const] = ACTIONS(1633), + [anon_sym_DOLLARsizeof] = ACTIONS(1633), + [anon_sym_DOLLARstringify] = ACTIONS(1633), + [anon_sym_DOLLARand] = ACTIONS(1633), + [anon_sym_DOLLARdefined] = ACTIONS(1633), + [anon_sym_DOLLARembed] = ACTIONS(1633), + [anon_sym_DOLLARor] = ACTIONS(1633), + [anon_sym_DOLLARfeature] = ACTIONS(1633), + [anon_sym_DOLLARassignable] = ACTIONS(1633), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1635), + [anon_sym_DASH_DASH] = ACTIONS(1635), + [anon_sym_typeid] = ACTIONS(1633), + [anon_sym_LBRACE_PIPE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_char] = ACTIONS(1633), + [anon_sym_ichar] = ACTIONS(1633), + [anon_sym_short] = ACTIONS(1633), + [anon_sym_ushort] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_long] = ACTIONS(1633), + [anon_sym_ulong] = ACTIONS(1633), + [anon_sym_int128] = ACTIONS(1633), + [anon_sym_uint128] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_double] = ACTIONS(1633), + [anon_sym_float16] = ACTIONS(1633), + [anon_sym_bfloat16] = ACTIONS(1633), + [anon_sym_float128] = ACTIONS(1633), + [anon_sym_iptr] = ACTIONS(1633), + [anon_sym_uptr] = ACTIONS(1633), + [anon_sym_isz] = ACTIONS(1633), + [anon_sym_usz] = ACTIONS(1633), + [anon_sym_anyfault] = ACTIONS(1633), + [anon_sym_any] = ACTIONS(1633), + [anon_sym_DOLLARtypeof] = ACTIONS(1633), + [anon_sym_DOLLARtypefrom] = ACTIONS(1633), + [anon_sym_DOLLARvatype] = ACTIONS(1633), + [anon_sym_DOLLARevaltype] = ACTIONS(1633), + [sym_real_literal] = ACTIONS(1635), }, [486] = { [sym_line_comment] = STATE(486), [sym_doc_comment] = STATE(486), [sym_block_comment] = STATE(486), - [sym_ident] = ACTIONS(1440), - [sym_integer_literal] = ACTIONS(1442), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_DQUOTE] = ACTIONS(1442), - [anon_sym_BQUOTE] = ACTIONS(1442), - [sym_bytes_literal] = ACTIONS(1442), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1440), - [sym_at_ident] = ACTIONS(1442), - [sym_hash_ident] = ACTIONS(1442), - [sym_type_ident] = ACTIONS(1442), - [sym_ct_type_ident] = ACTIONS(1442), - [sym_const_ident] = ACTIONS(1440), - [sym_builtin] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1440), - [anon_sym_static] = ACTIONS(1440), - [anon_sym_tlocal] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1442), - [anon_sym_fn] = ACTIONS(1440), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_const] = ACTIONS(1440), - [anon_sym_var] = ACTIONS(1440), - [anon_sym_return] = ACTIONS(1440), - [anon_sym_continue] = ACTIONS(1440), - [anon_sym_break] = ACTIONS(1440), - [anon_sym_defer] = ACTIONS(1440), - [anon_sym_assert] = ACTIONS(1440), - [anon_sym_nextcase] = ACTIONS(1440), - [anon_sym_switch] = ACTIONS(1440), - [anon_sym_AMP_AMP] = ACTIONS(1442), - [anon_sym_if] = ACTIONS(1440), - [anon_sym_for] = ACTIONS(1440), - [anon_sym_foreach] = ACTIONS(1440), - [anon_sym_foreach_r] = ACTIONS(1440), - [anon_sym_while] = ACTIONS(1440), - [anon_sym_do] = ACTIONS(1440), - [anon_sym_int] = ACTIONS(1440), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_STAR] = ACTIONS(1442), - [anon_sym_asm] = ACTIONS(1440), - [anon_sym_DOLLARassert] = ACTIONS(1440), - [anon_sym_DOLLARerror] = ACTIONS(1440), - [anon_sym_DOLLARecho] = ACTIONS(1440), - [anon_sym_DOLLARif] = ACTIONS(1440), - [anon_sym_DOLLARcase] = ACTIONS(1440), - [anon_sym_DOLLARdefault] = ACTIONS(1440), - [anon_sym_DOLLARswitch] = ACTIONS(1440), - [anon_sym_DOLLARendswitch] = ACTIONS(1440), - [anon_sym_DOLLARfor] = ACTIONS(1440), - [anon_sym_DOLLARforeach] = ACTIONS(1440), - [anon_sym_DOLLARalignof] = ACTIONS(1440), - [anon_sym_DOLLARextnameof] = ACTIONS(1440), - [anon_sym_DOLLARnameof] = ACTIONS(1440), - [anon_sym_DOLLARoffsetof] = ACTIONS(1440), - [anon_sym_DOLLARqnameof] = ACTIONS(1440), - [anon_sym_DOLLARvaconst] = ACTIONS(1440), - [anon_sym_DOLLARvaarg] = ACTIONS(1440), - [anon_sym_DOLLARvaref] = ACTIONS(1440), - [anon_sym_DOLLARvaexpr] = ACTIONS(1440), - [anon_sym_true] = ACTIONS(1440), - [anon_sym_false] = ACTIONS(1440), - [anon_sym_null] = ACTIONS(1440), - [anon_sym_DOLLARvacount] = ACTIONS(1440), - [anon_sym_DOLLARappend] = ACTIONS(1440), - [anon_sym_DOLLARconcat] = ACTIONS(1440), - [anon_sym_DOLLAReval] = ACTIONS(1440), - [anon_sym_DOLLARis_const] = ACTIONS(1440), - [anon_sym_DOLLARsizeof] = ACTIONS(1440), - [anon_sym_DOLLARstringify] = ACTIONS(1440), - [anon_sym_DOLLARand] = ACTIONS(1440), - [anon_sym_DOLLARdefined] = ACTIONS(1440), - [anon_sym_DOLLARembed] = ACTIONS(1440), - [anon_sym_DOLLARor] = ACTIONS(1440), - [anon_sym_DOLLARfeature] = ACTIONS(1440), - [anon_sym_DOLLARassignable] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_typeid] = ACTIONS(1440), - [anon_sym_LBRACE_PIPE] = ACTIONS(1442), - [anon_sym_void] = ACTIONS(1440), - [anon_sym_bool] = ACTIONS(1440), - [anon_sym_char] = ACTIONS(1440), - [anon_sym_ichar] = ACTIONS(1440), - [anon_sym_short] = ACTIONS(1440), - [anon_sym_ushort] = ACTIONS(1440), - [anon_sym_uint] = ACTIONS(1440), - [anon_sym_long] = ACTIONS(1440), - [anon_sym_ulong] = ACTIONS(1440), - [anon_sym_int128] = ACTIONS(1440), - [anon_sym_uint128] = ACTIONS(1440), - [anon_sym_float] = ACTIONS(1440), - [anon_sym_double] = ACTIONS(1440), - [anon_sym_float16] = ACTIONS(1440), - [anon_sym_bfloat16] = ACTIONS(1440), - [anon_sym_float128] = ACTIONS(1440), - [anon_sym_iptr] = ACTIONS(1440), - [anon_sym_uptr] = ACTIONS(1440), - [anon_sym_isz] = ACTIONS(1440), - [anon_sym_usz] = ACTIONS(1440), - [anon_sym_anyfault] = ACTIONS(1440), - [anon_sym_any] = ACTIONS(1440), - [anon_sym_DOLLARtypeof] = ACTIONS(1440), - [anon_sym_DOLLARtypefrom] = ACTIONS(1440), - [anon_sym_DOLLARvatype] = ACTIONS(1440), - [anon_sym_DOLLARevaltype] = ACTIONS(1440), - [sym_real_literal] = ACTIONS(1442), + [sym_ident] = ACTIONS(1537), + [sym_integer_literal] = ACTIONS(1539), + [anon_sym_SQUOTE] = ACTIONS(1539), + [anon_sym_DQUOTE] = ACTIONS(1539), + [anon_sym_BQUOTE] = ACTIONS(1539), + [sym_bytes_literal] = ACTIONS(1539), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1537), + [sym_at_ident] = ACTIONS(1539), + [sym_hash_ident] = ACTIONS(1539), + [sym_type_ident] = ACTIONS(1539), + [sym_ct_type_ident] = ACTIONS(1539), + [sym_const_ident] = ACTIONS(1537), + [sym_builtin] = ACTIONS(1539), + [anon_sym_LPAREN] = ACTIONS(1539), + [anon_sym_AMP] = ACTIONS(1537), + [anon_sym_static] = ACTIONS(1537), + [anon_sym_tlocal] = ACTIONS(1537), + [anon_sym_SEMI] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1537), + [anon_sym_LBRACE] = ACTIONS(1537), + [anon_sym_const] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(1537), + [anon_sym_return] = ACTIONS(1537), + [anon_sym_continue] = ACTIONS(1537), + [anon_sym_break] = ACTIONS(1537), + [anon_sym_defer] = ACTIONS(1537), + [anon_sym_assert] = ACTIONS(1537), + [anon_sym_nextcase] = ACTIONS(1537), + [anon_sym_switch] = ACTIONS(1537), + [anon_sym_AMP_AMP] = ACTIONS(1539), + [anon_sym_if] = ACTIONS(1537), + [anon_sym_for] = ACTIONS(1537), + [anon_sym_foreach] = ACTIONS(1537), + [anon_sym_foreach_r] = ACTIONS(1537), + [anon_sym_while] = ACTIONS(1537), + [anon_sym_do] = ACTIONS(1537), + [anon_sym_int] = ACTIONS(1537), + [anon_sym_PLUS] = ACTIONS(1537), + [anon_sym_DASH] = ACTIONS(1537), + [anon_sym_STAR] = ACTIONS(1539), + [anon_sym_asm] = ACTIONS(1537), + [anon_sym_DOLLARassert] = ACTIONS(1537), + [anon_sym_DOLLARerror] = ACTIONS(1537), + [anon_sym_DOLLARecho] = ACTIONS(1537), + [anon_sym_DOLLARif] = ACTIONS(1537), + [anon_sym_DOLLARcase] = ACTIONS(1537), + [anon_sym_DOLLARdefault] = ACTIONS(1537), + [anon_sym_DOLLARswitch] = ACTIONS(1537), + [anon_sym_DOLLARendswitch] = ACTIONS(1537), + [anon_sym_DOLLARfor] = ACTIONS(1537), + [anon_sym_DOLLARforeach] = ACTIONS(1537), + [anon_sym_DOLLARalignof] = ACTIONS(1537), + [anon_sym_DOLLARextnameof] = ACTIONS(1537), + [anon_sym_DOLLARnameof] = ACTIONS(1537), + [anon_sym_DOLLARoffsetof] = ACTIONS(1537), + [anon_sym_DOLLARqnameof] = ACTIONS(1537), + [anon_sym_DOLLARvaconst] = ACTIONS(1537), + [anon_sym_DOLLARvaarg] = ACTIONS(1537), + [anon_sym_DOLLARvaref] = ACTIONS(1537), + [anon_sym_DOLLARvaexpr] = ACTIONS(1537), + [anon_sym_true] = ACTIONS(1537), + [anon_sym_false] = ACTIONS(1537), + [anon_sym_null] = ACTIONS(1537), + [anon_sym_DOLLARvacount] = ACTIONS(1537), + [anon_sym_DOLLARappend] = ACTIONS(1537), + [anon_sym_DOLLARconcat] = ACTIONS(1537), + [anon_sym_DOLLAReval] = ACTIONS(1537), + [anon_sym_DOLLARis_const] = ACTIONS(1537), + [anon_sym_DOLLARsizeof] = ACTIONS(1537), + [anon_sym_DOLLARstringify] = ACTIONS(1537), + [anon_sym_DOLLARand] = ACTIONS(1537), + [anon_sym_DOLLARdefined] = ACTIONS(1537), + [anon_sym_DOLLARembed] = ACTIONS(1537), + [anon_sym_DOLLARor] = ACTIONS(1537), + [anon_sym_DOLLARfeature] = ACTIONS(1537), + [anon_sym_DOLLARassignable] = ACTIONS(1537), + [anon_sym_BANG] = ACTIONS(1539), + [anon_sym_TILDE] = ACTIONS(1539), + [anon_sym_PLUS_PLUS] = ACTIONS(1539), + [anon_sym_DASH_DASH] = ACTIONS(1539), + [anon_sym_typeid] = ACTIONS(1537), + [anon_sym_LBRACE_PIPE] = ACTIONS(1539), + [anon_sym_void] = ACTIONS(1537), + [anon_sym_bool] = ACTIONS(1537), + [anon_sym_char] = ACTIONS(1537), + [anon_sym_ichar] = ACTIONS(1537), + [anon_sym_short] = ACTIONS(1537), + [anon_sym_ushort] = ACTIONS(1537), + [anon_sym_uint] = ACTIONS(1537), + [anon_sym_long] = ACTIONS(1537), + [anon_sym_ulong] = ACTIONS(1537), + [anon_sym_int128] = ACTIONS(1537), + [anon_sym_uint128] = ACTIONS(1537), + [anon_sym_float] = ACTIONS(1537), + [anon_sym_double] = ACTIONS(1537), + [anon_sym_float16] = ACTIONS(1537), + [anon_sym_bfloat16] = ACTIONS(1537), + [anon_sym_float128] = ACTIONS(1537), + [anon_sym_iptr] = ACTIONS(1537), + [anon_sym_uptr] = ACTIONS(1537), + [anon_sym_isz] = ACTIONS(1537), + [anon_sym_usz] = ACTIONS(1537), + [anon_sym_anyfault] = ACTIONS(1537), + [anon_sym_any] = ACTIONS(1537), + [anon_sym_DOLLARtypeof] = ACTIONS(1537), + [anon_sym_DOLLARtypefrom] = ACTIONS(1537), + [anon_sym_DOLLARvatype] = ACTIONS(1537), + [anon_sym_DOLLARevaltype] = ACTIONS(1537), + [sym_real_literal] = ACTIONS(1539), }, [487] = { [sym_line_comment] = STATE(487), [sym_doc_comment] = STATE(487), [sym_block_comment] = STATE(487), - [sym_ident] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(1658), - [anon_sym_SQUOTE] = ACTIONS(1658), - [anon_sym_DQUOTE] = ACTIONS(1658), - [anon_sym_BQUOTE] = ACTIONS(1658), - [sym_bytes_literal] = ACTIONS(1658), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1656), - [sym_at_ident] = ACTIONS(1658), - [sym_hash_ident] = ACTIONS(1658), - [sym_type_ident] = ACTIONS(1658), - [sym_ct_type_ident] = ACTIONS(1658), - [sym_const_ident] = ACTIONS(1656), - [sym_builtin] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_static] = ACTIONS(1656), - [anon_sym_tlocal] = ACTIONS(1656), - [anon_sym_SEMI] = ACTIONS(1658), - [anon_sym_fn] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_const] = ACTIONS(1656), - [anon_sym_var] = ACTIONS(1656), - [anon_sym_return] = ACTIONS(1656), - [anon_sym_continue] = ACTIONS(1656), - [anon_sym_break] = ACTIONS(1656), - [anon_sym_defer] = ACTIONS(1656), - [anon_sym_assert] = ACTIONS(1656), - [anon_sym_nextcase] = ACTIONS(1656), - [anon_sym_switch] = ACTIONS(1656), - [anon_sym_AMP_AMP] = ACTIONS(1658), - [anon_sym_if] = ACTIONS(1656), - [anon_sym_for] = ACTIONS(1656), - [anon_sym_foreach] = ACTIONS(1656), - [anon_sym_foreach_r] = ACTIONS(1656), - [anon_sym_while] = ACTIONS(1656), - [anon_sym_do] = ACTIONS(1656), - [anon_sym_int] = ACTIONS(1656), - [anon_sym_PLUS] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1656), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_asm] = ACTIONS(1656), - [anon_sym_DOLLARassert] = ACTIONS(1656), - [anon_sym_DOLLARerror] = ACTIONS(1656), - [anon_sym_DOLLARecho] = ACTIONS(1656), - [anon_sym_DOLLARif] = ACTIONS(1656), - [anon_sym_DOLLARcase] = ACTIONS(1656), - [anon_sym_DOLLARdefault] = ACTIONS(1656), - [anon_sym_DOLLARswitch] = ACTIONS(1656), - [anon_sym_DOLLARendswitch] = ACTIONS(1656), - [anon_sym_DOLLARfor] = ACTIONS(1656), - [anon_sym_DOLLARforeach] = ACTIONS(1656), - [anon_sym_DOLLARalignof] = ACTIONS(1656), - [anon_sym_DOLLARextnameof] = ACTIONS(1656), - [anon_sym_DOLLARnameof] = ACTIONS(1656), - [anon_sym_DOLLARoffsetof] = ACTIONS(1656), - [anon_sym_DOLLARqnameof] = ACTIONS(1656), - [anon_sym_DOLLARvaconst] = ACTIONS(1656), - [anon_sym_DOLLARvaarg] = ACTIONS(1656), - [anon_sym_DOLLARvaref] = ACTIONS(1656), - [anon_sym_DOLLARvaexpr] = ACTIONS(1656), - [anon_sym_true] = ACTIONS(1656), - [anon_sym_false] = ACTIONS(1656), - [anon_sym_null] = ACTIONS(1656), - [anon_sym_DOLLARvacount] = ACTIONS(1656), - [anon_sym_DOLLARappend] = ACTIONS(1656), - [anon_sym_DOLLARconcat] = ACTIONS(1656), - [anon_sym_DOLLAReval] = ACTIONS(1656), - [anon_sym_DOLLARis_const] = ACTIONS(1656), - [anon_sym_DOLLARsizeof] = ACTIONS(1656), - [anon_sym_DOLLARstringify] = ACTIONS(1656), - [anon_sym_DOLLARand] = ACTIONS(1656), - [anon_sym_DOLLARdefined] = ACTIONS(1656), - [anon_sym_DOLLARembed] = ACTIONS(1656), - [anon_sym_DOLLARor] = ACTIONS(1656), - [anon_sym_DOLLARfeature] = ACTIONS(1656), - [anon_sym_DOLLARassignable] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(1658), - [anon_sym_TILDE] = ACTIONS(1658), - [anon_sym_PLUS_PLUS] = ACTIONS(1658), - [anon_sym_DASH_DASH] = ACTIONS(1658), - [anon_sym_typeid] = ACTIONS(1656), - [anon_sym_LBRACE_PIPE] = ACTIONS(1658), - [anon_sym_void] = ACTIONS(1656), - [anon_sym_bool] = ACTIONS(1656), - [anon_sym_char] = ACTIONS(1656), - [anon_sym_ichar] = ACTIONS(1656), - [anon_sym_short] = ACTIONS(1656), - [anon_sym_ushort] = ACTIONS(1656), - [anon_sym_uint] = ACTIONS(1656), - [anon_sym_long] = ACTIONS(1656), - [anon_sym_ulong] = ACTIONS(1656), - [anon_sym_int128] = ACTIONS(1656), - [anon_sym_uint128] = ACTIONS(1656), - [anon_sym_float] = ACTIONS(1656), - [anon_sym_double] = ACTIONS(1656), - [anon_sym_float16] = ACTIONS(1656), - [anon_sym_bfloat16] = ACTIONS(1656), - [anon_sym_float128] = ACTIONS(1656), - [anon_sym_iptr] = ACTIONS(1656), - [anon_sym_uptr] = ACTIONS(1656), - [anon_sym_isz] = ACTIONS(1656), - [anon_sym_usz] = ACTIONS(1656), - [anon_sym_anyfault] = ACTIONS(1656), - [anon_sym_any] = ACTIONS(1656), - [anon_sym_DOLLARtypeof] = ACTIONS(1656), - [anon_sym_DOLLARtypefrom] = ACTIONS(1656), - [anon_sym_DOLLARvatype] = ACTIONS(1656), - [anon_sym_DOLLARevaltype] = ACTIONS(1656), - [sym_real_literal] = ACTIONS(1658), + [sym_ident] = ACTIONS(1469), + [sym_integer_literal] = ACTIONS(1471), + [anon_sym_SQUOTE] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(1471), + [anon_sym_BQUOTE] = ACTIONS(1471), + [sym_bytes_literal] = ACTIONS(1471), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1469), + [sym_at_ident] = ACTIONS(1471), + [sym_hash_ident] = ACTIONS(1471), + [sym_type_ident] = ACTIONS(1471), + [sym_ct_type_ident] = ACTIONS(1471), + [sym_const_ident] = ACTIONS(1469), + [sym_builtin] = ACTIONS(1471), + [anon_sym_LPAREN] = ACTIONS(1471), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_static] = ACTIONS(1469), + [anon_sym_tlocal] = ACTIONS(1469), + [anon_sym_SEMI] = ACTIONS(1471), + [anon_sym_fn] = ACTIONS(1469), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_const] = ACTIONS(1469), + [anon_sym_var] = ACTIONS(1469), + [anon_sym_return] = ACTIONS(1469), + [anon_sym_continue] = ACTIONS(1469), + [anon_sym_break] = ACTIONS(1469), + [anon_sym_defer] = ACTIONS(1469), + [anon_sym_assert] = ACTIONS(1469), + [anon_sym_nextcase] = ACTIONS(1469), + [anon_sym_switch] = ACTIONS(1469), + [anon_sym_AMP_AMP] = ACTIONS(1471), + [anon_sym_if] = ACTIONS(1469), + [anon_sym_for] = ACTIONS(1469), + [anon_sym_foreach] = ACTIONS(1469), + [anon_sym_foreach_r] = ACTIONS(1469), + [anon_sym_while] = ACTIONS(1469), + [anon_sym_do] = ACTIONS(1469), + [anon_sym_int] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1469), + [anon_sym_DASH] = ACTIONS(1469), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_asm] = ACTIONS(1469), + [anon_sym_DOLLARassert] = ACTIONS(1469), + [anon_sym_DOLLARerror] = ACTIONS(1469), + [anon_sym_DOLLARecho] = ACTIONS(1469), + [anon_sym_DOLLARif] = ACTIONS(1469), + [anon_sym_DOLLARcase] = ACTIONS(1469), + [anon_sym_DOLLARdefault] = ACTIONS(1469), + [anon_sym_DOLLARswitch] = ACTIONS(1469), + [anon_sym_DOLLARendswitch] = ACTIONS(1469), + [anon_sym_DOLLARfor] = ACTIONS(1469), + [anon_sym_DOLLARforeach] = ACTIONS(1469), + [anon_sym_DOLLARalignof] = ACTIONS(1469), + [anon_sym_DOLLARextnameof] = ACTIONS(1469), + [anon_sym_DOLLARnameof] = ACTIONS(1469), + [anon_sym_DOLLARoffsetof] = ACTIONS(1469), + [anon_sym_DOLLARqnameof] = ACTIONS(1469), + [anon_sym_DOLLARvaconst] = ACTIONS(1469), + [anon_sym_DOLLARvaarg] = ACTIONS(1469), + [anon_sym_DOLLARvaref] = ACTIONS(1469), + [anon_sym_DOLLARvaexpr] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1469), + [anon_sym_false] = ACTIONS(1469), + [anon_sym_null] = ACTIONS(1469), + [anon_sym_DOLLARvacount] = ACTIONS(1469), + [anon_sym_DOLLARappend] = ACTIONS(1469), + [anon_sym_DOLLARconcat] = ACTIONS(1469), + [anon_sym_DOLLAReval] = ACTIONS(1469), + [anon_sym_DOLLARis_const] = ACTIONS(1469), + [anon_sym_DOLLARsizeof] = ACTIONS(1469), + [anon_sym_DOLLARstringify] = ACTIONS(1469), + [anon_sym_DOLLARand] = ACTIONS(1469), + [anon_sym_DOLLARdefined] = ACTIONS(1469), + [anon_sym_DOLLARembed] = ACTIONS(1469), + [anon_sym_DOLLARor] = ACTIONS(1469), + [anon_sym_DOLLARfeature] = ACTIONS(1469), + [anon_sym_DOLLARassignable] = ACTIONS(1469), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1471), + [anon_sym_PLUS_PLUS] = ACTIONS(1471), + [anon_sym_DASH_DASH] = ACTIONS(1471), + [anon_sym_typeid] = ACTIONS(1469), + [anon_sym_LBRACE_PIPE] = ACTIONS(1471), + [anon_sym_void] = ACTIONS(1469), + [anon_sym_bool] = ACTIONS(1469), + [anon_sym_char] = ACTIONS(1469), + [anon_sym_ichar] = ACTIONS(1469), + [anon_sym_short] = ACTIONS(1469), + [anon_sym_ushort] = ACTIONS(1469), + [anon_sym_uint] = ACTIONS(1469), + [anon_sym_long] = ACTIONS(1469), + [anon_sym_ulong] = ACTIONS(1469), + [anon_sym_int128] = ACTIONS(1469), + [anon_sym_uint128] = ACTIONS(1469), + [anon_sym_float] = ACTIONS(1469), + [anon_sym_double] = ACTIONS(1469), + [anon_sym_float16] = ACTIONS(1469), + [anon_sym_bfloat16] = ACTIONS(1469), + [anon_sym_float128] = ACTIONS(1469), + [anon_sym_iptr] = ACTIONS(1469), + [anon_sym_uptr] = ACTIONS(1469), + [anon_sym_isz] = ACTIONS(1469), + [anon_sym_usz] = ACTIONS(1469), + [anon_sym_anyfault] = ACTIONS(1469), + [anon_sym_any] = ACTIONS(1469), + [anon_sym_DOLLARtypeof] = ACTIONS(1469), + [anon_sym_DOLLARtypefrom] = ACTIONS(1469), + [anon_sym_DOLLARvatype] = ACTIONS(1469), + [anon_sym_DOLLARevaltype] = ACTIONS(1469), + [sym_real_literal] = ACTIONS(1471), }, [488] = { [sym_line_comment] = STATE(488), [sym_doc_comment] = STATE(488), [sym_block_comment] = STATE(488), - [sym_ident] = ACTIONS(1556), - [sym_integer_literal] = ACTIONS(1558), - [anon_sym_SQUOTE] = ACTIONS(1558), - [anon_sym_DQUOTE] = ACTIONS(1558), - [anon_sym_BQUOTE] = ACTIONS(1558), - [sym_bytes_literal] = ACTIONS(1558), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1556), - [sym_at_ident] = ACTIONS(1558), - [sym_hash_ident] = ACTIONS(1558), - [sym_type_ident] = ACTIONS(1558), - [sym_ct_type_ident] = ACTIONS(1558), - [sym_const_ident] = ACTIONS(1556), - [sym_builtin] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1558), - [anon_sym_AMP] = ACTIONS(1556), - [anon_sym_static] = ACTIONS(1556), - [anon_sym_tlocal] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1558), - [anon_sym_fn] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_const] = ACTIONS(1556), - [anon_sym_var] = ACTIONS(1556), - [anon_sym_return] = ACTIONS(1556), - [anon_sym_continue] = ACTIONS(1556), - [anon_sym_break] = ACTIONS(1556), - [anon_sym_defer] = ACTIONS(1556), - [anon_sym_assert] = ACTIONS(1556), - [anon_sym_nextcase] = ACTIONS(1556), - [anon_sym_switch] = ACTIONS(1556), - [anon_sym_AMP_AMP] = ACTIONS(1558), - [anon_sym_if] = ACTIONS(1556), - [anon_sym_for] = ACTIONS(1556), - [anon_sym_foreach] = ACTIONS(1556), - [anon_sym_foreach_r] = ACTIONS(1556), - [anon_sym_while] = ACTIONS(1556), - [anon_sym_do] = ACTIONS(1556), - [anon_sym_int] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1558), - [anon_sym_asm] = ACTIONS(1556), - [anon_sym_DOLLARassert] = ACTIONS(1556), - [anon_sym_DOLLARerror] = ACTIONS(1556), - [anon_sym_DOLLARecho] = ACTIONS(1556), - [anon_sym_DOLLARif] = ACTIONS(1556), - [anon_sym_DOLLARcase] = ACTIONS(1556), - [anon_sym_DOLLARdefault] = ACTIONS(1556), - [anon_sym_DOLLARswitch] = ACTIONS(1556), - [anon_sym_DOLLARendswitch] = ACTIONS(1556), - [anon_sym_DOLLARfor] = ACTIONS(1556), - [anon_sym_DOLLARforeach] = ACTIONS(1556), - [anon_sym_DOLLARalignof] = ACTIONS(1556), - [anon_sym_DOLLARextnameof] = ACTIONS(1556), - [anon_sym_DOLLARnameof] = ACTIONS(1556), - [anon_sym_DOLLARoffsetof] = ACTIONS(1556), - [anon_sym_DOLLARqnameof] = ACTIONS(1556), - [anon_sym_DOLLARvaconst] = ACTIONS(1556), - [anon_sym_DOLLARvaarg] = ACTIONS(1556), - [anon_sym_DOLLARvaref] = ACTIONS(1556), - [anon_sym_DOLLARvaexpr] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [anon_sym_DOLLARvacount] = ACTIONS(1556), - [anon_sym_DOLLARappend] = ACTIONS(1556), - [anon_sym_DOLLARconcat] = ACTIONS(1556), - [anon_sym_DOLLAReval] = ACTIONS(1556), - [anon_sym_DOLLARis_const] = ACTIONS(1556), - [anon_sym_DOLLARsizeof] = ACTIONS(1556), - [anon_sym_DOLLARstringify] = ACTIONS(1556), - [anon_sym_DOLLARand] = ACTIONS(1556), - [anon_sym_DOLLARdefined] = ACTIONS(1556), - [anon_sym_DOLLARembed] = ACTIONS(1556), - [anon_sym_DOLLARor] = ACTIONS(1556), - [anon_sym_DOLLARfeature] = ACTIONS(1556), - [anon_sym_DOLLARassignable] = ACTIONS(1556), - [anon_sym_BANG] = ACTIONS(1558), - [anon_sym_TILDE] = ACTIONS(1558), - [anon_sym_PLUS_PLUS] = ACTIONS(1558), - [anon_sym_DASH_DASH] = ACTIONS(1558), - [anon_sym_typeid] = ACTIONS(1556), - [anon_sym_LBRACE_PIPE] = ACTIONS(1558), - [anon_sym_void] = ACTIONS(1556), - [anon_sym_bool] = ACTIONS(1556), - [anon_sym_char] = ACTIONS(1556), - [anon_sym_ichar] = ACTIONS(1556), - [anon_sym_short] = ACTIONS(1556), - [anon_sym_ushort] = ACTIONS(1556), - [anon_sym_uint] = ACTIONS(1556), - [anon_sym_long] = ACTIONS(1556), - [anon_sym_ulong] = ACTIONS(1556), - [anon_sym_int128] = ACTIONS(1556), - [anon_sym_uint128] = ACTIONS(1556), - [anon_sym_float] = ACTIONS(1556), - [anon_sym_double] = ACTIONS(1556), - [anon_sym_float16] = ACTIONS(1556), - [anon_sym_bfloat16] = ACTIONS(1556), - [anon_sym_float128] = ACTIONS(1556), - [anon_sym_iptr] = ACTIONS(1556), - [anon_sym_uptr] = ACTIONS(1556), - [anon_sym_isz] = ACTIONS(1556), - [anon_sym_usz] = ACTIONS(1556), - [anon_sym_anyfault] = ACTIONS(1556), - [anon_sym_any] = ACTIONS(1556), - [anon_sym_DOLLARtypeof] = ACTIONS(1556), - [anon_sym_DOLLARtypefrom] = ACTIONS(1556), - [anon_sym_DOLLARvatype] = ACTIONS(1556), - [anon_sym_DOLLARevaltype] = ACTIONS(1556), - [sym_real_literal] = ACTIONS(1558), + [sym_ident] = ACTIONS(1561), + [sym_integer_literal] = ACTIONS(1563), + [anon_sym_SQUOTE] = ACTIONS(1563), + [anon_sym_DQUOTE] = ACTIONS(1563), + [anon_sym_BQUOTE] = ACTIONS(1563), + [sym_bytes_literal] = ACTIONS(1563), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1561), + [sym_at_ident] = ACTIONS(1563), + [sym_hash_ident] = ACTIONS(1563), + [sym_type_ident] = ACTIONS(1563), + [sym_ct_type_ident] = ACTIONS(1563), + [sym_const_ident] = ACTIONS(1561), + [sym_builtin] = ACTIONS(1563), + [anon_sym_LPAREN] = ACTIONS(1563), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_static] = ACTIONS(1561), + [anon_sym_tlocal] = ACTIONS(1561), + [anon_sym_SEMI] = ACTIONS(1563), + [anon_sym_fn] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_const] = ACTIONS(1561), + [anon_sym_var] = ACTIONS(1561), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_continue] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1561), + [anon_sym_defer] = ACTIONS(1561), + [anon_sym_assert] = ACTIONS(1561), + [anon_sym_nextcase] = ACTIONS(1561), + [anon_sym_switch] = ACTIONS(1561), + [anon_sym_AMP_AMP] = ACTIONS(1563), + [anon_sym_if] = ACTIONS(1561), + [anon_sym_for] = ACTIONS(1561), + [anon_sym_foreach] = ACTIONS(1561), + [anon_sym_foreach_r] = ACTIONS(1561), + [anon_sym_while] = ACTIONS(1561), + [anon_sym_do] = ACTIONS(1561), + [anon_sym_int] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1561), + [anon_sym_STAR] = ACTIONS(1563), + [anon_sym_asm] = ACTIONS(1561), + [anon_sym_DOLLARassert] = ACTIONS(1561), + [anon_sym_DOLLARerror] = ACTIONS(1561), + [anon_sym_DOLLARecho] = ACTIONS(1561), + [anon_sym_DOLLARif] = ACTIONS(1561), + [anon_sym_DOLLARcase] = ACTIONS(1561), + [anon_sym_DOLLARdefault] = ACTIONS(1561), + [anon_sym_DOLLARswitch] = ACTIONS(1561), + [anon_sym_DOLLARendswitch] = ACTIONS(1561), + [anon_sym_DOLLARfor] = ACTIONS(1561), + [anon_sym_DOLLARforeach] = ACTIONS(1561), + [anon_sym_DOLLARalignof] = ACTIONS(1561), + [anon_sym_DOLLARextnameof] = ACTIONS(1561), + [anon_sym_DOLLARnameof] = ACTIONS(1561), + [anon_sym_DOLLARoffsetof] = ACTIONS(1561), + [anon_sym_DOLLARqnameof] = ACTIONS(1561), + [anon_sym_DOLLARvaconst] = ACTIONS(1561), + [anon_sym_DOLLARvaarg] = ACTIONS(1561), + [anon_sym_DOLLARvaref] = ACTIONS(1561), + [anon_sym_DOLLARvaexpr] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1561), + [anon_sym_false] = ACTIONS(1561), + [anon_sym_null] = ACTIONS(1561), + [anon_sym_DOLLARvacount] = ACTIONS(1561), + [anon_sym_DOLLARappend] = ACTIONS(1561), + [anon_sym_DOLLARconcat] = ACTIONS(1561), + [anon_sym_DOLLAReval] = ACTIONS(1561), + [anon_sym_DOLLARis_const] = ACTIONS(1561), + [anon_sym_DOLLARsizeof] = ACTIONS(1561), + [anon_sym_DOLLARstringify] = ACTIONS(1561), + [anon_sym_DOLLARand] = ACTIONS(1561), + [anon_sym_DOLLARdefined] = ACTIONS(1561), + [anon_sym_DOLLARembed] = ACTIONS(1561), + [anon_sym_DOLLARor] = ACTIONS(1561), + [anon_sym_DOLLARfeature] = ACTIONS(1561), + [anon_sym_DOLLARassignable] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1563), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_PLUS_PLUS] = ACTIONS(1563), + [anon_sym_DASH_DASH] = ACTIONS(1563), + [anon_sym_typeid] = ACTIONS(1561), + [anon_sym_LBRACE_PIPE] = ACTIONS(1563), + [anon_sym_void] = ACTIONS(1561), + [anon_sym_bool] = ACTIONS(1561), + [anon_sym_char] = ACTIONS(1561), + [anon_sym_ichar] = ACTIONS(1561), + [anon_sym_short] = ACTIONS(1561), + [anon_sym_ushort] = ACTIONS(1561), + [anon_sym_uint] = ACTIONS(1561), + [anon_sym_long] = ACTIONS(1561), + [anon_sym_ulong] = ACTIONS(1561), + [anon_sym_int128] = ACTIONS(1561), + [anon_sym_uint128] = ACTIONS(1561), + [anon_sym_float] = ACTIONS(1561), + [anon_sym_double] = ACTIONS(1561), + [anon_sym_float16] = ACTIONS(1561), + [anon_sym_bfloat16] = ACTIONS(1561), + [anon_sym_float128] = ACTIONS(1561), + [anon_sym_iptr] = ACTIONS(1561), + [anon_sym_uptr] = ACTIONS(1561), + [anon_sym_isz] = ACTIONS(1561), + [anon_sym_usz] = ACTIONS(1561), + [anon_sym_anyfault] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1561), + [anon_sym_DOLLARtypeof] = ACTIONS(1561), + [anon_sym_DOLLARtypefrom] = ACTIONS(1561), + [anon_sym_DOLLARvatype] = ACTIONS(1561), + [anon_sym_DOLLARevaltype] = ACTIONS(1561), + [sym_real_literal] = ACTIONS(1563), }, [489] = { [sym_line_comment] = STATE(489), [sym_doc_comment] = STATE(489), [sym_block_comment] = STATE(489), - [sym_ident] = ACTIONS(1406), - [sym_integer_literal] = ACTIONS(1408), - [anon_sym_SQUOTE] = ACTIONS(1408), - [anon_sym_DQUOTE] = ACTIONS(1408), - [anon_sym_BQUOTE] = ACTIONS(1408), - [sym_bytes_literal] = ACTIONS(1408), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1406), - [sym_at_ident] = ACTIONS(1408), - [sym_hash_ident] = ACTIONS(1408), - [sym_type_ident] = ACTIONS(1408), - [sym_ct_type_ident] = ACTIONS(1408), - [sym_const_ident] = ACTIONS(1406), - [sym_builtin] = ACTIONS(1408), - [anon_sym_LPAREN] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(1406), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_tlocal] = ACTIONS(1406), - [anon_sym_SEMI] = ACTIONS(1408), - [anon_sym_fn] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1406), - [anon_sym_const] = ACTIONS(1406), - [anon_sym_var] = ACTIONS(1406), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_defer] = ACTIONS(1406), - [anon_sym_assert] = ACTIONS(1406), - [anon_sym_nextcase] = ACTIONS(1406), - [anon_sym_switch] = ACTIONS(1406), - [anon_sym_AMP_AMP] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_for] = ACTIONS(1406), - [anon_sym_foreach] = ACTIONS(1406), - [anon_sym_foreach_r] = ACTIONS(1406), - [anon_sym_while] = ACTIONS(1406), - [anon_sym_do] = ACTIONS(1406), - [anon_sym_int] = ACTIONS(1406), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_asm] = ACTIONS(1406), - [anon_sym_DOLLARassert] = ACTIONS(1406), - [anon_sym_DOLLARerror] = ACTIONS(1406), - [anon_sym_DOLLARecho] = ACTIONS(1406), - [anon_sym_DOLLARif] = ACTIONS(1406), - [anon_sym_DOLLARcase] = ACTIONS(1406), - [anon_sym_DOLLARdefault] = ACTIONS(1406), - [anon_sym_DOLLARswitch] = ACTIONS(1406), - [anon_sym_DOLLARendswitch] = ACTIONS(1406), - [anon_sym_DOLLARfor] = ACTIONS(1406), - [anon_sym_DOLLARforeach] = ACTIONS(1406), - [anon_sym_DOLLARalignof] = ACTIONS(1406), - [anon_sym_DOLLARextnameof] = ACTIONS(1406), - [anon_sym_DOLLARnameof] = ACTIONS(1406), - [anon_sym_DOLLARoffsetof] = ACTIONS(1406), - [anon_sym_DOLLARqnameof] = ACTIONS(1406), - [anon_sym_DOLLARvaconst] = ACTIONS(1406), - [anon_sym_DOLLARvaarg] = ACTIONS(1406), - [anon_sym_DOLLARvaref] = ACTIONS(1406), - [anon_sym_DOLLARvaexpr] = ACTIONS(1406), - [anon_sym_true] = ACTIONS(1406), - [anon_sym_false] = ACTIONS(1406), - [anon_sym_null] = ACTIONS(1406), - [anon_sym_DOLLARvacount] = ACTIONS(1406), - [anon_sym_DOLLARappend] = ACTIONS(1406), - [anon_sym_DOLLARconcat] = ACTIONS(1406), - [anon_sym_DOLLAReval] = ACTIONS(1406), - [anon_sym_DOLLARis_const] = ACTIONS(1406), - [anon_sym_DOLLARsizeof] = ACTIONS(1406), - [anon_sym_DOLLARstringify] = ACTIONS(1406), - [anon_sym_DOLLARand] = ACTIONS(1406), - [anon_sym_DOLLARdefined] = ACTIONS(1406), - [anon_sym_DOLLARembed] = ACTIONS(1406), - [anon_sym_DOLLARor] = ACTIONS(1406), - [anon_sym_DOLLARfeature] = ACTIONS(1406), - [anon_sym_DOLLARassignable] = ACTIONS(1406), - [anon_sym_BANG] = ACTIONS(1408), - [anon_sym_TILDE] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1408), - [anon_sym_DASH_DASH] = ACTIONS(1408), - [anon_sym_typeid] = ACTIONS(1406), - [anon_sym_LBRACE_PIPE] = ACTIONS(1408), - [anon_sym_void] = ACTIONS(1406), - [anon_sym_bool] = ACTIONS(1406), - [anon_sym_char] = ACTIONS(1406), - [anon_sym_ichar] = ACTIONS(1406), - [anon_sym_short] = ACTIONS(1406), - [anon_sym_ushort] = ACTIONS(1406), - [anon_sym_uint] = ACTIONS(1406), - [anon_sym_long] = ACTIONS(1406), - [anon_sym_ulong] = ACTIONS(1406), - [anon_sym_int128] = ACTIONS(1406), - [anon_sym_uint128] = ACTIONS(1406), - [anon_sym_float] = ACTIONS(1406), - [anon_sym_double] = ACTIONS(1406), - [anon_sym_float16] = ACTIONS(1406), - [anon_sym_bfloat16] = ACTIONS(1406), - [anon_sym_float128] = ACTIONS(1406), - [anon_sym_iptr] = ACTIONS(1406), - [anon_sym_uptr] = ACTIONS(1406), - [anon_sym_isz] = ACTIONS(1406), - [anon_sym_usz] = ACTIONS(1406), - [anon_sym_anyfault] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_DOLLARtypeof] = ACTIONS(1406), - [anon_sym_DOLLARtypefrom] = ACTIONS(1406), - [anon_sym_DOLLARvatype] = ACTIONS(1406), - [anon_sym_DOLLARevaltype] = ACTIONS(1406), - [sym_real_literal] = ACTIONS(1408), + [sym_ident] = ACTIONS(1561), + [sym_integer_literal] = ACTIONS(1563), + [anon_sym_SQUOTE] = ACTIONS(1563), + [anon_sym_DQUOTE] = ACTIONS(1563), + [anon_sym_BQUOTE] = ACTIONS(1563), + [sym_bytes_literal] = ACTIONS(1563), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1561), + [sym_at_ident] = ACTIONS(1563), + [sym_hash_ident] = ACTIONS(1563), + [sym_type_ident] = ACTIONS(1563), + [sym_ct_type_ident] = ACTIONS(1563), + [sym_const_ident] = ACTIONS(1561), + [sym_builtin] = ACTIONS(1563), + [anon_sym_LPAREN] = ACTIONS(1563), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_static] = ACTIONS(1561), + [anon_sym_tlocal] = ACTIONS(1561), + [anon_sym_SEMI] = ACTIONS(1563), + [anon_sym_fn] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_const] = ACTIONS(1561), + [anon_sym_var] = ACTIONS(1561), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_continue] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1561), + [anon_sym_defer] = ACTIONS(1561), + [anon_sym_assert] = ACTIONS(1561), + [anon_sym_nextcase] = ACTIONS(1561), + [anon_sym_switch] = ACTIONS(1561), + [anon_sym_AMP_AMP] = ACTIONS(1563), + [anon_sym_if] = ACTIONS(1561), + [anon_sym_for] = ACTIONS(1561), + [anon_sym_foreach] = ACTIONS(1561), + [anon_sym_foreach_r] = ACTIONS(1561), + [anon_sym_while] = ACTIONS(1561), + [anon_sym_do] = ACTIONS(1561), + [anon_sym_int] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1561), + [anon_sym_STAR] = ACTIONS(1563), + [anon_sym_asm] = ACTIONS(1561), + [anon_sym_DOLLARassert] = ACTIONS(1561), + [anon_sym_DOLLARerror] = ACTIONS(1561), + [anon_sym_DOLLARecho] = ACTIONS(1561), + [anon_sym_DOLLARif] = ACTIONS(1561), + [anon_sym_DOLLARcase] = ACTIONS(1561), + [anon_sym_DOLLARdefault] = ACTIONS(1561), + [anon_sym_DOLLARswitch] = ACTIONS(1561), + [anon_sym_DOLLARendswitch] = ACTIONS(1561), + [anon_sym_DOLLARfor] = ACTIONS(1561), + [anon_sym_DOLLARforeach] = ACTIONS(1561), + [anon_sym_DOLLARalignof] = ACTIONS(1561), + [anon_sym_DOLLARextnameof] = ACTIONS(1561), + [anon_sym_DOLLARnameof] = ACTIONS(1561), + [anon_sym_DOLLARoffsetof] = ACTIONS(1561), + [anon_sym_DOLLARqnameof] = ACTIONS(1561), + [anon_sym_DOLLARvaconst] = ACTIONS(1561), + [anon_sym_DOLLARvaarg] = ACTIONS(1561), + [anon_sym_DOLLARvaref] = ACTIONS(1561), + [anon_sym_DOLLARvaexpr] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1561), + [anon_sym_false] = ACTIONS(1561), + [anon_sym_null] = ACTIONS(1561), + [anon_sym_DOLLARvacount] = ACTIONS(1561), + [anon_sym_DOLLARappend] = ACTIONS(1561), + [anon_sym_DOLLARconcat] = ACTIONS(1561), + [anon_sym_DOLLAReval] = ACTIONS(1561), + [anon_sym_DOLLARis_const] = ACTIONS(1561), + [anon_sym_DOLLARsizeof] = ACTIONS(1561), + [anon_sym_DOLLARstringify] = ACTIONS(1561), + [anon_sym_DOLLARand] = ACTIONS(1561), + [anon_sym_DOLLARdefined] = ACTIONS(1561), + [anon_sym_DOLLARembed] = ACTIONS(1561), + [anon_sym_DOLLARor] = ACTIONS(1561), + [anon_sym_DOLLARfeature] = ACTIONS(1561), + [anon_sym_DOLLARassignable] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1563), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_PLUS_PLUS] = ACTIONS(1563), + [anon_sym_DASH_DASH] = ACTIONS(1563), + [anon_sym_typeid] = ACTIONS(1561), + [anon_sym_LBRACE_PIPE] = ACTIONS(1563), + [anon_sym_void] = ACTIONS(1561), + [anon_sym_bool] = ACTIONS(1561), + [anon_sym_char] = ACTIONS(1561), + [anon_sym_ichar] = ACTIONS(1561), + [anon_sym_short] = ACTIONS(1561), + [anon_sym_ushort] = ACTIONS(1561), + [anon_sym_uint] = ACTIONS(1561), + [anon_sym_long] = ACTIONS(1561), + [anon_sym_ulong] = ACTIONS(1561), + [anon_sym_int128] = ACTIONS(1561), + [anon_sym_uint128] = ACTIONS(1561), + [anon_sym_float] = ACTIONS(1561), + [anon_sym_double] = ACTIONS(1561), + [anon_sym_float16] = ACTIONS(1561), + [anon_sym_bfloat16] = ACTIONS(1561), + [anon_sym_float128] = ACTIONS(1561), + [anon_sym_iptr] = ACTIONS(1561), + [anon_sym_uptr] = ACTIONS(1561), + [anon_sym_isz] = ACTIONS(1561), + [anon_sym_usz] = ACTIONS(1561), + [anon_sym_anyfault] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1561), + [anon_sym_DOLLARtypeof] = ACTIONS(1561), + [anon_sym_DOLLARtypefrom] = ACTIONS(1561), + [anon_sym_DOLLARvatype] = ACTIONS(1561), + [anon_sym_DOLLARevaltype] = ACTIONS(1561), + [sym_real_literal] = ACTIONS(1563), }, [490] = { [sym_line_comment] = STATE(490), [sym_doc_comment] = STATE(490), [sym_block_comment] = STATE(490), - [sym_ident] = ACTIONS(1410), - [sym_integer_literal] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1412), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_BQUOTE] = ACTIONS(1412), - [sym_bytes_literal] = ACTIONS(1412), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1410), - [sym_at_ident] = ACTIONS(1412), - [sym_hash_ident] = ACTIONS(1412), - [sym_type_ident] = ACTIONS(1412), - [sym_ct_type_ident] = ACTIONS(1412), - [sym_const_ident] = ACTIONS(1410), - [sym_builtin] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1410), - [anon_sym_static] = ACTIONS(1410), - [anon_sym_tlocal] = ACTIONS(1410), - [anon_sym_SEMI] = ACTIONS(1412), - [anon_sym_fn] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_var] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_defer] = ACTIONS(1410), - [anon_sym_assert] = ACTIONS(1410), - [anon_sym_nextcase] = ACTIONS(1410), - [anon_sym_switch] = ACTIONS(1410), - [anon_sym_AMP_AMP] = ACTIONS(1412), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_foreach] = ACTIONS(1410), - [anon_sym_foreach_r] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [anon_sym_do] = ACTIONS(1410), - [anon_sym_int] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1412), - [anon_sym_asm] = ACTIONS(1410), - [anon_sym_DOLLARassert] = ACTIONS(1410), - [anon_sym_DOLLARerror] = ACTIONS(1410), - [anon_sym_DOLLARecho] = ACTIONS(1410), - [anon_sym_DOLLARif] = ACTIONS(1410), - [anon_sym_DOLLARcase] = ACTIONS(1410), - [anon_sym_DOLLARdefault] = ACTIONS(1410), - [anon_sym_DOLLARswitch] = ACTIONS(1410), - [anon_sym_DOLLARendswitch] = ACTIONS(1410), - [anon_sym_DOLLARfor] = ACTIONS(1410), - [anon_sym_DOLLARforeach] = ACTIONS(1410), - [anon_sym_DOLLARalignof] = ACTIONS(1410), - [anon_sym_DOLLARextnameof] = ACTIONS(1410), - [anon_sym_DOLLARnameof] = ACTIONS(1410), - [anon_sym_DOLLARoffsetof] = ACTIONS(1410), - [anon_sym_DOLLARqnameof] = ACTIONS(1410), - [anon_sym_DOLLARvaconst] = ACTIONS(1410), - [anon_sym_DOLLARvaarg] = ACTIONS(1410), - [anon_sym_DOLLARvaref] = ACTIONS(1410), - [anon_sym_DOLLARvaexpr] = ACTIONS(1410), - [anon_sym_true] = ACTIONS(1410), - [anon_sym_false] = ACTIONS(1410), - [anon_sym_null] = ACTIONS(1410), - [anon_sym_DOLLARvacount] = ACTIONS(1410), - [anon_sym_DOLLARappend] = ACTIONS(1410), - [anon_sym_DOLLARconcat] = ACTIONS(1410), - [anon_sym_DOLLAReval] = ACTIONS(1410), - [anon_sym_DOLLARis_const] = ACTIONS(1410), - [anon_sym_DOLLARsizeof] = ACTIONS(1410), - [anon_sym_DOLLARstringify] = ACTIONS(1410), - [anon_sym_DOLLARand] = ACTIONS(1410), - [anon_sym_DOLLARdefined] = ACTIONS(1410), - [anon_sym_DOLLARembed] = ACTIONS(1410), - [anon_sym_DOLLARor] = ACTIONS(1410), - [anon_sym_DOLLARfeature] = ACTIONS(1410), - [anon_sym_DOLLARassignable] = ACTIONS(1410), - [anon_sym_BANG] = ACTIONS(1412), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_PLUS_PLUS] = ACTIONS(1412), - [anon_sym_DASH_DASH] = ACTIONS(1412), - [anon_sym_typeid] = ACTIONS(1410), - [anon_sym_LBRACE_PIPE] = ACTIONS(1412), - [anon_sym_void] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_ichar] = ACTIONS(1410), - [anon_sym_short] = ACTIONS(1410), - [anon_sym_ushort] = ACTIONS(1410), - [anon_sym_uint] = ACTIONS(1410), - [anon_sym_long] = ACTIONS(1410), - [anon_sym_ulong] = ACTIONS(1410), - [anon_sym_int128] = ACTIONS(1410), - [anon_sym_uint128] = ACTIONS(1410), - [anon_sym_float] = ACTIONS(1410), - [anon_sym_double] = ACTIONS(1410), - [anon_sym_float16] = ACTIONS(1410), - [anon_sym_bfloat16] = ACTIONS(1410), - [anon_sym_float128] = ACTIONS(1410), - [anon_sym_iptr] = ACTIONS(1410), - [anon_sym_uptr] = ACTIONS(1410), - [anon_sym_isz] = ACTIONS(1410), - [anon_sym_usz] = ACTIONS(1410), - [anon_sym_anyfault] = ACTIONS(1410), - [anon_sym_any] = ACTIONS(1410), - [anon_sym_DOLLARtypeof] = ACTIONS(1410), - [anon_sym_DOLLARtypefrom] = ACTIONS(1410), - [anon_sym_DOLLARvatype] = ACTIONS(1410), - [anon_sym_DOLLARevaltype] = ACTIONS(1410), - [sym_real_literal] = ACTIONS(1412), + [sym_ident] = ACTIONS(1395), + [sym_integer_literal] = ACTIONS(1397), + [anon_sym_SQUOTE] = ACTIONS(1397), + [anon_sym_DQUOTE] = ACTIONS(1397), + [anon_sym_BQUOTE] = ACTIONS(1397), + [sym_bytes_literal] = ACTIONS(1397), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1395), + [sym_at_ident] = ACTIONS(1397), + [sym_hash_ident] = ACTIONS(1397), + [sym_type_ident] = ACTIONS(1397), + [sym_ct_type_ident] = ACTIONS(1397), + [sym_const_ident] = ACTIONS(1395), + [sym_builtin] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_AMP] = ACTIONS(1395), + [anon_sym_static] = ACTIONS(1395), + [anon_sym_tlocal] = ACTIONS(1395), + [anon_sym_SEMI] = ACTIONS(1397), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_const] = ACTIONS(1395), + [anon_sym_var] = ACTIONS(1395), + [anon_sym_return] = ACTIONS(1395), + [anon_sym_continue] = ACTIONS(1395), + [anon_sym_break] = ACTIONS(1395), + [anon_sym_defer] = ACTIONS(1395), + [anon_sym_assert] = ACTIONS(1395), + [anon_sym_nextcase] = ACTIONS(1395), + [anon_sym_switch] = ACTIONS(1395), + [anon_sym_AMP_AMP] = ACTIONS(1397), + [anon_sym_if] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1395), + [anon_sym_foreach] = ACTIONS(1395), + [anon_sym_foreach_r] = ACTIONS(1395), + [anon_sym_while] = ACTIONS(1395), + [anon_sym_do] = ACTIONS(1395), + [anon_sym_int] = ACTIONS(1395), + [anon_sym_PLUS] = ACTIONS(1395), + [anon_sym_DASH] = ACTIONS(1395), + [anon_sym_STAR] = ACTIONS(1397), + [anon_sym_asm] = ACTIONS(1395), + [anon_sym_DOLLARassert] = ACTIONS(1395), + [anon_sym_DOLLARerror] = ACTIONS(1395), + [anon_sym_DOLLARecho] = ACTIONS(1395), + [anon_sym_DOLLARif] = ACTIONS(1395), + [anon_sym_DOLLARendif] = ACTIONS(1395), + [anon_sym_DOLLARelse] = ACTIONS(1395), + [anon_sym_DOLLARswitch] = ACTIONS(1395), + [anon_sym_DOLLARfor] = ACTIONS(1395), + [anon_sym_DOLLARforeach] = ACTIONS(1395), + [anon_sym_DOLLARalignof] = ACTIONS(1395), + [anon_sym_DOLLARextnameof] = ACTIONS(1395), + [anon_sym_DOLLARnameof] = ACTIONS(1395), + [anon_sym_DOLLARoffsetof] = ACTIONS(1395), + [anon_sym_DOLLARqnameof] = ACTIONS(1395), + [anon_sym_DOLLARvaconst] = ACTIONS(1395), + [anon_sym_DOLLARvaarg] = ACTIONS(1395), + [anon_sym_DOLLARvaref] = ACTIONS(1395), + [anon_sym_DOLLARvaexpr] = ACTIONS(1395), + [anon_sym_true] = ACTIONS(1395), + [anon_sym_false] = ACTIONS(1395), + [anon_sym_null] = ACTIONS(1395), + [anon_sym_DOLLARvacount] = ACTIONS(1395), + [anon_sym_DOLLARappend] = ACTIONS(1395), + [anon_sym_DOLLARconcat] = ACTIONS(1395), + [anon_sym_DOLLAReval] = ACTIONS(1395), + [anon_sym_DOLLARis_const] = ACTIONS(1395), + [anon_sym_DOLLARsizeof] = ACTIONS(1395), + [anon_sym_DOLLARstringify] = ACTIONS(1395), + [anon_sym_DOLLARand] = ACTIONS(1395), + [anon_sym_DOLLARdefined] = ACTIONS(1395), + [anon_sym_DOLLARembed] = ACTIONS(1395), + [anon_sym_DOLLARor] = ACTIONS(1395), + [anon_sym_DOLLARfeature] = ACTIONS(1395), + [anon_sym_DOLLARassignable] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_PLUS_PLUS] = ACTIONS(1397), + [anon_sym_DASH_DASH] = ACTIONS(1397), + [anon_sym_typeid] = ACTIONS(1395), + [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [anon_sym_void] = ACTIONS(1395), + [anon_sym_bool] = ACTIONS(1395), + [anon_sym_char] = ACTIONS(1395), + [anon_sym_ichar] = ACTIONS(1395), + [anon_sym_short] = ACTIONS(1395), + [anon_sym_ushort] = ACTIONS(1395), + [anon_sym_uint] = ACTIONS(1395), + [anon_sym_long] = ACTIONS(1395), + [anon_sym_ulong] = ACTIONS(1395), + [anon_sym_int128] = ACTIONS(1395), + [anon_sym_uint128] = ACTIONS(1395), + [anon_sym_float] = ACTIONS(1395), + [anon_sym_double] = ACTIONS(1395), + [anon_sym_float16] = ACTIONS(1395), + [anon_sym_bfloat16] = ACTIONS(1395), + [anon_sym_float128] = ACTIONS(1395), + [anon_sym_iptr] = ACTIONS(1395), + [anon_sym_uptr] = ACTIONS(1395), + [anon_sym_isz] = ACTIONS(1395), + [anon_sym_usz] = ACTIONS(1395), + [anon_sym_anyfault] = ACTIONS(1395), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_DOLLARtypeof] = ACTIONS(1395), + [anon_sym_DOLLARtypefrom] = ACTIONS(1395), + [anon_sym_DOLLARvatype] = ACTIONS(1395), + [anon_sym_DOLLARevaltype] = ACTIONS(1395), + [sym_real_literal] = ACTIONS(1397), }, [491] = { [sym_line_comment] = STATE(491), [sym_doc_comment] = STATE(491), [sym_block_comment] = STATE(491), - [sym_ident] = ACTIONS(1652), - [sym_integer_literal] = ACTIONS(1654), - [anon_sym_SQUOTE] = ACTIONS(1654), - [anon_sym_DQUOTE] = ACTIONS(1654), - [anon_sym_BQUOTE] = ACTIONS(1654), - [sym_bytes_literal] = ACTIONS(1654), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1652), - [sym_at_ident] = ACTIONS(1654), - [sym_hash_ident] = ACTIONS(1654), - [sym_type_ident] = ACTIONS(1654), - [sym_ct_type_ident] = ACTIONS(1654), - [sym_const_ident] = ACTIONS(1652), - [sym_builtin] = ACTIONS(1654), - [anon_sym_LPAREN] = ACTIONS(1654), - [anon_sym_AMP] = ACTIONS(1652), - [anon_sym_static] = ACTIONS(1652), - [anon_sym_tlocal] = ACTIONS(1652), - [anon_sym_SEMI] = ACTIONS(1654), - [anon_sym_fn] = ACTIONS(1652), - [anon_sym_LBRACE] = ACTIONS(1652), - [anon_sym_const] = ACTIONS(1652), - [anon_sym_var] = ACTIONS(1652), - [anon_sym_return] = ACTIONS(1652), - [anon_sym_continue] = ACTIONS(1652), - [anon_sym_break] = ACTIONS(1652), - [anon_sym_defer] = ACTIONS(1652), - [anon_sym_assert] = ACTIONS(1652), - [anon_sym_nextcase] = ACTIONS(1652), - [anon_sym_switch] = ACTIONS(1652), - [anon_sym_AMP_AMP] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1652), - [anon_sym_for] = ACTIONS(1652), - [anon_sym_foreach] = ACTIONS(1652), - [anon_sym_foreach_r] = ACTIONS(1652), - [anon_sym_while] = ACTIONS(1652), - [anon_sym_do] = ACTIONS(1652), - [anon_sym_int] = ACTIONS(1652), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_asm] = ACTIONS(1652), - [anon_sym_DOLLARassert] = ACTIONS(1652), - [anon_sym_DOLLARerror] = ACTIONS(1652), - [anon_sym_DOLLARecho] = ACTIONS(1652), - [anon_sym_DOLLARif] = ACTIONS(1652), - [anon_sym_DOLLARcase] = ACTIONS(1652), - [anon_sym_DOLLARdefault] = ACTIONS(1652), - [anon_sym_DOLLARswitch] = ACTIONS(1652), - [anon_sym_DOLLARendswitch] = ACTIONS(1652), - [anon_sym_DOLLARfor] = ACTIONS(1652), - [anon_sym_DOLLARforeach] = ACTIONS(1652), - [anon_sym_DOLLARalignof] = ACTIONS(1652), - [anon_sym_DOLLARextnameof] = ACTIONS(1652), - [anon_sym_DOLLARnameof] = ACTIONS(1652), - [anon_sym_DOLLARoffsetof] = ACTIONS(1652), - [anon_sym_DOLLARqnameof] = ACTIONS(1652), - [anon_sym_DOLLARvaconst] = ACTIONS(1652), - [anon_sym_DOLLARvaarg] = ACTIONS(1652), - [anon_sym_DOLLARvaref] = ACTIONS(1652), - [anon_sym_DOLLARvaexpr] = ACTIONS(1652), - [anon_sym_true] = ACTIONS(1652), - [anon_sym_false] = ACTIONS(1652), - [anon_sym_null] = ACTIONS(1652), - [anon_sym_DOLLARvacount] = ACTIONS(1652), - [anon_sym_DOLLARappend] = ACTIONS(1652), - [anon_sym_DOLLARconcat] = ACTIONS(1652), - [anon_sym_DOLLAReval] = ACTIONS(1652), - [anon_sym_DOLLARis_const] = ACTIONS(1652), - [anon_sym_DOLLARsizeof] = ACTIONS(1652), - [anon_sym_DOLLARstringify] = ACTIONS(1652), - [anon_sym_DOLLARand] = ACTIONS(1652), - [anon_sym_DOLLARdefined] = ACTIONS(1652), - [anon_sym_DOLLARembed] = ACTIONS(1652), - [anon_sym_DOLLARor] = ACTIONS(1652), - [anon_sym_DOLLARfeature] = ACTIONS(1652), - [anon_sym_DOLLARassignable] = ACTIONS(1652), - [anon_sym_BANG] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1654), - [anon_sym_PLUS_PLUS] = ACTIONS(1654), - [anon_sym_DASH_DASH] = ACTIONS(1654), - [anon_sym_typeid] = ACTIONS(1652), - [anon_sym_LBRACE_PIPE] = ACTIONS(1654), - [anon_sym_void] = ACTIONS(1652), - [anon_sym_bool] = ACTIONS(1652), - [anon_sym_char] = ACTIONS(1652), - [anon_sym_ichar] = ACTIONS(1652), - [anon_sym_short] = ACTIONS(1652), - [anon_sym_ushort] = ACTIONS(1652), - [anon_sym_uint] = ACTIONS(1652), - [anon_sym_long] = ACTIONS(1652), - [anon_sym_ulong] = ACTIONS(1652), - [anon_sym_int128] = ACTIONS(1652), - [anon_sym_uint128] = ACTIONS(1652), - [anon_sym_float] = ACTIONS(1652), - [anon_sym_double] = ACTIONS(1652), - [anon_sym_float16] = ACTIONS(1652), - [anon_sym_bfloat16] = ACTIONS(1652), - [anon_sym_float128] = ACTIONS(1652), - [anon_sym_iptr] = ACTIONS(1652), - [anon_sym_uptr] = ACTIONS(1652), - [anon_sym_isz] = ACTIONS(1652), - [anon_sym_usz] = ACTIONS(1652), - [anon_sym_anyfault] = ACTIONS(1652), - [anon_sym_any] = ACTIONS(1652), - [anon_sym_DOLLARtypeof] = ACTIONS(1652), - [anon_sym_DOLLARtypefrom] = ACTIONS(1652), - [anon_sym_DOLLARvatype] = ACTIONS(1652), - [anon_sym_DOLLARevaltype] = ACTIONS(1652), - [sym_real_literal] = ACTIONS(1654), + [sym_ident] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(1405), + [anon_sym_SQUOTE] = ACTIONS(1405), + [anon_sym_DQUOTE] = ACTIONS(1405), + [anon_sym_BQUOTE] = ACTIONS(1405), + [sym_bytes_literal] = ACTIONS(1405), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1403), + [sym_at_ident] = ACTIONS(1405), + [sym_hash_ident] = ACTIONS(1405), + [sym_type_ident] = ACTIONS(1405), + [sym_ct_type_ident] = ACTIONS(1405), + [sym_const_ident] = ACTIONS(1403), + [sym_builtin] = ACTIONS(1405), + [anon_sym_LPAREN] = ACTIONS(1405), + [anon_sym_AMP] = ACTIONS(1403), + [anon_sym_static] = ACTIONS(1403), + [anon_sym_tlocal] = ACTIONS(1403), + [anon_sym_SEMI] = ACTIONS(1405), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_const] = ACTIONS(1403), + [anon_sym_var] = ACTIONS(1403), + [anon_sym_return] = ACTIONS(1403), + [anon_sym_continue] = ACTIONS(1403), + [anon_sym_break] = ACTIONS(1403), + [anon_sym_defer] = ACTIONS(1403), + [anon_sym_assert] = ACTIONS(1403), + [anon_sym_nextcase] = ACTIONS(1403), + [anon_sym_switch] = ACTIONS(1403), + [anon_sym_AMP_AMP] = ACTIONS(1405), + [anon_sym_if] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1403), + [anon_sym_foreach] = ACTIONS(1403), + [anon_sym_foreach_r] = ACTIONS(1403), + [anon_sym_while] = ACTIONS(1403), + [anon_sym_do] = ACTIONS(1403), + [anon_sym_int] = ACTIONS(1403), + [anon_sym_PLUS] = ACTIONS(1403), + [anon_sym_DASH] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(1405), + [anon_sym_asm] = ACTIONS(1403), + [anon_sym_DOLLARassert] = ACTIONS(1403), + [anon_sym_DOLLARerror] = ACTIONS(1403), + [anon_sym_DOLLARecho] = ACTIONS(1403), + [anon_sym_DOLLARif] = ACTIONS(1403), + [anon_sym_DOLLARendif] = ACTIONS(1403), + [anon_sym_DOLLARelse] = ACTIONS(1403), + [anon_sym_DOLLARswitch] = ACTIONS(1403), + [anon_sym_DOLLARfor] = ACTIONS(1403), + [anon_sym_DOLLARforeach] = ACTIONS(1403), + [anon_sym_DOLLARalignof] = ACTIONS(1403), + [anon_sym_DOLLARextnameof] = ACTIONS(1403), + [anon_sym_DOLLARnameof] = ACTIONS(1403), + [anon_sym_DOLLARoffsetof] = ACTIONS(1403), + [anon_sym_DOLLARqnameof] = ACTIONS(1403), + [anon_sym_DOLLARvaconst] = ACTIONS(1403), + [anon_sym_DOLLARvaarg] = ACTIONS(1403), + [anon_sym_DOLLARvaref] = ACTIONS(1403), + [anon_sym_DOLLARvaexpr] = ACTIONS(1403), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), + [anon_sym_null] = ACTIONS(1403), + [anon_sym_DOLLARvacount] = ACTIONS(1403), + [anon_sym_DOLLARappend] = ACTIONS(1403), + [anon_sym_DOLLARconcat] = ACTIONS(1403), + [anon_sym_DOLLAReval] = ACTIONS(1403), + [anon_sym_DOLLARis_const] = ACTIONS(1403), + [anon_sym_DOLLARsizeof] = ACTIONS(1403), + [anon_sym_DOLLARstringify] = ACTIONS(1403), + [anon_sym_DOLLARand] = ACTIONS(1403), + [anon_sym_DOLLARdefined] = ACTIONS(1403), + [anon_sym_DOLLARembed] = ACTIONS(1403), + [anon_sym_DOLLARor] = ACTIONS(1403), + [anon_sym_DOLLARfeature] = ACTIONS(1403), + [anon_sym_DOLLARassignable] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1405), + [anon_sym_PLUS_PLUS] = ACTIONS(1405), + [anon_sym_DASH_DASH] = ACTIONS(1405), + [anon_sym_typeid] = ACTIONS(1403), + [anon_sym_LBRACE_PIPE] = ACTIONS(1405), + [anon_sym_void] = ACTIONS(1403), + [anon_sym_bool] = ACTIONS(1403), + [anon_sym_char] = ACTIONS(1403), + [anon_sym_ichar] = ACTIONS(1403), + [anon_sym_short] = ACTIONS(1403), + [anon_sym_ushort] = ACTIONS(1403), + [anon_sym_uint] = ACTIONS(1403), + [anon_sym_long] = ACTIONS(1403), + [anon_sym_ulong] = ACTIONS(1403), + [anon_sym_int128] = ACTIONS(1403), + [anon_sym_uint128] = ACTIONS(1403), + [anon_sym_float] = ACTIONS(1403), + [anon_sym_double] = ACTIONS(1403), + [anon_sym_float16] = ACTIONS(1403), + [anon_sym_bfloat16] = ACTIONS(1403), + [anon_sym_float128] = ACTIONS(1403), + [anon_sym_iptr] = ACTIONS(1403), + [anon_sym_uptr] = ACTIONS(1403), + [anon_sym_isz] = ACTIONS(1403), + [anon_sym_usz] = ACTIONS(1403), + [anon_sym_anyfault] = ACTIONS(1403), + [anon_sym_any] = ACTIONS(1403), + [anon_sym_DOLLARtypeof] = ACTIONS(1403), + [anon_sym_DOLLARtypefrom] = ACTIONS(1403), + [anon_sym_DOLLARvatype] = ACTIONS(1403), + [anon_sym_DOLLARevaltype] = ACTIONS(1403), + [sym_real_literal] = ACTIONS(1405), }, [492] = { [sym_line_comment] = STATE(492), [sym_doc_comment] = STATE(492), [sym_block_comment] = STATE(492), - [sym_ident] = ACTIONS(1568), - [sym_integer_literal] = ACTIONS(1570), - [anon_sym_SQUOTE] = ACTIONS(1570), - [anon_sym_DQUOTE] = ACTIONS(1570), - [anon_sym_BQUOTE] = ACTIONS(1570), - [sym_bytes_literal] = ACTIONS(1570), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1568), - [sym_at_ident] = ACTIONS(1570), - [sym_hash_ident] = ACTIONS(1570), - [sym_type_ident] = ACTIONS(1570), - [sym_ct_type_ident] = ACTIONS(1570), - [sym_const_ident] = ACTIONS(1568), - [sym_builtin] = ACTIONS(1570), - [anon_sym_LPAREN] = ACTIONS(1570), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_static] = ACTIONS(1568), - [anon_sym_tlocal] = ACTIONS(1568), - [anon_sym_SEMI] = ACTIONS(1570), - [anon_sym_fn] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(1568), - [anon_sym_const] = ACTIONS(1568), - [anon_sym_var] = ACTIONS(1568), - [anon_sym_return] = ACTIONS(1568), - [anon_sym_continue] = ACTIONS(1568), - [anon_sym_break] = ACTIONS(1568), - [anon_sym_defer] = ACTIONS(1568), - [anon_sym_assert] = ACTIONS(1568), - [anon_sym_nextcase] = ACTIONS(1568), - [anon_sym_switch] = ACTIONS(1568), - [anon_sym_AMP_AMP] = ACTIONS(1570), - [anon_sym_if] = ACTIONS(1568), - [anon_sym_for] = ACTIONS(1568), - [anon_sym_foreach] = ACTIONS(1568), - [anon_sym_foreach_r] = ACTIONS(1568), - [anon_sym_while] = ACTIONS(1568), - [anon_sym_do] = ACTIONS(1568), - [anon_sym_int] = ACTIONS(1568), - [anon_sym_PLUS] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1568), - [anon_sym_STAR] = ACTIONS(1570), - [anon_sym_asm] = ACTIONS(1568), - [anon_sym_DOLLARassert] = ACTIONS(1568), - [anon_sym_DOLLARerror] = ACTIONS(1568), - [anon_sym_DOLLARecho] = ACTIONS(1568), - [anon_sym_DOLLARif] = ACTIONS(1568), - [anon_sym_DOLLARcase] = ACTIONS(1568), - [anon_sym_DOLLARdefault] = ACTIONS(1568), - [anon_sym_DOLLARswitch] = ACTIONS(1568), - [anon_sym_DOLLARendswitch] = ACTIONS(1568), - [anon_sym_DOLLARfor] = ACTIONS(1568), - [anon_sym_DOLLARforeach] = ACTIONS(1568), - [anon_sym_DOLLARalignof] = ACTIONS(1568), - [anon_sym_DOLLARextnameof] = ACTIONS(1568), - [anon_sym_DOLLARnameof] = ACTIONS(1568), - [anon_sym_DOLLARoffsetof] = ACTIONS(1568), - [anon_sym_DOLLARqnameof] = ACTIONS(1568), - [anon_sym_DOLLARvaconst] = ACTIONS(1568), - [anon_sym_DOLLARvaarg] = ACTIONS(1568), - [anon_sym_DOLLARvaref] = ACTIONS(1568), - [anon_sym_DOLLARvaexpr] = ACTIONS(1568), - [anon_sym_true] = ACTIONS(1568), - [anon_sym_false] = ACTIONS(1568), - [anon_sym_null] = ACTIONS(1568), - [anon_sym_DOLLARvacount] = ACTIONS(1568), - [anon_sym_DOLLARappend] = ACTIONS(1568), - [anon_sym_DOLLARconcat] = ACTIONS(1568), - [anon_sym_DOLLAReval] = ACTIONS(1568), - [anon_sym_DOLLARis_const] = ACTIONS(1568), - [anon_sym_DOLLARsizeof] = ACTIONS(1568), - [anon_sym_DOLLARstringify] = ACTIONS(1568), - [anon_sym_DOLLARand] = ACTIONS(1568), - [anon_sym_DOLLARdefined] = ACTIONS(1568), - [anon_sym_DOLLARembed] = ACTIONS(1568), - [anon_sym_DOLLARor] = ACTIONS(1568), - [anon_sym_DOLLARfeature] = ACTIONS(1568), - [anon_sym_DOLLARassignable] = ACTIONS(1568), - [anon_sym_BANG] = ACTIONS(1570), - [anon_sym_TILDE] = ACTIONS(1570), - [anon_sym_PLUS_PLUS] = ACTIONS(1570), - [anon_sym_DASH_DASH] = ACTIONS(1570), - [anon_sym_typeid] = ACTIONS(1568), - [anon_sym_LBRACE_PIPE] = ACTIONS(1570), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_bool] = ACTIONS(1568), - [anon_sym_char] = ACTIONS(1568), - [anon_sym_ichar] = ACTIONS(1568), - [anon_sym_short] = ACTIONS(1568), - [anon_sym_ushort] = ACTIONS(1568), - [anon_sym_uint] = ACTIONS(1568), - [anon_sym_long] = ACTIONS(1568), - [anon_sym_ulong] = ACTIONS(1568), - [anon_sym_int128] = ACTIONS(1568), - [anon_sym_uint128] = ACTIONS(1568), - [anon_sym_float] = ACTIONS(1568), - [anon_sym_double] = ACTIONS(1568), - [anon_sym_float16] = ACTIONS(1568), - [anon_sym_bfloat16] = ACTIONS(1568), - [anon_sym_float128] = ACTIONS(1568), - [anon_sym_iptr] = ACTIONS(1568), - [anon_sym_uptr] = ACTIONS(1568), - [anon_sym_isz] = ACTIONS(1568), - [anon_sym_usz] = ACTIONS(1568), - [anon_sym_anyfault] = ACTIONS(1568), - [anon_sym_any] = ACTIONS(1568), - [anon_sym_DOLLARtypeof] = ACTIONS(1568), - [anon_sym_DOLLARtypefrom] = ACTIONS(1568), - [anon_sym_DOLLARvatype] = ACTIONS(1568), - [anon_sym_DOLLARevaltype] = ACTIONS(1568), - [sym_real_literal] = ACTIONS(1570), + [sym_ident] = ACTIONS(1605), + [sym_integer_literal] = ACTIONS(1607), + [anon_sym_SQUOTE] = ACTIONS(1607), + [anon_sym_DQUOTE] = ACTIONS(1607), + [anon_sym_BQUOTE] = ACTIONS(1607), + [sym_bytes_literal] = ACTIONS(1607), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1605), + [sym_at_ident] = ACTIONS(1607), + [sym_hash_ident] = ACTIONS(1607), + [sym_type_ident] = ACTIONS(1607), + [sym_ct_type_ident] = ACTIONS(1607), + [sym_const_ident] = ACTIONS(1605), + [sym_builtin] = ACTIONS(1607), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_static] = ACTIONS(1605), + [anon_sym_tlocal] = ACTIONS(1605), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_fn] = ACTIONS(1605), + [anon_sym_LBRACE] = ACTIONS(1605), + [anon_sym_const] = ACTIONS(1605), + [anon_sym_var] = ACTIONS(1605), + [anon_sym_return] = ACTIONS(1605), + [anon_sym_continue] = ACTIONS(1605), + [anon_sym_break] = ACTIONS(1605), + [anon_sym_defer] = ACTIONS(1605), + [anon_sym_assert] = ACTIONS(1605), + [anon_sym_nextcase] = ACTIONS(1605), + [anon_sym_switch] = ACTIONS(1605), + [anon_sym_AMP_AMP] = ACTIONS(1607), + [anon_sym_if] = ACTIONS(1605), + [anon_sym_for] = ACTIONS(1605), + [anon_sym_foreach] = ACTIONS(1605), + [anon_sym_foreach_r] = ACTIONS(1605), + [anon_sym_while] = ACTIONS(1605), + [anon_sym_do] = ACTIONS(1605), + [anon_sym_int] = ACTIONS(1605), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_asm] = ACTIONS(1605), + [anon_sym_DOLLARassert] = ACTIONS(1605), + [anon_sym_DOLLARerror] = ACTIONS(1605), + [anon_sym_DOLLARecho] = ACTIONS(1605), + [anon_sym_DOLLARif] = ACTIONS(1605), + [anon_sym_DOLLARendif] = ACTIONS(1605), + [anon_sym_DOLLARelse] = ACTIONS(1605), + [anon_sym_DOLLARswitch] = ACTIONS(1605), + [anon_sym_DOLLARfor] = ACTIONS(1605), + [anon_sym_DOLLARforeach] = ACTIONS(1605), + [anon_sym_DOLLARalignof] = ACTIONS(1605), + [anon_sym_DOLLARextnameof] = ACTIONS(1605), + [anon_sym_DOLLARnameof] = ACTIONS(1605), + [anon_sym_DOLLARoffsetof] = ACTIONS(1605), + [anon_sym_DOLLARqnameof] = ACTIONS(1605), + [anon_sym_DOLLARvaconst] = ACTIONS(1605), + [anon_sym_DOLLARvaarg] = ACTIONS(1605), + [anon_sym_DOLLARvaref] = ACTIONS(1605), + [anon_sym_DOLLARvaexpr] = ACTIONS(1605), + [anon_sym_true] = ACTIONS(1605), + [anon_sym_false] = ACTIONS(1605), + [anon_sym_null] = ACTIONS(1605), + [anon_sym_DOLLARvacount] = ACTIONS(1605), + [anon_sym_DOLLARappend] = ACTIONS(1605), + [anon_sym_DOLLARconcat] = ACTIONS(1605), + [anon_sym_DOLLAReval] = ACTIONS(1605), + [anon_sym_DOLLARis_const] = ACTIONS(1605), + [anon_sym_DOLLARsizeof] = ACTIONS(1605), + [anon_sym_DOLLARstringify] = ACTIONS(1605), + [anon_sym_DOLLARand] = ACTIONS(1605), + [anon_sym_DOLLARdefined] = ACTIONS(1605), + [anon_sym_DOLLARembed] = ACTIONS(1605), + [anon_sym_DOLLARor] = ACTIONS(1605), + [anon_sym_DOLLARfeature] = ACTIONS(1605), + [anon_sym_DOLLARassignable] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [anon_sym_TILDE] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1607), + [anon_sym_DASH_DASH] = ACTIONS(1607), + [anon_sym_typeid] = ACTIONS(1605), + [anon_sym_LBRACE_PIPE] = ACTIONS(1607), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_bool] = ACTIONS(1605), + [anon_sym_char] = ACTIONS(1605), + [anon_sym_ichar] = ACTIONS(1605), + [anon_sym_short] = ACTIONS(1605), + [anon_sym_ushort] = ACTIONS(1605), + [anon_sym_uint] = ACTIONS(1605), + [anon_sym_long] = ACTIONS(1605), + [anon_sym_ulong] = ACTIONS(1605), + [anon_sym_int128] = ACTIONS(1605), + [anon_sym_uint128] = ACTIONS(1605), + [anon_sym_float] = ACTIONS(1605), + [anon_sym_double] = ACTIONS(1605), + [anon_sym_float16] = ACTIONS(1605), + [anon_sym_bfloat16] = ACTIONS(1605), + [anon_sym_float128] = ACTIONS(1605), + [anon_sym_iptr] = ACTIONS(1605), + [anon_sym_uptr] = ACTIONS(1605), + [anon_sym_isz] = ACTIONS(1605), + [anon_sym_usz] = ACTIONS(1605), + [anon_sym_anyfault] = ACTIONS(1605), + [anon_sym_any] = ACTIONS(1605), + [anon_sym_DOLLARtypeof] = ACTIONS(1605), + [anon_sym_DOLLARtypefrom] = ACTIONS(1605), + [anon_sym_DOLLARvatype] = ACTIONS(1605), + [anon_sym_DOLLARevaltype] = ACTIONS(1605), + [sym_real_literal] = ACTIONS(1607), }, [493] = { [sym_line_comment] = STATE(493), [sym_doc_comment] = STATE(493), [sym_block_comment] = STATE(493), - [sym_ident] = ACTIONS(1540), - [sym_integer_literal] = ACTIONS(1542), - [anon_sym_SQUOTE] = ACTIONS(1542), - [anon_sym_DQUOTE] = ACTIONS(1542), - [anon_sym_BQUOTE] = ACTIONS(1542), - [sym_bytes_literal] = ACTIONS(1542), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1540), - [sym_at_ident] = ACTIONS(1542), - [sym_hash_ident] = ACTIONS(1542), - [sym_type_ident] = ACTIONS(1542), - [sym_ct_type_ident] = ACTIONS(1542), - [sym_const_ident] = ACTIONS(1540), - [sym_builtin] = ACTIONS(1542), - [anon_sym_LPAREN] = ACTIONS(1542), - [anon_sym_AMP] = ACTIONS(1540), - [anon_sym_static] = ACTIONS(1540), - [anon_sym_tlocal] = ACTIONS(1540), - [anon_sym_SEMI] = ACTIONS(1542), - [anon_sym_fn] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(1540), - [anon_sym_const] = ACTIONS(1540), - [anon_sym_var] = ACTIONS(1540), - [anon_sym_return] = ACTIONS(1540), - [anon_sym_continue] = ACTIONS(1540), - [anon_sym_break] = ACTIONS(1540), - [anon_sym_defer] = ACTIONS(1540), - [anon_sym_assert] = ACTIONS(1540), - [anon_sym_nextcase] = ACTIONS(1540), - [anon_sym_switch] = ACTIONS(1540), - [anon_sym_AMP_AMP] = ACTIONS(1542), - [anon_sym_if] = ACTIONS(1540), - [anon_sym_for] = ACTIONS(1540), - [anon_sym_foreach] = ACTIONS(1540), - [anon_sym_foreach_r] = ACTIONS(1540), - [anon_sym_while] = ACTIONS(1540), - [anon_sym_do] = ACTIONS(1540), - [anon_sym_int] = ACTIONS(1540), - [anon_sym_PLUS] = ACTIONS(1540), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_STAR] = ACTIONS(1542), - [anon_sym_asm] = ACTIONS(1540), - [anon_sym_DOLLARassert] = ACTIONS(1540), - [anon_sym_DOLLARerror] = ACTIONS(1540), - [anon_sym_DOLLARecho] = ACTIONS(1540), - [anon_sym_DOLLARif] = ACTIONS(1540), - [anon_sym_DOLLARcase] = ACTIONS(1540), - [anon_sym_DOLLARdefault] = ACTIONS(1540), - [anon_sym_DOLLARswitch] = ACTIONS(1540), - [anon_sym_DOLLARendswitch] = ACTIONS(1540), - [anon_sym_DOLLARfor] = ACTIONS(1540), - [anon_sym_DOLLARforeach] = ACTIONS(1540), - [anon_sym_DOLLARalignof] = ACTIONS(1540), - [anon_sym_DOLLARextnameof] = ACTIONS(1540), - [anon_sym_DOLLARnameof] = ACTIONS(1540), - [anon_sym_DOLLARoffsetof] = ACTIONS(1540), - [anon_sym_DOLLARqnameof] = ACTIONS(1540), - [anon_sym_DOLLARvaconst] = ACTIONS(1540), - [anon_sym_DOLLARvaarg] = ACTIONS(1540), - [anon_sym_DOLLARvaref] = ACTIONS(1540), - [anon_sym_DOLLARvaexpr] = ACTIONS(1540), - [anon_sym_true] = ACTIONS(1540), - [anon_sym_false] = ACTIONS(1540), - [anon_sym_null] = ACTIONS(1540), - [anon_sym_DOLLARvacount] = ACTIONS(1540), - [anon_sym_DOLLARappend] = ACTIONS(1540), - [anon_sym_DOLLARconcat] = ACTIONS(1540), - [anon_sym_DOLLAReval] = ACTIONS(1540), - [anon_sym_DOLLARis_const] = ACTIONS(1540), - [anon_sym_DOLLARsizeof] = ACTIONS(1540), - [anon_sym_DOLLARstringify] = ACTIONS(1540), - [anon_sym_DOLLARand] = ACTIONS(1540), - [anon_sym_DOLLARdefined] = ACTIONS(1540), - [anon_sym_DOLLARembed] = ACTIONS(1540), - [anon_sym_DOLLARor] = ACTIONS(1540), - [anon_sym_DOLLARfeature] = ACTIONS(1540), - [anon_sym_DOLLARassignable] = ACTIONS(1540), - [anon_sym_BANG] = ACTIONS(1542), - [anon_sym_TILDE] = ACTIONS(1542), - [anon_sym_PLUS_PLUS] = ACTIONS(1542), - [anon_sym_DASH_DASH] = ACTIONS(1542), - [anon_sym_typeid] = ACTIONS(1540), - [anon_sym_LBRACE_PIPE] = ACTIONS(1542), - [anon_sym_void] = ACTIONS(1540), - [anon_sym_bool] = ACTIONS(1540), - [anon_sym_char] = ACTIONS(1540), - [anon_sym_ichar] = ACTIONS(1540), - [anon_sym_short] = ACTIONS(1540), - [anon_sym_ushort] = ACTIONS(1540), - [anon_sym_uint] = ACTIONS(1540), - [anon_sym_long] = ACTIONS(1540), - [anon_sym_ulong] = ACTIONS(1540), - [anon_sym_int128] = ACTIONS(1540), - [anon_sym_uint128] = ACTIONS(1540), - [anon_sym_float] = ACTIONS(1540), - [anon_sym_double] = ACTIONS(1540), - [anon_sym_float16] = ACTIONS(1540), - [anon_sym_bfloat16] = ACTIONS(1540), - [anon_sym_float128] = ACTIONS(1540), - [anon_sym_iptr] = ACTIONS(1540), - [anon_sym_uptr] = ACTIONS(1540), - [anon_sym_isz] = ACTIONS(1540), - [anon_sym_usz] = ACTIONS(1540), - [anon_sym_anyfault] = ACTIONS(1540), - [anon_sym_any] = ACTIONS(1540), - [anon_sym_DOLLARtypeof] = ACTIONS(1540), - [anon_sym_DOLLARtypefrom] = ACTIONS(1540), - [anon_sym_DOLLARvatype] = ACTIONS(1540), - [anon_sym_DOLLARevaltype] = ACTIONS(1540), - [sym_real_literal] = ACTIONS(1542), + [sym_ident] = ACTIONS(1609), + [sym_integer_literal] = ACTIONS(1611), + [anon_sym_SQUOTE] = ACTIONS(1611), + [anon_sym_DQUOTE] = ACTIONS(1611), + [anon_sym_BQUOTE] = ACTIONS(1611), + [sym_bytes_literal] = ACTIONS(1611), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1609), + [sym_at_ident] = ACTIONS(1611), + [sym_hash_ident] = ACTIONS(1611), + [sym_type_ident] = ACTIONS(1611), + [sym_ct_type_ident] = ACTIONS(1611), + [sym_const_ident] = ACTIONS(1609), + [sym_builtin] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1611), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_static] = ACTIONS(1609), + [anon_sym_tlocal] = ACTIONS(1609), + [anon_sym_SEMI] = ACTIONS(1611), + [anon_sym_fn] = ACTIONS(1609), + [anon_sym_LBRACE] = ACTIONS(1609), + [anon_sym_const] = ACTIONS(1609), + [anon_sym_var] = ACTIONS(1609), + [anon_sym_return] = ACTIONS(1609), + [anon_sym_continue] = ACTIONS(1609), + [anon_sym_break] = ACTIONS(1609), + [anon_sym_defer] = ACTIONS(1609), + [anon_sym_assert] = ACTIONS(1609), + [anon_sym_nextcase] = ACTIONS(1609), + [anon_sym_switch] = ACTIONS(1609), + [anon_sym_AMP_AMP] = ACTIONS(1611), + [anon_sym_if] = ACTIONS(1609), + [anon_sym_for] = ACTIONS(1609), + [anon_sym_foreach] = ACTIONS(1609), + [anon_sym_foreach_r] = ACTIONS(1609), + [anon_sym_while] = ACTIONS(1609), + [anon_sym_do] = ACTIONS(1609), + [anon_sym_int] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1609), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(1611), + [anon_sym_asm] = ACTIONS(1609), + [anon_sym_DOLLARassert] = ACTIONS(1609), + [anon_sym_DOLLARerror] = ACTIONS(1609), + [anon_sym_DOLLARecho] = ACTIONS(1609), + [anon_sym_DOLLARif] = ACTIONS(1609), + [anon_sym_DOLLARendif] = ACTIONS(1609), + [anon_sym_DOLLARelse] = ACTIONS(1609), + [anon_sym_DOLLARswitch] = ACTIONS(1609), + [anon_sym_DOLLARfor] = ACTIONS(1609), + [anon_sym_DOLLARforeach] = ACTIONS(1609), + [anon_sym_DOLLARalignof] = ACTIONS(1609), + [anon_sym_DOLLARextnameof] = ACTIONS(1609), + [anon_sym_DOLLARnameof] = ACTIONS(1609), + [anon_sym_DOLLARoffsetof] = ACTIONS(1609), + [anon_sym_DOLLARqnameof] = ACTIONS(1609), + [anon_sym_DOLLARvaconst] = ACTIONS(1609), + [anon_sym_DOLLARvaarg] = ACTIONS(1609), + [anon_sym_DOLLARvaref] = ACTIONS(1609), + [anon_sym_DOLLARvaexpr] = ACTIONS(1609), + [anon_sym_true] = ACTIONS(1609), + [anon_sym_false] = ACTIONS(1609), + [anon_sym_null] = ACTIONS(1609), + [anon_sym_DOLLARvacount] = ACTIONS(1609), + [anon_sym_DOLLARappend] = ACTIONS(1609), + [anon_sym_DOLLARconcat] = ACTIONS(1609), + [anon_sym_DOLLAReval] = ACTIONS(1609), + [anon_sym_DOLLARis_const] = ACTIONS(1609), + [anon_sym_DOLLARsizeof] = ACTIONS(1609), + [anon_sym_DOLLARstringify] = ACTIONS(1609), + [anon_sym_DOLLARand] = ACTIONS(1609), + [anon_sym_DOLLARdefined] = ACTIONS(1609), + [anon_sym_DOLLARembed] = ACTIONS(1609), + [anon_sym_DOLLARor] = ACTIONS(1609), + [anon_sym_DOLLARfeature] = ACTIONS(1609), + [anon_sym_DOLLARassignable] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1611), + [anon_sym_TILDE] = ACTIONS(1611), + [anon_sym_PLUS_PLUS] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_typeid] = ACTIONS(1609), + [anon_sym_LBRACE_PIPE] = ACTIONS(1611), + [anon_sym_void] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_ichar] = ACTIONS(1609), + [anon_sym_short] = ACTIONS(1609), + [anon_sym_ushort] = ACTIONS(1609), + [anon_sym_uint] = ACTIONS(1609), + [anon_sym_long] = ACTIONS(1609), + [anon_sym_ulong] = ACTIONS(1609), + [anon_sym_int128] = ACTIONS(1609), + [anon_sym_uint128] = ACTIONS(1609), + [anon_sym_float] = ACTIONS(1609), + [anon_sym_double] = ACTIONS(1609), + [anon_sym_float16] = ACTIONS(1609), + [anon_sym_bfloat16] = ACTIONS(1609), + [anon_sym_float128] = ACTIONS(1609), + [anon_sym_iptr] = ACTIONS(1609), + [anon_sym_uptr] = ACTIONS(1609), + [anon_sym_isz] = ACTIONS(1609), + [anon_sym_usz] = ACTIONS(1609), + [anon_sym_anyfault] = ACTIONS(1609), + [anon_sym_any] = ACTIONS(1609), + [anon_sym_DOLLARtypeof] = ACTIONS(1609), + [anon_sym_DOLLARtypefrom] = ACTIONS(1609), + [anon_sym_DOLLARvatype] = ACTIONS(1609), + [anon_sym_DOLLARevaltype] = ACTIONS(1609), + [sym_real_literal] = ACTIONS(1611), }, [494] = { [sym_line_comment] = STATE(494), [sym_doc_comment] = STATE(494), [sym_block_comment] = STATE(494), - [sym_ident] = ACTIONS(1410), - [sym_integer_literal] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1412), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_BQUOTE] = ACTIONS(1412), - [sym_bytes_literal] = ACTIONS(1412), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1410), - [sym_at_ident] = ACTIONS(1412), - [sym_hash_ident] = ACTIONS(1412), - [sym_type_ident] = ACTIONS(1412), - [sym_ct_type_ident] = ACTIONS(1412), - [sym_const_ident] = ACTIONS(1410), - [sym_builtin] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1410), - [anon_sym_static] = ACTIONS(1410), - [anon_sym_tlocal] = ACTIONS(1410), - [anon_sym_SEMI] = ACTIONS(1412), - [anon_sym_fn] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_var] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_defer] = ACTIONS(1410), - [anon_sym_assert] = ACTIONS(1410), - [anon_sym_nextcase] = ACTIONS(1410), - [anon_sym_switch] = ACTIONS(1410), - [anon_sym_AMP_AMP] = ACTIONS(1412), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_foreach] = ACTIONS(1410), - [anon_sym_foreach_r] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [anon_sym_do] = ACTIONS(1410), - [anon_sym_int] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1412), - [anon_sym_asm] = ACTIONS(1410), - [anon_sym_DOLLARassert] = ACTIONS(1410), - [anon_sym_DOLLARerror] = ACTIONS(1410), - [anon_sym_DOLLARecho] = ACTIONS(1410), - [anon_sym_DOLLARif] = ACTIONS(1410), - [anon_sym_DOLLARcase] = ACTIONS(1410), - [anon_sym_DOLLARdefault] = ACTIONS(1410), - [anon_sym_DOLLARswitch] = ACTIONS(1410), - [anon_sym_DOLLARendswitch] = ACTIONS(1410), - [anon_sym_DOLLARfor] = ACTIONS(1410), - [anon_sym_DOLLARforeach] = ACTIONS(1410), - [anon_sym_DOLLARalignof] = ACTIONS(1410), - [anon_sym_DOLLARextnameof] = ACTIONS(1410), - [anon_sym_DOLLARnameof] = ACTIONS(1410), - [anon_sym_DOLLARoffsetof] = ACTIONS(1410), - [anon_sym_DOLLARqnameof] = ACTIONS(1410), - [anon_sym_DOLLARvaconst] = ACTIONS(1410), - [anon_sym_DOLLARvaarg] = ACTIONS(1410), - [anon_sym_DOLLARvaref] = ACTIONS(1410), - [anon_sym_DOLLARvaexpr] = ACTIONS(1410), - [anon_sym_true] = ACTIONS(1410), - [anon_sym_false] = ACTIONS(1410), - [anon_sym_null] = ACTIONS(1410), - [anon_sym_DOLLARvacount] = ACTIONS(1410), - [anon_sym_DOLLARappend] = ACTIONS(1410), - [anon_sym_DOLLARconcat] = ACTIONS(1410), - [anon_sym_DOLLAReval] = ACTIONS(1410), - [anon_sym_DOLLARis_const] = ACTIONS(1410), - [anon_sym_DOLLARsizeof] = ACTIONS(1410), - [anon_sym_DOLLARstringify] = ACTIONS(1410), - [anon_sym_DOLLARand] = ACTIONS(1410), - [anon_sym_DOLLARdefined] = ACTIONS(1410), - [anon_sym_DOLLARembed] = ACTIONS(1410), - [anon_sym_DOLLARor] = ACTIONS(1410), - [anon_sym_DOLLARfeature] = ACTIONS(1410), - [anon_sym_DOLLARassignable] = ACTIONS(1410), - [anon_sym_BANG] = ACTIONS(1412), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_PLUS_PLUS] = ACTIONS(1412), - [anon_sym_DASH_DASH] = ACTIONS(1412), - [anon_sym_typeid] = ACTIONS(1410), - [anon_sym_LBRACE_PIPE] = ACTIONS(1412), - [anon_sym_void] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_ichar] = ACTIONS(1410), - [anon_sym_short] = ACTIONS(1410), - [anon_sym_ushort] = ACTIONS(1410), - [anon_sym_uint] = ACTIONS(1410), - [anon_sym_long] = ACTIONS(1410), - [anon_sym_ulong] = ACTIONS(1410), - [anon_sym_int128] = ACTIONS(1410), - [anon_sym_uint128] = ACTIONS(1410), - [anon_sym_float] = ACTIONS(1410), - [anon_sym_double] = ACTIONS(1410), - [anon_sym_float16] = ACTIONS(1410), - [anon_sym_bfloat16] = ACTIONS(1410), - [anon_sym_float128] = ACTIONS(1410), - [anon_sym_iptr] = ACTIONS(1410), - [anon_sym_uptr] = ACTIONS(1410), - [anon_sym_isz] = ACTIONS(1410), - [anon_sym_usz] = ACTIONS(1410), - [anon_sym_anyfault] = ACTIONS(1410), - [anon_sym_any] = ACTIONS(1410), - [anon_sym_DOLLARtypeof] = ACTIONS(1410), - [anon_sym_DOLLARtypefrom] = ACTIONS(1410), - [anon_sym_DOLLARvatype] = ACTIONS(1410), - [anon_sym_DOLLARevaltype] = ACTIONS(1410), - [sym_real_literal] = ACTIONS(1412), + [sym_ident] = ACTIONS(1355), + [sym_integer_literal] = ACTIONS(1357), + [anon_sym_SQUOTE] = ACTIONS(1357), + [anon_sym_DQUOTE] = ACTIONS(1357), + [anon_sym_BQUOTE] = ACTIONS(1357), + [sym_bytes_literal] = ACTIONS(1357), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1355), + [sym_at_ident] = ACTIONS(1357), + [sym_hash_ident] = ACTIONS(1357), + [sym_type_ident] = ACTIONS(1357), + [sym_ct_type_ident] = ACTIONS(1357), + [sym_const_ident] = ACTIONS(1355), + [sym_builtin] = ACTIONS(1357), + [anon_sym_LPAREN] = ACTIONS(1357), + [anon_sym_AMP] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1355), + [anon_sym_tlocal] = ACTIONS(1355), + [anon_sym_SEMI] = ACTIONS(1357), + [anon_sym_fn] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_const] = ACTIONS(1355), + [anon_sym_var] = ACTIONS(1355), + [anon_sym_return] = ACTIONS(1355), + [anon_sym_continue] = ACTIONS(1355), + [anon_sym_break] = ACTIONS(1355), + [anon_sym_defer] = ACTIONS(1355), + [anon_sym_assert] = ACTIONS(1355), + [anon_sym_nextcase] = ACTIONS(1355), + [anon_sym_switch] = ACTIONS(1355), + [anon_sym_AMP_AMP] = ACTIONS(1357), + [anon_sym_if] = ACTIONS(1355), + [anon_sym_else] = ACTIONS(1355), + [anon_sym_for] = ACTIONS(1355), + [anon_sym_foreach] = ACTIONS(1355), + [anon_sym_foreach_r] = ACTIONS(1355), + [anon_sym_while] = ACTIONS(1355), + [anon_sym_do] = ACTIONS(1355), + [anon_sym_int] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1355), + [anon_sym_DASH] = ACTIONS(1355), + [anon_sym_STAR] = ACTIONS(1357), + [anon_sym_asm] = ACTIONS(1355), + [anon_sym_DOLLARassert] = ACTIONS(1355), + [anon_sym_DOLLARerror] = ACTIONS(1355), + [anon_sym_DOLLARecho] = ACTIONS(1355), + [anon_sym_DOLLARif] = ACTIONS(1355), + [anon_sym_DOLLARendif] = ACTIONS(1355), + [anon_sym_DOLLARswitch] = ACTIONS(1355), + [anon_sym_DOLLARfor] = ACTIONS(1355), + [anon_sym_DOLLARforeach] = ACTIONS(1355), + [anon_sym_DOLLARalignof] = ACTIONS(1355), + [anon_sym_DOLLARextnameof] = ACTIONS(1355), + [anon_sym_DOLLARnameof] = ACTIONS(1355), + [anon_sym_DOLLARoffsetof] = ACTIONS(1355), + [anon_sym_DOLLARqnameof] = ACTIONS(1355), + [anon_sym_DOLLARvaconst] = ACTIONS(1355), + [anon_sym_DOLLARvaarg] = ACTIONS(1355), + [anon_sym_DOLLARvaref] = ACTIONS(1355), + [anon_sym_DOLLARvaexpr] = ACTIONS(1355), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), + [anon_sym_null] = ACTIONS(1355), + [anon_sym_DOLLARvacount] = ACTIONS(1355), + [anon_sym_DOLLARappend] = ACTIONS(1355), + [anon_sym_DOLLARconcat] = ACTIONS(1355), + [anon_sym_DOLLAReval] = ACTIONS(1355), + [anon_sym_DOLLARis_const] = ACTIONS(1355), + [anon_sym_DOLLARsizeof] = ACTIONS(1355), + [anon_sym_DOLLARstringify] = ACTIONS(1355), + [anon_sym_DOLLARand] = ACTIONS(1355), + [anon_sym_DOLLARdefined] = ACTIONS(1355), + [anon_sym_DOLLARembed] = ACTIONS(1355), + [anon_sym_DOLLARor] = ACTIONS(1355), + [anon_sym_DOLLARfeature] = ACTIONS(1355), + [anon_sym_DOLLARassignable] = ACTIONS(1355), + [anon_sym_BANG] = ACTIONS(1357), + [anon_sym_TILDE] = ACTIONS(1357), + [anon_sym_PLUS_PLUS] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1357), + [anon_sym_typeid] = ACTIONS(1355), + [anon_sym_LBRACE_PIPE] = ACTIONS(1357), + [anon_sym_void] = ACTIONS(1355), + [anon_sym_bool] = ACTIONS(1355), + [anon_sym_char] = ACTIONS(1355), + [anon_sym_ichar] = ACTIONS(1355), + [anon_sym_short] = ACTIONS(1355), + [anon_sym_ushort] = ACTIONS(1355), + [anon_sym_uint] = ACTIONS(1355), + [anon_sym_long] = ACTIONS(1355), + [anon_sym_ulong] = ACTIONS(1355), + [anon_sym_int128] = ACTIONS(1355), + [anon_sym_uint128] = ACTIONS(1355), + [anon_sym_float] = ACTIONS(1355), + [anon_sym_double] = ACTIONS(1355), + [anon_sym_float16] = ACTIONS(1355), + [anon_sym_bfloat16] = ACTIONS(1355), + [anon_sym_float128] = ACTIONS(1355), + [anon_sym_iptr] = ACTIONS(1355), + [anon_sym_uptr] = ACTIONS(1355), + [anon_sym_isz] = ACTIONS(1355), + [anon_sym_usz] = ACTIONS(1355), + [anon_sym_anyfault] = ACTIONS(1355), + [anon_sym_any] = ACTIONS(1355), + [anon_sym_DOLLARtypeof] = ACTIONS(1355), + [anon_sym_DOLLARtypefrom] = ACTIONS(1355), + [anon_sym_DOLLARvatype] = ACTIONS(1355), + [anon_sym_DOLLARevaltype] = ACTIONS(1355), + [sym_real_literal] = ACTIONS(1357), }, [495] = { [sym_line_comment] = STATE(495), [sym_doc_comment] = STATE(495), [sym_block_comment] = STATE(495), - [sym_ident] = ACTIONS(1436), - [sym_integer_literal] = ACTIONS(1438), - [anon_sym_SQUOTE] = ACTIONS(1438), - [anon_sym_DQUOTE] = ACTIONS(1438), - [anon_sym_BQUOTE] = ACTIONS(1438), - [sym_bytes_literal] = ACTIONS(1438), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1436), - [sym_at_ident] = ACTIONS(1438), - [sym_hash_ident] = ACTIONS(1438), - [sym_type_ident] = ACTIONS(1438), - [sym_ct_type_ident] = ACTIONS(1438), - [sym_const_ident] = ACTIONS(1436), - [sym_builtin] = ACTIONS(1438), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1436), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_tlocal] = ACTIONS(1436), - [anon_sym_SEMI] = ACTIONS(1438), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_const] = ACTIONS(1436), - [anon_sym_var] = ACTIONS(1436), - [anon_sym_return] = ACTIONS(1436), - [anon_sym_continue] = ACTIONS(1436), - [anon_sym_break] = ACTIONS(1436), - [anon_sym_defer] = ACTIONS(1436), - [anon_sym_assert] = ACTIONS(1436), - [anon_sym_nextcase] = ACTIONS(1436), - [anon_sym_switch] = ACTIONS(1436), - [anon_sym_AMP_AMP] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1436), - [anon_sym_for] = ACTIONS(1436), - [anon_sym_foreach] = ACTIONS(1436), - [anon_sym_foreach_r] = ACTIONS(1436), - [anon_sym_while] = ACTIONS(1436), - [anon_sym_do] = ACTIONS(1436), - [anon_sym_int] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_asm] = ACTIONS(1436), - [anon_sym_DOLLARassert] = ACTIONS(1436), - [anon_sym_DOLLARerror] = ACTIONS(1436), - [anon_sym_DOLLARecho] = ACTIONS(1436), - [anon_sym_DOLLARif] = ACTIONS(1436), - [anon_sym_DOLLARcase] = ACTIONS(1436), - [anon_sym_DOLLARdefault] = ACTIONS(1436), - [anon_sym_DOLLARswitch] = ACTIONS(1436), - [anon_sym_DOLLARendswitch] = ACTIONS(1436), - [anon_sym_DOLLARfor] = ACTIONS(1436), - [anon_sym_DOLLARforeach] = ACTIONS(1436), - [anon_sym_DOLLARalignof] = ACTIONS(1436), - [anon_sym_DOLLARextnameof] = ACTIONS(1436), - [anon_sym_DOLLARnameof] = ACTIONS(1436), - [anon_sym_DOLLARoffsetof] = ACTIONS(1436), - [anon_sym_DOLLARqnameof] = ACTIONS(1436), - [anon_sym_DOLLARvaconst] = ACTIONS(1436), - [anon_sym_DOLLARvaarg] = ACTIONS(1436), - [anon_sym_DOLLARvaref] = ACTIONS(1436), - [anon_sym_DOLLARvaexpr] = ACTIONS(1436), - [anon_sym_true] = ACTIONS(1436), - [anon_sym_false] = ACTIONS(1436), - [anon_sym_null] = ACTIONS(1436), - [anon_sym_DOLLARvacount] = ACTIONS(1436), - [anon_sym_DOLLARappend] = ACTIONS(1436), - [anon_sym_DOLLARconcat] = ACTIONS(1436), - [anon_sym_DOLLAReval] = ACTIONS(1436), - [anon_sym_DOLLARis_const] = ACTIONS(1436), - [anon_sym_DOLLARsizeof] = ACTIONS(1436), - [anon_sym_DOLLARstringify] = ACTIONS(1436), - [anon_sym_DOLLARand] = ACTIONS(1436), - [anon_sym_DOLLARdefined] = ACTIONS(1436), - [anon_sym_DOLLARembed] = ACTIONS(1436), - [anon_sym_DOLLARor] = ACTIONS(1436), - [anon_sym_DOLLARfeature] = ACTIONS(1436), - [anon_sym_DOLLARassignable] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1438), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_PLUS_PLUS] = ACTIONS(1438), - [anon_sym_DASH_DASH] = ACTIONS(1438), - [anon_sym_typeid] = ACTIONS(1436), - [anon_sym_LBRACE_PIPE] = ACTIONS(1438), - [anon_sym_void] = ACTIONS(1436), - [anon_sym_bool] = ACTIONS(1436), - [anon_sym_char] = ACTIONS(1436), - [anon_sym_ichar] = ACTIONS(1436), - [anon_sym_short] = ACTIONS(1436), - [anon_sym_ushort] = ACTIONS(1436), - [anon_sym_uint] = ACTIONS(1436), - [anon_sym_long] = ACTIONS(1436), - [anon_sym_ulong] = ACTIONS(1436), - [anon_sym_int128] = ACTIONS(1436), - [anon_sym_uint128] = ACTIONS(1436), - [anon_sym_float] = ACTIONS(1436), - [anon_sym_double] = ACTIONS(1436), - [anon_sym_float16] = ACTIONS(1436), - [anon_sym_bfloat16] = ACTIONS(1436), - [anon_sym_float128] = ACTIONS(1436), - [anon_sym_iptr] = ACTIONS(1436), - [anon_sym_uptr] = ACTIONS(1436), - [anon_sym_isz] = ACTIONS(1436), - [anon_sym_usz] = ACTIONS(1436), - [anon_sym_anyfault] = ACTIONS(1436), - [anon_sym_any] = ACTIONS(1436), - [anon_sym_DOLLARtypeof] = ACTIONS(1436), - [anon_sym_DOLLARtypefrom] = ACTIONS(1436), - [anon_sym_DOLLARvatype] = ACTIONS(1436), - [anon_sym_DOLLARevaltype] = ACTIONS(1436), - [sym_real_literal] = ACTIONS(1438), + [sym_ident] = ACTIONS(1589), + [sym_integer_literal] = ACTIONS(1591), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1591), + [anon_sym_BQUOTE] = ACTIONS(1591), + [sym_bytes_literal] = ACTIONS(1591), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1589), + [sym_at_ident] = ACTIONS(1591), + [sym_hash_ident] = ACTIONS(1591), + [sym_type_ident] = ACTIONS(1591), + [sym_ct_type_ident] = ACTIONS(1591), + [sym_const_ident] = ACTIONS(1589), + [sym_builtin] = ACTIONS(1591), + [anon_sym_LPAREN] = ACTIONS(1591), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_static] = ACTIONS(1589), + [anon_sym_tlocal] = ACTIONS(1589), + [anon_sym_SEMI] = ACTIONS(1591), + [anon_sym_fn] = ACTIONS(1589), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_const] = ACTIONS(1589), + [anon_sym_var] = ACTIONS(1589), + [anon_sym_return] = ACTIONS(1589), + [anon_sym_continue] = ACTIONS(1589), + [anon_sym_break] = ACTIONS(1589), + [anon_sym_defer] = ACTIONS(1589), + [anon_sym_assert] = ACTIONS(1589), + [anon_sym_nextcase] = ACTIONS(1589), + [anon_sym_switch] = ACTIONS(1589), + [anon_sym_AMP_AMP] = ACTIONS(1591), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_for] = ACTIONS(1589), + [anon_sym_foreach] = ACTIONS(1589), + [anon_sym_foreach_r] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1589), + [anon_sym_do] = ACTIONS(1589), + [anon_sym_int] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1589), + [anon_sym_STAR] = ACTIONS(1591), + [anon_sym_asm] = ACTIONS(1589), + [anon_sym_DOLLARassert] = ACTIONS(1589), + [anon_sym_DOLLARerror] = ACTIONS(1589), + [anon_sym_DOLLARecho] = ACTIONS(1589), + [anon_sym_DOLLARif] = ACTIONS(1589), + [anon_sym_DOLLARendif] = ACTIONS(1589), + [anon_sym_DOLLARelse] = ACTIONS(1589), + [anon_sym_DOLLARswitch] = ACTIONS(1589), + [anon_sym_DOLLARfor] = ACTIONS(1589), + [anon_sym_DOLLARforeach] = ACTIONS(1589), + [anon_sym_DOLLARalignof] = ACTIONS(1589), + [anon_sym_DOLLARextnameof] = ACTIONS(1589), + [anon_sym_DOLLARnameof] = ACTIONS(1589), + [anon_sym_DOLLARoffsetof] = ACTIONS(1589), + [anon_sym_DOLLARqnameof] = ACTIONS(1589), + [anon_sym_DOLLARvaconst] = ACTIONS(1589), + [anon_sym_DOLLARvaarg] = ACTIONS(1589), + [anon_sym_DOLLARvaref] = ACTIONS(1589), + [anon_sym_DOLLARvaexpr] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1589), + [anon_sym_false] = ACTIONS(1589), + [anon_sym_null] = ACTIONS(1589), + [anon_sym_DOLLARvacount] = ACTIONS(1589), + [anon_sym_DOLLARappend] = ACTIONS(1589), + [anon_sym_DOLLARconcat] = ACTIONS(1589), + [anon_sym_DOLLAReval] = ACTIONS(1589), + [anon_sym_DOLLARis_const] = ACTIONS(1589), + [anon_sym_DOLLARsizeof] = ACTIONS(1589), + [anon_sym_DOLLARstringify] = ACTIONS(1589), + [anon_sym_DOLLARand] = ACTIONS(1589), + [anon_sym_DOLLARdefined] = ACTIONS(1589), + [anon_sym_DOLLARembed] = ACTIONS(1589), + [anon_sym_DOLLARor] = ACTIONS(1589), + [anon_sym_DOLLARfeature] = ACTIONS(1589), + [anon_sym_DOLLARassignable] = ACTIONS(1589), + [anon_sym_BANG] = ACTIONS(1591), + [anon_sym_TILDE] = ACTIONS(1591), + [anon_sym_PLUS_PLUS] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1591), + [anon_sym_typeid] = ACTIONS(1589), + [anon_sym_LBRACE_PIPE] = ACTIONS(1591), + [anon_sym_void] = ACTIONS(1589), + [anon_sym_bool] = ACTIONS(1589), + [anon_sym_char] = ACTIONS(1589), + [anon_sym_ichar] = ACTIONS(1589), + [anon_sym_short] = ACTIONS(1589), + [anon_sym_ushort] = ACTIONS(1589), + [anon_sym_uint] = ACTIONS(1589), + [anon_sym_long] = ACTIONS(1589), + [anon_sym_ulong] = ACTIONS(1589), + [anon_sym_int128] = ACTIONS(1589), + [anon_sym_uint128] = ACTIONS(1589), + [anon_sym_float] = ACTIONS(1589), + [anon_sym_double] = ACTIONS(1589), + [anon_sym_float16] = ACTIONS(1589), + [anon_sym_bfloat16] = ACTIONS(1589), + [anon_sym_float128] = ACTIONS(1589), + [anon_sym_iptr] = ACTIONS(1589), + [anon_sym_uptr] = ACTIONS(1589), + [anon_sym_isz] = ACTIONS(1589), + [anon_sym_usz] = ACTIONS(1589), + [anon_sym_anyfault] = ACTIONS(1589), + [anon_sym_any] = ACTIONS(1589), + [anon_sym_DOLLARtypeof] = ACTIONS(1589), + [anon_sym_DOLLARtypefrom] = ACTIONS(1589), + [anon_sym_DOLLARvatype] = ACTIONS(1589), + [anon_sym_DOLLARevaltype] = ACTIONS(1589), + [sym_real_literal] = ACTIONS(1591), }, [496] = { [sym_line_comment] = STATE(496), [sym_doc_comment] = STATE(496), [sym_block_comment] = STATE(496), - [sym_ident] = ACTIONS(1584), - [sym_integer_literal] = ACTIONS(1586), - [anon_sym_SQUOTE] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1586), - [anon_sym_BQUOTE] = ACTIONS(1586), - [sym_bytes_literal] = ACTIONS(1586), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1584), - [sym_at_ident] = ACTIONS(1586), - [sym_hash_ident] = ACTIONS(1586), - [sym_type_ident] = ACTIONS(1586), - [sym_ct_type_ident] = ACTIONS(1586), - [sym_const_ident] = ACTIONS(1584), - [sym_builtin] = ACTIONS(1586), - [anon_sym_LPAREN] = ACTIONS(1586), - [anon_sym_AMP] = ACTIONS(1584), - [anon_sym_static] = ACTIONS(1584), - [anon_sym_tlocal] = ACTIONS(1584), - [anon_sym_SEMI] = ACTIONS(1586), - [anon_sym_fn] = ACTIONS(1584), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_const] = ACTIONS(1584), - [anon_sym_var] = ACTIONS(1584), - [anon_sym_return] = ACTIONS(1584), - [anon_sym_continue] = ACTIONS(1584), - [anon_sym_break] = ACTIONS(1584), - [anon_sym_defer] = ACTIONS(1584), - [anon_sym_assert] = ACTIONS(1584), - [anon_sym_nextcase] = ACTIONS(1584), - [anon_sym_switch] = ACTIONS(1584), - [anon_sym_AMP_AMP] = ACTIONS(1586), - [anon_sym_if] = ACTIONS(1584), - [anon_sym_for] = ACTIONS(1584), - [anon_sym_foreach] = ACTIONS(1584), - [anon_sym_foreach_r] = ACTIONS(1584), - [anon_sym_while] = ACTIONS(1584), - [anon_sym_do] = ACTIONS(1584), - [anon_sym_int] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1584), - [anon_sym_DASH] = ACTIONS(1584), - [anon_sym_STAR] = ACTIONS(1586), - [anon_sym_asm] = ACTIONS(1584), - [anon_sym_DOLLARassert] = ACTIONS(1584), - [anon_sym_DOLLARerror] = ACTIONS(1584), - [anon_sym_DOLLARecho] = ACTIONS(1584), - [anon_sym_DOLLARif] = ACTIONS(1584), - [anon_sym_DOLLARcase] = ACTIONS(1584), - [anon_sym_DOLLARdefault] = ACTIONS(1584), - [anon_sym_DOLLARswitch] = ACTIONS(1584), - [anon_sym_DOLLARendswitch] = ACTIONS(1584), - [anon_sym_DOLLARfor] = ACTIONS(1584), - [anon_sym_DOLLARforeach] = ACTIONS(1584), - [anon_sym_DOLLARalignof] = ACTIONS(1584), - [anon_sym_DOLLARextnameof] = ACTIONS(1584), - [anon_sym_DOLLARnameof] = ACTIONS(1584), - [anon_sym_DOLLARoffsetof] = ACTIONS(1584), - [anon_sym_DOLLARqnameof] = ACTIONS(1584), - [anon_sym_DOLLARvaconst] = ACTIONS(1584), - [anon_sym_DOLLARvaarg] = ACTIONS(1584), - [anon_sym_DOLLARvaref] = ACTIONS(1584), - [anon_sym_DOLLARvaexpr] = ACTIONS(1584), - [anon_sym_true] = ACTIONS(1584), - [anon_sym_false] = ACTIONS(1584), - [anon_sym_null] = ACTIONS(1584), - [anon_sym_DOLLARvacount] = ACTIONS(1584), - [anon_sym_DOLLARappend] = ACTIONS(1584), - [anon_sym_DOLLARconcat] = ACTIONS(1584), - [anon_sym_DOLLAReval] = ACTIONS(1584), - [anon_sym_DOLLARis_const] = ACTIONS(1584), - [anon_sym_DOLLARsizeof] = ACTIONS(1584), - [anon_sym_DOLLARstringify] = ACTIONS(1584), - [anon_sym_DOLLARand] = ACTIONS(1584), - [anon_sym_DOLLARdefined] = ACTIONS(1584), - [anon_sym_DOLLARembed] = ACTIONS(1584), - [anon_sym_DOLLARor] = ACTIONS(1584), - [anon_sym_DOLLARfeature] = ACTIONS(1584), - [anon_sym_DOLLARassignable] = ACTIONS(1584), - [anon_sym_BANG] = ACTIONS(1586), - [anon_sym_TILDE] = ACTIONS(1586), - [anon_sym_PLUS_PLUS] = ACTIONS(1586), - [anon_sym_DASH_DASH] = ACTIONS(1586), - [anon_sym_typeid] = ACTIONS(1584), - [anon_sym_LBRACE_PIPE] = ACTIONS(1586), - [anon_sym_void] = ACTIONS(1584), - [anon_sym_bool] = ACTIONS(1584), - [anon_sym_char] = ACTIONS(1584), - [anon_sym_ichar] = ACTIONS(1584), - [anon_sym_short] = ACTIONS(1584), - [anon_sym_ushort] = ACTIONS(1584), - [anon_sym_uint] = ACTIONS(1584), - [anon_sym_long] = ACTIONS(1584), - [anon_sym_ulong] = ACTIONS(1584), - [anon_sym_int128] = ACTIONS(1584), - [anon_sym_uint128] = ACTIONS(1584), - [anon_sym_float] = ACTIONS(1584), - [anon_sym_double] = ACTIONS(1584), - [anon_sym_float16] = ACTIONS(1584), - [anon_sym_bfloat16] = ACTIONS(1584), - [anon_sym_float128] = ACTIONS(1584), - [anon_sym_iptr] = ACTIONS(1584), - [anon_sym_uptr] = ACTIONS(1584), - [anon_sym_isz] = ACTIONS(1584), - [anon_sym_usz] = ACTIONS(1584), - [anon_sym_anyfault] = ACTIONS(1584), - [anon_sym_any] = ACTIONS(1584), - [anon_sym_DOLLARtypeof] = ACTIONS(1584), - [anon_sym_DOLLARtypefrom] = ACTIONS(1584), - [anon_sym_DOLLARvatype] = ACTIONS(1584), - [anon_sym_DOLLARevaltype] = ACTIONS(1584), - [sym_real_literal] = ACTIONS(1586), + [sym_ident] = ACTIONS(1629), + [sym_integer_literal] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1631), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_BQUOTE] = ACTIONS(1631), + [sym_bytes_literal] = ACTIONS(1631), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1629), + [sym_at_ident] = ACTIONS(1631), + [sym_hash_ident] = ACTIONS(1631), + [sym_type_ident] = ACTIONS(1631), + [sym_ct_type_ident] = ACTIONS(1631), + [sym_const_ident] = ACTIONS(1629), + [sym_builtin] = ACTIONS(1631), + [anon_sym_LPAREN] = ACTIONS(1631), + [anon_sym_AMP] = ACTIONS(1629), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_tlocal] = ACTIONS(1629), + [anon_sym_SEMI] = ACTIONS(1631), + [anon_sym_fn] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1629), + [anon_sym_const] = ACTIONS(1629), + [anon_sym_var] = ACTIONS(1629), + [anon_sym_return] = ACTIONS(1629), + [anon_sym_continue] = ACTIONS(1629), + [anon_sym_break] = ACTIONS(1629), + [anon_sym_defer] = ACTIONS(1629), + [anon_sym_assert] = ACTIONS(1629), + [anon_sym_nextcase] = ACTIONS(1629), + [anon_sym_switch] = ACTIONS(1629), + [anon_sym_AMP_AMP] = ACTIONS(1631), + [anon_sym_if] = ACTIONS(1629), + [anon_sym_for] = ACTIONS(1629), + [anon_sym_foreach] = ACTIONS(1629), + [anon_sym_foreach_r] = ACTIONS(1629), + [anon_sym_while] = ACTIONS(1629), + [anon_sym_do] = ACTIONS(1629), + [anon_sym_int] = ACTIONS(1629), + [anon_sym_PLUS] = ACTIONS(1629), + [anon_sym_DASH] = ACTIONS(1629), + [anon_sym_STAR] = ACTIONS(1631), + [anon_sym_asm] = ACTIONS(1629), + [anon_sym_DOLLARassert] = ACTIONS(1629), + [anon_sym_DOLLARerror] = ACTIONS(1629), + [anon_sym_DOLLARecho] = ACTIONS(1629), + [anon_sym_DOLLARif] = ACTIONS(1629), + [anon_sym_DOLLARendif] = ACTIONS(1629), + [anon_sym_DOLLARelse] = ACTIONS(1629), + [anon_sym_DOLLARswitch] = ACTIONS(1629), + [anon_sym_DOLLARfor] = ACTIONS(1629), + [anon_sym_DOLLARforeach] = ACTIONS(1629), + [anon_sym_DOLLARalignof] = ACTIONS(1629), + [anon_sym_DOLLARextnameof] = ACTIONS(1629), + [anon_sym_DOLLARnameof] = ACTIONS(1629), + [anon_sym_DOLLARoffsetof] = ACTIONS(1629), + [anon_sym_DOLLARqnameof] = ACTIONS(1629), + [anon_sym_DOLLARvaconst] = ACTIONS(1629), + [anon_sym_DOLLARvaarg] = ACTIONS(1629), + [anon_sym_DOLLARvaref] = ACTIONS(1629), + [anon_sym_DOLLARvaexpr] = ACTIONS(1629), + [anon_sym_true] = ACTIONS(1629), + [anon_sym_false] = ACTIONS(1629), + [anon_sym_null] = ACTIONS(1629), + [anon_sym_DOLLARvacount] = ACTIONS(1629), + [anon_sym_DOLLARappend] = ACTIONS(1629), + [anon_sym_DOLLARconcat] = ACTIONS(1629), + [anon_sym_DOLLAReval] = ACTIONS(1629), + [anon_sym_DOLLARis_const] = ACTIONS(1629), + [anon_sym_DOLLARsizeof] = ACTIONS(1629), + [anon_sym_DOLLARstringify] = ACTIONS(1629), + [anon_sym_DOLLARand] = ACTIONS(1629), + [anon_sym_DOLLARdefined] = ACTIONS(1629), + [anon_sym_DOLLARembed] = ACTIONS(1629), + [anon_sym_DOLLARor] = ACTIONS(1629), + [anon_sym_DOLLARfeature] = ACTIONS(1629), + [anon_sym_DOLLARassignable] = ACTIONS(1629), + [anon_sym_BANG] = ACTIONS(1631), + [anon_sym_TILDE] = ACTIONS(1631), + [anon_sym_PLUS_PLUS] = ACTIONS(1631), + [anon_sym_DASH_DASH] = ACTIONS(1631), + [anon_sym_typeid] = ACTIONS(1629), + [anon_sym_LBRACE_PIPE] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1629), + [anon_sym_bool] = ACTIONS(1629), + [anon_sym_char] = ACTIONS(1629), + [anon_sym_ichar] = ACTIONS(1629), + [anon_sym_short] = ACTIONS(1629), + [anon_sym_ushort] = ACTIONS(1629), + [anon_sym_uint] = ACTIONS(1629), + [anon_sym_long] = ACTIONS(1629), + [anon_sym_ulong] = ACTIONS(1629), + [anon_sym_int128] = ACTIONS(1629), + [anon_sym_uint128] = ACTIONS(1629), + [anon_sym_float] = ACTIONS(1629), + [anon_sym_double] = ACTIONS(1629), + [anon_sym_float16] = ACTIONS(1629), + [anon_sym_bfloat16] = ACTIONS(1629), + [anon_sym_float128] = ACTIONS(1629), + [anon_sym_iptr] = ACTIONS(1629), + [anon_sym_uptr] = ACTIONS(1629), + [anon_sym_isz] = ACTIONS(1629), + [anon_sym_usz] = ACTIONS(1629), + [anon_sym_anyfault] = ACTIONS(1629), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_DOLLARtypeof] = ACTIONS(1629), + [anon_sym_DOLLARtypefrom] = ACTIONS(1629), + [anon_sym_DOLLARvatype] = ACTIONS(1629), + [anon_sym_DOLLARevaltype] = ACTIONS(1629), + [sym_real_literal] = ACTIONS(1631), }, [497] = { [sym_line_comment] = STATE(497), [sym_doc_comment] = STATE(497), [sym_block_comment] = STATE(497), - [sym_ident] = ACTIONS(1588), - [sym_integer_literal] = ACTIONS(1590), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_DQUOTE] = ACTIONS(1590), - [anon_sym_BQUOTE] = ACTIONS(1590), - [sym_bytes_literal] = ACTIONS(1590), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1588), - [sym_at_ident] = ACTIONS(1590), - [sym_hash_ident] = ACTIONS(1590), - [sym_type_ident] = ACTIONS(1590), - [sym_ct_type_ident] = ACTIONS(1590), - [sym_const_ident] = ACTIONS(1588), - [sym_builtin] = ACTIONS(1590), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_AMP] = ACTIONS(1588), - [anon_sym_static] = ACTIONS(1588), - [anon_sym_tlocal] = ACTIONS(1588), - [anon_sym_SEMI] = ACTIONS(1590), - [anon_sym_fn] = ACTIONS(1588), - [anon_sym_LBRACE] = ACTIONS(1588), - [anon_sym_const] = ACTIONS(1588), - [anon_sym_var] = ACTIONS(1588), - [anon_sym_return] = ACTIONS(1588), - [anon_sym_continue] = ACTIONS(1588), - [anon_sym_break] = ACTIONS(1588), - [anon_sym_defer] = ACTIONS(1588), - [anon_sym_assert] = ACTIONS(1588), - [anon_sym_nextcase] = ACTIONS(1588), - [anon_sym_switch] = ACTIONS(1588), - [anon_sym_AMP_AMP] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1588), - [anon_sym_for] = ACTIONS(1588), - [anon_sym_foreach] = ACTIONS(1588), - [anon_sym_foreach_r] = ACTIONS(1588), - [anon_sym_while] = ACTIONS(1588), - [anon_sym_do] = ACTIONS(1588), - [anon_sym_int] = ACTIONS(1588), - [anon_sym_PLUS] = ACTIONS(1588), - [anon_sym_DASH] = ACTIONS(1588), - [anon_sym_STAR] = ACTIONS(1590), - [anon_sym_asm] = ACTIONS(1588), - [anon_sym_DOLLARassert] = ACTIONS(1588), - [anon_sym_DOLLARerror] = ACTIONS(1588), - [anon_sym_DOLLARecho] = ACTIONS(1588), - [anon_sym_DOLLARif] = ACTIONS(1588), - [anon_sym_DOLLARcase] = ACTIONS(1588), - [anon_sym_DOLLARdefault] = ACTIONS(1588), - [anon_sym_DOLLARswitch] = ACTIONS(1588), - [anon_sym_DOLLARendswitch] = ACTIONS(1588), - [anon_sym_DOLLARfor] = ACTIONS(1588), - [anon_sym_DOLLARforeach] = ACTIONS(1588), - [anon_sym_DOLLARalignof] = ACTIONS(1588), - [anon_sym_DOLLARextnameof] = ACTIONS(1588), - [anon_sym_DOLLARnameof] = ACTIONS(1588), - [anon_sym_DOLLARoffsetof] = ACTIONS(1588), - [anon_sym_DOLLARqnameof] = ACTIONS(1588), - [anon_sym_DOLLARvaconst] = ACTIONS(1588), - [anon_sym_DOLLARvaarg] = ACTIONS(1588), - [anon_sym_DOLLARvaref] = ACTIONS(1588), - [anon_sym_DOLLARvaexpr] = ACTIONS(1588), - [anon_sym_true] = ACTIONS(1588), - [anon_sym_false] = ACTIONS(1588), - [anon_sym_null] = ACTIONS(1588), - [anon_sym_DOLLARvacount] = ACTIONS(1588), - [anon_sym_DOLLARappend] = ACTIONS(1588), - [anon_sym_DOLLARconcat] = ACTIONS(1588), - [anon_sym_DOLLAReval] = ACTIONS(1588), - [anon_sym_DOLLARis_const] = ACTIONS(1588), - [anon_sym_DOLLARsizeof] = ACTIONS(1588), - [anon_sym_DOLLARstringify] = ACTIONS(1588), - [anon_sym_DOLLARand] = ACTIONS(1588), - [anon_sym_DOLLARdefined] = ACTIONS(1588), - [anon_sym_DOLLARembed] = ACTIONS(1588), - [anon_sym_DOLLARor] = ACTIONS(1588), - [anon_sym_DOLLARfeature] = ACTIONS(1588), - [anon_sym_DOLLARassignable] = ACTIONS(1588), - [anon_sym_BANG] = ACTIONS(1590), - [anon_sym_TILDE] = ACTIONS(1590), - [anon_sym_PLUS_PLUS] = ACTIONS(1590), - [anon_sym_DASH_DASH] = ACTIONS(1590), - [anon_sym_typeid] = ACTIONS(1588), - [anon_sym_LBRACE_PIPE] = ACTIONS(1590), - [anon_sym_void] = ACTIONS(1588), - [anon_sym_bool] = ACTIONS(1588), - [anon_sym_char] = ACTIONS(1588), - [anon_sym_ichar] = ACTIONS(1588), - [anon_sym_short] = ACTIONS(1588), - [anon_sym_ushort] = ACTIONS(1588), - [anon_sym_uint] = ACTIONS(1588), - [anon_sym_long] = ACTIONS(1588), - [anon_sym_ulong] = ACTIONS(1588), - [anon_sym_int128] = ACTIONS(1588), - [anon_sym_uint128] = ACTIONS(1588), - [anon_sym_float] = ACTIONS(1588), - [anon_sym_double] = ACTIONS(1588), - [anon_sym_float16] = ACTIONS(1588), - [anon_sym_bfloat16] = ACTIONS(1588), - [anon_sym_float128] = ACTIONS(1588), - [anon_sym_iptr] = ACTIONS(1588), - [anon_sym_uptr] = ACTIONS(1588), - [anon_sym_isz] = ACTIONS(1588), - [anon_sym_usz] = ACTIONS(1588), - [anon_sym_anyfault] = ACTIONS(1588), - [anon_sym_any] = ACTIONS(1588), - [anon_sym_DOLLARtypeof] = ACTIONS(1588), - [anon_sym_DOLLARtypefrom] = ACTIONS(1588), - [anon_sym_DOLLARvatype] = ACTIONS(1588), - [anon_sym_DOLLARevaltype] = ACTIONS(1588), - [sym_real_literal] = ACTIONS(1590), + [sym_ident] = ACTIONS(1359), + [sym_integer_literal] = ACTIONS(1361), + [anon_sym_SQUOTE] = ACTIONS(1361), + [anon_sym_DQUOTE] = ACTIONS(1361), + [anon_sym_BQUOTE] = ACTIONS(1361), + [sym_bytes_literal] = ACTIONS(1361), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1359), + [sym_at_ident] = ACTIONS(1361), + [sym_hash_ident] = ACTIONS(1361), + [sym_type_ident] = ACTIONS(1361), + [sym_ct_type_ident] = ACTIONS(1361), + [sym_const_ident] = ACTIONS(1359), + [sym_builtin] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(1361), + [anon_sym_AMP] = ACTIONS(1359), + [anon_sym_static] = ACTIONS(1359), + [anon_sym_tlocal] = ACTIONS(1359), + [anon_sym_SEMI] = ACTIONS(1361), + [anon_sym_fn] = ACTIONS(1359), + [anon_sym_LBRACE] = ACTIONS(1359), + [anon_sym_const] = ACTIONS(1359), + [anon_sym_var] = ACTIONS(1359), + [anon_sym_return] = ACTIONS(1359), + [anon_sym_continue] = ACTIONS(1359), + [anon_sym_break] = ACTIONS(1359), + [anon_sym_defer] = ACTIONS(1359), + [anon_sym_assert] = ACTIONS(1359), + [anon_sym_nextcase] = ACTIONS(1359), + [anon_sym_switch] = ACTIONS(1359), + [anon_sym_AMP_AMP] = ACTIONS(1361), + [anon_sym_if] = ACTIONS(1359), + [anon_sym_for] = ACTIONS(1359), + [anon_sym_foreach] = ACTIONS(1359), + [anon_sym_foreach_r] = ACTIONS(1359), + [anon_sym_while] = ACTIONS(1359), + [anon_sym_do] = ACTIONS(1359), + [anon_sym_int] = ACTIONS(1359), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_asm] = ACTIONS(1359), + [anon_sym_DOLLARassert] = ACTIONS(1359), + [anon_sym_DOLLARerror] = ACTIONS(1359), + [anon_sym_DOLLARecho] = ACTIONS(1359), + [anon_sym_DOLLARif] = ACTIONS(1359), + [anon_sym_DOLLARendif] = ACTIONS(1359), + [anon_sym_DOLLARelse] = ACTIONS(1359), + [anon_sym_DOLLARswitch] = ACTIONS(1359), + [anon_sym_DOLLARfor] = ACTIONS(1359), + [anon_sym_DOLLARforeach] = ACTIONS(1359), + [anon_sym_DOLLARalignof] = ACTIONS(1359), + [anon_sym_DOLLARextnameof] = ACTIONS(1359), + [anon_sym_DOLLARnameof] = ACTIONS(1359), + [anon_sym_DOLLARoffsetof] = ACTIONS(1359), + [anon_sym_DOLLARqnameof] = ACTIONS(1359), + [anon_sym_DOLLARvaconst] = ACTIONS(1359), + [anon_sym_DOLLARvaarg] = ACTIONS(1359), + [anon_sym_DOLLARvaref] = ACTIONS(1359), + [anon_sym_DOLLARvaexpr] = ACTIONS(1359), + [anon_sym_true] = ACTIONS(1359), + [anon_sym_false] = ACTIONS(1359), + [anon_sym_null] = ACTIONS(1359), + [anon_sym_DOLLARvacount] = ACTIONS(1359), + [anon_sym_DOLLARappend] = ACTIONS(1359), + [anon_sym_DOLLARconcat] = ACTIONS(1359), + [anon_sym_DOLLAReval] = ACTIONS(1359), + [anon_sym_DOLLARis_const] = ACTIONS(1359), + [anon_sym_DOLLARsizeof] = ACTIONS(1359), + [anon_sym_DOLLARstringify] = ACTIONS(1359), + [anon_sym_DOLLARand] = ACTIONS(1359), + [anon_sym_DOLLARdefined] = ACTIONS(1359), + [anon_sym_DOLLARembed] = ACTIONS(1359), + [anon_sym_DOLLARor] = ACTIONS(1359), + [anon_sym_DOLLARfeature] = ACTIONS(1359), + [anon_sym_DOLLARassignable] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1361), + [anon_sym_TILDE] = ACTIONS(1361), + [anon_sym_PLUS_PLUS] = ACTIONS(1361), + [anon_sym_DASH_DASH] = ACTIONS(1361), + [anon_sym_typeid] = ACTIONS(1359), + [anon_sym_LBRACE_PIPE] = ACTIONS(1361), + [anon_sym_void] = ACTIONS(1359), + [anon_sym_bool] = ACTIONS(1359), + [anon_sym_char] = ACTIONS(1359), + [anon_sym_ichar] = ACTIONS(1359), + [anon_sym_short] = ACTIONS(1359), + [anon_sym_ushort] = ACTIONS(1359), + [anon_sym_uint] = ACTIONS(1359), + [anon_sym_long] = ACTIONS(1359), + [anon_sym_ulong] = ACTIONS(1359), + [anon_sym_int128] = ACTIONS(1359), + [anon_sym_uint128] = ACTIONS(1359), + [anon_sym_float] = ACTIONS(1359), + [anon_sym_double] = ACTIONS(1359), + [anon_sym_float16] = ACTIONS(1359), + [anon_sym_bfloat16] = ACTIONS(1359), + [anon_sym_float128] = ACTIONS(1359), + [anon_sym_iptr] = ACTIONS(1359), + [anon_sym_uptr] = ACTIONS(1359), + [anon_sym_isz] = ACTIONS(1359), + [anon_sym_usz] = ACTIONS(1359), + [anon_sym_anyfault] = ACTIONS(1359), + [anon_sym_any] = ACTIONS(1359), + [anon_sym_DOLLARtypeof] = ACTIONS(1359), + [anon_sym_DOLLARtypefrom] = ACTIONS(1359), + [anon_sym_DOLLARvatype] = ACTIONS(1359), + [anon_sym_DOLLARevaltype] = ACTIONS(1359), + [sym_real_literal] = ACTIONS(1361), }, [498] = { [sym_line_comment] = STATE(498), [sym_doc_comment] = STATE(498), [sym_block_comment] = STATE(498), - [sym_ident] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(1594), - [anon_sym_SQUOTE] = ACTIONS(1594), - [anon_sym_DQUOTE] = ACTIONS(1594), - [anon_sym_BQUOTE] = ACTIONS(1594), - [sym_bytes_literal] = ACTIONS(1594), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1592), - [sym_at_ident] = ACTIONS(1594), - [sym_hash_ident] = ACTIONS(1594), - [sym_type_ident] = ACTIONS(1594), - [sym_ct_type_ident] = ACTIONS(1594), - [sym_const_ident] = ACTIONS(1592), - [sym_builtin] = ACTIONS(1594), - [anon_sym_LPAREN] = ACTIONS(1594), - [anon_sym_AMP] = ACTIONS(1592), - [anon_sym_static] = ACTIONS(1592), - [anon_sym_tlocal] = ACTIONS(1592), - [anon_sym_SEMI] = ACTIONS(1594), - [anon_sym_fn] = ACTIONS(1592), - [anon_sym_LBRACE] = ACTIONS(1592), - [anon_sym_const] = ACTIONS(1592), - [anon_sym_var] = ACTIONS(1592), - [anon_sym_return] = ACTIONS(1592), - [anon_sym_continue] = ACTIONS(1592), - [anon_sym_break] = ACTIONS(1592), - [anon_sym_defer] = ACTIONS(1592), - [anon_sym_assert] = ACTIONS(1592), - [anon_sym_nextcase] = ACTIONS(1592), - [anon_sym_switch] = ACTIONS(1592), - [anon_sym_AMP_AMP] = ACTIONS(1594), - [anon_sym_if] = ACTIONS(1592), - [anon_sym_for] = ACTIONS(1592), - [anon_sym_foreach] = ACTIONS(1592), - [anon_sym_foreach_r] = ACTIONS(1592), - [anon_sym_while] = ACTIONS(1592), - [anon_sym_do] = ACTIONS(1592), - [anon_sym_int] = ACTIONS(1592), - [anon_sym_PLUS] = ACTIONS(1592), - [anon_sym_DASH] = ACTIONS(1592), - [anon_sym_STAR] = ACTIONS(1594), - [anon_sym_asm] = ACTIONS(1592), - [anon_sym_DOLLARassert] = ACTIONS(1592), - [anon_sym_DOLLARerror] = ACTIONS(1592), - [anon_sym_DOLLARecho] = ACTIONS(1592), - [anon_sym_DOLLARif] = ACTIONS(1592), - [anon_sym_DOLLARcase] = ACTIONS(1592), - [anon_sym_DOLLARdefault] = ACTIONS(1592), - [anon_sym_DOLLARswitch] = ACTIONS(1592), - [anon_sym_DOLLARendswitch] = ACTIONS(1592), - [anon_sym_DOLLARfor] = ACTIONS(1592), - [anon_sym_DOLLARforeach] = ACTIONS(1592), - [anon_sym_DOLLARalignof] = ACTIONS(1592), - [anon_sym_DOLLARextnameof] = ACTIONS(1592), - [anon_sym_DOLLARnameof] = ACTIONS(1592), - [anon_sym_DOLLARoffsetof] = ACTIONS(1592), - [anon_sym_DOLLARqnameof] = ACTIONS(1592), - [anon_sym_DOLLARvaconst] = ACTIONS(1592), - [anon_sym_DOLLARvaarg] = ACTIONS(1592), - [anon_sym_DOLLARvaref] = ACTIONS(1592), - [anon_sym_DOLLARvaexpr] = ACTIONS(1592), - [anon_sym_true] = ACTIONS(1592), - [anon_sym_false] = ACTIONS(1592), - [anon_sym_null] = ACTIONS(1592), - [anon_sym_DOLLARvacount] = ACTIONS(1592), - [anon_sym_DOLLARappend] = ACTIONS(1592), - [anon_sym_DOLLARconcat] = ACTIONS(1592), - [anon_sym_DOLLAReval] = ACTIONS(1592), - [anon_sym_DOLLARis_const] = ACTIONS(1592), - [anon_sym_DOLLARsizeof] = ACTIONS(1592), - [anon_sym_DOLLARstringify] = ACTIONS(1592), - [anon_sym_DOLLARand] = ACTIONS(1592), - [anon_sym_DOLLARdefined] = ACTIONS(1592), - [anon_sym_DOLLARembed] = ACTIONS(1592), - [anon_sym_DOLLARor] = ACTIONS(1592), - [anon_sym_DOLLARfeature] = ACTIONS(1592), - [anon_sym_DOLLARassignable] = ACTIONS(1592), - [anon_sym_BANG] = ACTIONS(1594), - [anon_sym_TILDE] = ACTIONS(1594), - [anon_sym_PLUS_PLUS] = ACTIONS(1594), - [anon_sym_DASH_DASH] = ACTIONS(1594), - [anon_sym_typeid] = ACTIONS(1592), - [anon_sym_LBRACE_PIPE] = ACTIONS(1594), - [anon_sym_void] = ACTIONS(1592), - [anon_sym_bool] = ACTIONS(1592), - [anon_sym_char] = ACTIONS(1592), - [anon_sym_ichar] = ACTIONS(1592), - [anon_sym_short] = ACTIONS(1592), - [anon_sym_ushort] = ACTIONS(1592), - [anon_sym_uint] = ACTIONS(1592), - [anon_sym_long] = ACTIONS(1592), - [anon_sym_ulong] = ACTIONS(1592), - [anon_sym_int128] = ACTIONS(1592), - [anon_sym_uint128] = ACTIONS(1592), - [anon_sym_float] = ACTIONS(1592), - [anon_sym_double] = ACTIONS(1592), - [anon_sym_float16] = ACTIONS(1592), - [anon_sym_bfloat16] = ACTIONS(1592), - [anon_sym_float128] = ACTIONS(1592), - [anon_sym_iptr] = ACTIONS(1592), - [anon_sym_uptr] = ACTIONS(1592), - [anon_sym_isz] = ACTIONS(1592), - [anon_sym_usz] = ACTIONS(1592), - [anon_sym_anyfault] = ACTIONS(1592), - [anon_sym_any] = ACTIONS(1592), - [anon_sym_DOLLARtypeof] = ACTIONS(1592), - [anon_sym_DOLLARtypefrom] = ACTIONS(1592), - [anon_sym_DOLLARvatype] = ACTIONS(1592), - [anon_sym_DOLLARevaltype] = ACTIONS(1592), - [sym_real_literal] = ACTIONS(1594), + [sym_ident] = ACTIONS(1625), + [sym_integer_literal] = ACTIONS(1627), + [anon_sym_SQUOTE] = ACTIONS(1627), + [anon_sym_DQUOTE] = ACTIONS(1627), + [anon_sym_BQUOTE] = ACTIONS(1627), + [sym_bytes_literal] = ACTIONS(1627), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1625), + [sym_at_ident] = ACTIONS(1627), + [sym_hash_ident] = ACTIONS(1627), + [sym_type_ident] = ACTIONS(1627), + [sym_ct_type_ident] = ACTIONS(1627), + [sym_const_ident] = ACTIONS(1625), + [sym_builtin] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1627), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_static] = ACTIONS(1625), + [anon_sym_tlocal] = ACTIONS(1625), + [anon_sym_SEMI] = ACTIONS(1627), + [anon_sym_fn] = ACTIONS(1625), + [anon_sym_LBRACE] = ACTIONS(1625), + [anon_sym_const] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1625), + [anon_sym_return] = ACTIONS(1625), + [anon_sym_continue] = ACTIONS(1625), + [anon_sym_break] = ACTIONS(1625), + [anon_sym_defer] = ACTIONS(1625), + [anon_sym_assert] = ACTIONS(1625), + [anon_sym_nextcase] = ACTIONS(1625), + [anon_sym_switch] = ACTIONS(1625), + [anon_sym_AMP_AMP] = ACTIONS(1627), + [anon_sym_if] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1625), + [anon_sym_foreach] = ACTIONS(1625), + [anon_sym_foreach_r] = ACTIONS(1625), + [anon_sym_while] = ACTIONS(1625), + [anon_sym_do] = ACTIONS(1625), + [anon_sym_int] = ACTIONS(1625), + [anon_sym_PLUS] = ACTIONS(1625), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(1627), + [anon_sym_asm] = ACTIONS(1625), + [anon_sym_DOLLARassert] = ACTIONS(1625), + [anon_sym_DOLLARerror] = ACTIONS(1625), + [anon_sym_DOLLARecho] = ACTIONS(1625), + [anon_sym_DOLLARif] = ACTIONS(1625), + [anon_sym_DOLLARendif] = ACTIONS(1625), + [anon_sym_DOLLARelse] = ACTIONS(1625), + [anon_sym_DOLLARswitch] = ACTIONS(1625), + [anon_sym_DOLLARfor] = ACTIONS(1625), + [anon_sym_DOLLARforeach] = ACTIONS(1625), + [anon_sym_DOLLARalignof] = ACTIONS(1625), + [anon_sym_DOLLARextnameof] = ACTIONS(1625), + [anon_sym_DOLLARnameof] = ACTIONS(1625), + [anon_sym_DOLLARoffsetof] = ACTIONS(1625), + [anon_sym_DOLLARqnameof] = ACTIONS(1625), + [anon_sym_DOLLARvaconst] = ACTIONS(1625), + [anon_sym_DOLLARvaarg] = ACTIONS(1625), + [anon_sym_DOLLARvaref] = ACTIONS(1625), + [anon_sym_DOLLARvaexpr] = ACTIONS(1625), + [anon_sym_true] = ACTIONS(1625), + [anon_sym_false] = ACTIONS(1625), + [anon_sym_null] = ACTIONS(1625), + [anon_sym_DOLLARvacount] = ACTIONS(1625), + [anon_sym_DOLLARappend] = ACTIONS(1625), + [anon_sym_DOLLARconcat] = ACTIONS(1625), + [anon_sym_DOLLAReval] = ACTIONS(1625), + [anon_sym_DOLLARis_const] = ACTIONS(1625), + [anon_sym_DOLLARsizeof] = ACTIONS(1625), + [anon_sym_DOLLARstringify] = ACTIONS(1625), + [anon_sym_DOLLARand] = ACTIONS(1625), + [anon_sym_DOLLARdefined] = ACTIONS(1625), + [anon_sym_DOLLARembed] = ACTIONS(1625), + [anon_sym_DOLLARor] = ACTIONS(1625), + [anon_sym_DOLLARfeature] = ACTIONS(1625), + [anon_sym_DOLLARassignable] = ACTIONS(1625), + [anon_sym_BANG] = ACTIONS(1627), + [anon_sym_TILDE] = ACTIONS(1627), + [anon_sym_PLUS_PLUS] = ACTIONS(1627), + [anon_sym_DASH_DASH] = ACTIONS(1627), + [anon_sym_typeid] = ACTIONS(1625), + [anon_sym_LBRACE_PIPE] = ACTIONS(1627), + [anon_sym_void] = ACTIONS(1625), + [anon_sym_bool] = ACTIONS(1625), + [anon_sym_char] = ACTIONS(1625), + [anon_sym_ichar] = ACTIONS(1625), + [anon_sym_short] = ACTIONS(1625), + [anon_sym_ushort] = ACTIONS(1625), + [anon_sym_uint] = ACTIONS(1625), + [anon_sym_long] = ACTIONS(1625), + [anon_sym_ulong] = ACTIONS(1625), + [anon_sym_int128] = ACTIONS(1625), + [anon_sym_uint128] = ACTIONS(1625), + [anon_sym_float] = ACTIONS(1625), + [anon_sym_double] = ACTIONS(1625), + [anon_sym_float16] = ACTIONS(1625), + [anon_sym_bfloat16] = ACTIONS(1625), + [anon_sym_float128] = ACTIONS(1625), + [anon_sym_iptr] = ACTIONS(1625), + [anon_sym_uptr] = ACTIONS(1625), + [anon_sym_isz] = ACTIONS(1625), + [anon_sym_usz] = ACTIONS(1625), + [anon_sym_anyfault] = ACTIONS(1625), + [anon_sym_any] = ACTIONS(1625), + [anon_sym_DOLLARtypeof] = ACTIONS(1625), + [anon_sym_DOLLARtypefrom] = ACTIONS(1625), + [anon_sym_DOLLARvatype] = ACTIONS(1625), + [anon_sym_DOLLARevaltype] = ACTIONS(1625), + [sym_real_literal] = ACTIONS(1627), }, [499] = { [sym_line_comment] = STATE(499), [sym_doc_comment] = STATE(499), [sym_block_comment] = STATE(499), - [sym_ident] = ACTIONS(1386), - [sym_integer_literal] = ACTIONS(1388), - [anon_sym_SQUOTE] = ACTIONS(1388), - [anon_sym_DQUOTE] = ACTIONS(1388), - [anon_sym_BQUOTE] = ACTIONS(1388), - [sym_bytes_literal] = ACTIONS(1388), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1386), - [sym_at_ident] = ACTIONS(1388), - [sym_hash_ident] = ACTIONS(1388), - [sym_type_ident] = ACTIONS(1388), - [sym_ct_type_ident] = ACTIONS(1388), - [sym_const_ident] = ACTIONS(1386), - [sym_builtin] = ACTIONS(1388), - [anon_sym_LPAREN] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1386), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_tlocal] = ACTIONS(1386), - [anon_sym_SEMI] = ACTIONS(1388), - [anon_sym_fn] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_const] = ACTIONS(1386), - [anon_sym_var] = ACTIONS(1386), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_continue] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1386), - [anon_sym_defer] = ACTIONS(1386), - [anon_sym_assert] = ACTIONS(1386), - [anon_sym_nextcase] = ACTIONS(1386), - [anon_sym_switch] = ACTIONS(1386), - [anon_sym_AMP_AMP] = ACTIONS(1388), - [anon_sym_if] = ACTIONS(1386), - [anon_sym_for] = ACTIONS(1386), - [anon_sym_foreach] = ACTIONS(1386), - [anon_sym_foreach_r] = ACTIONS(1386), - [anon_sym_while] = ACTIONS(1386), - [anon_sym_do] = ACTIONS(1386), - [anon_sym_int] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_asm] = ACTIONS(1386), - [anon_sym_DOLLARassert] = ACTIONS(1386), - [anon_sym_DOLLARerror] = ACTIONS(1386), - [anon_sym_DOLLARecho] = ACTIONS(1386), - [anon_sym_DOLLARif] = ACTIONS(1386), - [anon_sym_DOLLARcase] = ACTIONS(1386), - [anon_sym_DOLLARdefault] = ACTIONS(1386), - [anon_sym_DOLLARswitch] = ACTIONS(1386), - [anon_sym_DOLLARendswitch] = ACTIONS(1386), - [anon_sym_DOLLARfor] = ACTIONS(1386), - [anon_sym_DOLLARforeach] = ACTIONS(1386), - [anon_sym_DOLLARalignof] = ACTIONS(1386), - [anon_sym_DOLLARextnameof] = ACTIONS(1386), - [anon_sym_DOLLARnameof] = ACTIONS(1386), - [anon_sym_DOLLARoffsetof] = ACTIONS(1386), - [anon_sym_DOLLARqnameof] = ACTIONS(1386), - [anon_sym_DOLLARvaconst] = ACTIONS(1386), - [anon_sym_DOLLARvaarg] = ACTIONS(1386), - [anon_sym_DOLLARvaref] = ACTIONS(1386), - [anon_sym_DOLLARvaexpr] = ACTIONS(1386), - [anon_sym_true] = ACTIONS(1386), - [anon_sym_false] = ACTIONS(1386), - [anon_sym_null] = ACTIONS(1386), - [anon_sym_DOLLARvacount] = ACTIONS(1386), - [anon_sym_DOLLARappend] = ACTIONS(1386), - [anon_sym_DOLLARconcat] = ACTIONS(1386), - [anon_sym_DOLLAReval] = ACTIONS(1386), - [anon_sym_DOLLARis_const] = ACTIONS(1386), - [anon_sym_DOLLARsizeof] = ACTIONS(1386), - [anon_sym_DOLLARstringify] = ACTIONS(1386), - [anon_sym_DOLLARand] = ACTIONS(1386), - [anon_sym_DOLLARdefined] = ACTIONS(1386), - [anon_sym_DOLLARembed] = ACTIONS(1386), - [anon_sym_DOLLARor] = ACTIONS(1386), - [anon_sym_DOLLARfeature] = ACTIONS(1386), - [anon_sym_DOLLARassignable] = ACTIONS(1386), - [anon_sym_BANG] = ACTIONS(1388), - [anon_sym_TILDE] = ACTIONS(1388), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [anon_sym_typeid] = ACTIONS(1386), - [anon_sym_LBRACE_PIPE] = ACTIONS(1388), - [anon_sym_void] = ACTIONS(1386), - [anon_sym_bool] = ACTIONS(1386), - [anon_sym_char] = ACTIONS(1386), - [anon_sym_ichar] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_ushort] = ACTIONS(1386), - [anon_sym_uint] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1386), - [anon_sym_ulong] = ACTIONS(1386), - [anon_sym_int128] = ACTIONS(1386), - [anon_sym_uint128] = ACTIONS(1386), - [anon_sym_float] = ACTIONS(1386), - [anon_sym_double] = ACTIONS(1386), - [anon_sym_float16] = ACTIONS(1386), - [anon_sym_bfloat16] = ACTIONS(1386), - [anon_sym_float128] = ACTIONS(1386), - [anon_sym_iptr] = ACTIONS(1386), - [anon_sym_uptr] = ACTIONS(1386), - [anon_sym_isz] = ACTIONS(1386), - [anon_sym_usz] = ACTIONS(1386), - [anon_sym_anyfault] = ACTIONS(1386), - [anon_sym_any] = ACTIONS(1386), - [anon_sym_DOLLARtypeof] = ACTIONS(1386), - [anon_sym_DOLLARtypefrom] = ACTIONS(1386), - [anon_sym_DOLLARvatype] = ACTIONS(1386), - [anon_sym_DOLLARevaltype] = ACTIONS(1386), - [sym_real_literal] = ACTIONS(1388), + [sym_ident] = ACTIONS(1573), + [sym_integer_literal] = ACTIONS(1575), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_DQUOTE] = ACTIONS(1575), + [anon_sym_BQUOTE] = ACTIONS(1575), + [sym_bytes_literal] = ACTIONS(1575), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1573), + [sym_at_ident] = ACTIONS(1575), + [sym_hash_ident] = ACTIONS(1575), + [sym_type_ident] = ACTIONS(1575), + [sym_ct_type_ident] = ACTIONS(1575), + [sym_const_ident] = ACTIONS(1573), + [sym_builtin] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(1575), + [anon_sym_AMP] = ACTIONS(1573), + [anon_sym_static] = ACTIONS(1573), + [anon_sym_tlocal] = ACTIONS(1573), + [anon_sym_SEMI] = ACTIONS(1575), + [anon_sym_fn] = ACTIONS(1573), + [anon_sym_LBRACE] = ACTIONS(1573), + [anon_sym_const] = ACTIONS(1573), + [anon_sym_var] = ACTIONS(1573), + [anon_sym_return] = ACTIONS(1573), + [anon_sym_continue] = ACTIONS(1573), + [anon_sym_break] = ACTIONS(1573), + [anon_sym_defer] = ACTIONS(1573), + [anon_sym_assert] = ACTIONS(1573), + [anon_sym_nextcase] = ACTIONS(1573), + [anon_sym_switch] = ACTIONS(1573), + [anon_sym_AMP_AMP] = ACTIONS(1575), + [anon_sym_if] = ACTIONS(1573), + [anon_sym_for] = ACTIONS(1573), + [anon_sym_foreach] = ACTIONS(1573), + [anon_sym_foreach_r] = ACTIONS(1573), + [anon_sym_while] = ACTIONS(1573), + [anon_sym_do] = ACTIONS(1573), + [anon_sym_int] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1573), + [anon_sym_DASH] = ACTIONS(1573), + [anon_sym_STAR] = ACTIONS(1575), + [anon_sym_asm] = ACTIONS(1573), + [anon_sym_DOLLARassert] = ACTIONS(1573), + [anon_sym_DOLLARerror] = ACTIONS(1573), + [anon_sym_DOLLARecho] = ACTIONS(1573), + [anon_sym_DOLLARif] = ACTIONS(1573), + [anon_sym_DOLLARendif] = ACTIONS(1573), + [anon_sym_DOLLARelse] = ACTIONS(1573), + [anon_sym_DOLLARswitch] = ACTIONS(1573), + [anon_sym_DOLLARfor] = ACTIONS(1573), + [anon_sym_DOLLARforeach] = ACTIONS(1573), + [anon_sym_DOLLARalignof] = ACTIONS(1573), + [anon_sym_DOLLARextnameof] = ACTIONS(1573), + [anon_sym_DOLLARnameof] = ACTIONS(1573), + [anon_sym_DOLLARoffsetof] = ACTIONS(1573), + [anon_sym_DOLLARqnameof] = ACTIONS(1573), + [anon_sym_DOLLARvaconst] = ACTIONS(1573), + [anon_sym_DOLLARvaarg] = ACTIONS(1573), + [anon_sym_DOLLARvaref] = ACTIONS(1573), + [anon_sym_DOLLARvaexpr] = ACTIONS(1573), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [anon_sym_null] = ACTIONS(1573), + [anon_sym_DOLLARvacount] = ACTIONS(1573), + [anon_sym_DOLLARappend] = ACTIONS(1573), + [anon_sym_DOLLARconcat] = ACTIONS(1573), + [anon_sym_DOLLAReval] = ACTIONS(1573), + [anon_sym_DOLLARis_const] = ACTIONS(1573), + [anon_sym_DOLLARsizeof] = ACTIONS(1573), + [anon_sym_DOLLARstringify] = ACTIONS(1573), + [anon_sym_DOLLARand] = ACTIONS(1573), + [anon_sym_DOLLARdefined] = ACTIONS(1573), + [anon_sym_DOLLARembed] = ACTIONS(1573), + [anon_sym_DOLLARor] = ACTIONS(1573), + [anon_sym_DOLLARfeature] = ACTIONS(1573), + [anon_sym_DOLLARassignable] = ACTIONS(1573), + [anon_sym_BANG] = ACTIONS(1575), + [anon_sym_TILDE] = ACTIONS(1575), + [anon_sym_PLUS_PLUS] = ACTIONS(1575), + [anon_sym_DASH_DASH] = ACTIONS(1575), + [anon_sym_typeid] = ACTIONS(1573), + [anon_sym_LBRACE_PIPE] = ACTIONS(1575), + [anon_sym_void] = ACTIONS(1573), + [anon_sym_bool] = ACTIONS(1573), + [anon_sym_char] = ACTIONS(1573), + [anon_sym_ichar] = ACTIONS(1573), + [anon_sym_short] = ACTIONS(1573), + [anon_sym_ushort] = ACTIONS(1573), + [anon_sym_uint] = ACTIONS(1573), + [anon_sym_long] = ACTIONS(1573), + [anon_sym_ulong] = ACTIONS(1573), + [anon_sym_int128] = ACTIONS(1573), + [anon_sym_uint128] = ACTIONS(1573), + [anon_sym_float] = ACTIONS(1573), + [anon_sym_double] = ACTIONS(1573), + [anon_sym_float16] = ACTIONS(1573), + [anon_sym_bfloat16] = ACTIONS(1573), + [anon_sym_float128] = ACTIONS(1573), + [anon_sym_iptr] = ACTIONS(1573), + [anon_sym_uptr] = ACTIONS(1573), + [anon_sym_isz] = ACTIONS(1573), + [anon_sym_usz] = ACTIONS(1573), + [anon_sym_anyfault] = ACTIONS(1573), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_DOLLARtypeof] = ACTIONS(1573), + [anon_sym_DOLLARtypefrom] = ACTIONS(1573), + [anon_sym_DOLLARvatype] = ACTIONS(1573), + [anon_sym_DOLLARevaltype] = ACTIONS(1573), + [sym_real_literal] = ACTIONS(1575), }, [500] = { [sym_line_comment] = STATE(500), [sym_doc_comment] = STATE(500), [sym_block_comment] = STATE(500), - [sym_ident] = ACTIONS(1596), - [sym_integer_literal] = ACTIONS(1598), - [anon_sym_SQUOTE] = ACTIONS(1598), - [anon_sym_DQUOTE] = ACTIONS(1598), - [anon_sym_BQUOTE] = ACTIONS(1598), - [sym_bytes_literal] = ACTIONS(1598), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1596), - [sym_at_ident] = ACTIONS(1598), - [sym_hash_ident] = ACTIONS(1598), - [sym_type_ident] = ACTIONS(1598), - [sym_ct_type_ident] = ACTIONS(1598), - [sym_const_ident] = ACTIONS(1596), - [sym_builtin] = ACTIONS(1598), - [anon_sym_LPAREN] = ACTIONS(1598), - [anon_sym_AMP] = ACTIONS(1596), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_tlocal] = ACTIONS(1596), - [anon_sym_SEMI] = ACTIONS(1598), - [anon_sym_fn] = ACTIONS(1596), - [anon_sym_LBRACE] = ACTIONS(1596), - [anon_sym_const] = ACTIONS(1596), - [anon_sym_var] = ACTIONS(1596), - [anon_sym_return] = ACTIONS(1596), - [anon_sym_continue] = ACTIONS(1596), - [anon_sym_break] = ACTIONS(1596), - [anon_sym_defer] = ACTIONS(1596), - [anon_sym_assert] = ACTIONS(1596), - [anon_sym_nextcase] = ACTIONS(1596), - [anon_sym_switch] = ACTIONS(1596), - [anon_sym_AMP_AMP] = ACTIONS(1598), - [anon_sym_if] = ACTIONS(1596), - [anon_sym_for] = ACTIONS(1596), - [anon_sym_foreach] = ACTIONS(1596), - [anon_sym_foreach_r] = ACTIONS(1596), - [anon_sym_while] = ACTIONS(1596), - [anon_sym_do] = ACTIONS(1596), - [anon_sym_int] = ACTIONS(1596), - [anon_sym_PLUS] = ACTIONS(1596), - [anon_sym_DASH] = ACTIONS(1596), - [anon_sym_STAR] = ACTIONS(1598), - [anon_sym_asm] = ACTIONS(1596), - [anon_sym_DOLLARassert] = ACTIONS(1596), - [anon_sym_DOLLARerror] = ACTIONS(1596), - [anon_sym_DOLLARecho] = ACTIONS(1596), - [anon_sym_DOLLARif] = ACTIONS(1596), - [anon_sym_DOLLARcase] = ACTIONS(1596), - [anon_sym_DOLLARdefault] = ACTIONS(1596), - [anon_sym_DOLLARswitch] = ACTIONS(1596), - [anon_sym_DOLLARendswitch] = ACTIONS(1596), - [anon_sym_DOLLARfor] = ACTIONS(1596), - [anon_sym_DOLLARforeach] = ACTIONS(1596), - [anon_sym_DOLLARalignof] = ACTIONS(1596), - [anon_sym_DOLLARextnameof] = ACTIONS(1596), - [anon_sym_DOLLARnameof] = ACTIONS(1596), - [anon_sym_DOLLARoffsetof] = ACTIONS(1596), - [anon_sym_DOLLARqnameof] = ACTIONS(1596), - [anon_sym_DOLLARvaconst] = ACTIONS(1596), - [anon_sym_DOLLARvaarg] = ACTIONS(1596), - [anon_sym_DOLLARvaref] = ACTIONS(1596), - [anon_sym_DOLLARvaexpr] = ACTIONS(1596), - [anon_sym_true] = ACTIONS(1596), - [anon_sym_false] = ACTIONS(1596), - [anon_sym_null] = ACTIONS(1596), - [anon_sym_DOLLARvacount] = ACTIONS(1596), - [anon_sym_DOLLARappend] = ACTIONS(1596), - [anon_sym_DOLLARconcat] = ACTIONS(1596), - [anon_sym_DOLLAReval] = ACTIONS(1596), - [anon_sym_DOLLARis_const] = ACTIONS(1596), - [anon_sym_DOLLARsizeof] = ACTIONS(1596), - [anon_sym_DOLLARstringify] = ACTIONS(1596), - [anon_sym_DOLLARand] = ACTIONS(1596), - [anon_sym_DOLLARdefined] = ACTIONS(1596), - [anon_sym_DOLLARembed] = ACTIONS(1596), - [anon_sym_DOLLARor] = ACTIONS(1596), - [anon_sym_DOLLARfeature] = ACTIONS(1596), - [anon_sym_DOLLARassignable] = ACTIONS(1596), - [anon_sym_BANG] = ACTIONS(1598), - [anon_sym_TILDE] = ACTIONS(1598), - [anon_sym_PLUS_PLUS] = ACTIONS(1598), - [anon_sym_DASH_DASH] = ACTIONS(1598), - [anon_sym_typeid] = ACTIONS(1596), - [anon_sym_LBRACE_PIPE] = ACTIONS(1598), - [anon_sym_void] = ACTIONS(1596), - [anon_sym_bool] = ACTIONS(1596), - [anon_sym_char] = ACTIONS(1596), - [anon_sym_ichar] = ACTIONS(1596), - [anon_sym_short] = ACTIONS(1596), - [anon_sym_ushort] = ACTIONS(1596), - [anon_sym_uint] = ACTIONS(1596), - [anon_sym_long] = ACTIONS(1596), - [anon_sym_ulong] = ACTIONS(1596), - [anon_sym_int128] = ACTIONS(1596), - [anon_sym_uint128] = ACTIONS(1596), - [anon_sym_float] = ACTIONS(1596), - [anon_sym_double] = ACTIONS(1596), - [anon_sym_float16] = ACTIONS(1596), - [anon_sym_bfloat16] = ACTIONS(1596), - [anon_sym_float128] = ACTIONS(1596), - [anon_sym_iptr] = ACTIONS(1596), - [anon_sym_uptr] = ACTIONS(1596), - [anon_sym_isz] = ACTIONS(1596), - [anon_sym_usz] = ACTIONS(1596), - [anon_sym_anyfault] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_DOLLARtypeof] = ACTIONS(1596), - [anon_sym_DOLLARtypefrom] = ACTIONS(1596), - [anon_sym_DOLLARvatype] = ACTIONS(1596), - [anon_sym_DOLLARevaltype] = ACTIONS(1596), - [sym_real_literal] = ACTIONS(1598), + [sym_ident] = ACTIONS(1557), + [sym_integer_literal] = ACTIONS(1559), + [anon_sym_SQUOTE] = ACTIONS(1559), + [anon_sym_DQUOTE] = ACTIONS(1559), + [anon_sym_BQUOTE] = ACTIONS(1559), + [sym_bytes_literal] = ACTIONS(1559), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1557), + [sym_at_ident] = ACTIONS(1559), + [sym_hash_ident] = ACTIONS(1559), + [sym_type_ident] = ACTIONS(1559), + [sym_ct_type_ident] = ACTIONS(1559), + [sym_const_ident] = ACTIONS(1557), + [sym_builtin] = ACTIONS(1559), + [anon_sym_LPAREN] = ACTIONS(1559), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_static] = ACTIONS(1557), + [anon_sym_tlocal] = ACTIONS(1557), + [anon_sym_SEMI] = ACTIONS(1559), + [anon_sym_fn] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1557), + [anon_sym_const] = ACTIONS(1557), + [anon_sym_var] = ACTIONS(1557), + [anon_sym_return] = ACTIONS(1557), + [anon_sym_continue] = ACTIONS(1557), + [anon_sym_break] = ACTIONS(1557), + [anon_sym_defer] = ACTIONS(1557), + [anon_sym_assert] = ACTIONS(1557), + [anon_sym_nextcase] = ACTIONS(1557), + [anon_sym_switch] = ACTIONS(1557), + [anon_sym_AMP_AMP] = ACTIONS(1559), + [anon_sym_if] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(1557), + [anon_sym_foreach] = ACTIONS(1557), + [anon_sym_foreach_r] = ACTIONS(1557), + [anon_sym_while] = ACTIONS(1557), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_int] = ACTIONS(1557), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_STAR] = ACTIONS(1559), + [anon_sym_asm] = ACTIONS(1557), + [anon_sym_DOLLARassert] = ACTIONS(1557), + [anon_sym_DOLLARerror] = ACTIONS(1557), + [anon_sym_DOLLARecho] = ACTIONS(1557), + [anon_sym_DOLLARif] = ACTIONS(1557), + [anon_sym_DOLLARendif] = ACTIONS(1557), + [anon_sym_DOLLARelse] = ACTIONS(1557), + [anon_sym_DOLLARswitch] = ACTIONS(1557), + [anon_sym_DOLLARfor] = ACTIONS(1557), + [anon_sym_DOLLARforeach] = ACTIONS(1557), + [anon_sym_DOLLARalignof] = ACTIONS(1557), + [anon_sym_DOLLARextnameof] = ACTIONS(1557), + [anon_sym_DOLLARnameof] = ACTIONS(1557), + [anon_sym_DOLLARoffsetof] = ACTIONS(1557), + [anon_sym_DOLLARqnameof] = ACTIONS(1557), + [anon_sym_DOLLARvaconst] = ACTIONS(1557), + [anon_sym_DOLLARvaarg] = ACTIONS(1557), + [anon_sym_DOLLARvaref] = ACTIONS(1557), + [anon_sym_DOLLARvaexpr] = ACTIONS(1557), + [anon_sym_true] = ACTIONS(1557), + [anon_sym_false] = ACTIONS(1557), + [anon_sym_null] = ACTIONS(1557), + [anon_sym_DOLLARvacount] = ACTIONS(1557), + [anon_sym_DOLLARappend] = ACTIONS(1557), + [anon_sym_DOLLARconcat] = ACTIONS(1557), + [anon_sym_DOLLAReval] = ACTIONS(1557), + [anon_sym_DOLLARis_const] = ACTIONS(1557), + [anon_sym_DOLLARsizeof] = ACTIONS(1557), + [anon_sym_DOLLARstringify] = ACTIONS(1557), + [anon_sym_DOLLARand] = ACTIONS(1557), + [anon_sym_DOLLARdefined] = ACTIONS(1557), + [anon_sym_DOLLARembed] = ACTIONS(1557), + [anon_sym_DOLLARor] = ACTIONS(1557), + [anon_sym_DOLLARfeature] = ACTIONS(1557), + [anon_sym_DOLLARassignable] = ACTIONS(1557), + [anon_sym_BANG] = ACTIONS(1559), + [anon_sym_TILDE] = ACTIONS(1559), + [anon_sym_PLUS_PLUS] = ACTIONS(1559), + [anon_sym_DASH_DASH] = ACTIONS(1559), + [anon_sym_typeid] = ACTIONS(1557), + [anon_sym_LBRACE_PIPE] = ACTIONS(1559), + [anon_sym_void] = ACTIONS(1557), + [anon_sym_bool] = ACTIONS(1557), + [anon_sym_char] = ACTIONS(1557), + [anon_sym_ichar] = ACTIONS(1557), + [anon_sym_short] = ACTIONS(1557), + [anon_sym_ushort] = ACTIONS(1557), + [anon_sym_uint] = ACTIONS(1557), + [anon_sym_long] = ACTIONS(1557), + [anon_sym_ulong] = ACTIONS(1557), + [anon_sym_int128] = ACTIONS(1557), + [anon_sym_uint128] = ACTIONS(1557), + [anon_sym_float] = ACTIONS(1557), + [anon_sym_double] = ACTIONS(1557), + [anon_sym_float16] = ACTIONS(1557), + [anon_sym_bfloat16] = ACTIONS(1557), + [anon_sym_float128] = ACTIONS(1557), + [anon_sym_iptr] = ACTIONS(1557), + [anon_sym_uptr] = ACTIONS(1557), + [anon_sym_isz] = ACTIONS(1557), + [anon_sym_usz] = ACTIONS(1557), + [anon_sym_anyfault] = ACTIONS(1557), + [anon_sym_any] = ACTIONS(1557), + [anon_sym_DOLLARtypeof] = ACTIONS(1557), + [anon_sym_DOLLARtypefrom] = ACTIONS(1557), + [anon_sym_DOLLARvatype] = ACTIONS(1557), + [anon_sym_DOLLARevaltype] = ACTIONS(1557), + [sym_real_literal] = ACTIONS(1559), }, [501] = { [sym_line_comment] = STATE(501), [sym_doc_comment] = STATE(501), [sym_block_comment] = STATE(501), - [sym_ident] = ACTIONS(1600), - [sym_integer_literal] = ACTIONS(1602), - [anon_sym_SQUOTE] = ACTIONS(1602), - [anon_sym_DQUOTE] = ACTIONS(1602), - [anon_sym_BQUOTE] = ACTIONS(1602), - [sym_bytes_literal] = ACTIONS(1602), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1600), - [sym_at_ident] = ACTIONS(1602), - [sym_hash_ident] = ACTIONS(1602), - [sym_type_ident] = ACTIONS(1602), - [sym_ct_type_ident] = ACTIONS(1602), - [sym_const_ident] = ACTIONS(1600), - [sym_builtin] = ACTIONS(1602), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_AMP] = ACTIONS(1600), - [anon_sym_static] = ACTIONS(1600), - [anon_sym_tlocal] = ACTIONS(1600), - [anon_sym_SEMI] = ACTIONS(1602), - [anon_sym_fn] = ACTIONS(1600), - [anon_sym_LBRACE] = ACTIONS(1600), - [anon_sym_const] = ACTIONS(1600), - [anon_sym_var] = ACTIONS(1600), - [anon_sym_return] = ACTIONS(1600), - [anon_sym_continue] = ACTIONS(1600), - [anon_sym_break] = ACTIONS(1600), - [anon_sym_defer] = ACTIONS(1600), - [anon_sym_assert] = ACTIONS(1600), - [anon_sym_nextcase] = ACTIONS(1600), - [anon_sym_switch] = ACTIONS(1600), - [anon_sym_AMP_AMP] = ACTIONS(1602), - [anon_sym_if] = ACTIONS(1600), - [anon_sym_for] = ACTIONS(1600), - [anon_sym_foreach] = ACTIONS(1600), - [anon_sym_foreach_r] = ACTIONS(1600), - [anon_sym_while] = ACTIONS(1600), - [anon_sym_do] = ACTIONS(1600), - [anon_sym_int] = ACTIONS(1600), - [anon_sym_PLUS] = ACTIONS(1600), - [anon_sym_DASH] = ACTIONS(1600), - [anon_sym_STAR] = ACTIONS(1602), - [anon_sym_asm] = ACTIONS(1600), - [anon_sym_DOLLARassert] = ACTIONS(1600), - [anon_sym_DOLLARerror] = ACTIONS(1600), - [anon_sym_DOLLARecho] = ACTIONS(1600), - [anon_sym_DOLLARif] = ACTIONS(1600), - [anon_sym_DOLLARcase] = ACTIONS(1600), - [anon_sym_DOLLARdefault] = ACTIONS(1600), - [anon_sym_DOLLARswitch] = ACTIONS(1600), - [anon_sym_DOLLARendswitch] = ACTIONS(1600), - [anon_sym_DOLLARfor] = ACTIONS(1600), - [anon_sym_DOLLARforeach] = ACTIONS(1600), - [anon_sym_DOLLARalignof] = ACTIONS(1600), - [anon_sym_DOLLARextnameof] = ACTIONS(1600), - [anon_sym_DOLLARnameof] = ACTIONS(1600), - [anon_sym_DOLLARoffsetof] = ACTIONS(1600), - [anon_sym_DOLLARqnameof] = ACTIONS(1600), - [anon_sym_DOLLARvaconst] = ACTIONS(1600), - [anon_sym_DOLLARvaarg] = ACTIONS(1600), - [anon_sym_DOLLARvaref] = ACTIONS(1600), - [anon_sym_DOLLARvaexpr] = ACTIONS(1600), - [anon_sym_true] = ACTIONS(1600), - [anon_sym_false] = ACTIONS(1600), - [anon_sym_null] = ACTIONS(1600), - [anon_sym_DOLLARvacount] = ACTIONS(1600), - [anon_sym_DOLLARappend] = ACTIONS(1600), - [anon_sym_DOLLARconcat] = ACTIONS(1600), - [anon_sym_DOLLAReval] = ACTIONS(1600), - [anon_sym_DOLLARis_const] = ACTIONS(1600), - [anon_sym_DOLLARsizeof] = ACTIONS(1600), - [anon_sym_DOLLARstringify] = ACTIONS(1600), - [anon_sym_DOLLARand] = ACTIONS(1600), - [anon_sym_DOLLARdefined] = ACTIONS(1600), - [anon_sym_DOLLARembed] = ACTIONS(1600), - [anon_sym_DOLLARor] = ACTIONS(1600), - [anon_sym_DOLLARfeature] = ACTIONS(1600), - [anon_sym_DOLLARassignable] = ACTIONS(1600), - [anon_sym_BANG] = ACTIONS(1602), - [anon_sym_TILDE] = ACTIONS(1602), - [anon_sym_PLUS_PLUS] = ACTIONS(1602), - [anon_sym_DASH_DASH] = ACTIONS(1602), - [anon_sym_typeid] = ACTIONS(1600), - [anon_sym_LBRACE_PIPE] = ACTIONS(1602), - [anon_sym_void] = ACTIONS(1600), - [anon_sym_bool] = ACTIONS(1600), - [anon_sym_char] = ACTIONS(1600), - [anon_sym_ichar] = ACTIONS(1600), - [anon_sym_short] = ACTIONS(1600), - [anon_sym_ushort] = ACTIONS(1600), - [anon_sym_uint] = ACTIONS(1600), - [anon_sym_long] = ACTIONS(1600), - [anon_sym_ulong] = ACTIONS(1600), - [anon_sym_int128] = ACTIONS(1600), - [anon_sym_uint128] = ACTIONS(1600), - [anon_sym_float] = ACTIONS(1600), - [anon_sym_double] = ACTIONS(1600), - [anon_sym_float16] = ACTIONS(1600), - [anon_sym_bfloat16] = ACTIONS(1600), - [anon_sym_float128] = ACTIONS(1600), - [anon_sym_iptr] = ACTIONS(1600), - [anon_sym_uptr] = ACTIONS(1600), - [anon_sym_isz] = ACTIONS(1600), - [anon_sym_usz] = ACTIONS(1600), - [anon_sym_anyfault] = ACTIONS(1600), - [anon_sym_any] = ACTIONS(1600), - [anon_sym_DOLLARtypeof] = ACTIONS(1600), - [anon_sym_DOLLARtypefrom] = ACTIONS(1600), - [anon_sym_DOLLARvatype] = ACTIONS(1600), - [anon_sym_DOLLARevaltype] = ACTIONS(1600), - [sym_real_literal] = ACTIONS(1602), + [sym_ident] = ACTIONS(1553), + [sym_integer_literal] = ACTIONS(1555), + [anon_sym_SQUOTE] = ACTIONS(1555), + [anon_sym_DQUOTE] = ACTIONS(1555), + [anon_sym_BQUOTE] = ACTIONS(1555), + [sym_bytes_literal] = ACTIONS(1555), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1553), + [sym_at_ident] = ACTIONS(1555), + [sym_hash_ident] = ACTIONS(1555), + [sym_type_ident] = ACTIONS(1555), + [sym_ct_type_ident] = ACTIONS(1555), + [sym_const_ident] = ACTIONS(1553), + [sym_builtin] = ACTIONS(1555), + [anon_sym_LPAREN] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1553), + [anon_sym_static] = ACTIONS(1553), + [anon_sym_tlocal] = ACTIONS(1553), + [anon_sym_SEMI] = ACTIONS(1555), + [anon_sym_fn] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1553), + [anon_sym_const] = ACTIONS(1553), + [anon_sym_var] = ACTIONS(1553), + [anon_sym_return] = ACTIONS(1553), + [anon_sym_continue] = ACTIONS(1553), + [anon_sym_break] = ACTIONS(1553), + [anon_sym_defer] = ACTIONS(1553), + [anon_sym_assert] = ACTIONS(1553), + [anon_sym_nextcase] = ACTIONS(1553), + [anon_sym_switch] = ACTIONS(1553), + [anon_sym_AMP_AMP] = ACTIONS(1555), + [anon_sym_if] = ACTIONS(1553), + [anon_sym_for] = ACTIONS(1553), + [anon_sym_foreach] = ACTIONS(1553), + [anon_sym_foreach_r] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1553), + [anon_sym_do] = ACTIONS(1553), + [anon_sym_int] = ACTIONS(1553), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1555), + [anon_sym_asm] = ACTIONS(1553), + [anon_sym_DOLLARassert] = ACTIONS(1553), + [anon_sym_DOLLARerror] = ACTIONS(1553), + [anon_sym_DOLLARecho] = ACTIONS(1553), + [anon_sym_DOLLARif] = ACTIONS(1553), + [anon_sym_DOLLARendif] = ACTIONS(1553), + [anon_sym_DOLLARelse] = ACTIONS(1553), + [anon_sym_DOLLARswitch] = ACTIONS(1553), + [anon_sym_DOLLARfor] = ACTIONS(1553), + [anon_sym_DOLLARforeach] = ACTIONS(1553), + [anon_sym_DOLLARalignof] = ACTIONS(1553), + [anon_sym_DOLLARextnameof] = ACTIONS(1553), + [anon_sym_DOLLARnameof] = ACTIONS(1553), + [anon_sym_DOLLARoffsetof] = ACTIONS(1553), + [anon_sym_DOLLARqnameof] = ACTIONS(1553), + [anon_sym_DOLLARvaconst] = ACTIONS(1553), + [anon_sym_DOLLARvaarg] = ACTIONS(1553), + [anon_sym_DOLLARvaref] = ACTIONS(1553), + [anon_sym_DOLLARvaexpr] = ACTIONS(1553), + [anon_sym_true] = ACTIONS(1553), + [anon_sym_false] = ACTIONS(1553), + [anon_sym_null] = ACTIONS(1553), + [anon_sym_DOLLARvacount] = ACTIONS(1553), + [anon_sym_DOLLARappend] = ACTIONS(1553), + [anon_sym_DOLLARconcat] = ACTIONS(1553), + [anon_sym_DOLLAReval] = ACTIONS(1553), + [anon_sym_DOLLARis_const] = ACTIONS(1553), + [anon_sym_DOLLARsizeof] = ACTIONS(1553), + [anon_sym_DOLLARstringify] = ACTIONS(1553), + [anon_sym_DOLLARand] = ACTIONS(1553), + [anon_sym_DOLLARdefined] = ACTIONS(1553), + [anon_sym_DOLLARembed] = ACTIONS(1553), + [anon_sym_DOLLARor] = ACTIONS(1553), + [anon_sym_DOLLARfeature] = ACTIONS(1553), + [anon_sym_DOLLARassignable] = ACTIONS(1553), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_TILDE] = ACTIONS(1555), + [anon_sym_PLUS_PLUS] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(1555), + [anon_sym_typeid] = ACTIONS(1553), + [anon_sym_LBRACE_PIPE] = ACTIONS(1555), + [anon_sym_void] = ACTIONS(1553), + [anon_sym_bool] = ACTIONS(1553), + [anon_sym_char] = ACTIONS(1553), + [anon_sym_ichar] = ACTIONS(1553), + [anon_sym_short] = ACTIONS(1553), + [anon_sym_ushort] = ACTIONS(1553), + [anon_sym_uint] = ACTIONS(1553), + [anon_sym_long] = ACTIONS(1553), + [anon_sym_ulong] = ACTIONS(1553), + [anon_sym_int128] = ACTIONS(1553), + [anon_sym_uint128] = ACTIONS(1553), + [anon_sym_float] = ACTIONS(1553), + [anon_sym_double] = ACTIONS(1553), + [anon_sym_float16] = ACTIONS(1553), + [anon_sym_bfloat16] = ACTIONS(1553), + [anon_sym_float128] = ACTIONS(1553), + [anon_sym_iptr] = ACTIONS(1553), + [anon_sym_uptr] = ACTIONS(1553), + [anon_sym_isz] = ACTIONS(1553), + [anon_sym_usz] = ACTIONS(1553), + [anon_sym_anyfault] = ACTIONS(1553), + [anon_sym_any] = ACTIONS(1553), + [anon_sym_DOLLARtypeof] = ACTIONS(1553), + [anon_sym_DOLLARtypefrom] = ACTIONS(1553), + [anon_sym_DOLLARvatype] = ACTIONS(1553), + [anon_sym_DOLLARevaltype] = ACTIONS(1553), + [sym_real_literal] = ACTIONS(1555), }, [502] = { [sym_line_comment] = STATE(502), [sym_doc_comment] = STATE(502), [sym_block_comment] = STATE(502), - [sym_ident] = ACTIONS(1636), - [sym_integer_literal] = ACTIONS(1638), - [anon_sym_SQUOTE] = ACTIONS(1638), - [anon_sym_DQUOTE] = ACTIONS(1638), - [anon_sym_BQUOTE] = ACTIONS(1638), - [sym_bytes_literal] = ACTIONS(1638), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1636), - [sym_at_ident] = ACTIONS(1638), - [sym_hash_ident] = ACTIONS(1638), - [sym_type_ident] = ACTIONS(1638), - [sym_ct_type_ident] = ACTIONS(1638), - [sym_const_ident] = ACTIONS(1636), - [sym_builtin] = ACTIONS(1638), - [anon_sym_LPAREN] = ACTIONS(1638), - [anon_sym_AMP] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(1636), - [anon_sym_tlocal] = ACTIONS(1636), - [anon_sym_SEMI] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1636), - [anon_sym_LBRACE] = ACTIONS(1636), - [anon_sym_const] = ACTIONS(1636), - [anon_sym_var] = ACTIONS(1636), - [anon_sym_return] = ACTIONS(1636), - [anon_sym_continue] = ACTIONS(1636), - [anon_sym_break] = ACTIONS(1636), - [anon_sym_defer] = ACTIONS(1636), - [anon_sym_assert] = ACTIONS(1636), - [anon_sym_nextcase] = ACTIONS(1636), - [anon_sym_switch] = ACTIONS(1636), - [anon_sym_AMP_AMP] = ACTIONS(1638), - [anon_sym_if] = ACTIONS(1636), - [anon_sym_for] = ACTIONS(1636), - [anon_sym_foreach] = ACTIONS(1636), - [anon_sym_foreach_r] = ACTIONS(1636), - [anon_sym_while] = ACTIONS(1636), - [anon_sym_do] = ACTIONS(1636), - [anon_sym_int] = ACTIONS(1636), - [anon_sym_PLUS] = ACTIONS(1636), - [anon_sym_DASH] = ACTIONS(1636), - [anon_sym_STAR] = ACTIONS(1638), - [anon_sym_asm] = ACTIONS(1636), - [anon_sym_DOLLARassert] = ACTIONS(1636), - [anon_sym_DOLLARerror] = ACTIONS(1636), - [anon_sym_DOLLARecho] = ACTIONS(1636), - [anon_sym_DOLLARif] = ACTIONS(1636), - [anon_sym_DOLLARcase] = ACTIONS(1636), - [anon_sym_DOLLARdefault] = ACTIONS(1636), - [anon_sym_DOLLARswitch] = ACTIONS(1636), - [anon_sym_DOLLARendswitch] = ACTIONS(1636), - [anon_sym_DOLLARfor] = ACTIONS(1636), - [anon_sym_DOLLARforeach] = ACTIONS(1636), - [anon_sym_DOLLARalignof] = ACTIONS(1636), - [anon_sym_DOLLARextnameof] = ACTIONS(1636), - [anon_sym_DOLLARnameof] = ACTIONS(1636), - [anon_sym_DOLLARoffsetof] = ACTIONS(1636), - [anon_sym_DOLLARqnameof] = ACTIONS(1636), - [anon_sym_DOLLARvaconst] = ACTIONS(1636), - [anon_sym_DOLLARvaarg] = ACTIONS(1636), - [anon_sym_DOLLARvaref] = ACTIONS(1636), - [anon_sym_DOLLARvaexpr] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1636), - [anon_sym_false] = ACTIONS(1636), - [anon_sym_null] = ACTIONS(1636), - [anon_sym_DOLLARvacount] = ACTIONS(1636), - [anon_sym_DOLLARappend] = ACTIONS(1636), - [anon_sym_DOLLARconcat] = ACTIONS(1636), - [anon_sym_DOLLAReval] = ACTIONS(1636), - [anon_sym_DOLLARis_const] = ACTIONS(1636), - [anon_sym_DOLLARsizeof] = ACTIONS(1636), - [anon_sym_DOLLARstringify] = ACTIONS(1636), - [anon_sym_DOLLARand] = ACTIONS(1636), - [anon_sym_DOLLARdefined] = ACTIONS(1636), - [anon_sym_DOLLARembed] = ACTIONS(1636), - [anon_sym_DOLLARor] = ACTIONS(1636), - [anon_sym_DOLLARfeature] = ACTIONS(1636), - [anon_sym_DOLLARassignable] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1638), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_PLUS_PLUS] = ACTIONS(1638), - [anon_sym_DASH_DASH] = ACTIONS(1638), - [anon_sym_typeid] = ACTIONS(1636), - [anon_sym_LBRACE_PIPE] = ACTIONS(1638), - [anon_sym_void] = ACTIONS(1636), - [anon_sym_bool] = ACTIONS(1636), - [anon_sym_char] = ACTIONS(1636), - [anon_sym_ichar] = ACTIONS(1636), - [anon_sym_short] = ACTIONS(1636), - [anon_sym_ushort] = ACTIONS(1636), - [anon_sym_uint] = ACTIONS(1636), - [anon_sym_long] = ACTIONS(1636), - [anon_sym_ulong] = ACTIONS(1636), - [anon_sym_int128] = ACTIONS(1636), - [anon_sym_uint128] = ACTIONS(1636), - [anon_sym_float] = ACTIONS(1636), - [anon_sym_double] = ACTIONS(1636), - [anon_sym_float16] = ACTIONS(1636), - [anon_sym_bfloat16] = ACTIONS(1636), - [anon_sym_float128] = ACTIONS(1636), - [anon_sym_iptr] = ACTIONS(1636), - [anon_sym_uptr] = ACTIONS(1636), - [anon_sym_isz] = ACTIONS(1636), - [anon_sym_usz] = ACTIONS(1636), - [anon_sym_anyfault] = ACTIONS(1636), - [anon_sym_any] = ACTIONS(1636), - [anon_sym_DOLLARtypeof] = ACTIONS(1636), - [anon_sym_DOLLARtypefrom] = ACTIONS(1636), - [anon_sym_DOLLARvatype] = ACTIONS(1636), - [anon_sym_DOLLARevaltype] = ACTIONS(1636), - [sym_real_literal] = ACTIONS(1638), + [sym_ident] = ACTIONS(1541), + [sym_integer_literal] = ACTIONS(1543), + [anon_sym_SQUOTE] = ACTIONS(1543), + [anon_sym_DQUOTE] = ACTIONS(1543), + [anon_sym_BQUOTE] = ACTIONS(1543), + [sym_bytes_literal] = ACTIONS(1543), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1541), + [sym_at_ident] = ACTIONS(1543), + [sym_hash_ident] = ACTIONS(1543), + [sym_type_ident] = ACTIONS(1543), + [sym_ct_type_ident] = ACTIONS(1543), + [sym_const_ident] = ACTIONS(1541), + [sym_builtin] = ACTIONS(1543), + [anon_sym_LPAREN] = ACTIONS(1543), + [anon_sym_AMP] = ACTIONS(1541), + [anon_sym_static] = ACTIONS(1541), + [anon_sym_tlocal] = ACTIONS(1541), + [anon_sym_SEMI] = ACTIONS(1543), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1541), + [anon_sym_const] = ACTIONS(1541), + [anon_sym_var] = ACTIONS(1541), + [anon_sym_return] = ACTIONS(1541), + [anon_sym_continue] = ACTIONS(1541), + [anon_sym_break] = ACTIONS(1541), + [anon_sym_defer] = ACTIONS(1541), + [anon_sym_assert] = ACTIONS(1541), + [anon_sym_nextcase] = ACTIONS(1541), + [anon_sym_switch] = ACTIONS(1541), + [anon_sym_AMP_AMP] = ACTIONS(1543), + [anon_sym_if] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1541), + [anon_sym_foreach] = ACTIONS(1541), + [anon_sym_foreach_r] = ACTIONS(1541), + [anon_sym_while] = ACTIONS(1541), + [anon_sym_do] = ACTIONS(1541), + [anon_sym_int] = ACTIONS(1541), + [anon_sym_PLUS] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_asm] = ACTIONS(1541), + [anon_sym_DOLLARassert] = ACTIONS(1541), + [anon_sym_DOLLARerror] = ACTIONS(1541), + [anon_sym_DOLLARecho] = ACTIONS(1541), + [anon_sym_DOLLARif] = ACTIONS(1541), + [anon_sym_DOLLARendif] = ACTIONS(1541), + [anon_sym_DOLLARelse] = ACTIONS(1541), + [anon_sym_DOLLARswitch] = ACTIONS(1541), + [anon_sym_DOLLARfor] = ACTIONS(1541), + [anon_sym_DOLLARforeach] = ACTIONS(1541), + [anon_sym_DOLLARalignof] = ACTIONS(1541), + [anon_sym_DOLLARextnameof] = ACTIONS(1541), + [anon_sym_DOLLARnameof] = ACTIONS(1541), + [anon_sym_DOLLARoffsetof] = ACTIONS(1541), + [anon_sym_DOLLARqnameof] = ACTIONS(1541), + [anon_sym_DOLLARvaconst] = ACTIONS(1541), + [anon_sym_DOLLARvaarg] = ACTIONS(1541), + [anon_sym_DOLLARvaref] = ACTIONS(1541), + [anon_sym_DOLLARvaexpr] = ACTIONS(1541), + [anon_sym_true] = ACTIONS(1541), + [anon_sym_false] = ACTIONS(1541), + [anon_sym_null] = ACTIONS(1541), + [anon_sym_DOLLARvacount] = ACTIONS(1541), + [anon_sym_DOLLARappend] = ACTIONS(1541), + [anon_sym_DOLLARconcat] = ACTIONS(1541), + [anon_sym_DOLLAReval] = ACTIONS(1541), + [anon_sym_DOLLARis_const] = ACTIONS(1541), + [anon_sym_DOLLARsizeof] = ACTIONS(1541), + [anon_sym_DOLLARstringify] = ACTIONS(1541), + [anon_sym_DOLLARand] = ACTIONS(1541), + [anon_sym_DOLLARdefined] = ACTIONS(1541), + [anon_sym_DOLLARembed] = ACTIONS(1541), + [anon_sym_DOLLARor] = ACTIONS(1541), + [anon_sym_DOLLARfeature] = ACTIONS(1541), + [anon_sym_DOLLARassignable] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_PLUS_PLUS] = ACTIONS(1543), + [anon_sym_DASH_DASH] = ACTIONS(1543), + [anon_sym_typeid] = ACTIONS(1541), + [anon_sym_LBRACE_PIPE] = ACTIONS(1543), + [anon_sym_void] = ACTIONS(1541), + [anon_sym_bool] = ACTIONS(1541), + [anon_sym_char] = ACTIONS(1541), + [anon_sym_ichar] = ACTIONS(1541), + [anon_sym_short] = ACTIONS(1541), + [anon_sym_ushort] = ACTIONS(1541), + [anon_sym_uint] = ACTIONS(1541), + [anon_sym_long] = ACTIONS(1541), + [anon_sym_ulong] = ACTIONS(1541), + [anon_sym_int128] = ACTIONS(1541), + [anon_sym_uint128] = ACTIONS(1541), + [anon_sym_float] = ACTIONS(1541), + [anon_sym_double] = ACTIONS(1541), + [anon_sym_float16] = ACTIONS(1541), + [anon_sym_bfloat16] = ACTIONS(1541), + [anon_sym_float128] = ACTIONS(1541), + [anon_sym_iptr] = ACTIONS(1541), + [anon_sym_uptr] = ACTIONS(1541), + [anon_sym_isz] = ACTIONS(1541), + [anon_sym_usz] = ACTIONS(1541), + [anon_sym_anyfault] = ACTIONS(1541), + [anon_sym_any] = ACTIONS(1541), + [anon_sym_DOLLARtypeof] = ACTIONS(1541), + [anon_sym_DOLLARtypefrom] = ACTIONS(1541), + [anon_sym_DOLLARvatype] = ACTIONS(1541), + [anon_sym_DOLLARevaltype] = ACTIONS(1541), + [sym_real_literal] = ACTIONS(1543), }, [503] = { [sym_line_comment] = STATE(503), [sym_doc_comment] = STATE(503), [sym_block_comment] = STATE(503), - [sym_ident] = ACTIONS(1576), - [sym_integer_literal] = ACTIONS(1578), - [anon_sym_SQUOTE] = ACTIONS(1578), - [anon_sym_DQUOTE] = ACTIONS(1578), - [anon_sym_BQUOTE] = ACTIONS(1578), - [sym_bytes_literal] = ACTIONS(1578), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1576), - [sym_at_ident] = ACTIONS(1578), - [sym_hash_ident] = ACTIONS(1578), - [sym_type_ident] = ACTIONS(1578), - [sym_ct_type_ident] = ACTIONS(1578), - [sym_const_ident] = ACTIONS(1576), - [sym_builtin] = ACTIONS(1578), - [anon_sym_LPAREN] = ACTIONS(1578), - [anon_sym_AMP] = ACTIONS(1576), - [anon_sym_static] = ACTIONS(1576), - [anon_sym_tlocal] = ACTIONS(1576), - [anon_sym_SEMI] = ACTIONS(1578), - [anon_sym_fn] = ACTIONS(1576), - [anon_sym_LBRACE] = ACTIONS(1576), - [anon_sym_const] = ACTIONS(1576), - [anon_sym_var] = ACTIONS(1576), - [anon_sym_return] = ACTIONS(1576), - [anon_sym_continue] = ACTIONS(1576), - [anon_sym_break] = ACTIONS(1576), - [anon_sym_defer] = ACTIONS(1576), - [anon_sym_assert] = ACTIONS(1576), - [anon_sym_nextcase] = ACTIONS(1576), - [anon_sym_switch] = ACTIONS(1576), - [anon_sym_AMP_AMP] = ACTIONS(1578), - [anon_sym_if] = ACTIONS(1576), - [anon_sym_for] = ACTIONS(1576), - [anon_sym_foreach] = ACTIONS(1576), - [anon_sym_foreach_r] = ACTIONS(1576), - [anon_sym_while] = ACTIONS(1576), - [anon_sym_do] = ACTIONS(1576), - [anon_sym_int] = ACTIONS(1576), - [anon_sym_PLUS] = ACTIONS(1576), - [anon_sym_DASH] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(1578), - [anon_sym_asm] = ACTIONS(1576), - [anon_sym_DOLLARassert] = ACTIONS(1576), - [anon_sym_DOLLARerror] = ACTIONS(1576), - [anon_sym_DOLLARecho] = ACTIONS(1576), - [anon_sym_DOLLARif] = ACTIONS(1576), - [anon_sym_DOLLARcase] = ACTIONS(1576), - [anon_sym_DOLLARdefault] = ACTIONS(1576), - [anon_sym_DOLLARswitch] = ACTIONS(1576), - [anon_sym_DOLLARendswitch] = ACTIONS(1576), - [anon_sym_DOLLARfor] = ACTIONS(1576), - [anon_sym_DOLLARforeach] = ACTIONS(1576), - [anon_sym_DOLLARalignof] = ACTIONS(1576), - [anon_sym_DOLLARextnameof] = ACTIONS(1576), - [anon_sym_DOLLARnameof] = ACTIONS(1576), - [anon_sym_DOLLARoffsetof] = ACTIONS(1576), - [anon_sym_DOLLARqnameof] = ACTIONS(1576), - [anon_sym_DOLLARvaconst] = ACTIONS(1576), - [anon_sym_DOLLARvaarg] = ACTIONS(1576), - [anon_sym_DOLLARvaref] = ACTIONS(1576), - [anon_sym_DOLLARvaexpr] = ACTIONS(1576), - [anon_sym_true] = ACTIONS(1576), - [anon_sym_false] = ACTIONS(1576), - [anon_sym_null] = ACTIONS(1576), - [anon_sym_DOLLARvacount] = ACTIONS(1576), - [anon_sym_DOLLARappend] = ACTIONS(1576), - [anon_sym_DOLLARconcat] = ACTIONS(1576), - [anon_sym_DOLLAReval] = ACTIONS(1576), - [anon_sym_DOLLARis_const] = ACTIONS(1576), - [anon_sym_DOLLARsizeof] = ACTIONS(1576), - [anon_sym_DOLLARstringify] = ACTIONS(1576), - [anon_sym_DOLLARand] = ACTIONS(1576), - [anon_sym_DOLLARdefined] = ACTIONS(1576), - [anon_sym_DOLLARembed] = ACTIONS(1576), - [anon_sym_DOLLARor] = ACTIONS(1576), - [anon_sym_DOLLARfeature] = ACTIONS(1576), - [anon_sym_DOLLARassignable] = ACTIONS(1576), - [anon_sym_BANG] = ACTIONS(1578), - [anon_sym_TILDE] = ACTIONS(1578), - [anon_sym_PLUS_PLUS] = ACTIONS(1578), - [anon_sym_DASH_DASH] = ACTIONS(1578), - [anon_sym_typeid] = ACTIONS(1576), - [anon_sym_LBRACE_PIPE] = ACTIONS(1578), - [anon_sym_void] = ACTIONS(1576), - [anon_sym_bool] = ACTIONS(1576), - [anon_sym_char] = ACTIONS(1576), - [anon_sym_ichar] = ACTIONS(1576), - [anon_sym_short] = ACTIONS(1576), - [anon_sym_ushort] = ACTIONS(1576), - [anon_sym_uint] = ACTIONS(1576), - [anon_sym_long] = ACTIONS(1576), - [anon_sym_ulong] = ACTIONS(1576), - [anon_sym_int128] = ACTIONS(1576), - [anon_sym_uint128] = ACTIONS(1576), - [anon_sym_float] = ACTIONS(1576), - [anon_sym_double] = ACTIONS(1576), - [anon_sym_float16] = ACTIONS(1576), - [anon_sym_bfloat16] = ACTIONS(1576), - [anon_sym_float128] = ACTIONS(1576), - [anon_sym_iptr] = ACTIONS(1576), - [anon_sym_uptr] = ACTIONS(1576), - [anon_sym_isz] = ACTIONS(1576), - [anon_sym_usz] = ACTIONS(1576), - [anon_sym_anyfault] = ACTIONS(1576), - [anon_sym_any] = ACTIONS(1576), - [anon_sym_DOLLARtypeof] = ACTIONS(1576), - [anon_sym_DOLLARtypefrom] = ACTIONS(1576), - [anon_sym_DOLLARvatype] = ACTIONS(1576), - [anon_sym_DOLLARevaltype] = ACTIONS(1576), - [sym_real_literal] = ACTIONS(1578), + [sym_ident] = ACTIONS(1363), + [sym_integer_literal] = ACTIONS(1365), + [anon_sym_SQUOTE] = ACTIONS(1365), + [anon_sym_DQUOTE] = ACTIONS(1365), + [anon_sym_BQUOTE] = ACTIONS(1365), + [sym_bytes_literal] = ACTIONS(1365), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1363), + [sym_at_ident] = ACTIONS(1365), + [sym_hash_ident] = ACTIONS(1365), + [sym_type_ident] = ACTIONS(1365), + [sym_ct_type_ident] = ACTIONS(1365), + [sym_const_ident] = ACTIONS(1363), + [sym_builtin] = ACTIONS(1365), + [anon_sym_LPAREN] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1363), + [anon_sym_static] = ACTIONS(1363), + [anon_sym_tlocal] = ACTIONS(1363), + [anon_sym_SEMI] = ACTIONS(1365), + [anon_sym_fn] = ACTIONS(1363), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_const] = ACTIONS(1363), + [anon_sym_var] = ACTIONS(1363), + [anon_sym_return] = ACTIONS(1363), + [anon_sym_continue] = ACTIONS(1363), + [anon_sym_break] = ACTIONS(1363), + [anon_sym_defer] = ACTIONS(1363), + [anon_sym_assert] = ACTIONS(1363), + [anon_sym_nextcase] = ACTIONS(1363), + [anon_sym_switch] = ACTIONS(1363), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_if] = ACTIONS(1363), + [anon_sym_for] = ACTIONS(1363), + [anon_sym_foreach] = ACTIONS(1363), + [anon_sym_foreach_r] = ACTIONS(1363), + [anon_sym_while] = ACTIONS(1363), + [anon_sym_do] = ACTIONS(1363), + [anon_sym_int] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_asm] = ACTIONS(1363), + [anon_sym_DOLLARassert] = ACTIONS(1363), + [anon_sym_DOLLARerror] = ACTIONS(1363), + [anon_sym_DOLLARecho] = ACTIONS(1363), + [anon_sym_DOLLARif] = ACTIONS(1363), + [anon_sym_DOLLARendif] = ACTIONS(1363), + [anon_sym_DOLLARelse] = ACTIONS(1363), + [anon_sym_DOLLARswitch] = ACTIONS(1363), + [anon_sym_DOLLARfor] = ACTIONS(1363), + [anon_sym_DOLLARforeach] = ACTIONS(1363), + [anon_sym_DOLLARalignof] = ACTIONS(1363), + [anon_sym_DOLLARextnameof] = ACTIONS(1363), + [anon_sym_DOLLARnameof] = ACTIONS(1363), + [anon_sym_DOLLARoffsetof] = ACTIONS(1363), + [anon_sym_DOLLARqnameof] = ACTIONS(1363), + [anon_sym_DOLLARvaconst] = ACTIONS(1363), + [anon_sym_DOLLARvaarg] = ACTIONS(1363), + [anon_sym_DOLLARvaref] = ACTIONS(1363), + [anon_sym_DOLLARvaexpr] = ACTIONS(1363), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_null] = ACTIONS(1363), + [anon_sym_DOLLARvacount] = ACTIONS(1363), + [anon_sym_DOLLARappend] = ACTIONS(1363), + [anon_sym_DOLLARconcat] = ACTIONS(1363), + [anon_sym_DOLLAReval] = ACTIONS(1363), + [anon_sym_DOLLARis_const] = ACTIONS(1363), + [anon_sym_DOLLARsizeof] = ACTIONS(1363), + [anon_sym_DOLLARstringify] = ACTIONS(1363), + [anon_sym_DOLLARand] = ACTIONS(1363), + [anon_sym_DOLLARdefined] = ACTIONS(1363), + [anon_sym_DOLLARembed] = ACTIONS(1363), + [anon_sym_DOLLARor] = ACTIONS(1363), + [anon_sym_DOLLARfeature] = ACTIONS(1363), + [anon_sym_DOLLARassignable] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1365), + [anon_sym_TILDE] = ACTIONS(1365), + [anon_sym_PLUS_PLUS] = ACTIONS(1365), + [anon_sym_DASH_DASH] = ACTIONS(1365), + [anon_sym_typeid] = ACTIONS(1363), + [anon_sym_LBRACE_PIPE] = ACTIONS(1365), + [anon_sym_void] = ACTIONS(1363), + [anon_sym_bool] = ACTIONS(1363), + [anon_sym_char] = ACTIONS(1363), + [anon_sym_ichar] = ACTIONS(1363), + [anon_sym_short] = ACTIONS(1363), + [anon_sym_ushort] = ACTIONS(1363), + [anon_sym_uint] = ACTIONS(1363), + [anon_sym_long] = ACTIONS(1363), + [anon_sym_ulong] = ACTIONS(1363), + [anon_sym_int128] = ACTIONS(1363), + [anon_sym_uint128] = ACTIONS(1363), + [anon_sym_float] = ACTIONS(1363), + [anon_sym_double] = ACTIONS(1363), + [anon_sym_float16] = ACTIONS(1363), + [anon_sym_bfloat16] = ACTIONS(1363), + [anon_sym_float128] = ACTIONS(1363), + [anon_sym_iptr] = ACTIONS(1363), + [anon_sym_uptr] = ACTIONS(1363), + [anon_sym_isz] = ACTIONS(1363), + [anon_sym_usz] = ACTIONS(1363), + [anon_sym_anyfault] = ACTIONS(1363), + [anon_sym_any] = ACTIONS(1363), + [anon_sym_DOLLARtypeof] = ACTIONS(1363), + [anon_sym_DOLLARtypefrom] = ACTIONS(1363), + [anon_sym_DOLLARvatype] = ACTIONS(1363), + [anon_sym_DOLLARevaltype] = ACTIONS(1363), + [sym_real_literal] = ACTIONS(1365), }, [504] = { [sym_line_comment] = STATE(504), [sym_doc_comment] = STATE(504), [sym_block_comment] = STATE(504), - [sym_ident] = ACTIONS(1452), - [sym_integer_literal] = ACTIONS(1454), - [anon_sym_SQUOTE] = ACTIONS(1454), - [anon_sym_DQUOTE] = ACTIONS(1454), - [anon_sym_BQUOTE] = ACTIONS(1454), - [sym_bytes_literal] = ACTIONS(1454), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1452), - [sym_at_ident] = ACTIONS(1454), - [sym_hash_ident] = ACTIONS(1454), - [sym_type_ident] = ACTIONS(1454), - [sym_ct_type_ident] = ACTIONS(1454), - [sym_const_ident] = ACTIONS(1452), - [sym_builtin] = ACTIONS(1454), - [anon_sym_LPAREN] = ACTIONS(1454), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_tlocal] = ACTIONS(1452), - [anon_sym_SEMI] = ACTIONS(1454), - [anon_sym_fn] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1452), - [anon_sym_const] = ACTIONS(1452), - [anon_sym_var] = ACTIONS(1452), - [anon_sym_return] = ACTIONS(1452), - [anon_sym_continue] = ACTIONS(1452), - [anon_sym_break] = ACTIONS(1452), - [anon_sym_defer] = ACTIONS(1452), - [anon_sym_assert] = ACTIONS(1452), - [anon_sym_nextcase] = ACTIONS(1452), - [anon_sym_switch] = ACTIONS(1452), - [anon_sym_AMP_AMP] = ACTIONS(1454), - [anon_sym_if] = ACTIONS(1452), - [anon_sym_for] = ACTIONS(1452), - [anon_sym_foreach] = ACTIONS(1452), - [anon_sym_foreach_r] = ACTIONS(1452), - [anon_sym_while] = ACTIONS(1452), - [anon_sym_do] = ACTIONS(1452), - [anon_sym_int] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1452), - [anon_sym_DASH] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1454), - [anon_sym_asm] = ACTIONS(1452), - [anon_sym_DOLLARassert] = ACTIONS(1452), - [anon_sym_DOLLARerror] = ACTIONS(1452), - [anon_sym_DOLLARecho] = ACTIONS(1452), - [anon_sym_DOLLARif] = ACTIONS(1452), - [anon_sym_DOLLARcase] = ACTIONS(1452), - [anon_sym_DOLLARdefault] = ACTIONS(1452), - [anon_sym_DOLLARswitch] = ACTIONS(1452), - [anon_sym_DOLLARendswitch] = ACTIONS(1452), - [anon_sym_DOLLARfor] = ACTIONS(1452), - [anon_sym_DOLLARforeach] = ACTIONS(1452), - [anon_sym_DOLLARalignof] = ACTIONS(1452), - [anon_sym_DOLLARextnameof] = ACTIONS(1452), - [anon_sym_DOLLARnameof] = ACTIONS(1452), - [anon_sym_DOLLARoffsetof] = ACTIONS(1452), - [anon_sym_DOLLARqnameof] = ACTIONS(1452), - [anon_sym_DOLLARvaconst] = ACTIONS(1452), - [anon_sym_DOLLARvaarg] = ACTIONS(1452), - [anon_sym_DOLLARvaref] = ACTIONS(1452), - [anon_sym_DOLLARvaexpr] = ACTIONS(1452), - [anon_sym_true] = ACTIONS(1452), - [anon_sym_false] = ACTIONS(1452), - [anon_sym_null] = ACTIONS(1452), - [anon_sym_DOLLARvacount] = ACTIONS(1452), - [anon_sym_DOLLARappend] = ACTIONS(1452), - [anon_sym_DOLLARconcat] = ACTIONS(1452), - [anon_sym_DOLLAReval] = ACTIONS(1452), - [anon_sym_DOLLARis_const] = ACTIONS(1452), - [anon_sym_DOLLARsizeof] = ACTIONS(1452), - [anon_sym_DOLLARstringify] = ACTIONS(1452), - [anon_sym_DOLLARand] = ACTIONS(1452), - [anon_sym_DOLLARdefined] = ACTIONS(1452), - [anon_sym_DOLLARembed] = ACTIONS(1452), - [anon_sym_DOLLARor] = ACTIONS(1452), - [anon_sym_DOLLARfeature] = ACTIONS(1452), - [anon_sym_DOLLARassignable] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1454), - [anon_sym_PLUS_PLUS] = ACTIONS(1454), - [anon_sym_DASH_DASH] = ACTIONS(1454), - [anon_sym_typeid] = ACTIONS(1452), - [anon_sym_LBRACE_PIPE] = ACTIONS(1454), - [anon_sym_void] = ACTIONS(1452), - [anon_sym_bool] = ACTIONS(1452), - [anon_sym_char] = ACTIONS(1452), - [anon_sym_ichar] = ACTIONS(1452), - [anon_sym_short] = ACTIONS(1452), - [anon_sym_ushort] = ACTIONS(1452), - [anon_sym_uint] = ACTIONS(1452), - [anon_sym_long] = ACTIONS(1452), - [anon_sym_ulong] = ACTIONS(1452), - [anon_sym_int128] = ACTIONS(1452), - [anon_sym_uint128] = ACTIONS(1452), - [anon_sym_float] = ACTIONS(1452), - [anon_sym_double] = ACTIONS(1452), - [anon_sym_float16] = ACTIONS(1452), - [anon_sym_bfloat16] = ACTIONS(1452), - [anon_sym_float128] = ACTIONS(1452), - [anon_sym_iptr] = ACTIONS(1452), - [anon_sym_uptr] = ACTIONS(1452), - [anon_sym_isz] = ACTIONS(1452), - [anon_sym_usz] = ACTIONS(1452), - [anon_sym_anyfault] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_DOLLARtypeof] = ACTIONS(1452), - [anon_sym_DOLLARtypefrom] = ACTIONS(1452), - [anon_sym_DOLLARvatype] = ACTIONS(1452), - [anon_sym_DOLLARevaltype] = ACTIONS(1452), - [sym_real_literal] = ACTIONS(1454), + [sym_ident] = ACTIONS(1517), + [sym_integer_literal] = ACTIONS(1519), + [anon_sym_SQUOTE] = ACTIONS(1519), + [anon_sym_DQUOTE] = ACTIONS(1519), + [anon_sym_BQUOTE] = ACTIONS(1519), + [sym_bytes_literal] = ACTIONS(1519), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1517), + [sym_at_ident] = ACTIONS(1519), + [sym_hash_ident] = ACTIONS(1519), + [sym_type_ident] = ACTIONS(1519), + [sym_ct_type_ident] = ACTIONS(1519), + [sym_const_ident] = ACTIONS(1517), + [sym_builtin] = ACTIONS(1519), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_static] = ACTIONS(1517), + [anon_sym_tlocal] = ACTIONS(1517), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_fn] = ACTIONS(1517), + [anon_sym_LBRACE] = ACTIONS(1517), + [anon_sym_const] = ACTIONS(1517), + [anon_sym_var] = ACTIONS(1517), + [anon_sym_return] = ACTIONS(1517), + [anon_sym_continue] = ACTIONS(1517), + [anon_sym_break] = ACTIONS(1517), + [anon_sym_defer] = ACTIONS(1517), + [anon_sym_assert] = ACTIONS(1517), + [anon_sym_nextcase] = ACTIONS(1517), + [anon_sym_switch] = ACTIONS(1517), + [anon_sym_AMP_AMP] = ACTIONS(1519), + [anon_sym_if] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1517), + [anon_sym_foreach] = ACTIONS(1517), + [anon_sym_foreach_r] = ACTIONS(1517), + [anon_sym_while] = ACTIONS(1517), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_int] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1517), + [anon_sym_DASH] = ACTIONS(1517), + [anon_sym_STAR] = ACTIONS(1519), + [anon_sym_asm] = ACTIONS(1517), + [anon_sym_DOLLARassert] = ACTIONS(1517), + [anon_sym_DOLLARerror] = ACTIONS(1517), + [anon_sym_DOLLARecho] = ACTIONS(1517), + [anon_sym_DOLLARif] = ACTIONS(1517), + [anon_sym_DOLLARendif] = ACTIONS(1517), + [anon_sym_DOLLARelse] = ACTIONS(1517), + [anon_sym_DOLLARswitch] = ACTIONS(1517), + [anon_sym_DOLLARfor] = ACTIONS(1517), + [anon_sym_DOLLARforeach] = ACTIONS(1517), + [anon_sym_DOLLARalignof] = ACTIONS(1517), + [anon_sym_DOLLARextnameof] = ACTIONS(1517), + [anon_sym_DOLLARnameof] = ACTIONS(1517), + [anon_sym_DOLLARoffsetof] = ACTIONS(1517), + [anon_sym_DOLLARqnameof] = ACTIONS(1517), + [anon_sym_DOLLARvaconst] = ACTIONS(1517), + [anon_sym_DOLLARvaarg] = ACTIONS(1517), + [anon_sym_DOLLARvaref] = ACTIONS(1517), + [anon_sym_DOLLARvaexpr] = ACTIONS(1517), + [anon_sym_true] = ACTIONS(1517), + [anon_sym_false] = ACTIONS(1517), + [anon_sym_null] = ACTIONS(1517), + [anon_sym_DOLLARvacount] = ACTIONS(1517), + [anon_sym_DOLLARappend] = ACTIONS(1517), + [anon_sym_DOLLARconcat] = ACTIONS(1517), + [anon_sym_DOLLAReval] = ACTIONS(1517), + [anon_sym_DOLLARis_const] = ACTIONS(1517), + [anon_sym_DOLLARsizeof] = ACTIONS(1517), + [anon_sym_DOLLARstringify] = ACTIONS(1517), + [anon_sym_DOLLARand] = ACTIONS(1517), + [anon_sym_DOLLARdefined] = ACTIONS(1517), + [anon_sym_DOLLARembed] = ACTIONS(1517), + [anon_sym_DOLLARor] = ACTIONS(1517), + [anon_sym_DOLLARfeature] = ACTIONS(1517), + [anon_sym_DOLLARassignable] = ACTIONS(1517), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1519), + [anon_sym_PLUS_PLUS] = ACTIONS(1519), + [anon_sym_DASH_DASH] = ACTIONS(1519), + [anon_sym_typeid] = ACTIONS(1517), + [anon_sym_LBRACE_PIPE] = ACTIONS(1519), + [anon_sym_void] = ACTIONS(1517), + [anon_sym_bool] = ACTIONS(1517), + [anon_sym_char] = ACTIONS(1517), + [anon_sym_ichar] = ACTIONS(1517), + [anon_sym_short] = ACTIONS(1517), + [anon_sym_ushort] = ACTIONS(1517), + [anon_sym_uint] = ACTIONS(1517), + [anon_sym_long] = ACTIONS(1517), + [anon_sym_ulong] = ACTIONS(1517), + [anon_sym_int128] = ACTIONS(1517), + [anon_sym_uint128] = ACTIONS(1517), + [anon_sym_float] = ACTIONS(1517), + [anon_sym_double] = ACTIONS(1517), + [anon_sym_float16] = ACTIONS(1517), + [anon_sym_bfloat16] = ACTIONS(1517), + [anon_sym_float128] = ACTIONS(1517), + [anon_sym_iptr] = ACTIONS(1517), + [anon_sym_uptr] = ACTIONS(1517), + [anon_sym_isz] = ACTIONS(1517), + [anon_sym_usz] = ACTIONS(1517), + [anon_sym_anyfault] = ACTIONS(1517), + [anon_sym_any] = ACTIONS(1517), + [anon_sym_DOLLARtypeof] = ACTIONS(1517), + [anon_sym_DOLLARtypefrom] = ACTIONS(1517), + [anon_sym_DOLLARvatype] = ACTIONS(1517), + [anon_sym_DOLLARevaltype] = ACTIONS(1517), + [sym_real_literal] = ACTIONS(1519), }, [505] = { [sym_line_comment] = STATE(505), [sym_doc_comment] = STATE(505), [sym_block_comment] = STATE(505), - [sym_ident] = ACTIONS(1528), - [sym_integer_literal] = ACTIONS(1530), - [anon_sym_SQUOTE] = ACTIONS(1530), - [anon_sym_DQUOTE] = ACTIONS(1530), - [anon_sym_BQUOTE] = ACTIONS(1530), - [sym_bytes_literal] = ACTIONS(1530), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1528), - [sym_at_ident] = ACTIONS(1530), - [sym_hash_ident] = ACTIONS(1530), - [sym_type_ident] = ACTIONS(1530), - [sym_ct_type_ident] = ACTIONS(1530), - [sym_const_ident] = ACTIONS(1528), - [sym_builtin] = ACTIONS(1530), - [anon_sym_LPAREN] = ACTIONS(1530), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_static] = ACTIONS(1528), - [anon_sym_tlocal] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(1530), - [anon_sym_fn] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_var] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(1528), - [anon_sym_continue] = ACTIONS(1528), - [anon_sym_break] = ACTIONS(1528), - [anon_sym_defer] = ACTIONS(1528), - [anon_sym_assert] = ACTIONS(1528), - [anon_sym_nextcase] = ACTIONS(1528), - [anon_sym_switch] = ACTIONS(1528), - [anon_sym_AMP_AMP] = ACTIONS(1530), - [anon_sym_if] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1528), - [anon_sym_foreach] = ACTIONS(1528), - [anon_sym_foreach_r] = ACTIONS(1528), - [anon_sym_while] = ACTIONS(1528), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_int] = ACTIONS(1528), - [anon_sym_PLUS] = ACTIONS(1528), - [anon_sym_DASH] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1530), - [anon_sym_asm] = ACTIONS(1528), - [anon_sym_DOLLARassert] = ACTIONS(1528), - [anon_sym_DOLLARerror] = ACTIONS(1528), - [anon_sym_DOLLARecho] = ACTIONS(1528), - [anon_sym_DOLLARif] = ACTIONS(1528), - [anon_sym_DOLLARcase] = ACTIONS(1528), - [anon_sym_DOLLARdefault] = ACTIONS(1528), - [anon_sym_DOLLARswitch] = ACTIONS(1528), - [anon_sym_DOLLARendswitch] = ACTIONS(1528), - [anon_sym_DOLLARfor] = ACTIONS(1528), - [anon_sym_DOLLARforeach] = ACTIONS(1528), - [anon_sym_DOLLARalignof] = ACTIONS(1528), - [anon_sym_DOLLARextnameof] = ACTIONS(1528), - [anon_sym_DOLLARnameof] = ACTIONS(1528), - [anon_sym_DOLLARoffsetof] = ACTIONS(1528), - [anon_sym_DOLLARqnameof] = ACTIONS(1528), - [anon_sym_DOLLARvaconst] = ACTIONS(1528), - [anon_sym_DOLLARvaarg] = ACTIONS(1528), - [anon_sym_DOLLARvaref] = ACTIONS(1528), - [anon_sym_DOLLARvaexpr] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [anon_sym_null] = ACTIONS(1528), - [anon_sym_DOLLARvacount] = ACTIONS(1528), - [anon_sym_DOLLARappend] = ACTIONS(1528), - [anon_sym_DOLLARconcat] = ACTIONS(1528), - [anon_sym_DOLLAReval] = ACTIONS(1528), - [anon_sym_DOLLARis_const] = ACTIONS(1528), - [anon_sym_DOLLARsizeof] = ACTIONS(1528), - [anon_sym_DOLLARstringify] = ACTIONS(1528), - [anon_sym_DOLLARand] = ACTIONS(1528), - [anon_sym_DOLLARdefined] = ACTIONS(1528), - [anon_sym_DOLLARembed] = ACTIONS(1528), - [anon_sym_DOLLARor] = ACTIONS(1528), - [anon_sym_DOLLARfeature] = ACTIONS(1528), - [anon_sym_DOLLARassignable] = ACTIONS(1528), - [anon_sym_BANG] = ACTIONS(1530), - [anon_sym_TILDE] = ACTIONS(1530), - [anon_sym_PLUS_PLUS] = ACTIONS(1530), - [anon_sym_DASH_DASH] = ACTIONS(1530), - [anon_sym_typeid] = ACTIONS(1528), - [anon_sym_LBRACE_PIPE] = ACTIONS(1530), - [anon_sym_void] = ACTIONS(1528), - [anon_sym_bool] = ACTIONS(1528), - [anon_sym_char] = ACTIONS(1528), - [anon_sym_ichar] = ACTIONS(1528), - [anon_sym_short] = ACTIONS(1528), - [anon_sym_ushort] = ACTIONS(1528), - [anon_sym_uint] = ACTIONS(1528), - [anon_sym_long] = ACTIONS(1528), - [anon_sym_ulong] = ACTIONS(1528), - [anon_sym_int128] = ACTIONS(1528), - [anon_sym_uint128] = ACTIONS(1528), - [anon_sym_float] = ACTIONS(1528), - [anon_sym_double] = ACTIONS(1528), - [anon_sym_float16] = ACTIONS(1528), - [anon_sym_bfloat16] = ACTIONS(1528), - [anon_sym_float128] = ACTIONS(1528), - [anon_sym_iptr] = ACTIONS(1528), - [anon_sym_uptr] = ACTIONS(1528), - [anon_sym_isz] = ACTIONS(1528), - [anon_sym_usz] = ACTIONS(1528), - [anon_sym_anyfault] = ACTIONS(1528), - [anon_sym_any] = ACTIONS(1528), - [anon_sym_DOLLARtypeof] = ACTIONS(1528), - [anon_sym_DOLLARtypefrom] = ACTIONS(1528), - [anon_sym_DOLLARvatype] = ACTIONS(1528), - [anon_sym_DOLLARevaltype] = ACTIONS(1528), - [sym_real_literal] = ACTIONS(1530), + [sym_ident] = ACTIONS(1501), + [sym_integer_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1503), + [anon_sym_BQUOTE] = ACTIONS(1503), + [sym_bytes_literal] = ACTIONS(1503), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1501), + [sym_at_ident] = ACTIONS(1503), + [sym_hash_ident] = ACTIONS(1503), + [sym_type_ident] = ACTIONS(1503), + [sym_ct_type_ident] = ACTIONS(1503), + [sym_const_ident] = ACTIONS(1501), + [sym_builtin] = ACTIONS(1503), + [anon_sym_LPAREN] = ACTIONS(1503), + [anon_sym_AMP] = ACTIONS(1501), + [anon_sym_static] = ACTIONS(1501), + [anon_sym_tlocal] = ACTIONS(1501), + [anon_sym_SEMI] = ACTIONS(1503), + [anon_sym_fn] = ACTIONS(1501), + [anon_sym_LBRACE] = ACTIONS(1501), + [anon_sym_const] = ACTIONS(1501), + [anon_sym_var] = ACTIONS(1501), + [anon_sym_return] = ACTIONS(1501), + [anon_sym_continue] = ACTIONS(1501), + [anon_sym_break] = ACTIONS(1501), + [anon_sym_defer] = ACTIONS(1501), + [anon_sym_assert] = ACTIONS(1501), + [anon_sym_nextcase] = ACTIONS(1501), + [anon_sym_switch] = ACTIONS(1501), + [anon_sym_AMP_AMP] = ACTIONS(1503), + [anon_sym_if] = ACTIONS(1501), + [anon_sym_for] = ACTIONS(1501), + [anon_sym_foreach] = ACTIONS(1501), + [anon_sym_foreach_r] = ACTIONS(1501), + [anon_sym_while] = ACTIONS(1501), + [anon_sym_do] = ACTIONS(1501), + [anon_sym_int] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_asm] = ACTIONS(1501), + [anon_sym_DOLLARassert] = ACTIONS(1501), + [anon_sym_DOLLARerror] = ACTIONS(1501), + [anon_sym_DOLLARecho] = ACTIONS(1501), + [anon_sym_DOLLARif] = ACTIONS(1501), + [anon_sym_DOLLARendif] = ACTIONS(1501), + [anon_sym_DOLLARelse] = ACTIONS(1501), + [anon_sym_DOLLARswitch] = ACTIONS(1501), + [anon_sym_DOLLARfor] = ACTIONS(1501), + [anon_sym_DOLLARforeach] = ACTIONS(1501), + [anon_sym_DOLLARalignof] = ACTIONS(1501), + [anon_sym_DOLLARextnameof] = ACTIONS(1501), + [anon_sym_DOLLARnameof] = ACTIONS(1501), + [anon_sym_DOLLARoffsetof] = ACTIONS(1501), + [anon_sym_DOLLARqnameof] = ACTIONS(1501), + [anon_sym_DOLLARvaconst] = ACTIONS(1501), + [anon_sym_DOLLARvaarg] = ACTIONS(1501), + [anon_sym_DOLLARvaref] = ACTIONS(1501), + [anon_sym_DOLLARvaexpr] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1501), + [anon_sym_false] = ACTIONS(1501), + [anon_sym_null] = ACTIONS(1501), + [anon_sym_DOLLARvacount] = ACTIONS(1501), + [anon_sym_DOLLARappend] = ACTIONS(1501), + [anon_sym_DOLLARconcat] = ACTIONS(1501), + [anon_sym_DOLLAReval] = ACTIONS(1501), + [anon_sym_DOLLARis_const] = ACTIONS(1501), + [anon_sym_DOLLARsizeof] = ACTIONS(1501), + [anon_sym_DOLLARstringify] = ACTIONS(1501), + [anon_sym_DOLLARand] = ACTIONS(1501), + [anon_sym_DOLLARdefined] = ACTIONS(1501), + [anon_sym_DOLLARembed] = ACTIONS(1501), + [anon_sym_DOLLARor] = ACTIONS(1501), + [anon_sym_DOLLARfeature] = ACTIONS(1501), + [anon_sym_DOLLARassignable] = ACTIONS(1501), + [anon_sym_BANG] = ACTIONS(1503), + [anon_sym_TILDE] = ACTIONS(1503), + [anon_sym_PLUS_PLUS] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1503), + [anon_sym_typeid] = ACTIONS(1501), + [anon_sym_LBRACE_PIPE] = ACTIONS(1503), + [anon_sym_void] = ACTIONS(1501), + [anon_sym_bool] = ACTIONS(1501), + [anon_sym_char] = ACTIONS(1501), + [anon_sym_ichar] = ACTIONS(1501), + [anon_sym_short] = ACTIONS(1501), + [anon_sym_ushort] = ACTIONS(1501), + [anon_sym_uint] = ACTIONS(1501), + [anon_sym_long] = ACTIONS(1501), + [anon_sym_ulong] = ACTIONS(1501), + [anon_sym_int128] = ACTIONS(1501), + [anon_sym_uint128] = ACTIONS(1501), + [anon_sym_float] = ACTIONS(1501), + [anon_sym_double] = ACTIONS(1501), + [anon_sym_float16] = ACTIONS(1501), + [anon_sym_bfloat16] = ACTIONS(1501), + [anon_sym_float128] = ACTIONS(1501), + [anon_sym_iptr] = ACTIONS(1501), + [anon_sym_uptr] = ACTIONS(1501), + [anon_sym_isz] = ACTIONS(1501), + [anon_sym_usz] = ACTIONS(1501), + [anon_sym_anyfault] = ACTIONS(1501), + [anon_sym_any] = ACTIONS(1501), + [anon_sym_DOLLARtypeof] = ACTIONS(1501), + [anon_sym_DOLLARtypefrom] = ACTIONS(1501), + [anon_sym_DOLLARvatype] = ACTIONS(1501), + [anon_sym_DOLLARevaltype] = ACTIONS(1501), + [sym_real_literal] = ACTIONS(1503), }, [506] = { [sym_line_comment] = STATE(506), [sym_doc_comment] = STATE(506), [sym_block_comment] = STATE(506), - [sym_ident] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(1622), - [anon_sym_SQUOTE] = ACTIONS(1622), - [anon_sym_DQUOTE] = ACTIONS(1622), - [anon_sym_BQUOTE] = ACTIONS(1622), - [sym_bytes_literal] = ACTIONS(1622), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1620), - [sym_at_ident] = ACTIONS(1622), - [sym_hash_ident] = ACTIONS(1622), - [sym_type_ident] = ACTIONS(1622), - [sym_ct_type_ident] = ACTIONS(1622), - [sym_const_ident] = ACTIONS(1620), - [sym_builtin] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(1622), - [anon_sym_AMP] = ACTIONS(1620), - [anon_sym_static] = ACTIONS(1620), - [anon_sym_tlocal] = ACTIONS(1620), - [anon_sym_SEMI] = ACTIONS(1622), - [anon_sym_fn] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1620), - [anon_sym_const] = ACTIONS(1620), - [anon_sym_var] = ACTIONS(1620), - [anon_sym_return] = ACTIONS(1620), - [anon_sym_continue] = ACTIONS(1620), - [anon_sym_break] = ACTIONS(1620), - [anon_sym_defer] = ACTIONS(1620), - [anon_sym_assert] = ACTIONS(1620), - [anon_sym_nextcase] = ACTIONS(1620), - [anon_sym_switch] = ACTIONS(1620), - [anon_sym_AMP_AMP] = ACTIONS(1622), - [anon_sym_if] = ACTIONS(1620), - [anon_sym_for] = ACTIONS(1620), - [anon_sym_foreach] = ACTIONS(1620), - [anon_sym_foreach_r] = ACTIONS(1620), - [anon_sym_while] = ACTIONS(1620), - [anon_sym_do] = ACTIONS(1620), - [anon_sym_int] = ACTIONS(1620), - [anon_sym_PLUS] = ACTIONS(1620), - [anon_sym_DASH] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1622), - [anon_sym_asm] = ACTIONS(1620), - [anon_sym_DOLLARassert] = ACTIONS(1620), - [anon_sym_DOLLARerror] = ACTIONS(1620), - [anon_sym_DOLLARecho] = ACTIONS(1620), - [anon_sym_DOLLARif] = ACTIONS(1620), - [anon_sym_DOLLARcase] = ACTIONS(1620), - [anon_sym_DOLLARdefault] = ACTIONS(1620), - [anon_sym_DOLLARswitch] = ACTIONS(1620), - [anon_sym_DOLLARendswitch] = ACTIONS(1620), - [anon_sym_DOLLARfor] = ACTIONS(1620), - [anon_sym_DOLLARforeach] = ACTIONS(1620), - [anon_sym_DOLLARalignof] = ACTIONS(1620), - [anon_sym_DOLLARextnameof] = ACTIONS(1620), - [anon_sym_DOLLARnameof] = ACTIONS(1620), - [anon_sym_DOLLARoffsetof] = ACTIONS(1620), - [anon_sym_DOLLARqnameof] = ACTIONS(1620), - [anon_sym_DOLLARvaconst] = ACTIONS(1620), - [anon_sym_DOLLARvaarg] = ACTIONS(1620), - [anon_sym_DOLLARvaref] = ACTIONS(1620), - [anon_sym_DOLLARvaexpr] = ACTIONS(1620), - [anon_sym_true] = ACTIONS(1620), - [anon_sym_false] = ACTIONS(1620), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_DOLLARvacount] = ACTIONS(1620), - [anon_sym_DOLLARappend] = ACTIONS(1620), - [anon_sym_DOLLARconcat] = ACTIONS(1620), - [anon_sym_DOLLAReval] = ACTIONS(1620), - [anon_sym_DOLLARis_const] = ACTIONS(1620), - [anon_sym_DOLLARsizeof] = ACTIONS(1620), - [anon_sym_DOLLARstringify] = ACTIONS(1620), - [anon_sym_DOLLARand] = ACTIONS(1620), - [anon_sym_DOLLARdefined] = ACTIONS(1620), - [anon_sym_DOLLARembed] = ACTIONS(1620), - [anon_sym_DOLLARor] = ACTIONS(1620), - [anon_sym_DOLLARfeature] = ACTIONS(1620), - [anon_sym_DOLLARassignable] = ACTIONS(1620), - [anon_sym_BANG] = ACTIONS(1622), - [anon_sym_TILDE] = ACTIONS(1622), - [anon_sym_PLUS_PLUS] = ACTIONS(1622), - [anon_sym_DASH_DASH] = ACTIONS(1622), - [anon_sym_typeid] = ACTIONS(1620), - [anon_sym_LBRACE_PIPE] = ACTIONS(1622), - [anon_sym_void] = ACTIONS(1620), - [anon_sym_bool] = ACTIONS(1620), - [anon_sym_char] = ACTIONS(1620), - [anon_sym_ichar] = ACTIONS(1620), - [anon_sym_short] = ACTIONS(1620), - [anon_sym_ushort] = ACTIONS(1620), - [anon_sym_uint] = ACTIONS(1620), - [anon_sym_long] = ACTIONS(1620), - [anon_sym_ulong] = ACTIONS(1620), - [anon_sym_int128] = ACTIONS(1620), - [anon_sym_uint128] = ACTIONS(1620), - [anon_sym_float] = ACTIONS(1620), - [anon_sym_double] = ACTIONS(1620), - [anon_sym_float16] = ACTIONS(1620), - [anon_sym_bfloat16] = ACTIONS(1620), - [anon_sym_float128] = ACTIONS(1620), - [anon_sym_iptr] = ACTIONS(1620), - [anon_sym_uptr] = ACTIONS(1620), - [anon_sym_isz] = ACTIONS(1620), - [anon_sym_usz] = ACTIONS(1620), - [anon_sym_anyfault] = ACTIONS(1620), - [anon_sym_any] = ACTIONS(1620), - [anon_sym_DOLLARtypeof] = ACTIONS(1620), - [anon_sym_DOLLARtypefrom] = ACTIONS(1620), - [anon_sym_DOLLARvatype] = ACTIONS(1620), - [anon_sym_DOLLARevaltype] = ACTIONS(1620), - [sym_real_literal] = ACTIONS(1622), + [sym_ident] = ACTIONS(1387), + [sym_integer_literal] = ACTIONS(1389), + [anon_sym_SQUOTE] = ACTIONS(1389), + [anon_sym_DQUOTE] = ACTIONS(1389), + [anon_sym_BQUOTE] = ACTIONS(1389), + [sym_bytes_literal] = ACTIONS(1389), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1387), + [sym_at_ident] = ACTIONS(1389), + [sym_hash_ident] = ACTIONS(1389), + [sym_type_ident] = ACTIONS(1389), + [sym_ct_type_ident] = ACTIONS(1389), + [sym_const_ident] = ACTIONS(1387), + [sym_builtin] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_AMP] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1387), + [anon_sym_tlocal] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1389), + [anon_sym_fn] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_defer] = ACTIONS(1387), + [anon_sym_assert] = ACTIONS(1387), + [anon_sym_nextcase] = ACTIONS(1387), + [anon_sym_switch] = ACTIONS(1387), + [anon_sym_AMP_AMP] = ACTIONS(1389), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_foreach] = ACTIONS(1387), + [anon_sym_foreach_r] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_int] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1389), + [anon_sym_asm] = ACTIONS(1387), + [anon_sym_DOLLARassert] = ACTIONS(1387), + [anon_sym_DOLLARerror] = ACTIONS(1387), + [anon_sym_DOLLARecho] = ACTIONS(1387), + [anon_sym_DOLLARif] = ACTIONS(1387), + [anon_sym_DOLLARendif] = ACTIONS(1387), + [anon_sym_DOLLARelse] = ACTIONS(1387), + [anon_sym_DOLLARswitch] = ACTIONS(1387), + [anon_sym_DOLLARfor] = ACTIONS(1387), + [anon_sym_DOLLARforeach] = ACTIONS(1387), + [anon_sym_DOLLARalignof] = ACTIONS(1387), + [anon_sym_DOLLARextnameof] = ACTIONS(1387), + [anon_sym_DOLLARnameof] = ACTIONS(1387), + [anon_sym_DOLLARoffsetof] = ACTIONS(1387), + [anon_sym_DOLLARqnameof] = ACTIONS(1387), + [anon_sym_DOLLARvaconst] = ACTIONS(1387), + [anon_sym_DOLLARvaarg] = ACTIONS(1387), + [anon_sym_DOLLARvaref] = ACTIONS(1387), + [anon_sym_DOLLARvaexpr] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_DOLLARvacount] = ACTIONS(1387), + [anon_sym_DOLLARappend] = ACTIONS(1387), + [anon_sym_DOLLARconcat] = ACTIONS(1387), + [anon_sym_DOLLAReval] = ACTIONS(1387), + [anon_sym_DOLLARis_const] = ACTIONS(1387), + [anon_sym_DOLLARsizeof] = ACTIONS(1387), + [anon_sym_DOLLARstringify] = ACTIONS(1387), + [anon_sym_DOLLARand] = ACTIONS(1387), + [anon_sym_DOLLARdefined] = ACTIONS(1387), + [anon_sym_DOLLARembed] = ACTIONS(1387), + [anon_sym_DOLLARor] = ACTIONS(1387), + [anon_sym_DOLLARfeature] = ACTIONS(1387), + [anon_sym_DOLLARassignable] = ACTIONS(1387), + [anon_sym_BANG] = ACTIONS(1389), + [anon_sym_TILDE] = ACTIONS(1389), + [anon_sym_PLUS_PLUS] = ACTIONS(1389), + [anon_sym_DASH_DASH] = ACTIONS(1389), + [anon_sym_typeid] = ACTIONS(1387), + [anon_sym_LBRACE_PIPE] = ACTIONS(1389), + [anon_sym_void] = ACTIONS(1387), + [anon_sym_bool] = ACTIONS(1387), + [anon_sym_char] = ACTIONS(1387), + [anon_sym_ichar] = ACTIONS(1387), + [anon_sym_short] = ACTIONS(1387), + [anon_sym_ushort] = ACTIONS(1387), + [anon_sym_uint] = ACTIONS(1387), + [anon_sym_long] = ACTIONS(1387), + [anon_sym_ulong] = ACTIONS(1387), + [anon_sym_int128] = ACTIONS(1387), + [anon_sym_uint128] = ACTIONS(1387), + [anon_sym_float] = ACTIONS(1387), + [anon_sym_double] = ACTIONS(1387), + [anon_sym_float16] = ACTIONS(1387), + [anon_sym_bfloat16] = ACTIONS(1387), + [anon_sym_float128] = ACTIONS(1387), + [anon_sym_iptr] = ACTIONS(1387), + [anon_sym_uptr] = ACTIONS(1387), + [anon_sym_isz] = ACTIONS(1387), + [anon_sym_usz] = ACTIONS(1387), + [anon_sym_anyfault] = ACTIONS(1387), + [anon_sym_any] = ACTIONS(1387), + [anon_sym_DOLLARtypeof] = ACTIONS(1387), + [anon_sym_DOLLARtypefrom] = ACTIONS(1387), + [anon_sym_DOLLARvatype] = ACTIONS(1387), + [anon_sym_DOLLARevaltype] = ACTIONS(1387), + [sym_real_literal] = ACTIONS(1389), }, [507] = { [sym_line_comment] = STATE(507), [sym_doc_comment] = STATE(507), [sym_block_comment] = STATE(507), - [sym_ident] = ACTIONS(1516), - [sym_integer_literal] = ACTIONS(1518), - [anon_sym_SQUOTE] = ACTIONS(1518), - [anon_sym_DQUOTE] = ACTIONS(1518), - [anon_sym_BQUOTE] = ACTIONS(1518), - [sym_bytes_literal] = ACTIONS(1518), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1516), - [sym_at_ident] = ACTIONS(1518), - [sym_hash_ident] = ACTIONS(1518), - [sym_type_ident] = ACTIONS(1518), - [sym_ct_type_ident] = ACTIONS(1518), - [sym_const_ident] = ACTIONS(1516), - [sym_builtin] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1518), - [anon_sym_AMP] = ACTIONS(1516), - [anon_sym_static] = ACTIONS(1516), - [anon_sym_tlocal] = ACTIONS(1516), - [anon_sym_SEMI] = ACTIONS(1518), - [anon_sym_fn] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1516), - [anon_sym_const] = ACTIONS(1516), - [anon_sym_var] = ACTIONS(1516), - [anon_sym_return] = ACTIONS(1516), - [anon_sym_continue] = ACTIONS(1516), - [anon_sym_break] = ACTIONS(1516), - [anon_sym_defer] = ACTIONS(1516), - [anon_sym_assert] = ACTIONS(1516), - [anon_sym_nextcase] = ACTIONS(1516), - [anon_sym_switch] = ACTIONS(1516), - [anon_sym_AMP_AMP] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1516), - [anon_sym_for] = ACTIONS(1516), - [anon_sym_foreach] = ACTIONS(1516), - [anon_sym_foreach_r] = ACTIONS(1516), - [anon_sym_while] = ACTIONS(1516), - [anon_sym_do] = ACTIONS(1516), - [anon_sym_int] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1516), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_STAR] = ACTIONS(1518), - [anon_sym_asm] = ACTIONS(1516), - [anon_sym_DOLLARassert] = ACTIONS(1516), - [anon_sym_DOLLARerror] = ACTIONS(1516), - [anon_sym_DOLLARecho] = ACTIONS(1516), - [anon_sym_DOLLARif] = ACTIONS(1516), - [anon_sym_DOLLARcase] = ACTIONS(1516), - [anon_sym_DOLLARdefault] = ACTIONS(1516), - [anon_sym_DOLLARswitch] = ACTIONS(1516), - [anon_sym_DOLLARendswitch] = ACTIONS(1516), - [anon_sym_DOLLARfor] = ACTIONS(1516), - [anon_sym_DOLLARforeach] = ACTIONS(1516), - [anon_sym_DOLLARalignof] = ACTIONS(1516), - [anon_sym_DOLLARextnameof] = ACTIONS(1516), - [anon_sym_DOLLARnameof] = ACTIONS(1516), - [anon_sym_DOLLARoffsetof] = ACTIONS(1516), - [anon_sym_DOLLARqnameof] = ACTIONS(1516), - [anon_sym_DOLLARvaconst] = ACTIONS(1516), - [anon_sym_DOLLARvaarg] = ACTIONS(1516), - [anon_sym_DOLLARvaref] = ACTIONS(1516), - [anon_sym_DOLLARvaexpr] = ACTIONS(1516), - [anon_sym_true] = ACTIONS(1516), - [anon_sym_false] = ACTIONS(1516), - [anon_sym_null] = ACTIONS(1516), - [anon_sym_DOLLARvacount] = ACTIONS(1516), - [anon_sym_DOLLARappend] = ACTIONS(1516), - [anon_sym_DOLLARconcat] = ACTIONS(1516), - [anon_sym_DOLLAReval] = ACTIONS(1516), - [anon_sym_DOLLARis_const] = ACTIONS(1516), - [anon_sym_DOLLARsizeof] = ACTIONS(1516), - [anon_sym_DOLLARstringify] = ACTIONS(1516), - [anon_sym_DOLLARand] = ACTIONS(1516), - [anon_sym_DOLLARdefined] = ACTIONS(1516), - [anon_sym_DOLLARembed] = ACTIONS(1516), - [anon_sym_DOLLARor] = ACTIONS(1516), - [anon_sym_DOLLARfeature] = ACTIONS(1516), - [anon_sym_DOLLARassignable] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1518), - [anon_sym_TILDE] = ACTIONS(1518), - [anon_sym_PLUS_PLUS] = ACTIONS(1518), - [anon_sym_DASH_DASH] = ACTIONS(1518), - [anon_sym_typeid] = ACTIONS(1516), - [anon_sym_LBRACE_PIPE] = ACTIONS(1518), - [anon_sym_void] = ACTIONS(1516), - [anon_sym_bool] = ACTIONS(1516), - [anon_sym_char] = ACTIONS(1516), - [anon_sym_ichar] = ACTIONS(1516), - [anon_sym_short] = ACTIONS(1516), - [anon_sym_ushort] = ACTIONS(1516), - [anon_sym_uint] = ACTIONS(1516), - [anon_sym_long] = ACTIONS(1516), - [anon_sym_ulong] = ACTIONS(1516), - [anon_sym_int128] = ACTIONS(1516), - [anon_sym_uint128] = ACTIONS(1516), - [anon_sym_float] = ACTIONS(1516), - [anon_sym_double] = ACTIONS(1516), - [anon_sym_float16] = ACTIONS(1516), - [anon_sym_bfloat16] = ACTIONS(1516), - [anon_sym_float128] = ACTIONS(1516), - [anon_sym_iptr] = ACTIONS(1516), - [anon_sym_uptr] = ACTIONS(1516), - [anon_sym_isz] = ACTIONS(1516), - [anon_sym_usz] = ACTIONS(1516), - [anon_sym_anyfault] = ACTIONS(1516), - [anon_sym_any] = ACTIONS(1516), - [anon_sym_DOLLARtypeof] = ACTIONS(1516), - [anon_sym_DOLLARtypefrom] = ACTIONS(1516), - [anon_sym_DOLLARvatype] = ACTIONS(1516), - [anon_sym_DOLLARevaltype] = ACTIONS(1516), - [sym_real_literal] = ACTIONS(1518), + [sym_ident] = ACTIONS(1469), + [sym_integer_literal] = ACTIONS(1471), + [anon_sym_SQUOTE] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(1471), + [anon_sym_BQUOTE] = ACTIONS(1471), + [sym_bytes_literal] = ACTIONS(1471), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1469), + [sym_at_ident] = ACTIONS(1471), + [sym_hash_ident] = ACTIONS(1471), + [sym_type_ident] = ACTIONS(1471), + [sym_ct_type_ident] = ACTIONS(1471), + [sym_const_ident] = ACTIONS(1469), + [sym_builtin] = ACTIONS(1471), + [anon_sym_LPAREN] = ACTIONS(1471), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_static] = ACTIONS(1469), + [anon_sym_tlocal] = ACTIONS(1469), + [anon_sym_SEMI] = ACTIONS(1471), + [anon_sym_fn] = ACTIONS(1469), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_const] = ACTIONS(1469), + [anon_sym_var] = ACTIONS(1469), + [anon_sym_return] = ACTIONS(1469), + [anon_sym_continue] = ACTIONS(1469), + [anon_sym_break] = ACTIONS(1469), + [anon_sym_defer] = ACTIONS(1469), + [anon_sym_assert] = ACTIONS(1469), + [anon_sym_nextcase] = ACTIONS(1469), + [anon_sym_switch] = ACTIONS(1469), + [anon_sym_AMP_AMP] = ACTIONS(1471), + [anon_sym_if] = ACTIONS(1469), + [anon_sym_for] = ACTIONS(1469), + [anon_sym_foreach] = ACTIONS(1469), + [anon_sym_foreach_r] = ACTIONS(1469), + [anon_sym_while] = ACTIONS(1469), + [anon_sym_do] = ACTIONS(1469), + [anon_sym_int] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1469), + [anon_sym_DASH] = ACTIONS(1469), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_asm] = ACTIONS(1469), + [anon_sym_DOLLARassert] = ACTIONS(1469), + [anon_sym_DOLLARerror] = ACTIONS(1469), + [anon_sym_DOLLARecho] = ACTIONS(1469), + [anon_sym_DOLLARif] = ACTIONS(1469), + [anon_sym_DOLLARendif] = ACTIONS(1469), + [anon_sym_DOLLARelse] = ACTIONS(1469), + [anon_sym_DOLLARswitch] = ACTIONS(1469), + [anon_sym_DOLLARfor] = ACTIONS(1469), + [anon_sym_DOLLARforeach] = ACTIONS(1469), + [anon_sym_DOLLARalignof] = ACTIONS(1469), + [anon_sym_DOLLARextnameof] = ACTIONS(1469), + [anon_sym_DOLLARnameof] = ACTIONS(1469), + [anon_sym_DOLLARoffsetof] = ACTIONS(1469), + [anon_sym_DOLLARqnameof] = ACTIONS(1469), + [anon_sym_DOLLARvaconst] = ACTIONS(1469), + [anon_sym_DOLLARvaarg] = ACTIONS(1469), + [anon_sym_DOLLARvaref] = ACTIONS(1469), + [anon_sym_DOLLARvaexpr] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1469), + [anon_sym_false] = ACTIONS(1469), + [anon_sym_null] = ACTIONS(1469), + [anon_sym_DOLLARvacount] = ACTIONS(1469), + [anon_sym_DOLLARappend] = ACTIONS(1469), + [anon_sym_DOLLARconcat] = ACTIONS(1469), + [anon_sym_DOLLAReval] = ACTIONS(1469), + [anon_sym_DOLLARis_const] = ACTIONS(1469), + [anon_sym_DOLLARsizeof] = ACTIONS(1469), + [anon_sym_DOLLARstringify] = ACTIONS(1469), + [anon_sym_DOLLARand] = ACTIONS(1469), + [anon_sym_DOLLARdefined] = ACTIONS(1469), + [anon_sym_DOLLARembed] = ACTIONS(1469), + [anon_sym_DOLLARor] = ACTIONS(1469), + [anon_sym_DOLLARfeature] = ACTIONS(1469), + [anon_sym_DOLLARassignable] = ACTIONS(1469), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1471), + [anon_sym_PLUS_PLUS] = ACTIONS(1471), + [anon_sym_DASH_DASH] = ACTIONS(1471), + [anon_sym_typeid] = ACTIONS(1469), + [anon_sym_LBRACE_PIPE] = ACTIONS(1471), + [anon_sym_void] = ACTIONS(1469), + [anon_sym_bool] = ACTIONS(1469), + [anon_sym_char] = ACTIONS(1469), + [anon_sym_ichar] = ACTIONS(1469), + [anon_sym_short] = ACTIONS(1469), + [anon_sym_ushort] = ACTIONS(1469), + [anon_sym_uint] = ACTIONS(1469), + [anon_sym_long] = ACTIONS(1469), + [anon_sym_ulong] = ACTIONS(1469), + [anon_sym_int128] = ACTIONS(1469), + [anon_sym_uint128] = ACTIONS(1469), + [anon_sym_float] = ACTIONS(1469), + [anon_sym_double] = ACTIONS(1469), + [anon_sym_float16] = ACTIONS(1469), + [anon_sym_bfloat16] = ACTIONS(1469), + [anon_sym_float128] = ACTIONS(1469), + [anon_sym_iptr] = ACTIONS(1469), + [anon_sym_uptr] = ACTIONS(1469), + [anon_sym_isz] = ACTIONS(1469), + [anon_sym_usz] = ACTIONS(1469), + [anon_sym_anyfault] = ACTIONS(1469), + [anon_sym_any] = ACTIONS(1469), + [anon_sym_DOLLARtypeof] = ACTIONS(1469), + [anon_sym_DOLLARtypefrom] = ACTIONS(1469), + [anon_sym_DOLLARvatype] = ACTIONS(1469), + [anon_sym_DOLLARevaltype] = ACTIONS(1469), + [sym_real_literal] = ACTIONS(1471), }, [508] = { [sym_line_comment] = STATE(508), [sym_doc_comment] = STATE(508), [sym_block_comment] = STATE(508), - [sym_ident] = ACTIONS(1370), - [sym_integer_literal] = ACTIONS(1372), - [anon_sym_SQUOTE] = ACTIONS(1372), - [anon_sym_DQUOTE] = ACTIONS(1372), - [anon_sym_BQUOTE] = ACTIONS(1372), - [sym_bytes_literal] = ACTIONS(1372), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1370), - [sym_at_ident] = ACTIONS(1372), - [sym_hash_ident] = ACTIONS(1372), - [sym_type_ident] = ACTIONS(1372), - [sym_ct_type_ident] = ACTIONS(1372), - [sym_const_ident] = ACTIONS(1370), - [sym_builtin] = ACTIONS(1372), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_AMP] = ACTIONS(1370), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_tlocal] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_const] = ACTIONS(1370), - [anon_sym_var] = ACTIONS(1370), - [anon_sym_return] = ACTIONS(1370), - [anon_sym_continue] = ACTIONS(1370), - [anon_sym_break] = ACTIONS(1370), - [anon_sym_defer] = ACTIONS(1370), - [anon_sym_assert] = ACTIONS(1370), - [anon_sym_nextcase] = ACTIONS(1370), - [anon_sym_switch] = ACTIONS(1370), - [anon_sym_AMP_AMP] = ACTIONS(1372), - [anon_sym_if] = ACTIONS(1370), - [anon_sym_for] = ACTIONS(1370), - [anon_sym_foreach] = ACTIONS(1370), - [anon_sym_foreach_r] = ACTIONS(1370), - [anon_sym_while] = ACTIONS(1370), - [anon_sym_do] = ACTIONS(1370), - [anon_sym_int] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_asm] = ACTIONS(1370), - [anon_sym_DOLLARassert] = ACTIONS(1370), - [anon_sym_DOLLARerror] = ACTIONS(1370), - [anon_sym_DOLLARecho] = ACTIONS(1370), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_DOLLARcase] = ACTIONS(1370), - [anon_sym_DOLLARdefault] = ACTIONS(1370), - [anon_sym_DOLLARswitch] = ACTIONS(1370), - [anon_sym_DOLLARendswitch] = ACTIONS(1370), - [anon_sym_DOLLARfor] = ACTIONS(1370), - [anon_sym_DOLLARforeach] = ACTIONS(1370), - [anon_sym_DOLLARalignof] = ACTIONS(1370), - [anon_sym_DOLLARextnameof] = ACTIONS(1370), - [anon_sym_DOLLARnameof] = ACTIONS(1370), - [anon_sym_DOLLARoffsetof] = ACTIONS(1370), - [anon_sym_DOLLARqnameof] = ACTIONS(1370), - [anon_sym_DOLLARvaconst] = ACTIONS(1370), - [anon_sym_DOLLARvaarg] = ACTIONS(1370), - [anon_sym_DOLLARvaref] = ACTIONS(1370), - [anon_sym_DOLLARvaexpr] = ACTIONS(1370), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [anon_sym_null] = ACTIONS(1370), - [anon_sym_DOLLARvacount] = ACTIONS(1370), - [anon_sym_DOLLARappend] = ACTIONS(1370), - [anon_sym_DOLLARconcat] = ACTIONS(1370), - [anon_sym_DOLLAReval] = ACTIONS(1370), - [anon_sym_DOLLARis_const] = ACTIONS(1370), - [anon_sym_DOLLARsizeof] = ACTIONS(1370), - [anon_sym_DOLLARstringify] = ACTIONS(1370), - [anon_sym_DOLLARand] = ACTIONS(1370), - [anon_sym_DOLLARdefined] = ACTIONS(1370), - [anon_sym_DOLLARembed] = ACTIONS(1370), - [anon_sym_DOLLARor] = ACTIONS(1370), - [anon_sym_DOLLARfeature] = ACTIONS(1370), - [anon_sym_DOLLARassignable] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_TILDE] = ACTIONS(1372), - [anon_sym_PLUS_PLUS] = ACTIONS(1372), - [anon_sym_DASH_DASH] = ACTIONS(1372), - [anon_sym_typeid] = ACTIONS(1370), - [anon_sym_LBRACE_PIPE] = ACTIONS(1372), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_bool] = ACTIONS(1370), - [anon_sym_char] = ACTIONS(1370), - [anon_sym_ichar] = ACTIONS(1370), - [anon_sym_short] = ACTIONS(1370), - [anon_sym_ushort] = ACTIONS(1370), - [anon_sym_uint] = ACTIONS(1370), - [anon_sym_long] = ACTIONS(1370), - [anon_sym_ulong] = ACTIONS(1370), - [anon_sym_int128] = ACTIONS(1370), - [anon_sym_uint128] = ACTIONS(1370), - [anon_sym_float] = ACTIONS(1370), - [anon_sym_double] = ACTIONS(1370), - [anon_sym_float16] = ACTIONS(1370), - [anon_sym_bfloat16] = ACTIONS(1370), - [anon_sym_float128] = ACTIONS(1370), - [anon_sym_iptr] = ACTIONS(1370), - [anon_sym_uptr] = ACTIONS(1370), - [anon_sym_isz] = ACTIONS(1370), - [anon_sym_usz] = ACTIONS(1370), - [anon_sym_anyfault] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_DOLLARtypeof] = ACTIONS(1370), - [anon_sym_DOLLARtypefrom] = ACTIONS(1370), - [anon_sym_DOLLARvatype] = ACTIONS(1370), - [anon_sym_DOLLARevaltype] = ACTIONS(1370), - [sym_real_literal] = ACTIONS(1372), + [sym_ident] = ACTIONS(1461), + [sym_integer_literal] = ACTIONS(1463), + [anon_sym_SQUOTE] = ACTIONS(1463), + [anon_sym_DQUOTE] = ACTIONS(1463), + [anon_sym_BQUOTE] = ACTIONS(1463), + [sym_bytes_literal] = ACTIONS(1463), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1461), + [sym_at_ident] = ACTIONS(1463), + [sym_hash_ident] = ACTIONS(1463), + [sym_type_ident] = ACTIONS(1463), + [sym_ct_type_ident] = ACTIONS(1463), + [sym_const_ident] = ACTIONS(1461), + [sym_builtin] = ACTIONS(1463), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_static] = ACTIONS(1461), + [anon_sym_tlocal] = ACTIONS(1461), + [anon_sym_SEMI] = ACTIONS(1463), + [anon_sym_fn] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_const] = ACTIONS(1461), + [anon_sym_var] = ACTIONS(1461), + [anon_sym_return] = ACTIONS(1461), + [anon_sym_continue] = ACTIONS(1461), + [anon_sym_break] = ACTIONS(1461), + [anon_sym_defer] = ACTIONS(1461), + [anon_sym_assert] = ACTIONS(1461), + [anon_sym_nextcase] = ACTIONS(1461), + [anon_sym_switch] = ACTIONS(1461), + [anon_sym_AMP_AMP] = ACTIONS(1463), + [anon_sym_if] = ACTIONS(1461), + [anon_sym_for] = ACTIONS(1461), + [anon_sym_foreach] = ACTIONS(1461), + [anon_sym_foreach_r] = ACTIONS(1461), + [anon_sym_while] = ACTIONS(1461), + [anon_sym_do] = ACTIONS(1461), + [anon_sym_int] = ACTIONS(1461), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_STAR] = ACTIONS(1463), + [anon_sym_asm] = ACTIONS(1461), + [anon_sym_DOLLARassert] = ACTIONS(1461), + [anon_sym_DOLLARerror] = ACTIONS(1461), + [anon_sym_DOLLARecho] = ACTIONS(1461), + [anon_sym_DOLLARif] = ACTIONS(1461), + [anon_sym_DOLLARendif] = ACTIONS(1461), + [anon_sym_DOLLARelse] = ACTIONS(1461), + [anon_sym_DOLLARswitch] = ACTIONS(1461), + [anon_sym_DOLLARfor] = ACTIONS(1461), + [anon_sym_DOLLARforeach] = ACTIONS(1461), + [anon_sym_DOLLARalignof] = ACTIONS(1461), + [anon_sym_DOLLARextnameof] = ACTIONS(1461), + [anon_sym_DOLLARnameof] = ACTIONS(1461), + [anon_sym_DOLLARoffsetof] = ACTIONS(1461), + [anon_sym_DOLLARqnameof] = ACTIONS(1461), + [anon_sym_DOLLARvaconst] = ACTIONS(1461), + [anon_sym_DOLLARvaarg] = ACTIONS(1461), + [anon_sym_DOLLARvaref] = ACTIONS(1461), + [anon_sym_DOLLARvaexpr] = ACTIONS(1461), + [anon_sym_true] = ACTIONS(1461), + [anon_sym_false] = ACTIONS(1461), + [anon_sym_null] = ACTIONS(1461), + [anon_sym_DOLLARvacount] = ACTIONS(1461), + [anon_sym_DOLLARappend] = ACTIONS(1461), + [anon_sym_DOLLARconcat] = ACTIONS(1461), + [anon_sym_DOLLAReval] = ACTIONS(1461), + [anon_sym_DOLLARis_const] = ACTIONS(1461), + [anon_sym_DOLLARsizeof] = ACTIONS(1461), + [anon_sym_DOLLARstringify] = ACTIONS(1461), + [anon_sym_DOLLARand] = ACTIONS(1461), + [anon_sym_DOLLARdefined] = ACTIONS(1461), + [anon_sym_DOLLARembed] = ACTIONS(1461), + [anon_sym_DOLLARor] = ACTIONS(1461), + [anon_sym_DOLLARfeature] = ACTIONS(1461), + [anon_sym_DOLLARassignable] = ACTIONS(1461), + [anon_sym_BANG] = ACTIONS(1463), + [anon_sym_TILDE] = ACTIONS(1463), + [anon_sym_PLUS_PLUS] = ACTIONS(1463), + [anon_sym_DASH_DASH] = ACTIONS(1463), + [anon_sym_typeid] = ACTIONS(1461), + [anon_sym_LBRACE_PIPE] = ACTIONS(1463), + [anon_sym_void] = ACTIONS(1461), + [anon_sym_bool] = ACTIONS(1461), + [anon_sym_char] = ACTIONS(1461), + [anon_sym_ichar] = ACTIONS(1461), + [anon_sym_short] = ACTIONS(1461), + [anon_sym_ushort] = ACTIONS(1461), + [anon_sym_uint] = ACTIONS(1461), + [anon_sym_long] = ACTIONS(1461), + [anon_sym_ulong] = ACTIONS(1461), + [anon_sym_int128] = ACTIONS(1461), + [anon_sym_uint128] = ACTIONS(1461), + [anon_sym_float] = ACTIONS(1461), + [anon_sym_double] = ACTIONS(1461), + [anon_sym_float16] = ACTIONS(1461), + [anon_sym_bfloat16] = ACTIONS(1461), + [anon_sym_float128] = ACTIONS(1461), + [anon_sym_iptr] = ACTIONS(1461), + [anon_sym_uptr] = ACTIONS(1461), + [anon_sym_isz] = ACTIONS(1461), + [anon_sym_usz] = ACTIONS(1461), + [anon_sym_anyfault] = ACTIONS(1461), + [anon_sym_any] = ACTIONS(1461), + [anon_sym_DOLLARtypeof] = ACTIONS(1461), + [anon_sym_DOLLARtypefrom] = ACTIONS(1461), + [anon_sym_DOLLARvatype] = ACTIONS(1461), + [anon_sym_DOLLARevaltype] = ACTIONS(1461), + [sym_real_literal] = ACTIONS(1463), }, [509] = { [sym_line_comment] = STATE(509), [sym_doc_comment] = STATE(509), [sym_block_comment] = STATE(509), - [sym_ident] = ACTIONS(1186), - [sym_integer_literal] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym_DQUOTE] = ACTIONS(1188), - [anon_sym_BQUOTE] = ACTIONS(1188), - [sym_bytes_literal] = ACTIONS(1188), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1186), - [sym_at_ident] = ACTIONS(1188), - [sym_hash_ident] = ACTIONS(1188), - [sym_type_ident] = ACTIONS(1188), - [sym_ct_type_ident] = ACTIONS(1188), - [sym_const_ident] = ACTIONS(1186), - [sym_builtin] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(1188), - [anon_sym_AMP] = ACTIONS(1186), - [anon_sym_static] = ACTIONS(1186), - [anon_sym_tlocal] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1188), - [anon_sym_fn] = ACTIONS(1186), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_const] = ACTIONS(1186), - [anon_sym_var] = ACTIONS(1186), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1186), - [anon_sym_defer] = ACTIONS(1186), - [anon_sym_assert] = ACTIONS(1186), - [anon_sym_nextcase] = ACTIONS(1186), - [anon_sym_switch] = ACTIONS(1186), - [anon_sym_AMP_AMP] = ACTIONS(1188), - [anon_sym_if] = ACTIONS(1186), - [anon_sym_for] = ACTIONS(1186), - [anon_sym_foreach] = ACTIONS(1186), - [anon_sym_foreach_r] = ACTIONS(1186), - [anon_sym_while] = ACTIONS(1186), - [anon_sym_do] = ACTIONS(1186), - [anon_sym_int] = ACTIONS(1186), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1188), - [anon_sym_asm] = ACTIONS(1186), - [anon_sym_DOLLARassert] = ACTIONS(1186), - [anon_sym_DOLLARerror] = ACTIONS(1186), - [anon_sym_DOLLARecho] = ACTIONS(1186), - [anon_sym_DOLLARif] = ACTIONS(1186), - [anon_sym_DOLLARcase] = ACTIONS(1186), - [anon_sym_DOLLARdefault] = ACTIONS(1186), - [anon_sym_DOLLARswitch] = ACTIONS(1186), - [anon_sym_DOLLARendswitch] = ACTIONS(1186), - [anon_sym_DOLLARfor] = ACTIONS(1186), - [anon_sym_DOLLARforeach] = ACTIONS(1186), - [anon_sym_DOLLARalignof] = ACTIONS(1186), - [anon_sym_DOLLARextnameof] = ACTIONS(1186), - [anon_sym_DOLLARnameof] = ACTIONS(1186), - [anon_sym_DOLLARoffsetof] = ACTIONS(1186), - [anon_sym_DOLLARqnameof] = ACTIONS(1186), - [anon_sym_DOLLARvaconst] = ACTIONS(1186), - [anon_sym_DOLLARvaarg] = ACTIONS(1186), - [anon_sym_DOLLARvaref] = ACTIONS(1186), - [anon_sym_DOLLARvaexpr] = ACTIONS(1186), - [anon_sym_true] = ACTIONS(1186), - [anon_sym_false] = ACTIONS(1186), - [anon_sym_null] = ACTIONS(1186), - [anon_sym_DOLLARvacount] = ACTIONS(1186), - [anon_sym_DOLLARappend] = ACTIONS(1186), - [anon_sym_DOLLARconcat] = ACTIONS(1186), - [anon_sym_DOLLAReval] = ACTIONS(1186), - [anon_sym_DOLLARis_const] = ACTIONS(1186), - [anon_sym_DOLLARsizeof] = ACTIONS(1186), - [anon_sym_DOLLARstringify] = ACTIONS(1186), - [anon_sym_DOLLARand] = ACTIONS(1186), - [anon_sym_DOLLARdefined] = ACTIONS(1186), - [anon_sym_DOLLARembed] = ACTIONS(1186), - [anon_sym_DOLLARor] = ACTIONS(1186), - [anon_sym_DOLLARfeature] = ACTIONS(1186), - [anon_sym_DOLLARassignable] = ACTIONS(1186), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_PLUS_PLUS] = ACTIONS(1188), - [anon_sym_DASH_DASH] = ACTIONS(1188), - [anon_sym_typeid] = ACTIONS(1186), - [anon_sym_LBRACE_PIPE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1186), - [anon_sym_bool] = ACTIONS(1186), - [anon_sym_char] = ACTIONS(1186), - [anon_sym_ichar] = ACTIONS(1186), - [anon_sym_short] = ACTIONS(1186), - [anon_sym_ushort] = ACTIONS(1186), - [anon_sym_uint] = ACTIONS(1186), - [anon_sym_long] = ACTIONS(1186), - [anon_sym_ulong] = ACTIONS(1186), - [anon_sym_int128] = ACTIONS(1186), - [anon_sym_uint128] = ACTIONS(1186), - [anon_sym_float] = ACTIONS(1186), - [anon_sym_double] = ACTIONS(1186), - [anon_sym_float16] = ACTIONS(1186), - [anon_sym_bfloat16] = ACTIONS(1186), - [anon_sym_float128] = ACTIONS(1186), - [anon_sym_iptr] = ACTIONS(1186), - [anon_sym_uptr] = ACTIONS(1186), - [anon_sym_isz] = ACTIONS(1186), - [anon_sym_usz] = ACTIONS(1186), - [anon_sym_anyfault] = ACTIONS(1186), - [anon_sym_any] = ACTIONS(1186), - [anon_sym_DOLLARtypeof] = ACTIONS(1186), - [anon_sym_DOLLARtypefrom] = ACTIONS(1186), - [anon_sym_DOLLARvatype] = ACTIONS(1186), - [anon_sym_DOLLARevaltype] = ACTIONS(1186), - [sym_real_literal] = ACTIONS(1188), + [sym_ident] = ACTIONS(1577), + [sym_integer_literal] = ACTIONS(1579), + [anon_sym_SQUOTE] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1579), + [sym_bytes_literal] = ACTIONS(1579), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1577), + [sym_at_ident] = ACTIONS(1579), + [sym_hash_ident] = ACTIONS(1579), + [sym_type_ident] = ACTIONS(1579), + [sym_ct_type_ident] = ACTIONS(1579), + [sym_const_ident] = ACTIONS(1577), + [sym_builtin] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_AMP] = ACTIONS(1577), + [anon_sym_static] = ACTIONS(1577), + [anon_sym_tlocal] = ACTIONS(1577), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_fn] = ACTIONS(1577), + [anon_sym_LBRACE] = ACTIONS(1577), + [anon_sym_const] = ACTIONS(1577), + [anon_sym_var] = ACTIONS(1577), + [anon_sym_return] = ACTIONS(1577), + [anon_sym_continue] = ACTIONS(1577), + [anon_sym_break] = ACTIONS(1577), + [anon_sym_defer] = ACTIONS(1577), + [anon_sym_assert] = ACTIONS(1577), + [anon_sym_nextcase] = ACTIONS(1577), + [anon_sym_switch] = ACTIONS(1577), + [anon_sym_AMP_AMP] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1577), + [anon_sym_for] = ACTIONS(1577), + [anon_sym_foreach] = ACTIONS(1577), + [anon_sym_foreach_r] = ACTIONS(1577), + [anon_sym_while] = ACTIONS(1577), + [anon_sym_do] = ACTIONS(1577), + [anon_sym_int] = ACTIONS(1577), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_asm] = ACTIONS(1577), + [anon_sym_DOLLARassert] = ACTIONS(1577), + [anon_sym_DOLLARerror] = ACTIONS(1577), + [anon_sym_DOLLARecho] = ACTIONS(1577), + [anon_sym_DOLLARif] = ACTIONS(1577), + [anon_sym_DOLLARendif] = ACTIONS(1577), + [anon_sym_DOLLARelse] = ACTIONS(1577), + [anon_sym_DOLLARswitch] = ACTIONS(1577), + [anon_sym_DOLLARfor] = ACTIONS(1577), + [anon_sym_DOLLARforeach] = ACTIONS(1577), + [anon_sym_DOLLARalignof] = ACTIONS(1577), + [anon_sym_DOLLARextnameof] = ACTIONS(1577), + [anon_sym_DOLLARnameof] = ACTIONS(1577), + [anon_sym_DOLLARoffsetof] = ACTIONS(1577), + [anon_sym_DOLLARqnameof] = ACTIONS(1577), + [anon_sym_DOLLARvaconst] = ACTIONS(1577), + [anon_sym_DOLLARvaarg] = ACTIONS(1577), + [anon_sym_DOLLARvaref] = ACTIONS(1577), + [anon_sym_DOLLARvaexpr] = ACTIONS(1577), + [anon_sym_true] = ACTIONS(1577), + [anon_sym_false] = ACTIONS(1577), + [anon_sym_null] = ACTIONS(1577), + [anon_sym_DOLLARvacount] = ACTIONS(1577), + [anon_sym_DOLLARappend] = ACTIONS(1577), + [anon_sym_DOLLARconcat] = ACTIONS(1577), + [anon_sym_DOLLAReval] = ACTIONS(1577), + [anon_sym_DOLLARis_const] = ACTIONS(1577), + [anon_sym_DOLLARsizeof] = ACTIONS(1577), + [anon_sym_DOLLARstringify] = ACTIONS(1577), + [anon_sym_DOLLARand] = ACTIONS(1577), + [anon_sym_DOLLARdefined] = ACTIONS(1577), + [anon_sym_DOLLARembed] = ACTIONS(1577), + [anon_sym_DOLLARor] = ACTIONS(1577), + [anon_sym_DOLLARfeature] = ACTIONS(1577), + [anon_sym_DOLLARassignable] = ACTIONS(1577), + [anon_sym_BANG] = ACTIONS(1579), + [anon_sym_TILDE] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_DASH_DASH] = ACTIONS(1579), + [anon_sym_typeid] = ACTIONS(1577), + [anon_sym_LBRACE_PIPE] = ACTIONS(1579), + [anon_sym_void] = ACTIONS(1577), + [anon_sym_bool] = ACTIONS(1577), + [anon_sym_char] = ACTIONS(1577), + [anon_sym_ichar] = ACTIONS(1577), + [anon_sym_short] = ACTIONS(1577), + [anon_sym_ushort] = ACTIONS(1577), + [anon_sym_uint] = ACTIONS(1577), + [anon_sym_long] = ACTIONS(1577), + [anon_sym_ulong] = ACTIONS(1577), + [anon_sym_int128] = ACTIONS(1577), + [anon_sym_uint128] = ACTIONS(1577), + [anon_sym_float] = ACTIONS(1577), + [anon_sym_double] = ACTIONS(1577), + [anon_sym_float16] = ACTIONS(1577), + [anon_sym_bfloat16] = ACTIONS(1577), + [anon_sym_float128] = ACTIONS(1577), + [anon_sym_iptr] = ACTIONS(1577), + [anon_sym_uptr] = ACTIONS(1577), + [anon_sym_isz] = ACTIONS(1577), + [anon_sym_usz] = ACTIONS(1577), + [anon_sym_anyfault] = ACTIONS(1577), + [anon_sym_any] = ACTIONS(1577), + [anon_sym_DOLLARtypeof] = ACTIONS(1577), + [anon_sym_DOLLARtypefrom] = ACTIONS(1577), + [anon_sym_DOLLARvatype] = ACTIONS(1577), + [anon_sym_DOLLARevaltype] = ACTIONS(1577), + [sym_real_literal] = ACTIONS(1579), }, [510] = { [sym_line_comment] = STATE(510), [sym_doc_comment] = STATE(510), [sym_block_comment] = STATE(510), - [sym_else_part] = STATE(642), - [sym_ident] = ACTIONS(1370), - [sym_integer_literal] = ACTIONS(1372), - [anon_sym_SQUOTE] = ACTIONS(1372), - [anon_sym_DQUOTE] = ACTIONS(1372), - [anon_sym_BQUOTE] = ACTIONS(1372), - [sym_bytes_literal] = ACTIONS(1372), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1370), - [sym_at_ident] = ACTIONS(1372), - [sym_hash_ident] = ACTIONS(1372), - [sym_type_ident] = ACTIONS(1372), - [sym_ct_type_ident] = ACTIONS(1372), - [sym_const_ident] = ACTIONS(1370), - [sym_builtin] = ACTIONS(1372), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_AMP] = ACTIONS(1370), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_tlocal] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_const] = ACTIONS(1370), - [anon_sym_var] = ACTIONS(1370), - [anon_sym_return] = ACTIONS(1370), - [anon_sym_continue] = ACTIONS(1370), - [anon_sym_break] = ACTIONS(1370), - [anon_sym_defer] = ACTIONS(1370), - [anon_sym_assert] = ACTIONS(1370), - [anon_sym_nextcase] = ACTIONS(1370), - [anon_sym_switch] = ACTIONS(1370), - [anon_sym_AMP_AMP] = ACTIONS(1372), - [anon_sym_if] = ACTIONS(1370), - [anon_sym_else] = ACTIONS(1668), - [anon_sym_for] = ACTIONS(1370), - [anon_sym_foreach] = ACTIONS(1370), - [anon_sym_foreach_r] = ACTIONS(1370), - [anon_sym_while] = ACTIONS(1370), - [anon_sym_do] = ACTIONS(1370), - [anon_sym_int] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_asm] = ACTIONS(1370), - [anon_sym_DOLLARassert] = ACTIONS(1370), - [anon_sym_DOLLARerror] = ACTIONS(1370), - [anon_sym_DOLLARecho] = ACTIONS(1370), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_DOLLARswitch] = ACTIONS(1370), - [anon_sym_DOLLARfor] = ACTIONS(1370), - [anon_sym_DOLLARforeach] = ACTIONS(1370), - [anon_sym_DOLLARendforeach] = ACTIONS(1370), - [anon_sym_DOLLARalignof] = ACTIONS(1370), - [anon_sym_DOLLARextnameof] = ACTIONS(1370), - [anon_sym_DOLLARnameof] = ACTIONS(1370), - [anon_sym_DOLLARoffsetof] = ACTIONS(1370), - [anon_sym_DOLLARqnameof] = ACTIONS(1370), - [anon_sym_DOLLARvaconst] = ACTIONS(1370), - [anon_sym_DOLLARvaarg] = ACTIONS(1370), - [anon_sym_DOLLARvaref] = ACTIONS(1370), - [anon_sym_DOLLARvaexpr] = ACTIONS(1370), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [anon_sym_null] = ACTIONS(1370), - [anon_sym_DOLLARvacount] = ACTIONS(1370), - [anon_sym_DOLLARappend] = ACTIONS(1370), - [anon_sym_DOLLARconcat] = ACTIONS(1370), - [anon_sym_DOLLAReval] = ACTIONS(1370), - [anon_sym_DOLLARis_const] = ACTIONS(1370), - [anon_sym_DOLLARsizeof] = ACTIONS(1370), - [anon_sym_DOLLARstringify] = ACTIONS(1370), - [anon_sym_DOLLARand] = ACTIONS(1370), - [anon_sym_DOLLARdefined] = ACTIONS(1370), - [anon_sym_DOLLARembed] = ACTIONS(1370), - [anon_sym_DOLLARor] = ACTIONS(1370), - [anon_sym_DOLLARfeature] = ACTIONS(1370), - [anon_sym_DOLLARassignable] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_TILDE] = ACTIONS(1372), - [anon_sym_PLUS_PLUS] = ACTIONS(1372), - [anon_sym_DASH_DASH] = ACTIONS(1372), - [anon_sym_typeid] = ACTIONS(1370), - [anon_sym_LBRACE_PIPE] = ACTIONS(1372), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_bool] = ACTIONS(1370), - [anon_sym_char] = ACTIONS(1370), - [anon_sym_ichar] = ACTIONS(1370), - [anon_sym_short] = ACTIONS(1370), - [anon_sym_ushort] = ACTIONS(1370), - [anon_sym_uint] = ACTIONS(1370), - [anon_sym_long] = ACTIONS(1370), - [anon_sym_ulong] = ACTIONS(1370), - [anon_sym_int128] = ACTIONS(1370), - [anon_sym_uint128] = ACTIONS(1370), - [anon_sym_float] = ACTIONS(1370), - [anon_sym_double] = ACTIONS(1370), - [anon_sym_float16] = ACTIONS(1370), - [anon_sym_bfloat16] = ACTIONS(1370), - [anon_sym_float128] = ACTIONS(1370), - [anon_sym_iptr] = ACTIONS(1370), - [anon_sym_uptr] = ACTIONS(1370), - [anon_sym_isz] = ACTIONS(1370), - [anon_sym_usz] = ACTIONS(1370), - [anon_sym_anyfault] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_DOLLARtypeof] = ACTIONS(1370), - [anon_sym_DOLLARtypefrom] = ACTIONS(1370), - [anon_sym_DOLLARvatype] = ACTIONS(1370), - [anon_sym_DOLLARevaltype] = ACTIONS(1370), - [sym_real_literal] = ACTIONS(1372), + [sym_ident] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1447), + [anon_sym_SQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [anon_sym_BQUOTE] = ACTIONS(1447), + [sym_bytes_literal] = ACTIONS(1447), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1445), + [sym_at_ident] = ACTIONS(1447), + [sym_hash_ident] = ACTIONS(1447), + [sym_type_ident] = ACTIONS(1447), + [sym_ct_type_ident] = ACTIONS(1447), + [sym_const_ident] = ACTIONS(1445), + [sym_builtin] = ACTIONS(1447), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_AMP] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_tlocal] = ACTIONS(1445), + [anon_sym_SEMI] = ACTIONS(1447), + [anon_sym_fn] = ACTIONS(1445), + [anon_sym_LBRACE] = ACTIONS(1445), + [anon_sym_const] = ACTIONS(1445), + [anon_sym_var] = ACTIONS(1445), + [anon_sym_return] = ACTIONS(1445), + [anon_sym_continue] = ACTIONS(1445), + [anon_sym_break] = ACTIONS(1445), + [anon_sym_defer] = ACTIONS(1445), + [anon_sym_assert] = ACTIONS(1445), + [anon_sym_nextcase] = ACTIONS(1445), + [anon_sym_switch] = ACTIONS(1445), + [anon_sym_AMP_AMP] = ACTIONS(1447), + [anon_sym_if] = ACTIONS(1445), + [anon_sym_for] = ACTIONS(1445), + [anon_sym_foreach] = ACTIONS(1445), + [anon_sym_foreach_r] = ACTIONS(1445), + [anon_sym_while] = ACTIONS(1445), + [anon_sym_do] = ACTIONS(1445), + [anon_sym_int] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_STAR] = ACTIONS(1447), + [anon_sym_asm] = ACTIONS(1445), + [anon_sym_DOLLARassert] = ACTIONS(1445), + [anon_sym_DOLLARerror] = ACTIONS(1445), + [anon_sym_DOLLARecho] = ACTIONS(1445), + [anon_sym_DOLLARif] = ACTIONS(1445), + [anon_sym_DOLLARendif] = ACTIONS(1445), + [anon_sym_DOLLARelse] = ACTIONS(1445), + [anon_sym_DOLLARswitch] = ACTIONS(1445), + [anon_sym_DOLLARfor] = ACTIONS(1445), + [anon_sym_DOLLARforeach] = ACTIONS(1445), + [anon_sym_DOLLARalignof] = ACTIONS(1445), + [anon_sym_DOLLARextnameof] = ACTIONS(1445), + [anon_sym_DOLLARnameof] = ACTIONS(1445), + [anon_sym_DOLLARoffsetof] = ACTIONS(1445), + [anon_sym_DOLLARqnameof] = ACTIONS(1445), + [anon_sym_DOLLARvaconst] = ACTIONS(1445), + [anon_sym_DOLLARvaarg] = ACTIONS(1445), + [anon_sym_DOLLARvaref] = ACTIONS(1445), + [anon_sym_DOLLARvaexpr] = ACTIONS(1445), + [anon_sym_true] = ACTIONS(1445), + [anon_sym_false] = ACTIONS(1445), + [anon_sym_null] = ACTIONS(1445), + [anon_sym_DOLLARvacount] = ACTIONS(1445), + [anon_sym_DOLLARappend] = ACTIONS(1445), + [anon_sym_DOLLARconcat] = ACTIONS(1445), + [anon_sym_DOLLAReval] = ACTIONS(1445), + [anon_sym_DOLLARis_const] = ACTIONS(1445), + [anon_sym_DOLLARsizeof] = ACTIONS(1445), + [anon_sym_DOLLARstringify] = ACTIONS(1445), + [anon_sym_DOLLARand] = ACTIONS(1445), + [anon_sym_DOLLARdefined] = ACTIONS(1445), + [anon_sym_DOLLARembed] = ACTIONS(1445), + [anon_sym_DOLLARor] = ACTIONS(1445), + [anon_sym_DOLLARfeature] = ACTIONS(1445), + [anon_sym_DOLLARassignable] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(1447), + [anon_sym_TILDE] = ACTIONS(1447), + [anon_sym_PLUS_PLUS] = ACTIONS(1447), + [anon_sym_DASH_DASH] = ACTIONS(1447), + [anon_sym_typeid] = ACTIONS(1445), + [anon_sym_LBRACE_PIPE] = ACTIONS(1447), + [anon_sym_void] = ACTIONS(1445), + [anon_sym_bool] = ACTIONS(1445), + [anon_sym_char] = ACTIONS(1445), + [anon_sym_ichar] = ACTIONS(1445), + [anon_sym_short] = ACTIONS(1445), + [anon_sym_ushort] = ACTIONS(1445), + [anon_sym_uint] = ACTIONS(1445), + [anon_sym_long] = ACTIONS(1445), + [anon_sym_ulong] = ACTIONS(1445), + [anon_sym_int128] = ACTIONS(1445), + [anon_sym_uint128] = ACTIONS(1445), + [anon_sym_float] = ACTIONS(1445), + [anon_sym_double] = ACTIONS(1445), + [anon_sym_float16] = ACTIONS(1445), + [anon_sym_bfloat16] = ACTIONS(1445), + [anon_sym_float128] = ACTIONS(1445), + [anon_sym_iptr] = ACTIONS(1445), + [anon_sym_uptr] = ACTIONS(1445), + [anon_sym_isz] = ACTIONS(1445), + [anon_sym_usz] = ACTIONS(1445), + [anon_sym_anyfault] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_DOLLARtypeof] = ACTIONS(1445), + [anon_sym_DOLLARtypefrom] = ACTIONS(1445), + [anon_sym_DOLLARvatype] = ACTIONS(1445), + [anon_sym_DOLLARevaltype] = ACTIONS(1445), + [sym_real_literal] = ACTIONS(1447), }, [511] = { [sym_line_comment] = STATE(511), [sym_doc_comment] = STATE(511), [sym_block_comment] = STATE(511), - [sym_ident] = ACTIONS(1572), - [sym_integer_literal] = ACTIONS(1574), - [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_DQUOTE] = ACTIONS(1574), - [anon_sym_BQUOTE] = ACTIONS(1574), - [sym_bytes_literal] = ACTIONS(1574), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1572), - [sym_at_ident] = ACTIONS(1574), - [sym_hash_ident] = ACTIONS(1574), - [sym_type_ident] = ACTIONS(1574), - [sym_ct_type_ident] = ACTIONS(1574), - [sym_const_ident] = ACTIONS(1572), - [sym_builtin] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1574), - [anon_sym_AMP] = ACTIONS(1572), - [anon_sym_static] = ACTIONS(1572), - [anon_sym_tlocal] = ACTIONS(1572), - [anon_sym_SEMI] = ACTIONS(1574), - [anon_sym_fn] = ACTIONS(1572), - [anon_sym_LBRACE] = ACTIONS(1572), - [anon_sym_const] = ACTIONS(1572), - [anon_sym_var] = ACTIONS(1572), - [anon_sym_return] = ACTIONS(1572), - [anon_sym_continue] = ACTIONS(1572), - [anon_sym_break] = ACTIONS(1572), - [anon_sym_defer] = ACTIONS(1572), - [anon_sym_assert] = ACTIONS(1572), - [anon_sym_nextcase] = ACTIONS(1572), - [anon_sym_switch] = ACTIONS(1572), - [anon_sym_AMP_AMP] = ACTIONS(1574), - [anon_sym_if] = ACTIONS(1572), - [anon_sym_for] = ACTIONS(1572), - [anon_sym_foreach] = ACTIONS(1572), - [anon_sym_foreach_r] = ACTIONS(1572), - [anon_sym_while] = ACTIONS(1572), - [anon_sym_do] = ACTIONS(1572), - [anon_sym_int] = ACTIONS(1572), - [anon_sym_PLUS] = ACTIONS(1572), - [anon_sym_DASH] = ACTIONS(1572), - [anon_sym_STAR] = ACTIONS(1574), - [anon_sym_asm] = ACTIONS(1572), - [anon_sym_DOLLARassert] = ACTIONS(1572), - [anon_sym_DOLLARerror] = ACTIONS(1572), - [anon_sym_DOLLARecho] = ACTIONS(1572), - [anon_sym_DOLLARif] = ACTIONS(1572), - [anon_sym_DOLLARcase] = ACTIONS(1572), - [anon_sym_DOLLARdefault] = ACTIONS(1572), - [anon_sym_DOLLARswitch] = ACTIONS(1572), - [anon_sym_DOLLARendswitch] = ACTIONS(1572), - [anon_sym_DOLLARfor] = ACTIONS(1572), - [anon_sym_DOLLARforeach] = ACTIONS(1572), - [anon_sym_DOLLARalignof] = ACTIONS(1572), - [anon_sym_DOLLARextnameof] = ACTIONS(1572), - [anon_sym_DOLLARnameof] = ACTIONS(1572), - [anon_sym_DOLLARoffsetof] = ACTIONS(1572), - [anon_sym_DOLLARqnameof] = ACTIONS(1572), - [anon_sym_DOLLARvaconst] = ACTIONS(1572), - [anon_sym_DOLLARvaarg] = ACTIONS(1572), - [anon_sym_DOLLARvaref] = ACTIONS(1572), - [anon_sym_DOLLARvaexpr] = ACTIONS(1572), - [anon_sym_true] = ACTIONS(1572), - [anon_sym_false] = ACTIONS(1572), - [anon_sym_null] = ACTIONS(1572), - [anon_sym_DOLLARvacount] = ACTIONS(1572), - [anon_sym_DOLLARappend] = ACTIONS(1572), - [anon_sym_DOLLARconcat] = ACTIONS(1572), - [anon_sym_DOLLAReval] = ACTIONS(1572), - [anon_sym_DOLLARis_const] = ACTIONS(1572), - [anon_sym_DOLLARsizeof] = ACTIONS(1572), - [anon_sym_DOLLARstringify] = ACTIONS(1572), - [anon_sym_DOLLARand] = ACTIONS(1572), - [anon_sym_DOLLARdefined] = ACTIONS(1572), - [anon_sym_DOLLARembed] = ACTIONS(1572), - [anon_sym_DOLLARor] = ACTIONS(1572), - [anon_sym_DOLLARfeature] = ACTIONS(1572), - [anon_sym_DOLLARassignable] = ACTIONS(1572), - [anon_sym_BANG] = ACTIONS(1574), - [anon_sym_TILDE] = ACTIONS(1574), - [anon_sym_PLUS_PLUS] = ACTIONS(1574), - [anon_sym_DASH_DASH] = ACTIONS(1574), - [anon_sym_typeid] = ACTIONS(1572), - [anon_sym_LBRACE_PIPE] = ACTIONS(1574), - [anon_sym_void] = ACTIONS(1572), - [anon_sym_bool] = ACTIONS(1572), - [anon_sym_char] = ACTIONS(1572), - [anon_sym_ichar] = ACTIONS(1572), - [anon_sym_short] = ACTIONS(1572), - [anon_sym_ushort] = ACTIONS(1572), - [anon_sym_uint] = ACTIONS(1572), - [anon_sym_long] = ACTIONS(1572), - [anon_sym_ulong] = ACTIONS(1572), - [anon_sym_int128] = ACTIONS(1572), - [anon_sym_uint128] = ACTIONS(1572), - [anon_sym_float] = ACTIONS(1572), - [anon_sym_double] = ACTIONS(1572), - [anon_sym_float16] = ACTIONS(1572), - [anon_sym_bfloat16] = ACTIONS(1572), - [anon_sym_float128] = ACTIONS(1572), - [anon_sym_iptr] = ACTIONS(1572), - [anon_sym_uptr] = ACTIONS(1572), - [anon_sym_isz] = ACTIONS(1572), - [anon_sym_usz] = ACTIONS(1572), - [anon_sym_anyfault] = ACTIONS(1572), - [anon_sym_any] = ACTIONS(1572), - [anon_sym_DOLLARtypeof] = ACTIONS(1572), - [anon_sym_DOLLARtypefrom] = ACTIONS(1572), - [anon_sym_DOLLARvatype] = ACTIONS(1572), - [anon_sym_DOLLARevaltype] = ACTIONS(1572), - [sym_real_literal] = ACTIONS(1574), + [sym_ident] = ACTIONS(1351), + [sym_integer_literal] = ACTIONS(1353), + [anon_sym_SQUOTE] = ACTIONS(1353), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_BQUOTE] = ACTIONS(1353), + [sym_bytes_literal] = ACTIONS(1353), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1351), + [sym_at_ident] = ACTIONS(1353), + [sym_hash_ident] = ACTIONS(1353), + [sym_type_ident] = ACTIONS(1353), + [sym_ct_type_ident] = ACTIONS(1353), + [sym_const_ident] = ACTIONS(1351), + [sym_builtin] = ACTIONS(1353), + [anon_sym_LPAREN] = ACTIONS(1353), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_static] = ACTIONS(1351), + [anon_sym_tlocal] = ACTIONS(1351), + [anon_sym_SEMI] = ACTIONS(1353), + [anon_sym_fn] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1351), + [anon_sym_const] = ACTIONS(1351), + [anon_sym_var] = ACTIONS(1351), + [anon_sym_return] = ACTIONS(1351), + [anon_sym_continue] = ACTIONS(1351), + [anon_sym_break] = ACTIONS(1351), + [anon_sym_defer] = ACTIONS(1351), + [anon_sym_assert] = ACTIONS(1351), + [anon_sym_nextcase] = ACTIONS(1351), + [anon_sym_switch] = ACTIONS(1351), + [anon_sym_AMP_AMP] = ACTIONS(1353), + [anon_sym_if] = ACTIONS(1351), + [anon_sym_else] = ACTIONS(1351), + [anon_sym_for] = ACTIONS(1351), + [anon_sym_foreach] = ACTIONS(1351), + [anon_sym_foreach_r] = ACTIONS(1351), + [anon_sym_while] = ACTIONS(1351), + [anon_sym_do] = ACTIONS(1351), + [anon_sym_int] = ACTIONS(1351), + [anon_sym_PLUS] = ACTIONS(1351), + [anon_sym_DASH] = ACTIONS(1351), + [anon_sym_STAR] = ACTIONS(1353), + [anon_sym_asm] = ACTIONS(1351), + [anon_sym_DOLLARassert] = ACTIONS(1351), + [anon_sym_DOLLARerror] = ACTIONS(1351), + [anon_sym_DOLLARecho] = ACTIONS(1351), + [anon_sym_DOLLARif] = ACTIONS(1351), + [anon_sym_DOLLARswitch] = ACTIONS(1351), + [anon_sym_DOLLARfor] = ACTIONS(1351), + [anon_sym_DOLLARendfor] = ACTIONS(1351), + [anon_sym_DOLLARforeach] = ACTIONS(1351), + [anon_sym_DOLLARalignof] = ACTIONS(1351), + [anon_sym_DOLLARextnameof] = ACTIONS(1351), + [anon_sym_DOLLARnameof] = ACTIONS(1351), + [anon_sym_DOLLARoffsetof] = ACTIONS(1351), + [anon_sym_DOLLARqnameof] = ACTIONS(1351), + [anon_sym_DOLLARvaconst] = ACTIONS(1351), + [anon_sym_DOLLARvaarg] = ACTIONS(1351), + [anon_sym_DOLLARvaref] = ACTIONS(1351), + [anon_sym_DOLLARvaexpr] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_null] = ACTIONS(1351), + [anon_sym_DOLLARvacount] = ACTIONS(1351), + [anon_sym_DOLLARappend] = ACTIONS(1351), + [anon_sym_DOLLARconcat] = ACTIONS(1351), + [anon_sym_DOLLAReval] = ACTIONS(1351), + [anon_sym_DOLLARis_const] = ACTIONS(1351), + [anon_sym_DOLLARsizeof] = ACTIONS(1351), + [anon_sym_DOLLARstringify] = ACTIONS(1351), + [anon_sym_DOLLARand] = ACTIONS(1351), + [anon_sym_DOLLARdefined] = ACTIONS(1351), + [anon_sym_DOLLARembed] = ACTIONS(1351), + [anon_sym_DOLLARor] = ACTIONS(1351), + [anon_sym_DOLLARfeature] = ACTIONS(1351), + [anon_sym_DOLLARassignable] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_PLUS_PLUS] = ACTIONS(1353), + [anon_sym_DASH_DASH] = ACTIONS(1353), + [anon_sym_typeid] = ACTIONS(1351), + [anon_sym_LBRACE_PIPE] = ACTIONS(1353), + [anon_sym_void] = ACTIONS(1351), + [anon_sym_bool] = ACTIONS(1351), + [anon_sym_char] = ACTIONS(1351), + [anon_sym_ichar] = ACTIONS(1351), + [anon_sym_short] = ACTIONS(1351), + [anon_sym_ushort] = ACTIONS(1351), + [anon_sym_uint] = ACTIONS(1351), + [anon_sym_long] = ACTIONS(1351), + [anon_sym_ulong] = ACTIONS(1351), + [anon_sym_int128] = ACTIONS(1351), + [anon_sym_uint128] = ACTIONS(1351), + [anon_sym_float] = ACTIONS(1351), + [anon_sym_double] = ACTIONS(1351), + [anon_sym_float16] = ACTIONS(1351), + [anon_sym_bfloat16] = ACTIONS(1351), + [anon_sym_float128] = ACTIONS(1351), + [anon_sym_iptr] = ACTIONS(1351), + [anon_sym_uptr] = ACTIONS(1351), + [anon_sym_isz] = ACTIONS(1351), + [anon_sym_usz] = ACTIONS(1351), + [anon_sym_anyfault] = ACTIONS(1351), + [anon_sym_any] = ACTIONS(1351), + [anon_sym_DOLLARtypeof] = ACTIONS(1351), + [anon_sym_DOLLARtypefrom] = ACTIONS(1351), + [anon_sym_DOLLARvatype] = ACTIONS(1351), + [anon_sym_DOLLARevaltype] = ACTIONS(1351), + [sym_real_literal] = ACTIONS(1353), }, [512] = { [sym_line_comment] = STATE(512), [sym_doc_comment] = STATE(512), [sym_block_comment] = STATE(512), - [sym_ident] = ACTIONS(1492), - [sym_integer_literal] = ACTIONS(1494), - [anon_sym_SQUOTE] = ACTIONS(1494), - [anon_sym_DQUOTE] = ACTIONS(1494), - [anon_sym_BQUOTE] = ACTIONS(1494), - [sym_bytes_literal] = ACTIONS(1494), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1492), - [sym_at_ident] = ACTIONS(1494), - [sym_hash_ident] = ACTIONS(1494), - [sym_type_ident] = ACTIONS(1494), - [sym_ct_type_ident] = ACTIONS(1494), - [sym_const_ident] = ACTIONS(1492), - [sym_builtin] = ACTIONS(1494), - [anon_sym_LPAREN] = ACTIONS(1494), - [anon_sym_AMP] = ACTIONS(1492), - [anon_sym_static] = ACTIONS(1492), - [anon_sym_tlocal] = ACTIONS(1492), - [anon_sym_SEMI] = ACTIONS(1494), - [anon_sym_fn] = ACTIONS(1492), - [anon_sym_LBRACE] = ACTIONS(1492), - [anon_sym_const] = ACTIONS(1492), - [anon_sym_var] = ACTIONS(1492), - [anon_sym_return] = ACTIONS(1492), - [anon_sym_continue] = ACTIONS(1492), - [anon_sym_break] = ACTIONS(1492), - [anon_sym_defer] = ACTIONS(1492), - [anon_sym_assert] = ACTIONS(1492), - [anon_sym_nextcase] = ACTIONS(1492), - [anon_sym_switch] = ACTIONS(1492), - [anon_sym_AMP_AMP] = ACTIONS(1494), - [anon_sym_if] = ACTIONS(1492), - [anon_sym_for] = ACTIONS(1492), - [anon_sym_foreach] = ACTIONS(1492), - [anon_sym_foreach_r] = ACTIONS(1492), - [anon_sym_while] = ACTIONS(1492), - [anon_sym_do] = ACTIONS(1492), - [anon_sym_int] = ACTIONS(1492), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1492), - [anon_sym_STAR] = ACTIONS(1494), - [anon_sym_asm] = ACTIONS(1492), - [anon_sym_DOLLARassert] = ACTIONS(1492), - [anon_sym_DOLLARerror] = ACTIONS(1492), - [anon_sym_DOLLARecho] = ACTIONS(1492), - [anon_sym_DOLLARif] = ACTIONS(1492), - [anon_sym_DOLLARcase] = ACTIONS(1492), - [anon_sym_DOLLARdefault] = ACTIONS(1492), - [anon_sym_DOLLARswitch] = ACTIONS(1492), - [anon_sym_DOLLARendswitch] = ACTIONS(1492), - [anon_sym_DOLLARfor] = ACTIONS(1492), - [anon_sym_DOLLARforeach] = ACTIONS(1492), - [anon_sym_DOLLARalignof] = ACTIONS(1492), - [anon_sym_DOLLARextnameof] = ACTIONS(1492), - [anon_sym_DOLLARnameof] = ACTIONS(1492), - [anon_sym_DOLLARoffsetof] = ACTIONS(1492), - [anon_sym_DOLLARqnameof] = ACTIONS(1492), - [anon_sym_DOLLARvaconst] = ACTIONS(1492), - [anon_sym_DOLLARvaarg] = ACTIONS(1492), - [anon_sym_DOLLARvaref] = ACTIONS(1492), - [anon_sym_DOLLARvaexpr] = ACTIONS(1492), - [anon_sym_true] = ACTIONS(1492), - [anon_sym_false] = ACTIONS(1492), - [anon_sym_null] = ACTIONS(1492), - [anon_sym_DOLLARvacount] = ACTIONS(1492), - [anon_sym_DOLLARappend] = ACTIONS(1492), - [anon_sym_DOLLARconcat] = ACTIONS(1492), - [anon_sym_DOLLAReval] = ACTIONS(1492), - [anon_sym_DOLLARis_const] = ACTIONS(1492), - [anon_sym_DOLLARsizeof] = ACTIONS(1492), - [anon_sym_DOLLARstringify] = ACTIONS(1492), - [anon_sym_DOLLARand] = ACTIONS(1492), - [anon_sym_DOLLARdefined] = ACTIONS(1492), - [anon_sym_DOLLARembed] = ACTIONS(1492), - [anon_sym_DOLLARor] = ACTIONS(1492), - [anon_sym_DOLLARfeature] = ACTIONS(1492), - [anon_sym_DOLLARassignable] = ACTIONS(1492), - [anon_sym_BANG] = ACTIONS(1494), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_DASH_DASH] = ACTIONS(1494), - [anon_sym_typeid] = ACTIONS(1492), - [anon_sym_LBRACE_PIPE] = ACTIONS(1494), - [anon_sym_void] = ACTIONS(1492), - [anon_sym_bool] = ACTIONS(1492), - [anon_sym_char] = ACTIONS(1492), - [anon_sym_ichar] = ACTIONS(1492), - [anon_sym_short] = ACTIONS(1492), - [anon_sym_ushort] = ACTIONS(1492), - [anon_sym_uint] = ACTIONS(1492), - [anon_sym_long] = ACTIONS(1492), - [anon_sym_ulong] = ACTIONS(1492), - [anon_sym_int128] = ACTIONS(1492), - [anon_sym_uint128] = ACTIONS(1492), - [anon_sym_float] = ACTIONS(1492), - [anon_sym_double] = ACTIONS(1492), - [anon_sym_float16] = ACTIONS(1492), - [anon_sym_bfloat16] = ACTIONS(1492), - [anon_sym_float128] = ACTIONS(1492), - [anon_sym_iptr] = ACTIONS(1492), - [anon_sym_uptr] = ACTIONS(1492), - [anon_sym_isz] = ACTIONS(1492), - [anon_sym_usz] = ACTIONS(1492), - [anon_sym_anyfault] = ACTIONS(1492), - [anon_sym_any] = ACTIONS(1492), - [anon_sym_DOLLARtypeof] = ACTIONS(1492), - [anon_sym_DOLLARtypefrom] = ACTIONS(1492), - [anon_sym_DOLLARvatype] = ACTIONS(1492), - [anon_sym_DOLLARevaltype] = ACTIONS(1492), - [sym_real_literal] = ACTIONS(1494), + [sym_ident] = ACTIONS(1621), + [sym_integer_literal] = ACTIONS(1623), + [anon_sym_SQUOTE] = ACTIONS(1623), + [anon_sym_DQUOTE] = ACTIONS(1623), + [anon_sym_BQUOTE] = ACTIONS(1623), + [sym_bytes_literal] = ACTIONS(1623), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1621), + [sym_at_ident] = ACTIONS(1623), + [sym_hash_ident] = ACTIONS(1623), + [sym_type_ident] = ACTIONS(1623), + [sym_ct_type_ident] = ACTIONS(1623), + [sym_const_ident] = ACTIONS(1621), + [sym_builtin] = ACTIONS(1623), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_AMP] = ACTIONS(1621), + [anon_sym_static] = ACTIONS(1621), + [anon_sym_tlocal] = ACTIONS(1621), + [anon_sym_SEMI] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_LBRACE] = ACTIONS(1621), + [anon_sym_const] = ACTIONS(1621), + [anon_sym_var] = ACTIONS(1621), + [anon_sym_return] = ACTIONS(1621), + [anon_sym_continue] = ACTIONS(1621), + [anon_sym_break] = ACTIONS(1621), + [anon_sym_defer] = ACTIONS(1621), + [anon_sym_assert] = ACTIONS(1621), + [anon_sym_nextcase] = ACTIONS(1621), + [anon_sym_switch] = ACTIONS(1621), + [anon_sym_AMP_AMP] = ACTIONS(1623), + [anon_sym_if] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1621), + [anon_sym_foreach] = ACTIONS(1621), + [anon_sym_foreach_r] = ACTIONS(1621), + [anon_sym_while] = ACTIONS(1621), + [anon_sym_do] = ACTIONS(1621), + [anon_sym_int] = ACTIONS(1621), + [anon_sym_PLUS] = ACTIONS(1621), + [anon_sym_DASH] = ACTIONS(1621), + [anon_sym_STAR] = ACTIONS(1623), + [anon_sym_asm] = ACTIONS(1621), + [anon_sym_DOLLARassert] = ACTIONS(1621), + [anon_sym_DOLLARerror] = ACTIONS(1621), + [anon_sym_DOLLARecho] = ACTIONS(1621), + [anon_sym_DOLLARif] = ACTIONS(1621), + [anon_sym_DOLLARendif] = ACTIONS(1621), + [anon_sym_DOLLARelse] = ACTIONS(1621), + [anon_sym_DOLLARswitch] = ACTIONS(1621), + [anon_sym_DOLLARfor] = ACTIONS(1621), + [anon_sym_DOLLARforeach] = ACTIONS(1621), + [anon_sym_DOLLARalignof] = ACTIONS(1621), + [anon_sym_DOLLARextnameof] = ACTIONS(1621), + [anon_sym_DOLLARnameof] = ACTIONS(1621), + [anon_sym_DOLLARoffsetof] = ACTIONS(1621), + [anon_sym_DOLLARqnameof] = ACTIONS(1621), + [anon_sym_DOLLARvaconst] = ACTIONS(1621), + [anon_sym_DOLLARvaarg] = ACTIONS(1621), + [anon_sym_DOLLARvaref] = ACTIONS(1621), + [anon_sym_DOLLARvaexpr] = ACTIONS(1621), + [anon_sym_true] = ACTIONS(1621), + [anon_sym_false] = ACTIONS(1621), + [anon_sym_null] = ACTIONS(1621), + [anon_sym_DOLLARvacount] = ACTIONS(1621), + [anon_sym_DOLLARappend] = ACTIONS(1621), + [anon_sym_DOLLARconcat] = ACTIONS(1621), + [anon_sym_DOLLAReval] = ACTIONS(1621), + [anon_sym_DOLLARis_const] = ACTIONS(1621), + [anon_sym_DOLLARsizeof] = ACTIONS(1621), + [anon_sym_DOLLARstringify] = ACTIONS(1621), + [anon_sym_DOLLARand] = ACTIONS(1621), + [anon_sym_DOLLARdefined] = ACTIONS(1621), + [anon_sym_DOLLARembed] = ACTIONS(1621), + [anon_sym_DOLLARor] = ACTIONS(1621), + [anon_sym_DOLLARfeature] = ACTIONS(1621), + [anon_sym_DOLLARassignable] = ACTIONS(1621), + [anon_sym_BANG] = ACTIONS(1623), + [anon_sym_TILDE] = ACTIONS(1623), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_typeid] = ACTIONS(1621), + [anon_sym_LBRACE_PIPE] = ACTIONS(1623), + [anon_sym_void] = ACTIONS(1621), + [anon_sym_bool] = ACTIONS(1621), + [anon_sym_char] = ACTIONS(1621), + [anon_sym_ichar] = ACTIONS(1621), + [anon_sym_short] = ACTIONS(1621), + [anon_sym_ushort] = ACTIONS(1621), + [anon_sym_uint] = ACTIONS(1621), + [anon_sym_long] = ACTIONS(1621), + [anon_sym_ulong] = ACTIONS(1621), + [anon_sym_int128] = ACTIONS(1621), + [anon_sym_uint128] = ACTIONS(1621), + [anon_sym_float] = ACTIONS(1621), + [anon_sym_double] = ACTIONS(1621), + [anon_sym_float16] = ACTIONS(1621), + [anon_sym_bfloat16] = ACTIONS(1621), + [anon_sym_float128] = ACTIONS(1621), + [anon_sym_iptr] = ACTIONS(1621), + [anon_sym_uptr] = ACTIONS(1621), + [anon_sym_isz] = ACTIONS(1621), + [anon_sym_usz] = ACTIONS(1621), + [anon_sym_anyfault] = ACTIONS(1621), + [anon_sym_any] = ACTIONS(1621), + [anon_sym_DOLLARtypeof] = ACTIONS(1621), + [anon_sym_DOLLARtypefrom] = ACTIONS(1621), + [anon_sym_DOLLARvatype] = ACTIONS(1621), + [anon_sym_DOLLARevaltype] = ACTIONS(1621), + [sym_real_literal] = ACTIONS(1623), }, [513] = { [sym_line_comment] = STATE(513), [sym_doc_comment] = STATE(513), [sym_block_comment] = STATE(513), - [sym_ident] = ACTIONS(1496), - [sym_integer_literal] = ACTIONS(1498), - [anon_sym_SQUOTE] = ACTIONS(1498), - [anon_sym_DQUOTE] = ACTIONS(1498), - [anon_sym_BQUOTE] = ACTIONS(1498), - [sym_bytes_literal] = ACTIONS(1498), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1496), - [sym_at_ident] = ACTIONS(1498), - [sym_hash_ident] = ACTIONS(1498), - [sym_type_ident] = ACTIONS(1498), - [sym_ct_type_ident] = ACTIONS(1498), - [sym_const_ident] = ACTIONS(1496), - [sym_builtin] = ACTIONS(1498), - [anon_sym_LPAREN] = ACTIONS(1498), - [anon_sym_AMP] = ACTIONS(1496), - [anon_sym_static] = ACTIONS(1496), - [anon_sym_tlocal] = ACTIONS(1496), - [anon_sym_SEMI] = ACTIONS(1498), - [anon_sym_fn] = ACTIONS(1496), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_const] = ACTIONS(1496), - [anon_sym_var] = ACTIONS(1496), - [anon_sym_return] = ACTIONS(1496), - [anon_sym_continue] = ACTIONS(1496), - [anon_sym_break] = ACTIONS(1496), - [anon_sym_defer] = ACTIONS(1496), - [anon_sym_assert] = ACTIONS(1496), - [anon_sym_nextcase] = ACTIONS(1496), - [anon_sym_switch] = ACTIONS(1496), - [anon_sym_AMP_AMP] = ACTIONS(1498), - [anon_sym_if] = ACTIONS(1496), - [anon_sym_for] = ACTIONS(1496), - [anon_sym_foreach] = ACTIONS(1496), - [anon_sym_foreach_r] = ACTIONS(1496), - [anon_sym_while] = ACTIONS(1496), - [anon_sym_do] = ACTIONS(1496), - [anon_sym_int] = ACTIONS(1496), - [anon_sym_PLUS] = ACTIONS(1496), - [anon_sym_DASH] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(1498), - [anon_sym_asm] = ACTIONS(1496), - [anon_sym_DOLLARassert] = ACTIONS(1496), - [anon_sym_DOLLARerror] = ACTIONS(1496), - [anon_sym_DOLLARecho] = ACTIONS(1496), - [anon_sym_DOLLARif] = ACTIONS(1496), - [anon_sym_DOLLARcase] = ACTIONS(1496), - [anon_sym_DOLLARdefault] = ACTIONS(1496), - [anon_sym_DOLLARswitch] = ACTIONS(1496), - [anon_sym_DOLLARendswitch] = ACTIONS(1496), - [anon_sym_DOLLARfor] = ACTIONS(1496), - [anon_sym_DOLLARforeach] = ACTIONS(1496), - [anon_sym_DOLLARalignof] = ACTIONS(1496), - [anon_sym_DOLLARextnameof] = ACTIONS(1496), - [anon_sym_DOLLARnameof] = ACTIONS(1496), - [anon_sym_DOLLARoffsetof] = ACTIONS(1496), - [anon_sym_DOLLARqnameof] = ACTIONS(1496), - [anon_sym_DOLLARvaconst] = ACTIONS(1496), - [anon_sym_DOLLARvaarg] = ACTIONS(1496), - [anon_sym_DOLLARvaref] = ACTIONS(1496), - [anon_sym_DOLLARvaexpr] = ACTIONS(1496), - [anon_sym_true] = ACTIONS(1496), - [anon_sym_false] = ACTIONS(1496), - [anon_sym_null] = ACTIONS(1496), - [anon_sym_DOLLARvacount] = ACTIONS(1496), - [anon_sym_DOLLARappend] = ACTIONS(1496), - [anon_sym_DOLLARconcat] = ACTIONS(1496), - [anon_sym_DOLLAReval] = ACTIONS(1496), - [anon_sym_DOLLARis_const] = ACTIONS(1496), - [anon_sym_DOLLARsizeof] = ACTIONS(1496), - [anon_sym_DOLLARstringify] = ACTIONS(1496), - [anon_sym_DOLLARand] = ACTIONS(1496), - [anon_sym_DOLLARdefined] = ACTIONS(1496), - [anon_sym_DOLLARembed] = ACTIONS(1496), - [anon_sym_DOLLARor] = ACTIONS(1496), - [anon_sym_DOLLARfeature] = ACTIONS(1496), - [anon_sym_DOLLARassignable] = ACTIONS(1496), - [anon_sym_BANG] = ACTIONS(1498), - [anon_sym_TILDE] = ACTIONS(1498), - [anon_sym_PLUS_PLUS] = ACTIONS(1498), - [anon_sym_DASH_DASH] = ACTIONS(1498), - [anon_sym_typeid] = ACTIONS(1496), - [anon_sym_LBRACE_PIPE] = ACTIONS(1498), - [anon_sym_void] = ACTIONS(1496), - [anon_sym_bool] = ACTIONS(1496), - [anon_sym_char] = ACTIONS(1496), - [anon_sym_ichar] = ACTIONS(1496), - [anon_sym_short] = ACTIONS(1496), - [anon_sym_ushort] = ACTIONS(1496), - [anon_sym_uint] = ACTIONS(1496), - [anon_sym_long] = ACTIONS(1496), - [anon_sym_ulong] = ACTIONS(1496), - [anon_sym_int128] = ACTIONS(1496), - [anon_sym_uint128] = ACTIONS(1496), - [anon_sym_float] = ACTIONS(1496), - [anon_sym_double] = ACTIONS(1496), - [anon_sym_float16] = ACTIONS(1496), - [anon_sym_bfloat16] = ACTIONS(1496), - [anon_sym_float128] = ACTIONS(1496), - [anon_sym_iptr] = ACTIONS(1496), - [anon_sym_uptr] = ACTIONS(1496), - [anon_sym_isz] = ACTIONS(1496), - [anon_sym_usz] = ACTIONS(1496), - [anon_sym_anyfault] = ACTIONS(1496), - [anon_sym_any] = ACTIONS(1496), - [anon_sym_DOLLARtypeof] = ACTIONS(1496), - [anon_sym_DOLLARtypefrom] = ACTIONS(1496), - [anon_sym_DOLLARvatype] = ACTIONS(1496), - [anon_sym_DOLLARevaltype] = ACTIONS(1496), - [sym_real_literal] = ACTIONS(1498), + [sym_ident] = ACTIONS(1545), + [sym_integer_literal] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1547), + [anon_sym_DQUOTE] = ACTIONS(1547), + [anon_sym_BQUOTE] = ACTIONS(1547), + [sym_bytes_literal] = ACTIONS(1547), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1545), + [sym_at_ident] = ACTIONS(1547), + [sym_hash_ident] = ACTIONS(1547), + [sym_type_ident] = ACTIONS(1547), + [sym_ct_type_ident] = ACTIONS(1547), + [sym_const_ident] = ACTIONS(1545), + [sym_builtin] = ACTIONS(1547), + [anon_sym_LPAREN] = ACTIONS(1547), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_static] = ACTIONS(1545), + [anon_sym_tlocal] = ACTIONS(1545), + [anon_sym_SEMI] = ACTIONS(1547), + [anon_sym_fn] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(1545), + [anon_sym_const] = ACTIONS(1545), + [anon_sym_var] = ACTIONS(1545), + [anon_sym_return] = ACTIONS(1545), + [anon_sym_continue] = ACTIONS(1545), + [anon_sym_break] = ACTIONS(1545), + [anon_sym_defer] = ACTIONS(1545), + [anon_sym_assert] = ACTIONS(1545), + [anon_sym_nextcase] = ACTIONS(1545), + [anon_sym_switch] = ACTIONS(1545), + [anon_sym_AMP_AMP] = ACTIONS(1547), + [anon_sym_if] = ACTIONS(1545), + [anon_sym_for] = ACTIONS(1545), + [anon_sym_foreach] = ACTIONS(1545), + [anon_sym_foreach_r] = ACTIONS(1545), + [anon_sym_while] = ACTIONS(1545), + [anon_sym_do] = ACTIONS(1545), + [anon_sym_int] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_STAR] = ACTIONS(1547), + [anon_sym_asm] = ACTIONS(1545), + [anon_sym_DOLLARassert] = ACTIONS(1545), + [anon_sym_DOLLARerror] = ACTIONS(1545), + [anon_sym_DOLLARecho] = ACTIONS(1545), + [anon_sym_DOLLARif] = ACTIONS(1545), + [anon_sym_DOLLARendif] = ACTIONS(1545), + [anon_sym_DOLLARelse] = ACTIONS(1545), + [anon_sym_DOLLARswitch] = ACTIONS(1545), + [anon_sym_DOLLARfor] = ACTIONS(1545), + [anon_sym_DOLLARforeach] = ACTIONS(1545), + [anon_sym_DOLLARalignof] = ACTIONS(1545), + [anon_sym_DOLLARextnameof] = ACTIONS(1545), + [anon_sym_DOLLARnameof] = ACTIONS(1545), + [anon_sym_DOLLARoffsetof] = ACTIONS(1545), + [anon_sym_DOLLARqnameof] = ACTIONS(1545), + [anon_sym_DOLLARvaconst] = ACTIONS(1545), + [anon_sym_DOLLARvaarg] = ACTIONS(1545), + [anon_sym_DOLLARvaref] = ACTIONS(1545), + [anon_sym_DOLLARvaexpr] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(1545), + [anon_sym_false] = ACTIONS(1545), + [anon_sym_null] = ACTIONS(1545), + [anon_sym_DOLLARvacount] = ACTIONS(1545), + [anon_sym_DOLLARappend] = ACTIONS(1545), + [anon_sym_DOLLARconcat] = ACTIONS(1545), + [anon_sym_DOLLAReval] = ACTIONS(1545), + [anon_sym_DOLLARis_const] = ACTIONS(1545), + [anon_sym_DOLLARsizeof] = ACTIONS(1545), + [anon_sym_DOLLARstringify] = ACTIONS(1545), + [anon_sym_DOLLARand] = ACTIONS(1545), + [anon_sym_DOLLARdefined] = ACTIONS(1545), + [anon_sym_DOLLARembed] = ACTIONS(1545), + [anon_sym_DOLLARor] = ACTIONS(1545), + [anon_sym_DOLLARfeature] = ACTIONS(1545), + [anon_sym_DOLLARassignable] = ACTIONS(1545), + [anon_sym_BANG] = ACTIONS(1547), + [anon_sym_TILDE] = ACTIONS(1547), + [anon_sym_PLUS_PLUS] = ACTIONS(1547), + [anon_sym_DASH_DASH] = ACTIONS(1547), + [anon_sym_typeid] = ACTIONS(1545), + [anon_sym_LBRACE_PIPE] = ACTIONS(1547), + [anon_sym_void] = ACTIONS(1545), + [anon_sym_bool] = ACTIONS(1545), + [anon_sym_char] = ACTIONS(1545), + [anon_sym_ichar] = ACTIONS(1545), + [anon_sym_short] = ACTIONS(1545), + [anon_sym_ushort] = ACTIONS(1545), + [anon_sym_uint] = ACTIONS(1545), + [anon_sym_long] = ACTIONS(1545), + [anon_sym_ulong] = ACTIONS(1545), + [anon_sym_int128] = ACTIONS(1545), + [anon_sym_uint128] = ACTIONS(1545), + [anon_sym_float] = ACTIONS(1545), + [anon_sym_double] = ACTIONS(1545), + [anon_sym_float16] = ACTIONS(1545), + [anon_sym_bfloat16] = ACTIONS(1545), + [anon_sym_float128] = ACTIONS(1545), + [anon_sym_iptr] = ACTIONS(1545), + [anon_sym_uptr] = ACTIONS(1545), + [anon_sym_isz] = ACTIONS(1545), + [anon_sym_usz] = ACTIONS(1545), + [anon_sym_anyfault] = ACTIONS(1545), + [anon_sym_any] = ACTIONS(1545), + [anon_sym_DOLLARtypeof] = ACTIONS(1545), + [anon_sym_DOLLARtypefrom] = ACTIONS(1545), + [anon_sym_DOLLARvatype] = ACTIONS(1545), + [anon_sym_DOLLARevaltype] = ACTIONS(1545), + [sym_real_literal] = ACTIONS(1547), }, [514] = { [sym_line_comment] = STATE(514), [sym_doc_comment] = STATE(514), [sym_block_comment] = STATE(514), - [sym_ident] = ACTIONS(1414), - [sym_integer_literal] = ACTIONS(1416), - [anon_sym_SQUOTE] = ACTIONS(1416), - [anon_sym_DQUOTE] = ACTIONS(1416), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_bytes_literal] = ACTIONS(1416), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1414), - [sym_at_ident] = ACTIONS(1416), - [sym_hash_ident] = ACTIONS(1416), - [sym_type_ident] = ACTIONS(1416), - [sym_ct_type_ident] = ACTIONS(1416), - [sym_const_ident] = ACTIONS(1414), - [sym_builtin] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(1416), - [anon_sym_AMP] = ACTIONS(1414), - [anon_sym_static] = ACTIONS(1414), - [anon_sym_tlocal] = ACTIONS(1414), - [anon_sym_SEMI] = ACTIONS(1416), - [anon_sym_fn] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1414), - [anon_sym_const] = ACTIONS(1414), - [anon_sym_var] = ACTIONS(1414), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_continue] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1414), - [anon_sym_defer] = ACTIONS(1414), - [anon_sym_assert] = ACTIONS(1414), - [anon_sym_nextcase] = ACTIONS(1414), - [anon_sym_switch] = ACTIONS(1414), - [anon_sym_AMP_AMP] = ACTIONS(1416), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_for] = ACTIONS(1414), - [anon_sym_foreach] = ACTIONS(1414), - [anon_sym_foreach_r] = ACTIONS(1414), - [anon_sym_while] = ACTIONS(1414), - [anon_sym_do] = ACTIONS(1414), - [anon_sym_int] = ACTIONS(1414), - [anon_sym_PLUS] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_STAR] = ACTIONS(1416), - [anon_sym_asm] = ACTIONS(1414), - [anon_sym_DOLLARassert] = ACTIONS(1414), - [anon_sym_DOLLARerror] = ACTIONS(1414), - [anon_sym_DOLLARecho] = ACTIONS(1414), - [anon_sym_DOLLARif] = ACTIONS(1414), - [anon_sym_DOLLARcase] = ACTIONS(1414), - [anon_sym_DOLLARdefault] = ACTIONS(1414), - [anon_sym_DOLLARswitch] = ACTIONS(1414), - [anon_sym_DOLLARendswitch] = ACTIONS(1414), - [anon_sym_DOLLARfor] = ACTIONS(1414), - [anon_sym_DOLLARforeach] = ACTIONS(1414), - [anon_sym_DOLLARalignof] = ACTIONS(1414), - [anon_sym_DOLLARextnameof] = ACTIONS(1414), - [anon_sym_DOLLARnameof] = ACTIONS(1414), - [anon_sym_DOLLARoffsetof] = ACTIONS(1414), - [anon_sym_DOLLARqnameof] = ACTIONS(1414), - [anon_sym_DOLLARvaconst] = ACTIONS(1414), - [anon_sym_DOLLARvaarg] = ACTIONS(1414), - [anon_sym_DOLLARvaref] = ACTIONS(1414), - [anon_sym_DOLLARvaexpr] = ACTIONS(1414), - [anon_sym_true] = ACTIONS(1414), - [anon_sym_false] = ACTIONS(1414), - [anon_sym_null] = ACTIONS(1414), - [anon_sym_DOLLARvacount] = ACTIONS(1414), - [anon_sym_DOLLARappend] = ACTIONS(1414), - [anon_sym_DOLLARconcat] = ACTIONS(1414), - [anon_sym_DOLLAReval] = ACTIONS(1414), - [anon_sym_DOLLARis_const] = ACTIONS(1414), - [anon_sym_DOLLARsizeof] = ACTIONS(1414), - [anon_sym_DOLLARstringify] = ACTIONS(1414), - [anon_sym_DOLLARand] = ACTIONS(1414), - [anon_sym_DOLLARdefined] = ACTIONS(1414), - [anon_sym_DOLLARembed] = ACTIONS(1414), - [anon_sym_DOLLARor] = ACTIONS(1414), - [anon_sym_DOLLARfeature] = ACTIONS(1414), - [anon_sym_DOLLARassignable] = ACTIONS(1414), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1416), - [anon_sym_DASH_DASH] = ACTIONS(1416), - [anon_sym_typeid] = ACTIONS(1414), - [anon_sym_LBRACE_PIPE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1414), - [anon_sym_bool] = ACTIONS(1414), - [anon_sym_char] = ACTIONS(1414), - [anon_sym_ichar] = ACTIONS(1414), - [anon_sym_short] = ACTIONS(1414), - [anon_sym_ushort] = ACTIONS(1414), - [anon_sym_uint] = ACTIONS(1414), - [anon_sym_long] = ACTIONS(1414), - [anon_sym_ulong] = ACTIONS(1414), - [anon_sym_int128] = ACTIONS(1414), - [anon_sym_uint128] = ACTIONS(1414), - [anon_sym_float] = ACTIONS(1414), - [anon_sym_double] = ACTIONS(1414), - [anon_sym_float16] = ACTIONS(1414), - [anon_sym_bfloat16] = ACTIONS(1414), - [anon_sym_float128] = ACTIONS(1414), - [anon_sym_iptr] = ACTIONS(1414), - [anon_sym_uptr] = ACTIONS(1414), - [anon_sym_isz] = ACTIONS(1414), - [anon_sym_usz] = ACTIONS(1414), - [anon_sym_anyfault] = ACTIONS(1414), - [anon_sym_any] = ACTIONS(1414), - [anon_sym_DOLLARtypeof] = ACTIONS(1414), - [anon_sym_DOLLARtypefrom] = ACTIONS(1414), - [anon_sym_DOLLARvatype] = ACTIONS(1414), - [anon_sym_DOLLARevaltype] = ACTIONS(1414), - [sym_real_literal] = ACTIONS(1416), + [sym_ident] = ACTIONS(1597), + [sym_integer_literal] = ACTIONS(1599), + [anon_sym_SQUOTE] = ACTIONS(1599), + [anon_sym_DQUOTE] = ACTIONS(1599), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_bytes_literal] = ACTIONS(1599), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1597), + [sym_at_ident] = ACTIONS(1599), + [sym_hash_ident] = ACTIONS(1599), + [sym_type_ident] = ACTIONS(1599), + [sym_ct_type_ident] = ACTIONS(1599), + [sym_const_ident] = ACTIONS(1597), + [sym_builtin] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_AMP] = ACTIONS(1597), + [anon_sym_static] = ACTIONS(1597), + [anon_sym_tlocal] = ACTIONS(1597), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_fn] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1597), + [anon_sym_const] = ACTIONS(1597), + [anon_sym_var] = ACTIONS(1597), + [anon_sym_return] = ACTIONS(1597), + [anon_sym_continue] = ACTIONS(1597), + [anon_sym_break] = ACTIONS(1597), + [anon_sym_defer] = ACTIONS(1597), + [anon_sym_assert] = ACTIONS(1597), + [anon_sym_nextcase] = ACTIONS(1597), + [anon_sym_switch] = ACTIONS(1597), + [anon_sym_AMP_AMP] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(1597), + [anon_sym_for] = ACTIONS(1597), + [anon_sym_foreach] = ACTIONS(1597), + [anon_sym_foreach_r] = ACTIONS(1597), + [anon_sym_while] = ACTIONS(1597), + [anon_sym_do] = ACTIONS(1597), + [anon_sym_int] = ACTIONS(1597), + [anon_sym_PLUS] = ACTIONS(1597), + [anon_sym_DASH] = ACTIONS(1597), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_asm] = ACTIONS(1597), + [anon_sym_DOLLARassert] = ACTIONS(1597), + [anon_sym_DOLLARerror] = ACTIONS(1597), + [anon_sym_DOLLARecho] = ACTIONS(1597), + [anon_sym_DOLLARif] = ACTIONS(1597), + [anon_sym_DOLLARendif] = ACTIONS(1597), + [anon_sym_DOLLARelse] = ACTIONS(1597), + [anon_sym_DOLLARswitch] = ACTIONS(1597), + [anon_sym_DOLLARfor] = ACTIONS(1597), + [anon_sym_DOLLARforeach] = ACTIONS(1597), + [anon_sym_DOLLARalignof] = ACTIONS(1597), + [anon_sym_DOLLARextnameof] = ACTIONS(1597), + [anon_sym_DOLLARnameof] = ACTIONS(1597), + [anon_sym_DOLLARoffsetof] = ACTIONS(1597), + [anon_sym_DOLLARqnameof] = ACTIONS(1597), + [anon_sym_DOLLARvaconst] = ACTIONS(1597), + [anon_sym_DOLLARvaarg] = ACTIONS(1597), + [anon_sym_DOLLARvaref] = ACTIONS(1597), + [anon_sym_DOLLARvaexpr] = ACTIONS(1597), + [anon_sym_true] = ACTIONS(1597), + [anon_sym_false] = ACTIONS(1597), + [anon_sym_null] = ACTIONS(1597), + [anon_sym_DOLLARvacount] = ACTIONS(1597), + [anon_sym_DOLLARappend] = ACTIONS(1597), + [anon_sym_DOLLARconcat] = ACTIONS(1597), + [anon_sym_DOLLAReval] = ACTIONS(1597), + [anon_sym_DOLLARis_const] = ACTIONS(1597), + [anon_sym_DOLLARsizeof] = ACTIONS(1597), + [anon_sym_DOLLARstringify] = ACTIONS(1597), + [anon_sym_DOLLARand] = ACTIONS(1597), + [anon_sym_DOLLARdefined] = ACTIONS(1597), + [anon_sym_DOLLARembed] = ACTIONS(1597), + [anon_sym_DOLLARor] = ACTIONS(1597), + [anon_sym_DOLLARfeature] = ACTIONS(1597), + [anon_sym_DOLLARassignable] = ACTIONS(1597), + [anon_sym_BANG] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_DASH_DASH] = ACTIONS(1599), + [anon_sym_typeid] = ACTIONS(1597), + [anon_sym_LBRACE_PIPE] = ACTIONS(1599), + [anon_sym_void] = ACTIONS(1597), + [anon_sym_bool] = ACTIONS(1597), + [anon_sym_char] = ACTIONS(1597), + [anon_sym_ichar] = ACTIONS(1597), + [anon_sym_short] = ACTIONS(1597), + [anon_sym_ushort] = ACTIONS(1597), + [anon_sym_uint] = ACTIONS(1597), + [anon_sym_long] = ACTIONS(1597), + [anon_sym_ulong] = ACTIONS(1597), + [anon_sym_int128] = ACTIONS(1597), + [anon_sym_uint128] = ACTIONS(1597), + [anon_sym_float] = ACTIONS(1597), + [anon_sym_double] = ACTIONS(1597), + [anon_sym_float16] = ACTIONS(1597), + [anon_sym_bfloat16] = ACTIONS(1597), + [anon_sym_float128] = ACTIONS(1597), + [anon_sym_iptr] = ACTIONS(1597), + [anon_sym_uptr] = ACTIONS(1597), + [anon_sym_isz] = ACTIONS(1597), + [anon_sym_usz] = ACTIONS(1597), + [anon_sym_anyfault] = ACTIONS(1597), + [anon_sym_any] = ACTIONS(1597), + [anon_sym_DOLLARtypeof] = ACTIONS(1597), + [anon_sym_DOLLARtypefrom] = ACTIONS(1597), + [anon_sym_DOLLARvatype] = ACTIONS(1597), + [anon_sym_DOLLARevaltype] = ACTIONS(1597), + [sym_real_literal] = ACTIONS(1599), }, [515] = { [sym_line_comment] = STATE(515), [sym_doc_comment] = STATE(515), [sym_block_comment] = STATE(515), - [sym_ident] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(1606), - [anon_sym_SQUOTE] = ACTIONS(1606), - [anon_sym_DQUOTE] = ACTIONS(1606), - [anon_sym_BQUOTE] = ACTIONS(1606), - [sym_bytes_literal] = ACTIONS(1606), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1604), - [sym_at_ident] = ACTIONS(1606), - [sym_hash_ident] = ACTIONS(1606), - [sym_type_ident] = ACTIONS(1606), - [sym_ct_type_ident] = ACTIONS(1606), - [sym_const_ident] = ACTIONS(1604), - [sym_builtin] = ACTIONS(1606), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_AMP] = ACTIONS(1604), - [anon_sym_static] = ACTIONS(1604), - [anon_sym_tlocal] = ACTIONS(1604), - [anon_sym_SEMI] = ACTIONS(1606), - [anon_sym_fn] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(1604), - [anon_sym_const] = ACTIONS(1604), - [anon_sym_var] = ACTIONS(1604), - [anon_sym_return] = ACTIONS(1604), - [anon_sym_continue] = ACTIONS(1604), - [anon_sym_break] = ACTIONS(1604), - [anon_sym_defer] = ACTIONS(1604), - [anon_sym_assert] = ACTIONS(1604), - [anon_sym_nextcase] = ACTIONS(1604), - [anon_sym_switch] = ACTIONS(1604), - [anon_sym_AMP_AMP] = ACTIONS(1606), - [anon_sym_if] = ACTIONS(1604), - [anon_sym_for] = ACTIONS(1604), - [anon_sym_foreach] = ACTIONS(1604), - [anon_sym_foreach_r] = ACTIONS(1604), - [anon_sym_while] = ACTIONS(1604), - [anon_sym_do] = ACTIONS(1604), - [anon_sym_int] = ACTIONS(1604), - [anon_sym_PLUS] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1606), - [anon_sym_asm] = ACTIONS(1604), - [anon_sym_DOLLARassert] = ACTIONS(1604), - [anon_sym_DOLLARerror] = ACTIONS(1604), - [anon_sym_DOLLARecho] = ACTIONS(1604), - [anon_sym_DOLLARif] = ACTIONS(1604), - [anon_sym_DOLLARcase] = ACTIONS(1604), - [anon_sym_DOLLARdefault] = ACTIONS(1604), - [anon_sym_DOLLARswitch] = ACTIONS(1604), - [anon_sym_DOLLARendswitch] = ACTIONS(1604), - [anon_sym_DOLLARfor] = ACTIONS(1604), - [anon_sym_DOLLARforeach] = ACTIONS(1604), - [anon_sym_DOLLARalignof] = ACTIONS(1604), - [anon_sym_DOLLARextnameof] = ACTIONS(1604), - [anon_sym_DOLLARnameof] = ACTIONS(1604), - [anon_sym_DOLLARoffsetof] = ACTIONS(1604), - [anon_sym_DOLLARqnameof] = ACTIONS(1604), - [anon_sym_DOLLARvaconst] = ACTIONS(1604), - [anon_sym_DOLLARvaarg] = ACTIONS(1604), - [anon_sym_DOLLARvaref] = ACTIONS(1604), - [anon_sym_DOLLARvaexpr] = ACTIONS(1604), - [anon_sym_true] = ACTIONS(1604), - [anon_sym_false] = ACTIONS(1604), - [anon_sym_null] = ACTIONS(1604), - [anon_sym_DOLLARvacount] = ACTIONS(1604), - [anon_sym_DOLLARappend] = ACTIONS(1604), - [anon_sym_DOLLARconcat] = ACTIONS(1604), - [anon_sym_DOLLAReval] = ACTIONS(1604), - [anon_sym_DOLLARis_const] = ACTIONS(1604), - [anon_sym_DOLLARsizeof] = ACTIONS(1604), - [anon_sym_DOLLARstringify] = ACTIONS(1604), - [anon_sym_DOLLARand] = ACTIONS(1604), - [anon_sym_DOLLARdefined] = ACTIONS(1604), - [anon_sym_DOLLARembed] = ACTIONS(1604), - [anon_sym_DOLLARor] = ACTIONS(1604), - [anon_sym_DOLLARfeature] = ACTIONS(1604), - [anon_sym_DOLLARassignable] = ACTIONS(1604), - [anon_sym_BANG] = ACTIONS(1606), - [anon_sym_TILDE] = ACTIONS(1606), - [anon_sym_PLUS_PLUS] = ACTIONS(1606), - [anon_sym_DASH_DASH] = ACTIONS(1606), - [anon_sym_typeid] = ACTIONS(1604), - [anon_sym_LBRACE_PIPE] = ACTIONS(1606), - [anon_sym_void] = ACTIONS(1604), - [anon_sym_bool] = ACTIONS(1604), - [anon_sym_char] = ACTIONS(1604), - [anon_sym_ichar] = ACTIONS(1604), - [anon_sym_short] = ACTIONS(1604), - [anon_sym_ushort] = ACTIONS(1604), - [anon_sym_uint] = ACTIONS(1604), - [anon_sym_long] = ACTIONS(1604), - [anon_sym_ulong] = ACTIONS(1604), - [anon_sym_int128] = ACTIONS(1604), - [anon_sym_uint128] = ACTIONS(1604), - [anon_sym_float] = ACTIONS(1604), - [anon_sym_double] = ACTIONS(1604), - [anon_sym_float16] = ACTIONS(1604), - [anon_sym_bfloat16] = ACTIONS(1604), - [anon_sym_float128] = ACTIONS(1604), - [anon_sym_iptr] = ACTIONS(1604), - [anon_sym_uptr] = ACTIONS(1604), - [anon_sym_isz] = ACTIONS(1604), - [anon_sym_usz] = ACTIONS(1604), - [anon_sym_anyfault] = ACTIONS(1604), - [anon_sym_any] = ACTIONS(1604), - [anon_sym_DOLLARtypeof] = ACTIONS(1604), - [anon_sym_DOLLARtypefrom] = ACTIONS(1604), - [anon_sym_DOLLARvatype] = ACTIONS(1604), - [anon_sym_DOLLARevaltype] = ACTIONS(1604), - [sym_real_literal] = ACTIONS(1606), + [sym_ident] = ACTIONS(1647), + [sym_integer_literal] = ACTIONS(1649), + [anon_sym_SQUOTE] = ACTIONS(1649), + [anon_sym_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1649), + [sym_bytes_literal] = ACTIONS(1649), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1647), + [sym_at_ident] = ACTIONS(1649), + [sym_hash_ident] = ACTIONS(1649), + [sym_type_ident] = ACTIONS(1649), + [sym_ct_type_ident] = ACTIONS(1649), + [sym_const_ident] = ACTIONS(1647), + [sym_builtin] = ACTIONS(1649), + [anon_sym_LPAREN] = ACTIONS(1649), + [anon_sym_AMP] = ACTIONS(1647), + [anon_sym_static] = ACTIONS(1647), + [anon_sym_tlocal] = ACTIONS(1647), + [anon_sym_SEMI] = ACTIONS(1649), + [anon_sym_fn] = ACTIONS(1647), + [anon_sym_LBRACE] = ACTIONS(1647), + [anon_sym_const] = ACTIONS(1647), + [anon_sym_var] = ACTIONS(1647), + [anon_sym_return] = ACTIONS(1647), + [anon_sym_continue] = ACTIONS(1647), + [anon_sym_break] = ACTIONS(1647), + [anon_sym_defer] = ACTIONS(1647), + [anon_sym_assert] = ACTIONS(1647), + [anon_sym_nextcase] = ACTIONS(1647), + [anon_sym_switch] = ACTIONS(1647), + [anon_sym_AMP_AMP] = ACTIONS(1649), + [anon_sym_if] = ACTIONS(1647), + [anon_sym_for] = ACTIONS(1647), + [anon_sym_foreach] = ACTIONS(1647), + [anon_sym_foreach_r] = ACTIONS(1647), + [anon_sym_while] = ACTIONS(1647), + [anon_sym_do] = ACTIONS(1647), + [anon_sym_int] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_STAR] = ACTIONS(1649), + [anon_sym_asm] = ACTIONS(1647), + [anon_sym_DOLLARassert] = ACTIONS(1647), + [anon_sym_DOLLARerror] = ACTIONS(1647), + [anon_sym_DOLLARecho] = ACTIONS(1647), + [anon_sym_DOLLARif] = ACTIONS(1647), + [anon_sym_DOLLARendif] = ACTIONS(1647), + [anon_sym_DOLLARelse] = ACTIONS(1647), + [anon_sym_DOLLARswitch] = ACTIONS(1647), + [anon_sym_DOLLARfor] = ACTIONS(1647), + [anon_sym_DOLLARforeach] = ACTIONS(1647), + [anon_sym_DOLLARalignof] = ACTIONS(1647), + [anon_sym_DOLLARextnameof] = ACTIONS(1647), + [anon_sym_DOLLARnameof] = ACTIONS(1647), + [anon_sym_DOLLARoffsetof] = ACTIONS(1647), + [anon_sym_DOLLARqnameof] = ACTIONS(1647), + [anon_sym_DOLLARvaconst] = ACTIONS(1647), + [anon_sym_DOLLARvaarg] = ACTIONS(1647), + [anon_sym_DOLLARvaref] = ACTIONS(1647), + [anon_sym_DOLLARvaexpr] = ACTIONS(1647), + [anon_sym_true] = ACTIONS(1647), + [anon_sym_false] = ACTIONS(1647), + [anon_sym_null] = ACTIONS(1647), + [anon_sym_DOLLARvacount] = ACTIONS(1647), + [anon_sym_DOLLARappend] = ACTIONS(1647), + [anon_sym_DOLLARconcat] = ACTIONS(1647), + [anon_sym_DOLLAReval] = ACTIONS(1647), + [anon_sym_DOLLARis_const] = ACTIONS(1647), + [anon_sym_DOLLARsizeof] = ACTIONS(1647), + [anon_sym_DOLLARstringify] = ACTIONS(1647), + [anon_sym_DOLLARand] = ACTIONS(1647), + [anon_sym_DOLLARdefined] = ACTIONS(1647), + [anon_sym_DOLLARembed] = ACTIONS(1647), + [anon_sym_DOLLARor] = ACTIONS(1647), + [anon_sym_DOLLARfeature] = ACTIONS(1647), + [anon_sym_DOLLARassignable] = ACTIONS(1647), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_TILDE] = ACTIONS(1649), + [anon_sym_PLUS_PLUS] = ACTIONS(1649), + [anon_sym_DASH_DASH] = ACTIONS(1649), + [anon_sym_typeid] = ACTIONS(1647), + [anon_sym_LBRACE_PIPE] = ACTIONS(1649), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_bool] = ACTIONS(1647), + [anon_sym_char] = ACTIONS(1647), + [anon_sym_ichar] = ACTIONS(1647), + [anon_sym_short] = ACTIONS(1647), + [anon_sym_ushort] = ACTIONS(1647), + [anon_sym_uint] = ACTIONS(1647), + [anon_sym_long] = ACTIONS(1647), + [anon_sym_ulong] = ACTIONS(1647), + [anon_sym_int128] = ACTIONS(1647), + [anon_sym_uint128] = ACTIONS(1647), + [anon_sym_float] = ACTIONS(1647), + [anon_sym_double] = ACTIONS(1647), + [anon_sym_float16] = ACTIONS(1647), + [anon_sym_bfloat16] = ACTIONS(1647), + [anon_sym_float128] = ACTIONS(1647), + [anon_sym_iptr] = ACTIONS(1647), + [anon_sym_uptr] = ACTIONS(1647), + [anon_sym_isz] = ACTIONS(1647), + [anon_sym_usz] = ACTIONS(1647), + [anon_sym_anyfault] = ACTIONS(1647), + [anon_sym_any] = ACTIONS(1647), + [anon_sym_DOLLARtypeof] = ACTIONS(1647), + [anon_sym_DOLLARtypefrom] = ACTIONS(1647), + [anon_sym_DOLLARvatype] = ACTIONS(1647), + [anon_sym_DOLLARevaltype] = ACTIONS(1647), + [sym_real_literal] = ACTIONS(1649), }, [516] = { [sym_line_comment] = STATE(516), [sym_doc_comment] = STATE(516), [sym_block_comment] = STATE(516), - [sym_ident] = ACTIONS(1390), - [sym_integer_literal] = ACTIONS(1392), - [anon_sym_SQUOTE] = ACTIONS(1392), - [anon_sym_DQUOTE] = ACTIONS(1392), - [anon_sym_BQUOTE] = ACTIONS(1392), - [sym_bytes_literal] = ACTIONS(1392), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1390), - [sym_at_ident] = ACTIONS(1392), - [sym_hash_ident] = ACTIONS(1392), - [sym_type_ident] = ACTIONS(1392), - [sym_ct_type_ident] = ACTIONS(1392), - [sym_const_ident] = ACTIONS(1390), - [sym_builtin] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1392), - [anon_sym_AMP] = ACTIONS(1390), - [anon_sym_static] = ACTIONS(1390), - [anon_sym_tlocal] = ACTIONS(1390), - [anon_sym_SEMI] = ACTIONS(1392), - [anon_sym_fn] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1390), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_var] = ACTIONS(1390), - [anon_sym_return] = ACTIONS(1390), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_break] = ACTIONS(1390), - [anon_sym_defer] = ACTIONS(1390), - [anon_sym_assert] = ACTIONS(1390), - [anon_sym_nextcase] = ACTIONS(1390), - [anon_sym_switch] = ACTIONS(1390), - [anon_sym_AMP_AMP] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1390), - [anon_sym_for] = ACTIONS(1390), - [anon_sym_foreach] = ACTIONS(1390), - [anon_sym_foreach_r] = ACTIONS(1390), - [anon_sym_while] = ACTIONS(1390), - [anon_sym_do] = ACTIONS(1390), - [anon_sym_int] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1390), - [anon_sym_DASH] = ACTIONS(1390), - [anon_sym_STAR] = ACTIONS(1392), - [anon_sym_asm] = ACTIONS(1390), - [anon_sym_DOLLARassert] = ACTIONS(1390), - [anon_sym_DOLLARerror] = ACTIONS(1390), - [anon_sym_DOLLARecho] = ACTIONS(1390), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_DOLLARcase] = ACTIONS(1390), - [anon_sym_DOLLARdefault] = ACTIONS(1390), - [anon_sym_DOLLARswitch] = ACTIONS(1390), - [anon_sym_DOLLARendswitch] = ACTIONS(1390), - [anon_sym_DOLLARfor] = ACTIONS(1390), - [anon_sym_DOLLARforeach] = ACTIONS(1390), - [anon_sym_DOLLARalignof] = ACTIONS(1390), - [anon_sym_DOLLARextnameof] = ACTIONS(1390), - [anon_sym_DOLLARnameof] = ACTIONS(1390), - [anon_sym_DOLLARoffsetof] = ACTIONS(1390), - [anon_sym_DOLLARqnameof] = ACTIONS(1390), - [anon_sym_DOLLARvaconst] = ACTIONS(1390), - [anon_sym_DOLLARvaarg] = ACTIONS(1390), - [anon_sym_DOLLARvaref] = ACTIONS(1390), - [anon_sym_DOLLARvaexpr] = ACTIONS(1390), - [anon_sym_true] = ACTIONS(1390), - [anon_sym_false] = ACTIONS(1390), - [anon_sym_null] = ACTIONS(1390), - [anon_sym_DOLLARvacount] = ACTIONS(1390), - [anon_sym_DOLLARappend] = ACTIONS(1390), - [anon_sym_DOLLARconcat] = ACTIONS(1390), - [anon_sym_DOLLAReval] = ACTIONS(1390), - [anon_sym_DOLLARis_const] = ACTIONS(1390), - [anon_sym_DOLLARsizeof] = ACTIONS(1390), - [anon_sym_DOLLARstringify] = ACTIONS(1390), - [anon_sym_DOLLARand] = ACTIONS(1390), - [anon_sym_DOLLARdefined] = ACTIONS(1390), - [anon_sym_DOLLARembed] = ACTIONS(1390), - [anon_sym_DOLLARor] = ACTIONS(1390), - [anon_sym_DOLLARfeature] = ACTIONS(1390), - [anon_sym_DOLLARassignable] = ACTIONS(1390), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_PLUS_PLUS] = ACTIONS(1392), - [anon_sym_DASH_DASH] = ACTIONS(1392), - [anon_sym_typeid] = ACTIONS(1390), - [anon_sym_LBRACE_PIPE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1390), - [anon_sym_bool] = ACTIONS(1390), - [anon_sym_char] = ACTIONS(1390), - [anon_sym_ichar] = ACTIONS(1390), - [anon_sym_short] = ACTIONS(1390), - [anon_sym_ushort] = ACTIONS(1390), - [anon_sym_uint] = ACTIONS(1390), - [anon_sym_long] = ACTIONS(1390), - [anon_sym_ulong] = ACTIONS(1390), - [anon_sym_int128] = ACTIONS(1390), - [anon_sym_uint128] = ACTIONS(1390), - [anon_sym_float] = ACTIONS(1390), - [anon_sym_double] = ACTIONS(1390), - [anon_sym_float16] = ACTIONS(1390), - [anon_sym_bfloat16] = ACTIONS(1390), - [anon_sym_float128] = ACTIONS(1390), - [anon_sym_iptr] = ACTIONS(1390), - [anon_sym_uptr] = ACTIONS(1390), - [anon_sym_isz] = ACTIONS(1390), - [anon_sym_usz] = ACTIONS(1390), - [anon_sym_anyfault] = ACTIONS(1390), - [anon_sym_any] = ACTIONS(1390), - [anon_sym_DOLLARtypeof] = ACTIONS(1390), - [anon_sym_DOLLARtypefrom] = ACTIONS(1390), - [anon_sym_DOLLARvatype] = ACTIONS(1390), - [anon_sym_DOLLARevaltype] = ACTIONS(1390), - [sym_real_literal] = ACTIONS(1392), + [sym_ident] = ACTIONS(1423), + [sym_integer_literal] = ACTIONS(1425), + [anon_sym_SQUOTE] = ACTIONS(1425), + [anon_sym_DQUOTE] = ACTIONS(1425), + [anon_sym_BQUOTE] = ACTIONS(1425), + [sym_bytes_literal] = ACTIONS(1425), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1423), + [sym_at_ident] = ACTIONS(1425), + [sym_hash_ident] = ACTIONS(1425), + [sym_type_ident] = ACTIONS(1425), + [sym_ct_type_ident] = ACTIONS(1425), + [sym_const_ident] = ACTIONS(1423), + [sym_builtin] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1423), + [anon_sym_static] = ACTIONS(1423), + [anon_sym_tlocal] = ACTIONS(1423), + [anon_sym_SEMI] = ACTIONS(1425), + [anon_sym_fn] = ACTIONS(1423), + [anon_sym_LBRACE] = ACTIONS(1423), + [anon_sym_const] = ACTIONS(1423), + [anon_sym_var] = ACTIONS(1423), + [anon_sym_return] = ACTIONS(1423), + [anon_sym_continue] = ACTIONS(1423), + [anon_sym_break] = ACTIONS(1423), + [anon_sym_defer] = ACTIONS(1423), + [anon_sym_assert] = ACTIONS(1423), + [anon_sym_nextcase] = ACTIONS(1423), + [anon_sym_switch] = ACTIONS(1423), + [anon_sym_AMP_AMP] = ACTIONS(1425), + [anon_sym_if] = ACTIONS(1423), + [anon_sym_for] = ACTIONS(1423), + [anon_sym_foreach] = ACTIONS(1423), + [anon_sym_foreach_r] = ACTIONS(1423), + [anon_sym_while] = ACTIONS(1423), + [anon_sym_do] = ACTIONS(1423), + [anon_sym_int] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_asm] = ACTIONS(1423), + [anon_sym_DOLLARassert] = ACTIONS(1423), + [anon_sym_DOLLARerror] = ACTIONS(1423), + [anon_sym_DOLLARecho] = ACTIONS(1423), + [anon_sym_DOLLARif] = ACTIONS(1423), + [anon_sym_DOLLARendif] = ACTIONS(1423), + [anon_sym_DOLLARelse] = ACTIONS(1423), + [anon_sym_DOLLARswitch] = ACTIONS(1423), + [anon_sym_DOLLARfor] = ACTIONS(1423), + [anon_sym_DOLLARforeach] = ACTIONS(1423), + [anon_sym_DOLLARalignof] = ACTIONS(1423), + [anon_sym_DOLLARextnameof] = ACTIONS(1423), + [anon_sym_DOLLARnameof] = ACTIONS(1423), + [anon_sym_DOLLARoffsetof] = ACTIONS(1423), + [anon_sym_DOLLARqnameof] = ACTIONS(1423), + [anon_sym_DOLLARvaconst] = ACTIONS(1423), + [anon_sym_DOLLARvaarg] = ACTIONS(1423), + [anon_sym_DOLLARvaref] = ACTIONS(1423), + [anon_sym_DOLLARvaexpr] = ACTIONS(1423), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_null] = ACTIONS(1423), + [anon_sym_DOLLARvacount] = ACTIONS(1423), + [anon_sym_DOLLARappend] = ACTIONS(1423), + [anon_sym_DOLLARconcat] = ACTIONS(1423), + [anon_sym_DOLLAReval] = ACTIONS(1423), + [anon_sym_DOLLARis_const] = ACTIONS(1423), + [anon_sym_DOLLARsizeof] = ACTIONS(1423), + [anon_sym_DOLLARstringify] = ACTIONS(1423), + [anon_sym_DOLLARand] = ACTIONS(1423), + [anon_sym_DOLLARdefined] = ACTIONS(1423), + [anon_sym_DOLLARembed] = ACTIONS(1423), + [anon_sym_DOLLARor] = ACTIONS(1423), + [anon_sym_DOLLARfeature] = ACTIONS(1423), + [anon_sym_DOLLARassignable] = ACTIONS(1423), + [anon_sym_BANG] = ACTIONS(1425), + [anon_sym_TILDE] = ACTIONS(1425), + [anon_sym_PLUS_PLUS] = ACTIONS(1425), + [anon_sym_DASH_DASH] = ACTIONS(1425), + [anon_sym_typeid] = ACTIONS(1423), + [anon_sym_LBRACE_PIPE] = ACTIONS(1425), + [anon_sym_void] = ACTIONS(1423), + [anon_sym_bool] = ACTIONS(1423), + [anon_sym_char] = ACTIONS(1423), + [anon_sym_ichar] = ACTIONS(1423), + [anon_sym_short] = ACTIONS(1423), + [anon_sym_ushort] = ACTIONS(1423), + [anon_sym_uint] = ACTIONS(1423), + [anon_sym_long] = ACTIONS(1423), + [anon_sym_ulong] = ACTIONS(1423), + [anon_sym_int128] = ACTIONS(1423), + [anon_sym_uint128] = ACTIONS(1423), + [anon_sym_float] = ACTIONS(1423), + [anon_sym_double] = ACTIONS(1423), + [anon_sym_float16] = ACTIONS(1423), + [anon_sym_bfloat16] = ACTIONS(1423), + [anon_sym_float128] = ACTIONS(1423), + [anon_sym_iptr] = ACTIONS(1423), + [anon_sym_uptr] = ACTIONS(1423), + [anon_sym_isz] = ACTIONS(1423), + [anon_sym_usz] = ACTIONS(1423), + [anon_sym_anyfault] = ACTIONS(1423), + [anon_sym_any] = ACTIONS(1423), + [anon_sym_DOLLARtypeof] = ACTIONS(1423), + [anon_sym_DOLLARtypefrom] = ACTIONS(1423), + [anon_sym_DOLLARvatype] = ACTIONS(1423), + [anon_sym_DOLLARevaltype] = ACTIONS(1423), + [sym_real_literal] = ACTIONS(1425), }, [517] = { [sym_line_comment] = STATE(517), [sym_doc_comment] = STATE(517), [sym_block_comment] = STATE(517), - [sym_else_part] = STATE(790), - [sym_ident] = ACTIONS(1370), - [sym_integer_literal] = ACTIONS(1372), - [anon_sym_SQUOTE] = ACTIONS(1372), - [anon_sym_DQUOTE] = ACTIONS(1372), - [anon_sym_BQUOTE] = ACTIONS(1372), - [sym_bytes_literal] = ACTIONS(1372), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1370), - [sym_at_ident] = ACTIONS(1372), - [sym_hash_ident] = ACTIONS(1372), - [sym_type_ident] = ACTIONS(1372), - [sym_ct_type_ident] = ACTIONS(1372), - [sym_const_ident] = ACTIONS(1370), - [sym_builtin] = ACTIONS(1372), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_AMP] = ACTIONS(1370), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_tlocal] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_const] = ACTIONS(1370), - [anon_sym_var] = ACTIONS(1370), - [anon_sym_return] = ACTIONS(1370), - [anon_sym_continue] = ACTIONS(1370), - [anon_sym_break] = ACTIONS(1370), - [anon_sym_defer] = ACTIONS(1370), - [anon_sym_assert] = ACTIONS(1370), - [anon_sym_nextcase] = ACTIONS(1370), - [anon_sym_switch] = ACTIONS(1370), - [anon_sym_AMP_AMP] = ACTIONS(1372), - [anon_sym_if] = ACTIONS(1370), - [anon_sym_else] = ACTIONS(1670), - [anon_sym_for] = ACTIONS(1370), - [anon_sym_foreach] = ACTIONS(1370), - [anon_sym_foreach_r] = ACTIONS(1370), - [anon_sym_while] = ACTIONS(1370), - [anon_sym_do] = ACTIONS(1370), - [anon_sym_int] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_asm] = ACTIONS(1370), - [anon_sym_DOLLARassert] = ACTIONS(1370), - [anon_sym_DOLLARerror] = ACTIONS(1370), - [anon_sym_DOLLARecho] = ACTIONS(1370), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_DOLLARendif] = ACTIONS(1370), - [anon_sym_DOLLARswitch] = ACTIONS(1370), - [anon_sym_DOLLARfor] = ACTIONS(1370), - [anon_sym_DOLLARforeach] = ACTIONS(1370), - [anon_sym_DOLLARalignof] = ACTIONS(1370), - [anon_sym_DOLLARextnameof] = ACTIONS(1370), - [anon_sym_DOLLARnameof] = ACTIONS(1370), - [anon_sym_DOLLARoffsetof] = ACTIONS(1370), - [anon_sym_DOLLARqnameof] = ACTIONS(1370), - [anon_sym_DOLLARvaconst] = ACTIONS(1370), - [anon_sym_DOLLARvaarg] = ACTIONS(1370), - [anon_sym_DOLLARvaref] = ACTIONS(1370), - [anon_sym_DOLLARvaexpr] = ACTIONS(1370), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [anon_sym_null] = ACTIONS(1370), - [anon_sym_DOLLARvacount] = ACTIONS(1370), - [anon_sym_DOLLARappend] = ACTIONS(1370), - [anon_sym_DOLLARconcat] = ACTIONS(1370), - [anon_sym_DOLLAReval] = ACTIONS(1370), - [anon_sym_DOLLARis_const] = ACTIONS(1370), - [anon_sym_DOLLARsizeof] = ACTIONS(1370), - [anon_sym_DOLLARstringify] = ACTIONS(1370), - [anon_sym_DOLLARand] = ACTIONS(1370), - [anon_sym_DOLLARdefined] = ACTIONS(1370), - [anon_sym_DOLLARembed] = ACTIONS(1370), - [anon_sym_DOLLARor] = ACTIONS(1370), - [anon_sym_DOLLARfeature] = ACTIONS(1370), - [anon_sym_DOLLARassignable] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_TILDE] = ACTIONS(1372), - [anon_sym_PLUS_PLUS] = ACTIONS(1372), - [anon_sym_DASH_DASH] = ACTIONS(1372), - [anon_sym_typeid] = ACTIONS(1370), - [anon_sym_LBRACE_PIPE] = ACTIONS(1372), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_bool] = ACTIONS(1370), - [anon_sym_char] = ACTIONS(1370), - [anon_sym_ichar] = ACTIONS(1370), - [anon_sym_short] = ACTIONS(1370), - [anon_sym_ushort] = ACTIONS(1370), - [anon_sym_uint] = ACTIONS(1370), - [anon_sym_long] = ACTIONS(1370), - [anon_sym_ulong] = ACTIONS(1370), - [anon_sym_int128] = ACTIONS(1370), - [anon_sym_uint128] = ACTIONS(1370), - [anon_sym_float] = ACTIONS(1370), - [anon_sym_double] = ACTIONS(1370), - [anon_sym_float16] = ACTIONS(1370), - [anon_sym_bfloat16] = ACTIONS(1370), - [anon_sym_float128] = ACTIONS(1370), - [anon_sym_iptr] = ACTIONS(1370), - [anon_sym_uptr] = ACTIONS(1370), - [anon_sym_isz] = ACTIONS(1370), - [anon_sym_usz] = ACTIONS(1370), - [anon_sym_anyfault] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_DOLLARtypeof] = ACTIONS(1370), - [anon_sym_DOLLARtypefrom] = ACTIONS(1370), - [anon_sym_DOLLARvatype] = ACTIONS(1370), - [anon_sym_DOLLARevaltype] = ACTIONS(1370), - [sym_real_literal] = ACTIONS(1372), + [sym_ident] = ACTIONS(1441), + [sym_integer_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1443), + [anon_sym_DQUOTE] = ACTIONS(1443), + [anon_sym_BQUOTE] = ACTIONS(1443), + [sym_bytes_literal] = ACTIONS(1443), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1441), + [sym_at_ident] = ACTIONS(1443), + [sym_hash_ident] = ACTIONS(1443), + [sym_type_ident] = ACTIONS(1443), + [sym_ct_type_ident] = ACTIONS(1443), + [sym_const_ident] = ACTIONS(1441), + [sym_builtin] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_tlocal] = ACTIONS(1441), + [anon_sym_SEMI] = ACTIONS(1443), + [anon_sym_fn] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1441), + [anon_sym_const] = ACTIONS(1441), + [anon_sym_var] = ACTIONS(1441), + [anon_sym_return] = ACTIONS(1441), + [anon_sym_continue] = ACTIONS(1441), + [anon_sym_break] = ACTIONS(1441), + [anon_sym_defer] = ACTIONS(1441), + [anon_sym_assert] = ACTIONS(1441), + [anon_sym_nextcase] = ACTIONS(1441), + [anon_sym_switch] = ACTIONS(1441), + [anon_sym_AMP_AMP] = ACTIONS(1443), + [anon_sym_if] = ACTIONS(1441), + [anon_sym_for] = ACTIONS(1441), + [anon_sym_foreach] = ACTIONS(1441), + [anon_sym_foreach_r] = ACTIONS(1441), + [anon_sym_while] = ACTIONS(1441), + [anon_sym_do] = ACTIONS(1441), + [anon_sym_int] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1441), + [anon_sym_DASH] = ACTIONS(1441), + [anon_sym_STAR] = ACTIONS(1443), + [anon_sym_asm] = ACTIONS(1441), + [anon_sym_DOLLARassert] = ACTIONS(1441), + [anon_sym_DOLLARerror] = ACTIONS(1441), + [anon_sym_DOLLARecho] = ACTIONS(1441), + [anon_sym_DOLLARif] = ACTIONS(1441), + [anon_sym_DOLLARendif] = ACTIONS(1441), + [anon_sym_DOLLARelse] = ACTIONS(1441), + [anon_sym_DOLLARswitch] = ACTIONS(1441), + [anon_sym_DOLLARfor] = ACTIONS(1441), + [anon_sym_DOLLARforeach] = ACTIONS(1441), + [anon_sym_DOLLARalignof] = ACTIONS(1441), + [anon_sym_DOLLARextnameof] = ACTIONS(1441), + [anon_sym_DOLLARnameof] = ACTIONS(1441), + [anon_sym_DOLLARoffsetof] = ACTIONS(1441), + [anon_sym_DOLLARqnameof] = ACTIONS(1441), + [anon_sym_DOLLARvaconst] = ACTIONS(1441), + [anon_sym_DOLLARvaarg] = ACTIONS(1441), + [anon_sym_DOLLARvaref] = ACTIONS(1441), + [anon_sym_DOLLARvaexpr] = ACTIONS(1441), + [anon_sym_true] = ACTIONS(1441), + [anon_sym_false] = ACTIONS(1441), + [anon_sym_null] = ACTIONS(1441), + [anon_sym_DOLLARvacount] = ACTIONS(1441), + [anon_sym_DOLLARappend] = ACTIONS(1441), + [anon_sym_DOLLARconcat] = ACTIONS(1441), + [anon_sym_DOLLAReval] = ACTIONS(1441), + [anon_sym_DOLLARis_const] = ACTIONS(1441), + [anon_sym_DOLLARsizeof] = ACTIONS(1441), + [anon_sym_DOLLARstringify] = ACTIONS(1441), + [anon_sym_DOLLARand] = ACTIONS(1441), + [anon_sym_DOLLARdefined] = ACTIONS(1441), + [anon_sym_DOLLARembed] = ACTIONS(1441), + [anon_sym_DOLLARor] = ACTIONS(1441), + [anon_sym_DOLLARfeature] = ACTIONS(1441), + [anon_sym_DOLLARassignable] = ACTIONS(1441), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_TILDE] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(1443), + [anon_sym_DASH_DASH] = ACTIONS(1443), + [anon_sym_typeid] = ACTIONS(1441), + [anon_sym_LBRACE_PIPE] = ACTIONS(1443), + [anon_sym_void] = ACTIONS(1441), + [anon_sym_bool] = ACTIONS(1441), + [anon_sym_char] = ACTIONS(1441), + [anon_sym_ichar] = ACTIONS(1441), + [anon_sym_short] = ACTIONS(1441), + [anon_sym_ushort] = ACTIONS(1441), + [anon_sym_uint] = ACTIONS(1441), + [anon_sym_long] = ACTIONS(1441), + [anon_sym_ulong] = ACTIONS(1441), + [anon_sym_int128] = ACTIONS(1441), + [anon_sym_uint128] = ACTIONS(1441), + [anon_sym_float] = ACTIONS(1441), + [anon_sym_double] = ACTIONS(1441), + [anon_sym_float16] = ACTIONS(1441), + [anon_sym_bfloat16] = ACTIONS(1441), + [anon_sym_float128] = ACTIONS(1441), + [anon_sym_iptr] = ACTIONS(1441), + [anon_sym_uptr] = ACTIONS(1441), + [anon_sym_isz] = ACTIONS(1441), + [anon_sym_usz] = ACTIONS(1441), + [anon_sym_anyfault] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_DOLLARtypeof] = ACTIONS(1441), + [anon_sym_DOLLARtypefrom] = ACTIONS(1441), + [anon_sym_DOLLARvatype] = ACTIONS(1441), + [anon_sym_DOLLARevaltype] = ACTIONS(1441), + [sym_real_literal] = ACTIONS(1443), }, [518] = { [sym_line_comment] = STATE(518), [sym_doc_comment] = STATE(518), [sym_block_comment] = STATE(518), - [sym_ident] = ACTIONS(1418), - [sym_integer_literal] = ACTIONS(1420), - [anon_sym_SQUOTE] = ACTIONS(1420), - [anon_sym_DQUOTE] = ACTIONS(1420), - [anon_sym_BQUOTE] = ACTIONS(1420), - [sym_bytes_literal] = ACTIONS(1420), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1418), - [sym_at_ident] = ACTIONS(1420), - [sym_hash_ident] = ACTIONS(1420), - [sym_type_ident] = ACTIONS(1420), - [sym_ct_type_ident] = ACTIONS(1420), - [sym_const_ident] = ACTIONS(1418), - [sym_builtin] = ACTIONS(1420), - [anon_sym_LPAREN] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_static] = ACTIONS(1418), - [anon_sym_tlocal] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym_fn] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_const] = ACTIONS(1418), - [anon_sym_var] = ACTIONS(1418), - [anon_sym_return] = ACTIONS(1418), - [anon_sym_continue] = ACTIONS(1418), - [anon_sym_break] = ACTIONS(1418), - [anon_sym_defer] = ACTIONS(1418), - [anon_sym_assert] = ACTIONS(1418), - [anon_sym_nextcase] = ACTIONS(1418), - [anon_sym_switch] = ACTIONS(1418), - [anon_sym_AMP_AMP] = ACTIONS(1420), - [anon_sym_if] = ACTIONS(1418), - [anon_sym_for] = ACTIONS(1418), - [anon_sym_foreach] = ACTIONS(1418), - [anon_sym_foreach_r] = ACTIONS(1418), - [anon_sym_while] = ACTIONS(1418), - [anon_sym_do] = ACTIONS(1418), - [anon_sym_int] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_asm] = ACTIONS(1418), - [anon_sym_DOLLARassert] = ACTIONS(1418), - [anon_sym_DOLLARerror] = ACTIONS(1418), - [anon_sym_DOLLARecho] = ACTIONS(1418), - [anon_sym_DOLLARif] = ACTIONS(1418), - [anon_sym_DOLLARcase] = ACTIONS(1418), - [anon_sym_DOLLARdefault] = ACTIONS(1418), - [anon_sym_DOLLARswitch] = ACTIONS(1418), - [anon_sym_DOLLARendswitch] = ACTIONS(1418), - [anon_sym_DOLLARfor] = ACTIONS(1418), - [anon_sym_DOLLARforeach] = ACTIONS(1418), - [anon_sym_DOLLARalignof] = ACTIONS(1418), - [anon_sym_DOLLARextnameof] = ACTIONS(1418), - [anon_sym_DOLLARnameof] = ACTIONS(1418), - [anon_sym_DOLLARoffsetof] = ACTIONS(1418), - [anon_sym_DOLLARqnameof] = ACTIONS(1418), - [anon_sym_DOLLARvaconst] = ACTIONS(1418), - [anon_sym_DOLLARvaarg] = ACTIONS(1418), - [anon_sym_DOLLARvaref] = ACTIONS(1418), - [anon_sym_DOLLARvaexpr] = ACTIONS(1418), - [anon_sym_true] = ACTIONS(1418), - [anon_sym_false] = ACTIONS(1418), - [anon_sym_null] = ACTIONS(1418), - [anon_sym_DOLLARvacount] = ACTIONS(1418), - [anon_sym_DOLLARappend] = ACTIONS(1418), - [anon_sym_DOLLARconcat] = ACTIONS(1418), - [anon_sym_DOLLAReval] = ACTIONS(1418), - [anon_sym_DOLLARis_const] = ACTIONS(1418), - [anon_sym_DOLLARsizeof] = ACTIONS(1418), - [anon_sym_DOLLARstringify] = ACTIONS(1418), - [anon_sym_DOLLARand] = ACTIONS(1418), - [anon_sym_DOLLARdefined] = ACTIONS(1418), - [anon_sym_DOLLARembed] = ACTIONS(1418), - [anon_sym_DOLLARor] = ACTIONS(1418), - [anon_sym_DOLLARfeature] = ACTIONS(1418), - [anon_sym_DOLLARassignable] = ACTIONS(1418), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_TILDE] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_typeid] = ACTIONS(1418), - [anon_sym_LBRACE_PIPE] = ACTIONS(1420), - [anon_sym_void] = ACTIONS(1418), - [anon_sym_bool] = ACTIONS(1418), - [anon_sym_char] = ACTIONS(1418), - [anon_sym_ichar] = ACTIONS(1418), - [anon_sym_short] = ACTIONS(1418), - [anon_sym_ushort] = ACTIONS(1418), - [anon_sym_uint] = ACTIONS(1418), - [anon_sym_long] = ACTIONS(1418), - [anon_sym_ulong] = ACTIONS(1418), - [anon_sym_int128] = ACTIONS(1418), - [anon_sym_uint128] = ACTIONS(1418), - [anon_sym_float] = ACTIONS(1418), - [anon_sym_double] = ACTIONS(1418), - [anon_sym_float16] = ACTIONS(1418), - [anon_sym_bfloat16] = ACTIONS(1418), - [anon_sym_float128] = ACTIONS(1418), - [anon_sym_iptr] = ACTIONS(1418), - [anon_sym_uptr] = ACTIONS(1418), - [anon_sym_isz] = ACTIONS(1418), - [anon_sym_usz] = ACTIONS(1418), - [anon_sym_anyfault] = ACTIONS(1418), - [anon_sym_any] = ACTIONS(1418), - [anon_sym_DOLLARtypeof] = ACTIONS(1418), - [anon_sym_DOLLARtypefrom] = ACTIONS(1418), - [anon_sym_DOLLARvatype] = ACTIONS(1418), - [anon_sym_DOLLARevaltype] = ACTIONS(1418), - [sym_real_literal] = ACTIONS(1420), + [sym_ident] = ACTIONS(1415), + [sym_integer_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1417), + [anon_sym_DQUOTE] = ACTIONS(1417), + [anon_sym_BQUOTE] = ACTIONS(1417), + [sym_bytes_literal] = ACTIONS(1417), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1415), + [sym_at_ident] = ACTIONS(1417), + [sym_hash_ident] = ACTIONS(1417), + [sym_type_ident] = ACTIONS(1417), + [sym_ct_type_ident] = ACTIONS(1417), + [sym_const_ident] = ACTIONS(1415), + [sym_builtin] = ACTIONS(1417), + [anon_sym_LPAREN] = ACTIONS(1417), + [anon_sym_AMP] = ACTIONS(1415), + [anon_sym_static] = ACTIONS(1415), + [anon_sym_tlocal] = ACTIONS(1415), + [anon_sym_SEMI] = ACTIONS(1417), + [anon_sym_fn] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1415), + [anon_sym_const] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1415), + [anon_sym_return] = ACTIONS(1415), + [anon_sym_continue] = ACTIONS(1415), + [anon_sym_break] = ACTIONS(1415), + [anon_sym_defer] = ACTIONS(1415), + [anon_sym_assert] = ACTIONS(1415), + [anon_sym_nextcase] = ACTIONS(1415), + [anon_sym_switch] = ACTIONS(1415), + [anon_sym_AMP_AMP] = ACTIONS(1417), + [anon_sym_if] = ACTIONS(1415), + [anon_sym_for] = ACTIONS(1415), + [anon_sym_foreach] = ACTIONS(1415), + [anon_sym_foreach_r] = ACTIONS(1415), + [anon_sym_while] = ACTIONS(1415), + [anon_sym_do] = ACTIONS(1415), + [anon_sym_int] = ACTIONS(1415), + [anon_sym_PLUS] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1415), + [anon_sym_STAR] = ACTIONS(1417), + [anon_sym_asm] = ACTIONS(1415), + [anon_sym_DOLLARassert] = ACTIONS(1415), + [anon_sym_DOLLARerror] = ACTIONS(1415), + [anon_sym_DOLLARecho] = ACTIONS(1415), + [anon_sym_DOLLARif] = ACTIONS(1415), + [anon_sym_DOLLARendif] = ACTIONS(1415), + [anon_sym_DOLLARelse] = ACTIONS(1415), + [anon_sym_DOLLARswitch] = ACTIONS(1415), + [anon_sym_DOLLARfor] = ACTIONS(1415), + [anon_sym_DOLLARforeach] = ACTIONS(1415), + [anon_sym_DOLLARalignof] = ACTIONS(1415), + [anon_sym_DOLLARextnameof] = ACTIONS(1415), + [anon_sym_DOLLARnameof] = ACTIONS(1415), + [anon_sym_DOLLARoffsetof] = ACTIONS(1415), + [anon_sym_DOLLARqnameof] = ACTIONS(1415), + [anon_sym_DOLLARvaconst] = ACTIONS(1415), + [anon_sym_DOLLARvaarg] = ACTIONS(1415), + [anon_sym_DOLLARvaref] = ACTIONS(1415), + [anon_sym_DOLLARvaexpr] = ACTIONS(1415), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_null] = ACTIONS(1415), + [anon_sym_DOLLARvacount] = ACTIONS(1415), + [anon_sym_DOLLARappend] = ACTIONS(1415), + [anon_sym_DOLLARconcat] = ACTIONS(1415), + [anon_sym_DOLLAReval] = ACTIONS(1415), + [anon_sym_DOLLARis_const] = ACTIONS(1415), + [anon_sym_DOLLARsizeof] = ACTIONS(1415), + [anon_sym_DOLLARstringify] = ACTIONS(1415), + [anon_sym_DOLLARand] = ACTIONS(1415), + [anon_sym_DOLLARdefined] = ACTIONS(1415), + [anon_sym_DOLLARembed] = ACTIONS(1415), + [anon_sym_DOLLARor] = ACTIONS(1415), + [anon_sym_DOLLARfeature] = ACTIONS(1415), + [anon_sym_DOLLARassignable] = ACTIONS(1415), + [anon_sym_BANG] = ACTIONS(1417), + [anon_sym_TILDE] = ACTIONS(1417), + [anon_sym_PLUS_PLUS] = ACTIONS(1417), + [anon_sym_DASH_DASH] = ACTIONS(1417), + [anon_sym_typeid] = ACTIONS(1415), + [anon_sym_LBRACE_PIPE] = ACTIONS(1417), + [anon_sym_void] = ACTIONS(1415), + [anon_sym_bool] = ACTIONS(1415), + [anon_sym_char] = ACTIONS(1415), + [anon_sym_ichar] = ACTIONS(1415), + [anon_sym_short] = ACTIONS(1415), + [anon_sym_ushort] = ACTIONS(1415), + [anon_sym_uint] = ACTIONS(1415), + [anon_sym_long] = ACTIONS(1415), + [anon_sym_ulong] = ACTIONS(1415), + [anon_sym_int128] = ACTIONS(1415), + [anon_sym_uint128] = ACTIONS(1415), + [anon_sym_float] = ACTIONS(1415), + [anon_sym_double] = ACTIONS(1415), + [anon_sym_float16] = ACTIONS(1415), + [anon_sym_bfloat16] = ACTIONS(1415), + [anon_sym_float128] = ACTIONS(1415), + [anon_sym_iptr] = ACTIONS(1415), + [anon_sym_uptr] = ACTIONS(1415), + [anon_sym_isz] = ACTIONS(1415), + [anon_sym_usz] = ACTIONS(1415), + [anon_sym_anyfault] = ACTIONS(1415), + [anon_sym_any] = ACTIONS(1415), + [anon_sym_DOLLARtypeof] = ACTIONS(1415), + [anon_sym_DOLLARtypefrom] = ACTIONS(1415), + [anon_sym_DOLLARvatype] = ACTIONS(1415), + [anon_sym_DOLLARevaltype] = ACTIONS(1415), + [sym_real_literal] = ACTIONS(1417), }, [519] = { [sym_line_comment] = STATE(519), [sym_doc_comment] = STATE(519), [sym_block_comment] = STATE(519), - [sym_ident] = ACTIONS(1428), - [sym_integer_literal] = ACTIONS(1430), - [anon_sym_SQUOTE] = ACTIONS(1430), - [anon_sym_DQUOTE] = ACTIONS(1430), - [anon_sym_BQUOTE] = ACTIONS(1430), - [sym_bytes_literal] = ACTIONS(1430), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1428), - [sym_at_ident] = ACTIONS(1430), - [sym_hash_ident] = ACTIONS(1430), - [sym_type_ident] = ACTIONS(1430), - [sym_ct_type_ident] = ACTIONS(1430), - [sym_const_ident] = ACTIONS(1428), - [sym_builtin] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1430), - [anon_sym_AMP] = ACTIONS(1428), - [anon_sym_static] = ACTIONS(1428), - [anon_sym_tlocal] = ACTIONS(1428), - [anon_sym_SEMI] = ACTIONS(1430), - [anon_sym_fn] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1428), - [anon_sym_const] = ACTIONS(1428), - [anon_sym_var] = ACTIONS(1428), - [anon_sym_return] = ACTIONS(1428), - [anon_sym_continue] = ACTIONS(1428), - [anon_sym_break] = ACTIONS(1428), - [anon_sym_defer] = ACTIONS(1428), - [anon_sym_assert] = ACTIONS(1428), - [anon_sym_nextcase] = ACTIONS(1428), - [anon_sym_switch] = ACTIONS(1428), - [anon_sym_AMP_AMP] = ACTIONS(1430), - [anon_sym_if] = ACTIONS(1428), - [anon_sym_for] = ACTIONS(1428), - [anon_sym_foreach] = ACTIONS(1428), - [anon_sym_foreach_r] = ACTIONS(1428), - [anon_sym_while] = ACTIONS(1428), - [anon_sym_do] = ACTIONS(1428), - [anon_sym_int] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1428), - [anon_sym_DASH] = ACTIONS(1428), - [anon_sym_STAR] = ACTIONS(1430), - [anon_sym_asm] = ACTIONS(1428), - [anon_sym_DOLLARassert] = ACTIONS(1428), - [anon_sym_DOLLARerror] = ACTIONS(1428), - [anon_sym_DOLLARecho] = ACTIONS(1428), - [anon_sym_DOLLARif] = ACTIONS(1428), - [anon_sym_DOLLARcase] = ACTIONS(1428), - [anon_sym_DOLLARdefault] = ACTIONS(1428), - [anon_sym_DOLLARswitch] = ACTIONS(1428), - [anon_sym_DOLLARendswitch] = ACTIONS(1428), - [anon_sym_DOLLARfor] = ACTIONS(1428), - [anon_sym_DOLLARforeach] = ACTIONS(1428), - [anon_sym_DOLLARalignof] = ACTIONS(1428), - [anon_sym_DOLLARextnameof] = ACTIONS(1428), - [anon_sym_DOLLARnameof] = ACTIONS(1428), - [anon_sym_DOLLARoffsetof] = ACTIONS(1428), - [anon_sym_DOLLARqnameof] = ACTIONS(1428), - [anon_sym_DOLLARvaconst] = ACTIONS(1428), - [anon_sym_DOLLARvaarg] = ACTIONS(1428), - [anon_sym_DOLLARvaref] = ACTIONS(1428), - [anon_sym_DOLLARvaexpr] = ACTIONS(1428), - [anon_sym_true] = ACTIONS(1428), - [anon_sym_false] = ACTIONS(1428), - [anon_sym_null] = ACTIONS(1428), - [anon_sym_DOLLARvacount] = ACTIONS(1428), - [anon_sym_DOLLARappend] = ACTIONS(1428), - [anon_sym_DOLLARconcat] = ACTIONS(1428), - [anon_sym_DOLLAReval] = ACTIONS(1428), - [anon_sym_DOLLARis_const] = ACTIONS(1428), - [anon_sym_DOLLARsizeof] = ACTIONS(1428), - [anon_sym_DOLLARstringify] = ACTIONS(1428), - [anon_sym_DOLLARand] = ACTIONS(1428), - [anon_sym_DOLLARdefined] = ACTIONS(1428), - [anon_sym_DOLLARembed] = ACTIONS(1428), - [anon_sym_DOLLARor] = ACTIONS(1428), - [anon_sym_DOLLARfeature] = ACTIONS(1428), - [anon_sym_DOLLARassignable] = ACTIONS(1428), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_PLUS_PLUS] = ACTIONS(1430), - [anon_sym_DASH_DASH] = ACTIONS(1430), - [anon_sym_typeid] = ACTIONS(1428), - [anon_sym_LBRACE_PIPE] = ACTIONS(1430), - [anon_sym_void] = ACTIONS(1428), - [anon_sym_bool] = ACTIONS(1428), - [anon_sym_char] = ACTIONS(1428), - [anon_sym_ichar] = ACTIONS(1428), - [anon_sym_short] = ACTIONS(1428), - [anon_sym_ushort] = ACTIONS(1428), - [anon_sym_uint] = ACTIONS(1428), - [anon_sym_long] = ACTIONS(1428), - [anon_sym_ulong] = ACTIONS(1428), - [anon_sym_int128] = ACTIONS(1428), - [anon_sym_uint128] = ACTIONS(1428), - [anon_sym_float] = ACTIONS(1428), - [anon_sym_double] = ACTIONS(1428), - [anon_sym_float16] = ACTIONS(1428), - [anon_sym_bfloat16] = ACTIONS(1428), - [anon_sym_float128] = ACTIONS(1428), - [anon_sym_iptr] = ACTIONS(1428), - [anon_sym_uptr] = ACTIONS(1428), - [anon_sym_isz] = ACTIONS(1428), - [anon_sym_usz] = ACTIONS(1428), - [anon_sym_anyfault] = ACTIONS(1428), - [anon_sym_any] = ACTIONS(1428), - [anon_sym_DOLLARtypeof] = ACTIONS(1428), - [anon_sym_DOLLARtypefrom] = ACTIONS(1428), - [anon_sym_DOLLARvatype] = ACTIONS(1428), - [anon_sym_DOLLARevaltype] = ACTIONS(1428), - [sym_real_literal] = ACTIONS(1430), + [sym_ident] = ACTIONS(1593), + [sym_integer_literal] = ACTIONS(1595), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_DQUOTE] = ACTIONS(1595), + [anon_sym_BQUOTE] = ACTIONS(1595), + [sym_bytes_literal] = ACTIONS(1595), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1593), + [sym_at_ident] = ACTIONS(1595), + [sym_hash_ident] = ACTIONS(1595), + [sym_type_ident] = ACTIONS(1595), + [sym_ct_type_ident] = ACTIONS(1595), + [sym_const_ident] = ACTIONS(1593), + [sym_builtin] = ACTIONS(1595), + [anon_sym_LPAREN] = ACTIONS(1595), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_static] = ACTIONS(1593), + [anon_sym_tlocal] = ACTIONS(1593), + [anon_sym_SEMI] = ACTIONS(1595), + [anon_sym_fn] = ACTIONS(1593), + [anon_sym_LBRACE] = ACTIONS(1593), + [anon_sym_const] = ACTIONS(1593), + [anon_sym_var] = ACTIONS(1593), + [anon_sym_return] = ACTIONS(1593), + [anon_sym_continue] = ACTIONS(1593), + [anon_sym_break] = ACTIONS(1593), + [anon_sym_defer] = ACTIONS(1593), + [anon_sym_assert] = ACTIONS(1593), + [anon_sym_nextcase] = ACTIONS(1593), + [anon_sym_switch] = ACTIONS(1593), + [anon_sym_AMP_AMP] = ACTIONS(1595), + [anon_sym_if] = ACTIONS(1593), + [anon_sym_for] = ACTIONS(1593), + [anon_sym_foreach] = ACTIONS(1593), + [anon_sym_foreach_r] = ACTIONS(1593), + [anon_sym_while] = ACTIONS(1593), + [anon_sym_do] = ACTIONS(1593), + [anon_sym_int] = ACTIONS(1593), + [anon_sym_PLUS] = ACTIONS(1593), + [anon_sym_DASH] = ACTIONS(1593), + [anon_sym_STAR] = ACTIONS(1595), + [anon_sym_asm] = ACTIONS(1593), + [anon_sym_DOLLARassert] = ACTIONS(1593), + [anon_sym_DOLLARerror] = ACTIONS(1593), + [anon_sym_DOLLARecho] = ACTIONS(1593), + [anon_sym_DOLLARif] = ACTIONS(1593), + [anon_sym_DOLLARendif] = ACTIONS(1593), + [anon_sym_DOLLARelse] = ACTIONS(1593), + [anon_sym_DOLLARswitch] = ACTIONS(1593), + [anon_sym_DOLLARfor] = ACTIONS(1593), + [anon_sym_DOLLARforeach] = ACTIONS(1593), + [anon_sym_DOLLARalignof] = ACTIONS(1593), + [anon_sym_DOLLARextnameof] = ACTIONS(1593), + [anon_sym_DOLLARnameof] = ACTIONS(1593), + [anon_sym_DOLLARoffsetof] = ACTIONS(1593), + [anon_sym_DOLLARqnameof] = ACTIONS(1593), + [anon_sym_DOLLARvaconst] = ACTIONS(1593), + [anon_sym_DOLLARvaarg] = ACTIONS(1593), + [anon_sym_DOLLARvaref] = ACTIONS(1593), + [anon_sym_DOLLARvaexpr] = ACTIONS(1593), + [anon_sym_true] = ACTIONS(1593), + [anon_sym_false] = ACTIONS(1593), + [anon_sym_null] = ACTIONS(1593), + [anon_sym_DOLLARvacount] = ACTIONS(1593), + [anon_sym_DOLLARappend] = ACTIONS(1593), + [anon_sym_DOLLARconcat] = ACTIONS(1593), + [anon_sym_DOLLAReval] = ACTIONS(1593), + [anon_sym_DOLLARis_const] = ACTIONS(1593), + [anon_sym_DOLLARsizeof] = ACTIONS(1593), + [anon_sym_DOLLARstringify] = ACTIONS(1593), + [anon_sym_DOLLARand] = ACTIONS(1593), + [anon_sym_DOLLARdefined] = ACTIONS(1593), + [anon_sym_DOLLARembed] = ACTIONS(1593), + [anon_sym_DOLLARor] = ACTIONS(1593), + [anon_sym_DOLLARfeature] = ACTIONS(1593), + [anon_sym_DOLLARassignable] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1595), + [anon_sym_TILDE] = ACTIONS(1595), + [anon_sym_PLUS_PLUS] = ACTIONS(1595), + [anon_sym_DASH_DASH] = ACTIONS(1595), + [anon_sym_typeid] = ACTIONS(1593), + [anon_sym_LBRACE_PIPE] = ACTIONS(1595), + [anon_sym_void] = ACTIONS(1593), + [anon_sym_bool] = ACTIONS(1593), + [anon_sym_char] = ACTIONS(1593), + [anon_sym_ichar] = ACTIONS(1593), + [anon_sym_short] = ACTIONS(1593), + [anon_sym_ushort] = ACTIONS(1593), + [anon_sym_uint] = ACTIONS(1593), + [anon_sym_long] = ACTIONS(1593), + [anon_sym_ulong] = ACTIONS(1593), + [anon_sym_int128] = ACTIONS(1593), + [anon_sym_uint128] = ACTIONS(1593), + [anon_sym_float] = ACTIONS(1593), + [anon_sym_double] = ACTIONS(1593), + [anon_sym_float16] = ACTIONS(1593), + [anon_sym_bfloat16] = ACTIONS(1593), + [anon_sym_float128] = ACTIONS(1593), + [anon_sym_iptr] = ACTIONS(1593), + [anon_sym_uptr] = ACTIONS(1593), + [anon_sym_isz] = ACTIONS(1593), + [anon_sym_usz] = ACTIONS(1593), + [anon_sym_anyfault] = ACTIONS(1593), + [anon_sym_any] = ACTIONS(1593), + [anon_sym_DOLLARtypeof] = ACTIONS(1593), + [anon_sym_DOLLARtypefrom] = ACTIONS(1593), + [anon_sym_DOLLARvatype] = ACTIONS(1593), + [anon_sym_DOLLARevaltype] = ACTIONS(1593), + [sym_real_literal] = ACTIONS(1595), }, [520] = { [sym_line_comment] = STATE(520), [sym_doc_comment] = STATE(520), [sym_block_comment] = STATE(520), - [sym_ident] = ACTIONS(1382), - [sym_integer_literal] = ACTIONS(1384), - [anon_sym_SQUOTE] = ACTIONS(1384), - [anon_sym_DQUOTE] = ACTIONS(1384), - [anon_sym_BQUOTE] = ACTIONS(1384), - [sym_bytes_literal] = ACTIONS(1384), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1382), - [sym_at_ident] = ACTIONS(1384), - [sym_hash_ident] = ACTIONS(1384), - [sym_type_ident] = ACTIONS(1384), - [sym_ct_type_ident] = ACTIONS(1384), - [sym_const_ident] = ACTIONS(1382), - [sym_builtin] = ACTIONS(1384), - [anon_sym_LPAREN] = ACTIONS(1384), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_static] = ACTIONS(1382), - [anon_sym_tlocal] = ACTIONS(1382), - [anon_sym_SEMI] = ACTIONS(1384), - [anon_sym_fn] = ACTIONS(1382), - [anon_sym_LBRACE] = ACTIONS(1382), - [anon_sym_const] = ACTIONS(1382), - [anon_sym_var] = ACTIONS(1382), - [anon_sym_return] = ACTIONS(1382), - [anon_sym_continue] = ACTIONS(1382), - [anon_sym_break] = ACTIONS(1382), - [anon_sym_defer] = ACTIONS(1382), - [anon_sym_assert] = ACTIONS(1382), - [anon_sym_nextcase] = ACTIONS(1382), - [anon_sym_switch] = ACTIONS(1382), - [anon_sym_AMP_AMP] = ACTIONS(1384), - [anon_sym_if] = ACTIONS(1382), - [anon_sym_else] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1382), - [anon_sym_foreach] = ACTIONS(1382), - [anon_sym_foreach_r] = ACTIONS(1382), - [anon_sym_while] = ACTIONS(1382), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_int] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_asm] = ACTIONS(1382), - [anon_sym_DOLLARassert] = ACTIONS(1382), - [anon_sym_DOLLARerror] = ACTIONS(1382), - [anon_sym_DOLLARecho] = ACTIONS(1382), - [anon_sym_DOLLARif] = ACTIONS(1382), - [anon_sym_DOLLARendif] = ACTIONS(1382), - [anon_sym_DOLLARelse] = ACTIONS(1382), - [anon_sym_DOLLARswitch] = ACTIONS(1382), - [anon_sym_DOLLARfor] = ACTIONS(1382), - [anon_sym_DOLLARforeach] = ACTIONS(1382), - [anon_sym_DOLLARalignof] = ACTIONS(1382), - [anon_sym_DOLLARextnameof] = ACTIONS(1382), - [anon_sym_DOLLARnameof] = ACTIONS(1382), - [anon_sym_DOLLARoffsetof] = ACTIONS(1382), - [anon_sym_DOLLARqnameof] = ACTIONS(1382), - [anon_sym_DOLLARvaconst] = ACTIONS(1382), - [anon_sym_DOLLARvaarg] = ACTIONS(1382), - [anon_sym_DOLLARvaref] = ACTIONS(1382), - [anon_sym_DOLLARvaexpr] = ACTIONS(1382), - [anon_sym_true] = ACTIONS(1382), - [anon_sym_false] = ACTIONS(1382), - [anon_sym_null] = ACTIONS(1382), - [anon_sym_DOLLARvacount] = ACTIONS(1382), - [anon_sym_DOLLARappend] = ACTIONS(1382), - [anon_sym_DOLLARconcat] = ACTIONS(1382), - [anon_sym_DOLLAReval] = ACTIONS(1382), - [anon_sym_DOLLARis_const] = ACTIONS(1382), - [anon_sym_DOLLARsizeof] = ACTIONS(1382), - [anon_sym_DOLLARstringify] = ACTIONS(1382), - [anon_sym_DOLLARand] = ACTIONS(1382), - [anon_sym_DOLLARdefined] = ACTIONS(1382), - [anon_sym_DOLLARembed] = ACTIONS(1382), - [anon_sym_DOLLARor] = ACTIONS(1382), - [anon_sym_DOLLARfeature] = ACTIONS(1382), - [anon_sym_DOLLARassignable] = ACTIONS(1382), - [anon_sym_BANG] = ACTIONS(1384), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_PLUS_PLUS] = ACTIONS(1384), - [anon_sym_DASH_DASH] = ACTIONS(1384), - [anon_sym_typeid] = ACTIONS(1382), - [anon_sym_LBRACE_PIPE] = ACTIONS(1384), - [anon_sym_void] = ACTIONS(1382), - [anon_sym_bool] = ACTIONS(1382), - [anon_sym_char] = ACTIONS(1382), - [anon_sym_ichar] = ACTIONS(1382), - [anon_sym_short] = ACTIONS(1382), - [anon_sym_ushort] = ACTIONS(1382), - [anon_sym_uint] = ACTIONS(1382), - [anon_sym_long] = ACTIONS(1382), - [anon_sym_ulong] = ACTIONS(1382), - [anon_sym_int128] = ACTIONS(1382), - [anon_sym_uint128] = ACTIONS(1382), - [anon_sym_float] = ACTIONS(1382), - [anon_sym_double] = ACTIONS(1382), - [anon_sym_float16] = ACTIONS(1382), - [anon_sym_bfloat16] = ACTIONS(1382), - [anon_sym_float128] = ACTIONS(1382), - [anon_sym_iptr] = ACTIONS(1382), - [anon_sym_uptr] = ACTIONS(1382), - [anon_sym_isz] = ACTIONS(1382), - [anon_sym_usz] = ACTIONS(1382), - [anon_sym_anyfault] = ACTIONS(1382), - [anon_sym_any] = ACTIONS(1382), - [anon_sym_DOLLARtypeof] = ACTIONS(1382), - [anon_sym_DOLLARtypefrom] = ACTIONS(1382), - [anon_sym_DOLLARvatype] = ACTIONS(1382), - [anon_sym_DOLLARevaltype] = ACTIONS(1382), - [sym_real_literal] = ACTIONS(1384), + [sym_ident] = ACTIONS(1585), + [sym_integer_literal] = ACTIONS(1587), + [anon_sym_SQUOTE] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1587), + [anon_sym_BQUOTE] = ACTIONS(1587), + [sym_bytes_literal] = ACTIONS(1587), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1585), + [sym_at_ident] = ACTIONS(1587), + [sym_hash_ident] = ACTIONS(1587), + [sym_type_ident] = ACTIONS(1587), + [sym_ct_type_ident] = ACTIONS(1587), + [sym_const_ident] = ACTIONS(1585), + [sym_builtin] = ACTIONS(1587), + [anon_sym_LPAREN] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_static] = ACTIONS(1585), + [anon_sym_tlocal] = ACTIONS(1585), + [anon_sym_SEMI] = ACTIONS(1587), + [anon_sym_fn] = ACTIONS(1585), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_const] = ACTIONS(1585), + [anon_sym_var] = ACTIONS(1585), + [anon_sym_return] = ACTIONS(1585), + [anon_sym_continue] = ACTIONS(1585), + [anon_sym_break] = ACTIONS(1585), + [anon_sym_defer] = ACTIONS(1585), + [anon_sym_assert] = ACTIONS(1585), + [anon_sym_nextcase] = ACTIONS(1585), + [anon_sym_switch] = ACTIONS(1585), + [anon_sym_AMP_AMP] = ACTIONS(1587), + [anon_sym_if] = ACTIONS(1585), + [anon_sym_for] = ACTIONS(1585), + [anon_sym_foreach] = ACTIONS(1585), + [anon_sym_foreach_r] = ACTIONS(1585), + [anon_sym_while] = ACTIONS(1585), + [anon_sym_do] = ACTIONS(1585), + [anon_sym_int] = ACTIONS(1585), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1587), + [anon_sym_asm] = ACTIONS(1585), + [anon_sym_DOLLARassert] = ACTIONS(1585), + [anon_sym_DOLLARerror] = ACTIONS(1585), + [anon_sym_DOLLARecho] = ACTIONS(1585), + [anon_sym_DOLLARif] = ACTIONS(1585), + [anon_sym_DOLLARendif] = ACTIONS(1585), + [anon_sym_DOLLARelse] = ACTIONS(1585), + [anon_sym_DOLLARswitch] = ACTIONS(1585), + [anon_sym_DOLLARfor] = ACTIONS(1585), + [anon_sym_DOLLARforeach] = ACTIONS(1585), + [anon_sym_DOLLARalignof] = ACTIONS(1585), + [anon_sym_DOLLARextnameof] = ACTIONS(1585), + [anon_sym_DOLLARnameof] = ACTIONS(1585), + [anon_sym_DOLLARoffsetof] = ACTIONS(1585), + [anon_sym_DOLLARqnameof] = ACTIONS(1585), + [anon_sym_DOLLARvaconst] = ACTIONS(1585), + [anon_sym_DOLLARvaarg] = ACTIONS(1585), + [anon_sym_DOLLARvaref] = ACTIONS(1585), + [anon_sym_DOLLARvaexpr] = ACTIONS(1585), + [anon_sym_true] = ACTIONS(1585), + [anon_sym_false] = ACTIONS(1585), + [anon_sym_null] = ACTIONS(1585), + [anon_sym_DOLLARvacount] = ACTIONS(1585), + [anon_sym_DOLLARappend] = ACTIONS(1585), + [anon_sym_DOLLARconcat] = ACTIONS(1585), + [anon_sym_DOLLAReval] = ACTIONS(1585), + [anon_sym_DOLLARis_const] = ACTIONS(1585), + [anon_sym_DOLLARsizeof] = ACTIONS(1585), + [anon_sym_DOLLARstringify] = ACTIONS(1585), + [anon_sym_DOLLARand] = ACTIONS(1585), + [anon_sym_DOLLARdefined] = ACTIONS(1585), + [anon_sym_DOLLARembed] = ACTIONS(1585), + [anon_sym_DOLLARor] = ACTIONS(1585), + [anon_sym_DOLLARfeature] = ACTIONS(1585), + [anon_sym_DOLLARassignable] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), + [anon_sym_typeid] = ACTIONS(1585), + [anon_sym_LBRACE_PIPE] = ACTIONS(1587), + [anon_sym_void] = ACTIONS(1585), + [anon_sym_bool] = ACTIONS(1585), + [anon_sym_char] = ACTIONS(1585), + [anon_sym_ichar] = ACTIONS(1585), + [anon_sym_short] = ACTIONS(1585), + [anon_sym_ushort] = ACTIONS(1585), + [anon_sym_uint] = ACTIONS(1585), + [anon_sym_long] = ACTIONS(1585), + [anon_sym_ulong] = ACTIONS(1585), + [anon_sym_int128] = ACTIONS(1585), + [anon_sym_uint128] = ACTIONS(1585), + [anon_sym_float] = ACTIONS(1585), + [anon_sym_double] = ACTIONS(1585), + [anon_sym_float16] = ACTIONS(1585), + [anon_sym_bfloat16] = ACTIONS(1585), + [anon_sym_float128] = ACTIONS(1585), + [anon_sym_iptr] = ACTIONS(1585), + [anon_sym_uptr] = ACTIONS(1585), + [anon_sym_isz] = ACTIONS(1585), + [anon_sym_usz] = ACTIONS(1585), + [anon_sym_anyfault] = ACTIONS(1585), + [anon_sym_any] = ACTIONS(1585), + [anon_sym_DOLLARtypeof] = ACTIONS(1585), + [anon_sym_DOLLARtypefrom] = ACTIONS(1585), + [anon_sym_DOLLARvatype] = ACTIONS(1585), + [anon_sym_DOLLARevaltype] = ACTIONS(1585), + [sym_real_literal] = ACTIONS(1587), }, [521] = { [sym_line_comment] = STATE(521), [sym_doc_comment] = STATE(521), [sym_block_comment] = STATE(521), - [sym_else_part] = STATE(771), - [sym_ident] = ACTIONS(1370), - [sym_integer_literal] = ACTIONS(1372), - [anon_sym_SQUOTE] = ACTIONS(1372), - [anon_sym_DQUOTE] = ACTIONS(1372), - [anon_sym_BQUOTE] = ACTIONS(1372), - [sym_bytes_literal] = ACTIONS(1372), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1370), - [sym_at_ident] = ACTIONS(1372), - [sym_hash_ident] = ACTIONS(1372), - [sym_type_ident] = ACTIONS(1372), - [sym_ct_type_ident] = ACTIONS(1372), - [sym_const_ident] = ACTIONS(1370), - [sym_builtin] = ACTIONS(1372), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_AMP] = ACTIONS(1370), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_tlocal] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_const] = ACTIONS(1370), - [anon_sym_var] = ACTIONS(1370), - [anon_sym_return] = ACTIONS(1370), - [anon_sym_continue] = ACTIONS(1370), - [anon_sym_break] = ACTIONS(1370), - [anon_sym_defer] = ACTIONS(1370), - [anon_sym_assert] = ACTIONS(1370), - [anon_sym_nextcase] = ACTIONS(1370), - [anon_sym_switch] = ACTIONS(1370), - [anon_sym_AMP_AMP] = ACTIONS(1372), - [anon_sym_if] = ACTIONS(1370), - [anon_sym_else] = ACTIONS(1672), - [anon_sym_for] = ACTIONS(1370), - [anon_sym_foreach] = ACTIONS(1370), - [anon_sym_foreach_r] = ACTIONS(1370), - [anon_sym_while] = ACTIONS(1370), - [anon_sym_do] = ACTIONS(1370), - [anon_sym_int] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_asm] = ACTIONS(1370), - [anon_sym_DOLLARassert] = ACTIONS(1370), - [anon_sym_DOLLARerror] = ACTIONS(1370), - [anon_sym_DOLLARecho] = ACTIONS(1370), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_DOLLARswitch] = ACTIONS(1370), - [anon_sym_DOLLARfor] = ACTIONS(1370), - [anon_sym_DOLLARendfor] = ACTIONS(1370), - [anon_sym_DOLLARforeach] = ACTIONS(1370), - [anon_sym_DOLLARalignof] = ACTIONS(1370), - [anon_sym_DOLLARextnameof] = ACTIONS(1370), - [anon_sym_DOLLARnameof] = ACTIONS(1370), - [anon_sym_DOLLARoffsetof] = ACTIONS(1370), - [anon_sym_DOLLARqnameof] = ACTIONS(1370), - [anon_sym_DOLLARvaconst] = ACTIONS(1370), - [anon_sym_DOLLARvaarg] = ACTIONS(1370), - [anon_sym_DOLLARvaref] = ACTIONS(1370), - [anon_sym_DOLLARvaexpr] = ACTIONS(1370), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [anon_sym_null] = ACTIONS(1370), - [anon_sym_DOLLARvacount] = ACTIONS(1370), - [anon_sym_DOLLARappend] = ACTIONS(1370), - [anon_sym_DOLLARconcat] = ACTIONS(1370), - [anon_sym_DOLLAReval] = ACTIONS(1370), - [anon_sym_DOLLARis_const] = ACTIONS(1370), - [anon_sym_DOLLARsizeof] = ACTIONS(1370), - [anon_sym_DOLLARstringify] = ACTIONS(1370), - [anon_sym_DOLLARand] = ACTIONS(1370), - [anon_sym_DOLLARdefined] = ACTIONS(1370), - [anon_sym_DOLLARembed] = ACTIONS(1370), - [anon_sym_DOLLARor] = ACTIONS(1370), - [anon_sym_DOLLARfeature] = ACTIONS(1370), - [anon_sym_DOLLARassignable] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_TILDE] = ACTIONS(1372), - [anon_sym_PLUS_PLUS] = ACTIONS(1372), - [anon_sym_DASH_DASH] = ACTIONS(1372), - [anon_sym_typeid] = ACTIONS(1370), - [anon_sym_LBRACE_PIPE] = ACTIONS(1372), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_bool] = ACTIONS(1370), - [anon_sym_char] = ACTIONS(1370), - [anon_sym_ichar] = ACTIONS(1370), - [anon_sym_short] = ACTIONS(1370), - [anon_sym_ushort] = ACTIONS(1370), - [anon_sym_uint] = ACTIONS(1370), - [anon_sym_long] = ACTIONS(1370), - [anon_sym_ulong] = ACTIONS(1370), - [anon_sym_int128] = ACTIONS(1370), - [anon_sym_uint128] = ACTIONS(1370), - [anon_sym_float] = ACTIONS(1370), - [anon_sym_double] = ACTIONS(1370), - [anon_sym_float16] = ACTIONS(1370), - [anon_sym_bfloat16] = ACTIONS(1370), - [anon_sym_float128] = ACTIONS(1370), - [anon_sym_iptr] = ACTIONS(1370), - [anon_sym_uptr] = ACTIONS(1370), - [anon_sym_isz] = ACTIONS(1370), - [anon_sym_usz] = ACTIONS(1370), - [anon_sym_anyfault] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_DOLLARtypeof] = ACTIONS(1370), - [anon_sym_DOLLARtypefrom] = ACTIONS(1370), - [anon_sym_DOLLARvatype] = ACTIONS(1370), - [anon_sym_DOLLARevaltype] = ACTIONS(1370), - [sym_real_literal] = ACTIONS(1372), + [sym_ident] = ACTIONS(1449), + [sym_integer_literal] = ACTIONS(1451), + [anon_sym_SQUOTE] = ACTIONS(1451), + [anon_sym_DQUOTE] = ACTIONS(1451), + [anon_sym_BQUOTE] = ACTIONS(1451), + [sym_bytes_literal] = ACTIONS(1451), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1449), + [sym_at_ident] = ACTIONS(1451), + [sym_hash_ident] = ACTIONS(1451), + [sym_type_ident] = ACTIONS(1451), + [sym_ct_type_ident] = ACTIONS(1451), + [sym_const_ident] = ACTIONS(1449), + [sym_builtin] = ACTIONS(1451), + [anon_sym_LPAREN] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_static] = ACTIONS(1449), + [anon_sym_tlocal] = ACTIONS(1449), + [anon_sym_SEMI] = ACTIONS(1451), + [anon_sym_fn] = ACTIONS(1449), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_const] = ACTIONS(1449), + [anon_sym_var] = ACTIONS(1449), + [anon_sym_return] = ACTIONS(1449), + [anon_sym_continue] = ACTIONS(1449), + [anon_sym_break] = ACTIONS(1449), + [anon_sym_defer] = ACTIONS(1449), + [anon_sym_assert] = ACTIONS(1449), + [anon_sym_nextcase] = ACTIONS(1449), + [anon_sym_switch] = ACTIONS(1449), + [anon_sym_AMP_AMP] = ACTIONS(1451), + [anon_sym_if] = ACTIONS(1449), + [anon_sym_for] = ACTIONS(1449), + [anon_sym_foreach] = ACTIONS(1449), + [anon_sym_foreach_r] = ACTIONS(1449), + [anon_sym_while] = ACTIONS(1449), + [anon_sym_do] = ACTIONS(1449), + [anon_sym_int] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1449), + [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_STAR] = ACTIONS(1451), + [anon_sym_asm] = ACTIONS(1449), + [anon_sym_DOLLARassert] = ACTIONS(1449), + [anon_sym_DOLLARerror] = ACTIONS(1449), + [anon_sym_DOLLARecho] = ACTIONS(1449), + [anon_sym_DOLLARif] = ACTIONS(1449), + [anon_sym_DOLLARendif] = ACTIONS(1449), + [anon_sym_DOLLARelse] = ACTIONS(1449), + [anon_sym_DOLLARswitch] = ACTIONS(1449), + [anon_sym_DOLLARfor] = ACTIONS(1449), + [anon_sym_DOLLARforeach] = ACTIONS(1449), + [anon_sym_DOLLARalignof] = ACTIONS(1449), + [anon_sym_DOLLARextnameof] = ACTIONS(1449), + [anon_sym_DOLLARnameof] = ACTIONS(1449), + [anon_sym_DOLLARoffsetof] = ACTIONS(1449), + [anon_sym_DOLLARqnameof] = ACTIONS(1449), + [anon_sym_DOLLARvaconst] = ACTIONS(1449), + [anon_sym_DOLLARvaarg] = ACTIONS(1449), + [anon_sym_DOLLARvaref] = ACTIONS(1449), + [anon_sym_DOLLARvaexpr] = ACTIONS(1449), + [anon_sym_true] = ACTIONS(1449), + [anon_sym_false] = ACTIONS(1449), + [anon_sym_null] = ACTIONS(1449), + [anon_sym_DOLLARvacount] = ACTIONS(1449), + [anon_sym_DOLLARappend] = ACTIONS(1449), + [anon_sym_DOLLARconcat] = ACTIONS(1449), + [anon_sym_DOLLAReval] = ACTIONS(1449), + [anon_sym_DOLLARis_const] = ACTIONS(1449), + [anon_sym_DOLLARsizeof] = ACTIONS(1449), + [anon_sym_DOLLARstringify] = ACTIONS(1449), + [anon_sym_DOLLARand] = ACTIONS(1449), + [anon_sym_DOLLARdefined] = ACTIONS(1449), + [anon_sym_DOLLARembed] = ACTIONS(1449), + [anon_sym_DOLLARor] = ACTIONS(1449), + [anon_sym_DOLLARfeature] = ACTIONS(1449), + [anon_sym_DOLLARassignable] = ACTIONS(1449), + [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_TILDE] = ACTIONS(1451), + [anon_sym_PLUS_PLUS] = ACTIONS(1451), + [anon_sym_DASH_DASH] = ACTIONS(1451), + [anon_sym_typeid] = ACTIONS(1449), + [anon_sym_LBRACE_PIPE] = ACTIONS(1451), + [anon_sym_void] = ACTIONS(1449), + [anon_sym_bool] = ACTIONS(1449), + [anon_sym_char] = ACTIONS(1449), + [anon_sym_ichar] = ACTIONS(1449), + [anon_sym_short] = ACTIONS(1449), + [anon_sym_ushort] = ACTIONS(1449), + [anon_sym_uint] = ACTIONS(1449), + [anon_sym_long] = ACTIONS(1449), + [anon_sym_ulong] = ACTIONS(1449), + [anon_sym_int128] = ACTIONS(1449), + [anon_sym_uint128] = ACTIONS(1449), + [anon_sym_float] = ACTIONS(1449), + [anon_sym_double] = ACTIONS(1449), + [anon_sym_float16] = ACTIONS(1449), + [anon_sym_bfloat16] = ACTIONS(1449), + [anon_sym_float128] = ACTIONS(1449), + [anon_sym_iptr] = ACTIONS(1449), + [anon_sym_uptr] = ACTIONS(1449), + [anon_sym_isz] = ACTIONS(1449), + [anon_sym_usz] = ACTIONS(1449), + [anon_sym_anyfault] = ACTIONS(1449), + [anon_sym_any] = ACTIONS(1449), + [anon_sym_DOLLARtypeof] = ACTIONS(1449), + [anon_sym_DOLLARtypefrom] = ACTIONS(1449), + [anon_sym_DOLLARvatype] = ACTIONS(1449), + [anon_sym_DOLLARevaltype] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1451), }, [522] = { [sym_line_comment] = STATE(522), [sym_doc_comment] = STATE(522), [sym_block_comment] = STATE(522), - [sym_ident] = ACTIONS(1444), - [sym_integer_literal] = ACTIONS(1446), - [anon_sym_SQUOTE] = ACTIONS(1446), - [anon_sym_DQUOTE] = ACTIONS(1446), - [anon_sym_BQUOTE] = ACTIONS(1446), - [sym_bytes_literal] = ACTIONS(1446), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1444), - [sym_at_ident] = ACTIONS(1446), - [sym_hash_ident] = ACTIONS(1446), - [sym_type_ident] = ACTIONS(1446), - [sym_ct_type_ident] = ACTIONS(1446), - [sym_const_ident] = ACTIONS(1444), - [sym_builtin] = ACTIONS(1446), - [anon_sym_LPAREN] = ACTIONS(1446), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_static] = ACTIONS(1444), - [anon_sym_tlocal] = ACTIONS(1444), - [anon_sym_SEMI] = ACTIONS(1446), - [anon_sym_fn] = ACTIONS(1444), - [anon_sym_LBRACE] = ACTIONS(1444), - [anon_sym_const] = ACTIONS(1444), - [anon_sym_var] = ACTIONS(1444), - [anon_sym_return] = ACTIONS(1444), - [anon_sym_continue] = ACTIONS(1444), - [anon_sym_break] = ACTIONS(1444), - [anon_sym_defer] = ACTIONS(1444), - [anon_sym_assert] = ACTIONS(1444), - [anon_sym_nextcase] = ACTIONS(1444), - [anon_sym_switch] = ACTIONS(1444), - [anon_sym_AMP_AMP] = ACTIONS(1446), - [anon_sym_if] = ACTIONS(1444), - [anon_sym_for] = ACTIONS(1444), - [anon_sym_foreach] = ACTIONS(1444), - [anon_sym_foreach_r] = ACTIONS(1444), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_do] = ACTIONS(1444), - [anon_sym_int] = ACTIONS(1444), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_asm] = ACTIONS(1444), - [anon_sym_DOLLARassert] = ACTIONS(1444), - [anon_sym_DOLLARerror] = ACTIONS(1444), - [anon_sym_DOLLARecho] = ACTIONS(1444), - [anon_sym_DOLLARif] = ACTIONS(1444), - [anon_sym_DOLLARcase] = ACTIONS(1444), - [anon_sym_DOLLARdefault] = ACTIONS(1444), - [anon_sym_DOLLARswitch] = ACTIONS(1444), - [anon_sym_DOLLARendswitch] = ACTIONS(1444), - [anon_sym_DOLLARfor] = ACTIONS(1444), - [anon_sym_DOLLARforeach] = ACTIONS(1444), - [anon_sym_DOLLARalignof] = ACTIONS(1444), - [anon_sym_DOLLARextnameof] = ACTIONS(1444), - [anon_sym_DOLLARnameof] = ACTIONS(1444), - [anon_sym_DOLLARoffsetof] = ACTIONS(1444), - [anon_sym_DOLLARqnameof] = ACTIONS(1444), - [anon_sym_DOLLARvaconst] = ACTIONS(1444), - [anon_sym_DOLLARvaarg] = ACTIONS(1444), - [anon_sym_DOLLARvaref] = ACTIONS(1444), - [anon_sym_DOLLARvaexpr] = ACTIONS(1444), - [anon_sym_true] = ACTIONS(1444), - [anon_sym_false] = ACTIONS(1444), - [anon_sym_null] = ACTIONS(1444), - [anon_sym_DOLLARvacount] = ACTIONS(1444), - [anon_sym_DOLLARappend] = ACTIONS(1444), - [anon_sym_DOLLARconcat] = ACTIONS(1444), - [anon_sym_DOLLAReval] = ACTIONS(1444), - [anon_sym_DOLLARis_const] = ACTIONS(1444), - [anon_sym_DOLLARsizeof] = ACTIONS(1444), - [anon_sym_DOLLARstringify] = ACTIONS(1444), - [anon_sym_DOLLARand] = ACTIONS(1444), - [anon_sym_DOLLARdefined] = ACTIONS(1444), - [anon_sym_DOLLARembed] = ACTIONS(1444), - [anon_sym_DOLLARor] = ACTIONS(1444), - [anon_sym_DOLLARfeature] = ACTIONS(1444), - [anon_sym_DOLLARassignable] = ACTIONS(1444), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_TILDE] = ACTIONS(1446), - [anon_sym_PLUS_PLUS] = ACTIONS(1446), - [anon_sym_DASH_DASH] = ACTIONS(1446), - [anon_sym_typeid] = ACTIONS(1444), - [anon_sym_LBRACE_PIPE] = ACTIONS(1446), - [anon_sym_void] = ACTIONS(1444), - [anon_sym_bool] = ACTIONS(1444), - [anon_sym_char] = ACTIONS(1444), - [anon_sym_ichar] = ACTIONS(1444), - [anon_sym_short] = ACTIONS(1444), - [anon_sym_ushort] = ACTIONS(1444), - [anon_sym_uint] = ACTIONS(1444), - [anon_sym_long] = ACTIONS(1444), - [anon_sym_ulong] = ACTIONS(1444), - [anon_sym_int128] = ACTIONS(1444), - [anon_sym_uint128] = ACTIONS(1444), - [anon_sym_float] = ACTIONS(1444), - [anon_sym_double] = ACTIONS(1444), - [anon_sym_float16] = ACTIONS(1444), - [anon_sym_bfloat16] = ACTIONS(1444), - [anon_sym_float128] = ACTIONS(1444), - [anon_sym_iptr] = ACTIONS(1444), - [anon_sym_uptr] = ACTIONS(1444), - [anon_sym_isz] = ACTIONS(1444), - [anon_sym_usz] = ACTIONS(1444), - [anon_sym_anyfault] = ACTIONS(1444), - [anon_sym_any] = ACTIONS(1444), - [anon_sym_DOLLARtypeof] = ACTIONS(1444), - [anon_sym_DOLLARtypefrom] = ACTIONS(1444), - [anon_sym_DOLLARvatype] = ACTIONS(1444), - [anon_sym_DOLLARevaltype] = ACTIONS(1444), - [sym_real_literal] = ACTIONS(1446), + [sym_ident] = ACTIONS(1489), + [sym_integer_literal] = ACTIONS(1491), + [anon_sym_SQUOTE] = ACTIONS(1491), + [anon_sym_DQUOTE] = ACTIONS(1491), + [anon_sym_BQUOTE] = ACTIONS(1491), + [sym_bytes_literal] = ACTIONS(1491), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1489), + [sym_at_ident] = ACTIONS(1491), + [sym_hash_ident] = ACTIONS(1491), + [sym_type_ident] = ACTIONS(1491), + [sym_ct_type_ident] = ACTIONS(1491), + [sym_const_ident] = ACTIONS(1489), + [sym_builtin] = ACTIONS(1491), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_AMP] = ACTIONS(1489), + [anon_sym_static] = ACTIONS(1489), + [anon_sym_tlocal] = ACTIONS(1489), + [anon_sym_SEMI] = ACTIONS(1491), + [anon_sym_fn] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1489), + [anon_sym_const] = ACTIONS(1489), + [anon_sym_var] = ACTIONS(1489), + [anon_sym_return] = ACTIONS(1489), + [anon_sym_continue] = ACTIONS(1489), + [anon_sym_break] = ACTIONS(1489), + [anon_sym_defer] = ACTIONS(1489), + [anon_sym_assert] = ACTIONS(1489), + [anon_sym_nextcase] = ACTIONS(1489), + [anon_sym_switch] = ACTIONS(1489), + [anon_sym_AMP_AMP] = ACTIONS(1491), + [anon_sym_if] = ACTIONS(1489), + [anon_sym_for] = ACTIONS(1489), + [anon_sym_foreach] = ACTIONS(1489), + [anon_sym_foreach_r] = ACTIONS(1489), + [anon_sym_while] = ACTIONS(1489), + [anon_sym_do] = ACTIONS(1489), + [anon_sym_int] = ACTIONS(1489), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_STAR] = ACTIONS(1491), + [anon_sym_asm] = ACTIONS(1489), + [anon_sym_DOLLARassert] = ACTIONS(1489), + [anon_sym_DOLLARerror] = ACTIONS(1489), + [anon_sym_DOLLARecho] = ACTIONS(1489), + [anon_sym_DOLLARif] = ACTIONS(1489), + [anon_sym_DOLLARendif] = ACTIONS(1489), + [anon_sym_DOLLARelse] = ACTIONS(1489), + [anon_sym_DOLLARswitch] = ACTIONS(1489), + [anon_sym_DOLLARfor] = ACTIONS(1489), + [anon_sym_DOLLARforeach] = ACTIONS(1489), + [anon_sym_DOLLARalignof] = ACTIONS(1489), + [anon_sym_DOLLARextnameof] = ACTIONS(1489), + [anon_sym_DOLLARnameof] = ACTIONS(1489), + [anon_sym_DOLLARoffsetof] = ACTIONS(1489), + [anon_sym_DOLLARqnameof] = ACTIONS(1489), + [anon_sym_DOLLARvaconst] = ACTIONS(1489), + [anon_sym_DOLLARvaarg] = ACTIONS(1489), + [anon_sym_DOLLARvaref] = ACTIONS(1489), + [anon_sym_DOLLARvaexpr] = ACTIONS(1489), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), + [anon_sym_null] = ACTIONS(1489), + [anon_sym_DOLLARvacount] = ACTIONS(1489), + [anon_sym_DOLLARappend] = ACTIONS(1489), + [anon_sym_DOLLARconcat] = ACTIONS(1489), + [anon_sym_DOLLAReval] = ACTIONS(1489), + [anon_sym_DOLLARis_const] = ACTIONS(1489), + [anon_sym_DOLLARsizeof] = ACTIONS(1489), + [anon_sym_DOLLARstringify] = ACTIONS(1489), + [anon_sym_DOLLARand] = ACTIONS(1489), + [anon_sym_DOLLARdefined] = ACTIONS(1489), + [anon_sym_DOLLARembed] = ACTIONS(1489), + [anon_sym_DOLLARor] = ACTIONS(1489), + [anon_sym_DOLLARfeature] = ACTIONS(1489), + [anon_sym_DOLLARassignable] = ACTIONS(1489), + [anon_sym_BANG] = ACTIONS(1491), + [anon_sym_TILDE] = ACTIONS(1491), + [anon_sym_PLUS_PLUS] = ACTIONS(1491), + [anon_sym_DASH_DASH] = ACTIONS(1491), + [anon_sym_typeid] = ACTIONS(1489), + [anon_sym_LBRACE_PIPE] = ACTIONS(1491), + [anon_sym_void] = ACTIONS(1489), + [anon_sym_bool] = ACTIONS(1489), + [anon_sym_char] = ACTIONS(1489), + [anon_sym_ichar] = ACTIONS(1489), + [anon_sym_short] = ACTIONS(1489), + [anon_sym_ushort] = ACTIONS(1489), + [anon_sym_uint] = ACTIONS(1489), + [anon_sym_long] = ACTIONS(1489), + [anon_sym_ulong] = ACTIONS(1489), + [anon_sym_int128] = ACTIONS(1489), + [anon_sym_uint128] = ACTIONS(1489), + [anon_sym_float] = ACTIONS(1489), + [anon_sym_double] = ACTIONS(1489), + [anon_sym_float16] = ACTIONS(1489), + [anon_sym_bfloat16] = ACTIONS(1489), + [anon_sym_float128] = ACTIONS(1489), + [anon_sym_iptr] = ACTIONS(1489), + [anon_sym_uptr] = ACTIONS(1489), + [anon_sym_isz] = ACTIONS(1489), + [anon_sym_usz] = ACTIONS(1489), + [anon_sym_anyfault] = ACTIONS(1489), + [anon_sym_any] = ACTIONS(1489), + [anon_sym_DOLLARtypeof] = ACTIONS(1489), + [anon_sym_DOLLARtypefrom] = ACTIONS(1489), + [anon_sym_DOLLARvatype] = ACTIONS(1489), + [anon_sym_DOLLARevaltype] = ACTIONS(1489), + [sym_real_literal] = ACTIONS(1491), }, [523] = { [sym_line_comment] = STATE(523), [sym_doc_comment] = STATE(523), [sym_block_comment] = STATE(523), - [sym_ident] = ACTIONS(1448), - [sym_integer_literal] = ACTIONS(1450), - [anon_sym_SQUOTE] = ACTIONS(1450), - [anon_sym_DQUOTE] = ACTIONS(1450), - [anon_sym_BQUOTE] = ACTIONS(1450), - [sym_bytes_literal] = ACTIONS(1450), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1448), - [sym_at_ident] = ACTIONS(1450), - [sym_hash_ident] = ACTIONS(1450), - [sym_type_ident] = ACTIONS(1450), - [sym_ct_type_ident] = ACTIONS(1450), - [sym_const_ident] = ACTIONS(1448), - [sym_builtin] = ACTIONS(1450), - [anon_sym_LPAREN] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1448), - [anon_sym_static] = ACTIONS(1448), - [anon_sym_tlocal] = ACTIONS(1448), - [anon_sym_SEMI] = ACTIONS(1450), - [anon_sym_fn] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(1448), - [anon_sym_const] = ACTIONS(1448), - [anon_sym_var] = ACTIONS(1448), - [anon_sym_return] = ACTIONS(1448), - [anon_sym_continue] = ACTIONS(1448), - [anon_sym_break] = ACTIONS(1448), - [anon_sym_defer] = ACTIONS(1448), - [anon_sym_assert] = ACTIONS(1448), - [anon_sym_nextcase] = ACTIONS(1448), - [anon_sym_switch] = ACTIONS(1448), - [anon_sym_AMP_AMP] = ACTIONS(1450), - [anon_sym_if] = ACTIONS(1448), - [anon_sym_for] = ACTIONS(1448), - [anon_sym_foreach] = ACTIONS(1448), - [anon_sym_foreach_r] = ACTIONS(1448), - [anon_sym_while] = ACTIONS(1448), - [anon_sym_do] = ACTIONS(1448), - [anon_sym_int] = ACTIONS(1448), - [anon_sym_PLUS] = ACTIONS(1448), - [anon_sym_DASH] = ACTIONS(1448), - [anon_sym_STAR] = ACTIONS(1450), - [anon_sym_asm] = ACTIONS(1448), - [anon_sym_DOLLARassert] = ACTIONS(1448), - [anon_sym_DOLLARerror] = ACTIONS(1448), - [anon_sym_DOLLARecho] = ACTIONS(1448), - [anon_sym_DOLLARif] = ACTIONS(1448), - [anon_sym_DOLLARcase] = ACTIONS(1448), - [anon_sym_DOLLARdefault] = ACTIONS(1448), - [anon_sym_DOLLARswitch] = ACTIONS(1448), - [anon_sym_DOLLARendswitch] = ACTIONS(1448), - [anon_sym_DOLLARfor] = ACTIONS(1448), - [anon_sym_DOLLARforeach] = ACTIONS(1448), - [anon_sym_DOLLARalignof] = ACTIONS(1448), - [anon_sym_DOLLARextnameof] = ACTIONS(1448), - [anon_sym_DOLLARnameof] = ACTIONS(1448), - [anon_sym_DOLLARoffsetof] = ACTIONS(1448), - [anon_sym_DOLLARqnameof] = ACTIONS(1448), - [anon_sym_DOLLARvaconst] = ACTIONS(1448), - [anon_sym_DOLLARvaarg] = ACTIONS(1448), - [anon_sym_DOLLARvaref] = ACTIONS(1448), - [anon_sym_DOLLARvaexpr] = ACTIONS(1448), - [anon_sym_true] = ACTIONS(1448), - [anon_sym_false] = ACTIONS(1448), - [anon_sym_null] = ACTIONS(1448), - [anon_sym_DOLLARvacount] = ACTIONS(1448), - [anon_sym_DOLLARappend] = ACTIONS(1448), - [anon_sym_DOLLARconcat] = ACTIONS(1448), - [anon_sym_DOLLAReval] = ACTIONS(1448), - [anon_sym_DOLLARis_const] = ACTIONS(1448), - [anon_sym_DOLLARsizeof] = ACTIONS(1448), - [anon_sym_DOLLARstringify] = ACTIONS(1448), - [anon_sym_DOLLARand] = ACTIONS(1448), - [anon_sym_DOLLARdefined] = ACTIONS(1448), - [anon_sym_DOLLARembed] = ACTIONS(1448), - [anon_sym_DOLLARor] = ACTIONS(1448), - [anon_sym_DOLLARfeature] = ACTIONS(1448), - [anon_sym_DOLLARassignable] = ACTIONS(1448), - [anon_sym_BANG] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1450), - [anon_sym_PLUS_PLUS] = ACTIONS(1450), - [anon_sym_DASH_DASH] = ACTIONS(1450), - [anon_sym_typeid] = ACTIONS(1448), - [anon_sym_LBRACE_PIPE] = ACTIONS(1450), - [anon_sym_void] = ACTIONS(1448), - [anon_sym_bool] = ACTIONS(1448), - [anon_sym_char] = ACTIONS(1448), - [anon_sym_ichar] = ACTIONS(1448), - [anon_sym_short] = ACTIONS(1448), - [anon_sym_ushort] = ACTIONS(1448), - [anon_sym_uint] = ACTIONS(1448), - [anon_sym_long] = ACTIONS(1448), - [anon_sym_ulong] = ACTIONS(1448), - [anon_sym_int128] = ACTIONS(1448), - [anon_sym_uint128] = ACTIONS(1448), - [anon_sym_float] = ACTIONS(1448), - [anon_sym_double] = ACTIONS(1448), - [anon_sym_float16] = ACTIONS(1448), - [anon_sym_bfloat16] = ACTIONS(1448), - [anon_sym_float128] = ACTIONS(1448), - [anon_sym_iptr] = ACTIONS(1448), - [anon_sym_uptr] = ACTIONS(1448), - [anon_sym_isz] = ACTIONS(1448), - [anon_sym_usz] = ACTIONS(1448), - [anon_sym_anyfault] = ACTIONS(1448), - [anon_sym_any] = ACTIONS(1448), - [anon_sym_DOLLARtypeof] = ACTIONS(1448), - [anon_sym_DOLLARtypefrom] = ACTIONS(1448), - [anon_sym_DOLLARvatype] = ACTIONS(1448), - [anon_sym_DOLLARevaltype] = ACTIONS(1448), - [sym_real_literal] = ACTIONS(1450), + [sym_ident] = ACTIONS(1367), + [sym_integer_literal] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1369), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_BQUOTE] = ACTIONS(1369), + [sym_bytes_literal] = ACTIONS(1369), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1367), + [sym_at_ident] = ACTIONS(1369), + [sym_hash_ident] = ACTIONS(1369), + [sym_type_ident] = ACTIONS(1369), + [sym_ct_type_ident] = ACTIONS(1369), + [sym_const_ident] = ACTIONS(1367), + [sym_builtin] = ACTIONS(1369), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(1367), + [anon_sym_static] = ACTIONS(1367), + [anon_sym_tlocal] = ACTIONS(1367), + [anon_sym_SEMI] = ACTIONS(1369), + [anon_sym_fn] = ACTIONS(1367), + [anon_sym_LBRACE] = ACTIONS(1367), + [anon_sym_const] = ACTIONS(1367), + [anon_sym_var] = ACTIONS(1367), + [anon_sym_return] = ACTIONS(1367), + [anon_sym_continue] = ACTIONS(1367), + [anon_sym_break] = ACTIONS(1367), + [anon_sym_defer] = ACTIONS(1367), + [anon_sym_assert] = ACTIONS(1367), + [anon_sym_nextcase] = ACTIONS(1367), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_AMP_AMP] = ACTIONS(1369), + [anon_sym_if] = ACTIONS(1367), + [anon_sym_for] = ACTIONS(1367), + [anon_sym_foreach] = ACTIONS(1367), + [anon_sym_foreach_r] = ACTIONS(1367), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_do] = ACTIONS(1367), + [anon_sym_int] = ACTIONS(1367), + [anon_sym_PLUS] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_asm] = ACTIONS(1367), + [anon_sym_DOLLARassert] = ACTIONS(1367), + [anon_sym_DOLLARerror] = ACTIONS(1367), + [anon_sym_DOLLARecho] = ACTIONS(1367), + [anon_sym_DOLLARif] = ACTIONS(1367), + [anon_sym_DOLLARendif] = ACTIONS(1367), + [anon_sym_DOLLARelse] = ACTIONS(1367), + [anon_sym_DOLLARswitch] = ACTIONS(1367), + [anon_sym_DOLLARfor] = ACTIONS(1367), + [anon_sym_DOLLARforeach] = ACTIONS(1367), + [anon_sym_DOLLARalignof] = ACTIONS(1367), + [anon_sym_DOLLARextnameof] = ACTIONS(1367), + [anon_sym_DOLLARnameof] = ACTIONS(1367), + [anon_sym_DOLLARoffsetof] = ACTIONS(1367), + [anon_sym_DOLLARqnameof] = ACTIONS(1367), + [anon_sym_DOLLARvaconst] = ACTIONS(1367), + [anon_sym_DOLLARvaarg] = ACTIONS(1367), + [anon_sym_DOLLARvaref] = ACTIONS(1367), + [anon_sym_DOLLARvaexpr] = ACTIONS(1367), + [anon_sym_true] = ACTIONS(1367), + [anon_sym_false] = ACTIONS(1367), + [anon_sym_null] = ACTIONS(1367), + [anon_sym_DOLLARvacount] = ACTIONS(1367), + [anon_sym_DOLLARappend] = ACTIONS(1367), + [anon_sym_DOLLARconcat] = ACTIONS(1367), + [anon_sym_DOLLAReval] = ACTIONS(1367), + [anon_sym_DOLLARis_const] = ACTIONS(1367), + [anon_sym_DOLLARsizeof] = ACTIONS(1367), + [anon_sym_DOLLARstringify] = ACTIONS(1367), + [anon_sym_DOLLARand] = ACTIONS(1367), + [anon_sym_DOLLARdefined] = ACTIONS(1367), + [anon_sym_DOLLARembed] = ACTIONS(1367), + [anon_sym_DOLLARor] = ACTIONS(1367), + [anon_sym_DOLLARfeature] = ACTIONS(1367), + [anon_sym_DOLLARassignable] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(1369), + [anon_sym_PLUS_PLUS] = ACTIONS(1369), + [anon_sym_DASH_DASH] = ACTIONS(1369), + [anon_sym_typeid] = ACTIONS(1367), + [anon_sym_LBRACE_PIPE] = ACTIONS(1369), + [anon_sym_void] = ACTIONS(1367), + [anon_sym_bool] = ACTIONS(1367), + [anon_sym_char] = ACTIONS(1367), + [anon_sym_ichar] = ACTIONS(1367), + [anon_sym_short] = ACTIONS(1367), + [anon_sym_ushort] = ACTIONS(1367), + [anon_sym_uint] = ACTIONS(1367), + [anon_sym_long] = ACTIONS(1367), + [anon_sym_ulong] = ACTIONS(1367), + [anon_sym_int128] = ACTIONS(1367), + [anon_sym_uint128] = ACTIONS(1367), + [anon_sym_float] = ACTIONS(1367), + [anon_sym_double] = ACTIONS(1367), + [anon_sym_float16] = ACTIONS(1367), + [anon_sym_bfloat16] = ACTIONS(1367), + [anon_sym_float128] = ACTIONS(1367), + [anon_sym_iptr] = ACTIONS(1367), + [anon_sym_uptr] = ACTIONS(1367), + [anon_sym_isz] = ACTIONS(1367), + [anon_sym_usz] = ACTIONS(1367), + [anon_sym_anyfault] = ACTIONS(1367), + [anon_sym_any] = ACTIONS(1367), + [anon_sym_DOLLARtypeof] = ACTIONS(1367), + [anon_sym_DOLLARtypefrom] = ACTIONS(1367), + [anon_sym_DOLLARvatype] = ACTIONS(1367), + [anon_sym_DOLLARevaltype] = ACTIONS(1367), + [sym_real_literal] = ACTIONS(1369), }, [524] = { [sym_line_comment] = STATE(524), [sym_doc_comment] = STATE(524), [sym_block_comment] = STATE(524), - [sym_ident] = ACTIONS(1456), - [sym_integer_literal] = ACTIONS(1458), - [anon_sym_SQUOTE] = ACTIONS(1458), - [anon_sym_DQUOTE] = ACTIONS(1458), - [anon_sym_BQUOTE] = ACTIONS(1458), - [sym_bytes_literal] = ACTIONS(1458), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1456), - [sym_at_ident] = ACTIONS(1458), - [sym_hash_ident] = ACTIONS(1458), - [sym_type_ident] = ACTIONS(1458), - [sym_ct_type_ident] = ACTIONS(1458), - [sym_const_ident] = ACTIONS(1456), - [sym_builtin] = ACTIONS(1458), - [anon_sym_LPAREN] = ACTIONS(1458), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_static] = ACTIONS(1456), - [anon_sym_tlocal] = ACTIONS(1456), - [anon_sym_SEMI] = ACTIONS(1458), - [anon_sym_fn] = ACTIONS(1456), - [anon_sym_LBRACE] = ACTIONS(1456), - [anon_sym_const] = ACTIONS(1456), - [anon_sym_var] = ACTIONS(1456), - [anon_sym_return] = ACTIONS(1456), - [anon_sym_continue] = ACTIONS(1456), - [anon_sym_break] = ACTIONS(1456), - [anon_sym_defer] = ACTIONS(1456), - [anon_sym_assert] = ACTIONS(1456), - [anon_sym_nextcase] = ACTIONS(1456), - [anon_sym_switch] = ACTIONS(1456), - [anon_sym_AMP_AMP] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1456), - [anon_sym_for] = ACTIONS(1456), - [anon_sym_foreach] = ACTIONS(1456), - [anon_sym_foreach_r] = ACTIONS(1456), - [anon_sym_while] = ACTIONS(1456), - [anon_sym_do] = ACTIONS(1456), - [anon_sym_int] = ACTIONS(1456), - [anon_sym_PLUS] = ACTIONS(1456), - [anon_sym_DASH] = ACTIONS(1456), - [anon_sym_STAR] = ACTIONS(1458), - [anon_sym_asm] = ACTIONS(1456), - [anon_sym_DOLLARassert] = ACTIONS(1456), - [anon_sym_DOLLARerror] = ACTIONS(1456), - [anon_sym_DOLLARecho] = ACTIONS(1456), - [anon_sym_DOLLARif] = ACTIONS(1456), - [anon_sym_DOLLARcase] = ACTIONS(1456), - [anon_sym_DOLLARdefault] = ACTIONS(1456), - [anon_sym_DOLLARswitch] = ACTIONS(1456), - [anon_sym_DOLLARendswitch] = ACTIONS(1456), - [anon_sym_DOLLARfor] = ACTIONS(1456), - [anon_sym_DOLLARforeach] = ACTIONS(1456), - [anon_sym_DOLLARalignof] = ACTIONS(1456), - [anon_sym_DOLLARextnameof] = ACTIONS(1456), - [anon_sym_DOLLARnameof] = ACTIONS(1456), - [anon_sym_DOLLARoffsetof] = ACTIONS(1456), - [anon_sym_DOLLARqnameof] = ACTIONS(1456), - [anon_sym_DOLLARvaconst] = ACTIONS(1456), - [anon_sym_DOLLARvaarg] = ACTIONS(1456), - [anon_sym_DOLLARvaref] = ACTIONS(1456), - [anon_sym_DOLLARvaexpr] = ACTIONS(1456), - [anon_sym_true] = ACTIONS(1456), - [anon_sym_false] = ACTIONS(1456), - [anon_sym_null] = ACTIONS(1456), - [anon_sym_DOLLARvacount] = ACTIONS(1456), - [anon_sym_DOLLARappend] = ACTIONS(1456), - [anon_sym_DOLLARconcat] = ACTIONS(1456), - [anon_sym_DOLLAReval] = ACTIONS(1456), - [anon_sym_DOLLARis_const] = ACTIONS(1456), - [anon_sym_DOLLARsizeof] = ACTIONS(1456), - [anon_sym_DOLLARstringify] = ACTIONS(1456), - [anon_sym_DOLLARand] = ACTIONS(1456), - [anon_sym_DOLLARdefined] = ACTIONS(1456), - [anon_sym_DOLLARembed] = ACTIONS(1456), - [anon_sym_DOLLARor] = ACTIONS(1456), - [anon_sym_DOLLARfeature] = ACTIONS(1456), - [anon_sym_DOLLARassignable] = ACTIONS(1456), - [anon_sym_BANG] = ACTIONS(1458), - [anon_sym_TILDE] = ACTIONS(1458), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [anon_sym_typeid] = ACTIONS(1456), - [anon_sym_LBRACE_PIPE] = ACTIONS(1458), - [anon_sym_void] = ACTIONS(1456), - [anon_sym_bool] = ACTIONS(1456), - [anon_sym_char] = ACTIONS(1456), - [anon_sym_ichar] = ACTIONS(1456), - [anon_sym_short] = ACTIONS(1456), - [anon_sym_ushort] = ACTIONS(1456), - [anon_sym_uint] = ACTIONS(1456), - [anon_sym_long] = ACTIONS(1456), - [anon_sym_ulong] = ACTIONS(1456), - [anon_sym_int128] = ACTIONS(1456), - [anon_sym_uint128] = ACTIONS(1456), - [anon_sym_float] = ACTIONS(1456), - [anon_sym_double] = ACTIONS(1456), - [anon_sym_float16] = ACTIONS(1456), - [anon_sym_bfloat16] = ACTIONS(1456), - [anon_sym_float128] = ACTIONS(1456), - [anon_sym_iptr] = ACTIONS(1456), - [anon_sym_uptr] = ACTIONS(1456), - [anon_sym_isz] = ACTIONS(1456), - [anon_sym_usz] = ACTIONS(1456), - [anon_sym_anyfault] = ACTIONS(1456), - [anon_sym_any] = ACTIONS(1456), - [anon_sym_DOLLARtypeof] = ACTIONS(1456), - [anon_sym_DOLLARtypefrom] = ACTIONS(1456), - [anon_sym_DOLLARvatype] = ACTIONS(1456), - [anon_sym_DOLLARevaltype] = ACTIONS(1456), - [sym_real_literal] = ACTIONS(1458), + [sym_ident] = ACTIONS(1375), + [sym_integer_literal] = ACTIONS(1377), + [anon_sym_SQUOTE] = ACTIONS(1377), + [anon_sym_DQUOTE] = ACTIONS(1377), + [anon_sym_BQUOTE] = ACTIONS(1377), + [sym_bytes_literal] = ACTIONS(1377), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1375), + [sym_at_ident] = ACTIONS(1377), + [sym_hash_ident] = ACTIONS(1377), + [sym_type_ident] = ACTIONS(1377), + [sym_ct_type_ident] = ACTIONS(1377), + [sym_const_ident] = ACTIONS(1375), + [sym_builtin] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_static] = ACTIONS(1375), + [anon_sym_tlocal] = ACTIONS(1375), + [anon_sym_SEMI] = ACTIONS(1377), + [anon_sym_fn] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1375), + [anon_sym_const] = ACTIONS(1375), + [anon_sym_var] = ACTIONS(1375), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_continue] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1375), + [anon_sym_defer] = ACTIONS(1375), + [anon_sym_assert] = ACTIONS(1375), + [anon_sym_nextcase] = ACTIONS(1375), + [anon_sym_switch] = ACTIONS(1375), + [anon_sym_AMP_AMP] = ACTIONS(1377), + [anon_sym_if] = ACTIONS(1375), + [anon_sym_for] = ACTIONS(1375), + [anon_sym_foreach] = ACTIONS(1375), + [anon_sym_foreach_r] = ACTIONS(1375), + [anon_sym_while] = ACTIONS(1375), + [anon_sym_do] = ACTIONS(1375), + [anon_sym_int] = ACTIONS(1375), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_asm] = ACTIONS(1375), + [anon_sym_DOLLARassert] = ACTIONS(1375), + [anon_sym_DOLLARerror] = ACTIONS(1375), + [anon_sym_DOLLARecho] = ACTIONS(1375), + [anon_sym_DOLLARif] = ACTIONS(1375), + [anon_sym_DOLLARendif] = ACTIONS(1375), + [anon_sym_DOLLARelse] = ACTIONS(1375), + [anon_sym_DOLLARswitch] = ACTIONS(1375), + [anon_sym_DOLLARfor] = ACTIONS(1375), + [anon_sym_DOLLARforeach] = ACTIONS(1375), + [anon_sym_DOLLARalignof] = ACTIONS(1375), + [anon_sym_DOLLARextnameof] = ACTIONS(1375), + [anon_sym_DOLLARnameof] = ACTIONS(1375), + [anon_sym_DOLLARoffsetof] = ACTIONS(1375), + [anon_sym_DOLLARqnameof] = ACTIONS(1375), + [anon_sym_DOLLARvaconst] = ACTIONS(1375), + [anon_sym_DOLLARvaarg] = ACTIONS(1375), + [anon_sym_DOLLARvaref] = ACTIONS(1375), + [anon_sym_DOLLARvaexpr] = ACTIONS(1375), + [anon_sym_true] = ACTIONS(1375), + [anon_sym_false] = ACTIONS(1375), + [anon_sym_null] = ACTIONS(1375), + [anon_sym_DOLLARvacount] = ACTIONS(1375), + [anon_sym_DOLLARappend] = ACTIONS(1375), + [anon_sym_DOLLARconcat] = ACTIONS(1375), + [anon_sym_DOLLAReval] = ACTIONS(1375), + [anon_sym_DOLLARis_const] = ACTIONS(1375), + [anon_sym_DOLLARsizeof] = ACTIONS(1375), + [anon_sym_DOLLARstringify] = ACTIONS(1375), + [anon_sym_DOLLARand] = ACTIONS(1375), + [anon_sym_DOLLARdefined] = ACTIONS(1375), + [anon_sym_DOLLARembed] = ACTIONS(1375), + [anon_sym_DOLLARor] = ACTIONS(1375), + [anon_sym_DOLLARfeature] = ACTIONS(1375), + [anon_sym_DOLLARassignable] = ACTIONS(1375), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_TILDE] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_typeid] = ACTIONS(1375), + [anon_sym_LBRACE_PIPE] = ACTIONS(1377), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_bool] = ACTIONS(1375), + [anon_sym_char] = ACTIONS(1375), + [anon_sym_ichar] = ACTIONS(1375), + [anon_sym_short] = ACTIONS(1375), + [anon_sym_ushort] = ACTIONS(1375), + [anon_sym_uint] = ACTIONS(1375), + [anon_sym_long] = ACTIONS(1375), + [anon_sym_ulong] = ACTIONS(1375), + [anon_sym_int128] = ACTIONS(1375), + [anon_sym_uint128] = ACTIONS(1375), + [anon_sym_float] = ACTIONS(1375), + [anon_sym_double] = ACTIONS(1375), + [anon_sym_float16] = ACTIONS(1375), + [anon_sym_bfloat16] = ACTIONS(1375), + [anon_sym_float128] = ACTIONS(1375), + [anon_sym_iptr] = ACTIONS(1375), + [anon_sym_uptr] = ACTIONS(1375), + [anon_sym_isz] = ACTIONS(1375), + [anon_sym_usz] = ACTIONS(1375), + [anon_sym_anyfault] = ACTIONS(1375), + [anon_sym_any] = ACTIONS(1375), + [anon_sym_DOLLARtypeof] = ACTIONS(1375), + [anon_sym_DOLLARtypefrom] = ACTIONS(1375), + [anon_sym_DOLLARvatype] = ACTIONS(1375), + [anon_sym_DOLLARevaltype] = ACTIONS(1375), + [sym_real_literal] = ACTIONS(1377), }, [525] = { [sym_line_comment] = STATE(525), [sym_doc_comment] = STATE(525), [sym_block_comment] = STATE(525), - [sym_ident] = ACTIONS(1460), - [sym_integer_literal] = ACTIONS(1462), - [anon_sym_SQUOTE] = ACTIONS(1462), - [anon_sym_DQUOTE] = ACTIONS(1462), - [anon_sym_BQUOTE] = ACTIONS(1462), - [sym_bytes_literal] = ACTIONS(1462), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1460), - [sym_at_ident] = ACTIONS(1462), - [sym_hash_ident] = ACTIONS(1462), - [sym_type_ident] = ACTIONS(1462), - [sym_ct_type_ident] = ACTIONS(1462), - [sym_const_ident] = ACTIONS(1460), - [sym_builtin] = ACTIONS(1462), - [anon_sym_LPAREN] = ACTIONS(1462), - [anon_sym_AMP] = ACTIONS(1460), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_tlocal] = ACTIONS(1460), - [anon_sym_SEMI] = ACTIONS(1462), - [anon_sym_fn] = ACTIONS(1460), - [anon_sym_LBRACE] = ACTIONS(1460), - [anon_sym_const] = ACTIONS(1460), - [anon_sym_var] = ACTIONS(1460), - [anon_sym_return] = ACTIONS(1460), - [anon_sym_continue] = ACTIONS(1460), - [anon_sym_break] = ACTIONS(1460), - [anon_sym_defer] = ACTIONS(1460), - [anon_sym_assert] = ACTIONS(1460), - [anon_sym_nextcase] = ACTIONS(1460), - [anon_sym_switch] = ACTIONS(1460), - [anon_sym_AMP_AMP] = ACTIONS(1462), - [anon_sym_if] = ACTIONS(1460), - [anon_sym_for] = ACTIONS(1460), - [anon_sym_foreach] = ACTIONS(1460), - [anon_sym_foreach_r] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1460), - [anon_sym_do] = ACTIONS(1460), - [anon_sym_int] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1460), - [anon_sym_DASH] = ACTIONS(1460), - [anon_sym_STAR] = ACTIONS(1462), - [anon_sym_asm] = ACTIONS(1460), - [anon_sym_DOLLARassert] = ACTIONS(1460), - [anon_sym_DOLLARerror] = ACTIONS(1460), - [anon_sym_DOLLARecho] = ACTIONS(1460), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_DOLLARcase] = ACTIONS(1460), - [anon_sym_DOLLARdefault] = ACTIONS(1460), - [anon_sym_DOLLARswitch] = ACTIONS(1460), - [anon_sym_DOLLARendswitch] = ACTIONS(1460), - [anon_sym_DOLLARfor] = ACTIONS(1460), - [anon_sym_DOLLARforeach] = ACTIONS(1460), - [anon_sym_DOLLARalignof] = ACTIONS(1460), - [anon_sym_DOLLARextnameof] = ACTIONS(1460), - [anon_sym_DOLLARnameof] = ACTIONS(1460), - [anon_sym_DOLLARoffsetof] = ACTIONS(1460), - [anon_sym_DOLLARqnameof] = ACTIONS(1460), - [anon_sym_DOLLARvaconst] = ACTIONS(1460), - [anon_sym_DOLLARvaarg] = ACTIONS(1460), - [anon_sym_DOLLARvaref] = ACTIONS(1460), - [anon_sym_DOLLARvaexpr] = ACTIONS(1460), - [anon_sym_true] = ACTIONS(1460), - [anon_sym_false] = ACTIONS(1460), - [anon_sym_null] = ACTIONS(1460), - [anon_sym_DOLLARvacount] = ACTIONS(1460), - [anon_sym_DOLLARappend] = ACTIONS(1460), - [anon_sym_DOLLARconcat] = ACTIONS(1460), - [anon_sym_DOLLAReval] = ACTIONS(1460), - [anon_sym_DOLLARis_const] = ACTIONS(1460), - [anon_sym_DOLLARsizeof] = ACTIONS(1460), - [anon_sym_DOLLARstringify] = ACTIONS(1460), - [anon_sym_DOLLARand] = ACTIONS(1460), - [anon_sym_DOLLARdefined] = ACTIONS(1460), - [anon_sym_DOLLARembed] = ACTIONS(1460), - [anon_sym_DOLLARor] = ACTIONS(1460), - [anon_sym_DOLLARfeature] = ACTIONS(1460), - [anon_sym_DOLLARassignable] = ACTIONS(1460), - [anon_sym_BANG] = ACTIONS(1462), - [anon_sym_TILDE] = ACTIONS(1462), - [anon_sym_PLUS_PLUS] = ACTIONS(1462), - [anon_sym_DASH_DASH] = ACTIONS(1462), - [anon_sym_typeid] = ACTIONS(1460), - [anon_sym_LBRACE_PIPE] = ACTIONS(1462), - [anon_sym_void] = ACTIONS(1460), - [anon_sym_bool] = ACTIONS(1460), - [anon_sym_char] = ACTIONS(1460), - [anon_sym_ichar] = ACTIONS(1460), - [anon_sym_short] = ACTIONS(1460), - [anon_sym_ushort] = ACTIONS(1460), - [anon_sym_uint] = ACTIONS(1460), - [anon_sym_long] = ACTIONS(1460), - [anon_sym_ulong] = ACTIONS(1460), - [anon_sym_int128] = ACTIONS(1460), - [anon_sym_uint128] = ACTIONS(1460), - [anon_sym_float] = ACTIONS(1460), - [anon_sym_double] = ACTIONS(1460), - [anon_sym_float16] = ACTIONS(1460), - [anon_sym_bfloat16] = ACTIONS(1460), - [anon_sym_float128] = ACTIONS(1460), - [anon_sym_iptr] = ACTIONS(1460), - [anon_sym_uptr] = ACTIONS(1460), - [anon_sym_isz] = ACTIONS(1460), - [anon_sym_usz] = ACTIONS(1460), - [anon_sym_anyfault] = ACTIONS(1460), - [anon_sym_any] = ACTIONS(1460), - [anon_sym_DOLLARtypeof] = ACTIONS(1460), - [anon_sym_DOLLARtypefrom] = ACTIONS(1460), - [anon_sym_DOLLARvatype] = ACTIONS(1460), - [anon_sym_DOLLARevaltype] = ACTIONS(1460), - [sym_real_literal] = ACTIONS(1462), + [sym_ident] = ACTIONS(1379), + [sym_integer_literal] = ACTIONS(1381), + [anon_sym_SQUOTE] = ACTIONS(1381), + [anon_sym_DQUOTE] = ACTIONS(1381), + [anon_sym_BQUOTE] = ACTIONS(1381), + [sym_bytes_literal] = ACTIONS(1381), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1379), + [sym_at_ident] = ACTIONS(1381), + [sym_hash_ident] = ACTIONS(1381), + [sym_type_ident] = ACTIONS(1381), + [sym_ct_type_ident] = ACTIONS(1381), + [sym_const_ident] = ACTIONS(1379), + [sym_builtin] = ACTIONS(1381), + [anon_sym_LPAREN] = ACTIONS(1381), + [anon_sym_AMP] = ACTIONS(1379), + [anon_sym_static] = ACTIONS(1379), + [anon_sym_tlocal] = ACTIONS(1379), + [anon_sym_SEMI] = ACTIONS(1381), + [anon_sym_fn] = ACTIONS(1379), + [anon_sym_LBRACE] = ACTIONS(1379), + [anon_sym_const] = ACTIONS(1379), + [anon_sym_var] = ACTIONS(1379), + [anon_sym_return] = ACTIONS(1379), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_break] = ACTIONS(1379), + [anon_sym_defer] = ACTIONS(1379), + [anon_sym_assert] = ACTIONS(1379), + [anon_sym_nextcase] = ACTIONS(1379), + [anon_sym_switch] = ACTIONS(1379), + [anon_sym_AMP_AMP] = ACTIONS(1381), + [anon_sym_if] = ACTIONS(1379), + [anon_sym_for] = ACTIONS(1379), + [anon_sym_foreach] = ACTIONS(1379), + [anon_sym_foreach_r] = ACTIONS(1379), + [anon_sym_while] = ACTIONS(1379), + [anon_sym_do] = ACTIONS(1379), + [anon_sym_int] = ACTIONS(1379), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(1381), + [anon_sym_asm] = ACTIONS(1379), + [anon_sym_DOLLARassert] = ACTIONS(1379), + [anon_sym_DOLLARerror] = ACTIONS(1379), + [anon_sym_DOLLARecho] = ACTIONS(1379), + [anon_sym_DOLLARif] = ACTIONS(1379), + [anon_sym_DOLLARendif] = ACTIONS(1379), + [anon_sym_DOLLARelse] = ACTIONS(1379), + [anon_sym_DOLLARswitch] = ACTIONS(1379), + [anon_sym_DOLLARfor] = ACTIONS(1379), + [anon_sym_DOLLARforeach] = ACTIONS(1379), + [anon_sym_DOLLARalignof] = ACTIONS(1379), + [anon_sym_DOLLARextnameof] = ACTIONS(1379), + [anon_sym_DOLLARnameof] = ACTIONS(1379), + [anon_sym_DOLLARoffsetof] = ACTIONS(1379), + [anon_sym_DOLLARqnameof] = ACTIONS(1379), + [anon_sym_DOLLARvaconst] = ACTIONS(1379), + [anon_sym_DOLLARvaarg] = ACTIONS(1379), + [anon_sym_DOLLARvaref] = ACTIONS(1379), + [anon_sym_DOLLARvaexpr] = ACTIONS(1379), + [anon_sym_true] = ACTIONS(1379), + [anon_sym_false] = ACTIONS(1379), + [anon_sym_null] = ACTIONS(1379), + [anon_sym_DOLLARvacount] = ACTIONS(1379), + [anon_sym_DOLLARappend] = ACTIONS(1379), + [anon_sym_DOLLARconcat] = ACTIONS(1379), + [anon_sym_DOLLAReval] = ACTIONS(1379), + [anon_sym_DOLLARis_const] = ACTIONS(1379), + [anon_sym_DOLLARsizeof] = ACTIONS(1379), + [anon_sym_DOLLARstringify] = ACTIONS(1379), + [anon_sym_DOLLARand] = ACTIONS(1379), + [anon_sym_DOLLARdefined] = ACTIONS(1379), + [anon_sym_DOLLARembed] = ACTIONS(1379), + [anon_sym_DOLLARor] = ACTIONS(1379), + [anon_sym_DOLLARfeature] = ACTIONS(1379), + [anon_sym_DOLLARassignable] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_PLUS_PLUS] = ACTIONS(1381), + [anon_sym_DASH_DASH] = ACTIONS(1381), + [anon_sym_typeid] = ACTIONS(1379), + [anon_sym_LBRACE_PIPE] = ACTIONS(1381), + [anon_sym_void] = ACTIONS(1379), + [anon_sym_bool] = ACTIONS(1379), + [anon_sym_char] = ACTIONS(1379), + [anon_sym_ichar] = ACTIONS(1379), + [anon_sym_short] = ACTIONS(1379), + [anon_sym_ushort] = ACTIONS(1379), + [anon_sym_uint] = ACTIONS(1379), + [anon_sym_long] = ACTIONS(1379), + [anon_sym_ulong] = ACTIONS(1379), + [anon_sym_int128] = ACTIONS(1379), + [anon_sym_uint128] = ACTIONS(1379), + [anon_sym_float] = ACTIONS(1379), + [anon_sym_double] = ACTIONS(1379), + [anon_sym_float16] = ACTIONS(1379), + [anon_sym_bfloat16] = ACTIONS(1379), + [anon_sym_float128] = ACTIONS(1379), + [anon_sym_iptr] = ACTIONS(1379), + [anon_sym_uptr] = ACTIONS(1379), + [anon_sym_isz] = ACTIONS(1379), + [anon_sym_usz] = ACTIONS(1379), + [anon_sym_anyfault] = ACTIONS(1379), + [anon_sym_any] = ACTIONS(1379), + [anon_sym_DOLLARtypeof] = ACTIONS(1379), + [anon_sym_DOLLARtypefrom] = ACTIONS(1379), + [anon_sym_DOLLARvatype] = ACTIONS(1379), + [anon_sym_DOLLARevaltype] = ACTIONS(1379), + [sym_real_literal] = ACTIONS(1381), }, [526] = { [sym_line_comment] = STATE(526), [sym_doc_comment] = STATE(526), [sym_block_comment] = STATE(526), - [sym_ident] = ACTIONS(1472), - [sym_integer_literal] = ACTIONS(1474), - [anon_sym_SQUOTE] = ACTIONS(1474), - [anon_sym_DQUOTE] = ACTIONS(1474), - [anon_sym_BQUOTE] = ACTIONS(1474), - [sym_bytes_literal] = ACTIONS(1474), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1472), - [sym_at_ident] = ACTIONS(1474), - [sym_hash_ident] = ACTIONS(1474), - [sym_type_ident] = ACTIONS(1474), - [sym_ct_type_ident] = ACTIONS(1474), - [sym_const_ident] = ACTIONS(1472), - [sym_builtin] = ACTIONS(1474), - [anon_sym_LPAREN] = ACTIONS(1474), - [anon_sym_AMP] = ACTIONS(1472), - [anon_sym_static] = ACTIONS(1472), - [anon_sym_tlocal] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1474), - [anon_sym_fn] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1472), - [anon_sym_const] = ACTIONS(1472), - [anon_sym_var] = ACTIONS(1472), - [anon_sym_return] = ACTIONS(1472), - [anon_sym_continue] = ACTIONS(1472), - [anon_sym_break] = ACTIONS(1472), - [anon_sym_defer] = ACTIONS(1472), - [anon_sym_assert] = ACTIONS(1472), - [anon_sym_nextcase] = ACTIONS(1472), - [anon_sym_switch] = ACTIONS(1472), - [anon_sym_AMP_AMP] = ACTIONS(1474), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_for] = ACTIONS(1472), - [anon_sym_foreach] = ACTIONS(1472), - [anon_sym_foreach_r] = ACTIONS(1472), - [anon_sym_while] = ACTIONS(1472), - [anon_sym_do] = ACTIONS(1472), - [anon_sym_int] = ACTIONS(1472), - [anon_sym_PLUS] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1472), - [anon_sym_STAR] = ACTIONS(1474), - [anon_sym_asm] = ACTIONS(1472), - [anon_sym_DOLLARassert] = ACTIONS(1472), - [anon_sym_DOLLARerror] = ACTIONS(1472), - [anon_sym_DOLLARecho] = ACTIONS(1472), - [anon_sym_DOLLARif] = ACTIONS(1472), - [anon_sym_DOLLARcase] = ACTIONS(1472), - [anon_sym_DOLLARdefault] = ACTIONS(1472), - [anon_sym_DOLLARswitch] = ACTIONS(1472), - [anon_sym_DOLLARendswitch] = ACTIONS(1472), - [anon_sym_DOLLARfor] = ACTIONS(1472), - [anon_sym_DOLLARforeach] = ACTIONS(1472), - [anon_sym_DOLLARalignof] = ACTIONS(1472), - [anon_sym_DOLLARextnameof] = ACTIONS(1472), - [anon_sym_DOLLARnameof] = ACTIONS(1472), - [anon_sym_DOLLARoffsetof] = ACTIONS(1472), - [anon_sym_DOLLARqnameof] = ACTIONS(1472), - [anon_sym_DOLLARvaconst] = ACTIONS(1472), - [anon_sym_DOLLARvaarg] = ACTIONS(1472), - [anon_sym_DOLLARvaref] = ACTIONS(1472), - [anon_sym_DOLLARvaexpr] = ACTIONS(1472), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_null] = ACTIONS(1472), - [anon_sym_DOLLARvacount] = ACTIONS(1472), - [anon_sym_DOLLARappend] = ACTIONS(1472), - [anon_sym_DOLLARconcat] = ACTIONS(1472), - [anon_sym_DOLLAReval] = ACTIONS(1472), - [anon_sym_DOLLARis_const] = ACTIONS(1472), - [anon_sym_DOLLARsizeof] = ACTIONS(1472), - [anon_sym_DOLLARstringify] = ACTIONS(1472), - [anon_sym_DOLLARand] = ACTIONS(1472), - [anon_sym_DOLLARdefined] = ACTIONS(1472), - [anon_sym_DOLLARembed] = ACTIONS(1472), - [anon_sym_DOLLARor] = ACTIONS(1472), - [anon_sym_DOLLARfeature] = ACTIONS(1472), - [anon_sym_DOLLARassignable] = ACTIONS(1472), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_TILDE] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1474), - [anon_sym_DASH_DASH] = ACTIONS(1474), - [anon_sym_typeid] = ACTIONS(1472), - [anon_sym_LBRACE_PIPE] = ACTIONS(1474), - [anon_sym_void] = ACTIONS(1472), - [anon_sym_bool] = ACTIONS(1472), - [anon_sym_char] = ACTIONS(1472), - [anon_sym_ichar] = ACTIONS(1472), - [anon_sym_short] = ACTIONS(1472), - [anon_sym_ushort] = ACTIONS(1472), - [anon_sym_uint] = ACTIONS(1472), - [anon_sym_long] = ACTIONS(1472), - [anon_sym_ulong] = ACTIONS(1472), - [anon_sym_int128] = ACTIONS(1472), - [anon_sym_uint128] = ACTIONS(1472), - [anon_sym_float] = ACTIONS(1472), - [anon_sym_double] = ACTIONS(1472), - [anon_sym_float16] = ACTIONS(1472), - [anon_sym_bfloat16] = ACTIONS(1472), - [anon_sym_float128] = ACTIONS(1472), - [anon_sym_iptr] = ACTIONS(1472), - [anon_sym_uptr] = ACTIONS(1472), - [anon_sym_isz] = ACTIONS(1472), - [anon_sym_usz] = ACTIONS(1472), - [anon_sym_anyfault] = ACTIONS(1472), - [anon_sym_any] = ACTIONS(1472), - [anon_sym_DOLLARtypeof] = ACTIONS(1472), - [anon_sym_DOLLARtypefrom] = ACTIONS(1472), - [anon_sym_DOLLARvatype] = ACTIONS(1472), - [anon_sym_DOLLARevaltype] = ACTIONS(1472), - [sym_real_literal] = ACTIONS(1474), + [sym_ident] = ACTIONS(1351), + [sym_integer_literal] = ACTIONS(1353), + [anon_sym_SQUOTE] = ACTIONS(1353), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_BQUOTE] = ACTIONS(1353), + [sym_bytes_literal] = ACTIONS(1353), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1351), + [sym_at_ident] = ACTIONS(1353), + [sym_hash_ident] = ACTIONS(1353), + [sym_type_ident] = ACTIONS(1353), + [sym_ct_type_ident] = ACTIONS(1353), + [sym_const_ident] = ACTIONS(1351), + [sym_builtin] = ACTIONS(1353), + [anon_sym_LPAREN] = ACTIONS(1353), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_static] = ACTIONS(1351), + [anon_sym_tlocal] = ACTIONS(1351), + [anon_sym_SEMI] = ACTIONS(1353), + [anon_sym_fn] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1351), + [anon_sym_const] = ACTIONS(1351), + [anon_sym_var] = ACTIONS(1351), + [anon_sym_return] = ACTIONS(1351), + [anon_sym_continue] = ACTIONS(1351), + [anon_sym_break] = ACTIONS(1351), + [anon_sym_defer] = ACTIONS(1351), + [anon_sym_assert] = ACTIONS(1351), + [anon_sym_nextcase] = ACTIONS(1351), + [anon_sym_switch] = ACTIONS(1351), + [anon_sym_AMP_AMP] = ACTIONS(1353), + [anon_sym_if] = ACTIONS(1351), + [anon_sym_else] = ACTIONS(1351), + [anon_sym_for] = ACTIONS(1351), + [anon_sym_foreach] = ACTIONS(1351), + [anon_sym_foreach_r] = ACTIONS(1351), + [anon_sym_while] = ACTIONS(1351), + [anon_sym_do] = ACTIONS(1351), + [anon_sym_int] = ACTIONS(1351), + [anon_sym_PLUS] = ACTIONS(1351), + [anon_sym_DASH] = ACTIONS(1351), + [anon_sym_STAR] = ACTIONS(1353), + [anon_sym_asm] = ACTIONS(1351), + [anon_sym_DOLLARassert] = ACTIONS(1351), + [anon_sym_DOLLARerror] = ACTIONS(1351), + [anon_sym_DOLLARecho] = ACTIONS(1351), + [anon_sym_DOLLARif] = ACTIONS(1351), + [anon_sym_DOLLARswitch] = ACTIONS(1351), + [anon_sym_DOLLARfor] = ACTIONS(1351), + [anon_sym_DOLLARforeach] = ACTIONS(1351), + [anon_sym_DOLLARendforeach] = ACTIONS(1351), + [anon_sym_DOLLARalignof] = ACTIONS(1351), + [anon_sym_DOLLARextnameof] = ACTIONS(1351), + [anon_sym_DOLLARnameof] = ACTIONS(1351), + [anon_sym_DOLLARoffsetof] = ACTIONS(1351), + [anon_sym_DOLLARqnameof] = ACTIONS(1351), + [anon_sym_DOLLARvaconst] = ACTIONS(1351), + [anon_sym_DOLLARvaarg] = ACTIONS(1351), + [anon_sym_DOLLARvaref] = ACTIONS(1351), + [anon_sym_DOLLARvaexpr] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_null] = ACTIONS(1351), + [anon_sym_DOLLARvacount] = ACTIONS(1351), + [anon_sym_DOLLARappend] = ACTIONS(1351), + [anon_sym_DOLLARconcat] = ACTIONS(1351), + [anon_sym_DOLLAReval] = ACTIONS(1351), + [anon_sym_DOLLARis_const] = ACTIONS(1351), + [anon_sym_DOLLARsizeof] = ACTIONS(1351), + [anon_sym_DOLLARstringify] = ACTIONS(1351), + [anon_sym_DOLLARand] = ACTIONS(1351), + [anon_sym_DOLLARdefined] = ACTIONS(1351), + [anon_sym_DOLLARembed] = ACTIONS(1351), + [anon_sym_DOLLARor] = ACTIONS(1351), + [anon_sym_DOLLARfeature] = ACTIONS(1351), + [anon_sym_DOLLARassignable] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_PLUS_PLUS] = ACTIONS(1353), + [anon_sym_DASH_DASH] = ACTIONS(1353), + [anon_sym_typeid] = ACTIONS(1351), + [anon_sym_LBRACE_PIPE] = ACTIONS(1353), + [anon_sym_void] = ACTIONS(1351), + [anon_sym_bool] = ACTIONS(1351), + [anon_sym_char] = ACTIONS(1351), + [anon_sym_ichar] = ACTIONS(1351), + [anon_sym_short] = ACTIONS(1351), + [anon_sym_ushort] = ACTIONS(1351), + [anon_sym_uint] = ACTIONS(1351), + [anon_sym_long] = ACTIONS(1351), + [anon_sym_ulong] = ACTIONS(1351), + [anon_sym_int128] = ACTIONS(1351), + [anon_sym_uint128] = ACTIONS(1351), + [anon_sym_float] = ACTIONS(1351), + [anon_sym_double] = ACTIONS(1351), + [anon_sym_float16] = ACTIONS(1351), + [anon_sym_bfloat16] = ACTIONS(1351), + [anon_sym_float128] = ACTIONS(1351), + [anon_sym_iptr] = ACTIONS(1351), + [anon_sym_uptr] = ACTIONS(1351), + [anon_sym_isz] = ACTIONS(1351), + [anon_sym_usz] = ACTIONS(1351), + [anon_sym_anyfault] = ACTIONS(1351), + [anon_sym_any] = ACTIONS(1351), + [anon_sym_DOLLARtypeof] = ACTIONS(1351), + [anon_sym_DOLLARtypefrom] = ACTIONS(1351), + [anon_sym_DOLLARvatype] = ACTIONS(1351), + [anon_sym_DOLLARevaltype] = ACTIONS(1351), + [sym_real_literal] = ACTIONS(1353), }, [527] = { [sym_line_comment] = STATE(527), [sym_doc_comment] = STATE(527), [sym_block_comment] = STATE(527), - [sym_ident] = ACTIONS(1476), - [sym_integer_literal] = ACTIONS(1478), - [anon_sym_SQUOTE] = ACTIONS(1478), - [anon_sym_DQUOTE] = ACTIONS(1478), - [anon_sym_BQUOTE] = ACTIONS(1478), - [sym_bytes_literal] = ACTIONS(1478), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1476), - [sym_at_ident] = ACTIONS(1478), - [sym_hash_ident] = ACTIONS(1478), - [sym_type_ident] = ACTIONS(1478), - [sym_ct_type_ident] = ACTIONS(1478), - [sym_const_ident] = ACTIONS(1476), - [sym_builtin] = ACTIONS(1478), - [anon_sym_LPAREN] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_static] = ACTIONS(1476), - [anon_sym_tlocal] = ACTIONS(1476), - [anon_sym_SEMI] = ACTIONS(1478), - [anon_sym_fn] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1476), - [anon_sym_const] = ACTIONS(1476), - [anon_sym_var] = ACTIONS(1476), - [anon_sym_return] = ACTIONS(1476), - [anon_sym_continue] = ACTIONS(1476), - [anon_sym_break] = ACTIONS(1476), - [anon_sym_defer] = ACTIONS(1476), - [anon_sym_assert] = ACTIONS(1476), - [anon_sym_nextcase] = ACTIONS(1476), - [anon_sym_switch] = ACTIONS(1476), - [anon_sym_AMP_AMP] = ACTIONS(1478), - [anon_sym_if] = ACTIONS(1476), - [anon_sym_for] = ACTIONS(1476), - [anon_sym_foreach] = ACTIONS(1476), - [anon_sym_foreach_r] = ACTIONS(1476), - [anon_sym_while] = ACTIONS(1476), - [anon_sym_do] = ACTIONS(1476), - [anon_sym_int] = ACTIONS(1476), - [anon_sym_PLUS] = ACTIONS(1476), - [anon_sym_DASH] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_asm] = ACTIONS(1476), - [anon_sym_DOLLARassert] = ACTIONS(1476), - [anon_sym_DOLLARerror] = ACTIONS(1476), - [anon_sym_DOLLARecho] = ACTIONS(1476), - [anon_sym_DOLLARif] = ACTIONS(1476), - [anon_sym_DOLLARcase] = ACTIONS(1476), - [anon_sym_DOLLARdefault] = ACTIONS(1476), - [anon_sym_DOLLARswitch] = ACTIONS(1476), - [anon_sym_DOLLARendswitch] = ACTIONS(1476), - [anon_sym_DOLLARfor] = ACTIONS(1476), - [anon_sym_DOLLARforeach] = ACTIONS(1476), - [anon_sym_DOLLARalignof] = ACTIONS(1476), - [anon_sym_DOLLARextnameof] = ACTIONS(1476), - [anon_sym_DOLLARnameof] = ACTIONS(1476), - [anon_sym_DOLLARoffsetof] = ACTIONS(1476), - [anon_sym_DOLLARqnameof] = ACTIONS(1476), - [anon_sym_DOLLARvaconst] = ACTIONS(1476), - [anon_sym_DOLLARvaarg] = ACTIONS(1476), - [anon_sym_DOLLARvaref] = ACTIONS(1476), - [anon_sym_DOLLARvaexpr] = ACTIONS(1476), - [anon_sym_true] = ACTIONS(1476), - [anon_sym_false] = ACTIONS(1476), - [anon_sym_null] = ACTIONS(1476), - [anon_sym_DOLLARvacount] = ACTIONS(1476), - [anon_sym_DOLLARappend] = ACTIONS(1476), - [anon_sym_DOLLARconcat] = ACTIONS(1476), - [anon_sym_DOLLAReval] = ACTIONS(1476), - [anon_sym_DOLLARis_const] = ACTIONS(1476), - [anon_sym_DOLLARsizeof] = ACTIONS(1476), - [anon_sym_DOLLARstringify] = ACTIONS(1476), - [anon_sym_DOLLARand] = ACTIONS(1476), - [anon_sym_DOLLARdefined] = ACTIONS(1476), - [anon_sym_DOLLARembed] = ACTIONS(1476), - [anon_sym_DOLLARor] = ACTIONS(1476), - [anon_sym_DOLLARfeature] = ACTIONS(1476), - [anon_sym_DOLLARassignable] = ACTIONS(1476), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_TILDE] = ACTIONS(1478), - [anon_sym_PLUS_PLUS] = ACTIONS(1478), - [anon_sym_DASH_DASH] = ACTIONS(1478), - [anon_sym_typeid] = ACTIONS(1476), - [anon_sym_LBRACE_PIPE] = ACTIONS(1478), - [anon_sym_void] = ACTIONS(1476), - [anon_sym_bool] = ACTIONS(1476), - [anon_sym_char] = ACTIONS(1476), - [anon_sym_ichar] = ACTIONS(1476), - [anon_sym_short] = ACTIONS(1476), - [anon_sym_ushort] = ACTIONS(1476), - [anon_sym_uint] = ACTIONS(1476), - [anon_sym_long] = ACTIONS(1476), - [anon_sym_ulong] = ACTIONS(1476), - [anon_sym_int128] = ACTIONS(1476), - [anon_sym_uint128] = ACTIONS(1476), - [anon_sym_float] = ACTIONS(1476), - [anon_sym_double] = ACTIONS(1476), - [anon_sym_float16] = ACTIONS(1476), - [anon_sym_bfloat16] = ACTIONS(1476), - [anon_sym_float128] = ACTIONS(1476), - [anon_sym_iptr] = ACTIONS(1476), - [anon_sym_uptr] = ACTIONS(1476), - [anon_sym_isz] = ACTIONS(1476), - [anon_sym_usz] = ACTIONS(1476), - [anon_sym_anyfault] = ACTIONS(1476), - [anon_sym_any] = ACTIONS(1476), - [anon_sym_DOLLARtypeof] = ACTIONS(1476), - [anon_sym_DOLLARtypefrom] = ACTIONS(1476), - [anon_sym_DOLLARvatype] = ACTIONS(1476), - [anon_sym_DOLLARevaltype] = ACTIONS(1476), - [sym_real_literal] = ACTIONS(1478), + [sym_ident] = ACTIONS(1383), + [sym_integer_literal] = ACTIONS(1385), + [anon_sym_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE] = ACTIONS(1385), + [anon_sym_BQUOTE] = ACTIONS(1385), + [sym_bytes_literal] = ACTIONS(1385), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1383), + [sym_at_ident] = ACTIONS(1385), + [sym_hash_ident] = ACTIONS(1385), + [sym_type_ident] = ACTIONS(1385), + [sym_ct_type_ident] = ACTIONS(1385), + [sym_const_ident] = ACTIONS(1383), + [sym_builtin] = ACTIONS(1385), + [anon_sym_LPAREN] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_static] = ACTIONS(1383), + [anon_sym_tlocal] = ACTIONS(1383), + [anon_sym_SEMI] = ACTIONS(1385), + [anon_sym_fn] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1383), + [anon_sym_const] = ACTIONS(1383), + [anon_sym_var] = ACTIONS(1383), + [anon_sym_return] = ACTIONS(1383), + [anon_sym_continue] = ACTIONS(1383), + [anon_sym_break] = ACTIONS(1383), + [anon_sym_defer] = ACTIONS(1383), + [anon_sym_assert] = ACTIONS(1383), + [anon_sym_nextcase] = ACTIONS(1383), + [anon_sym_switch] = ACTIONS(1383), + [anon_sym_AMP_AMP] = ACTIONS(1385), + [anon_sym_if] = ACTIONS(1383), + [anon_sym_for] = ACTIONS(1383), + [anon_sym_foreach] = ACTIONS(1383), + [anon_sym_foreach_r] = ACTIONS(1383), + [anon_sym_while] = ACTIONS(1383), + [anon_sym_do] = ACTIONS(1383), + [anon_sym_int] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1383), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_STAR] = ACTIONS(1385), + [anon_sym_asm] = ACTIONS(1383), + [anon_sym_DOLLARassert] = ACTIONS(1383), + [anon_sym_DOLLARerror] = ACTIONS(1383), + [anon_sym_DOLLARecho] = ACTIONS(1383), + [anon_sym_DOLLARif] = ACTIONS(1383), + [anon_sym_DOLLARendif] = ACTIONS(1383), + [anon_sym_DOLLARelse] = ACTIONS(1383), + [anon_sym_DOLLARswitch] = ACTIONS(1383), + [anon_sym_DOLLARfor] = ACTIONS(1383), + [anon_sym_DOLLARforeach] = ACTIONS(1383), + [anon_sym_DOLLARalignof] = ACTIONS(1383), + [anon_sym_DOLLARextnameof] = ACTIONS(1383), + [anon_sym_DOLLARnameof] = ACTIONS(1383), + [anon_sym_DOLLARoffsetof] = ACTIONS(1383), + [anon_sym_DOLLARqnameof] = ACTIONS(1383), + [anon_sym_DOLLARvaconst] = ACTIONS(1383), + [anon_sym_DOLLARvaarg] = ACTIONS(1383), + [anon_sym_DOLLARvaref] = ACTIONS(1383), + [anon_sym_DOLLARvaexpr] = ACTIONS(1383), + [anon_sym_true] = ACTIONS(1383), + [anon_sym_false] = ACTIONS(1383), + [anon_sym_null] = ACTIONS(1383), + [anon_sym_DOLLARvacount] = ACTIONS(1383), + [anon_sym_DOLLARappend] = ACTIONS(1383), + [anon_sym_DOLLARconcat] = ACTIONS(1383), + [anon_sym_DOLLAReval] = ACTIONS(1383), + [anon_sym_DOLLARis_const] = ACTIONS(1383), + [anon_sym_DOLLARsizeof] = ACTIONS(1383), + [anon_sym_DOLLARstringify] = ACTIONS(1383), + [anon_sym_DOLLARand] = ACTIONS(1383), + [anon_sym_DOLLARdefined] = ACTIONS(1383), + [anon_sym_DOLLARembed] = ACTIONS(1383), + [anon_sym_DOLLARor] = ACTIONS(1383), + [anon_sym_DOLLARfeature] = ACTIONS(1383), + [anon_sym_DOLLARassignable] = ACTIONS(1383), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_TILDE] = ACTIONS(1385), + [anon_sym_PLUS_PLUS] = ACTIONS(1385), + [anon_sym_DASH_DASH] = ACTIONS(1385), + [anon_sym_typeid] = ACTIONS(1383), + [anon_sym_LBRACE_PIPE] = ACTIONS(1385), + [anon_sym_void] = ACTIONS(1383), + [anon_sym_bool] = ACTIONS(1383), + [anon_sym_char] = ACTIONS(1383), + [anon_sym_ichar] = ACTIONS(1383), + [anon_sym_short] = ACTIONS(1383), + [anon_sym_ushort] = ACTIONS(1383), + [anon_sym_uint] = ACTIONS(1383), + [anon_sym_long] = ACTIONS(1383), + [anon_sym_ulong] = ACTIONS(1383), + [anon_sym_int128] = ACTIONS(1383), + [anon_sym_uint128] = ACTIONS(1383), + [anon_sym_float] = ACTIONS(1383), + [anon_sym_double] = ACTIONS(1383), + [anon_sym_float16] = ACTIONS(1383), + [anon_sym_bfloat16] = ACTIONS(1383), + [anon_sym_float128] = ACTIONS(1383), + [anon_sym_iptr] = ACTIONS(1383), + [anon_sym_uptr] = ACTIONS(1383), + [anon_sym_isz] = ACTIONS(1383), + [anon_sym_usz] = ACTIONS(1383), + [anon_sym_anyfault] = ACTIONS(1383), + [anon_sym_any] = ACTIONS(1383), + [anon_sym_DOLLARtypeof] = ACTIONS(1383), + [anon_sym_DOLLARtypefrom] = ACTIONS(1383), + [anon_sym_DOLLARvatype] = ACTIONS(1383), + [anon_sym_DOLLARevaltype] = ACTIONS(1383), + [sym_real_literal] = ACTIONS(1385), }, [528] = { [sym_line_comment] = STATE(528), [sym_doc_comment] = STATE(528), [sym_block_comment] = STATE(528), - [sym_ident] = ACTIONS(1480), - [sym_integer_literal] = ACTIONS(1482), - [anon_sym_SQUOTE] = ACTIONS(1482), - [anon_sym_DQUOTE] = ACTIONS(1482), - [anon_sym_BQUOTE] = ACTIONS(1482), - [sym_bytes_literal] = ACTIONS(1482), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1480), - [sym_at_ident] = ACTIONS(1482), - [sym_hash_ident] = ACTIONS(1482), - [sym_type_ident] = ACTIONS(1482), - [sym_ct_type_ident] = ACTIONS(1482), - [sym_const_ident] = ACTIONS(1480), - [sym_builtin] = ACTIONS(1482), - [anon_sym_LPAREN] = ACTIONS(1482), - [anon_sym_AMP] = ACTIONS(1480), - [anon_sym_static] = ACTIONS(1480), - [anon_sym_tlocal] = ACTIONS(1480), - [anon_sym_SEMI] = ACTIONS(1482), - [anon_sym_fn] = ACTIONS(1480), - [anon_sym_LBRACE] = ACTIONS(1480), - [anon_sym_const] = ACTIONS(1480), - [anon_sym_var] = ACTIONS(1480), - [anon_sym_return] = ACTIONS(1480), - [anon_sym_continue] = ACTIONS(1480), - [anon_sym_break] = ACTIONS(1480), - [anon_sym_defer] = ACTIONS(1480), - [anon_sym_assert] = ACTIONS(1480), - [anon_sym_nextcase] = ACTIONS(1480), - [anon_sym_switch] = ACTIONS(1480), - [anon_sym_AMP_AMP] = ACTIONS(1482), - [anon_sym_if] = ACTIONS(1480), - [anon_sym_for] = ACTIONS(1480), - [anon_sym_foreach] = ACTIONS(1480), - [anon_sym_foreach_r] = ACTIONS(1480), - [anon_sym_while] = ACTIONS(1480), - [anon_sym_do] = ACTIONS(1480), - [anon_sym_int] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1480), - [anon_sym_DASH] = ACTIONS(1480), - [anon_sym_STAR] = ACTIONS(1482), - [anon_sym_asm] = ACTIONS(1480), - [anon_sym_DOLLARassert] = ACTIONS(1480), - [anon_sym_DOLLARerror] = ACTIONS(1480), - [anon_sym_DOLLARecho] = ACTIONS(1480), - [anon_sym_DOLLARif] = ACTIONS(1480), - [anon_sym_DOLLARcase] = ACTIONS(1480), - [anon_sym_DOLLARdefault] = ACTIONS(1480), - [anon_sym_DOLLARswitch] = ACTIONS(1480), - [anon_sym_DOLLARendswitch] = ACTIONS(1480), - [anon_sym_DOLLARfor] = ACTIONS(1480), - [anon_sym_DOLLARforeach] = ACTIONS(1480), - [anon_sym_DOLLARalignof] = ACTIONS(1480), - [anon_sym_DOLLARextnameof] = ACTIONS(1480), - [anon_sym_DOLLARnameof] = ACTIONS(1480), - [anon_sym_DOLLARoffsetof] = ACTIONS(1480), - [anon_sym_DOLLARqnameof] = ACTIONS(1480), - [anon_sym_DOLLARvaconst] = ACTIONS(1480), - [anon_sym_DOLLARvaarg] = ACTIONS(1480), - [anon_sym_DOLLARvaref] = ACTIONS(1480), - [anon_sym_DOLLARvaexpr] = ACTIONS(1480), - [anon_sym_true] = ACTIONS(1480), - [anon_sym_false] = ACTIONS(1480), - [anon_sym_null] = ACTIONS(1480), - [anon_sym_DOLLARvacount] = ACTIONS(1480), - [anon_sym_DOLLARappend] = ACTIONS(1480), - [anon_sym_DOLLARconcat] = ACTIONS(1480), - [anon_sym_DOLLAReval] = ACTIONS(1480), - [anon_sym_DOLLARis_const] = ACTIONS(1480), - [anon_sym_DOLLARsizeof] = ACTIONS(1480), - [anon_sym_DOLLARstringify] = ACTIONS(1480), - [anon_sym_DOLLARand] = ACTIONS(1480), - [anon_sym_DOLLARdefined] = ACTIONS(1480), - [anon_sym_DOLLARembed] = ACTIONS(1480), - [anon_sym_DOLLARor] = ACTIONS(1480), - [anon_sym_DOLLARfeature] = ACTIONS(1480), - [anon_sym_DOLLARassignable] = ACTIONS(1480), - [anon_sym_BANG] = ACTIONS(1482), - [anon_sym_TILDE] = ACTIONS(1482), - [anon_sym_PLUS_PLUS] = ACTIONS(1482), - [anon_sym_DASH_DASH] = ACTIONS(1482), - [anon_sym_typeid] = ACTIONS(1480), - [anon_sym_LBRACE_PIPE] = ACTIONS(1482), - [anon_sym_void] = ACTIONS(1480), - [anon_sym_bool] = ACTIONS(1480), - [anon_sym_char] = ACTIONS(1480), - [anon_sym_ichar] = ACTIONS(1480), - [anon_sym_short] = ACTIONS(1480), - [anon_sym_ushort] = ACTIONS(1480), - [anon_sym_uint] = ACTIONS(1480), - [anon_sym_long] = ACTIONS(1480), - [anon_sym_ulong] = ACTIONS(1480), - [anon_sym_int128] = ACTIONS(1480), - [anon_sym_uint128] = ACTIONS(1480), - [anon_sym_float] = ACTIONS(1480), - [anon_sym_double] = ACTIONS(1480), - [anon_sym_float16] = ACTIONS(1480), - [anon_sym_bfloat16] = ACTIONS(1480), - [anon_sym_float128] = ACTIONS(1480), - [anon_sym_iptr] = ACTIONS(1480), - [anon_sym_uptr] = ACTIONS(1480), - [anon_sym_isz] = ACTIONS(1480), - [anon_sym_usz] = ACTIONS(1480), - [anon_sym_anyfault] = ACTIONS(1480), - [anon_sym_any] = ACTIONS(1480), - [anon_sym_DOLLARtypeof] = ACTIONS(1480), - [anon_sym_DOLLARtypefrom] = ACTIONS(1480), - [anon_sym_DOLLARvatype] = ACTIONS(1480), - [anon_sym_DOLLARevaltype] = ACTIONS(1480), - [sym_real_literal] = ACTIONS(1482), + [sym_ident] = ACTIONS(1351), + [sym_integer_literal] = ACTIONS(1353), + [anon_sym_SQUOTE] = ACTIONS(1353), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_BQUOTE] = ACTIONS(1353), + [sym_bytes_literal] = ACTIONS(1353), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1351), + [sym_at_ident] = ACTIONS(1353), + [sym_hash_ident] = ACTIONS(1353), + [sym_type_ident] = ACTIONS(1353), + [sym_ct_type_ident] = ACTIONS(1353), + [sym_const_ident] = ACTIONS(1351), + [sym_builtin] = ACTIONS(1353), + [anon_sym_LPAREN] = ACTIONS(1353), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_static] = ACTIONS(1351), + [anon_sym_tlocal] = ACTIONS(1351), + [anon_sym_SEMI] = ACTIONS(1353), + [anon_sym_fn] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1351), + [anon_sym_const] = ACTIONS(1351), + [anon_sym_var] = ACTIONS(1351), + [anon_sym_return] = ACTIONS(1351), + [anon_sym_continue] = ACTIONS(1351), + [anon_sym_break] = ACTIONS(1351), + [anon_sym_defer] = ACTIONS(1351), + [anon_sym_assert] = ACTIONS(1351), + [anon_sym_nextcase] = ACTIONS(1351), + [anon_sym_switch] = ACTIONS(1351), + [anon_sym_AMP_AMP] = ACTIONS(1353), + [anon_sym_if] = ACTIONS(1351), + [anon_sym_else] = ACTIONS(1351), + [anon_sym_for] = ACTIONS(1351), + [anon_sym_foreach] = ACTIONS(1351), + [anon_sym_foreach_r] = ACTIONS(1351), + [anon_sym_while] = ACTIONS(1351), + [anon_sym_do] = ACTIONS(1351), + [anon_sym_int] = ACTIONS(1351), + [anon_sym_PLUS] = ACTIONS(1351), + [anon_sym_DASH] = ACTIONS(1351), + [anon_sym_STAR] = ACTIONS(1353), + [anon_sym_asm] = ACTIONS(1351), + [anon_sym_DOLLARassert] = ACTIONS(1351), + [anon_sym_DOLLARerror] = ACTIONS(1351), + [anon_sym_DOLLARecho] = ACTIONS(1351), + [anon_sym_DOLLARif] = ACTIONS(1351), + [anon_sym_DOLLARendif] = ACTIONS(1351), + [anon_sym_DOLLARswitch] = ACTIONS(1351), + [anon_sym_DOLLARfor] = ACTIONS(1351), + [anon_sym_DOLLARforeach] = ACTIONS(1351), + [anon_sym_DOLLARalignof] = ACTIONS(1351), + [anon_sym_DOLLARextnameof] = ACTIONS(1351), + [anon_sym_DOLLARnameof] = ACTIONS(1351), + [anon_sym_DOLLARoffsetof] = ACTIONS(1351), + [anon_sym_DOLLARqnameof] = ACTIONS(1351), + [anon_sym_DOLLARvaconst] = ACTIONS(1351), + [anon_sym_DOLLARvaarg] = ACTIONS(1351), + [anon_sym_DOLLARvaref] = ACTIONS(1351), + [anon_sym_DOLLARvaexpr] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_null] = ACTIONS(1351), + [anon_sym_DOLLARvacount] = ACTIONS(1351), + [anon_sym_DOLLARappend] = ACTIONS(1351), + [anon_sym_DOLLARconcat] = ACTIONS(1351), + [anon_sym_DOLLAReval] = ACTIONS(1351), + [anon_sym_DOLLARis_const] = ACTIONS(1351), + [anon_sym_DOLLARsizeof] = ACTIONS(1351), + [anon_sym_DOLLARstringify] = ACTIONS(1351), + [anon_sym_DOLLARand] = ACTIONS(1351), + [anon_sym_DOLLARdefined] = ACTIONS(1351), + [anon_sym_DOLLARembed] = ACTIONS(1351), + [anon_sym_DOLLARor] = ACTIONS(1351), + [anon_sym_DOLLARfeature] = ACTIONS(1351), + [anon_sym_DOLLARassignable] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1353), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_PLUS_PLUS] = ACTIONS(1353), + [anon_sym_DASH_DASH] = ACTIONS(1353), + [anon_sym_typeid] = ACTIONS(1351), + [anon_sym_LBRACE_PIPE] = ACTIONS(1353), + [anon_sym_void] = ACTIONS(1351), + [anon_sym_bool] = ACTIONS(1351), + [anon_sym_char] = ACTIONS(1351), + [anon_sym_ichar] = ACTIONS(1351), + [anon_sym_short] = ACTIONS(1351), + [anon_sym_ushort] = ACTIONS(1351), + [anon_sym_uint] = ACTIONS(1351), + [anon_sym_long] = ACTIONS(1351), + [anon_sym_ulong] = ACTIONS(1351), + [anon_sym_int128] = ACTIONS(1351), + [anon_sym_uint128] = ACTIONS(1351), + [anon_sym_float] = ACTIONS(1351), + [anon_sym_double] = ACTIONS(1351), + [anon_sym_float16] = ACTIONS(1351), + [anon_sym_bfloat16] = ACTIONS(1351), + [anon_sym_float128] = ACTIONS(1351), + [anon_sym_iptr] = ACTIONS(1351), + [anon_sym_uptr] = ACTIONS(1351), + [anon_sym_isz] = ACTIONS(1351), + [anon_sym_usz] = ACTIONS(1351), + [anon_sym_anyfault] = ACTIONS(1351), + [anon_sym_any] = ACTIONS(1351), + [anon_sym_DOLLARtypeof] = ACTIONS(1351), + [anon_sym_DOLLARtypefrom] = ACTIONS(1351), + [anon_sym_DOLLARvatype] = ACTIONS(1351), + [anon_sym_DOLLARevaltype] = ACTIONS(1351), + [sym_real_literal] = ACTIONS(1353), }, [529] = { [sym_line_comment] = STATE(529), [sym_doc_comment] = STATE(529), [sym_block_comment] = STATE(529), - [sym_ident] = ACTIONS(1520), - [sym_integer_literal] = ACTIONS(1522), - [anon_sym_SQUOTE] = ACTIONS(1522), - [anon_sym_DQUOTE] = ACTIONS(1522), - [anon_sym_BQUOTE] = ACTIONS(1522), - [sym_bytes_literal] = ACTIONS(1522), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1520), - [sym_at_ident] = ACTIONS(1522), - [sym_hash_ident] = ACTIONS(1522), - [sym_type_ident] = ACTIONS(1522), - [sym_ct_type_ident] = ACTIONS(1522), - [sym_const_ident] = ACTIONS(1520), - [sym_builtin] = ACTIONS(1522), - [anon_sym_LPAREN] = ACTIONS(1522), - [anon_sym_AMP] = ACTIONS(1520), - [anon_sym_static] = ACTIONS(1520), - [anon_sym_tlocal] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1522), - [anon_sym_fn] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1520), - [anon_sym_const] = ACTIONS(1520), - [anon_sym_var] = ACTIONS(1520), - [anon_sym_return] = ACTIONS(1520), - [anon_sym_continue] = ACTIONS(1520), - [anon_sym_break] = ACTIONS(1520), - [anon_sym_defer] = ACTIONS(1520), - [anon_sym_assert] = ACTIONS(1520), - [anon_sym_nextcase] = ACTIONS(1520), - [anon_sym_switch] = ACTIONS(1520), - [anon_sym_AMP_AMP] = ACTIONS(1522), - [anon_sym_if] = ACTIONS(1520), - [anon_sym_for] = ACTIONS(1520), - [anon_sym_foreach] = ACTIONS(1520), - [anon_sym_foreach_r] = ACTIONS(1520), - [anon_sym_while] = ACTIONS(1520), - [anon_sym_do] = ACTIONS(1520), - [anon_sym_int] = ACTIONS(1520), - [anon_sym_PLUS] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1520), - [anon_sym_STAR] = ACTIONS(1522), - [anon_sym_asm] = ACTIONS(1520), - [anon_sym_DOLLARassert] = ACTIONS(1520), - [anon_sym_DOLLARerror] = ACTIONS(1520), - [anon_sym_DOLLARecho] = ACTIONS(1520), - [anon_sym_DOLLARif] = ACTIONS(1520), - [anon_sym_DOLLARcase] = ACTIONS(1520), - [anon_sym_DOLLARdefault] = ACTIONS(1520), - [anon_sym_DOLLARswitch] = ACTIONS(1520), - [anon_sym_DOLLARendswitch] = ACTIONS(1520), - [anon_sym_DOLLARfor] = ACTIONS(1520), - [anon_sym_DOLLARforeach] = ACTIONS(1520), - [anon_sym_DOLLARalignof] = ACTIONS(1520), - [anon_sym_DOLLARextnameof] = ACTIONS(1520), - [anon_sym_DOLLARnameof] = ACTIONS(1520), - [anon_sym_DOLLARoffsetof] = ACTIONS(1520), - [anon_sym_DOLLARqnameof] = ACTIONS(1520), - [anon_sym_DOLLARvaconst] = ACTIONS(1520), - [anon_sym_DOLLARvaarg] = ACTIONS(1520), - [anon_sym_DOLLARvaref] = ACTIONS(1520), - [anon_sym_DOLLARvaexpr] = ACTIONS(1520), - [anon_sym_true] = ACTIONS(1520), - [anon_sym_false] = ACTIONS(1520), - [anon_sym_null] = ACTIONS(1520), - [anon_sym_DOLLARvacount] = ACTIONS(1520), - [anon_sym_DOLLARappend] = ACTIONS(1520), - [anon_sym_DOLLARconcat] = ACTIONS(1520), - [anon_sym_DOLLAReval] = ACTIONS(1520), - [anon_sym_DOLLARis_const] = ACTIONS(1520), - [anon_sym_DOLLARsizeof] = ACTIONS(1520), - [anon_sym_DOLLARstringify] = ACTIONS(1520), - [anon_sym_DOLLARand] = ACTIONS(1520), - [anon_sym_DOLLARdefined] = ACTIONS(1520), - [anon_sym_DOLLARembed] = ACTIONS(1520), - [anon_sym_DOLLARor] = ACTIONS(1520), - [anon_sym_DOLLARfeature] = ACTIONS(1520), - [anon_sym_DOLLARassignable] = ACTIONS(1520), - [anon_sym_BANG] = ACTIONS(1522), - [anon_sym_TILDE] = ACTIONS(1522), - [anon_sym_PLUS_PLUS] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1522), - [anon_sym_typeid] = ACTIONS(1520), - [anon_sym_LBRACE_PIPE] = ACTIONS(1522), - [anon_sym_void] = ACTIONS(1520), - [anon_sym_bool] = ACTIONS(1520), - [anon_sym_char] = ACTIONS(1520), - [anon_sym_ichar] = ACTIONS(1520), - [anon_sym_short] = ACTIONS(1520), - [anon_sym_ushort] = ACTIONS(1520), - [anon_sym_uint] = ACTIONS(1520), - [anon_sym_long] = ACTIONS(1520), - [anon_sym_ulong] = ACTIONS(1520), - [anon_sym_int128] = ACTIONS(1520), - [anon_sym_uint128] = ACTIONS(1520), - [anon_sym_float] = ACTIONS(1520), - [anon_sym_double] = ACTIONS(1520), - [anon_sym_float16] = ACTIONS(1520), - [anon_sym_bfloat16] = ACTIONS(1520), - [anon_sym_float128] = ACTIONS(1520), - [anon_sym_iptr] = ACTIONS(1520), - [anon_sym_uptr] = ACTIONS(1520), - [anon_sym_isz] = ACTIONS(1520), - [anon_sym_usz] = ACTIONS(1520), - [anon_sym_anyfault] = ACTIONS(1520), - [anon_sym_any] = ACTIONS(1520), - [anon_sym_DOLLARtypeof] = ACTIONS(1520), - [anon_sym_DOLLARtypefrom] = ACTIONS(1520), - [anon_sym_DOLLARvatype] = ACTIONS(1520), - [anon_sym_DOLLARevaltype] = ACTIONS(1520), - [sym_real_literal] = ACTIONS(1522), + [sym_ident] = ACTIONS(1343), + [sym_integer_literal] = ACTIONS(1345), + [anon_sym_SQUOTE] = ACTIONS(1345), + [anon_sym_DQUOTE] = ACTIONS(1345), + [anon_sym_BQUOTE] = ACTIONS(1345), + [sym_bytes_literal] = ACTIONS(1345), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1343), + [sym_at_ident] = ACTIONS(1345), + [sym_hash_ident] = ACTIONS(1345), + [sym_type_ident] = ACTIONS(1345), + [sym_ct_type_ident] = ACTIONS(1345), + [sym_const_ident] = ACTIONS(1343), + [sym_builtin] = ACTIONS(1345), + [anon_sym_LPAREN] = ACTIONS(1345), + [anon_sym_AMP] = ACTIONS(1343), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_tlocal] = ACTIONS(1343), + [anon_sym_SEMI] = ACTIONS(1345), + [anon_sym_fn] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1343), + [anon_sym_const] = ACTIONS(1343), + [anon_sym_var] = ACTIONS(1343), + [anon_sym_return] = ACTIONS(1343), + [anon_sym_continue] = ACTIONS(1343), + [anon_sym_break] = ACTIONS(1343), + [anon_sym_defer] = ACTIONS(1343), + [anon_sym_assert] = ACTIONS(1343), + [anon_sym_nextcase] = ACTIONS(1343), + [anon_sym_switch] = ACTIONS(1343), + [anon_sym_AMP_AMP] = ACTIONS(1345), + [anon_sym_if] = ACTIONS(1343), + [anon_sym_for] = ACTIONS(1343), + [anon_sym_foreach] = ACTIONS(1343), + [anon_sym_foreach_r] = ACTIONS(1343), + [anon_sym_while] = ACTIONS(1343), + [anon_sym_do] = ACTIONS(1343), + [anon_sym_int] = ACTIONS(1343), + [anon_sym_PLUS] = ACTIONS(1343), + [anon_sym_DASH] = ACTIONS(1343), + [anon_sym_STAR] = ACTIONS(1345), + [anon_sym_asm] = ACTIONS(1343), + [anon_sym_DOLLARassert] = ACTIONS(1343), + [anon_sym_DOLLARerror] = ACTIONS(1343), + [anon_sym_DOLLARecho] = ACTIONS(1343), + [anon_sym_DOLLARif] = ACTIONS(1343), + [anon_sym_DOLLARendif] = ACTIONS(1343), + [anon_sym_DOLLARelse] = ACTIONS(1343), + [anon_sym_DOLLARswitch] = ACTIONS(1343), + [anon_sym_DOLLARfor] = ACTIONS(1343), + [anon_sym_DOLLARforeach] = ACTIONS(1343), + [anon_sym_DOLLARalignof] = ACTIONS(1343), + [anon_sym_DOLLARextnameof] = ACTIONS(1343), + [anon_sym_DOLLARnameof] = ACTIONS(1343), + [anon_sym_DOLLARoffsetof] = ACTIONS(1343), + [anon_sym_DOLLARqnameof] = ACTIONS(1343), + [anon_sym_DOLLARvaconst] = ACTIONS(1343), + [anon_sym_DOLLARvaarg] = ACTIONS(1343), + [anon_sym_DOLLARvaref] = ACTIONS(1343), + [anon_sym_DOLLARvaexpr] = ACTIONS(1343), + [anon_sym_true] = ACTIONS(1343), + [anon_sym_false] = ACTIONS(1343), + [anon_sym_null] = ACTIONS(1343), + [anon_sym_DOLLARvacount] = ACTIONS(1343), + [anon_sym_DOLLARappend] = ACTIONS(1343), + [anon_sym_DOLLARconcat] = ACTIONS(1343), + [anon_sym_DOLLAReval] = ACTIONS(1343), + [anon_sym_DOLLARis_const] = ACTIONS(1343), + [anon_sym_DOLLARsizeof] = ACTIONS(1343), + [anon_sym_DOLLARstringify] = ACTIONS(1343), + [anon_sym_DOLLARand] = ACTIONS(1343), + [anon_sym_DOLLARdefined] = ACTIONS(1343), + [anon_sym_DOLLARembed] = ACTIONS(1343), + [anon_sym_DOLLARor] = ACTIONS(1343), + [anon_sym_DOLLARfeature] = ACTIONS(1343), + [anon_sym_DOLLARassignable] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(1345), + [anon_sym_TILDE] = ACTIONS(1345), + [anon_sym_PLUS_PLUS] = ACTIONS(1345), + [anon_sym_DASH_DASH] = ACTIONS(1345), + [anon_sym_typeid] = ACTIONS(1343), + [anon_sym_LBRACE_PIPE] = ACTIONS(1345), + [anon_sym_void] = ACTIONS(1343), + [anon_sym_bool] = ACTIONS(1343), + [anon_sym_char] = ACTIONS(1343), + [anon_sym_ichar] = ACTIONS(1343), + [anon_sym_short] = ACTIONS(1343), + [anon_sym_ushort] = ACTIONS(1343), + [anon_sym_uint] = ACTIONS(1343), + [anon_sym_long] = ACTIONS(1343), + [anon_sym_ulong] = ACTIONS(1343), + [anon_sym_int128] = ACTIONS(1343), + [anon_sym_uint128] = ACTIONS(1343), + [anon_sym_float] = ACTIONS(1343), + [anon_sym_double] = ACTIONS(1343), + [anon_sym_float16] = ACTIONS(1343), + [anon_sym_bfloat16] = ACTIONS(1343), + [anon_sym_float128] = ACTIONS(1343), + [anon_sym_iptr] = ACTIONS(1343), + [anon_sym_uptr] = ACTIONS(1343), + [anon_sym_isz] = ACTIONS(1343), + [anon_sym_usz] = ACTIONS(1343), + [anon_sym_anyfault] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_DOLLARtypeof] = ACTIONS(1343), + [anon_sym_DOLLARtypefrom] = ACTIONS(1343), + [anon_sym_DOLLARvatype] = ACTIONS(1343), + [anon_sym_DOLLARevaltype] = ACTIONS(1343), + [sym_real_literal] = ACTIONS(1345), }, [530] = { [sym_line_comment] = STATE(530), [sym_doc_comment] = STATE(530), [sym_block_comment] = STATE(530), - [sym_ident] = ACTIONS(1532), - [sym_integer_literal] = ACTIONS(1534), - [anon_sym_SQUOTE] = ACTIONS(1534), - [anon_sym_DQUOTE] = ACTIONS(1534), - [anon_sym_BQUOTE] = ACTIONS(1534), - [sym_bytes_literal] = ACTIONS(1534), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1532), - [sym_at_ident] = ACTIONS(1534), - [sym_hash_ident] = ACTIONS(1534), - [sym_type_ident] = ACTIONS(1534), - [sym_ct_type_ident] = ACTIONS(1534), - [sym_const_ident] = ACTIONS(1532), - [sym_builtin] = ACTIONS(1534), - [anon_sym_LPAREN] = ACTIONS(1534), - [anon_sym_AMP] = ACTIONS(1532), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_tlocal] = ACTIONS(1532), - [anon_sym_SEMI] = ACTIONS(1534), - [anon_sym_fn] = ACTIONS(1532), - [anon_sym_LBRACE] = ACTIONS(1532), - [anon_sym_const] = ACTIONS(1532), - [anon_sym_var] = ACTIONS(1532), - [anon_sym_return] = ACTIONS(1532), - [anon_sym_continue] = ACTIONS(1532), - [anon_sym_break] = ACTIONS(1532), - [anon_sym_defer] = ACTIONS(1532), - [anon_sym_assert] = ACTIONS(1532), - [anon_sym_nextcase] = ACTIONS(1532), - [anon_sym_switch] = ACTIONS(1532), - [anon_sym_AMP_AMP] = ACTIONS(1534), - [anon_sym_if] = ACTIONS(1532), - [anon_sym_for] = ACTIONS(1532), - [anon_sym_foreach] = ACTIONS(1532), - [anon_sym_foreach_r] = ACTIONS(1532), - [anon_sym_while] = ACTIONS(1532), - [anon_sym_do] = ACTIONS(1532), - [anon_sym_int] = ACTIONS(1532), - [anon_sym_PLUS] = ACTIONS(1532), - [anon_sym_DASH] = ACTIONS(1532), - [anon_sym_STAR] = ACTIONS(1534), - [anon_sym_asm] = ACTIONS(1532), - [anon_sym_DOLLARassert] = ACTIONS(1532), - [anon_sym_DOLLARerror] = ACTIONS(1532), - [anon_sym_DOLLARecho] = ACTIONS(1532), - [anon_sym_DOLLARif] = ACTIONS(1532), - [anon_sym_DOLLARcase] = ACTIONS(1532), - [anon_sym_DOLLARdefault] = ACTIONS(1532), - [anon_sym_DOLLARswitch] = ACTIONS(1532), - [anon_sym_DOLLARendswitch] = ACTIONS(1532), - [anon_sym_DOLLARfor] = ACTIONS(1532), - [anon_sym_DOLLARforeach] = ACTIONS(1532), - [anon_sym_DOLLARalignof] = ACTIONS(1532), - [anon_sym_DOLLARextnameof] = ACTIONS(1532), - [anon_sym_DOLLARnameof] = ACTIONS(1532), - [anon_sym_DOLLARoffsetof] = ACTIONS(1532), - [anon_sym_DOLLARqnameof] = ACTIONS(1532), - [anon_sym_DOLLARvaconst] = ACTIONS(1532), - [anon_sym_DOLLARvaarg] = ACTIONS(1532), - [anon_sym_DOLLARvaref] = ACTIONS(1532), - [anon_sym_DOLLARvaexpr] = ACTIONS(1532), - [anon_sym_true] = ACTIONS(1532), - [anon_sym_false] = ACTIONS(1532), - [anon_sym_null] = ACTIONS(1532), - [anon_sym_DOLLARvacount] = ACTIONS(1532), - [anon_sym_DOLLARappend] = ACTIONS(1532), - [anon_sym_DOLLARconcat] = ACTIONS(1532), - [anon_sym_DOLLAReval] = ACTIONS(1532), - [anon_sym_DOLLARis_const] = ACTIONS(1532), - [anon_sym_DOLLARsizeof] = ACTIONS(1532), - [anon_sym_DOLLARstringify] = ACTIONS(1532), - [anon_sym_DOLLARand] = ACTIONS(1532), - [anon_sym_DOLLARdefined] = ACTIONS(1532), - [anon_sym_DOLLARembed] = ACTIONS(1532), - [anon_sym_DOLLARor] = ACTIONS(1532), - [anon_sym_DOLLARfeature] = ACTIONS(1532), - [anon_sym_DOLLARassignable] = ACTIONS(1532), - [anon_sym_BANG] = ACTIONS(1534), - [anon_sym_TILDE] = ACTIONS(1534), - [anon_sym_PLUS_PLUS] = ACTIONS(1534), - [anon_sym_DASH_DASH] = ACTIONS(1534), - [anon_sym_typeid] = ACTIONS(1532), - [anon_sym_LBRACE_PIPE] = ACTIONS(1534), - [anon_sym_void] = ACTIONS(1532), - [anon_sym_bool] = ACTIONS(1532), - [anon_sym_char] = ACTIONS(1532), - [anon_sym_ichar] = ACTIONS(1532), - [anon_sym_short] = ACTIONS(1532), - [anon_sym_ushort] = ACTIONS(1532), - [anon_sym_uint] = ACTIONS(1532), - [anon_sym_long] = ACTIONS(1532), - [anon_sym_ulong] = ACTIONS(1532), - [anon_sym_int128] = ACTIONS(1532), - [anon_sym_uint128] = ACTIONS(1532), - [anon_sym_float] = ACTIONS(1532), - [anon_sym_double] = ACTIONS(1532), - [anon_sym_float16] = ACTIONS(1532), - [anon_sym_bfloat16] = ACTIONS(1532), - [anon_sym_float128] = ACTIONS(1532), - [anon_sym_iptr] = ACTIONS(1532), - [anon_sym_uptr] = ACTIONS(1532), - [anon_sym_isz] = ACTIONS(1532), - [anon_sym_usz] = ACTIONS(1532), - [anon_sym_anyfault] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_DOLLARtypeof] = ACTIONS(1532), - [anon_sym_DOLLARtypefrom] = ACTIONS(1532), - [anon_sym_DOLLARvatype] = ACTIONS(1532), - [anon_sym_DOLLARevaltype] = ACTIONS(1532), - [sym_real_literal] = ACTIONS(1534), + [sym_ident] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1421), + [anon_sym_SQUOTE] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1421), + [anon_sym_BQUOTE] = ACTIONS(1421), + [sym_bytes_literal] = ACTIONS(1421), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1419), + [sym_at_ident] = ACTIONS(1421), + [sym_hash_ident] = ACTIONS(1421), + [sym_type_ident] = ACTIONS(1421), + [sym_ct_type_ident] = ACTIONS(1421), + [sym_const_ident] = ACTIONS(1419), + [sym_builtin] = ACTIONS(1421), + [anon_sym_LPAREN] = ACTIONS(1421), + [anon_sym_AMP] = ACTIONS(1419), + [anon_sym_static] = ACTIONS(1419), + [anon_sym_tlocal] = ACTIONS(1419), + [anon_sym_SEMI] = ACTIONS(1421), + [anon_sym_fn] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(1419), + [anon_sym_const] = ACTIONS(1419), + [anon_sym_var] = ACTIONS(1419), + [anon_sym_return] = ACTIONS(1419), + [anon_sym_continue] = ACTIONS(1419), + [anon_sym_break] = ACTIONS(1419), + [anon_sym_defer] = ACTIONS(1419), + [anon_sym_assert] = ACTIONS(1419), + [anon_sym_nextcase] = ACTIONS(1419), + [anon_sym_switch] = ACTIONS(1419), + [anon_sym_AMP_AMP] = ACTIONS(1421), + [anon_sym_if] = ACTIONS(1419), + [anon_sym_for] = ACTIONS(1419), + [anon_sym_foreach] = ACTIONS(1419), + [anon_sym_foreach_r] = ACTIONS(1419), + [anon_sym_while] = ACTIONS(1419), + [anon_sym_do] = ACTIONS(1419), + [anon_sym_int] = ACTIONS(1419), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_DASH] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1421), + [anon_sym_asm] = ACTIONS(1419), + [anon_sym_DOLLARassert] = ACTIONS(1419), + [anon_sym_DOLLARerror] = ACTIONS(1419), + [anon_sym_DOLLARecho] = ACTIONS(1419), + [anon_sym_DOLLARif] = ACTIONS(1419), + [anon_sym_DOLLARendif] = ACTIONS(1419), + [anon_sym_DOLLARelse] = ACTIONS(1419), + [anon_sym_DOLLARswitch] = ACTIONS(1419), + [anon_sym_DOLLARfor] = ACTIONS(1419), + [anon_sym_DOLLARforeach] = ACTIONS(1419), + [anon_sym_DOLLARalignof] = ACTIONS(1419), + [anon_sym_DOLLARextnameof] = ACTIONS(1419), + [anon_sym_DOLLARnameof] = ACTIONS(1419), + [anon_sym_DOLLARoffsetof] = ACTIONS(1419), + [anon_sym_DOLLARqnameof] = ACTIONS(1419), + [anon_sym_DOLLARvaconst] = ACTIONS(1419), + [anon_sym_DOLLARvaarg] = ACTIONS(1419), + [anon_sym_DOLLARvaref] = ACTIONS(1419), + [anon_sym_DOLLARvaexpr] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1419), + [anon_sym_false] = ACTIONS(1419), + [anon_sym_null] = ACTIONS(1419), + [anon_sym_DOLLARvacount] = ACTIONS(1419), + [anon_sym_DOLLARappend] = ACTIONS(1419), + [anon_sym_DOLLARconcat] = ACTIONS(1419), + [anon_sym_DOLLAReval] = ACTIONS(1419), + [anon_sym_DOLLARis_const] = ACTIONS(1419), + [anon_sym_DOLLARsizeof] = ACTIONS(1419), + [anon_sym_DOLLARstringify] = ACTIONS(1419), + [anon_sym_DOLLARand] = ACTIONS(1419), + [anon_sym_DOLLARdefined] = ACTIONS(1419), + [anon_sym_DOLLARembed] = ACTIONS(1419), + [anon_sym_DOLLARor] = ACTIONS(1419), + [anon_sym_DOLLARfeature] = ACTIONS(1419), + [anon_sym_DOLLARassignable] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_PLUS_PLUS] = ACTIONS(1421), + [anon_sym_DASH_DASH] = ACTIONS(1421), + [anon_sym_typeid] = ACTIONS(1419), + [anon_sym_LBRACE_PIPE] = ACTIONS(1421), + [anon_sym_void] = ACTIONS(1419), + [anon_sym_bool] = ACTIONS(1419), + [anon_sym_char] = ACTIONS(1419), + [anon_sym_ichar] = ACTIONS(1419), + [anon_sym_short] = ACTIONS(1419), + [anon_sym_ushort] = ACTIONS(1419), + [anon_sym_uint] = ACTIONS(1419), + [anon_sym_long] = ACTIONS(1419), + [anon_sym_ulong] = ACTIONS(1419), + [anon_sym_int128] = ACTIONS(1419), + [anon_sym_uint128] = ACTIONS(1419), + [anon_sym_float] = ACTIONS(1419), + [anon_sym_double] = ACTIONS(1419), + [anon_sym_float16] = ACTIONS(1419), + [anon_sym_bfloat16] = ACTIONS(1419), + [anon_sym_float128] = ACTIONS(1419), + [anon_sym_iptr] = ACTIONS(1419), + [anon_sym_uptr] = ACTIONS(1419), + [anon_sym_isz] = ACTIONS(1419), + [anon_sym_usz] = ACTIONS(1419), + [anon_sym_anyfault] = ACTIONS(1419), + [anon_sym_any] = ACTIONS(1419), + [anon_sym_DOLLARtypeof] = ACTIONS(1419), + [anon_sym_DOLLARtypefrom] = ACTIONS(1419), + [anon_sym_DOLLARvatype] = ACTIONS(1419), + [anon_sym_DOLLARevaltype] = ACTIONS(1419), + [sym_real_literal] = ACTIONS(1421), }, [531] = { [sym_line_comment] = STATE(531), [sym_doc_comment] = STATE(531), [sym_block_comment] = STATE(531), - [sym_ident] = ACTIONS(1536), - [sym_integer_literal] = ACTIONS(1538), - [anon_sym_SQUOTE] = ACTIONS(1538), - [anon_sym_DQUOTE] = ACTIONS(1538), - [anon_sym_BQUOTE] = ACTIONS(1538), - [sym_bytes_literal] = ACTIONS(1538), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1536), - [sym_at_ident] = ACTIONS(1538), - [sym_hash_ident] = ACTIONS(1538), - [sym_type_ident] = ACTIONS(1538), - [sym_ct_type_ident] = ACTIONS(1538), - [sym_const_ident] = ACTIONS(1536), - [sym_builtin] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1538), - [anon_sym_AMP] = ACTIONS(1536), - [anon_sym_static] = ACTIONS(1536), - [anon_sym_tlocal] = ACTIONS(1536), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_fn] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(1536), - [anon_sym_const] = ACTIONS(1536), - [anon_sym_var] = ACTIONS(1536), - [anon_sym_return] = ACTIONS(1536), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_break] = ACTIONS(1536), - [anon_sym_defer] = ACTIONS(1536), - [anon_sym_assert] = ACTIONS(1536), - [anon_sym_nextcase] = ACTIONS(1536), - [anon_sym_switch] = ACTIONS(1536), - [anon_sym_AMP_AMP] = ACTIONS(1538), - [anon_sym_if] = ACTIONS(1536), - [anon_sym_for] = ACTIONS(1536), - [anon_sym_foreach] = ACTIONS(1536), - [anon_sym_foreach_r] = ACTIONS(1536), - [anon_sym_while] = ACTIONS(1536), - [anon_sym_do] = ACTIONS(1536), - [anon_sym_int] = ACTIONS(1536), - [anon_sym_PLUS] = ACTIONS(1536), - [anon_sym_DASH] = ACTIONS(1536), - [anon_sym_STAR] = ACTIONS(1538), - [anon_sym_asm] = ACTIONS(1536), - [anon_sym_DOLLARassert] = ACTIONS(1536), - [anon_sym_DOLLARerror] = ACTIONS(1536), - [anon_sym_DOLLARecho] = ACTIONS(1536), - [anon_sym_DOLLARif] = ACTIONS(1536), - [anon_sym_DOLLARcase] = ACTIONS(1536), - [anon_sym_DOLLARdefault] = ACTIONS(1536), - [anon_sym_DOLLARswitch] = ACTIONS(1536), - [anon_sym_DOLLARendswitch] = ACTIONS(1536), - [anon_sym_DOLLARfor] = ACTIONS(1536), - [anon_sym_DOLLARforeach] = ACTIONS(1536), - [anon_sym_DOLLARalignof] = ACTIONS(1536), - [anon_sym_DOLLARextnameof] = ACTIONS(1536), - [anon_sym_DOLLARnameof] = ACTIONS(1536), - [anon_sym_DOLLARoffsetof] = ACTIONS(1536), - [anon_sym_DOLLARqnameof] = ACTIONS(1536), - [anon_sym_DOLLARvaconst] = ACTIONS(1536), - [anon_sym_DOLLARvaarg] = ACTIONS(1536), - [anon_sym_DOLLARvaref] = ACTIONS(1536), - [anon_sym_DOLLARvaexpr] = ACTIONS(1536), - [anon_sym_true] = ACTIONS(1536), - [anon_sym_false] = ACTIONS(1536), - [anon_sym_null] = ACTIONS(1536), - [anon_sym_DOLLARvacount] = ACTIONS(1536), - [anon_sym_DOLLARappend] = ACTIONS(1536), - [anon_sym_DOLLARconcat] = ACTIONS(1536), - [anon_sym_DOLLAReval] = ACTIONS(1536), - [anon_sym_DOLLARis_const] = ACTIONS(1536), - [anon_sym_DOLLARsizeof] = ACTIONS(1536), - [anon_sym_DOLLARstringify] = ACTIONS(1536), - [anon_sym_DOLLARand] = ACTIONS(1536), - [anon_sym_DOLLARdefined] = ACTIONS(1536), - [anon_sym_DOLLARembed] = ACTIONS(1536), - [anon_sym_DOLLARor] = ACTIONS(1536), - [anon_sym_DOLLARfeature] = ACTIONS(1536), - [anon_sym_DOLLARassignable] = ACTIONS(1536), - [anon_sym_BANG] = ACTIONS(1538), - [anon_sym_TILDE] = ACTIONS(1538), - [anon_sym_PLUS_PLUS] = ACTIONS(1538), - [anon_sym_DASH_DASH] = ACTIONS(1538), - [anon_sym_typeid] = ACTIONS(1536), - [anon_sym_LBRACE_PIPE] = ACTIONS(1538), - [anon_sym_void] = ACTIONS(1536), - [anon_sym_bool] = ACTIONS(1536), - [anon_sym_char] = ACTIONS(1536), - [anon_sym_ichar] = ACTIONS(1536), - [anon_sym_short] = ACTIONS(1536), - [anon_sym_ushort] = ACTIONS(1536), - [anon_sym_uint] = ACTIONS(1536), - [anon_sym_long] = ACTIONS(1536), - [anon_sym_ulong] = ACTIONS(1536), - [anon_sym_int128] = ACTIONS(1536), - [anon_sym_uint128] = ACTIONS(1536), - [anon_sym_float] = ACTIONS(1536), - [anon_sym_double] = ACTIONS(1536), - [anon_sym_float16] = ACTIONS(1536), - [anon_sym_bfloat16] = ACTIONS(1536), - [anon_sym_float128] = ACTIONS(1536), - [anon_sym_iptr] = ACTIONS(1536), - [anon_sym_uptr] = ACTIONS(1536), - [anon_sym_isz] = ACTIONS(1536), - [anon_sym_usz] = ACTIONS(1536), - [anon_sym_anyfault] = ACTIONS(1536), - [anon_sym_any] = ACTIONS(1536), - [anon_sym_DOLLARtypeof] = ACTIONS(1536), - [anon_sym_DOLLARtypefrom] = ACTIONS(1536), - [anon_sym_DOLLARvatype] = ACTIONS(1536), - [anon_sym_DOLLARevaltype] = ACTIONS(1536), - [sym_real_literal] = ACTIONS(1538), + [sym_ident] = ACTIONS(1391), + [sym_integer_literal] = ACTIONS(1393), + [anon_sym_SQUOTE] = ACTIONS(1393), + [anon_sym_DQUOTE] = ACTIONS(1393), + [anon_sym_BQUOTE] = ACTIONS(1393), + [sym_bytes_literal] = ACTIONS(1393), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1391), + [sym_at_ident] = ACTIONS(1393), + [sym_hash_ident] = ACTIONS(1393), + [sym_type_ident] = ACTIONS(1393), + [sym_ct_type_ident] = ACTIONS(1393), + [sym_const_ident] = ACTIONS(1391), + [sym_builtin] = ACTIONS(1393), + [anon_sym_LPAREN] = ACTIONS(1393), + [anon_sym_AMP] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1391), + [anon_sym_tlocal] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1393), + [anon_sym_fn] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_var] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_defer] = ACTIONS(1391), + [anon_sym_assert] = ACTIONS(1391), + [anon_sym_nextcase] = ACTIONS(1391), + [anon_sym_switch] = ACTIONS(1391), + [anon_sym_AMP_AMP] = ACTIONS(1393), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_foreach] = ACTIONS(1391), + [anon_sym_foreach_r] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_int] = ACTIONS(1391), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1393), + [anon_sym_asm] = ACTIONS(1391), + [anon_sym_DOLLARassert] = ACTIONS(1391), + [anon_sym_DOLLARerror] = ACTIONS(1391), + [anon_sym_DOLLARecho] = ACTIONS(1391), + [anon_sym_DOLLARif] = ACTIONS(1391), + [anon_sym_DOLLARendif] = ACTIONS(1391), + [anon_sym_DOLLARelse] = ACTIONS(1391), + [anon_sym_DOLLARswitch] = ACTIONS(1391), + [anon_sym_DOLLARfor] = ACTIONS(1391), + [anon_sym_DOLLARforeach] = ACTIONS(1391), + [anon_sym_DOLLARalignof] = ACTIONS(1391), + [anon_sym_DOLLARextnameof] = ACTIONS(1391), + [anon_sym_DOLLARnameof] = ACTIONS(1391), + [anon_sym_DOLLARoffsetof] = ACTIONS(1391), + [anon_sym_DOLLARqnameof] = ACTIONS(1391), + [anon_sym_DOLLARvaconst] = ACTIONS(1391), + [anon_sym_DOLLARvaarg] = ACTIONS(1391), + [anon_sym_DOLLARvaref] = ACTIONS(1391), + [anon_sym_DOLLARvaexpr] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_DOLLARvacount] = ACTIONS(1391), + [anon_sym_DOLLARappend] = ACTIONS(1391), + [anon_sym_DOLLARconcat] = ACTIONS(1391), + [anon_sym_DOLLAReval] = ACTIONS(1391), + [anon_sym_DOLLARis_const] = ACTIONS(1391), + [anon_sym_DOLLARsizeof] = ACTIONS(1391), + [anon_sym_DOLLARstringify] = ACTIONS(1391), + [anon_sym_DOLLARand] = ACTIONS(1391), + [anon_sym_DOLLARdefined] = ACTIONS(1391), + [anon_sym_DOLLARembed] = ACTIONS(1391), + [anon_sym_DOLLARor] = ACTIONS(1391), + [anon_sym_DOLLARfeature] = ACTIONS(1391), + [anon_sym_DOLLARassignable] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1393), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_PLUS_PLUS] = ACTIONS(1393), + [anon_sym_DASH_DASH] = ACTIONS(1393), + [anon_sym_typeid] = ACTIONS(1391), + [anon_sym_LBRACE_PIPE] = ACTIONS(1393), + [anon_sym_void] = ACTIONS(1391), + [anon_sym_bool] = ACTIONS(1391), + [anon_sym_char] = ACTIONS(1391), + [anon_sym_ichar] = ACTIONS(1391), + [anon_sym_short] = ACTIONS(1391), + [anon_sym_ushort] = ACTIONS(1391), + [anon_sym_uint] = ACTIONS(1391), + [anon_sym_long] = ACTIONS(1391), + [anon_sym_ulong] = ACTIONS(1391), + [anon_sym_int128] = ACTIONS(1391), + [anon_sym_uint128] = ACTIONS(1391), + [anon_sym_float] = ACTIONS(1391), + [anon_sym_double] = ACTIONS(1391), + [anon_sym_float16] = ACTIONS(1391), + [anon_sym_bfloat16] = ACTIONS(1391), + [anon_sym_float128] = ACTIONS(1391), + [anon_sym_iptr] = ACTIONS(1391), + [anon_sym_uptr] = ACTIONS(1391), + [anon_sym_isz] = ACTIONS(1391), + [anon_sym_usz] = ACTIONS(1391), + [anon_sym_anyfault] = ACTIONS(1391), + [anon_sym_any] = ACTIONS(1391), + [anon_sym_DOLLARtypeof] = ACTIONS(1391), + [anon_sym_DOLLARtypefrom] = ACTIONS(1391), + [anon_sym_DOLLARvatype] = ACTIONS(1391), + [anon_sym_DOLLARevaltype] = ACTIONS(1391), + [sym_real_literal] = ACTIONS(1393), }, [532] = { [sym_line_comment] = STATE(532), [sym_doc_comment] = STATE(532), [sym_block_comment] = STATE(532), - [sym_ident] = ACTIONS(1560), - [sym_integer_literal] = ACTIONS(1562), - [anon_sym_SQUOTE] = ACTIONS(1562), - [anon_sym_DQUOTE] = ACTIONS(1562), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_bytes_literal] = ACTIONS(1562), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1560), - [sym_at_ident] = ACTIONS(1562), - [sym_hash_ident] = ACTIONS(1562), - [sym_type_ident] = ACTIONS(1562), - [sym_ct_type_ident] = ACTIONS(1562), - [sym_const_ident] = ACTIONS(1560), - [sym_builtin] = ACTIONS(1562), - [anon_sym_LPAREN] = ACTIONS(1562), - [anon_sym_AMP] = ACTIONS(1560), - [anon_sym_static] = ACTIONS(1560), - [anon_sym_tlocal] = ACTIONS(1560), - [anon_sym_SEMI] = ACTIONS(1562), - [anon_sym_fn] = ACTIONS(1560), - [anon_sym_LBRACE] = ACTIONS(1560), - [anon_sym_const] = ACTIONS(1560), - [anon_sym_var] = ACTIONS(1560), - [anon_sym_return] = ACTIONS(1560), - [anon_sym_continue] = ACTIONS(1560), - [anon_sym_break] = ACTIONS(1560), - [anon_sym_defer] = ACTIONS(1560), - [anon_sym_assert] = ACTIONS(1560), - [anon_sym_nextcase] = ACTIONS(1560), - [anon_sym_switch] = ACTIONS(1560), - [anon_sym_AMP_AMP] = ACTIONS(1562), - [anon_sym_if] = ACTIONS(1560), - [anon_sym_for] = ACTIONS(1560), - [anon_sym_foreach] = ACTIONS(1560), - [anon_sym_foreach_r] = ACTIONS(1560), - [anon_sym_while] = ACTIONS(1560), - [anon_sym_do] = ACTIONS(1560), - [anon_sym_int] = ACTIONS(1560), - [anon_sym_PLUS] = ACTIONS(1560), - [anon_sym_DASH] = ACTIONS(1560), - [anon_sym_STAR] = ACTIONS(1562), - [anon_sym_asm] = ACTIONS(1560), - [anon_sym_DOLLARassert] = ACTIONS(1560), - [anon_sym_DOLLARerror] = ACTIONS(1560), - [anon_sym_DOLLARecho] = ACTIONS(1560), - [anon_sym_DOLLARif] = ACTIONS(1560), - [anon_sym_DOLLARcase] = ACTIONS(1560), - [anon_sym_DOLLARdefault] = ACTIONS(1560), - [anon_sym_DOLLARswitch] = ACTIONS(1560), - [anon_sym_DOLLARendswitch] = ACTIONS(1560), - [anon_sym_DOLLARfor] = ACTIONS(1560), - [anon_sym_DOLLARforeach] = ACTIONS(1560), - [anon_sym_DOLLARalignof] = ACTIONS(1560), - [anon_sym_DOLLARextnameof] = ACTIONS(1560), - [anon_sym_DOLLARnameof] = ACTIONS(1560), - [anon_sym_DOLLARoffsetof] = ACTIONS(1560), - [anon_sym_DOLLARqnameof] = ACTIONS(1560), - [anon_sym_DOLLARvaconst] = ACTIONS(1560), - [anon_sym_DOLLARvaarg] = ACTIONS(1560), - [anon_sym_DOLLARvaref] = ACTIONS(1560), - [anon_sym_DOLLARvaexpr] = ACTIONS(1560), - [anon_sym_true] = ACTIONS(1560), - [anon_sym_false] = ACTIONS(1560), - [anon_sym_null] = ACTIONS(1560), - [anon_sym_DOLLARvacount] = ACTIONS(1560), - [anon_sym_DOLLARappend] = ACTIONS(1560), - [anon_sym_DOLLARconcat] = ACTIONS(1560), - [anon_sym_DOLLAReval] = ACTIONS(1560), - [anon_sym_DOLLARis_const] = ACTIONS(1560), - [anon_sym_DOLLARsizeof] = ACTIONS(1560), - [anon_sym_DOLLARstringify] = ACTIONS(1560), - [anon_sym_DOLLARand] = ACTIONS(1560), - [anon_sym_DOLLARdefined] = ACTIONS(1560), - [anon_sym_DOLLARembed] = ACTIONS(1560), - [anon_sym_DOLLARor] = ACTIONS(1560), - [anon_sym_DOLLARfeature] = ACTIONS(1560), - [anon_sym_DOLLARassignable] = ACTIONS(1560), - [anon_sym_BANG] = ACTIONS(1562), - [anon_sym_TILDE] = ACTIONS(1562), - [anon_sym_PLUS_PLUS] = ACTIONS(1562), - [anon_sym_DASH_DASH] = ACTIONS(1562), - [anon_sym_typeid] = ACTIONS(1560), - [anon_sym_LBRACE_PIPE] = ACTIONS(1562), - [anon_sym_void] = ACTIONS(1560), - [anon_sym_bool] = ACTIONS(1560), - [anon_sym_char] = ACTIONS(1560), - [anon_sym_ichar] = ACTIONS(1560), - [anon_sym_short] = ACTIONS(1560), - [anon_sym_ushort] = ACTIONS(1560), - [anon_sym_uint] = ACTIONS(1560), - [anon_sym_long] = ACTIONS(1560), - [anon_sym_ulong] = ACTIONS(1560), - [anon_sym_int128] = ACTIONS(1560), - [anon_sym_uint128] = ACTIONS(1560), - [anon_sym_float] = ACTIONS(1560), - [anon_sym_double] = ACTIONS(1560), - [anon_sym_float16] = ACTIONS(1560), - [anon_sym_bfloat16] = ACTIONS(1560), - [anon_sym_float128] = ACTIONS(1560), - [anon_sym_iptr] = ACTIONS(1560), - [anon_sym_uptr] = ACTIONS(1560), - [anon_sym_isz] = ACTIONS(1560), - [anon_sym_usz] = ACTIONS(1560), - [anon_sym_anyfault] = ACTIONS(1560), - [anon_sym_any] = ACTIONS(1560), - [anon_sym_DOLLARtypeof] = ACTIONS(1560), - [anon_sym_DOLLARtypefrom] = ACTIONS(1560), - [anon_sym_DOLLARvatype] = ACTIONS(1560), - [anon_sym_DOLLARevaltype] = ACTIONS(1560), - [sym_real_literal] = ACTIONS(1562), + [sym_ident] = ACTIONS(1407), + [sym_integer_literal] = ACTIONS(1409), + [anon_sym_SQUOTE] = ACTIONS(1409), + [anon_sym_DQUOTE] = ACTIONS(1409), + [anon_sym_BQUOTE] = ACTIONS(1409), + [sym_bytes_literal] = ACTIONS(1409), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1407), + [sym_at_ident] = ACTIONS(1409), + [sym_hash_ident] = ACTIONS(1409), + [sym_type_ident] = ACTIONS(1409), + [sym_ct_type_ident] = ACTIONS(1409), + [sym_const_ident] = ACTIONS(1407), + [sym_builtin] = ACTIONS(1409), + [anon_sym_LPAREN] = ACTIONS(1409), + [anon_sym_AMP] = ACTIONS(1407), + [anon_sym_static] = ACTIONS(1407), + [anon_sym_tlocal] = ACTIONS(1407), + [anon_sym_SEMI] = ACTIONS(1409), + [anon_sym_fn] = ACTIONS(1407), + [anon_sym_LBRACE] = ACTIONS(1407), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_var] = ACTIONS(1407), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_continue] = ACTIONS(1407), + [anon_sym_break] = ACTIONS(1407), + [anon_sym_defer] = ACTIONS(1407), + [anon_sym_assert] = ACTIONS(1407), + [anon_sym_nextcase] = ACTIONS(1407), + [anon_sym_switch] = ACTIONS(1407), + [anon_sym_AMP_AMP] = ACTIONS(1409), + [anon_sym_if] = ACTIONS(1407), + [anon_sym_for] = ACTIONS(1407), + [anon_sym_foreach] = ACTIONS(1407), + [anon_sym_foreach_r] = ACTIONS(1407), + [anon_sym_while] = ACTIONS(1407), + [anon_sym_do] = ACTIONS(1407), + [anon_sym_int] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1407), + [anon_sym_DASH] = ACTIONS(1407), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_asm] = ACTIONS(1407), + [anon_sym_DOLLARassert] = ACTIONS(1407), + [anon_sym_DOLLARerror] = ACTIONS(1407), + [anon_sym_DOLLARecho] = ACTIONS(1407), + [anon_sym_DOLLARif] = ACTIONS(1407), + [anon_sym_DOLLARendif] = ACTIONS(1407), + [anon_sym_DOLLARelse] = ACTIONS(1407), + [anon_sym_DOLLARswitch] = ACTIONS(1407), + [anon_sym_DOLLARfor] = ACTIONS(1407), + [anon_sym_DOLLARforeach] = ACTIONS(1407), + [anon_sym_DOLLARalignof] = ACTIONS(1407), + [anon_sym_DOLLARextnameof] = ACTIONS(1407), + [anon_sym_DOLLARnameof] = ACTIONS(1407), + [anon_sym_DOLLARoffsetof] = ACTIONS(1407), + [anon_sym_DOLLARqnameof] = ACTIONS(1407), + [anon_sym_DOLLARvaconst] = ACTIONS(1407), + [anon_sym_DOLLARvaarg] = ACTIONS(1407), + [anon_sym_DOLLARvaref] = ACTIONS(1407), + [anon_sym_DOLLARvaexpr] = ACTIONS(1407), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_null] = ACTIONS(1407), + [anon_sym_DOLLARvacount] = ACTIONS(1407), + [anon_sym_DOLLARappend] = ACTIONS(1407), + [anon_sym_DOLLARconcat] = ACTIONS(1407), + [anon_sym_DOLLAReval] = ACTIONS(1407), + [anon_sym_DOLLARis_const] = ACTIONS(1407), + [anon_sym_DOLLARsizeof] = ACTIONS(1407), + [anon_sym_DOLLARstringify] = ACTIONS(1407), + [anon_sym_DOLLARand] = ACTIONS(1407), + [anon_sym_DOLLARdefined] = ACTIONS(1407), + [anon_sym_DOLLARembed] = ACTIONS(1407), + [anon_sym_DOLLARor] = ACTIONS(1407), + [anon_sym_DOLLARfeature] = ACTIONS(1407), + [anon_sym_DOLLARassignable] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1409), + [anon_sym_TILDE] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1409), + [anon_sym_DASH_DASH] = ACTIONS(1409), + [anon_sym_typeid] = ACTIONS(1407), + [anon_sym_LBRACE_PIPE] = ACTIONS(1409), + [anon_sym_void] = ACTIONS(1407), + [anon_sym_bool] = ACTIONS(1407), + [anon_sym_char] = ACTIONS(1407), + [anon_sym_ichar] = ACTIONS(1407), + [anon_sym_short] = ACTIONS(1407), + [anon_sym_ushort] = ACTIONS(1407), + [anon_sym_uint] = ACTIONS(1407), + [anon_sym_long] = ACTIONS(1407), + [anon_sym_ulong] = ACTIONS(1407), + [anon_sym_int128] = ACTIONS(1407), + [anon_sym_uint128] = ACTIONS(1407), + [anon_sym_float] = ACTIONS(1407), + [anon_sym_double] = ACTIONS(1407), + [anon_sym_float16] = ACTIONS(1407), + [anon_sym_bfloat16] = ACTIONS(1407), + [anon_sym_float128] = ACTIONS(1407), + [anon_sym_iptr] = ACTIONS(1407), + [anon_sym_uptr] = ACTIONS(1407), + [anon_sym_isz] = ACTIONS(1407), + [anon_sym_usz] = ACTIONS(1407), + [anon_sym_anyfault] = ACTIONS(1407), + [anon_sym_any] = ACTIONS(1407), + [anon_sym_DOLLARtypeof] = ACTIONS(1407), + [anon_sym_DOLLARtypefrom] = ACTIONS(1407), + [anon_sym_DOLLARvatype] = ACTIONS(1407), + [anon_sym_DOLLARevaltype] = ACTIONS(1407), + [sym_real_literal] = ACTIONS(1409), }, [533] = { [sym_line_comment] = STATE(533), [sym_doc_comment] = STATE(533), [sym_block_comment] = STATE(533), - [sym_ident] = ACTIONS(1564), - [sym_integer_literal] = ACTIONS(1566), - [anon_sym_SQUOTE] = ACTIONS(1566), - [anon_sym_DQUOTE] = ACTIONS(1566), - [anon_sym_BQUOTE] = ACTIONS(1566), - [sym_bytes_literal] = ACTIONS(1566), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1564), - [sym_at_ident] = ACTIONS(1566), - [sym_hash_ident] = ACTIONS(1566), - [sym_type_ident] = ACTIONS(1566), - [sym_ct_type_ident] = ACTIONS(1566), - [sym_const_ident] = ACTIONS(1564), - [sym_builtin] = ACTIONS(1566), - [anon_sym_LPAREN] = ACTIONS(1566), - [anon_sym_AMP] = ACTIONS(1564), - [anon_sym_static] = ACTIONS(1564), - [anon_sym_tlocal] = ACTIONS(1564), - [anon_sym_SEMI] = ACTIONS(1566), - [anon_sym_fn] = ACTIONS(1564), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_const] = ACTIONS(1564), - [anon_sym_var] = ACTIONS(1564), - [anon_sym_return] = ACTIONS(1564), - [anon_sym_continue] = ACTIONS(1564), - [anon_sym_break] = ACTIONS(1564), - [anon_sym_defer] = ACTIONS(1564), - [anon_sym_assert] = ACTIONS(1564), - [anon_sym_nextcase] = ACTIONS(1564), - [anon_sym_switch] = ACTIONS(1564), - [anon_sym_AMP_AMP] = ACTIONS(1566), - [anon_sym_if] = ACTIONS(1564), - [anon_sym_for] = ACTIONS(1564), - [anon_sym_foreach] = ACTIONS(1564), - [anon_sym_foreach_r] = ACTIONS(1564), - [anon_sym_while] = ACTIONS(1564), - [anon_sym_do] = ACTIONS(1564), - [anon_sym_int] = ACTIONS(1564), - [anon_sym_PLUS] = ACTIONS(1564), - [anon_sym_DASH] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1566), - [anon_sym_asm] = ACTIONS(1564), - [anon_sym_DOLLARassert] = ACTIONS(1564), - [anon_sym_DOLLARerror] = ACTIONS(1564), - [anon_sym_DOLLARecho] = ACTIONS(1564), - [anon_sym_DOLLARif] = ACTIONS(1564), - [anon_sym_DOLLARcase] = ACTIONS(1564), - [anon_sym_DOLLARdefault] = ACTIONS(1564), - [anon_sym_DOLLARswitch] = ACTIONS(1564), - [anon_sym_DOLLARendswitch] = ACTIONS(1564), - [anon_sym_DOLLARfor] = ACTIONS(1564), - [anon_sym_DOLLARforeach] = ACTIONS(1564), - [anon_sym_DOLLARalignof] = ACTIONS(1564), - [anon_sym_DOLLARextnameof] = ACTIONS(1564), - [anon_sym_DOLLARnameof] = ACTIONS(1564), - [anon_sym_DOLLARoffsetof] = ACTIONS(1564), - [anon_sym_DOLLARqnameof] = ACTIONS(1564), - [anon_sym_DOLLARvaconst] = ACTIONS(1564), - [anon_sym_DOLLARvaarg] = ACTIONS(1564), - [anon_sym_DOLLARvaref] = ACTIONS(1564), - [anon_sym_DOLLARvaexpr] = ACTIONS(1564), - [anon_sym_true] = ACTIONS(1564), - [anon_sym_false] = ACTIONS(1564), - [anon_sym_null] = ACTIONS(1564), - [anon_sym_DOLLARvacount] = ACTIONS(1564), - [anon_sym_DOLLARappend] = ACTIONS(1564), - [anon_sym_DOLLARconcat] = ACTIONS(1564), - [anon_sym_DOLLAReval] = ACTIONS(1564), - [anon_sym_DOLLARis_const] = ACTIONS(1564), - [anon_sym_DOLLARsizeof] = ACTIONS(1564), - [anon_sym_DOLLARstringify] = ACTIONS(1564), - [anon_sym_DOLLARand] = ACTIONS(1564), - [anon_sym_DOLLARdefined] = ACTIONS(1564), - [anon_sym_DOLLARembed] = ACTIONS(1564), - [anon_sym_DOLLARor] = ACTIONS(1564), - [anon_sym_DOLLARfeature] = ACTIONS(1564), - [anon_sym_DOLLARassignable] = ACTIONS(1564), - [anon_sym_BANG] = ACTIONS(1566), - [anon_sym_TILDE] = ACTIONS(1566), - [anon_sym_PLUS_PLUS] = ACTIONS(1566), - [anon_sym_DASH_DASH] = ACTIONS(1566), - [anon_sym_typeid] = ACTIONS(1564), - [anon_sym_LBRACE_PIPE] = ACTIONS(1566), - [anon_sym_void] = ACTIONS(1564), - [anon_sym_bool] = ACTIONS(1564), - [anon_sym_char] = ACTIONS(1564), - [anon_sym_ichar] = ACTIONS(1564), - [anon_sym_short] = ACTIONS(1564), - [anon_sym_ushort] = ACTIONS(1564), - [anon_sym_uint] = ACTIONS(1564), - [anon_sym_long] = ACTIONS(1564), - [anon_sym_ulong] = ACTIONS(1564), - [anon_sym_int128] = ACTIONS(1564), - [anon_sym_uint128] = ACTIONS(1564), - [anon_sym_float] = ACTIONS(1564), - [anon_sym_double] = ACTIONS(1564), - [anon_sym_float16] = ACTIONS(1564), - [anon_sym_bfloat16] = ACTIONS(1564), - [anon_sym_float128] = ACTIONS(1564), - [anon_sym_iptr] = ACTIONS(1564), - [anon_sym_uptr] = ACTIONS(1564), - [anon_sym_isz] = ACTIONS(1564), - [anon_sym_usz] = ACTIONS(1564), - [anon_sym_anyfault] = ACTIONS(1564), - [anon_sym_any] = ACTIONS(1564), - [anon_sym_DOLLARtypeof] = ACTIONS(1564), - [anon_sym_DOLLARtypefrom] = ACTIONS(1564), - [anon_sym_DOLLARvatype] = ACTIONS(1564), - [anon_sym_DOLLARevaltype] = ACTIONS(1564), - [sym_real_literal] = ACTIONS(1566), + [sym_ident] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1413), + [anon_sym_SQUOTE] = ACTIONS(1413), + [anon_sym_DQUOTE] = ACTIONS(1413), + [anon_sym_BQUOTE] = ACTIONS(1413), + [sym_bytes_literal] = ACTIONS(1413), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1411), + [sym_at_ident] = ACTIONS(1413), + [sym_hash_ident] = ACTIONS(1413), + [sym_type_ident] = ACTIONS(1413), + [sym_ct_type_ident] = ACTIONS(1413), + [sym_const_ident] = ACTIONS(1411), + [sym_builtin] = ACTIONS(1413), + [anon_sym_LPAREN] = ACTIONS(1413), + [anon_sym_AMP] = ACTIONS(1411), + [anon_sym_static] = ACTIONS(1411), + [anon_sym_tlocal] = ACTIONS(1411), + [anon_sym_SEMI] = ACTIONS(1413), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_LBRACE] = ACTIONS(1411), + [anon_sym_const] = ACTIONS(1411), + [anon_sym_var] = ACTIONS(1411), + [anon_sym_return] = ACTIONS(1411), + [anon_sym_continue] = ACTIONS(1411), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_defer] = ACTIONS(1411), + [anon_sym_assert] = ACTIONS(1411), + [anon_sym_nextcase] = ACTIONS(1411), + [anon_sym_switch] = ACTIONS(1411), + [anon_sym_AMP_AMP] = ACTIONS(1413), + [anon_sym_if] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1411), + [anon_sym_foreach] = ACTIONS(1411), + [anon_sym_foreach_r] = ACTIONS(1411), + [anon_sym_while] = ACTIONS(1411), + [anon_sym_do] = ACTIONS(1411), + [anon_sym_int] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_STAR] = ACTIONS(1413), + [anon_sym_asm] = ACTIONS(1411), + [anon_sym_DOLLARassert] = ACTIONS(1411), + [anon_sym_DOLLARerror] = ACTIONS(1411), + [anon_sym_DOLLARecho] = ACTIONS(1411), + [anon_sym_DOLLARif] = ACTIONS(1411), + [anon_sym_DOLLARendif] = ACTIONS(1411), + [anon_sym_DOLLARelse] = ACTIONS(1411), + [anon_sym_DOLLARswitch] = ACTIONS(1411), + [anon_sym_DOLLARfor] = ACTIONS(1411), + [anon_sym_DOLLARforeach] = ACTIONS(1411), + [anon_sym_DOLLARalignof] = ACTIONS(1411), + [anon_sym_DOLLARextnameof] = ACTIONS(1411), + [anon_sym_DOLLARnameof] = ACTIONS(1411), + [anon_sym_DOLLARoffsetof] = ACTIONS(1411), + [anon_sym_DOLLARqnameof] = ACTIONS(1411), + [anon_sym_DOLLARvaconst] = ACTIONS(1411), + [anon_sym_DOLLARvaarg] = ACTIONS(1411), + [anon_sym_DOLLARvaref] = ACTIONS(1411), + [anon_sym_DOLLARvaexpr] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1411), + [anon_sym_false] = ACTIONS(1411), + [anon_sym_null] = ACTIONS(1411), + [anon_sym_DOLLARvacount] = ACTIONS(1411), + [anon_sym_DOLLARappend] = ACTIONS(1411), + [anon_sym_DOLLARconcat] = ACTIONS(1411), + [anon_sym_DOLLAReval] = ACTIONS(1411), + [anon_sym_DOLLARis_const] = ACTIONS(1411), + [anon_sym_DOLLARsizeof] = ACTIONS(1411), + [anon_sym_DOLLARstringify] = ACTIONS(1411), + [anon_sym_DOLLARand] = ACTIONS(1411), + [anon_sym_DOLLARdefined] = ACTIONS(1411), + [anon_sym_DOLLARembed] = ACTIONS(1411), + [anon_sym_DOLLARor] = ACTIONS(1411), + [anon_sym_DOLLARfeature] = ACTIONS(1411), + [anon_sym_DOLLARassignable] = ACTIONS(1411), + [anon_sym_BANG] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_typeid] = ACTIONS(1411), + [anon_sym_LBRACE_PIPE] = ACTIONS(1413), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_bool] = ACTIONS(1411), + [anon_sym_char] = ACTIONS(1411), + [anon_sym_ichar] = ACTIONS(1411), + [anon_sym_short] = ACTIONS(1411), + [anon_sym_ushort] = ACTIONS(1411), + [anon_sym_uint] = ACTIONS(1411), + [anon_sym_long] = ACTIONS(1411), + [anon_sym_ulong] = ACTIONS(1411), + [anon_sym_int128] = ACTIONS(1411), + [anon_sym_uint128] = ACTIONS(1411), + [anon_sym_float] = ACTIONS(1411), + [anon_sym_double] = ACTIONS(1411), + [anon_sym_float16] = ACTIONS(1411), + [anon_sym_bfloat16] = ACTIONS(1411), + [anon_sym_float128] = ACTIONS(1411), + [anon_sym_iptr] = ACTIONS(1411), + [anon_sym_uptr] = ACTIONS(1411), + [anon_sym_isz] = ACTIONS(1411), + [anon_sym_usz] = ACTIONS(1411), + [anon_sym_anyfault] = ACTIONS(1411), + [anon_sym_any] = ACTIONS(1411), + [anon_sym_DOLLARtypeof] = ACTIONS(1411), + [anon_sym_DOLLARtypefrom] = ACTIONS(1411), + [anon_sym_DOLLARvatype] = ACTIONS(1411), + [anon_sym_DOLLARevaltype] = ACTIONS(1411), + [sym_real_literal] = ACTIONS(1413), }, [534] = { [sym_line_comment] = STATE(534), [sym_doc_comment] = STATE(534), [sym_block_comment] = STATE(534), - [sym_ident] = ACTIONS(1628), - [sym_integer_literal] = ACTIONS(1630), - [anon_sym_SQUOTE] = ACTIONS(1630), - [anon_sym_DQUOTE] = ACTIONS(1630), - [anon_sym_BQUOTE] = ACTIONS(1630), - [sym_bytes_literal] = ACTIONS(1630), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1628), - [sym_at_ident] = ACTIONS(1630), - [sym_hash_ident] = ACTIONS(1630), - [sym_type_ident] = ACTIONS(1630), - [sym_ct_type_ident] = ACTIONS(1630), - [sym_const_ident] = ACTIONS(1628), - [sym_builtin] = ACTIONS(1630), - [anon_sym_LPAREN] = ACTIONS(1630), - [anon_sym_AMP] = ACTIONS(1628), - [anon_sym_static] = ACTIONS(1628), - [anon_sym_tlocal] = ACTIONS(1628), - [anon_sym_SEMI] = ACTIONS(1630), - [anon_sym_fn] = ACTIONS(1628), - [anon_sym_LBRACE] = ACTIONS(1628), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_var] = ACTIONS(1628), - [anon_sym_return] = ACTIONS(1628), - [anon_sym_continue] = ACTIONS(1628), - [anon_sym_break] = ACTIONS(1628), - [anon_sym_defer] = ACTIONS(1628), - [anon_sym_assert] = ACTIONS(1628), - [anon_sym_nextcase] = ACTIONS(1628), - [anon_sym_switch] = ACTIONS(1628), - [anon_sym_AMP_AMP] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1628), - [anon_sym_for] = ACTIONS(1628), - [anon_sym_foreach] = ACTIONS(1628), - [anon_sym_foreach_r] = ACTIONS(1628), - [anon_sym_while] = ACTIONS(1628), - [anon_sym_do] = ACTIONS(1628), - [anon_sym_int] = ACTIONS(1628), - [anon_sym_PLUS] = ACTIONS(1628), - [anon_sym_DASH] = ACTIONS(1628), - [anon_sym_STAR] = ACTIONS(1630), - [anon_sym_asm] = ACTIONS(1628), - [anon_sym_DOLLARassert] = ACTIONS(1628), - [anon_sym_DOLLARerror] = ACTIONS(1628), - [anon_sym_DOLLARecho] = ACTIONS(1628), - [anon_sym_DOLLARif] = ACTIONS(1628), - [anon_sym_DOLLARcase] = ACTIONS(1628), - [anon_sym_DOLLARdefault] = ACTIONS(1628), - [anon_sym_DOLLARswitch] = ACTIONS(1628), - [anon_sym_DOLLARendswitch] = ACTIONS(1628), - [anon_sym_DOLLARfor] = ACTIONS(1628), - [anon_sym_DOLLARforeach] = ACTIONS(1628), - [anon_sym_DOLLARalignof] = ACTIONS(1628), - [anon_sym_DOLLARextnameof] = ACTIONS(1628), - [anon_sym_DOLLARnameof] = ACTIONS(1628), - [anon_sym_DOLLARoffsetof] = ACTIONS(1628), - [anon_sym_DOLLARqnameof] = ACTIONS(1628), - [anon_sym_DOLLARvaconst] = ACTIONS(1628), - [anon_sym_DOLLARvaarg] = ACTIONS(1628), - [anon_sym_DOLLARvaref] = ACTIONS(1628), - [anon_sym_DOLLARvaexpr] = ACTIONS(1628), - [anon_sym_true] = ACTIONS(1628), - [anon_sym_false] = ACTIONS(1628), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_DOLLARvacount] = ACTIONS(1628), - [anon_sym_DOLLARappend] = ACTIONS(1628), - [anon_sym_DOLLARconcat] = ACTIONS(1628), - [anon_sym_DOLLAReval] = ACTIONS(1628), - [anon_sym_DOLLARis_const] = ACTIONS(1628), - [anon_sym_DOLLARsizeof] = ACTIONS(1628), - [anon_sym_DOLLARstringify] = ACTIONS(1628), - [anon_sym_DOLLARand] = ACTIONS(1628), - [anon_sym_DOLLARdefined] = ACTIONS(1628), - [anon_sym_DOLLARembed] = ACTIONS(1628), - [anon_sym_DOLLARor] = ACTIONS(1628), - [anon_sym_DOLLARfeature] = ACTIONS(1628), - [anon_sym_DOLLARassignable] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1630), - [anon_sym_TILDE] = ACTIONS(1630), - [anon_sym_PLUS_PLUS] = ACTIONS(1630), - [anon_sym_DASH_DASH] = ACTIONS(1630), - [anon_sym_typeid] = ACTIONS(1628), - [anon_sym_LBRACE_PIPE] = ACTIONS(1630), - [anon_sym_void] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_ichar] = ACTIONS(1628), - [anon_sym_short] = ACTIONS(1628), - [anon_sym_ushort] = ACTIONS(1628), - [anon_sym_uint] = ACTIONS(1628), - [anon_sym_long] = ACTIONS(1628), - [anon_sym_ulong] = ACTIONS(1628), - [anon_sym_int128] = ACTIONS(1628), - [anon_sym_uint128] = ACTIONS(1628), - [anon_sym_float] = ACTIONS(1628), - [anon_sym_double] = ACTIONS(1628), - [anon_sym_float16] = ACTIONS(1628), - [anon_sym_bfloat16] = ACTIONS(1628), - [anon_sym_float128] = ACTIONS(1628), - [anon_sym_iptr] = ACTIONS(1628), - [anon_sym_uptr] = ACTIONS(1628), - [anon_sym_isz] = ACTIONS(1628), - [anon_sym_usz] = ACTIONS(1628), - [anon_sym_anyfault] = ACTIONS(1628), - [anon_sym_any] = ACTIONS(1628), - [anon_sym_DOLLARtypeof] = ACTIONS(1628), - [anon_sym_DOLLARtypefrom] = ACTIONS(1628), - [anon_sym_DOLLARvatype] = ACTIONS(1628), - [anon_sym_DOLLARevaltype] = ACTIONS(1628), - [sym_real_literal] = ACTIONS(1630), + [sym_ident] = ACTIONS(1427), + [sym_integer_literal] = ACTIONS(1429), + [anon_sym_SQUOTE] = ACTIONS(1429), + [anon_sym_DQUOTE] = ACTIONS(1429), + [anon_sym_BQUOTE] = ACTIONS(1429), + [sym_bytes_literal] = ACTIONS(1429), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1427), + [sym_at_ident] = ACTIONS(1429), + [sym_hash_ident] = ACTIONS(1429), + [sym_type_ident] = ACTIONS(1429), + [sym_ct_type_ident] = ACTIONS(1429), + [sym_const_ident] = ACTIONS(1427), + [sym_builtin] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1429), + [anon_sym_AMP] = ACTIONS(1427), + [anon_sym_static] = ACTIONS(1427), + [anon_sym_tlocal] = ACTIONS(1427), + [anon_sym_SEMI] = ACTIONS(1429), + [anon_sym_fn] = ACTIONS(1427), + [anon_sym_LBRACE] = ACTIONS(1427), + [anon_sym_const] = ACTIONS(1427), + [anon_sym_var] = ACTIONS(1427), + [anon_sym_return] = ACTIONS(1427), + [anon_sym_continue] = ACTIONS(1427), + [anon_sym_break] = ACTIONS(1427), + [anon_sym_defer] = ACTIONS(1427), + [anon_sym_assert] = ACTIONS(1427), + [anon_sym_nextcase] = ACTIONS(1427), + [anon_sym_switch] = ACTIONS(1427), + [anon_sym_AMP_AMP] = ACTIONS(1429), + [anon_sym_if] = ACTIONS(1427), + [anon_sym_for] = ACTIONS(1427), + [anon_sym_foreach] = ACTIONS(1427), + [anon_sym_foreach_r] = ACTIONS(1427), + [anon_sym_while] = ACTIONS(1427), + [anon_sym_do] = ACTIONS(1427), + [anon_sym_int] = ACTIONS(1427), + [anon_sym_PLUS] = ACTIONS(1427), + [anon_sym_DASH] = ACTIONS(1427), + [anon_sym_STAR] = ACTIONS(1429), + [anon_sym_asm] = ACTIONS(1427), + [anon_sym_DOLLARassert] = ACTIONS(1427), + [anon_sym_DOLLARerror] = ACTIONS(1427), + [anon_sym_DOLLARecho] = ACTIONS(1427), + [anon_sym_DOLLARif] = ACTIONS(1427), + [anon_sym_DOLLARendif] = ACTIONS(1427), + [anon_sym_DOLLARelse] = ACTIONS(1427), + [anon_sym_DOLLARswitch] = ACTIONS(1427), + [anon_sym_DOLLARfor] = ACTIONS(1427), + [anon_sym_DOLLARforeach] = ACTIONS(1427), + [anon_sym_DOLLARalignof] = ACTIONS(1427), + [anon_sym_DOLLARextnameof] = ACTIONS(1427), + [anon_sym_DOLLARnameof] = ACTIONS(1427), + [anon_sym_DOLLARoffsetof] = ACTIONS(1427), + [anon_sym_DOLLARqnameof] = ACTIONS(1427), + [anon_sym_DOLLARvaconst] = ACTIONS(1427), + [anon_sym_DOLLARvaarg] = ACTIONS(1427), + [anon_sym_DOLLARvaref] = ACTIONS(1427), + [anon_sym_DOLLARvaexpr] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1427), + [anon_sym_false] = ACTIONS(1427), + [anon_sym_null] = ACTIONS(1427), + [anon_sym_DOLLARvacount] = ACTIONS(1427), + [anon_sym_DOLLARappend] = ACTIONS(1427), + [anon_sym_DOLLARconcat] = ACTIONS(1427), + [anon_sym_DOLLAReval] = ACTIONS(1427), + [anon_sym_DOLLARis_const] = ACTIONS(1427), + [anon_sym_DOLLARsizeof] = ACTIONS(1427), + [anon_sym_DOLLARstringify] = ACTIONS(1427), + [anon_sym_DOLLARand] = ACTIONS(1427), + [anon_sym_DOLLARdefined] = ACTIONS(1427), + [anon_sym_DOLLARembed] = ACTIONS(1427), + [anon_sym_DOLLARor] = ACTIONS(1427), + [anon_sym_DOLLARfeature] = ACTIONS(1427), + [anon_sym_DOLLARassignable] = ACTIONS(1427), + [anon_sym_BANG] = ACTIONS(1429), + [anon_sym_TILDE] = ACTIONS(1429), + [anon_sym_PLUS_PLUS] = ACTIONS(1429), + [anon_sym_DASH_DASH] = ACTIONS(1429), + [anon_sym_typeid] = ACTIONS(1427), + [anon_sym_LBRACE_PIPE] = ACTIONS(1429), + [anon_sym_void] = ACTIONS(1427), + [anon_sym_bool] = ACTIONS(1427), + [anon_sym_char] = ACTIONS(1427), + [anon_sym_ichar] = ACTIONS(1427), + [anon_sym_short] = ACTIONS(1427), + [anon_sym_ushort] = ACTIONS(1427), + [anon_sym_uint] = ACTIONS(1427), + [anon_sym_long] = ACTIONS(1427), + [anon_sym_ulong] = ACTIONS(1427), + [anon_sym_int128] = ACTIONS(1427), + [anon_sym_uint128] = ACTIONS(1427), + [anon_sym_float] = ACTIONS(1427), + [anon_sym_double] = ACTIONS(1427), + [anon_sym_float16] = ACTIONS(1427), + [anon_sym_bfloat16] = ACTIONS(1427), + [anon_sym_float128] = ACTIONS(1427), + [anon_sym_iptr] = ACTIONS(1427), + [anon_sym_uptr] = ACTIONS(1427), + [anon_sym_isz] = ACTIONS(1427), + [anon_sym_usz] = ACTIONS(1427), + [anon_sym_anyfault] = ACTIONS(1427), + [anon_sym_any] = ACTIONS(1427), + [anon_sym_DOLLARtypeof] = ACTIONS(1427), + [anon_sym_DOLLARtypefrom] = ACTIONS(1427), + [anon_sym_DOLLARvatype] = ACTIONS(1427), + [anon_sym_DOLLARevaltype] = ACTIONS(1427), + [sym_real_literal] = ACTIONS(1429), }, [535] = { [sym_line_comment] = STATE(535), [sym_doc_comment] = STATE(535), [sym_block_comment] = STATE(535), - [sym_ident] = ACTIONS(1648), - [sym_integer_literal] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1650), - [anon_sym_BQUOTE] = ACTIONS(1650), - [sym_bytes_literal] = ACTIONS(1650), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1648), - [sym_at_ident] = ACTIONS(1650), - [sym_hash_ident] = ACTIONS(1650), - [sym_type_ident] = ACTIONS(1650), - [sym_ct_type_ident] = ACTIONS(1650), - [sym_const_ident] = ACTIONS(1648), - [sym_builtin] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_AMP] = ACTIONS(1648), - [anon_sym_static] = ACTIONS(1648), - [anon_sym_tlocal] = ACTIONS(1648), - [anon_sym_SEMI] = ACTIONS(1650), - [anon_sym_fn] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_const] = ACTIONS(1648), - [anon_sym_var] = ACTIONS(1648), - [anon_sym_return] = ACTIONS(1648), - [anon_sym_continue] = ACTIONS(1648), - [anon_sym_break] = ACTIONS(1648), - [anon_sym_defer] = ACTIONS(1648), - [anon_sym_assert] = ACTIONS(1648), - [anon_sym_nextcase] = ACTIONS(1648), - [anon_sym_switch] = ACTIONS(1648), - [anon_sym_AMP_AMP] = ACTIONS(1650), - [anon_sym_if] = ACTIONS(1648), - [anon_sym_for] = ACTIONS(1648), - [anon_sym_foreach] = ACTIONS(1648), - [anon_sym_foreach_r] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1648), - [anon_sym_do] = ACTIONS(1648), - [anon_sym_int] = ACTIONS(1648), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_STAR] = ACTIONS(1650), - [anon_sym_asm] = ACTIONS(1648), - [anon_sym_DOLLARassert] = ACTIONS(1648), - [anon_sym_DOLLARerror] = ACTIONS(1648), - [anon_sym_DOLLARecho] = ACTIONS(1648), - [anon_sym_DOLLARif] = ACTIONS(1648), - [anon_sym_DOLLARcase] = ACTIONS(1648), - [anon_sym_DOLLARdefault] = ACTIONS(1648), - [anon_sym_DOLLARswitch] = ACTIONS(1648), - [anon_sym_DOLLARendswitch] = ACTIONS(1648), - [anon_sym_DOLLARfor] = ACTIONS(1648), - [anon_sym_DOLLARforeach] = ACTIONS(1648), - [anon_sym_DOLLARalignof] = ACTIONS(1648), - [anon_sym_DOLLARextnameof] = ACTIONS(1648), - [anon_sym_DOLLARnameof] = ACTIONS(1648), - [anon_sym_DOLLARoffsetof] = ACTIONS(1648), - [anon_sym_DOLLARqnameof] = ACTIONS(1648), - [anon_sym_DOLLARvaconst] = ACTIONS(1648), - [anon_sym_DOLLARvaarg] = ACTIONS(1648), - [anon_sym_DOLLARvaref] = ACTIONS(1648), - [anon_sym_DOLLARvaexpr] = ACTIONS(1648), - [anon_sym_true] = ACTIONS(1648), - [anon_sym_false] = ACTIONS(1648), - [anon_sym_null] = ACTIONS(1648), - [anon_sym_DOLLARvacount] = ACTIONS(1648), - [anon_sym_DOLLARappend] = ACTIONS(1648), - [anon_sym_DOLLARconcat] = ACTIONS(1648), - [anon_sym_DOLLAReval] = ACTIONS(1648), - [anon_sym_DOLLARis_const] = ACTIONS(1648), - [anon_sym_DOLLARsizeof] = ACTIONS(1648), - [anon_sym_DOLLARstringify] = ACTIONS(1648), - [anon_sym_DOLLARand] = ACTIONS(1648), - [anon_sym_DOLLARdefined] = ACTIONS(1648), - [anon_sym_DOLLARembed] = ACTIONS(1648), - [anon_sym_DOLLARor] = ACTIONS(1648), - [anon_sym_DOLLARfeature] = ACTIONS(1648), - [anon_sym_DOLLARassignable] = ACTIONS(1648), - [anon_sym_BANG] = ACTIONS(1650), - [anon_sym_TILDE] = ACTIONS(1650), - [anon_sym_PLUS_PLUS] = ACTIONS(1650), - [anon_sym_DASH_DASH] = ACTIONS(1650), - [anon_sym_typeid] = ACTIONS(1648), - [anon_sym_LBRACE_PIPE] = ACTIONS(1650), - [anon_sym_void] = ACTIONS(1648), - [anon_sym_bool] = ACTIONS(1648), - [anon_sym_char] = ACTIONS(1648), - [anon_sym_ichar] = ACTIONS(1648), - [anon_sym_short] = ACTIONS(1648), - [anon_sym_ushort] = ACTIONS(1648), - [anon_sym_uint] = ACTIONS(1648), - [anon_sym_long] = ACTIONS(1648), - [anon_sym_ulong] = ACTIONS(1648), - [anon_sym_int128] = ACTIONS(1648), - [anon_sym_uint128] = ACTIONS(1648), - [anon_sym_float] = ACTIONS(1648), - [anon_sym_double] = ACTIONS(1648), - [anon_sym_float16] = ACTIONS(1648), - [anon_sym_bfloat16] = ACTIONS(1648), - [anon_sym_float128] = ACTIONS(1648), - [anon_sym_iptr] = ACTIONS(1648), - [anon_sym_uptr] = ACTIONS(1648), - [anon_sym_isz] = ACTIONS(1648), - [anon_sym_usz] = ACTIONS(1648), - [anon_sym_anyfault] = ACTIONS(1648), - [anon_sym_any] = ACTIONS(1648), - [anon_sym_DOLLARtypeof] = ACTIONS(1648), - [anon_sym_DOLLARtypefrom] = ACTIONS(1648), - [anon_sym_DOLLARvatype] = ACTIONS(1648), - [anon_sym_DOLLARevaltype] = ACTIONS(1648), - [sym_real_literal] = ACTIONS(1650), + [sym_ident] = ACTIONS(1431), + [sym_integer_literal] = ACTIONS(1433), + [anon_sym_SQUOTE] = ACTIONS(1433), + [anon_sym_DQUOTE] = ACTIONS(1433), + [anon_sym_BQUOTE] = ACTIONS(1433), + [sym_bytes_literal] = ACTIONS(1433), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1431), + [sym_at_ident] = ACTIONS(1433), + [sym_hash_ident] = ACTIONS(1433), + [sym_type_ident] = ACTIONS(1433), + [sym_ct_type_ident] = ACTIONS(1433), + [sym_const_ident] = ACTIONS(1431), + [sym_builtin] = ACTIONS(1433), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_AMP] = ACTIONS(1431), + [anon_sym_static] = ACTIONS(1431), + [anon_sym_tlocal] = ACTIONS(1431), + [anon_sym_SEMI] = ACTIONS(1433), + [anon_sym_fn] = ACTIONS(1431), + [anon_sym_LBRACE] = ACTIONS(1431), + [anon_sym_const] = ACTIONS(1431), + [anon_sym_var] = ACTIONS(1431), + [anon_sym_return] = ACTIONS(1431), + [anon_sym_continue] = ACTIONS(1431), + [anon_sym_break] = ACTIONS(1431), + [anon_sym_defer] = ACTIONS(1431), + [anon_sym_assert] = ACTIONS(1431), + [anon_sym_nextcase] = ACTIONS(1431), + [anon_sym_switch] = ACTIONS(1431), + [anon_sym_AMP_AMP] = ACTIONS(1433), + [anon_sym_if] = ACTIONS(1431), + [anon_sym_for] = ACTIONS(1431), + [anon_sym_foreach] = ACTIONS(1431), + [anon_sym_foreach_r] = ACTIONS(1431), + [anon_sym_while] = ACTIONS(1431), + [anon_sym_do] = ACTIONS(1431), + [anon_sym_int] = ACTIONS(1431), + [anon_sym_PLUS] = ACTIONS(1431), + [anon_sym_DASH] = ACTIONS(1431), + [anon_sym_STAR] = ACTIONS(1433), + [anon_sym_asm] = ACTIONS(1431), + [anon_sym_DOLLARassert] = ACTIONS(1431), + [anon_sym_DOLLARerror] = ACTIONS(1431), + [anon_sym_DOLLARecho] = ACTIONS(1431), + [anon_sym_DOLLARif] = ACTIONS(1431), + [anon_sym_DOLLARendif] = ACTIONS(1431), + [anon_sym_DOLLARelse] = ACTIONS(1431), + [anon_sym_DOLLARswitch] = ACTIONS(1431), + [anon_sym_DOLLARfor] = ACTIONS(1431), + [anon_sym_DOLLARforeach] = ACTIONS(1431), + [anon_sym_DOLLARalignof] = ACTIONS(1431), + [anon_sym_DOLLARextnameof] = ACTIONS(1431), + [anon_sym_DOLLARnameof] = ACTIONS(1431), + [anon_sym_DOLLARoffsetof] = ACTIONS(1431), + [anon_sym_DOLLARqnameof] = ACTIONS(1431), + [anon_sym_DOLLARvaconst] = ACTIONS(1431), + [anon_sym_DOLLARvaarg] = ACTIONS(1431), + [anon_sym_DOLLARvaref] = ACTIONS(1431), + [anon_sym_DOLLARvaexpr] = ACTIONS(1431), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_null] = ACTIONS(1431), + [anon_sym_DOLLARvacount] = ACTIONS(1431), + [anon_sym_DOLLARappend] = ACTIONS(1431), + [anon_sym_DOLLARconcat] = ACTIONS(1431), + [anon_sym_DOLLAReval] = ACTIONS(1431), + [anon_sym_DOLLARis_const] = ACTIONS(1431), + [anon_sym_DOLLARsizeof] = ACTIONS(1431), + [anon_sym_DOLLARstringify] = ACTIONS(1431), + [anon_sym_DOLLARand] = ACTIONS(1431), + [anon_sym_DOLLARdefined] = ACTIONS(1431), + [anon_sym_DOLLARembed] = ACTIONS(1431), + [anon_sym_DOLLARor] = ACTIONS(1431), + [anon_sym_DOLLARfeature] = ACTIONS(1431), + [anon_sym_DOLLARassignable] = ACTIONS(1431), + [anon_sym_BANG] = ACTIONS(1433), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_PLUS_PLUS] = ACTIONS(1433), + [anon_sym_DASH_DASH] = ACTIONS(1433), + [anon_sym_typeid] = ACTIONS(1431), + [anon_sym_LBRACE_PIPE] = ACTIONS(1433), + [anon_sym_void] = ACTIONS(1431), + [anon_sym_bool] = ACTIONS(1431), + [anon_sym_char] = ACTIONS(1431), + [anon_sym_ichar] = ACTIONS(1431), + [anon_sym_short] = ACTIONS(1431), + [anon_sym_ushort] = ACTIONS(1431), + [anon_sym_uint] = ACTIONS(1431), + [anon_sym_long] = ACTIONS(1431), + [anon_sym_ulong] = ACTIONS(1431), + [anon_sym_int128] = ACTIONS(1431), + [anon_sym_uint128] = ACTIONS(1431), + [anon_sym_float] = ACTIONS(1431), + [anon_sym_double] = ACTIONS(1431), + [anon_sym_float16] = ACTIONS(1431), + [anon_sym_bfloat16] = ACTIONS(1431), + [anon_sym_float128] = ACTIONS(1431), + [anon_sym_iptr] = ACTIONS(1431), + [anon_sym_uptr] = ACTIONS(1431), + [anon_sym_isz] = ACTIONS(1431), + [anon_sym_usz] = ACTIONS(1431), + [anon_sym_anyfault] = ACTIONS(1431), + [anon_sym_any] = ACTIONS(1431), + [anon_sym_DOLLARtypeof] = ACTIONS(1431), + [anon_sym_DOLLARtypefrom] = ACTIONS(1431), + [anon_sym_DOLLARvatype] = ACTIONS(1431), + [anon_sym_DOLLARevaltype] = ACTIONS(1431), + [sym_real_literal] = ACTIONS(1433), }, [536] = { [sym_line_comment] = STATE(536), [sym_doc_comment] = STATE(536), [sym_block_comment] = STATE(536), - [sym_ident] = ACTIONS(1660), - [sym_integer_literal] = ACTIONS(1662), - [anon_sym_SQUOTE] = ACTIONS(1662), - [anon_sym_DQUOTE] = ACTIONS(1662), - [anon_sym_BQUOTE] = ACTIONS(1662), - [sym_bytes_literal] = ACTIONS(1662), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1660), - [sym_at_ident] = ACTIONS(1662), - [sym_hash_ident] = ACTIONS(1662), - [sym_type_ident] = ACTIONS(1662), - [sym_ct_type_ident] = ACTIONS(1662), - [sym_const_ident] = ACTIONS(1660), - [sym_builtin] = ACTIONS(1662), - [anon_sym_LPAREN] = ACTIONS(1662), - [anon_sym_AMP] = ACTIONS(1660), - [anon_sym_static] = ACTIONS(1660), - [anon_sym_tlocal] = ACTIONS(1660), - [anon_sym_SEMI] = ACTIONS(1662), - [anon_sym_fn] = ACTIONS(1660), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_const] = ACTIONS(1660), - [anon_sym_var] = ACTIONS(1660), - [anon_sym_return] = ACTIONS(1660), - [anon_sym_continue] = ACTIONS(1660), - [anon_sym_break] = ACTIONS(1660), - [anon_sym_defer] = ACTIONS(1660), - [anon_sym_assert] = ACTIONS(1660), - [anon_sym_nextcase] = ACTIONS(1660), - [anon_sym_switch] = ACTIONS(1660), - [anon_sym_AMP_AMP] = ACTIONS(1662), - [anon_sym_if] = ACTIONS(1660), - [anon_sym_for] = ACTIONS(1660), - [anon_sym_foreach] = ACTIONS(1660), - [anon_sym_foreach_r] = ACTIONS(1660), - [anon_sym_while] = ACTIONS(1660), - [anon_sym_do] = ACTIONS(1660), - [anon_sym_int] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1660), - [anon_sym_DASH] = ACTIONS(1660), - [anon_sym_STAR] = ACTIONS(1662), - [anon_sym_asm] = ACTIONS(1660), - [anon_sym_DOLLARassert] = ACTIONS(1660), - [anon_sym_DOLLARerror] = ACTIONS(1660), - [anon_sym_DOLLARecho] = ACTIONS(1660), - [anon_sym_DOLLARif] = ACTIONS(1660), - [anon_sym_DOLLARcase] = ACTIONS(1660), - [anon_sym_DOLLARdefault] = ACTIONS(1660), - [anon_sym_DOLLARswitch] = ACTIONS(1660), - [anon_sym_DOLLARendswitch] = ACTIONS(1660), - [anon_sym_DOLLARfor] = ACTIONS(1660), - [anon_sym_DOLLARforeach] = ACTIONS(1660), - [anon_sym_DOLLARalignof] = ACTIONS(1660), - [anon_sym_DOLLARextnameof] = ACTIONS(1660), - [anon_sym_DOLLARnameof] = ACTIONS(1660), - [anon_sym_DOLLARoffsetof] = ACTIONS(1660), - [anon_sym_DOLLARqnameof] = ACTIONS(1660), - [anon_sym_DOLLARvaconst] = ACTIONS(1660), - [anon_sym_DOLLARvaarg] = ACTIONS(1660), - [anon_sym_DOLLARvaref] = ACTIONS(1660), - [anon_sym_DOLLARvaexpr] = ACTIONS(1660), - [anon_sym_true] = ACTIONS(1660), - [anon_sym_false] = ACTIONS(1660), - [anon_sym_null] = ACTIONS(1660), - [anon_sym_DOLLARvacount] = ACTIONS(1660), - [anon_sym_DOLLARappend] = ACTIONS(1660), - [anon_sym_DOLLARconcat] = ACTIONS(1660), - [anon_sym_DOLLAReval] = ACTIONS(1660), - [anon_sym_DOLLARis_const] = ACTIONS(1660), - [anon_sym_DOLLARsizeof] = ACTIONS(1660), - [anon_sym_DOLLARstringify] = ACTIONS(1660), - [anon_sym_DOLLARand] = ACTIONS(1660), - [anon_sym_DOLLARdefined] = ACTIONS(1660), - [anon_sym_DOLLARembed] = ACTIONS(1660), - [anon_sym_DOLLARor] = ACTIONS(1660), - [anon_sym_DOLLARfeature] = ACTIONS(1660), - [anon_sym_DOLLARassignable] = ACTIONS(1660), - [anon_sym_BANG] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1662), - [anon_sym_PLUS_PLUS] = ACTIONS(1662), - [anon_sym_DASH_DASH] = ACTIONS(1662), - [anon_sym_typeid] = ACTIONS(1660), - [anon_sym_LBRACE_PIPE] = ACTIONS(1662), - [anon_sym_void] = ACTIONS(1660), - [anon_sym_bool] = ACTIONS(1660), - [anon_sym_char] = ACTIONS(1660), - [anon_sym_ichar] = ACTIONS(1660), - [anon_sym_short] = ACTIONS(1660), - [anon_sym_ushort] = ACTIONS(1660), - [anon_sym_uint] = ACTIONS(1660), - [anon_sym_long] = ACTIONS(1660), - [anon_sym_ulong] = ACTIONS(1660), - [anon_sym_int128] = ACTIONS(1660), - [anon_sym_uint128] = ACTIONS(1660), - [anon_sym_float] = ACTIONS(1660), - [anon_sym_double] = ACTIONS(1660), - [anon_sym_float16] = ACTIONS(1660), - [anon_sym_bfloat16] = ACTIONS(1660), - [anon_sym_float128] = ACTIONS(1660), - [anon_sym_iptr] = ACTIONS(1660), - [anon_sym_uptr] = ACTIONS(1660), - [anon_sym_isz] = ACTIONS(1660), - [anon_sym_usz] = ACTIONS(1660), - [anon_sym_anyfault] = ACTIONS(1660), - [anon_sym_any] = ACTIONS(1660), - [anon_sym_DOLLARtypeof] = ACTIONS(1660), - [anon_sym_DOLLARtypefrom] = ACTIONS(1660), - [anon_sym_DOLLARvatype] = ACTIONS(1660), - [anon_sym_DOLLARevaltype] = ACTIONS(1660), - [sym_real_literal] = ACTIONS(1662), + [sym_ident] = ACTIONS(1437), + [sym_integer_literal] = ACTIONS(1439), + [anon_sym_SQUOTE] = ACTIONS(1439), + [anon_sym_DQUOTE] = ACTIONS(1439), + [anon_sym_BQUOTE] = ACTIONS(1439), + [sym_bytes_literal] = ACTIONS(1439), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1437), + [sym_at_ident] = ACTIONS(1439), + [sym_hash_ident] = ACTIONS(1439), + [sym_type_ident] = ACTIONS(1439), + [sym_ct_type_ident] = ACTIONS(1439), + [sym_const_ident] = ACTIONS(1437), + [sym_builtin] = ACTIONS(1439), + [anon_sym_LPAREN] = ACTIONS(1439), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_static] = ACTIONS(1437), + [anon_sym_tlocal] = ACTIONS(1437), + [anon_sym_SEMI] = ACTIONS(1439), + [anon_sym_fn] = ACTIONS(1437), + [anon_sym_LBRACE] = ACTIONS(1437), + [anon_sym_const] = ACTIONS(1437), + [anon_sym_var] = ACTIONS(1437), + [anon_sym_return] = ACTIONS(1437), + [anon_sym_continue] = ACTIONS(1437), + [anon_sym_break] = ACTIONS(1437), + [anon_sym_defer] = ACTIONS(1437), + [anon_sym_assert] = ACTIONS(1437), + [anon_sym_nextcase] = ACTIONS(1437), + [anon_sym_switch] = ACTIONS(1437), + [anon_sym_AMP_AMP] = ACTIONS(1439), + [anon_sym_if] = ACTIONS(1437), + [anon_sym_for] = ACTIONS(1437), + [anon_sym_foreach] = ACTIONS(1437), + [anon_sym_foreach_r] = ACTIONS(1437), + [anon_sym_while] = ACTIONS(1437), + [anon_sym_do] = ACTIONS(1437), + [anon_sym_int] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_STAR] = ACTIONS(1439), + [anon_sym_asm] = ACTIONS(1437), + [anon_sym_DOLLARassert] = ACTIONS(1437), + [anon_sym_DOLLARerror] = ACTIONS(1437), + [anon_sym_DOLLARecho] = ACTIONS(1437), + [anon_sym_DOLLARif] = ACTIONS(1437), + [anon_sym_DOLLARendif] = ACTIONS(1437), + [anon_sym_DOLLARelse] = ACTIONS(1437), + [anon_sym_DOLLARswitch] = ACTIONS(1437), + [anon_sym_DOLLARfor] = ACTIONS(1437), + [anon_sym_DOLLARforeach] = ACTIONS(1437), + [anon_sym_DOLLARalignof] = ACTIONS(1437), + [anon_sym_DOLLARextnameof] = ACTIONS(1437), + [anon_sym_DOLLARnameof] = ACTIONS(1437), + [anon_sym_DOLLARoffsetof] = ACTIONS(1437), + [anon_sym_DOLLARqnameof] = ACTIONS(1437), + [anon_sym_DOLLARvaconst] = ACTIONS(1437), + [anon_sym_DOLLARvaarg] = ACTIONS(1437), + [anon_sym_DOLLARvaref] = ACTIONS(1437), + [anon_sym_DOLLARvaexpr] = ACTIONS(1437), + [anon_sym_true] = ACTIONS(1437), + [anon_sym_false] = ACTIONS(1437), + [anon_sym_null] = ACTIONS(1437), + [anon_sym_DOLLARvacount] = ACTIONS(1437), + [anon_sym_DOLLARappend] = ACTIONS(1437), + [anon_sym_DOLLARconcat] = ACTIONS(1437), + [anon_sym_DOLLAReval] = ACTIONS(1437), + [anon_sym_DOLLARis_const] = ACTIONS(1437), + [anon_sym_DOLLARsizeof] = ACTIONS(1437), + [anon_sym_DOLLARstringify] = ACTIONS(1437), + [anon_sym_DOLLARand] = ACTIONS(1437), + [anon_sym_DOLLARdefined] = ACTIONS(1437), + [anon_sym_DOLLARembed] = ACTIONS(1437), + [anon_sym_DOLLARor] = ACTIONS(1437), + [anon_sym_DOLLARfeature] = ACTIONS(1437), + [anon_sym_DOLLARassignable] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1439), + [anon_sym_TILDE] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_typeid] = ACTIONS(1437), + [anon_sym_LBRACE_PIPE] = ACTIONS(1439), + [anon_sym_void] = ACTIONS(1437), + [anon_sym_bool] = ACTIONS(1437), + [anon_sym_char] = ACTIONS(1437), + [anon_sym_ichar] = ACTIONS(1437), + [anon_sym_short] = ACTIONS(1437), + [anon_sym_ushort] = ACTIONS(1437), + [anon_sym_uint] = ACTIONS(1437), + [anon_sym_long] = ACTIONS(1437), + [anon_sym_ulong] = ACTIONS(1437), + [anon_sym_int128] = ACTIONS(1437), + [anon_sym_uint128] = ACTIONS(1437), + [anon_sym_float] = ACTIONS(1437), + [anon_sym_double] = ACTIONS(1437), + [anon_sym_float16] = ACTIONS(1437), + [anon_sym_bfloat16] = ACTIONS(1437), + [anon_sym_float128] = ACTIONS(1437), + [anon_sym_iptr] = ACTIONS(1437), + [anon_sym_uptr] = ACTIONS(1437), + [anon_sym_isz] = ACTIONS(1437), + [anon_sym_usz] = ACTIONS(1437), + [anon_sym_anyfault] = ACTIONS(1437), + [anon_sym_any] = ACTIONS(1437), + [anon_sym_DOLLARtypeof] = ACTIONS(1437), + [anon_sym_DOLLARtypefrom] = ACTIONS(1437), + [anon_sym_DOLLARvatype] = ACTIONS(1437), + [anon_sym_DOLLARevaltype] = ACTIONS(1437), + [sym_real_literal] = ACTIONS(1439), }, [537] = { [sym_line_comment] = STATE(537), [sym_doc_comment] = STATE(537), [sym_block_comment] = STATE(537), - [sym_ident] = ACTIONS(1664), - [sym_integer_literal] = ACTIONS(1666), - [anon_sym_SQUOTE] = ACTIONS(1666), - [anon_sym_DQUOTE] = ACTIONS(1666), - [anon_sym_BQUOTE] = ACTIONS(1666), - [sym_bytes_literal] = ACTIONS(1666), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1664), - [sym_at_ident] = ACTIONS(1666), - [sym_hash_ident] = ACTIONS(1666), - [sym_type_ident] = ACTIONS(1666), - [sym_ct_type_ident] = ACTIONS(1666), - [sym_const_ident] = ACTIONS(1664), - [sym_builtin] = ACTIONS(1666), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_static] = ACTIONS(1664), - [anon_sym_tlocal] = ACTIONS(1664), - [anon_sym_SEMI] = ACTIONS(1666), - [anon_sym_fn] = ACTIONS(1664), - [anon_sym_LBRACE] = ACTIONS(1664), - [anon_sym_const] = ACTIONS(1664), - [anon_sym_var] = ACTIONS(1664), - [anon_sym_return] = ACTIONS(1664), - [anon_sym_continue] = ACTIONS(1664), - [anon_sym_break] = ACTIONS(1664), - [anon_sym_defer] = ACTIONS(1664), - [anon_sym_assert] = ACTIONS(1664), - [anon_sym_nextcase] = ACTIONS(1664), - [anon_sym_switch] = ACTIONS(1664), - [anon_sym_AMP_AMP] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_for] = ACTIONS(1664), - [anon_sym_foreach] = ACTIONS(1664), - [anon_sym_foreach_r] = ACTIONS(1664), - [anon_sym_while] = ACTIONS(1664), - [anon_sym_do] = ACTIONS(1664), - [anon_sym_int] = ACTIONS(1664), - [anon_sym_PLUS] = ACTIONS(1664), - [anon_sym_DASH] = ACTIONS(1664), - [anon_sym_STAR] = ACTIONS(1666), - [anon_sym_asm] = ACTIONS(1664), - [anon_sym_DOLLARassert] = ACTIONS(1664), - [anon_sym_DOLLARerror] = ACTIONS(1664), - [anon_sym_DOLLARecho] = ACTIONS(1664), - [anon_sym_DOLLARif] = ACTIONS(1664), - [anon_sym_DOLLARcase] = ACTIONS(1664), - [anon_sym_DOLLARdefault] = ACTIONS(1664), - [anon_sym_DOLLARswitch] = ACTIONS(1664), - [anon_sym_DOLLARendswitch] = ACTIONS(1664), - [anon_sym_DOLLARfor] = ACTIONS(1664), - [anon_sym_DOLLARforeach] = ACTIONS(1664), - [anon_sym_DOLLARalignof] = ACTIONS(1664), - [anon_sym_DOLLARextnameof] = ACTIONS(1664), - [anon_sym_DOLLARnameof] = ACTIONS(1664), - [anon_sym_DOLLARoffsetof] = ACTIONS(1664), - [anon_sym_DOLLARqnameof] = ACTIONS(1664), - [anon_sym_DOLLARvaconst] = ACTIONS(1664), - [anon_sym_DOLLARvaarg] = ACTIONS(1664), - [anon_sym_DOLLARvaref] = ACTIONS(1664), - [anon_sym_DOLLARvaexpr] = ACTIONS(1664), - [anon_sym_true] = ACTIONS(1664), - [anon_sym_false] = ACTIONS(1664), - [anon_sym_null] = ACTIONS(1664), - [anon_sym_DOLLARvacount] = ACTIONS(1664), - [anon_sym_DOLLARappend] = ACTIONS(1664), - [anon_sym_DOLLARconcat] = ACTIONS(1664), - [anon_sym_DOLLAReval] = ACTIONS(1664), - [anon_sym_DOLLARis_const] = ACTIONS(1664), - [anon_sym_DOLLARsizeof] = ACTIONS(1664), - [anon_sym_DOLLARstringify] = ACTIONS(1664), - [anon_sym_DOLLARand] = ACTIONS(1664), - [anon_sym_DOLLARdefined] = ACTIONS(1664), - [anon_sym_DOLLARembed] = ACTIONS(1664), - [anon_sym_DOLLARor] = ACTIONS(1664), - [anon_sym_DOLLARfeature] = ACTIONS(1664), - [anon_sym_DOLLARassignable] = ACTIONS(1664), - [anon_sym_BANG] = ACTIONS(1666), - [anon_sym_TILDE] = ACTIONS(1666), - [anon_sym_PLUS_PLUS] = ACTIONS(1666), - [anon_sym_DASH_DASH] = ACTIONS(1666), - [anon_sym_typeid] = ACTIONS(1664), - [anon_sym_LBRACE_PIPE] = ACTIONS(1666), - [anon_sym_void] = ACTIONS(1664), - [anon_sym_bool] = ACTIONS(1664), - [anon_sym_char] = ACTIONS(1664), - [anon_sym_ichar] = ACTIONS(1664), - [anon_sym_short] = ACTIONS(1664), - [anon_sym_ushort] = ACTIONS(1664), - [anon_sym_uint] = ACTIONS(1664), - [anon_sym_long] = ACTIONS(1664), - [anon_sym_ulong] = ACTIONS(1664), - [anon_sym_int128] = ACTIONS(1664), - [anon_sym_uint128] = ACTIONS(1664), - [anon_sym_float] = ACTIONS(1664), - [anon_sym_double] = ACTIONS(1664), - [anon_sym_float16] = ACTIONS(1664), - [anon_sym_bfloat16] = ACTIONS(1664), - [anon_sym_float128] = ACTIONS(1664), - [anon_sym_iptr] = ACTIONS(1664), - [anon_sym_uptr] = ACTIONS(1664), - [anon_sym_isz] = ACTIONS(1664), - [anon_sym_usz] = ACTIONS(1664), - [anon_sym_anyfault] = ACTIONS(1664), - [anon_sym_any] = ACTIONS(1664), - [anon_sym_DOLLARtypeof] = ACTIONS(1664), - [anon_sym_DOLLARtypefrom] = ACTIONS(1664), - [anon_sym_DOLLARvatype] = ACTIONS(1664), - [anon_sym_DOLLARevaltype] = ACTIONS(1664), - [sym_real_literal] = ACTIONS(1666), + [sym_ident] = ACTIONS(1473), + [sym_integer_literal] = ACTIONS(1475), + [anon_sym_SQUOTE] = ACTIONS(1475), + [anon_sym_DQUOTE] = ACTIONS(1475), + [anon_sym_BQUOTE] = ACTIONS(1475), + [sym_bytes_literal] = ACTIONS(1475), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1473), + [sym_at_ident] = ACTIONS(1475), + [sym_hash_ident] = ACTIONS(1475), + [sym_type_ident] = ACTIONS(1475), + [sym_ct_type_ident] = ACTIONS(1475), + [sym_const_ident] = ACTIONS(1473), + [sym_builtin] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1475), + [anon_sym_AMP] = ACTIONS(1473), + [anon_sym_static] = ACTIONS(1473), + [anon_sym_tlocal] = ACTIONS(1473), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_fn] = ACTIONS(1473), + [anon_sym_LBRACE] = ACTIONS(1473), + [anon_sym_const] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(1473), + [anon_sym_return] = ACTIONS(1473), + [anon_sym_continue] = ACTIONS(1473), + [anon_sym_break] = ACTIONS(1473), + [anon_sym_defer] = ACTIONS(1473), + [anon_sym_assert] = ACTIONS(1473), + [anon_sym_nextcase] = ACTIONS(1473), + [anon_sym_switch] = ACTIONS(1473), + [anon_sym_AMP_AMP] = ACTIONS(1475), + [anon_sym_if] = ACTIONS(1473), + [anon_sym_for] = ACTIONS(1473), + [anon_sym_foreach] = ACTIONS(1473), + [anon_sym_foreach_r] = ACTIONS(1473), + [anon_sym_while] = ACTIONS(1473), + [anon_sym_do] = ACTIONS(1473), + [anon_sym_int] = ACTIONS(1473), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1475), + [anon_sym_asm] = ACTIONS(1473), + [anon_sym_DOLLARassert] = ACTIONS(1473), + [anon_sym_DOLLARerror] = ACTIONS(1473), + [anon_sym_DOLLARecho] = ACTIONS(1473), + [anon_sym_DOLLARif] = ACTIONS(1473), + [anon_sym_DOLLARendif] = ACTIONS(1473), + [anon_sym_DOLLARelse] = ACTIONS(1473), + [anon_sym_DOLLARswitch] = ACTIONS(1473), + [anon_sym_DOLLARfor] = ACTIONS(1473), + [anon_sym_DOLLARforeach] = ACTIONS(1473), + [anon_sym_DOLLARalignof] = ACTIONS(1473), + [anon_sym_DOLLARextnameof] = ACTIONS(1473), + [anon_sym_DOLLARnameof] = ACTIONS(1473), + [anon_sym_DOLLARoffsetof] = ACTIONS(1473), + [anon_sym_DOLLARqnameof] = ACTIONS(1473), + [anon_sym_DOLLARvaconst] = ACTIONS(1473), + [anon_sym_DOLLARvaarg] = ACTIONS(1473), + [anon_sym_DOLLARvaref] = ACTIONS(1473), + [anon_sym_DOLLARvaexpr] = ACTIONS(1473), + [anon_sym_true] = ACTIONS(1473), + [anon_sym_false] = ACTIONS(1473), + [anon_sym_null] = ACTIONS(1473), + [anon_sym_DOLLARvacount] = ACTIONS(1473), + [anon_sym_DOLLARappend] = ACTIONS(1473), + [anon_sym_DOLLARconcat] = ACTIONS(1473), + [anon_sym_DOLLAReval] = ACTIONS(1473), + [anon_sym_DOLLARis_const] = ACTIONS(1473), + [anon_sym_DOLLARsizeof] = ACTIONS(1473), + [anon_sym_DOLLARstringify] = ACTIONS(1473), + [anon_sym_DOLLARand] = ACTIONS(1473), + [anon_sym_DOLLARdefined] = ACTIONS(1473), + [anon_sym_DOLLARembed] = ACTIONS(1473), + [anon_sym_DOLLARor] = ACTIONS(1473), + [anon_sym_DOLLARfeature] = ACTIONS(1473), + [anon_sym_DOLLARassignable] = ACTIONS(1473), + [anon_sym_BANG] = ACTIONS(1475), + [anon_sym_TILDE] = ACTIONS(1475), + [anon_sym_PLUS_PLUS] = ACTIONS(1475), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_typeid] = ACTIONS(1473), + [anon_sym_LBRACE_PIPE] = ACTIONS(1475), + [anon_sym_void] = ACTIONS(1473), + [anon_sym_bool] = ACTIONS(1473), + [anon_sym_char] = ACTIONS(1473), + [anon_sym_ichar] = ACTIONS(1473), + [anon_sym_short] = ACTIONS(1473), + [anon_sym_ushort] = ACTIONS(1473), + [anon_sym_uint] = ACTIONS(1473), + [anon_sym_long] = ACTIONS(1473), + [anon_sym_ulong] = ACTIONS(1473), + [anon_sym_int128] = ACTIONS(1473), + [anon_sym_uint128] = ACTIONS(1473), + [anon_sym_float] = ACTIONS(1473), + [anon_sym_double] = ACTIONS(1473), + [anon_sym_float16] = ACTIONS(1473), + [anon_sym_bfloat16] = ACTIONS(1473), + [anon_sym_float128] = ACTIONS(1473), + [anon_sym_iptr] = ACTIONS(1473), + [anon_sym_uptr] = ACTIONS(1473), + [anon_sym_isz] = ACTIONS(1473), + [anon_sym_usz] = ACTIONS(1473), + [anon_sym_anyfault] = ACTIONS(1473), + [anon_sym_any] = ACTIONS(1473), + [anon_sym_DOLLARtypeof] = ACTIONS(1473), + [anon_sym_DOLLARtypefrom] = ACTIONS(1473), + [anon_sym_DOLLARvatype] = ACTIONS(1473), + [anon_sym_DOLLARevaltype] = ACTIONS(1473), + [sym_real_literal] = ACTIONS(1475), }, [538] = { [sym_line_comment] = STATE(538), [sym_doc_comment] = STATE(538), [sym_block_comment] = STATE(538), - [sym_ident] = ACTIONS(1608), - [sym_integer_literal] = ACTIONS(1610), - [anon_sym_SQUOTE] = ACTIONS(1610), - [anon_sym_DQUOTE] = ACTIONS(1610), - [anon_sym_BQUOTE] = ACTIONS(1610), - [sym_bytes_literal] = ACTIONS(1610), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1608), - [sym_at_ident] = ACTIONS(1610), - [sym_hash_ident] = ACTIONS(1610), - [sym_type_ident] = ACTIONS(1610), - [sym_ct_type_ident] = ACTIONS(1610), - [sym_const_ident] = ACTIONS(1608), - [sym_builtin] = ACTIONS(1610), - [anon_sym_LPAREN] = ACTIONS(1610), - [anon_sym_AMP] = ACTIONS(1608), - [anon_sym_static] = ACTIONS(1608), - [anon_sym_tlocal] = ACTIONS(1608), - [anon_sym_SEMI] = ACTIONS(1610), - [anon_sym_fn] = ACTIONS(1608), - [anon_sym_LBRACE] = ACTIONS(1608), - [anon_sym_const] = ACTIONS(1608), - [anon_sym_var] = ACTIONS(1608), - [anon_sym_return] = ACTIONS(1608), - [anon_sym_continue] = ACTIONS(1608), - [anon_sym_break] = ACTIONS(1608), - [anon_sym_defer] = ACTIONS(1608), - [anon_sym_assert] = ACTIONS(1608), - [anon_sym_nextcase] = ACTIONS(1608), - [anon_sym_switch] = ACTIONS(1608), - [anon_sym_AMP_AMP] = ACTIONS(1610), - [anon_sym_if] = ACTIONS(1608), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_foreach] = ACTIONS(1608), - [anon_sym_foreach_r] = ACTIONS(1608), - [anon_sym_while] = ACTIONS(1608), - [anon_sym_do] = ACTIONS(1608), - [anon_sym_int] = ACTIONS(1608), - [anon_sym_PLUS] = ACTIONS(1608), - [anon_sym_DASH] = ACTIONS(1608), - [anon_sym_STAR] = ACTIONS(1610), - [anon_sym_asm] = ACTIONS(1608), - [anon_sym_DOLLARassert] = ACTIONS(1608), - [anon_sym_DOLLARerror] = ACTIONS(1608), - [anon_sym_DOLLARecho] = ACTIONS(1608), - [anon_sym_DOLLARif] = ACTIONS(1608), - [anon_sym_DOLLARcase] = ACTIONS(1608), - [anon_sym_DOLLARdefault] = ACTIONS(1608), - [anon_sym_DOLLARswitch] = ACTIONS(1608), - [anon_sym_DOLLARendswitch] = ACTIONS(1608), - [anon_sym_DOLLARfor] = ACTIONS(1608), - [anon_sym_DOLLARforeach] = ACTIONS(1608), - [anon_sym_DOLLARalignof] = ACTIONS(1608), - [anon_sym_DOLLARextnameof] = ACTIONS(1608), - [anon_sym_DOLLARnameof] = ACTIONS(1608), - [anon_sym_DOLLARoffsetof] = ACTIONS(1608), - [anon_sym_DOLLARqnameof] = ACTIONS(1608), - [anon_sym_DOLLARvaconst] = ACTIONS(1608), - [anon_sym_DOLLARvaarg] = ACTIONS(1608), - [anon_sym_DOLLARvaref] = ACTIONS(1608), - [anon_sym_DOLLARvaexpr] = ACTIONS(1608), - [anon_sym_true] = ACTIONS(1608), - [anon_sym_false] = ACTIONS(1608), - [anon_sym_null] = ACTIONS(1608), - [anon_sym_DOLLARvacount] = ACTIONS(1608), - [anon_sym_DOLLARappend] = ACTIONS(1608), - [anon_sym_DOLLARconcat] = ACTIONS(1608), - [anon_sym_DOLLAReval] = ACTIONS(1608), - [anon_sym_DOLLARis_const] = ACTIONS(1608), - [anon_sym_DOLLARsizeof] = ACTIONS(1608), - [anon_sym_DOLLARstringify] = ACTIONS(1608), - [anon_sym_DOLLARand] = ACTIONS(1608), - [anon_sym_DOLLARdefined] = ACTIONS(1608), - [anon_sym_DOLLARembed] = ACTIONS(1608), - [anon_sym_DOLLARor] = ACTIONS(1608), - [anon_sym_DOLLARfeature] = ACTIONS(1608), - [anon_sym_DOLLARassignable] = ACTIONS(1608), - [anon_sym_BANG] = ACTIONS(1610), - [anon_sym_TILDE] = ACTIONS(1610), - [anon_sym_PLUS_PLUS] = ACTIONS(1610), - [anon_sym_DASH_DASH] = ACTIONS(1610), - [anon_sym_typeid] = ACTIONS(1608), - [anon_sym_LBRACE_PIPE] = ACTIONS(1610), - [anon_sym_void] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_ichar] = ACTIONS(1608), - [anon_sym_short] = ACTIONS(1608), - [anon_sym_ushort] = ACTIONS(1608), - [anon_sym_uint] = ACTIONS(1608), - [anon_sym_long] = ACTIONS(1608), - [anon_sym_ulong] = ACTIONS(1608), - [anon_sym_int128] = ACTIONS(1608), - [anon_sym_uint128] = ACTIONS(1608), - [anon_sym_float] = ACTIONS(1608), - [anon_sym_double] = ACTIONS(1608), - [anon_sym_float16] = ACTIONS(1608), - [anon_sym_bfloat16] = ACTIONS(1608), - [anon_sym_float128] = ACTIONS(1608), - [anon_sym_iptr] = ACTIONS(1608), - [anon_sym_uptr] = ACTIONS(1608), - [anon_sym_isz] = ACTIONS(1608), - [anon_sym_usz] = ACTIONS(1608), - [anon_sym_anyfault] = ACTIONS(1608), - [anon_sym_any] = ACTIONS(1608), - [anon_sym_DOLLARtypeof] = ACTIONS(1608), - [anon_sym_DOLLARtypefrom] = ACTIONS(1608), - [anon_sym_DOLLARvatype] = ACTIONS(1608), - [anon_sym_DOLLARevaltype] = ACTIONS(1608), - [sym_real_literal] = ACTIONS(1610), + [sym_ident] = ACTIONS(1485), + [sym_integer_literal] = ACTIONS(1487), + [anon_sym_SQUOTE] = ACTIONS(1487), + [anon_sym_DQUOTE] = ACTIONS(1487), + [anon_sym_BQUOTE] = ACTIONS(1487), + [sym_bytes_literal] = ACTIONS(1487), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1485), + [sym_at_ident] = ACTIONS(1487), + [sym_hash_ident] = ACTIONS(1487), + [sym_type_ident] = ACTIONS(1487), + [sym_ct_type_ident] = ACTIONS(1487), + [sym_const_ident] = ACTIONS(1485), + [sym_builtin] = ACTIONS(1487), + [anon_sym_LPAREN] = ACTIONS(1487), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_static] = ACTIONS(1485), + [anon_sym_tlocal] = ACTIONS(1485), + [anon_sym_SEMI] = ACTIONS(1487), + [anon_sym_fn] = ACTIONS(1485), + [anon_sym_LBRACE] = ACTIONS(1485), + [anon_sym_const] = ACTIONS(1485), + [anon_sym_var] = ACTIONS(1485), + [anon_sym_return] = ACTIONS(1485), + [anon_sym_continue] = ACTIONS(1485), + [anon_sym_break] = ACTIONS(1485), + [anon_sym_defer] = ACTIONS(1485), + [anon_sym_assert] = ACTIONS(1485), + [anon_sym_nextcase] = ACTIONS(1485), + [anon_sym_switch] = ACTIONS(1485), + [anon_sym_AMP_AMP] = ACTIONS(1487), + [anon_sym_if] = ACTIONS(1485), + [anon_sym_for] = ACTIONS(1485), + [anon_sym_foreach] = ACTIONS(1485), + [anon_sym_foreach_r] = ACTIONS(1485), + [anon_sym_while] = ACTIONS(1485), + [anon_sym_do] = ACTIONS(1485), + [anon_sym_int] = ACTIONS(1485), + [anon_sym_PLUS] = ACTIONS(1485), + [anon_sym_DASH] = ACTIONS(1485), + [anon_sym_STAR] = ACTIONS(1487), + [anon_sym_asm] = ACTIONS(1485), + [anon_sym_DOLLARassert] = ACTIONS(1485), + [anon_sym_DOLLARerror] = ACTIONS(1485), + [anon_sym_DOLLARecho] = ACTIONS(1485), + [anon_sym_DOLLARif] = ACTIONS(1485), + [anon_sym_DOLLARendif] = ACTIONS(1485), + [anon_sym_DOLLARelse] = ACTIONS(1485), + [anon_sym_DOLLARswitch] = ACTIONS(1485), + [anon_sym_DOLLARfor] = ACTIONS(1485), + [anon_sym_DOLLARforeach] = ACTIONS(1485), + [anon_sym_DOLLARalignof] = ACTIONS(1485), + [anon_sym_DOLLARextnameof] = ACTIONS(1485), + [anon_sym_DOLLARnameof] = ACTIONS(1485), + [anon_sym_DOLLARoffsetof] = ACTIONS(1485), + [anon_sym_DOLLARqnameof] = ACTIONS(1485), + [anon_sym_DOLLARvaconst] = ACTIONS(1485), + [anon_sym_DOLLARvaarg] = ACTIONS(1485), + [anon_sym_DOLLARvaref] = ACTIONS(1485), + [anon_sym_DOLLARvaexpr] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(1485), + [anon_sym_false] = ACTIONS(1485), + [anon_sym_null] = ACTIONS(1485), + [anon_sym_DOLLARvacount] = ACTIONS(1485), + [anon_sym_DOLLARappend] = ACTIONS(1485), + [anon_sym_DOLLARconcat] = ACTIONS(1485), + [anon_sym_DOLLAReval] = ACTIONS(1485), + [anon_sym_DOLLARis_const] = ACTIONS(1485), + [anon_sym_DOLLARsizeof] = ACTIONS(1485), + [anon_sym_DOLLARstringify] = ACTIONS(1485), + [anon_sym_DOLLARand] = ACTIONS(1485), + [anon_sym_DOLLARdefined] = ACTIONS(1485), + [anon_sym_DOLLARembed] = ACTIONS(1485), + [anon_sym_DOLLARor] = ACTIONS(1485), + [anon_sym_DOLLARfeature] = ACTIONS(1485), + [anon_sym_DOLLARassignable] = ACTIONS(1485), + [anon_sym_BANG] = ACTIONS(1487), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1487), + [anon_sym_DASH_DASH] = ACTIONS(1487), + [anon_sym_typeid] = ACTIONS(1485), + [anon_sym_LBRACE_PIPE] = ACTIONS(1487), + [anon_sym_void] = ACTIONS(1485), + [anon_sym_bool] = ACTIONS(1485), + [anon_sym_char] = ACTIONS(1485), + [anon_sym_ichar] = ACTIONS(1485), + [anon_sym_short] = ACTIONS(1485), + [anon_sym_ushort] = ACTIONS(1485), + [anon_sym_uint] = ACTIONS(1485), + [anon_sym_long] = ACTIONS(1485), + [anon_sym_ulong] = ACTIONS(1485), + [anon_sym_int128] = ACTIONS(1485), + [anon_sym_uint128] = ACTIONS(1485), + [anon_sym_float] = ACTIONS(1485), + [anon_sym_double] = ACTIONS(1485), + [anon_sym_float16] = ACTIONS(1485), + [anon_sym_bfloat16] = ACTIONS(1485), + [anon_sym_float128] = ACTIONS(1485), + [anon_sym_iptr] = ACTIONS(1485), + [anon_sym_uptr] = ACTIONS(1485), + [anon_sym_isz] = ACTIONS(1485), + [anon_sym_usz] = ACTIONS(1485), + [anon_sym_anyfault] = ACTIONS(1485), + [anon_sym_any] = ACTIONS(1485), + [anon_sym_DOLLARtypeof] = ACTIONS(1485), + [anon_sym_DOLLARtypefrom] = ACTIONS(1485), + [anon_sym_DOLLARvatype] = ACTIONS(1485), + [anon_sym_DOLLARevaltype] = ACTIONS(1485), + [sym_real_literal] = ACTIONS(1487), }, [539] = { [sym_line_comment] = STATE(539), [sym_doc_comment] = STATE(539), [sym_block_comment] = STATE(539), - [sym_ident] = ACTIONS(1524), - [sym_integer_literal] = ACTIONS(1526), - [anon_sym_SQUOTE] = ACTIONS(1526), - [anon_sym_DQUOTE] = ACTIONS(1526), - [anon_sym_BQUOTE] = ACTIONS(1526), - [sym_bytes_literal] = ACTIONS(1526), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1524), - [sym_at_ident] = ACTIONS(1526), - [sym_hash_ident] = ACTIONS(1526), - [sym_type_ident] = ACTIONS(1526), - [sym_ct_type_ident] = ACTIONS(1526), - [sym_const_ident] = ACTIONS(1524), - [sym_builtin] = ACTIONS(1526), - [anon_sym_LPAREN] = ACTIONS(1526), - [anon_sym_AMP] = ACTIONS(1524), - [anon_sym_static] = ACTIONS(1524), - [anon_sym_tlocal] = ACTIONS(1524), - [anon_sym_SEMI] = ACTIONS(1526), - [anon_sym_fn] = ACTIONS(1524), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_const] = ACTIONS(1524), - [anon_sym_var] = ACTIONS(1524), - [anon_sym_return] = ACTIONS(1524), - [anon_sym_continue] = ACTIONS(1524), - [anon_sym_break] = ACTIONS(1524), - [anon_sym_defer] = ACTIONS(1524), - [anon_sym_assert] = ACTIONS(1524), - [anon_sym_nextcase] = ACTIONS(1524), - [anon_sym_switch] = ACTIONS(1524), - [anon_sym_AMP_AMP] = ACTIONS(1526), - [anon_sym_if] = ACTIONS(1524), - [anon_sym_for] = ACTIONS(1524), - [anon_sym_foreach] = ACTIONS(1524), - [anon_sym_foreach_r] = ACTIONS(1524), - [anon_sym_while] = ACTIONS(1524), - [anon_sym_do] = ACTIONS(1524), - [anon_sym_int] = ACTIONS(1524), - [anon_sym_PLUS] = ACTIONS(1524), - [anon_sym_DASH] = ACTIONS(1524), - [anon_sym_STAR] = ACTIONS(1526), - [anon_sym_asm] = ACTIONS(1524), - [anon_sym_DOLLARassert] = ACTIONS(1524), - [anon_sym_DOLLARerror] = ACTIONS(1524), - [anon_sym_DOLLARecho] = ACTIONS(1524), - [anon_sym_DOLLARif] = ACTIONS(1524), - [anon_sym_DOLLARcase] = ACTIONS(1524), - [anon_sym_DOLLARdefault] = ACTIONS(1524), - [anon_sym_DOLLARswitch] = ACTIONS(1524), - [anon_sym_DOLLARendswitch] = ACTIONS(1524), - [anon_sym_DOLLARfor] = ACTIONS(1524), - [anon_sym_DOLLARforeach] = ACTIONS(1524), - [anon_sym_DOLLARalignof] = ACTIONS(1524), - [anon_sym_DOLLARextnameof] = ACTIONS(1524), - [anon_sym_DOLLARnameof] = ACTIONS(1524), - [anon_sym_DOLLARoffsetof] = ACTIONS(1524), - [anon_sym_DOLLARqnameof] = ACTIONS(1524), - [anon_sym_DOLLARvaconst] = ACTIONS(1524), - [anon_sym_DOLLARvaarg] = ACTIONS(1524), - [anon_sym_DOLLARvaref] = ACTIONS(1524), - [anon_sym_DOLLARvaexpr] = ACTIONS(1524), - [anon_sym_true] = ACTIONS(1524), - [anon_sym_false] = ACTIONS(1524), - [anon_sym_null] = ACTIONS(1524), - [anon_sym_DOLLARvacount] = ACTIONS(1524), - [anon_sym_DOLLARappend] = ACTIONS(1524), - [anon_sym_DOLLARconcat] = ACTIONS(1524), - [anon_sym_DOLLAReval] = ACTIONS(1524), - [anon_sym_DOLLARis_const] = ACTIONS(1524), - [anon_sym_DOLLARsizeof] = ACTIONS(1524), - [anon_sym_DOLLARstringify] = ACTIONS(1524), - [anon_sym_DOLLARand] = ACTIONS(1524), - [anon_sym_DOLLARdefined] = ACTIONS(1524), - [anon_sym_DOLLARembed] = ACTIONS(1524), - [anon_sym_DOLLARor] = ACTIONS(1524), - [anon_sym_DOLLARfeature] = ACTIONS(1524), - [anon_sym_DOLLARassignable] = ACTIONS(1524), - [anon_sym_BANG] = ACTIONS(1526), - [anon_sym_TILDE] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1526), - [anon_sym_DASH_DASH] = ACTIONS(1526), - [anon_sym_typeid] = ACTIONS(1524), - [anon_sym_LBRACE_PIPE] = ACTIONS(1526), - [anon_sym_void] = ACTIONS(1524), - [anon_sym_bool] = ACTIONS(1524), - [anon_sym_char] = ACTIONS(1524), - [anon_sym_ichar] = ACTIONS(1524), - [anon_sym_short] = ACTIONS(1524), - [anon_sym_ushort] = ACTIONS(1524), - [anon_sym_uint] = ACTIONS(1524), - [anon_sym_long] = ACTIONS(1524), - [anon_sym_ulong] = ACTIONS(1524), - [anon_sym_int128] = ACTIONS(1524), - [anon_sym_uint128] = ACTIONS(1524), - [anon_sym_float] = ACTIONS(1524), - [anon_sym_double] = ACTIONS(1524), - [anon_sym_float16] = ACTIONS(1524), - [anon_sym_bfloat16] = ACTIONS(1524), - [anon_sym_float128] = ACTIONS(1524), - [anon_sym_iptr] = ACTIONS(1524), - [anon_sym_uptr] = ACTIONS(1524), - [anon_sym_isz] = ACTIONS(1524), - [anon_sym_usz] = ACTIONS(1524), - [anon_sym_anyfault] = ACTIONS(1524), - [anon_sym_any] = ACTIONS(1524), - [anon_sym_DOLLARtypeof] = ACTIONS(1524), - [anon_sym_DOLLARtypefrom] = ACTIONS(1524), - [anon_sym_DOLLARvatype] = ACTIONS(1524), - [anon_sym_DOLLARevaltype] = ACTIONS(1524), - [sym_real_literal] = ACTIONS(1526), + [sym_ident] = ACTIONS(1477), + [sym_integer_literal] = ACTIONS(1479), + [anon_sym_SQUOTE] = ACTIONS(1479), + [anon_sym_DQUOTE] = ACTIONS(1479), + [anon_sym_BQUOTE] = ACTIONS(1479), + [sym_bytes_literal] = ACTIONS(1479), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1477), + [sym_at_ident] = ACTIONS(1479), + [sym_hash_ident] = ACTIONS(1479), + [sym_type_ident] = ACTIONS(1479), + [sym_ct_type_ident] = ACTIONS(1479), + [sym_const_ident] = ACTIONS(1477), + [sym_builtin] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1479), + [anon_sym_AMP] = ACTIONS(1477), + [anon_sym_static] = ACTIONS(1477), + [anon_sym_tlocal] = ACTIONS(1477), + [anon_sym_SEMI] = ACTIONS(1479), + [anon_sym_fn] = ACTIONS(1477), + [anon_sym_LBRACE] = ACTIONS(1477), + [anon_sym_const] = ACTIONS(1477), + [anon_sym_var] = ACTIONS(1477), + [anon_sym_return] = ACTIONS(1477), + [anon_sym_continue] = ACTIONS(1477), + [anon_sym_break] = ACTIONS(1477), + [anon_sym_defer] = ACTIONS(1477), + [anon_sym_assert] = ACTIONS(1477), + [anon_sym_nextcase] = ACTIONS(1477), + [anon_sym_switch] = ACTIONS(1477), + [anon_sym_AMP_AMP] = ACTIONS(1479), + [anon_sym_if] = ACTIONS(1477), + [anon_sym_for] = ACTIONS(1477), + [anon_sym_foreach] = ACTIONS(1477), + [anon_sym_foreach_r] = ACTIONS(1477), + [anon_sym_while] = ACTIONS(1477), + [anon_sym_do] = ACTIONS(1477), + [anon_sym_int] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1477), + [anon_sym_DASH] = ACTIONS(1477), + [anon_sym_STAR] = ACTIONS(1479), + [anon_sym_asm] = ACTIONS(1477), + [anon_sym_DOLLARassert] = ACTIONS(1477), + [anon_sym_DOLLARerror] = ACTIONS(1477), + [anon_sym_DOLLARecho] = ACTIONS(1477), + [anon_sym_DOLLARif] = ACTIONS(1477), + [anon_sym_DOLLARendif] = ACTIONS(1477), + [anon_sym_DOLLARelse] = ACTIONS(1477), + [anon_sym_DOLLARswitch] = ACTIONS(1477), + [anon_sym_DOLLARfor] = ACTIONS(1477), + [anon_sym_DOLLARforeach] = ACTIONS(1477), + [anon_sym_DOLLARalignof] = ACTIONS(1477), + [anon_sym_DOLLARextnameof] = ACTIONS(1477), + [anon_sym_DOLLARnameof] = ACTIONS(1477), + [anon_sym_DOLLARoffsetof] = ACTIONS(1477), + [anon_sym_DOLLARqnameof] = ACTIONS(1477), + [anon_sym_DOLLARvaconst] = ACTIONS(1477), + [anon_sym_DOLLARvaarg] = ACTIONS(1477), + [anon_sym_DOLLARvaref] = ACTIONS(1477), + [anon_sym_DOLLARvaexpr] = ACTIONS(1477), + [anon_sym_true] = ACTIONS(1477), + [anon_sym_false] = ACTIONS(1477), + [anon_sym_null] = ACTIONS(1477), + [anon_sym_DOLLARvacount] = ACTIONS(1477), + [anon_sym_DOLLARappend] = ACTIONS(1477), + [anon_sym_DOLLARconcat] = ACTIONS(1477), + [anon_sym_DOLLAReval] = ACTIONS(1477), + [anon_sym_DOLLARis_const] = ACTIONS(1477), + [anon_sym_DOLLARsizeof] = ACTIONS(1477), + [anon_sym_DOLLARstringify] = ACTIONS(1477), + [anon_sym_DOLLARand] = ACTIONS(1477), + [anon_sym_DOLLARdefined] = ACTIONS(1477), + [anon_sym_DOLLARembed] = ACTIONS(1477), + [anon_sym_DOLLARor] = ACTIONS(1477), + [anon_sym_DOLLARfeature] = ACTIONS(1477), + [anon_sym_DOLLARassignable] = ACTIONS(1477), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_TILDE] = ACTIONS(1479), + [anon_sym_PLUS_PLUS] = ACTIONS(1479), + [anon_sym_DASH_DASH] = ACTIONS(1479), + [anon_sym_typeid] = ACTIONS(1477), + [anon_sym_LBRACE_PIPE] = ACTIONS(1479), + [anon_sym_void] = ACTIONS(1477), + [anon_sym_bool] = ACTIONS(1477), + [anon_sym_char] = ACTIONS(1477), + [anon_sym_ichar] = ACTIONS(1477), + [anon_sym_short] = ACTIONS(1477), + [anon_sym_ushort] = ACTIONS(1477), + [anon_sym_uint] = ACTIONS(1477), + [anon_sym_long] = ACTIONS(1477), + [anon_sym_ulong] = ACTIONS(1477), + [anon_sym_int128] = ACTIONS(1477), + [anon_sym_uint128] = ACTIONS(1477), + [anon_sym_float] = ACTIONS(1477), + [anon_sym_double] = ACTIONS(1477), + [anon_sym_float16] = ACTIONS(1477), + [anon_sym_bfloat16] = ACTIONS(1477), + [anon_sym_float128] = ACTIONS(1477), + [anon_sym_iptr] = ACTIONS(1477), + [anon_sym_uptr] = ACTIONS(1477), + [anon_sym_isz] = ACTIONS(1477), + [anon_sym_usz] = ACTIONS(1477), + [anon_sym_anyfault] = ACTIONS(1477), + [anon_sym_any] = ACTIONS(1477), + [anon_sym_DOLLARtypeof] = ACTIONS(1477), + [anon_sym_DOLLARtypefrom] = ACTIONS(1477), + [anon_sym_DOLLARvatype] = ACTIONS(1477), + [anon_sym_DOLLARevaltype] = ACTIONS(1477), + [sym_real_literal] = ACTIONS(1479), }, [540] = { [sym_line_comment] = STATE(540), [sym_doc_comment] = STATE(540), [sym_block_comment] = STATE(540), - [sym_ident] = ACTIONS(1504), - [sym_integer_literal] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1506), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_BQUOTE] = ACTIONS(1506), - [sym_bytes_literal] = ACTIONS(1506), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1504), - [sym_at_ident] = ACTIONS(1506), - [sym_hash_ident] = ACTIONS(1506), - [sym_type_ident] = ACTIONS(1506), - [sym_ct_type_ident] = ACTIONS(1506), - [sym_const_ident] = ACTIONS(1504), - [sym_builtin] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_AMP] = ACTIONS(1504), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_tlocal] = ACTIONS(1504), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym_fn] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(1504), - [anon_sym_var] = ACTIONS(1504), - [anon_sym_return] = ACTIONS(1504), - [anon_sym_continue] = ACTIONS(1504), - [anon_sym_break] = ACTIONS(1504), - [anon_sym_defer] = ACTIONS(1504), - [anon_sym_assert] = ACTIONS(1504), - [anon_sym_nextcase] = ACTIONS(1504), - [anon_sym_switch] = ACTIONS(1504), - [anon_sym_AMP_AMP] = ACTIONS(1506), - [anon_sym_if] = ACTIONS(1504), - [anon_sym_for] = ACTIONS(1504), - [anon_sym_foreach] = ACTIONS(1504), - [anon_sym_foreach_r] = ACTIONS(1504), - [anon_sym_while] = ACTIONS(1504), - [anon_sym_do] = ACTIONS(1504), - [anon_sym_int] = ACTIONS(1504), - [anon_sym_PLUS] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1504), - [anon_sym_STAR] = ACTIONS(1506), - [anon_sym_asm] = ACTIONS(1504), - [anon_sym_DOLLARassert] = ACTIONS(1504), - [anon_sym_DOLLARerror] = ACTIONS(1504), - [anon_sym_DOLLARecho] = ACTIONS(1504), - [anon_sym_DOLLARif] = ACTIONS(1504), - [anon_sym_DOLLARcase] = ACTIONS(1504), - [anon_sym_DOLLARdefault] = ACTIONS(1504), - [anon_sym_DOLLARswitch] = ACTIONS(1504), - [anon_sym_DOLLARendswitch] = ACTIONS(1504), - [anon_sym_DOLLARfor] = ACTIONS(1504), - [anon_sym_DOLLARforeach] = ACTIONS(1504), - [anon_sym_DOLLARalignof] = ACTIONS(1504), - [anon_sym_DOLLARextnameof] = ACTIONS(1504), - [anon_sym_DOLLARnameof] = ACTIONS(1504), - [anon_sym_DOLLARoffsetof] = ACTIONS(1504), - [anon_sym_DOLLARqnameof] = ACTIONS(1504), - [anon_sym_DOLLARvaconst] = ACTIONS(1504), - [anon_sym_DOLLARvaarg] = ACTIONS(1504), - [anon_sym_DOLLARvaref] = ACTIONS(1504), - [anon_sym_DOLLARvaexpr] = ACTIONS(1504), - [anon_sym_true] = ACTIONS(1504), - [anon_sym_false] = ACTIONS(1504), - [anon_sym_null] = ACTIONS(1504), - [anon_sym_DOLLARvacount] = ACTIONS(1504), - [anon_sym_DOLLARappend] = ACTIONS(1504), - [anon_sym_DOLLARconcat] = ACTIONS(1504), - [anon_sym_DOLLAReval] = ACTIONS(1504), - [anon_sym_DOLLARis_const] = ACTIONS(1504), - [anon_sym_DOLLARsizeof] = ACTIONS(1504), - [anon_sym_DOLLARstringify] = ACTIONS(1504), - [anon_sym_DOLLARand] = ACTIONS(1504), - [anon_sym_DOLLARdefined] = ACTIONS(1504), - [anon_sym_DOLLARembed] = ACTIONS(1504), - [anon_sym_DOLLARor] = ACTIONS(1504), - [anon_sym_DOLLARfeature] = ACTIONS(1504), - [anon_sym_DOLLARassignable] = ACTIONS(1504), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1506), - [anon_sym_typeid] = ACTIONS(1504), - [anon_sym_LBRACE_PIPE] = ACTIONS(1506), - [anon_sym_void] = ACTIONS(1504), - [anon_sym_bool] = ACTIONS(1504), - [anon_sym_char] = ACTIONS(1504), - [anon_sym_ichar] = ACTIONS(1504), - [anon_sym_short] = ACTIONS(1504), - [anon_sym_ushort] = ACTIONS(1504), - [anon_sym_uint] = ACTIONS(1504), - [anon_sym_long] = ACTIONS(1504), - [anon_sym_ulong] = ACTIONS(1504), - [anon_sym_int128] = ACTIONS(1504), - [anon_sym_uint128] = ACTIONS(1504), - [anon_sym_float] = ACTIONS(1504), - [anon_sym_double] = ACTIONS(1504), - [anon_sym_float16] = ACTIONS(1504), - [anon_sym_bfloat16] = ACTIONS(1504), - [anon_sym_float128] = ACTIONS(1504), - [anon_sym_iptr] = ACTIONS(1504), - [anon_sym_uptr] = ACTIONS(1504), - [anon_sym_isz] = ACTIONS(1504), - [anon_sym_usz] = ACTIONS(1504), - [anon_sym_anyfault] = ACTIONS(1504), - [anon_sym_any] = ACTIONS(1504), - [anon_sym_DOLLARtypeof] = ACTIONS(1504), - [anon_sym_DOLLARtypefrom] = ACTIONS(1504), - [anon_sym_DOLLARvatype] = ACTIONS(1504), - [anon_sym_DOLLARevaltype] = ACTIONS(1504), - [sym_real_literal] = ACTIONS(1506), + [sym_ident] = ACTIONS(1493), + [sym_integer_literal] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1495), + [anon_sym_DQUOTE] = ACTIONS(1495), + [anon_sym_BQUOTE] = ACTIONS(1495), + [sym_bytes_literal] = ACTIONS(1495), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1493), + [sym_at_ident] = ACTIONS(1495), + [sym_hash_ident] = ACTIONS(1495), + [sym_type_ident] = ACTIONS(1495), + [sym_ct_type_ident] = ACTIONS(1495), + [sym_const_ident] = ACTIONS(1493), + [sym_builtin] = ACTIONS(1495), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1493), + [anon_sym_static] = ACTIONS(1493), + [anon_sym_tlocal] = ACTIONS(1493), + [anon_sym_SEMI] = ACTIONS(1495), + [anon_sym_fn] = ACTIONS(1493), + [anon_sym_LBRACE] = ACTIONS(1493), + [anon_sym_const] = ACTIONS(1493), + [anon_sym_var] = ACTIONS(1493), + [anon_sym_return] = ACTIONS(1493), + [anon_sym_continue] = ACTIONS(1493), + [anon_sym_break] = ACTIONS(1493), + [anon_sym_defer] = ACTIONS(1493), + [anon_sym_assert] = ACTIONS(1493), + [anon_sym_nextcase] = ACTIONS(1493), + [anon_sym_switch] = ACTIONS(1493), + [anon_sym_AMP_AMP] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1493), + [anon_sym_for] = ACTIONS(1493), + [anon_sym_foreach] = ACTIONS(1493), + [anon_sym_foreach_r] = ACTIONS(1493), + [anon_sym_while] = ACTIONS(1493), + [anon_sym_do] = ACTIONS(1493), + [anon_sym_int] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1493), + [anon_sym_DASH] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1495), + [anon_sym_asm] = ACTIONS(1493), + [anon_sym_DOLLARassert] = ACTIONS(1493), + [anon_sym_DOLLARerror] = ACTIONS(1493), + [anon_sym_DOLLARecho] = ACTIONS(1493), + [anon_sym_DOLLARif] = ACTIONS(1493), + [anon_sym_DOLLARendif] = ACTIONS(1493), + [anon_sym_DOLLARelse] = ACTIONS(1493), + [anon_sym_DOLLARswitch] = ACTIONS(1493), + [anon_sym_DOLLARfor] = ACTIONS(1493), + [anon_sym_DOLLARforeach] = ACTIONS(1493), + [anon_sym_DOLLARalignof] = ACTIONS(1493), + [anon_sym_DOLLARextnameof] = ACTIONS(1493), + [anon_sym_DOLLARnameof] = ACTIONS(1493), + [anon_sym_DOLLARoffsetof] = ACTIONS(1493), + [anon_sym_DOLLARqnameof] = ACTIONS(1493), + [anon_sym_DOLLARvaconst] = ACTIONS(1493), + [anon_sym_DOLLARvaarg] = ACTIONS(1493), + [anon_sym_DOLLARvaref] = ACTIONS(1493), + [anon_sym_DOLLARvaexpr] = ACTIONS(1493), + [anon_sym_true] = ACTIONS(1493), + [anon_sym_false] = ACTIONS(1493), + [anon_sym_null] = ACTIONS(1493), + [anon_sym_DOLLARvacount] = ACTIONS(1493), + [anon_sym_DOLLARappend] = ACTIONS(1493), + [anon_sym_DOLLARconcat] = ACTIONS(1493), + [anon_sym_DOLLAReval] = ACTIONS(1493), + [anon_sym_DOLLARis_const] = ACTIONS(1493), + [anon_sym_DOLLARsizeof] = ACTIONS(1493), + [anon_sym_DOLLARstringify] = ACTIONS(1493), + [anon_sym_DOLLARand] = ACTIONS(1493), + [anon_sym_DOLLARdefined] = ACTIONS(1493), + [anon_sym_DOLLARembed] = ACTIONS(1493), + [anon_sym_DOLLARor] = ACTIONS(1493), + [anon_sym_DOLLARfeature] = ACTIONS(1493), + [anon_sym_DOLLARassignable] = ACTIONS(1493), + [anon_sym_BANG] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(1495), + [anon_sym_PLUS_PLUS] = ACTIONS(1495), + [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_typeid] = ACTIONS(1493), + [anon_sym_LBRACE_PIPE] = ACTIONS(1495), + [anon_sym_void] = ACTIONS(1493), + [anon_sym_bool] = ACTIONS(1493), + [anon_sym_char] = ACTIONS(1493), + [anon_sym_ichar] = ACTIONS(1493), + [anon_sym_short] = ACTIONS(1493), + [anon_sym_ushort] = ACTIONS(1493), + [anon_sym_uint] = ACTIONS(1493), + [anon_sym_long] = ACTIONS(1493), + [anon_sym_ulong] = ACTIONS(1493), + [anon_sym_int128] = ACTIONS(1493), + [anon_sym_uint128] = ACTIONS(1493), + [anon_sym_float] = ACTIONS(1493), + [anon_sym_double] = ACTIONS(1493), + [anon_sym_float16] = ACTIONS(1493), + [anon_sym_bfloat16] = ACTIONS(1493), + [anon_sym_float128] = ACTIONS(1493), + [anon_sym_iptr] = ACTIONS(1493), + [anon_sym_uptr] = ACTIONS(1493), + [anon_sym_isz] = ACTIONS(1493), + [anon_sym_usz] = ACTIONS(1493), + [anon_sym_anyfault] = ACTIONS(1493), + [anon_sym_any] = ACTIONS(1493), + [anon_sym_DOLLARtypeof] = ACTIONS(1493), + [anon_sym_DOLLARtypefrom] = ACTIONS(1493), + [anon_sym_DOLLARvatype] = ACTIONS(1493), + [anon_sym_DOLLARevaltype] = ACTIONS(1493), + [sym_real_literal] = ACTIONS(1495), }, [541] = { [sym_line_comment] = STATE(541), [sym_doc_comment] = STATE(541), [sym_block_comment] = STATE(541), - [sym_ident] = ACTIONS(1468), - [sym_integer_literal] = ACTIONS(1470), - [anon_sym_SQUOTE] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [anon_sym_BQUOTE] = ACTIONS(1470), - [sym_bytes_literal] = ACTIONS(1470), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1468), - [sym_at_ident] = ACTIONS(1470), - [sym_hash_ident] = ACTIONS(1470), - [sym_type_ident] = ACTIONS(1470), - [sym_ct_type_ident] = ACTIONS(1470), - [sym_const_ident] = ACTIONS(1468), - [sym_builtin] = ACTIONS(1470), - [anon_sym_LPAREN] = ACTIONS(1470), - [anon_sym_AMP] = ACTIONS(1468), - [anon_sym_static] = ACTIONS(1468), - [anon_sym_tlocal] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1470), - [anon_sym_fn] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1468), - [anon_sym_const] = ACTIONS(1468), - [anon_sym_var] = ACTIONS(1468), - [anon_sym_return] = ACTIONS(1468), - [anon_sym_continue] = ACTIONS(1468), - [anon_sym_break] = ACTIONS(1468), - [anon_sym_defer] = ACTIONS(1468), - [anon_sym_assert] = ACTIONS(1468), - [anon_sym_nextcase] = ACTIONS(1468), - [anon_sym_switch] = ACTIONS(1468), - [anon_sym_AMP_AMP] = ACTIONS(1470), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_for] = ACTIONS(1468), - [anon_sym_foreach] = ACTIONS(1468), - [anon_sym_foreach_r] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1468), - [anon_sym_do] = ACTIONS(1468), - [anon_sym_int] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1468), - [anon_sym_DASH] = ACTIONS(1468), - [anon_sym_STAR] = ACTIONS(1470), - [anon_sym_asm] = ACTIONS(1468), - [anon_sym_DOLLARassert] = ACTIONS(1468), - [anon_sym_DOLLARerror] = ACTIONS(1468), - [anon_sym_DOLLARecho] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1468), - [anon_sym_DOLLARcase] = ACTIONS(1468), - [anon_sym_DOLLARdefault] = ACTIONS(1468), - [anon_sym_DOLLARswitch] = ACTIONS(1468), - [anon_sym_DOLLARendswitch] = ACTIONS(1468), - [anon_sym_DOLLARfor] = ACTIONS(1468), - [anon_sym_DOLLARforeach] = ACTIONS(1468), - [anon_sym_DOLLARalignof] = ACTIONS(1468), - [anon_sym_DOLLARextnameof] = ACTIONS(1468), - [anon_sym_DOLLARnameof] = ACTIONS(1468), - [anon_sym_DOLLARoffsetof] = ACTIONS(1468), - [anon_sym_DOLLARqnameof] = ACTIONS(1468), - [anon_sym_DOLLARvaconst] = ACTIONS(1468), - [anon_sym_DOLLARvaarg] = ACTIONS(1468), - [anon_sym_DOLLARvaref] = ACTIONS(1468), - [anon_sym_DOLLARvaexpr] = ACTIONS(1468), - [anon_sym_true] = ACTIONS(1468), - [anon_sym_false] = ACTIONS(1468), - [anon_sym_null] = ACTIONS(1468), - [anon_sym_DOLLARvacount] = ACTIONS(1468), - [anon_sym_DOLLARappend] = ACTIONS(1468), - [anon_sym_DOLLARconcat] = ACTIONS(1468), - [anon_sym_DOLLAReval] = ACTIONS(1468), - [anon_sym_DOLLARis_const] = ACTIONS(1468), - [anon_sym_DOLLARsizeof] = ACTIONS(1468), - [anon_sym_DOLLARstringify] = ACTIONS(1468), - [anon_sym_DOLLARand] = ACTIONS(1468), - [anon_sym_DOLLARdefined] = ACTIONS(1468), - [anon_sym_DOLLARembed] = ACTIONS(1468), - [anon_sym_DOLLARor] = ACTIONS(1468), - [anon_sym_DOLLARfeature] = ACTIONS(1468), - [anon_sym_DOLLARassignable] = ACTIONS(1468), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1470), - [anon_sym_DASH_DASH] = ACTIONS(1470), - [anon_sym_typeid] = ACTIONS(1468), - [anon_sym_LBRACE_PIPE] = ACTIONS(1470), - [anon_sym_void] = ACTIONS(1468), - [anon_sym_bool] = ACTIONS(1468), - [anon_sym_char] = ACTIONS(1468), - [anon_sym_ichar] = ACTIONS(1468), - [anon_sym_short] = ACTIONS(1468), - [anon_sym_ushort] = ACTIONS(1468), - [anon_sym_uint] = ACTIONS(1468), - [anon_sym_long] = ACTIONS(1468), - [anon_sym_ulong] = ACTIONS(1468), - [anon_sym_int128] = ACTIONS(1468), - [anon_sym_uint128] = ACTIONS(1468), - [anon_sym_float] = ACTIONS(1468), - [anon_sym_double] = ACTIONS(1468), - [anon_sym_float16] = ACTIONS(1468), - [anon_sym_bfloat16] = ACTIONS(1468), - [anon_sym_float128] = ACTIONS(1468), - [anon_sym_iptr] = ACTIONS(1468), - [anon_sym_uptr] = ACTIONS(1468), - [anon_sym_isz] = ACTIONS(1468), - [anon_sym_usz] = ACTIONS(1468), - [anon_sym_anyfault] = ACTIONS(1468), - [anon_sym_any] = ACTIONS(1468), - [anon_sym_DOLLARtypeof] = ACTIONS(1468), - [anon_sym_DOLLARtypefrom] = ACTIONS(1468), - [anon_sym_DOLLARvatype] = ACTIONS(1468), - [anon_sym_DOLLARevaltype] = ACTIONS(1468), - [sym_real_literal] = ACTIONS(1470), + [sym_ident] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1515), + [anon_sym_SQUOTE] = ACTIONS(1515), + [anon_sym_DQUOTE] = ACTIONS(1515), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_bytes_literal] = ACTIONS(1515), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1513), + [sym_at_ident] = ACTIONS(1515), + [sym_hash_ident] = ACTIONS(1515), + [sym_type_ident] = ACTIONS(1515), + [sym_ct_type_ident] = ACTIONS(1515), + [sym_const_ident] = ACTIONS(1513), + [sym_builtin] = ACTIONS(1515), + [anon_sym_LPAREN] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1513), + [anon_sym_static] = ACTIONS(1513), + [anon_sym_tlocal] = ACTIONS(1513), + [anon_sym_SEMI] = ACTIONS(1515), + [anon_sym_fn] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1513), + [anon_sym_const] = ACTIONS(1513), + [anon_sym_var] = ACTIONS(1513), + [anon_sym_return] = ACTIONS(1513), + [anon_sym_continue] = ACTIONS(1513), + [anon_sym_break] = ACTIONS(1513), + [anon_sym_defer] = ACTIONS(1513), + [anon_sym_assert] = ACTIONS(1513), + [anon_sym_nextcase] = ACTIONS(1513), + [anon_sym_switch] = ACTIONS(1513), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [anon_sym_if] = ACTIONS(1513), + [anon_sym_for] = ACTIONS(1513), + [anon_sym_foreach] = ACTIONS(1513), + [anon_sym_foreach_r] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1513), + [anon_sym_do] = ACTIONS(1513), + [anon_sym_int] = ACTIONS(1513), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(1515), + [anon_sym_asm] = ACTIONS(1513), + [anon_sym_DOLLARassert] = ACTIONS(1513), + [anon_sym_DOLLARerror] = ACTIONS(1513), + [anon_sym_DOLLARecho] = ACTIONS(1513), + [anon_sym_DOLLARif] = ACTIONS(1513), + [anon_sym_DOLLARendif] = ACTIONS(1513), + [anon_sym_DOLLARelse] = ACTIONS(1513), + [anon_sym_DOLLARswitch] = ACTIONS(1513), + [anon_sym_DOLLARfor] = ACTIONS(1513), + [anon_sym_DOLLARforeach] = ACTIONS(1513), + [anon_sym_DOLLARalignof] = ACTIONS(1513), + [anon_sym_DOLLARextnameof] = ACTIONS(1513), + [anon_sym_DOLLARnameof] = ACTIONS(1513), + [anon_sym_DOLLARoffsetof] = ACTIONS(1513), + [anon_sym_DOLLARqnameof] = ACTIONS(1513), + [anon_sym_DOLLARvaconst] = ACTIONS(1513), + [anon_sym_DOLLARvaarg] = ACTIONS(1513), + [anon_sym_DOLLARvaref] = ACTIONS(1513), + [anon_sym_DOLLARvaexpr] = ACTIONS(1513), + [anon_sym_true] = ACTIONS(1513), + [anon_sym_false] = ACTIONS(1513), + [anon_sym_null] = ACTIONS(1513), + [anon_sym_DOLLARvacount] = ACTIONS(1513), + [anon_sym_DOLLARappend] = ACTIONS(1513), + [anon_sym_DOLLARconcat] = ACTIONS(1513), + [anon_sym_DOLLAReval] = ACTIONS(1513), + [anon_sym_DOLLARis_const] = ACTIONS(1513), + [anon_sym_DOLLARsizeof] = ACTIONS(1513), + [anon_sym_DOLLARstringify] = ACTIONS(1513), + [anon_sym_DOLLARand] = ACTIONS(1513), + [anon_sym_DOLLARdefined] = ACTIONS(1513), + [anon_sym_DOLLARembed] = ACTIONS(1513), + [anon_sym_DOLLARor] = ACTIONS(1513), + [anon_sym_DOLLARfeature] = ACTIONS(1513), + [anon_sym_DOLLARassignable] = ACTIONS(1513), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_typeid] = ACTIONS(1513), + [anon_sym_LBRACE_PIPE] = ACTIONS(1515), + [anon_sym_void] = ACTIONS(1513), + [anon_sym_bool] = ACTIONS(1513), + [anon_sym_char] = ACTIONS(1513), + [anon_sym_ichar] = ACTIONS(1513), + [anon_sym_short] = ACTIONS(1513), + [anon_sym_ushort] = ACTIONS(1513), + [anon_sym_uint] = ACTIONS(1513), + [anon_sym_long] = ACTIONS(1513), + [anon_sym_ulong] = ACTIONS(1513), + [anon_sym_int128] = ACTIONS(1513), + [anon_sym_uint128] = ACTIONS(1513), + [anon_sym_float] = ACTIONS(1513), + [anon_sym_double] = ACTIONS(1513), + [anon_sym_float16] = ACTIONS(1513), + [anon_sym_bfloat16] = ACTIONS(1513), + [anon_sym_float128] = ACTIONS(1513), + [anon_sym_iptr] = ACTIONS(1513), + [anon_sym_uptr] = ACTIONS(1513), + [anon_sym_isz] = ACTIONS(1513), + [anon_sym_usz] = ACTIONS(1513), + [anon_sym_anyfault] = ACTIONS(1513), + [anon_sym_any] = ACTIONS(1513), + [anon_sym_DOLLARtypeof] = ACTIONS(1513), + [anon_sym_DOLLARtypefrom] = ACTIONS(1513), + [anon_sym_DOLLARvatype] = ACTIONS(1513), + [anon_sym_DOLLARevaltype] = ACTIONS(1513), + [sym_real_literal] = ACTIONS(1515), }, [542] = { [sym_line_comment] = STATE(542), [sym_doc_comment] = STATE(542), [sym_block_comment] = STATE(542), - [sym_ident] = ACTIONS(1464), - [sym_integer_literal] = ACTIONS(1466), - [anon_sym_SQUOTE] = ACTIONS(1466), - [anon_sym_DQUOTE] = ACTIONS(1466), - [anon_sym_BQUOTE] = ACTIONS(1466), - [sym_bytes_literal] = ACTIONS(1466), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1464), - [sym_at_ident] = ACTIONS(1466), - [sym_hash_ident] = ACTIONS(1466), - [sym_type_ident] = ACTIONS(1466), - [sym_ct_type_ident] = ACTIONS(1466), - [sym_const_ident] = ACTIONS(1464), - [sym_builtin] = ACTIONS(1466), - [anon_sym_LPAREN] = ACTIONS(1466), - [anon_sym_AMP] = ACTIONS(1464), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_tlocal] = ACTIONS(1464), - [anon_sym_SEMI] = ACTIONS(1466), - [anon_sym_fn] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1464), - [anon_sym_const] = ACTIONS(1464), - [anon_sym_var] = ACTIONS(1464), - [anon_sym_return] = ACTIONS(1464), - [anon_sym_continue] = ACTIONS(1464), - [anon_sym_break] = ACTIONS(1464), - [anon_sym_defer] = ACTIONS(1464), - [anon_sym_assert] = ACTIONS(1464), - [anon_sym_nextcase] = ACTIONS(1464), - [anon_sym_switch] = ACTIONS(1464), - [anon_sym_AMP_AMP] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1464), - [anon_sym_for] = ACTIONS(1464), - [anon_sym_foreach] = ACTIONS(1464), - [anon_sym_foreach_r] = ACTIONS(1464), - [anon_sym_while] = ACTIONS(1464), - [anon_sym_do] = ACTIONS(1464), - [anon_sym_int] = ACTIONS(1464), - [anon_sym_PLUS] = ACTIONS(1464), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1466), - [anon_sym_asm] = ACTIONS(1464), - [anon_sym_DOLLARassert] = ACTIONS(1464), - [anon_sym_DOLLARerror] = ACTIONS(1464), - [anon_sym_DOLLARecho] = ACTIONS(1464), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_DOLLARcase] = ACTIONS(1464), - [anon_sym_DOLLARdefault] = ACTIONS(1464), - [anon_sym_DOLLARswitch] = ACTIONS(1464), - [anon_sym_DOLLARendswitch] = ACTIONS(1464), - [anon_sym_DOLLARfor] = ACTIONS(1464), - [anon_sym_DOLLARforeach] = ACTIONS(1464), - [anon_sym_DOLLARalignof] = ACTIONS(1464), - [anon_sym_DOLLARextnameof] = ACTIONS(1464), - [anon_sym_DOLLARnameof] = ACTIONS(1464), - [anon_sym_DOLLARoffsetof] = ACTIONS(1464), - [anon_sym_DOLLARqnameof] = ACTIONS(1464), - [anon_sym_DOLLARvaconst] = ACTIONS(1464), - [anon_sym_DOLLARvaarg] = ACTIONS(1464), - [anon_sym_DOLLARvaref] = ACTIONS(1464), - [anon_sym_DOLLARvaexpr] = ACTIONS(1464), - [anon_sym_true] = ACTIONS(1464), - [anon_sym_false] = ACTIONS(1464), - [anon_sym_null] = ACTIONS(1464), - [anon_sym_DOLLARvacount] = ACTIONS(1464), - [anon_sym_DOLLARappend] = ACTIONS(1464), - [anon_sym_DOLLARconcat] = ACTIONS(1464), - [anon_sym_DOLLAReval] = ACTIONS(1464), - [anon_sym_DOLLARis_const] = ACTIONS(1464), - [anon_sym_DOLLARsizeof] = ACTIONS(1464), - [anon_sym_DOLLARstringify] = ACTIONS(1464), - [anon_sym_DOLLARand] = ACTIONS(1464), - [anon_sym_DOLLARdefined] = ACTIONS(1464), - [anon_sym_DOLLARembed] = ACTIONS(1464), - [anon_sym_DOLLARor] = ACTIONS(1464), - [anon_sym_DOLLARfeature] = ACTIONS(1464), - [anon_sym_DOLLARassignable] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_TILDE] = ACTIONS(1466), - [anon_sym_PLUS_PLUS] = ACTIONS(1466), - [anon_sym_DASH_DASH] = ACTIONS(1466), - [anon_sym_typeid] = ACTIONS(1464), - [anon_sym_LBRACE_PIPE] = ACTIONS(1466), - [anon_sym_void] = ACTIONS(1464), - [anon_sym_bool] = ACTIONS(1464), - [anon_sym_char] = ACTIONS(1464), - [anon_sym_ichar] = ACTIONS(1464), - [anon_sym_short] = ACTIONS(1464), - [anon_sym_ushort] = ACTIONS(1464), - [anon_sym_uint] = ACTIONS(1464), - [anon_sym_long] = ACTIONS(1464), - [anon_sym_ulong] = ACTIONS(1464), - [anon_sym_int128] = ACTIONS(1464), - [anon_sym_uint128] = ACTIONS(1464), - [anon_sym_float] = ACTIONS(1464), - [anon_sym_double] = ACTIONS(1464), - [anon_sym_float16] = ACTIONS(1464), - [anon_sym_bfloat16] = ACTIONS(1464), - [anon_sym_float128] = ACTIONS(1464), - [anon_sym_iptr] = ACTIONS(1464), - [anon_sym_uptr] = ACTIONS(1464), - [anon_sym_isz] = ACTIONS(1464), - [anon_sym_usz] = ACTIONS(1464), - [anon_sym_anyfault] = ACTIONS(1464), - [anon_sym_any] = ACTIONS(1464), - [anon_sym_DOLLARtypeof] = ACTIONS(1464), - [anon_sym_DOLLARtypefrom] = ACTIONS(1464), - [anon_sym_DOLLARvatype] = ACTIONS(1464), - [anon_sym_DOLLARevaltype] = ACTIONS(1464), - [sym_real_literal] = ACTIONS(1466), + [sym_ident] = ACTIONS(1355), + [sym_integer_literal] = ACTIONS(1357), + [anon_sym_SQUOTE] = ACTIONS(1357), + [anon_sym_DQUOTE] = ACTIONS(1357), + [anon_sym_BQUOTE] = ACTIONS(1357), + [sym_bytes_literal] = ACTIONS(1357), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1355), + [sym_at_ident] = ACTIONS(1357), + [sym_hash_ident] = ACTIONS(1357), + [sym_type_ident] = ACTIONS(1357), + [sym_ct_type_ident] = ACTIONS(1357), + [sym_const_ident] = ACTIONS(1355), + [sym_builtin] = ACTIONS(1357), + [anon_sym_LPAREN] = ACTIONS(1357), + [anon_sym_AMP] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1355), + [anon_sym_tlocal] = ACTIONS(1355), + [anon_sym_SEMI] = ACTIONS(1357), + [anon_sym_fn] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_const] = ACTIONS(1355), + [anon_sym_var] = ACTIONS(1355), + [anon_sym_return] = ACTIONS(1355), + [anon_sym_continue] = ACTIONS(1355), + [anon_sym_break] = ACTIONS(1355), + [anon_sym_defer] = ACTIONS(1355), + [anon_sym_assert] = ACTIONS(1355), + [anon_sym_nextcase] = ACTIONS(1355), + [anon_sym_switch] = ACTIONS(1355), + [anon_sym_AMP_AMP] = ACTIONS(1357), + [anon_sym_if] = ACTIONS(1355), + [anon_sym_else] = ACTIONS(1355), + [anon_sym_for] = ACTIONS(1355), + [anon_sym_foreach] = ACTIONS(1355), + [anon_sym_foreach_r] = ACTIONS(1355), + [anon_sym_while] = ACTIONS(1355), + [anon_sym_do] = ACTIONS(1355), + [anon_sym_int] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1355), + [anon_sym_DASH] = ACTIONS(1355), + [anon_sym_STAR] = ACTIONS(1357), + [anon_sym_asm] = ACTIONS(1355), + [anon_sym_DOLLARassert] = ACTIONS(1355), + [anon_sym_DOLLARerror] = ACTIONS(1355), + [anon_sym_DOLLARecho] = ACTIONS(1355), + [anon_sym_DOLLARif] = ACTIONS(1355), + [anon_sym_DOLLARswitch] = ACTIONS(1355), + [anon_sym_DOLLARfor] = ACTIONS(1355), + [anon_sym_DOLLARendfor] = ACTIONS(1355), + [anon_sym_DOLLARforeach] = ACTIONS(1355), + [anon_sym_DOLLARalignof] = ACTIONS(1355), + [anon_sym_DOLLARextnameof] = ACTIONS(1355), + [anon_sym_DOLLARnameof] = ACTIONS(1355), + [anon_sym_DOLLARoffsetof] = ACTIONS(1355), + [anon_sym_DOLLARqnameof] = ACTIONS(1355), + [anon_sym_DOLLARvaconst] = ACTIONS(1355), + [anon_sym_DOLLARvaarg] = ACTIONS(1355), + [anon_sym_DOLLARvaref] = ACTIONS(1355), + [anon_sym_DOLLARvaexpr] = ACTIONS(1355), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), + [anon_sym_null] = ACTIONS(1355), + [anon_sym_DOLLARvacount] = ACTIONS(1355), + [anon_sym_DOLLARappend] = ACTIONS(1355), + [anon_sym_DOLLARconcat] = ACTIONS(1355), + [anon_sym_DOLLAReval] = ACTIONS(1355), + [anon_sym_DOLLARis_const] = ACTIONS(1355), + [anon_sym_DOLLARsizeof] = ACTIONS(1355), + [anon_sym_DOLLARstringify] = ACTIONS(1355), + [anon_sym_DOLLARand] = ACTIONS(1355), + [anon_sym_DOLLARdefined] = ACTIONS(1355), + [anon_sym_DOLLARembed] = ACTIONS(1355), + [anon_sym_DOLLARor] = ACTIONS(1355), + [anon_sym_DOLLARfeature] = ACTIONS(1355), + [anon_sym_DOLLARassignable] = ACTIONS(1355), + [anon_sym_BANG] = ACTIONS(1357), + [anon_sym_TILDE] = ACTIONS(1357), + [anon_sym_PLUS_PLUS] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1357), + [anon_sym_typeid] = ACTIONS(1355), + [anon_sym_LBRACE_PIPE] = ACTIONS(1357), + [anon_sym_void] = ACTIONS(1355), + [anon_sym_bool] = ACTIONS(1355), + [anon_sym_char] = ACTIONS(1355), + [anon_sym_ichar] = ACTIONS(1355), + [anon_sym_short] = ACTIONS(1355), + [anon_sym_ushort] = ACTIONS(1355), + [anon_sym_uint] = ACTIONS(1355), + [anon_sym_long] = ACTIONS(1355), + [anon_sym_ulong] = ACTIONS(1355), + [anon_sym_int128] = ACTIONS(1355), + [anon_sym_uint128] = ACTIONS(1355), + [anon_sym_float] = ACTIONS(1355), + [anon_sym_double] = ACTIONS(1355), + [anon_sym_float16] = ACTIONS(1355), + [anon_sym_bfloat16] = ACTIONS(1355), + [anon_sym_float128] = ACTIONS(1355), + [anon_sym_iptr] = ACTIONS(1355), + [anon_sym_uptr] = ACTIONS(1355), + [anon_sym_isz] = ACTIONS(1355), + [anon_sym_usz] = ACTIONS(1355), + [anon_sym_anyfault] = ACTIONS(1355), + [anon_sym_any] = ACTIONS(1355), + [anon_sym_DOLLARtypeof] = ACTIONS(1355), + [anon_sym_DOLLARtypefrom] = ACTIONS(1355), + [anon_sym_DOLLARvatype] = ACTIONS(1355), + [anon_sym_DOLLARevaltype] = ACTIONS(1355), + [sym_real_literal] = ACTIONS(1357), }, [543] = { [sym_line_comment] = STATE(543), [sym_doc_comment] = STATE(543), [sym_block_comment] = STATE(543), - [sym_ident] = ACTIONS(1398), - [sym_integer_literal] = ACTIONS(1400), - [anon_sym_SQUOTE] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [anon_sym_BQUOTE] = ACTIONS(1400), - [sym_bytes_literal] = ACTIONS(1400), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1398), - [sym_at_ident] = ACTIONS(1400), - [sym_hash_ident] = ACTIONS(1400), - [sym_type_ident] = ACTIONS(1400), - [sym_ct_type_ident] = ACTIONS(1400), - [sym_const_ident] = ACTIONS(1398), - [sym_builtin] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1400), - [anon_sym_AMP] = ACTIONS(1398), - [anon_sym_static] = ACTIONS(1398), - [anon_sym_tlocal] = ACTIONS(1398), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym_fn] = ACTIONS(1398), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_const] = ACTIONS(1398), - [anon_sym_var] = ACTIONS(1398), - [anon_sym_return] = ACTIONS(1398), - [anon_sym_continue] = ACTIONS(1398), - [anon_sym_break] = ACTIONS(1398), - [anon_sym_defer] = ACTIONS(1398), - [anon_sym_assert] = ACTIONS(1398), - [anon_sym_nextcase] = ACTIONS(1398), - [anon_sym_switch] = ACTIONS(1398), - [anon_sym_AMP_AMP] = ACTIONS(1400), - [anon_sym_if] = ACTIONS(1398), - [anon_sym_for] = ACTIONS(1398), - [anon_sym_foreach] = ACTIONS(1398), - [anon_sym_foreach_r] = ACTIONS(1398), - [anon_sym_while] = ACTIONS(1398), - [anon_sym_do] = ACTIONS(1398), - [anon_sym_int] = ACTIONS(1398), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_asm] = ACTIONS(1398), - [anon_sym_DOLLARassert] = ACTIONS(1398), - [anon_sym_DOLLARerror] = ACTIONS(1398), - [anon_sym_DOLLARecho] = ACTIONS(1398), - [anon_sym_DOLLARif] = ACTIONS(1398), - [anon_sym_DOLLARcase] = ACTIONS(1398), - [anon_sym_DOLLARdefault] = ACTIONS(1398), - [anon_sym_DOLLARswitch] = ACTIONS(1398), - [anon_sym_DOLLARendswitch] = ACTIONS(1398), - [anon_sym_DOLLARfor] = ACTIONS(1398), - [anon_sym_DOLLARforeach] = ACTIONS(1398), - [anon_sym_DOLLARalignof] = ACTIONS(1398), - [anon_sym_DOLLARextnameof] = ACTIONS(1398), - [anon_sym_DOLLARnameof] = ACTIONS(1398), - [anon_sym_DOLLARoffsetof] = ACTIONS(1398), - [anon_sym_DOLLARqnameof] = ACTIONS(1398), - [anon_sym_DOLLARvaconst] = ACTIONS(1398), - [anon_sym_DOLLARvaarg] = ACTIONS(1398), - [anon_sym_DOLLARvaref] = ACTIONS(1398), - [anon_sym_DOLLARvaexpr] = ACTIONS(1398), - [anon_sym_true] = ACTIONS(1398), - [anon_sym_false] = ACTIONS(1398), - [anon_sym_null] = ACTIONS(1398), - [anon_sym_DOLLARvacount] = ACTIONS(1398), - [anon_sym_DOLLARappend] = ACTIONS(1398), - [anon_sym_DOLLARconcat] = ACTIONS(1398), - [anon_sym_DOLLAReval] = ACTIONS(1398), - [anon_sym_DOLLARis_const] = ACTIONS(1398), - [anon_sym_DOLLARsizeof] = ACTIONS(1398), - [anon_sym_DOLLARstringify] = ACTIONS(1398), - [anon_sym_DOLLARand] = ACTIONS(1398), - [anon_sym_DOLLARdefined] = ACTIONS(1398), - [anon_sym_DOLLARembed] = ACTIONS(1398), - [anon_sym_DOLLARor] = ACTIONS(1398), - [anon_sym_DOLLARfeature] = ACTIONS(1398), - [anon_sym_DOLLARassignable] = ACTIONS(1398), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [anon_sym_typeid] = ACTIONS(1398), - [anon_sym_LBRACE_PIPE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1398), - [anon_sym_bool] = ACTIONS(1398), - [anon_sym_char] = ACTIONS(1398), - [anon_sym_ichar] = ACTIONS(1398), - [anon_sym_short] = ACTIONS(1398), - [anon_sym_ushort] = ACTIONS(1398), - [anon_sym_uint] = ACTIONS(1398), - [anon_sym_long] = ACTIONS(1398), - [anon_sym_ulong] = ACTIONS(1398), - [anon_sym_int128] = ACTIONS(1398), - [anon_sym_uint128] = ACTIONS(1398), - [anon_sym_float] = ACTIONS(1398), - [anon_sym_double] = ACTIONS(1398), - [anon_sym_float16] = ACTIONS(1398), - [anon_sym_bfloat16] = ACTIONS(1398), - [anon_sym_float128] = ACTIONS(1398), - [anon_sym_iptr] = ACTIONS(1398), - [anon_sym_uptr] = ACTIONS(1398), - [anon_sym_isz] = ACTIONS(1398), - [anon_sym_usz] = ACTIONS(1398), - [anon_sym_anyfault] = ACTIONS(1398), - [anon_sym_any] = ACTIONS(1398), - [anon_sym_DOLLARtypeof] = ACTIONS(1398), - [anon_sym_DOLLARtypefrom] = ACTIONS(1398), - [anon_sym_DOLLARvatype] = ACTIONS(1398), - [anon_sym_DOLLARevaltype] = ACTIONS(1398), - [sym_real_literal] = ACTIONS(1400), + [sym_ident] = ACTIONS(1371), + [sym_integer_literal] = ACTIONS(1373), + [anon_sym_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE] = ACTIONS(1373), + [anon_sym_BQUOTE] = ACTIONS(1373), + [sym_bytes_literal] = ACTIONS(1373), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1371), + [sym_at_ident] = ACTIONS(1373), + [sym_hash_ident] = ACTIONS(1373), + [sym_type_ident] = ACTIONS(1373), + [sym_ct_type_ident] = ACTIONS(1373), + [sym_const_ident] = ACTIONS(1371), + [sym_builtin] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(1373), + [anon_sym_AMP] = ACTIONS(1371), + [anon_sym_static] = ACTIONS(1371), + [anon_sym_tlocal] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_fn] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1371), + [anon_sym_const] = ACTIONS(1371), + [anon_sym_var] = ACTIONS(1371), + [anon_sym_return] = ACTIONS(1371), + [anon_sym_continue] = ACTIONS(1371), + [anon_sym_break] = ACTIONS(1371), + [anon_sym_defer] = ACTIONS(1371), + [anon_sym_assert] = ACTIONS(1371), + [anon_sym_nextcase] = ACTIONS(1371), + [anon_sym_switch] = ACTIONS(1371), + [anon_sym_AMP_AMP] = ACTIONS(1373), + [anon_sym_if] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1371), + [anon_sym_foreach] = ACTIONS(1371), + [anon_sym_foreach_r] = ACTIONS(1371), + [anon_sym_while] = ACTIONS(1371), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_int] = ACTIONS(1371), + [anon_sym_PLUS] = ACTIONS(1371), + [anon_sym_DASH] = ACTIONS(1371), + [anon_sym_STAR] = ACTIONS(1373), + [anon_sym_asm] = ACTIONS(1371), + [anon_sym_DOLLARassert] = ACTIONS(1371), + [anon_sym_DOLLARerror] = ACTIONS(1371), + [anon_sym_DOLLARecho] = ACTIONS(1371), + [anon_sym_DOLLARif] = ACTIONS(1371), + [anon_sym_DOLLARendif] = ACTIONS(1371), + [anon_sym_DOLLARelse] = ACTIONS(1371), + [anon_sym_DOLLARswitch] = ACTIONS(1371), + [anon_sym_DOLLARfor] = ACTIONS(1371), + [anon_sym_DOLLARforeach] = ACTIONS(1371), + [anon_sym_DOLLARalignof] = ACTIONS(1371), + [anon_sym_DOLLARextnameof] = ACTIONS(1371), + [anon_sym_DOLLARnameof] = ACTIONS(1371), + [anon_sym_DOLLARoffsetof] = ACTIONS(1371), + [anon_sym_DOLLARqnameof] = ACTIONS(1371), + [anon_sym_DOLLARvaconst] = ACTIONS(1371), + [anon_sym_DOLLARvaarg] = ACTIONS(1371), + [anon_sym_DOLLARvaref] = ACTIONS(1371), + [anon_sym_DOLLARvaexpr] = ACTIONS(1371), + [anon_sym_true] = ACTIONS(1371), + [anon_sym_false] = ACTIONS(1371), + [anon_sym_null] = ACTIONS(1371), + [anon_sym_DOLLARvacount] = ACTIONS(1371), + [anon_sym_DOLLARappend] = ACTIONS(1371), + [anon_sym_DOLLARconcat] = ACTIONS(1371), + [anon_sym_DOLLAReval] = ACTIONS(1371), + [anon_sym_DOLLARis_const] = ACTIONS(1371), + [anon_sym_DOLLARsizeof] = ACTIONS(1371), + [anon_sym_DOLLARstringify] = ACTIONS(1371), + [anon_sym_DOLLARand] = ACTIONS(1371), + [anon_sym_DOLLARdefined] = ACTIONS(1371), + [anon_sym_DOLLARembed] = ACTIONS(1371), + [anon_sym_DOLLARor] = ACTIONS(1371), + [anon_sym_DOLLARfeature] = ACTIONS(1371), + [anon_sym_DOLLARassignable] = ACTIONS(1371), + [anon_sym_BANG] = ACTIONS(1373), + [anon_sym_TILDE] = ACTIONS(1373), + [anon_sym_PLUS_PLUS] = ACTIONS(1373), + [anon_sym_DASH_DASH] = ACTIONS(1373), + [anon_sym_typeid] = ACTIONS(1371), + [anon_sym_LBRACE_PIPE] = ACTIONS(1373), + [anon_sym_void] = ACTIONS(1371), + [anon_sym_bool] = ACTIONS(1371), + [anon_sym_char] = ACTIONS(1371), + [anon_sym_ichar] = ACTIONS(1371), + [anon_sym_short] = ACTIONS(1371), + [anon_sym_ushort] = ACTIONS(1371), + [anon_sym_uint] = ACTIONS(1371), + [anon_sym_long] = ACTIONS(1371), + [anon_sym_ulong] = ACTIONS(1371), + [anon_sym_int128] = ACTIONS(1371), + [anon_sym_uint128] = ACTIONS(1371), + [anon_sym_float] = ACTIONS(1371), + [anon_sym_double] = ACTIONS(1371), + [anon_sym_float16] = ACTIONS(1371), + [anon_sym_bfloat16] = ACTIONS(1371), + [anon_sym_float128] = ACTIONS(1371), + [anon_sym_iptr] = ACTIONS(1371), + [anon_sym_uptr] = ACTIONS(1371), + [anon_sym_isz] = ACTIONS(1371), + [anon_sym_usz] = ACTIONS(1371), + [anon_sym_anyfault] = ACTIONS(1371), + [anon_sym_any] = ACTIONS(1371), + [anon_sym_DOLLARtypeof] = ACTIONS(1371), + [anon_sym_DOLLARtypefrom] = ACTIONS(1371), + [anon_sym_DOLLARvatype] = ACTIONS(1371), + [anon_sym_DOLLARevaltype] = ACTIONS(1371), + [sym_real_literal] = ACTIONS(1373), }, [544] = { [sym_line_comment] = STATE(544), [sym_doc_comment] = STATE(544), [sym_block_comment] = STATE(544), - [sym_ident] = ACTIONS(1394), - [sym_integer_literal] = ACTIONS(1396), - [anon_sym_SQUOTE] = ACTIONS(1396), - [anon_sym_DQUOTE] = ACTIONS(1396), - [anon_sym_BQUOTE] = ACTIONS(1396), - [sym_bytes_literal] = ACTIONS(1396), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1394), - [sym_at_ident] = ACTIONS(1396), - [sym_hash_ident] = ACTIONS(1396), - [sym_type_ident] = ACTIONS(1396), - [sym_ct_type_ident] = ACTIONS(1396), - [sym_const_ident] = ACTIONS(1394), - [sym_builtin] = ACTIONS(1396), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_AMP] = ACTIONS(1394), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_tlocal] = ACTIONS(1394), - [anon_sym_SEMI] = ACTIONS(1396), - [anon_sym_fn] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1394), - [anon_sym_const] = ACTIONS(1394), - [anon_sym_var] = ACTIONS(1394), - [anon_sym_return] = ACTIONS(1394), - [anon_sym_continue] = ACTIONS(1394), - [anon_sym_break] = ACTIONS(1394), - [anon_sym_defer] = ACTIONS(1394), - [anon_sym_assert] = ACTIONS(1394), - [anon_sym_nextcase] = ACTIONS(1394), - [anon_sym_switch] = ACTIONS(1394), - [anon_sym_AMP_AMP] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1394), - [anon_sym_for] = ACTIONS(1394), - [anon_sym_foreach] = ACTIONS(1394), - [anon_sym_foreach_r] = ACTIONS(1394), - [anon_sym_while] = ACTIONS(1394), - [anon_sym_do] = ACTIONS(1394), - [anon_sym_int] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1394), - [anon_sym_DASH] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(1396), - [anon_sym_asm] = ACTIONS(1394), - [anon_sym_DOLLARassert] = ACTIONS(1394), - [anon_sym_DOLLARerror] = ACTIONS(1394), - [anon_sym_DOLLARecho] = ACTIONS(1394), - [anon_sym_DOLLARif] = ACTIONS(1394), - [anon_sym_DOLLARcase] = ACTIONS(1394), - [anon_sym_DOLLARdefault] = ACTIONS(1394), - [anon_sym_DOLLARswitch] = ACTIONS(1394), - [anon_sym_DOLLARendswitch] = ACTIONS(1394), - [anon_sym_DOLLARfor] = ACTIONS(1394), - [anon_sym_DOLLARforeach] = ACTIONS(1394), - [anon_sym_DOLLARalignof] = ACTIONS(1394), - [anon_sym_DOLLARextnameof] = ACTIONS(1394), - [anon_sym_DOLLARnameof] = ACTIONS(1394), - [anon_sym_DOLLARoffsetof] = ACTIONS(1394), - [anon_sym_DOLLARqnameof] = ACTIONS(1394), - [anon_sym_DOLLARvaconst] = ACTIONS(1394), - [anon_sym_DOLLARvaarg] = ACTIONS(1394), - [anon_sym_DOLLARvaref] = ACTIONS(1394), - [anon_sym_DOLLARvaexpr] = ACTIONS(1394), - [anon_sym_true] = ACTIONS(1394), - [anon_sym_false] = ACTIONS(1394), - [anon_sym_null] = ACTIONS(1394), - [anon_sym_DOLLARvacount] = ACTIONS(1394), - [anon_sym_DOLLARappend] = ACTIONS(1394), - [anon_sym_DOLLARconcat] = ACTIONS(1394), - [anon_sym_DOLLAReval] = ACTIONS(1394), - [anon_sym_DOLLARis_const] = ACTIONS(1394), - [anon_sym_DOLLARsizeof] = ACTIONS(1394), - [anon_sym_DOLLARstringify] = ACTIONS(1394), - [anon_sym_DOLLARand] = ACTIONS(1394), - [anon_sym_DOLLARdefined] = ACTIONS(1394), - [anon_sym_DOLLARembed] = ACTIONS(1394), - [anon_sym_DOLLARor] = ACTIONS(1394), - [anon_sym_DOLLARfeature] = ACTIONS(1394), - [anon_sym_DOLLARassignable] = ACTIONS(1394), - [anon_sym_BANG] = ACTIONS(1396), - [anon_sym_TILDE] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1396), - [anon_sym_DASH_DASH] = ACTIONS(1396), - [anon_sym_typeid] = ACTIONS(1394), - [anon_sym_LBRACE_PIPE] = ACTIONS(1396), - [anon_sym_void] = ACTIONS(1394), - [anon_sym_bool] = ACTIONS(1394), - [anon_sym_char] = ACTIONS(1394), - [anon_sym_ichar] = ACTIONS(1394), - [anon_sym_short] = ACTIONS(1394), - [anon_sym_ushort] = ACTIONS(1394), - [anon_sym_uint] = ACTIONS(1394), - [anon_sym_long] = ACTIONS(1394), - [anon_sym_ulong] = ACTIONS(1394), - [anon_sym_int128] = ACTIONS(1394), - [anon_sym_uint128] = ACTIONS(1394), - [anon_sym_float] = ACTIONS(1394), - [anon_sym_double] = ACTIONS(1394), - [anon_sym_float16] = ACTIONS(1394), - [anon_sym_bfloat16] = ACTIONS(1394), - [anon_sym_float128] = ACTIONS(1394), - [anon_sym_iptr] = ACTIONS(1394), - [anon_sym_uptr] = ACTIONS(1394), - [anon_sym_isz] = ACTIONS(1394), - [anon_sym_usz] = ACTIONS(1394), - [anon_sym_anyfault] = ACTIONS(1394), - [anon_sym_any] = ACTIONS(1394), - [anon_sym_DOLLARtypeof] = ACTIONS(1394), - [anon_sym_DOLLARtypefrom] = ACTIONS(1394), - [anon_sym_DOLLARvatype] = ACTIONS(1394), - [anon_sym_DOLLARevaltype] = ACTIONS(1394), - [sym_real_literal] = ACTIONS(1396), + [sym_ident] = ACTIONS(1399), + [sym_integer_literal] = ACTIONS(1401), + [anon_sym_SQUOTE] = ACTIONS(1401), + [anon_sym_DQUOTE] = ACTIONS(1401), + [anon_sym_BQUOTE] = ACTIONS(1401), + [sym_bytes_literal] = ACTIONS(1401), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1399), + [sym_at_ident] = ACTIONS(1401), + [sym_hash_ident] = ACTIONS(1401), + [sym_type_ident] = ACTIONS(1401), + [sym_ct_type_ident] = ACTIONS(1401), + [sym_const_ident] = ACTIONS(1399), + [sym_builtin] = ACTIONS(1401), + [anon_sym_LPAREN] = ACTIONS(1401), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_static] = ACTIONS(1399), + [anon_sym_tlocal] = ACTIONS(1399), + [anon_sym_SEMI] = ACTIONS(1401), + [anon_sym_fn] = ACTIONS(1399), + [anon_sym_LBRACE] = ACTIONS(1399), + [anon_sym_const] = ACTIONS(1399), + [anon_sym_var] = ACTIONS(1399), + [anon_sym_return] = ACTIONS(1399), + [anon_sym_continue] = ACTIONS(1399), + [anon_sym_break] = ACTIONS(1399), + [anon_sym_defer] = ACTIONS(1399), + [anon_sym_assert] = ACTIONS(1399), + [anon_sym_nextcase] = ACTIONS(1399), + [anon_sym_switch] = ACTIONS(1399), + [anon_sym_AMP_AMP] = ACTIONS(1401), + [anon_sym_if] = ACTIONS(1399), + [anon_sym_for] = ACTIONS(1399), + [anon_sym_foreach] = ACTIONS(1399), + [anon_sym_foreach_r] = ACTIONS(1399), + [anon_sym_while] = ACTIONS(1399), + [anon_sym_do] = ACTIONS(1399), + [anon_sym_int] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1399), + [anon_sym_DASH] = ACTIONS(1399), + [anon_sym_STAR] = ACTIONS(1401), + [anon_sym_asm] = ACTIONS(1399), + [anon_sym_DOLLARassert] = ACTIONS(1399), + [anon_sym_DOLLARerror] = ACTIONS(1399), + [anon_sym_DOLLARecho] = ACTIONS(1399), + [anon_sym_DOLLARif] = ACTIONS(1399), + [anon_sym_DOLLARendif] = ACTIONS(1399), + [anon_sym_DOLLARelse] = ACTIONS(1399), + [anon_sym_DOLLARswitch] = ACTIONS(1399), + [anon_sym_DOLLARfor] = ACTIONS(1399), + [anon_sym_DOLLARforeach] = ACTIONS(1399), + [anon_sym_DOLLARalignof] = ACTIONS(1399), + [anon_sym_DOLLARextnameof] = ACTIONS(1399), + [anon_sym_DOLLARnameof] = ACTIONS(1399), + [anon_sym_DOLLARoffsetof] = ACTIONS(1399), + [anon_sym_DOLLARqnameof] = ACTIONS(1399), + [anon_sym_DOLLARvaconst] = ACTIONS(1399), + [anon_sym_DOLLARvaarg] = ACTIONS(1399), + [anon_sym_DOLLARvaref] = ACTIONS(1399), + [anon_sym_DOLLARvaexpr] = ACTIONS(1399), + [anon_sym_true] = ACTIONS(1399), + [anon_sym_false] = ACTIONS(1399), + [anon_sym_null] = ACTIONS(1399), + [anon_sym_DOLLARvacount] = ACTIONS(1399), + [anon_sym_DOLLARappend] = ACTIONS(1399), + [anon_sym_DOLLARconcat] = ACTIONS(1399), + [anon_sym_DOLLAReval] = ACTIONS(1399), + [anon_sym_DOLLARis_const] = ACTIONS(1399), + [anon_sym_DOLLARsizeof] = ACTIONS(1399), + [anon_sym_DOLLARstringify] = ACTIONS(1399), + [anon_sym_DOLLARand] = ACTIONS(1399), + [anon_sym_DOLLARdefined] = ACTIONS(1399), + [anon_sym_DOLLARembed] = ACTIONS(1399), + [anon_sym_DOLLARor] = ACTIONS(1399), + [anon_sym_DOLLARfeature] = ACTIONS(1399), + [anon_sym_DOLLARassignable] = ACTIONS(1399), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_TILDE] = ACTIONS(1401), + [anon_sym_PLUS_PLUS] = ACTIONS(1401), + [anon_sym_DASH_DASH] = ACTIONS(1401), + [anon_sym_typeid] = ACTIONS(1399), + [anon_sym_LBRACE_PIPE] = ACTIONS(1401), + [anon_sym_void] = ACTIONS(1399), + [anon_sym_bool] = ACTIONS(1399), + [anon_sym_char] = ACTIONS(1399), + [anon_sym_ichar] = ACTIONS(1399), + [anon_sym_short] = ACTIONS(1399), + [anon_sym_ushort] = ACTIONS(1399), + [anon_sym_uint] = ACTIONS(1399), + [anon_sym_long] = ACTIONS(1399), + [anon_sym_ulong] = ACTIONS(1399), + [anon_sym_int128] = ACTIONS(1399), + [anon_sym_uint128] = ACTIONS(1399), + [anon_sym_float] = ACTIONS(1399), + [anon_sym_double] = ACTIONS(1399), + [anon_sym_float16] = ACTIONS(1399), + [anon_sym_bfloat16] = ACTIONS(1399), + [anon_sym_float128] = ACTIONS(1399), + [anon_sym_iptr] = ACTIONS(1399), + [anon_sym_uptr] = ACTIONS(1399), + [anon_sym_isz] = ACTIONS(1399), + [anon_sym_usz] = ACTIONS(1399), + [anon_sym_anyfault] = ACTIONS(1399), + [anon_sym_any] = ACTIONS(1399), + [anon_sym_DOLLARtypeof] = ACTIONS(1399), + [anon_sym_DOLLARtypefrom] = ACTIONS(1399), + [anon_sym_DOLLARvatype] = ACTIONS(1399), + [anon_sym_DOLLARevaltype] = ACTIONS(1399), + [sym_real_literal] = ACTIONS(1401), }, [545] = { [sym_line_comment] = STATE(545), [sym_doc_comment] = STATE(545), [sym_block_comment] = STATE(545), - [sym_ident] = ACTIONS(1476), - [sym_integer_literal] = ACTIONS(1478), - [anon_sym_SQUOTE] = ACTIONS(1478), - [anon_sym_DQUOTE] = ACTIONS(1478), - [anon_sym_BQUOTE] = ACTIONS(1478), - [sym_bytes_literal] = ACTIONS(1478), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1476), - [sym_at_ident] = ACTIONS(1478), - [sym_hash_ident] = ACTIONS(1478), - [sym_type_ident] = ACTIONS(1478), - [sym_ct_type_ident] = ACTIONS(1478), - [sym_const_ident] = ACTIONS(1476), - [sym_builtin] = ACTIONS(1478), - [anon_sym_LPAREN] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_static] = ACTIONS(1476), - [anon_sym_tlocal] = ACTIONS(1476), - [anon_sym_SEMI] = ACTIONS(1478), - [anon_sym_fn] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1476), - [anon_sym_const] = ACTIONS(1476), - [anon_sym_var] = ACTIONS(1476), - [anon_sym_return] = ACTIONS(1476), - [anon_sym_continue] = ACTIONS(1476), - [anon_sym_break] = ACTIONS(1476), - [anon_sym_defer] = ACTIONS(1476), - [anon_sym_assert] = ACTIONS(1476), - [anon_sym_nextcase] = ACTIONS(1476), - [anon_sym_switch] = ACTIONS(1476), - [anon_sym_AMP_AMP] = ACTIONS(1478), - [anon_sym_if] = ACTIONS(1476), - [anon_sym_for] = ACTIONS(1476), - [anon_sym_foreach] = ACTIONS(1476), - [anon_sym_foreach_r] = ACTIONS(1476), - [anon_sym_while] = ACTIONS(1476), - [anon_sym_do] = ACTIONS(1476), - [anon_sym_int] = ACTIONS(1476), - [anon_sym_PLUS] = ACTIONS(1476), - [anon_sym_DASH] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_asm] = ACTIONS(1476), - [anon_sym_DOLLARassert] = ACTIONS(1476), - [anon_sym_DOLLARerror] = ACTIONS(1476), - [anon_sym_DOLLARecho] = ACTIONS(1476), - [anon_sym_DOLLARif] = ACTIONS(1476), - [anon_sym_DOLLARendif] = ACTIONS(1476), - [anon_sym_DOLLARelse] = ACTIONS(1476), - [anon_sym_DOLLARswitch] = ACTIONS(1476), - [anon_sym_DOLLARfor] = ACTIONS(1476), - [anon_sym_DOLLARforeach] = ACTIONS(1476), - [anon_sym_DOLLARalignof] = ACTIONS(1476), - [anon_sym_DOLLARextnameof] = ACTIONS(1476), - [anon_sym_DOLLARnameof] = ACTIONS(1476), - [anon_sym_DOLLARoffsetof] = ACTIONS(1476), - [anon_sym_DOLLARqnameof] = ACTIONS(1476), - [anon_sym_DOLLARvaconst] = ACTIONS(1476), - [anon_sym_DOLLARvaarg] = ACTIONS(1476), - [anon_sym_DOLLARvaref] = ACTIONS(1476), - [anon_sym_DOLLARvaexpr] = ACTIONS(1476), - [anon_sym_true] = ACTIONS(1476), - [anon_sym_false] = ACTIONS(1476), - [anon_sym_null] = ACTIONS(1476), - [anon_sym_DOLLARvacount] = ACTIONS(1476), - [anon_sym_DOLLARappend] = ACTIONS(1476), - [anon_sym_DOLLARconcat] = ACTIONS(1476), - [anon_sym_DOLLAReval] = ACTIONS(1476), - [anon_sym_DOLLARis_const] = ACTIONS(1476), - [anon_sym_DOLLARsizeof] = ACTIONS(1476), - [anon_sym_DOLLARstringify] = ACTIONS(1476), - [anon_sym_DOLLARand] = ACTIONS(1476), - [anon_sym_DOLLARdefined] = ACTIONS(1476), - [anon_sym_DOLLARembed] = ACTIONS(1476), - [anon_sym_DOLLARor] = ACTIONS(1476), - [anon_sym_DOLLARfeature] = ACTIONS(1476), - [anon_sym_DOLLARassignable] = ACTIONS(1476), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_TILDE] = ACTIONS(1478), - [anon_sym_PLUS_PLUS] = ACTIONS(1478), - [anon_sym_DASH_DASH] = ACTIONS(1478), - [anon_sym_typeid] = ACTIONS(1476), - [anon_sym_LBRACE_PIPE] = ACTIONS(1478), - [anon_sym_void] = ACTIONS(1476), - [anon_sym_bool] = ACTIONS(1476), - [anon_sym_char] = ACTIONS(1476), - [anon_sym_ichar] = ACTIONS(1476), - [anon_sym_short] = ACTIONS(1476), - [anon_sym_ushort] = ACTIONS(1476), - [anon_sym_uint] = ACTIONS(1476), - [anon_sym_long] = ACTIONS(1476), - [anon_sym_ulong] = ACTIONS(1476), - [anon_sym_int128] = ACTIONS(1476), - [anon_sym_uint128] = ACTIONS(1476), - [anon_sym_float] = ACTIONS(1476), - [anon_sym_double] = ACTIONS(1476), - [anon_sym_float16] = ACTIONS(1476), - [anon_sym_bfloat16] = ACTIONS(1476), - [anon_sym_float128] = ACTIONS(1476), - [anon_sym_iptr] = ACTIONS(1476), - [anon_sym_uptr] = ACTIONS(1476), - [anon_sym_isz] = ACTIONS(1476), - [anon_sym_usz] = ACTIONS(1476), - [anon_sym_anyfault] = ACTIONS(1476), - [anon_sym_any] = ACTIONS(1476), - [anon_sym_DOLLARtypeof] = ACTIONS(1476), - [anon_sym_DOLLARtypefrom] = ACTIONS(1476), - [anon_sym_DOLLARvatype] = ACTIONS(1476), - [anon_sym_DOLLARevaltype] = ACTIONS(1476), - [sym_real_literal] = ACTIONS(1478), + [sym_ident] = ACTIONS(1497), + [sym_integer_literal] = ACTIONS(1499), + [anon_sym_SQUOTE] = ACTIONS(1499), + [anon_sym_DQUOTE] = ACTIONS(1499), + [anon_sym_BQUOTE] = ACTIONS(1499), + [sym_bytes_literal] = ACTIONS(1499), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1497), + [sym_at_ident] = ACTIONS(1499), + [sym_hash_ident] = ACTIONS(1499), + [sym_type_ident] = ACTIONS(1499), + [sym_ct_type_ident] = ACTIONS(1499), + [sym_const_ident] = ACTIONS(1497), + [sym_builtin] = ACTIONS(1499), + [anon_sym_LPAREN] = ACTIONS(1499), + [anon_sym_AMP] = ACTIONS(1497), + [anon_sym_static] = ACTIONS(1497), + [anon_sym_tlocal] = ACTIONS(1497), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_fn] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_const] = ACTIONS(1497), + [anon_sym_var] = ACTIONS(1497), + [anon_sym_return] = ACTIONS(1497), + [anon_sym_continue] = ACTIONS(1497), + [anon_sym_break] = ACTIONS(1497), + [anon_sym_defer] = ACTIONS(1497), + [anon_sym_assert] = ACTIONS(1497), + [anon_sym_nextcase] = ACTIONS(1497), + [anon_sym_switch] = ACTIONS(1497), + [anon_sym_AMP_AMP] = ACTIONS(1499), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_for] = ACTIONS(1497), + [anon_sym_foreach] = ACTIONS(1497), + [anon_sym_foreach_r] = ACTIONS(1497), + [anon_sym_while] = ACTIONS(1497), + [anon_sym_do] = ACTIONS(1497), + [anon_sym_int] = ACTIONS(1497), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_asm] = ACTIONS(1497), + [anon_sym_DOLLARassert] = ACTIONS(1497), + [anon_sym_DOLLARerror] = ACTIONS(1497), + [anon_sym_DOLLARecho] = ACTIONS(1497), + [anon_sym_DOLLARif] = ACTIONS(1497), + [anon_sym_DOLLARendif] = ACTIONS(1497), + [anon_sym_DOLLARelse] = ACTIONS(1497), + [anon_sym_DOLLARswitch] = ACTIONS(1497), + [anon_sym_DOLLARfor] = ACTIONS(1497), + [anon_sym_DOLLARforeach] = ACTIONS(1497), + [anon_sym_DOLLARalignof] = ACTIONS(1497), + [anon_sym_DOLLARextnameof] = ACTIONS(1497), + [anon_sym_DOLLARnameof] = ACTIONS(1497), + [anon_sym_DOLLARoffsetof] = ACTIONS(1497), + [anon_sym_DOLLARqnameof] = ACTIONS(1497), + [anon_sym_DOLLARvaconst] = ACTIONS(1497), + [anon_sym_DOLLARvaarg] = ACTIONS(1497), + [anon_sym_DOLLARvaref] = ACTIONS(1497), + [anon_sym_DOLLARvaexpr] = ACTIONS(1497), + [anon_sym_true] = ACTIONS(1497), + [anon_sym_false] = ACTIONS(1497), + [anon_sym_null] = ACTIONS(1497), + [anon_sym_DOLLARvacount] = ACTIONS(1497), + [anon_sym_DOLLARappend] = ACTIONS(1497), + [anon_sym_DOLLARconcat] = ACTIONS(1497), + [anon_sym_DOLLAReval] = ACTIONS(1497), + [anon_sym_DOLLARis_const] = ACTIONS(1497), + [anon_sym_DOLLARsizeof] = ACTIONS(1497), + [anon_sym_DOLLARstringify] = ACTIONS(1497), + [anon_sym_DOLLARand] = ACTIONS(1497), + [anon_sym_DOLLARdefined] = ACTIONS(1497), + [anon_sym_DOLLARembed] = ACTIONS(1497), + [anon_sym_DOLLARor] = ACTIONS(1497), + [anon_sym_DOLLARfeature] = ACTIONS(1497), + [anon_sym_DOLLARassignable] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_TILDE] = ACTIONS(1499), + [anon_sym_PLUS_PLUS] = ACTIONS(1499), + [anon_sym_DASH_DASH] = ACTIONS(1499), + [anon_sym_typeid] = ACTIONS(1497), + [anon_sym_LBRACE_PIPE] = ACTIONS(1499), + [anon_sym_void] = ACTIONS(1497), + [anon_sym_bool] = ACTIONS(1497), + [anon_sym_char] = ACTIONS(1497), + [anon_sym_ichar] = ACTIONS(1497), + [anon_sym_short] = ACTIONS(1497), + [anon_sym_ushort] = ACTIONS(1497), + [anon_sym_uint] = ACTIONS(1497), + [anon_sym_long] = ACTIONS(1497), + [anon_sym_ulong] = ACTIONS(1497), + [anon_sym_int128] = ACTIONS(1497), + [anon_sym_uint128] = ACTIONS(1497), + [anon_sym_float] = ACTIONS(1497), + [anon_sym_double] = ACTIONS(1497), + [anon_sym_float16] = ACTIONS(1497), + [anon_sym_bfloat16] = ACTIONS(1497), + [anon_sym_float128] = ACTIONS(1497), + [anon_sym_iptr] = ACTIONS(1497), + [anon_sym_uptr] = ACTIONS(1497), + [anon_sym_isz] = ACTIONS(1497), + [anon_sym_usz] = ACTIONS(1497), + [anon_sym_anyfault] = ACTIONS(1497), + [anon_sym_any] = ACTIONS(1497), + [anon_sym_DOLLARtypeof] = ACTIONS(1497), + [anon_sym_DOLLARtypefrom] = ACTIONS(1497), + [anon_sym_DOLLARvatype] = ACTIONS(1497), + [anon_sym_DOLLARevaltype] = ACTIONS(1497), + [sym_real_literal] = ACTIONS(1499), }, [546] = { [sym_line_comment] = STATE(546), [sym_doc_comment] = STATE(546), [sym_block_comment] = STATE(546), - [sym_ident] = ACTIONS(1588), - [sym_integer_literal] = ACTIONS(1590), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_DQUOTE] = ACTIONS(1590), - [anon_sym_BQUOTE] = ACTIONS(1590), - [sym_bytes_literal] = ACTIONS(1590), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1588), - [sym_at_ident] = ACTIONS(1590), - [sym_hash_ident] = ACTIONS(1590), - [sym_type_ident] = ACTIONS(1590), - [sym_ct_type_ident] = ACTIONS(1590), - [sym_const_ident] = ACTIONS(1588), - [sym_builtin] = ACTIONS(1590), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_AMP] = ACTIONS(1588), - [anon_sym_static] = ACTIONS(1588), - [anon_sym_tlocal] = ACTIONS(1588), - [anon_sym_SEMI] = ACTIONS(1590), - [anon_sym_fn] = ACTIONS(1588), - [anon_sym_LBRACE] = ACTIONS(1588), - [anon_sym_const] = ACTIONS(1588), - [anon_sym_var] = ACTIONS(1588), - [anon_sym_return] = ACTIONS(1588), - [anon_sym_continue] = ACTIONS(1588), - [anon_sym_break] = ACTIONS(1588), - [anon_sym_defer] = ACTIONS(1588), - [anon_sym_assert] = ACTIONS(1588), - [anon_sym_nextcase] = ACTIONS(1588), - [anon_sym_switch] = ACTIONS(1588), - [anon_sym_AMP_AMP] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1588), - [anon_sym_for] = ACTIONS(1588), - [anon_sym_foreach] = ACTIONS(1588), - [anon_sym_foreach_r] = ACTIONS(1588), - [anon_sym_while] = ACTIONS(1588), - [anon_sym_do] = ACTIONS(1588), - [anon_sym_int] = ACTIONS(1588), - [anon_sym_PLUS] = ACTIONS(1588), - [anon_sym_DASH] = ACTIONS(1588), - [anon_sym_STAR] = ACTIONS(1590), - [anon_sym_asm] = ACTIONS(1588), - [anon_sym_DOLLARassert] = ACTIONS(1588), - [anon_sym_DOLLARerror] = ACTIONS(1588), - [anon_sym_DOLLARecho] = ACTIONS(1588), - [anon_sym_DOLLARif] = ACTIONS(1588), - [anon_sym_DOLLARendif] = ACTIONS(1588), - [anon_sym_DOLLARelse] = ACTIONS(1588), - [anon_sym_DOLLARswitch] = ACTIONS(1588), - [anon_sym_DOLLARfor] = ACTIONS(1588), - [anon_sym_DOLLARforeach] = ACTIONS(1588), - [anon_sym_DOLLARalignof] = ACTIONS(1588), - [anon_sym_DOLLARextnameof] = ACTIONS(1588), - [anon_sym_DOLLARnameof] = ACTIONS(1588), - [anon_sym_DOLLARoffsetof] = ACTIONS(1588), - [anon_sym_DOLLARqnameof] = ACTIONS(1588), - [anon_sym_DOLLARvaconst] = ACTIONS(1588), - [anon_sym_DOLLARvaarg] = ACTIONS(1588), - [anon_sym_DOLLARvaref] = ACTIONS(1588), - [anon_sym_DOLLARvaexpr] = ACTIONS(1588), - [anon_sym_true] = ACTIONS(1588), - [anon_sym_false] = ACTIONS(1588), - [anon_sym_null] = ACTIONS(1588), - [anon_sym_DOLLARvacount] = ACTIONS(1588), - [anon_sym_DOLLARappend] = ACTIONS(1588), - [anon_sym_DOLLARconcat] = ACTIONS(1588), - [anon_sym_DOLLAReval] = ACTIONS(1588), - [anon_sym_DOLLARis_const] = ACTIONS(1588), - [anon_sym_DOLLARsizeof] = ACTIONS(1588), - [anon_sym_DOLLARstringify] = ACTIONS(1588), - [anon_sym_DOLLARand] = ACTIONS(1588), - [anon_sym_DOLLARdefined] = ACTIONS(1588), - [anon_sym_DOLLARembed] = ACTIONS(1588), - [anon_sym_DOLLARor] = ACTIONS(1588), - [anon_sym_DOLLARfeature] = ACTIONS(1588), - [anon_sym_DOLLARassignable] = ACTIONS(1588), - [anon_sym_BANG] = ACTIONS(1590), - [anon_sym_TILDE] = ACTIONS(1590), - [anon_sym_PLUS_PLUS] = ACTIONS(1590), - [anon_sym_DASH_DASH] = ACTIONS(1590), - [anon_sym_typeid] = ACTIONS(1588), - [anon_sym_LBRACE_PIPE] = ACTIONS(1590), - [anon_sym_void] = ACTIONS(1588), - [anon_sym_bool] = ACTIONS(1588), - [anon_sym_char] = ACTIONS(1588), - [anon_sym_ichar] = ACTIONS(1588), - [anon_sym_short] = ACTIONS(1588), - [anon_sym_ushort] = ACTIONS(1588), - [anon_sym_uint] = ACTIONS(1588), - [anon_sym_long] = ACTIONS(1588), - [anon_sym_ulong] = ACTIONS(1588), - [anon_sym_int128] = ACTIONS(1588), - [anon_sym_uint128] = ACTIONS(1588), - [anon_sym_float] = ACTIONS(1588), - [anon_sym_double] = ACTIONS(1588), - [anon_sym_float16] = ACTIONS(1588), - [anon_sym_bfloat16] = ACTIONS(1588), - [anon_sym_float128] = ACTIONS(1588), - [anon_sym_iptr] = ACTIONS(1588), - [anon_sym_uptr] = ACTIONS(1588), - [anon_sym_isz] = ACTIONS(1588), - [anon_sym_usz] = ACTIONS(1588), - [anon_sym_anyfault] = ACTIONS(1588), - [anon_sym_any] = ACTIONS(1588), - [anon_sym_DOLLARtypeof] = ACTIONS(1588), - [anon_sym_DOLLARtypefrom] = ACTIONS(1588), - [anon_sym_DOLLARvatype] = ACTIONS(1588), - [anon_sym_DOLLARevaltype] = ACTIONS(1588), - [sym_real_literal] = ACTIONS(1590), + [sym_ident] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1507), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1507), + [anon_sym_BQUOTE] = ACTIONS(1507), + [sym_bytes_literal] = ACTIONS(1507), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1505), + [sym_at_ident] = ACTIONS(1507), + [sym_hash_ident] = ACTIONS(1507), + [sym_type_ident] = ACTIONS(1507), + [sym_ct_type_ident] = ACTIONS(1507), + [sym_const_ident] = ACTIONS(1505), + [sym_builtin] = ACTIONS(1507), + [anon_sym_LPAREN] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_static] = ACTIONS(1505), + [anon_sym_tlocal] = ACTIONS(1505), + [anon_sym_SEMI] = ACTIONS(1507), + [anon_sym_fn] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_const] = ACTIONS(1505), + [anon_sym_var] = ACTIONS(1505), + [anon_sym_return] = ACTIONS(1505), + [anon_sym_continue] = ACTIONS(1505), + [anon_sym_break] = ACTIONS(1505), + [anon_sym_defer] = ACTIONS(1505), + [anon_sym_assert] = ACTIONS(1505), + [anon_sym_nextcase] = ACTIONS(1505), + [anon_sym_switch] = ACTIONS(1505), + [anon_sym_AMP_AMP] = ACTIONS(1507), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_for] = ACTIONS(1505), + [anon_sym_foreach] = ACTIONS(1505), + [anon_sym_foreach_r] = ACTIONS(1505), + [anon_sym_while] = ACTIONS(1505), + [anon_sym_do] = ACTIONS(1505), + [anon_sym_int] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1505), + [anon_sym_DASH] = ACTIONS(1505), + [anon_sym_STAR] = ACTIONS(1507), + [anon_sym_asm] = ACTIONS(1505), + [anon_sym_DOLLARassert] = ACTIONS(1505), + [anon_sym_DOLLARerror] = ACTIONS(1505), + [anon_sym_DOLLARecho] = ACTIONS(1505), + [anon_sym_DOLLARif] = ACTIONS(1505), + [anon_sym_DOLLARendif] = ACTIONS(1505), + [anon_sym_DOLLARelse] = ACTIONS(1505), + [anon_sym_DOLLARswitch] = ACTIONS(1505), + [anon_sym_DOLLARfor] = ACTIONS(1505), + [anon_sym_DOLLARforeach] = ACTIONS(1505), + [anon_sym_DOLLARalignof] = ACTIONS(1505), + [anon_sym_DOLLARextnameof] = ACTIONS(1505), + [anon_sym_DOLLARnameof] = ACTIONS(1505), + [anon_sym_DOLLARoffsetof] = ACTIONS(1505), + [anon_sym_DOLLARqnameof] = ACTIONS(1505), + [anon_sym_DOLLARvaconst] = ACTIONS(1505), + [anon_sym_DOLLARvaarg] = ACTIONS(1505), + [anon_sym_DOLLARvaref] = ACTIONS(1505), + [anon_sym_DOLLARvaexpr] = ACTIONS(1505), + [anon_sym_true] = ACTIONS(1505), + [anon_sym_false] = ACTIONS(1505), + [anon_sym_null] = ACTIONS(1505), + [anon_sym_DOLLARvacount] = ACTIONS(1505), + [anon_sym_DOLLARappend] = ACTIONS(1505), + [anon_sym_DOLLARconcat] = ACTIONS(1505), + [anon_sym_DOLLAReval] = ACTIONS(1505), + [anon_sym_DOLLARis_const] = ACTIONS(1505), + [anon_sym_DOLLARsizeof] = ACTIONS(1505), + [anon_sym_DOLLARstringify] = ACTIONS(1505), + [anon_sym_DOLLARand] = ACTIONS(1505), + [anon_sym_DOLLARdefined] = ACTIONS(1505), + [anon_sym_DOLLARembed] = ACTIONS(1505), + [anon_sym_DOLLARor] = ACTIONS(1505), + [anon_sym_DOLLARfeature] = ACTIONS(1505), + [anon_sym_DOLLARassignable] = ACTIONS(1505), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_TILDE] = ACTIONS(1507), + [anon_sym_PLUS_PLUS] = ACTIONS(1507), + [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_typeid] = ACTIONS(1505), + [anon_sym_LBRACE_PIPE] = ACTIONS(1507), + [anon_sym_void] = ACTIONS(1505), + [anon_sym_bool] = ACTIONS(1505), + [anon_sym_char] = ACTIONS(1505), + [anon_sym_ichar] = ACTIONS(1505), + [anon_sym_short] = ACTIONS(1505), + [anon_sym_ushort] = ACTIONS(1505), + [anon_sym_uint] = ACTIONS(1505), + [anon_sym_long] = ACTIONS(1505), + [anon_sym_ulong] = ACTIONS(1505), + [anon_sym_int128] = ACTIONS(1505), + [anon_sym_uint128] = ACTIONS(1505), + [anon_sym_float] = ACTIONS(1505), + [anon_sym_double] = ACTIONS(1505), + [anon_sym_float16] = ACTIONS(1505), + [anon_sym_bfloat16] = ACTIONS(1505), + [anon_sym_float128] = ACTIONS(1505), + [anon_sym_iptr] = ACTIONS(1505), + [anon_sym_uptr] = ACTIONS(1505), + [anon_sym_isz] = ACTIONS(1505), + [anon_sym_usz] = ACTIONS(1505), + [anon_sym_anyfault] = ACTIONS(1505), + [anon_sym_any] = ACTIONS(1505), + [anon_sym_DOLLARtypeof] = ACTIONS(1505), + [anon_sym_DOLLARtypefrom] = ACTIONS(1505), + [anon_sym_DOLLARvatype] = ACTIONS(1505), + [anon_sym_DOLLARevaltype] = ACTIONS(1505), + [sym_real_literal] = ACTIONS(1507), }, [547] = { [sym_line_comment] = STATE(547), [sym_doc_comment] = STATE(547), [sym_block_comment] = STATE(547), - [sym_ident] = ACTIONS(1410), - [sym_integer_literal] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1412), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_BQUOTE] = ACTIONS(1412), - [sym_bytes_literal] = ACTIONS(1412), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1410), - [sym_at_ident] = ACTIONS(1412), - [sym_hash_ident] = ACTIONS(1412), - [sym_type_ident] = ACTIONS(1412), - [sym_ct_type_ident] = ACTIONS(1412), - [sym_const_ident] = ACTIONS(1410), - [sym_builtin] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1410), - [anon_sym_static] = ACTIONS(1410), - [anon_sym_tlocal] = ACTIONS(1410), - [anon_sym_SEMI] = ACTIONS(1412), - [anon_sym_fn] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_var] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_defer] = ACTIONS(1410), - [anon_sym_assert] = ACTIONS(1410), - [anon_sym_nextcase] = ACTIONS(1410), - [anon_sym_switch] = ACTIONS(1410), - [anon_sym_AMP_AMP] = ACTIONS(1412), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_foreach] = ACTIONS(1410), - [anon_sym_foreach_r] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [anon_sym_do] = ACTIONS(1410), - [anon_sym_int] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1412), - [anon_sym_asm] = ACTIONS(1410), - [anon_sym_DOLLARassert] = ACTIONS(1410), - [anon_sym_DOLLARerror] = ACTIONS(1410), - [anon_sym_DOLLARecho] = ACTIONS(1410), - [anon_sym_DOLLARif] = ACTIONS(1410), - [anon_sym_DOLLARendif] = ACTIONS(1410), - [anon_sym_DOLLARelse] = ACTIONS(1410), - [anon_sym_DOLLARswitch] = ACTIONS(1410), - [anon_sym_DOLLARfor] = ACTIONS(1410), - [anon_sym_DOLLARforeach] = ACTIONS(1410), - [anon_sym_DOLLARalignof] = ACTIONS(1410), - [anon_sym_DOLLARextnameof] = ACTIONS(1410), - [anon_sym_DOLLARnameof] = ACTIONS(1410), - [anon_sym_DOLLARoffsetof] = ACTIONS(1410), - [anon_sym_DOLLARqnameof] = ACTIONS(1410), - [anon_sym_DOLLARvaconst] = ACTIONS(1410), - [anon_sym_DOLLARvaarg] = ACTIONS(1410), - [anon_sym_DOLLARvaref] = ACTIONS(1410), - [anon_sym_DOLLARvaexpr] = ACTIONS(1410), - [anon_sym_true] = ACTIONS(1410), - [anon_sym_false] = ACTIONS(1410), - [anon_sym_null] = ACTIONS(1410), - [anon_sym_DOLLARvacount] = ACTIONS(1410), - [anon_sym_DOLLARappend] = ACTIONS(1410), - [anon_sym_DOLLARconcat] = ACTIONS(1410), - [anon_sym_DOLLAReval] = ACTIONS(1410), - [anon_sym_DOLLARis_const] = ACTIONS(1410), - [anon_sym_DOLLARsizeof] = ACTIONS(1410), - [anon_sym_DOLLARstringify] = ACTIONS(1410), - [anon_sym_DOLLARand] = ACTIONS(1410), - [anon_sym_DOLLARdefined] = ACTIONS(1410), - [anon_sym_DOLLARembed] = ACTIONS(1410), - [anon_sym_DOLLARor] = ACTIONS(1410), - [anon_sym_DOLLARfeature] = ACTIONS(1410), - [anon_sym_DOLLARassignable] = ACTIONS(1410), - [anon_sym_BANG] = ACTIONS(1412), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_PLUS_PLUS] = ACTIONS(1412), - [anon_sym_DASH_DASH] = ACTIONS(1412), - [anon_sym_typeid] = ACTIONS(1410), - [anon_sym_LBRACE_PIPE] = ACTIONS(1412), - [anon_sym_void] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_ichar] = ACTIONS(1410), - [anon_sym_short] = ACTIONS(1410), - [anon_sym_ushort] = ACTIONS(1410), - [anon_sym_uint] = ACTIONS(1410), - [anon_sym_long] = ACTIONS(1410), - [anon_sym_ulong] = ACTIONS(1410), - [anon_sym_int128] = ACTIONS(1410), - [anon_sym_uint128] = ACTIONS(1410), - [anon_sym_float] = ACTIONS(1410), - [anon_sym_double] = ACTIONS(1410), - [anon_sym_float16] = ACTIONS(1410), - [anon_sym_bfloat16] = ACTIONS(1410), - [anon_sym_float128] = ACTIONS(1410), - [anon_sym_iptr] = ACTIONS(1410), - [anon_sym_uptr] = ACTIONS(1410), - [anon_sym_isz] = ACTIONS(1410), - [anon_sym_usz] = ACTIONS(1410), - [anon_sym_anyfault] = ACTIONS(1410), - [anon_sym_any] = ACTIONS(1410), - [anon_sym_DOLLARtypeof] = ACTIONS(1410), - [anon_sym_DOLLARtypefrom] = ACTIONS(1410), - [anon_sym_DOLLARvatype] = ACTIONS(1410), - [anon_sym_DOLLARevaltype] = ACTIONS(1410), - [sym_real_literal] = ACTIONS(1412), + [sym_ident] = ACTIONS(1509), + [sym_integer_literal] = ACTIONS(1511), + [anon_sym_SQUOTE] = ACTIONS(1511), + [anon_sym_DQUOTE] = ACTIONS(1511), + [anon_sym_BQUOTE] = ACTIONS(1511), + [sym_bytes_literal] = ACTIONS(1511), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1509), + [sym_at_ident] = ACTIONS(1511), + [sym_hash_ident] = ACTIONS(1511), + [sym_type_ident] = ACTIONS(1511), + [sym_ct_type_ident] = ACTIONS(1511), + [sym_const_ident] = ACTIONS(1509), + [sym_builtin] = ACTIONS(1511), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_tlocal] = ACTIONS(1509), + [anon_sym_SEMI] = ACTIONS(1511), + [anon_sym_fn] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1509), + [anon_sym_const] = ACTIONS(1509), + [anon_sym_var] = ACTIONS(1509), + [anon_sym_return] = ACTIONS(1509), + [anon_sym_continue] = ACTIONS(1509), + [anon_sym_break] = ACTIONS(1509), + [anon_sym_defer] = ACTIONS(1509), + [anon_sym_assert] = ACTIONS(1509), + [anon_sym_nextcase] = ACTIONS(1509), + [anon_sym_switch] = ACTIONS(1509), + [anon_sym_AMP_AMP] = ACTIONS(1511), + [anon_sym_if] = ACTIONS(1509), + [anon_sym_for] = ACTIONS(1509), + [anon_sym_foreach] = ACTIONS(1509), + [anon_sym_foreach_r] = ACTIONS(1509), + [anon_sym_while] = ACTIONS(1509), + [anon_sym_do] = ACTIONS(1509), + [anon_sym_int] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(1511), + [anon_sym_asm] = ACTIONS(1509), + [anon_sym_DOLLARassert] = ACTIONS(1509), + [anon_sym_DOLLARerror] = ACTIONS(1509), + [anon_sym_DOLLARecho] = ACTIONS(1509), + [anon_sym_DOLLARif] = ACTIONS(1509), + [anon_sym_DOLLARendif] = ACTIONS(1509), + [anon_sym_DOLLARelse] = ACTIONS(1509), + [anon_sym_DOLLARswitch] = ACTIONS(1509), + [anon_sym_DOLLARfor] = ACTIONS(1509), + [anon_sym_DOLLARforeach] = ACTIONS(1509), + [anon_sym_DOLLARalignof] = ACTIONS(1509), + [anon_sym_DOLLARextnameof] = ACTIONS(1509), + [anon_sym_DOLLARnameof] = ACTIONS(1509), + [anon_sym_DOLLARoffsetof] = ACTIONS(1509), + [anon_sym_DOLLARqnameof] = ACTIONS(1509), + [anon_sym_DOLLARvaconst] = ACTIONS(1509), + [anon_sym_DOLLARvaarg] = ACTIONS(1509), + [anon_sym_DOLLARvaref] = ACTIONS(1509), + [anon_sym_DOLLARvaexpr] = ACTIONS(1509), + [anon_sym_true] = ACTIONS(1509), + [anon_sym_false] = ACTIONS(1509), + [anon_sym_null] = ACTIONS(1509), + [anon_sym_DOLLARvacount] = ACTIONS(1509), + [anon_sym_DOLLARappend] = ACTIONS(1509), + [anon_sym_DOLLARconcat] = ACTIONS(1509), + [anon_sym_DOLLAReval] = ACTIONS(1509), + [anon_sym_DOLLARis_const] = ACTIONS(1509), + [anon_sym_DOLLARsizeof] = ACTIONS(1509), + [anon_sym_DOLLARstringify] = ACTIONS(1509), + [anon_sym_DOLLARand] = ACTIONS(1509), + [anon_sym_DOLLARdefined] = ACTIONS(1509), + [anon_sym_DOLLARembed] = ACTIONS(1509), + [anon_sym_DOLLARor] = ACTIONS(1509), + [anon_sym_DOLLARfeature] = ACTIONS(1509), + [anon_sym_DOLLARassignable] = ACTIONS(1509), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_PLUS_PLUS] = ACTIONS(1511), + [anon_sym_DASH_DASH] = ACTIONS(1511), + [anon_sym_typeid] = ACTIONS(1509), + [anon_sym_LBRACE_PIPE] = ACTIONS(1511), + [anon_sym_void] = ACTIONS(1509), + [anon_sym_bool] = ACTIONS(1509), + [anon_sym_char] = ACTIONS(1509), + [anon_sym_ichar] = ACTIONS(1509), + [anon_sym_short] = ACTIONS(1509), + [anon_sym_ushort] = ACTIONS(1509), + [anon_sym_uint] = ACTIONS(1509), + [anon_sym_long] = ACTIONS(1509), + [anon_sym_ulong] = ACTIONS(1509), + [anon_sym_int128] = ACTIONS(1509), + [anon_sym_uint128] = ACTIONS(1509), + [anon_sym_float] = ACTIONS(1509), + [anon_sym_double] = ACTIONS(1509), + [anon_sym_float16] = ACTIONS(1509), + [anon_sym_bfloat16] = ACTIONS(1509), + [anon_sym_float128] = ACTIONS(1509), + [anon_sym_iptr] = ACTIONS(1509), + [anon_sym_uptr] = ACTIONS(1509), + [anon_sym_isz] = ACTIONS(1509), + [anon_sym_usz] = ACTIONS(1509), + [anon_sym_anyfault] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_DOLLARtypeof] = ACTIONS(1509), + [anon_sym_DOLLARtypefrom] = ACTIONS(1509), + [anon_sym_DOLLARvatype] = ACTIONS(1509), + [anon_sym_DOLLARevaltype] = ACTIONS(1509), + [sym_real_literal] = ACTIONS(1511), }, [548] = { [sym_line_comment] = STATE(548), [sym_doc_comment] = STATE(548), [sym_block_comment] = STATE(548), - [sym_ident] = ACTIONS(1648), - [sym_integer_literal] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1650), - [anon_sym_BQUOTE] = ACTIONS(1650), - [sym_bytes_literal] = ACTIONS(1650), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1648), - [sym_at_ident] = ACTIONS(1650), - [sym_hash_ident] = ACTIONS(1650), - [sym_type_ident] = ACTIONS(1650), - [sym_ct_type_ident] = ACTIONS(1650), - [sym_const_ident] = ACTIONS(1648), - [sym_builtin] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_AMP] = ACTIONS(1648), - [anon_sym_static] = ACTIONS(1648), - [anon_sym_tlocal] = ACTIONS(1648), - [anon_sym_SEMI] = ACTIONS(1650), - [anon_sym_fn] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_const] = ACTIONS(1648), - [anon_sym_var] = ACTIONS(1648), - [anon_sym_return] = ACTIONS(1648), - [anon_sym_continue] = ACTIONS(1648), - [anon_sym_break] = ACTIONS(1648), - [anon_sym_defer] = ACTIONS(1648), - [anon_sym_assert] = ACTIONS(1648), - [anon_sym_nextcase] = ACTIONS(1648), - [anon_sym_switch] = ACTIONS(1648), - [anon_sym_AMP_AMP] = ACTIONS(1650), - [anon_sym_if] = ACTIONS(1648), - [anon_sym_for] = ACTIONS(1648), - [anon_sym_foreach] = ACTIONS(1648), - [anon_sym_foreach_r] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1648), - [anon_sym_do] = ACTIONS(1648), - [anon_sym_int] = ACTIONS(1648), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_STAR] = ACTIONS(1650), - [anon_sym_asm] = ACTIONS(1648), - [anon_sym_DOLLARassert] = ACTIONS(1648), - [anon_sym_DOLLARerror] = ACTIONS(1648), - [anon_sym_DOLLARecho] = ACTIONS(1648), - [anon_sym_DOLLARif] = ACTIONS(1648), - [anon_sym_DOLLARendif] = ACTIONS(1648), - [anon_sym_DOLLARelse] = ACTIONS(1648), - [anon_sym_DOLLARswitch] = ACTIONS(1648), - [anon_sym_DOLLARfor] = ACTIONS(1648), - [anon_sym_DOLLARforeach] = ACTIONS(1648), - [anon_sym_DOLLARalignof] = ACTIONS(1648), - [anon_sym_DOLLARextnameof] = ACTIONS(1648), - [anon_sym_DOLLARnameof] = ACTIONS(1648), - [anon_sym_DOLLARoffsetof] = ACTIONS(1648), - [anon_sym_DOLLARqnameof] = ACTIONS(1648), - [anon_sym_DOLLARvaconst] = ACTIONS(1648), - [anon_sym_DOLLARvaarg] = ACTIONS(1648), - [anon_sym_DOLLARvaref] = ACTIONS(1648), - [anon_sym_DOLLARvaexpr] = ACTIONS(1648), - [anon_sym_true] = ACTIONS(1648), - [anon_sym_false] = ACTIONS(1648), - [anon_sym_null] = ACTIONS(1648), - [anon_sym_DOLLARvacount] = ACTIONS(1648), - [anon_sym_DOLLARappend] = ACTIONS(1648), - [anon_sym_DOLLARconcat] = ACTIONS(1648), - [anon_sym_DOLLAReval] = ACTIONS(1648), - [anon_sym_DOLLARis_const] = ACTIONS(1648), - [anon_sym_DOLLARsizeof] = ACTIONS(1648), - [anon_sym_DOLLARstringify] = ACTIONS(1648), - [anon_sym_DOLLARand] = ACTIONS(1648), - [anon_sym_DOLLARdefined] = ACTIONS(1648), - [anon_sym_DOLLARembed] = ACTIONS(1648), - [anon_sym_DOLLARor] = ACTIONS(1648), - [anon_sym_DOLLARfeature] = ACTIONS(1648), - [anon_sym_DOLLARassignable] = ACTIONS(1648), - [anon_sym_BANG] = ACTIONS(1650), - [anon_sym_TILDE] = ACTIONS(1650), - [anon_sym_PLUS_PLUS] = ACTIONS(1650), - [anon_sym_DASH_DASH] = ACTIONS(1650), - [anon_sym_typeid] = ACTIONS(1648), - [anon_sym_LBRACE_PIPE] = ACTIONS(1650), - [anon_sym_void] = ACTIONS(1648), - [anon_sym_bool] = ACTIONS(1648), - [anon_sym_char] = ACTIONS(1648), - [anon_sym_ichar] = ACTIONS(1648), - [anon_sym_short] = ACTIONS(1648), - [anon_sym_ushort] = ACTIONS(1648), - [anon_sym_uint] = ACTIONS(1648), - [anon_sym_long] = ACTIONS(1648), - [anon_sym_ulong] = ACTIONS(1648), - [anon_sym_int128] = ACTIONS(1648), - [anon_sym_uint128] = ACTIONS(1648), - [anon_sym_float] = ACTIONS(1648), - [anon_sym_double] = ACTIONS(1648), - [anon_sym_float16] = ACTIONS(1648), - [anon_sym_bfloat16] = ACTIONS(1648), - [anon_sym_float128] = ACTIONS(1648), - [anon_sym_iptr] = ACTIONS(1648), - [anon_sym_uptr] = ACTIONS(1648), - [anon_sym_isz] = ACTIONS(1648), - [anon_sym_usz] = ACTIONS(1648), - [anon_sym_anyfault] = ACTIONS(1648), - [anon_sym_any] = ACTIONS(1648), - [anon_sym_DOLLARtypeof] = ACTIONS(1648), - [anon_sym_DOLLARtypefrom] = ACTIONS(1648), - [anon_sym_DOLLARvatype] = ACTIONS(1648), - [anon_sym_DOLLARevaltype] = ACTIONS(1648), - [sym_real_literal] = ACTIONS(1650), + [sym_ident] = ACTIONS(1533), + [sym_integer_literal] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(1535), + [anon_sym_DQUOTE] = ACTIONS(1535), + [anon_sym_BQUOTE] = ACTIONS(1535), + [sym_bytes_literal] = ACTIONS(1535), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1533), + [sym_at_ident] = ACTIONS(1535), + [sym_hash_ident] = ACTIONS(1535), + [sym_type_ident] = ACTIONS(1535), + [sym_ct_type_ident] = ACTIONS(1535), + [sym_const_ident] = ACTIONS(1533), + [sym_builtin] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_AMP] = ACTIONS(1533), + [anon_sym_static] = ACTIONS(1533), + [anon_sym_tlocal] = ACTIONS(1533), + [anon_sym_SEMI] = ACTIONS(1535), + [anon_sym_fn] = ACTIONS(1533), + [anon_sym_LBRACE] = ACTIONS(1533), + [anon_sym_const] = ACTIONS(1533), + [anon_sym_var] = ACTIONS(1533), + [anon_sym_return] = ACTIONS(1533), + [anon_sym_continue] = ACTIONS(1533), + [anon_sym_break] = ACTIONS(1533), + [anon_sym_defer] = ACTIONS(1533), + [anon_sym_assert] = ACTIONS(1533), + [anon_sym_nextcase] = ACTIONS(1533), + [anon_sym_switch] = ACTIONS(1533), + [anon_sym_AMP_AMP] = ACTIONS(1535), + [anon_sym_if] = ACTIONS(1533), + [anon_sym_for] = ACTIONS(1533), + [anon_sym_foreach] = ACTIONS(1533), + [anon_sym_foreach_r] = ACTIONS(1533), + [anon_sym_while] = ACTIONS(1533), + [anon_sym_do] = ACTIONS(1533), + [anon_sym_int] = ACTIONS(1533), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_STAR] = ACTIONS(1535), + [anon_sym_asm] = ACTIONS(1533), + [anon_sym_DOLLARassert] = ACTIONS(1533), + [anon_sym_DOLLARerror] = ACTIONS(1533), + [anon_sym_DOLLARecho] = ACTIONS(1533), + [anon_sym_DOLLARif] = ACTIONS(1533), + [anon_sym_DOLLARendif] = ACTIONS(1533), + [anon_sym_DOLLARelse] = ACTIONS(1533), + [anon_sym_DOLLARswitch] = ACTIONS(1533), + [anon_sym_DOLLARfor] = ACTIONS(1533), + [anon_sym_DOLLARforeach] = ACTIONS(1533), + [anon_sym_DOLLARalignof] = ACTIONS(1533), + [anon_sym_DOLLARextnameof] = ACTIONS(1533), + [anon_sym_DOLLARnameof] = ACTIONS(1533), + [anon_sym_DOLLARoffsetof] = ACTIONS(1533), + [anon_sym_DOLLARqnameof] = ACTIONS(1533), + [anon_sym_DOLLARvaconst] = ACTIONS(1533), + [anon_sym_DOLLARvaarg] = ACTIONS(1533), + [anon_sym_DOLLARvaref] = ACTIONS(1533), + [anon_sym_DOLLARvaexpr] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(1533), + [anon_sym_false] = ACTIONS(1533), + [anon_sym_null] = ACTIONS(1533), + [anon_sym_DOLLARvacount] = ACTIONS(1533), + [anon_sym_DOLLARappend] = ACTIONS(1533), + [anon_sym_DOLLARconcat] = ACTIONS(1533), + [anon_sym_DOLLAReval] = ACTIONS(1533), + [anon_sym_DOLLARis_const] = ACTIONS(1533), + [anon_sym_DOLLARsizeof] = ACTIONS(1533), + [anon_sym_DOLLARstringify] = ACTIONS(1533), + [anon_sym_DOLLARand] = ACTIONS(1533), + [anon_sym_DOLLARdefined] = ACTIONS(1533), + [anon_sym_DOLLARembed] = ACTIONS(1533), + [anon_sym_DOLLARor] = ACTIONS(1533), + [anon_sym_DOLLARfeature] = ACTIONS(1533), + [anon_sym_DOLLARassignable] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1535), + [anon_sym_TILDE] = ACTIONS(1535), + [anon_sym_PLUS_PLUS] = ACTIONS(1535), + [anon_sym_DASH_DASH] = ACTIONS(1535), + [anon_sym_typeid] = ACTIONS(1533), + [anon_sym_LBRACE_PIPE] = ACTIONS(1535), + [anon_sym_void] = ACTIONS(1533), + [anon_sym_bool] = ACTIONS(1533), + [anon_sym_char] = ACTIONS(1533), + [anon_sym_ichar] = ACTIONS(1533), + [anon_sym_short] = ACTIONS(1533), + [anon_sym_ushort] = ACTIONS(1533), + [anon_sym_uint] = ACTIONS(1533), + [anon_sym_long] = ACTIONS(1533), + [anon_sym_ulong] = ACTIONS(1533), + [anon_sym_int128] = ACTIONS(1533), + [anon_sym_uint128] = ACTIONS(1533), + [anon_sym_float] = ACTIONS(1533), + [anon_sym_double] = ACTIONS(1533), + [anon_sym_float16] = ACTIONS(1533), + [anon_sym_bfloat16] = ACTIONS(1533), + [anon_sym_float128] = ACTIONS(1533), + [anon_sym_iptr] = ACTIONS(1533), + [anon_sym_uptr] = ACTIONS(1533), + [anon_sym_isz] = ACTIONS(1533), + [anon_sym_usz] = ACTIONS(1533), + [anon_sym_anyfault] = ACTIONS(1533), + [anon_sym_any] = ACTIONS(1533), + [anon_sym_DOLLARtypeof] = ACTIONS(1533), + [anon_sym_DOLLARtypefrom] = ACTIONS(1533), + [anon_sym_DOLLARvatype] = ACTIONS(1533), + [anon_sym_DOLLARevaltype] = ACTIONS(1533), + [sym_real_literal] = ACTIONS(1535), }, [549] = { [sym_line_comment] = STATE(549), [sym_doc_comment] = STATE(549), [sym_block_comment] = STATE(549), - [sym_ident] = ACTIONS(1584), - [sym_integer_literal] = ACTIONS(1586), - [anon_sym_SQUOTE] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1586), - [anon_sym_BQUOTE] = ACTIONS(1586), - [sym_bytes_literal] = ACTIONS(1586), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1584), - [sym_at_ident] = ACTIONS(1586), - [sym_hash_ident] = ACTIONS(1586), - [sym_type_ident] = ACTIONS(1586), - [sym_ct_type_ident] = ACTIONS(1586), - [sym_const_ident] = ACTIONS(1584), - [sym_builtin] = ACTIONS(1586), - [anon_sym_LPAREN] = ACTIONS(1586), - [anon_sym_AMP] = ACTIONS(1584), - [anon_sym_static] = ACTIONS(1584), - [anon_sym_tlocal] = ACTIONS(1584), - [anon_sym_SEMI] = ACTIONS(1586), - [anon_sym_fn] = ACTIONS(1584), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_const] = ACTIONS(1584), - [anon_sym_var] = ACTIONS(1584), - [anon_sym_return] = ACTIONS(1584), - [anon_sym_continue] = ACTIONS(1584), - [anon_sym_break] = ACTIONS(1584), - [anon_sym_defer] = ACTIONS(1584), - [anon_sym_assert] = ACTIONS(1584), - [anon_sym_nextcase] = ACTIONS(1584), - [anon_sym_switch] = ACTIONS(1584), - [anon_sym_AMP_AMP] = ACTIONS(1586), - [anon_sym_if] = ACTIONS(1584), - [anon_sym_for] = ACTIONS(1584), - [anon_sym_foreach] = ACTIONS(1584), - [anon_sym_foreach_r] = ACTIONS(1584), - [anon_sym_while] = ACTIONS(1584), - [anon_sym_do] = ACTIONS(1584), - [anon_sym_int] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1584), - [anon_sym_DASH] = ACTIONS(1584), - [anon_sym_STAR] = ACTIONS(1586), - [anon_sym_asm] = ACTIONS(1584), - [anon_sym_DOLLARassert] = ACTIONS(1584), - [anon_sym_DOLLARerror] = ACTIONS(1584), - [anon_sym_DOLLARecho] = ACTIONS(1584), - [anon_sym_DOLLARif] = ACTIONS(1584), - [anon_sym_DOLLARendif] = ACTIONS(1584), - [anon_sym_DOLLARelse] = ACTIONS(1584), - [anon_sym_DOLLARswitch] = ACTIONS(1584), - [anon_sym_DOLLARfor] = ACTIONS(1584), - [anon_sym_DOLLARforeach] = ACTIONS(1584), - [anon_sym_DOLLARalignof] = ACTIONS(1584), - [anon_sym_DOLLARextnameof] = ACTIONS(1584), - [anon_sym_DOLLARnameof] = ACTIONS(1584), - [anon_sym_DOLLARoffsetof] = ACTIONS(1584), - [anon_sym_DOLLARqnameof] = ACTIONS(1584), - [anon_sym_DOLLARvaconst] = ACTIONS(1584), - [anon_sym_DOLLARvaarg] = ACTIONS(1584), - [anon_sym_DOLLARvaref] = ACTIONS(1584), - [anon_sym_DOLLARvaexpr] = ACTIONS(1584), - [anon_sym_true] = ACTIONS(1584), - [anon_sym_false] = ACTIONS(1584), - [anon_sym_null] = ACTIONS(1584), - [anon_sym_DOLLARvacount] = ACTIONS(1584), - [anon_sym_DOLLARappend] = ACTIONS(1584), - [anon_sym_DOLLARconcat] = ACTIONS(1584), - [anon_sym_DOLLAReval] = ACTIONS(1584), - [anon_sym_DOLLARis_const] = ACTIONS(1584), - [anon_sym_DOLLARsizeof] = ACTIONS(1584), - [anon_sym_DOLLARstringify] = ACTIONS(1584), - [anon_sym_DOLLARand] = ACTIONS(1584), - [anon_sym_DOLLARdefined] = ACTIONS(1584), - [anon_sym_DOLLARembed] = ACTIONS(1584), - [anon_sym_DOLLARor] = ACTIONS(1584), - [anon_sym_DOLLARfeature] = ACTIONS(1584), - [anon_sym_DOLLARassignable] = ACTIONS(1584), - [anon_sym_BANG] = ACTIONS(1586), - [anon_sym_TILDE] = ACTIONS(1586), - [anon_sym_PLUS_PLUS] = ACTIONS(1586), - [anon_sym_DASH_DASH] = ACTIONS(1586), - [anon_sym_typeid] = ACTIONS(1584), - [anon_sym_LBRACE_PIPE] = ACTIONS(1586), - [anon_sym_void] = ACTIONS(1584), - [anon_sym_bool] = ACTIONS(1584), - [anon_sym_char] = ACTIONS(1584), - [anon_sym_ichar] = ACTIONS(1584), - [anon_sym_short] = ACTIONS(1584), - [anon_sym_ushort] = ACTIONS(1584), - [anon_sym_uint] = ACTIONS(1584), - [anon_sym_long] = ACTIONS(1584), - [anon_sym_ulong] = ACTIONS(1584), - [anon_sym_int128] = ACTIONS(1584), - [anon_sym_uint128] = ACTIONS(1584), - [anon_sym_float] = ACTIONS(1584), - [anon_sym_double] = ACTIONS(1584), - [anon_sym_float16] = ACTIONS(1584), - [anon_sym_bfloat16] = ACTIONS(1584), - [anon_sym_float128] = ACTIONS(1584), - [anon_sym_iptr] = ACTIONS(1584), - [anon_sym_uptr] = ACTIONS(1584), - [anon_sym_isz] = ACTIONS(1584), - [anon_sym_usz] = ACTIONS(1584), - [anon_sym_anyfault] = ACTIONS(1584), - [anon_sym_any] = ACTIONS(1584), - [anon_sym_DOLLARtypeof] = ACTIONS(1584), - [anon_sym_DOLLARtypefrom] = ACTIONS(1584), - [anon_sym_DOLLARvatype] = ACTIONS(1584), - [anon_sym_DOLLARevaltype] = ACTIONS(1584), - [sym_real_literal] = ACTIONS(1586), + [sym_ident] = ACTIONS(1355), + [sym_integer_literal] = ACTIONS(1357), + [anon_sym_SQUOTE] = ACTIONS(1357), + [anon_sym_DQUOTE] = ACTIONS(1357), + [anon_sym_BQUOTE] = ACTIONS(1357), + [sym_bytes_literal] = ACTIONS(1357), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1355), + [sym_at_ident] = ACTIONS(1357), + [sym_hash_ident] = ACTIONS(1357), + [sym_type_ident] = ACTIONS(1357), + [sym_ct_type_ident] = ACTIONS(1357), + [sym_const_ident] = ACTIONS(1355), + [sym_builtin] = ACTIONS(1357), + [anon_sym_LPAREN] = ACTIONS(1357), + [anon_sym_AMP] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1355), + [anon_sym_tlocal] = ACTIONS(1355), + [anon_sym_SEMI] = ACTIONS(1357), + [anon_sym_fn] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_const] = ACTIONS(1355), + [anon_sym_var] = ACTIONS(1355), + [anon_sym_return] = ACTIONS(1355), + [anon_sym_continue] = ACTIONS(1355), + [anon_sym_break] = ACTIONS(1355), + [anon_sym_defer] = ACTIONS(1355), + [anon_sym_assert] = ACTIONS(1355), + [anon_sym_nextcase] = ACTIONS(1355), + [anon_sym_switch] = ACTIONS(1355), + [anon_sym_AMP_AMP] = ACTIONS(1357), + [anon_sym_if] = ACTIONS(1355), + [anon_sym_else] = ACTIONS(1355), + [anon_sym_for] = ACTIONS(1355), + [anon_sym_foreach] = ACTIONS(1355), + [anon_sym_foreach_r] = ACTIONS(1355), + [anon_sym_while] = ACTIONS(1355), + [anon_sym_do] = ACTIONS(1355), + [anon_sym_int] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1355), + [anon_sym_DASH] = ACTIONS(1355), + [anon_sym_STAR] = ACTIONS(1357), + [anon_sym_asm] = ACTIONS(1355), + [anon_sym_DOLLARassert] = ACTIONS(1355), + [anon_sym_DOLLARerror] = ACTIONS(1355), + [anon_sym_DOLLARecho] = ACTIONS(1355), + [anon_sym_DOLLARif] = ACTIONS(1355), + [anon_sym_DOLLARswitch] = ACTIONS(1355), + [anon_sym_DOLLARfor] = ACTIONS(1355), + [anon_sym_DOLLARforeach] = ACTIONS(1355), + [anon_sym_DOLLARendforeach] = ACTIONS(1355), + [anon_sym_DOLLARalignof] = ACTIONS(1355), + [anon_sym_DOLLARextnameof] = ACTIONS(1355), + [anon_sym_DOLLARnameof] = ACTIONS(1355), + [anon_sym_DOLLARoffsetof] = ACTIONS(1355), + [anon_sym_DOLLARqnameof] = ACTIONS(1355), + [anon_sym_DOLLARvaconst] = ACTIONS(1355), + [anon_sym_DOLLARvaarg] = ACTIONS(1355), + [anon_sym_DOLLARvaref] = ACTIONS(1355), + [anon_sym_DOLLARvaexpr] = ACTIONS(1355), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), + [anon_sym_null] = ACTIONS(1355), + [anon_sym_DOLLARvacount] = ACTIONS(1355), + [anon_sym_DOLLARappend] = ACTIONS(1355), + [anon_sym_DOLLARconcat] = ACTIONS(1355), + [anon_sym_DOLLAReval] = ACTIONS(1355), + [anon_sym_DOLLARis_const] = ACTIONS(1355), + [anon_sym_DOLLARsizeof] = ACTIONS(1355), + [anon_sym_DOLLARstringify] = ACTIONS(1355), + [anon_sym_DOLLARand] = ACTIONS(1355), + [anon_sym_DOLLARdefined] = ACTIONS(1355), + [anon_sym_DOLLARembed] = ACTIONS(1355), + [anon_sym_DOLLARor] = ACTIONS(1355), + [anon_sym_DOLLARfeature] = ACTIONS(1355), + [anon_sym_DOLLARassignable] = ACTIONS(1355), + [anon_sym_BANG] = ACTIONS(1357), + [anon_sym_TILDE] = ACTIONS(1357), + [anon_sym_PLUS_PLUS] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1357), + [anon_sym_typeid] = ACTIONS(1355), + [anon_sym_LBRACE_PIPE] = ACTIONS(1357), + [anon_sym_void] = ACTIONS(1355), + [anon_sym_bool] = ACTIONS(1355), + [anon_sym_char] = ACTIONS(1355), + [anon_sym_ichar] = ACTIONS(1355), + [anon_sym_short] = ACTIONS(1355), + [anon_sym_ushort] = ACTIONS(1355), + [anon_sym_uint] = ACTIONS(1355), + [anon_sym_long] = ACTIONS(1355), + [anon_sym_ulong] = ACTIONS(1355), + [anon_sym_int128] = ACTIONS(1355), + [anon_sym_uint128] = ACTIONS(1355), + [anon_sym_float] = ACTIONS(1355), + [anon_sym_double] = ACTIONS(1355), + [anon_sym_float16] = ACTIONS(1355), + [anon_sym_bfloat16] = ACTIONS(1355), + [anon_sym_float128] = ACTIONS(1355), + [anon_sym_iptr] = ACTIONS(1355), + [anon_sym_uptr] = ACTIONS(1355), + [anon_sym_isz] = ACTIONS(1355), + [anon_sym_usz] = ACTIONS(1355), + [anon_sym_anyfault] = ACTIONS(1355), + [anon_sym_any] = ACTIONS(1355), + [anon_sym_DOLLARtypeof] = ACTIONS(1355), + [anon_sym_DOLLARtypefrom] = ACTIONS(1355), + [anon_sym_DOLLARvatype] = ACTIONS(1355), + [anon_sym_DOLLARevaltype] = ACTIONS(1355), + [sym_real_literal] = ACTIONS(1357), }, [550] = { [sym_line_comment] = STATE(550), [sym_doc_comment] = STATE(550), [sym_block_comment] = STATE(550), - [sym_ident] = ACTIONS(1436), - [sym_integer_literal] = ACTIONS(1438), - [anon_sym_SQUOTE] = ACTIONS(1438), - [anon_sym_DQUOTE] = ACTIONS(1438), - [anon_sym_BQUOTE] = ACTIONS(1438), - [sym_bytes_literal] = ACTIONS(1438), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1436), - [sym_at_ident] = ACTIONS(1438), - [sym_hash_ident] = ACTIONS(1438), - [sym_type_ident] = ACTIONS(1438), - [sym_ct_type_ident] = ACTIONS(1438), - [sym_const_ident] = ACTIONS(1436), - [sym_builtin] = ACTIONS(1438), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1436), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_tlocal] = ACTIONS(1436), - [anon_sym_SEMI] = ACTIONS(1438), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_const] = ACTIONS(1436), - [anon_sym_var] = ACTIONS(1436), - [anon_sym_return] = ACTIONS(1436), - [anon_sym_continue] = ACTIONS(1436), - [anon_sym_break] = ACTIONS(1436), - [anon_sym_defer] = ACTIONS(1436), - [anon_sym_assert] = ACTIONS(1436), - [anon_sym_nextcase] = ACTIONS(1436), - [anon_sym_switch] = ACTIONS(1436), - [anon_sym_AMP_AMP] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1436), - [anon_sym_for] = ACTIONS(1436), - [anon_sym_foreach] = ACTIONS(1436), - [anon_sym_foreach_r] = ACTIONS(1436), - [anon_sym_while] = ACTIONS(1436), - [anon_sym_do] = ACTIONS(1436), - [anon_sym_int] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_asm] = ACTIONS(1436), - [anon_sym_DOLLARassert] = ACTIONS(1436), - [anon_sym_DOLLARerror] = ACTIONS(1436), - [anon_sym_DOLLARecho] = ACTIONS(1436), - [anon_sym_DOLLARif] = ACTIONS(1436), - [anon_sym_DOLLARendif] = ACTIONS(1436), - [anon_sym_DOLLARelse] = ACTIONS(1436), - [anon_sym_DOLLARswitch] = ACTIONS(1436), - [anon_sym_DOLLARfor] = ACTIONS(1436), - [anon_sym_DOLLARforeach] = ACTIONS(1436), - [anon_sym_DOLLARalignof] = ACTIONS(1436), - [anon_sym_DOLLARextnameof] = ACTIONS(1436), - [anon_sym_DOLLARnameof] = ACTIONS(1436), - [anon_sym_DOLLARoffsetof] = ACTIONS(1436), - [anon_sym_DOLLARqnameof] = ACTIONS(1436), - [anon_sym_DOLLARvaconst] = ACTIONS(1436), - [anon_sym_DOLLARvaarg] = ACTIONS(1436), - [anon_sym_DOLLARvaref] = ACTIONS(1436), - [anon_sym_DOLLARvaexpr] = ACTIONS(1436), - [anon_sym_true] = ACTIONS(1436), - [anon_sym_false] = ACTIONS(1436), - [anon_sym_null] = ACTIONS(1436), - [anon_sym_DOLLARvacount] = ACTIONS(1436), - [anon_sym_DOLLARappend] = ACTIONS(1436), - [anon_sym_DOLLARconcat] = ACTIONS(1436), - [anon_sym_DOLLAReval] = ACTIONS(1436), - [anon_sym_DOLLARis_const] = ACTIONS(1436), - [anon_sym_DOLLARsizeof] = ACTIONS(1436), - [anon_sym_DOLLARstringify] = ACTIONS(1436), - [anon_sym_DOLLARand] = ACTIONS(1436), - [anon_sym_DOLLARdefined] = ACTIONS(1436), - [anon_sym_DOLLARembed] = ACTIONS(1436), - [anon_sym_DOLLARor] = ACTIONS(1436), - [anon_sym_DOLLARfeature] = ACTIONS(1436), - [anon_sym_DOLLARassignable] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1438), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_PLUS_PLUS] = ACTIONS(1438), - [anon_sym_DASH_DASH] = ACTIONS(1438), - [anon_sym_typeid] = ACTIONS(1436), - [anon_sym_LBRACE_PIPE] = ACTIONS(1438), - [anon_sym_void] = ACTIONS(1436), - [anon_sym_bool] = ACTIONS(1436), - [anon_sym_char] = ACTIONS(1436), - [anon_sym_ichar] = ACTIONS(1436), - [anon_sym_short] = ACTIONS(1436), - [anon_sym_ushort] = ACTIONS(1436), - [anon_sym_uint] = ACTIONS(1436), - [anon_sym_long] = ACTIONS(1436), - [anon_sym_ulong] = ACTIONS(1436), - [anon_sym_int128] = ACTIONS(1436), - [anon_sym_uint128] = ACTIONS(1436), - [anon_sym_float] = ACTIONS(1436), - [anon_sym_double] = ACTIONS(1436), - [anon_sym_float16] = ACTIONS(1436), - [anon_sym_bfloat16] = ACTIONS(1436), - [anon_sym_float128] = ACTIONS(1436), - [anon_sym_iptr] = ACTIONS(1436), - [anon_sym_uptr] = ACTIONS(1436), - [anon_sym_isz] = ACTIONS(1436), - [anon_sym_usz] = ACTIONS(1436), - [anon_sym_anyfault] = ACTIONS(1436), - [anon_sym_any] = ACTIONS(1436), - [anon_sym_DOLLARtypeof] = ACTIONS(1436), - [anon_sym_DOLLARtypefrom] = ACTIONS(1436), - [anon_sym_DOLLARvatype] = ACTIONS(1436), - [anon_sym_DOLLARevaltype] = ACTIONS(1436), - [sym_real_literal] = ACTIONS(1438), + [sym_ident] = ACTIONS(1453), + [sym_integer_literal] = ACTIONS(1455), + [anon_sym_SQUOTE] = ACTIONS(1455), + [anon_sym_DQUOTE] = ACTIONS(1455), + [anon_sym_BQUOTE] = ACTIONS(1455), + [sym_bytes_literal] = ACTIONS(1455), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1453), + [sym_at_ident] = ACTIONS(1455), + [sym_hash_ident] = ACTIONS(1455), + [sym_type_ident] = ACTIONS(1455), + [sym_ct_type_ident] = ACTIONS(1455), + [sym_const_ident] = ACTIONS(1453), + [sym_builtin] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_AMP] = ACTIONS(1453), + [anon_sym_static] = ACTIONS(1453), + [anon_sym_tlocal] = ACTIONS(1453), + [anon_sym_SEMI] = ACTIONS(1455), + [anon_sym_fn] = ACTIONS(1453), + [anon_sym_LBRACE] = ACTIONS(1453), + [anon_sym_const] = ACTIONS(1453), + [anon_sym_var] = ACTIONS(1453), + [anon_sym_return] = ACTIONS(1453), + [anon_sym_continue] = ACTIONS(1453), + [anon_sym_break] = ACTIONS(1453), + [anon_sym_defer] = ACTIONS(1453), + [anon_sym_assert] = ACTIONS(1453), + [anon_sym_nextcase] = ACTIONS(1453), + [anon_sym_switch] = ACTIONS(1453), + [anon_sym_AMP_AMP] = ACTIONS(1455), + [anon_sym_if] = ACTIONS(1453), + [anon_sym_for] = ACTIONS(1453), + [anon_sym_foreach] = ACTIONS(1453), + [anon_sym_foreach_r] = ACTIONS(1453), + [anon_sym_while] = ACTIONS(1453), + [anon_sym_do] = ACTIONS(1453), + [anon_sym_int] = ACTIONS(1453), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_STAR] = ACTIONS(1455), + [anon_sym_asm] = ACTIONS(1453), + [anon_sym_DOLLARassert] = ACTIONS(1453), + [anon_sym_DOLLARerror] = ACTIONS(1453), + [anon_sym_DOLLARecho] = ACTIONS(1453), + [anon_sym_DOLLARif] = ACTIONS(1453), + [anon_sym_DOLLARendif] = ACTIONS(1453), + [anon_sym_DOLLARelse] = ACTIONS(1453), + [anon_sym_DOLLARswitch] = ACTIONS(1453), + [anon_sym_DOLLARfor] = ACTIONS(1453), + [anon_sym_DOLLARforeach] = ACTIONS(1453), + [anon_sym_DOLLARalignof] = ACTIONS(1453), + [anon_sym_DOLLARextnameof] = ACTIONS(1453), + [anon_sym_DOLLARnameof] = ACTIONS(1453), + [anon_sym_DOLLARoffsetof] = ACTIONS(1453), + [anon_sym_DOLLARqnameof] = ACTIONS(1453), + [anon_sym_DOLLARvaconst] = ACTIONS(1453), + [anon_sym_DOLLARvaarg] = ACTIONS(1453), + [anon_sym_DOLLARvaref] = ACTIONS(1453), + [anon_sym_DOLLARvaexpr] = ACTIONS(1453), + [anon_sym_true] = ACTIONS(1453), + [anon_sym_false] = ACTIONS(1453), + [anon_sym_null] = ACTIONS(1453), + [anon_sym_DOLLARvacount] = ACTIONS(1453), + [anon_sym_DOLLARappend] = ACTIONS(1453), + [anon_sym_DOLLARconcat] = ACTIONS(1453), + [anon_sym_DOLLAReval] = ACTIONS(1453), + [anon_sym_DOLLARis_const] = ACTIONS(1453), + [anon_sym_DOLLARsizeof] = ACTIONS(1453), + [anon_sym_DOLLARstringify] = ACTIONS(1453), + [anon_sym_DOLLARand] = ACTIONS(1453), + [anon_sym_DOLLARdefined] = ACTIONS(1453), + [anon_sym_DOLLARembed] = ACTIONS(1453), + [anon_sym_DOLLARor] = ACTIONS(1453), + [anon_sym_DOLLARfeature] = ACTIONS(1453), + [anon_sym_DOLLARassignable] = ACTIONS(1453), + [anon_sym_BANG] = ACTIONS(1455), + [anon_sym_TILDE] = ACTIONS(1455), + [anon_sym_PLUS_PLUS] = ACTIONS(1455), + [anon_sym_DASH_DASH] = ACTIONS(1455), + [anon_sym_typeid] = ACTIONS(1453), + [anon_sym_LBRACE_PIPE] = ACTIONS(1455), + [anon_sym_void] = ACTIONS(1453), + [anon_sym_bool] = ACTIONS(1453), + [anon_sym_char] = ACTIONS(1453), + [anon_sym_ichar] = ACTIONS(1453), + [anon_sym_short] = ACTIONS(1453), + [anon_sym_ushort] = ACTIONS(1453), + [anon_sym_uint] = ACTIONS(1453), + [anon_sym_long] = ACTIONS(1453), + [anon_sym_ulong] = ACTIONS(1453), + [anon_sym_int128] = ACTIONS(1453), + [anon_sym_uint128] = ACTIONS(1453), + [anon_sym_float] = ACTIONS(1453), + [anon_sym_double] = ACTIONS(1453), + [anon_sym_float16] = ACTIONS(1453), + [anon_sym_bfloat16] = ACTIONS(1453), + [anon_sym_float128] = ACTIONS(1453), + [anon_sym_iptr] = ACTIONS(1453), + [anon_sym_uptr] = ACTIONS(1453), + [anon_sym_isz] = ACTIONS(1453), + [anon_sym_usz] = ACTIONS(1453), + [anon_sym_anyfault] = ACTIONS(1453), + [anon_sym_any] = ACTIONS(1453), + [anon_sym_DOLLARtypeof] = ACTIONS(1453), + [anon_sym_DOLLARtypefrom] = ACTIONS(1453), + [anon_sym_DOLLARvatype] = ACTIONS(1453), + [anon_sym_DOLLARevaltype] = ACTIONS(1453), + [sym_real_literal] = ACTIONS(1455), }, [551] = { [sym_line_comment] = STATE(551), [sym_doc_comment] = STATE(551), [sym_block_comment] = STATE(551), - [sym_ident] = ACTIONS(1440), - [sym_integer_literal] = ACTIONS(1442), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_DQUOTE] = ACTIONS(1442), - [anon_sym_BQUOTE] = ACTIONS(1442), - [sym_bytes_literal] = ACTIONS(1442), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1440), - [sym_at_ident] = ACTIONS(1442), - [sym_hash_ident] = ACTIONS(1442), - [sym_type_ident] = ACTIONS(1442), - [sym_ct_type_ident] = ACTIONS(1442), - [sym_const_ident] = ACTIONS(1440), - [sym_builtin] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1440), - [anon_sym_static] = ACTIONS(1440), - [anon_sym_tlocal] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1442), - [anon_sym_fn] = ACTIONS(1440), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_const] = ACTIONS(1440), - [anon_sym_var] = ACTIONS(1440), - [anon_sym_return] = ACTIONS(1440), - [anon_sym_continue] = ACTIONS(1440), - [anon_sym_break] = ACTIONS(1440), - [anon_sym_defer] = ACTIONS(1440), - [anon_sym_assert] = ACTIONS(1440), - [anon_sym_nextcase] = ACTIONS(1440), - [anon_sym_switch] = ACTIONS(1440), - [anon_sym_AMP_AMP] = ACTIONS(1442), - [anon_sym_if] = ACTIONS(1440), - [anon_sym_for] = ACTIONS(1440), - [anon_sym_foreach] = ACTIONS(1440), - [anon_sym_foreach_r] = ACTIONS(1440), - [anon_sym_while] = ACTIONS(1440), - [anon_sym_do] = ACTIONS(1440), - [anon_sym_int] = ACTIONS(1440), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_STAR] = ACTIONS(1442), - [anon_sym_asm] = ACTIONS(1440), - [anon_sym_DOLLARassert] = ACTIONS(1440), - [anon_sym_DOLLARerror] = ACTIONS(1440), - [anon_sym_DOLLARecho] = ACTIONS(1440), - [anon_sym_DOLLARif] = ACTIONS(1440), - [anon_sym_DOLLARendif] = ACTIONS(1440), - [anon_sym_DOLLARelse] = ACTIONS(1440), - [anon_sym_DOLLARswitch] = ACTIONS(1440), - [anon_sym_DOLLARfor] = ACTIONS(1440), - [anon_sym_DOLLARforeach] = ACTIONS(1440), - [anon_sym_DOLLARalignof] = ACTIONS(1440), - [anon_sym_DOLLARextnameof] = ACTIONS(1440), - [anon_sym_DOLLARnameof] = ACTIONS(1440), - [anon_sym_DOLLARoffsetof] = ACTIONS(1440), - [anon_sym_DOLLARqnameof] = ACTIONS(1440), - [anon_sym_DOLLARvaconst] = ACTIONS(1440), - [anon_sym_DOLLARvaarg] = ACTIONS(1440), - [anon_sym_DOLLARvaref] = ACTIONS(1440), - [anon_sym_DOLLARvaexpr] = ACTIONS(1440), - [anon_sym_true] = ACTIONS(1440), - [anon_sym_false] = ACTIONS(1440), - [anon_sym_null] = ACTIONS(1440), - [anon_sym_DOLLARvacount] = ACTIONS(1440), - [anon_sym_DOLLARappend] = ACTIONS(1440), - [anon_sym_DOLLARconcat] = ACTIONS(1440), - [anon_sym_DOLLAReval] = ACTIONS(1440), - [anon_sym_DOLLARis_const] = ACTIONS(1440), - [anon_sym_DOLLARsizeof] = ACTIONS(1440), - [anon_sym_DOLLARstringify] = ACTIONS(1440), - [anon_sym_DOLLARand] = ACTIONS(1440), - [anon_sym_DOLLARdefined] = ACTIONS(1440), - [anon_sym_DOLLARembed] = ACTIONS(1440), - [anon_sym_DOLLARor] = ACTIONS(1440), - [anon_sym_DOLLARfeature] = ACTIONS(1440), - [anon_sym_DOLLARassignable] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_typeid] = ACTIONS(1440), - [anon_sym_LBRACE_PIPE] = ACTIONS(1442), - [anon_sym_void] = ACTIONS(1440), - [anon_sym_bool] = ACTIONS(1440), - [anon_sym_char] = ACTIONS(1440), - [anon_sym_ichar] = ACTIONS(1440), - [anon_sym_short] = ACTIONS(1440), - [anon_sym_ushort] = ACTIONS(1440), - [anon_sym_uint] = ACTIONS(1440), - [anon_sym_long] = ACTIONS(1440), - [anon_sym_ulong] = ACTIONS(1440), - [anon_sym_int128] = ACTIONS(1440), - [anon_sym_uint128] = ACTIONS(1440), - [anon_sym_float] = ACTIONS(1440), - [anon_sym_double] = ACTIONS(1440), - [anon_sym_float16] = ACTIONS(1440), - [anon_sym_bfloat16] = ACTIONS(1440), - [anon_sym_float128] = ACTIONS(1440), - [anon_sym_iptr] = ACTIONS(1440), - [anon_sym_uptr] = ACTIONS(1440), - [anon_sym_isz] = ACTIONS(1440), - [anon_sym_usz] = ACTIONS(1440), - [anon_sym_anyfault] = ACTIONS(1440), - [anon_sym_any] = ACTIONS(1440), - [anon_sym_DOLLARtypeof] = ACTIONS(1440), - [anon_sym_DOLLARtypefrom] = ACTIONS(1440), - [anon_sym_DOLLARvatype] = ACTIONS(1440), - [anon_sym_DOLLARevaltype] = ACTIONS(1440), - [sym_real_literal] = ACTIONS(1442), + [sym_ident] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1459), + [anon_sym_SQUOTE] = ACTIONS(1459), + [anon_sym_DQUOTE] = ACTIONS(1459), + [anon_sym_BQUOTE] = ACTIONS(1459), + [sym_bytes_literal] = ACTIONS(1459), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1457), + [sym_at_ident] = ACTIONS(1459), + [sym_hash_ident] = ACTIONS(1459), + [sym_type_ident] = ACTIONS(1459), + [sym_ct_type_ident] = ACTIONS(1459), + [sym_const_ident] = ACTIONS(1457), + [sym_builtin] = ACTIONS(1459), + [anon_sym_LPAREN] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_tlocal] = ACTIONS(1457), + [anon_sym_SEMI] = ACTIONS(1459), + [anon_sym_fn] = ACTIONS(1457), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_const] = ACTIONS(1457), + [anon_sym_var] = ACTIONS(1457), + [anon_sym_return] = ACTIONS(1457), + [anon_sym_continue] = ACTIONS(1457), + [anon_sym_break] = ACTIONS(1457), + [anon_sym_defer] = ACTIONS(1457), + [anon_sym_assert] = ACTIONS(1457), + [anon_sym_nextcase] = ACTIONS(1457), + [anon_sym_switch] = ACTIONS(1457), + [anon_sym_AMP_AMP] = ACTIONS(1459), + [anon_sym_if] = ACTIONS(1457), + [anon_sym_for] = ACTIONS(1457), + [anon_sym_foreach] = ACTIONS(1457), + [anon_sym_foreach_r] = ACTIONS(1457), + [anon_sym_while] = ACTIONS(1457), + [anon_sym_do] = ACTIONS(1457), + [anon_sym_int] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_asm] = ACTIONS(1457), + [anon_sym_DOLLARassert] = ACTIONS(1457), + [anon_sym_DOLLARerror] = ACTIONS(1457), + [anon_sym_DOLLARecho] = ACTIONS(1457), + [anon_sym_DOLLARif] = ACTIONS(1457), + [anon_sym_DOLLARendif] = ACTIONS(1457), + [anon_sym_DOLLARelse] = ACTIONS(1457), + [anon_sym_DOLLARswitch] = ACTIONS(1457), + [anon_sym_DOLLARfor] = ACTIONS(1457), + [anon_sym_DOLLARforeach] = ACTIONS(1457), + [anon_sym_DOLLARalignof] = ACTIONS(1457), + [anon_sym_DOLLARextnameof] = ACTIONS(1457), + [anon_sym_DOLLARnameof] = ACTIONS(1457), + [anon_sym_DOLLARoffsetof] = ACTIONS(1457), + [anon_sym_DOLLARqnameof] = ACTIONS(1457), + [anon_sym_DOLLARvaconst] = ACTIONS(1457), + [anon_sym_DOLLARvaarg] = ACTIONS(1457), + [anon_sym_DOLLARvaref] = ACTIONS(1457), + [anon_sym_DOLLARvaexpr] = ACTIONS(1457), + [anon_sym_true] = ACTIONS(1457), + [anon_sym_false] = ACTIONS(1457), + [anon_sym_null] = ACTIONS(1457), + [anon_sym_DOLLARvacount] = ACTIONS(1457), + [anon_sym_DOLLARappend] = ACTIONS(1457), + [anon_sym_DOLLARconcat] = ACTIONS(1457), + [anon_sym_DOLLAReval] = ACTIONS(1457), + [anon_sym_DOLLARis_const] = ACTIONS(1457), + [anon_sym_DOLLARsizeof] = ACTIONS(1457), + [anon_sym_DOLLARstringify] = ACTIONS(1457), + [anon_sym_DOLLARand] = ACTIONS(1457), + [anon_sym_DOLLARdefined] = ACTIONS(1457), + [anon_sym_DOLLARembed] = ACTIONS(1457), + [anon_sym_DOLLARor] = ACTIONS(1457), + [anon_sym_DOLLARfeature] = ACTIONS(1457), + [anon_sym_DOLLARassignable] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_TILDE] = ACTIONS(1459), + [anon_sym_PLUS_PLUS] = ACTIONS(1459), + [anon_sym_DASH_DASH] = ACTIONS(1459), + [anon_sym_typeid] = ACTIONS(1457), + [anon_sym_LBRACE_PIPE] = ACTIONS(1459), + [anon_sym_void] = ACTIONS(1457), + [anon_sym_bool] = ACTIONS(1457), + [anon_sym_char] = ACTIONS(1457), + [anon_sym_ichar] = ACTIONS(1457), + [anon_sym_short] = ACTIONS(1457), + [anon_sym_ushort] = ACTIONS(1457), + [anon_sym_uint] = ACTIONS(1457), + [anon_sym_long] = ACTIONS(1457), + [anon_sym_ulong] = ACTIONS(1457), + [anon_sym_int128] = ACTIONS(1457), + [anon_sym_uint128] = ACTIONS(1457), + [anon_sym_float] = ACTIONS(1457), + [anon_sym_double] = ACTIONS(1457), + [anon_sym_float16] = ACTIONS(1457), + [anon_sym_bfloat16] = ACTIONS(1457), + [anon_sym_float128] = ACTIONS(1457), + [anon_sym_iptr] = ACTIONS(1457), + [anon_sym_uptr] = ACTIONS(1457), + [anon_sym_isz] = ACTIONS(1457), + [anon_sym_usz] = ACTIONS(1457), + [anon_sym_anyfault] = ACTIONS(1457), + [anon_sym_any] = ACTIONS(1457), + [anon_sym_DOLLARtypeof] = ACTIONS(1457), + [anon_sym_DOLLARtypefrom] = ACTIONS(1457), + [anon_sym_DOLLARvatype] = ACTIONS(1457), + [anon_sym_DOLLARevaltype] = ACTIONS(1457), + [sym_real_literal] = ACTIONS(1459), }, [552] = { [sym_line_comment] = STATE(552), [sym_doc_comment] = STATE(552), [sym_block_comment] = STATE(552), - [sym_ident] = ACTIONS(1524), - [sym_integer_literal] = ACTIONS(1526), - [anon_sym_SQUOTE] = ACTIONS(1526), - [anon_sym_DQUOTE] = ACTIONS(1526), - [anon_sym_BQUOTE] = ACTIONS(1526), - [sym_bytes_literal] = ACTIONS(1526), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1524), - [sym_at_ident] = ACTIONS(1526), - [sym_hash_ident] = ACTIONS(1526), - [sym_type_ident] = ACTIONS(1526), - [sym_ct_type_ident] = ACTIONS(1526), - [sym_const_ident] = ACTIONS(1524), - [sym_builtin] = ACTIONS(1526), - [anon_sym_LPAREN] = ACTIONS(1526), - [anon_sym_AMP] = ACTIONS(1524), - [anon_sym_static] = ACTIONS(1524), - [anon_sym_tlocal] = ACTIONS(1524), - [anon_sym_SEMI] = ACTIONS(1526), - [anon_sym_fn] = ACTIONS(1524), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_const] = ACTIONS(1524), - [anon_sym_var] = ACTIONS(1524), - [anon_sym_return] = ACTIONS(1524), - [anon_sym_continue] = ACTIONS(1524), - [anon_sym_break] = ACTIONS(1524), - [anon_sym_defer] = ACTIONS(1524), - [anon_sym_assert] = ACTIONS(1524), - [anon_sym_nextcase] = ACTIONS(1524), - [anon_sym_switch] = ACTIONS(1524), - [anon_sym_AMP_AMP] = ACTIONS(1526), - [anon_sym_if] = ACTIONS(1524), - [anon_sym_for] = ACTIONS(1524), - [anon_sym_foreach] = ACTIONS(1524), - [anon_sym_foreach_r] = ACTIONS(1524), - [anon_sym_while] = ACTIONS(1524), - [anon_sym_do] = ACTIONS(1524), - [anon_sym_int] = ACTIONS(1524), - [anon_sym_PLUS] = ACTIONS(1524), - [anon_sym_DASH] = ACTIONS(1524), - [anon_sym_STAR] = ACTIONS(1526), - [anon_sym_asm] = ACTIONS(1524), - [anon_sym_DOLLARassert] = ACTIONS(1524), - [anon_sym_DOLLARerror] = ACTIONS(1524), - [anon_sym_DOLLARecho] = ACTIONS(1524), - [anon_sym_DOLLARif] = ACTIONS(1524), - [anon_sym_DOLLARendif] = ACTIONS(1524), - [anon_sym_DOLLARelse] = ACTIONS(1524), - [anon_sym_DOLLARswitch] = ACTIONS(1524), - [anon_sym_DOLLARfor] = ACTIONS(1524), - [anon_sym_DOLLARforeach] = ACTIONS(1524), - [anon_sym_DOLLARalignof] = ACTIONS(1524), - [anon_sym_DOLLARextnameof] = ACTIONS(1524), - [anon_sym_DOLLARnameof] = ACTIONS(1524), - [anon_sym_DOLLARoffsetof] = ACTIONS(1524), - [anon_sym_DOLLARqnameof] = ACTIONS(1524), - [anon_sym_DOLLARvaconst] = ACTIONS(1524), - [anon_sym_DOLLARvaarg] = ACTIONS(1524), - [anon_sym_DOLLARvaref] = ACTIONS(1524), - [anon_sym_DOLLARvaexpr] = ACTIONS(1524), - [anon_sym_true] = ACTIONS(1524), - [anon_sym_false] = ACTIONS(1524), - [anon_sym_null] = ACTIONS(1524), - [anon_sym_DOLLARvacount] = ACTIONS(1524), - [anon_sym_DOLLARappend] = ACTIONS(1524), - [anon_sym_DOLLARconcat] = ACTIONS(1524), - [anon_sym_DOLLAReval] = ACTIONS(1524), - [anon_sym_DOLLARis_const] = ACTIONS(1524), - [anon_sym_DOLLARsizeof] = ACTIONS(1524), - [anon_sym_DOLLARstringify] = ACTIONS(1524), - [anon_sym_DOLLARand] = ACTIONS(1524), - [anon_sym_DOLLARdefined] = ACTIONS(1524), - [anon_sym_DOLLARembed] = ACTIONS(1524), - [anon_sym_DOLLARor] = ACTIONS(1524), - [anon_sym_DOLLARfeature] = ACTIONS(1524), - [anon_sym_DOLLARassignable] = ACTIONS(1524), - [anon_sym_BANG] = ACTIONS(1526), - [anon_sym_TILDE] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1526), - [anon_sym_DASH_DASH] = ACTIONS(1526), - [anon_sym_typeid] = ACTIONS(1524), - [anon_sym_LBRACE_PIPE] = ACTIONS(1526), - [anon_sym_void] = ACTIONS(1524), - [anon_sym_bool] = ACTIONS(1524), - [anon_sym_char] = ACTIONS(1524), - [anon_sym_ichar] = ACTIONS(1524), - [anon_sym_short] = ACTIONS(1524), - [anon_sym_ushort] = ACTIONS(1524), - [anon_sym_uint] = ACTIONS(1524), - [anon_sym_long] = ACTIONS(1524), - [anon_sym_ulong] = ACTIONS(1524), - [anon_sym_int128] = ACTIONS(1524), - [anon_sym_uint128] = ACTIONS(1524), - [anon_sym_float] = ACTIONS(1524), - [anon_sym_double] = ACTIONS(1524), - [anon_sym_float16] = ACTIONS(1524), - [anon_sym_bfloat16] = ACTIONS(1524), - [anon_sym_float128] = ACTIONS(1524), - [anon_sym_iptr] = ACTIONS(1524), - [anon_sym_uptr] = ACTIONS(1524), - [anon_sym_isz] = ACTIONS(1524), - [anon_sym_usz] = ACTIONS(1524), - [anon_sym_anyfault] = ACTIONS(1524), - [anon_sym_any] = ACTIONS(1524), - [anon_sym_DOLLARtypeof] = ACTIONS(1524), - [anon_sym_DOLLARtypefrom] = ACTIONS(1524), - [anon_sym_DOLLARvatype] = ACTIONS(1524), - [anon_sym_DOLLARevaltype] = ACTIONS(1524), - [sym_real_literal] = ACTIONS(1526), + [sym_ident] = ACTIONS(1481), + [sym_integer_literal] = ACTIONS(1483), + [anon_sym_SQUOTE] = ACTIONS(1483), + [anon_sym_DQUOTE] = ACTIONS(1483), + [anon_sym_BQUOTE] = ACTIONS(1483), + [sym_bytes_literal] = ACTIONS(1483), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1481), + [sym_at_ident] = ACTIONS(1483), + [sym_hash_ident] = ACTIONS(1483), + [sym_type_ident] = ACTIONS(1483), + [sym_ct_type_ident] = ACTIONS(1483), + [sym_const_ident] = ACTIONS(1481), + [sym_builtin] = ACTIONS(1483), + [anon_sym_LPAREN] = ACTIONS(1483), + [anon_sym_AMP] = ACTIONS(1481), + [anon_sym_static] = ACTIONS(1481), + [anon_sym_tlocal] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1483), + [anon_sym_fn] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_const] = ACTIONS(1481), + [anon_sym_var] = ACTIONS(1481), + [anon_sym_return] = ACTIONS(1481), + [anon_sym_continue] = ACTIONS(1481), + [anon_sym_break] = ACTIONS(1481), + [anon_sym_defer] = ACTIONS(1481), + [anon_sym_assert] = ACTIONS(1481), + [anon_sym_nextcase] = ACTIONS(1481), + [anon_sym_switch] = ACTIONS(1481), + [anon_sym_AMP_AMP] = ACTIONS(1483), + [anon_sym_if] = ACTIONS(1481), + [anon_sym_for] = ACTIONS(1481), + [anon_sym_foreach] = ACTIONS(1481), + [anon_sym_foreach_r] = ACTIONS(1481), + [anon_sym_while] = ACTIONS(1481), + [anon_sym_do] = ACTIONS(1481), + [anon_sym_int] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_STAR] = ACTIONS(1483), + [anon_sym_asm] = ACTIONS(1481), + [anon_sym_DOLLARassert] = ACTIONS(1481), + [anon_sym_DOLLARerror] = ACTIONS(1481), + [anon_sym_DOLLARecho] = ACTIONS(1481), + [anon_sym_DOLLARif] = ACTIONS(1481), + [anon_sym_DOLLARendif] = ACTIONS(1481), + [anon_sym_DOLLARelse] = ACTIONS(1481), + [anon_sym_DOLLARswitch] = ACTIONS(1481), + [anon_sym_DOLLARfor] = ACTIONS(1481), + [anon_sym_DOLLARforeach] = ACTIONS(1481), + [anon_sym_DOLLARalignof] = ACTIONS(1481), + [anon_sym_DOLLARextnameof] = ACTIONS(1481), + [anon_sym_DOLLARnameof] = ACTIONS(1481), + [anon_sym_DOLLARoffsetof] = ACTIONS(1481), + [anon_sym_DOLLARqnameof] = ACTIONS(1481), + [anon_sym_DOLLARvaconst] = ACTIONS(1481), + [anon_sym_DOLLARvaarg] = ACTIONS(1481), + [anon_sym_DOLLARvaref] = ACTIONS(1481), + [anon_sym_DOLLARvaexpr] = ACTIONS(1481), + [anon_sym_true] = ACTIONS(1481), + [anon_sym_false] = ACTIONS(1481), + [anon_sym_null] = ACTIONS(1481), + [anon_sym_DOLLARvacount] = ACTIONS(1481), + [anon_sym_DOLLARappend] = ACTIONS(1481), + [anon_sym_DOLLARconcat] = ACTIONS(1481), + [anon_sym_DOLLAReval] = ACTIONS(1481), + [anon_sym_DOLLARis_const] = ACTIONS(1481), + [anon_sym_DOLLARsizeof] = ACTIONS(1481), + [anon_sym_DOLLARstringify] = ACTIONS(1481), + [anon_sym_DOLLARand] = ACTIONS(1481), + [anon_sym_DOLLARdefined] = ACTIONS(1481), + [anon_sym_DOLLARembed] = ACTIONS(1481), + [anon_sym_DOLLARor] = ACTIONS(1481), + [anon_sym_DOLLARfeature] = ACTIONS(1481), + [anon_sym_DOLLARassignable] = ACTIONS(1481), + [anon_sym_BANG] = ACTIONS(1483), + [anon_sym_TILDE] = ACTIONS(1483), + [anon_sym_PLUS_PLUS] = ACTIONS(1483), + [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_typeid] = ACTIONS(1481), + [anon_sym_LBRACE_PIPE] = ACTIONS(1483), + [anon_sym_void] = ACTIONS(1481), + [anon_sym_bool] = ACTIONS(1481), + [anon_sym_char] = ACTIONS(1481), + [anon_sym_ichar] = ACTIONS(1481), + [anon_sym_short] = ACTIONS(1481), + [anon_sym_ushort] = ACTIONS(1481), + [anon_sym_uint] = ACTIONS(1481), + [anon_sym_long] = ACTIONS(1481), + [anon_sym_ulong] = ACTIONS(1481), + [anon_sym_int128] = ACTIONS(1481), + [anon_sym_uint128] = ACTIONS(1481), + [anon_sym_float] = ACTIONS(1481), + [anon_sym_double] = ACTIONS(1481), + [anon_sym_float16] = ACTIONS(1481), + [anon_sym_bfloat16] = ACTIONS(1481), + [anon_sym_float128] = ACTIONS(1481), + [anon_sym_iptr] = ACTIONS(1481), + [anon_sym_uptr] = ACTIONS(1481), + [anon_sym_isz] = ACTIONS(1481), + [anon_sym_usz] = ACTIONS(1481), + [anon_sym_anyfault] = ACTIONS(1481), + [anon_sym_any] = ACTIONS(1481), + [anon_sym_DOLLARtypeof] = ACTIONS(1481), + [anon_sym_DOLLARtypefrom] = ACTIONS(1481), + [anon_sym_DOLLARvatype] = ACTIONS(1481), + [anon_sym_DOLLARevaltype] = ACTIONS(1481), + [sym_real_literal] = ACTIONS(1483), }, [553] = { [sym_line_comment] = STATE(553), [sym_doc_comment] = STATE(553), [sym_block_comment] = STATE(553), - [sym_ident] = ACTIONS(1386), - [sym_integer_literal] = ACTIONS(1388), - [anon_sym_SQUOTE] = ACTIONS(1388), - [anon_sym_DQUOTE] = ACTIONS(1388), - [anon_sym_BQUOTE] = ACTIONS(1388), - [sym_bytes_literal] = ACTIONS(1388), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1386), - [sym_at_ident] = ACTIONS(1388), - [sym_hash_ident] = ACTIONS(1388), - [sym_type_ident] = ACTIONS(1388), - [sym_ct_type_ident] = ACTIONS(1388), - [sym_const_ident] = ACTIONS(1386), - [sym_builtin] = ACTIONS(1388), - [anon_sym_LPAREN] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1386), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_tlocal] = ACTIONS(1386), - [anon_sym_SEMI] = ACTIONS(1388), - [anon_sym_fn] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_const] = ACTIONS(1386), - [anon_sym_var] = ACTIONS(1386), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_continue] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1386), - [anon_sym_defer] = ACTIONS(1386), - [anon_sym_assert] = ACTIONS(1386), - [anon_sym_nextcase] = ACTIONS(1386), - [anon_sym_switch] = ACTIONS(1386), - [anon_sym_AMP_AMP] = ACTIONS(1388), - [anon_sym_if] = ACTIONS(1386), - [anon_sym_for] = ACTIONS(1386), - [anon_sym_foreach] = ACTIONS(1386), - [anon_sym_foreach_r] = ACTIONS(1386), - [anon_sym_while] = ACTIONS(1386), - [anon_sym_do] = ACTIONS(1386), - [anon_sym_int] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_asm] = ACTIONS(1386), - [anon_sym_DOLLARassert] = ACTIONS(1386), - [anon_sym_DOLLARerror] = ACTIONS(1386), - [anon_sym_DOLLARecho] = ACTIONS(1386), - [anon_sym_DOLLARif] = ACTIONS(1386), - [anon_sym_DOLLARendif] = ACTIONS(1386), - [anon_sym_DOLLARelse] = ACTIONS(1386), - [anon_sym_DOLLARswitch] = ACTIONS(1386), - [anon_sym_DOLLARfor] = ACTIONS(1386), - [anon_sym_DOLLARforeach] = ACTIONS(1386), - [anon_sym_DOLLARalignof] = ACTIONS(1386), - [anon_sym_DOLLARextnameof] = ACTIONS(1386), - [anon_sym_DOLLARnameof] = ACTIONS(1386), - [anon_sym_DOLLARoffsetof] = ACTIONS(1386), - [anon_sym_DOLLARqnameof] = ACTIONS(1386), - [anon_sym_DOLLARvaconst] = ACTIONS(1386), - [anon_sym_DOLLARvaarg] = ACTIONS(1386), - [anon_sym_DOLLARvaref] = ACTIONS(1386), - [anon_sym_DOLLARvaexpr] = ACTIONS(1386), - [anon_sym_true] = ACTIONS(1386), - [anon_sym_false] = ACTIONS(1386), - [anon_sym_null] = ACTIONS(1386), - [anon_sym_DOLLARvacount] = ACTIONS(1386), - [anon_sym_DOLLARappend] = ACTIONS(1386), - [anon_sym_DOLLARconcat] = ACTIONS(1386), - [anon_sym_DOLLAReval] = ACTIONS(1386), - [anon_sym_DOLLARis_const] = ACTIONS(1386), - [anon_sym_DOLLARsizeof] = ACTIONS(1386), - [anon_sym_DOLLARstringify] = ACTIONS(1386), - [anon_sym_DOLLARand] = ACTIONS(1386), - [anon_sym_DOLLARdefined] = ACTIONS(1386), - [anon_sym_DOLLARembed] = ACTIONS(1386), - [anon_sym_DOLLARor] = ACTIONS(1386), - [anon_sym_DOLLARfeature] = ACTIONS(1386), - [anon_sym_DOLLARassignable] = ACTIONS(1386), - [anon_sym_BANG] = ACTIONS(1388), - [anon_sym_TILDE] = ACTIONS(1388), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [anon_sym_typeid] = ACTIONS(1386), - [anon_sym_LBRACE_PIPE] = ACTIONS(1388), - [anon_sym_void] = ACTIONS(1386), - [anon_sym_bool] = ACTIONS(1386), - [anon_sym_char] = ACTIONS(1386), - [anon_sym_ichar] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_ushort] = ACTIONS(1386), - [anon_sym_uint] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1386), - [anon_sym_ulong] = ACTIONS(1386), - [anon_sym_int128] = ACTIONS(1386), - [anon_sym_uint128] = ACTIONS(1386), - [anon_sym_float] = ACTIONS(1386), - [anon_sym_double] = ACTIONS(1386), - [anon_sym_float16] = ACTIONS(1386), - [anon_sym_bfloat16] = ACTIONS(1386), - [anon_sym_float128] = ACTIONS(1386), - [anon_sym_iptr] = ACTIONS(1386), - [anon_sym_uptr] = ACTIONS(1386), - [anon_sym_isz] = ACTIONS(1386), - [anon_sym_usz] = ACTIONS(1386), - [anon_sym_anyfault] = ACTIONS(1386), - [anon_sym_any] = ACTIONS(1386), - [anon_sym_DOLLARtypeof] = ACTIONS(1386), - [anon_sym_DOLLARtypefrom] = ACTIONS(1386), - [anon_sym_DOLLARvatype] = ACTIONS(1386), - [anon_sym_DOLLARevaltype] = ACTIONS(1386), - [sym_real_literal] = ACTIONS(1388), + [sym_ident] = ACTIONS(1179), + [sym_integer_literal] = ACTIONS(1181), + [anon_sym_SQUOTE] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1181), + [anon_sym_BQUOTE] = ACTIONS(1181), + [sym_bytes_literal] = ACTIONS(1181), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1179), + [sym_at_ident] = ACTIONS(1181), + [sym_hash_ident] = ACTIONS(1181), + [sym_type_ident] = ACTIONS(1181), + [sym_ct_type_ident] = ACTIONS(1181), + [sym_const_ident] = ACTIONS(1179), + [sym_builtin] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1181), + [anon_sym_AMP] = ACTIONS(1179), + [anon_sym_static] = ACTIONS(1179), + [anon_sym_tlocal] = ACTIONS(1179), + [anon_sym_SEMI] = ACTIONS(1181), + [anon_sym_fn] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [anon_sym_var] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_defer] = ACTIONS(1179), + [anon_sym_assert] = ACTIONS(1179), + [anon_sym_nextcase] = ACTIONS(1179), + [anon_sym_switch] = ACTIONS(1179), + [anon_sym_AMP_AMP] = ACTIONS(1181), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_foreach] = ACTIONS(1179), + [anon_sym_foreach_r] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_int] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1181), + [anon_sym_asm] = ACTIONS(1179), + [anon_sym_DOLLARassert] = ACTIONS(1179), + [anon_sym_DOLLARerror] = ACTIONS(1179), + [anon_sym_DOLLARecho] = ACTIONS(1179), + [anon_sym_DOLLARif] = ACTIONS(1179), + [anon_sym_DOLLARendif] = ACTIONS(1179), + [anon_sym_DOLLARelse] = ACTIONS(1179), + [anon_sym_DOLLARswitch] = ACTIONS(1179), + [anon_sym_DOLLARfor] = ACTIONS(1179), + [anon_sym_DOLLARforeach] = ACTIONS(1179), + [anon_sym_DOLLARalignof] = ACTIONS(1179), + [anon_sym_DOLLARextnameof] = ACTIONS(1179), + [anon_sym_DOLLARnameof] = ACTIONS(1179), + [anon_sym_DOLLARoffsetof] = ACTIONS(1179), + [anon_sym_DOLLARqnameof] = ACTIONS(1179), + [anon_sym_DOLLARvaconst] = ACTIONS(1179), + [anon_sym_DOLLARvaarg] = ACTIONS(1179), + [anon_sym_DOLLARvaref] = ACTIONS(1179), + [anon_sym_DOLLARvaexpr] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_DOLLARvacount] = ACTIONS(1179), + [anon_sym_DOLLARappend] = ACTIONS(1179), + [anon_sym_DOLLARconcat] = ACTIONS(1179), + [anon_sym_DOLLAReval] = ACTIONS(1179), + [anon_sym_DOLLARis_const] = ACTIONS(1179), + [anon_sym_DOLLARsizeof] = ACTIONS(1179), + [anon_sym_DOLLARstringify] = ACTIONS(1179), + [anon_sym_DOLLARand] = ACTIONS(1179), + [anon_sym_DOLLARdefined] = ACTIONS(1179), + [anon_sym_DOLLARembed] = ACTIONS(1179), + [anon_sym_DOLLARor] = ACTIONS(1179), + [anon_sym_DOLLARfeature] = ACTIONS(1179), + [anon_sym_DOLLARassignable] = ACTIONS(1179), + [anon_sym_BANG] = ACTIONS(1181), + [anon_sym_TILDE] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(1181), + [anon_sym_DASH_DASH] = ACTIONS(1181), + [anon_sym_typeid] = ACTIONS(1179), + [anon_sym_LBRACE_PIPE] = ACTIONS(1181), + [anon_sym_void] = ACTIONS(1179), + [anon_sym_bool] = ACTIONS(1179), + [anon_sym_char] = ACTIONS(1179), + [anon_sym_ichar] = ACTIONS(1179), + [anon_sym_short] = ACTIONS(1179), + [anon_sym_ushort] = ACTIONS(1179), + [anon_sym_uint] = ACTIONS(1179), + [anon_sym_long] = ACTIONS(1179), + [anon_sym_ulong] = ACTIONS(1179), + [anon_sym_int128] = ACTIONS(1179), + [anon_sym_uint128] = ACTIONS(1179), + [anon_sym_float] = ACTIONS(1179), + [anon_sym_double] = ACTIONS(1179), + [anon_sym_float16] = ACTIONS(1179), + [anon_sym_bfloat16] = ACTIONS(1179), + [anon_sym_float128] = ACTIONS(1179), + [anon_sym_iptr] = ACTIONS(1179), + [anon_sym_uptr] = ACTIONS(1179), + [anon_sym_isz] = ACTIONS(1179), + [anon_sym_usz] = ACTIONS(1179), + [anon_sym_anyfault] = ACTIONS(1179), + [anon_sym_any] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1179), + [anon_sym_DOLLARtypefrom] = ACTIONS(1179), + [anon_sym_DOLLARvatype] = ACTIONS(1179), + [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [sym_real_literal] = ACTIONS(1181), }, [554] = { [sym_line_comment] = STATE(554), [sym_doc_comment] = STATE(554), [sym_block_comment] = STATE(554), - [sym_ident] = ACTIONS(1452), - [sym_integer_literal] = ACTIONS(1454), - [anon_sym_SQUOTE] = ACTIONS(1454), - [anon_sym_DQUOTE] = ACTIONS(1454), - [anon_sym_BQUOTE] = ACTIONS(1454), - [sym_bytes_literal] = ACTIONS(1454), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1452), - [sym_at_ident] = ACTIONS(1454), - [sym_hash_ident] = ACTIONS(1454), - [sym_type_ident] = ACTIONS(1454), - [sym_ct_type_ident] = ACTIONS(1454), - [sym_const_ident] = ACTIONS(1452), - [sym_builtin] = ACTIONS(1454), - [anon_sym_LPAREN] = ACTIONS(1454), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_tlocal] = ACTIONS(1452), - [anon_sym_SEMI] = ACTIONS(1454), - [anon_sym_fn] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1452), - [anon_sym_const] = ACTIONS(1452), - [anon_sym_var] = ACTIONS(1452), - [anon_sym_return] = ACTIONS(1452), - [anon_sym_continue] = ACTIONS(1452), - [anon_sym_break] = ACTIONS(1452), - [anon_sym_defer] = ACTIONS(1452), - [anon_sym_assert] = ACTIONS(1452), - [anon_sym_nextcase] = ACTIONS(1452), - [anon_sym_switch] = ACTIONS(1452), - [anon_sym_AMP_AMP] = ACTIONS(1454), - [anon_sym_if] = ACTIONS(1452), - [anon_sym_for] = ACTIONS(1452), - [anon_sym_foreach] = ACTIONS(1452), - [anon_sym_foreach_r] = ACTIONS(1452), - [anon_sym_while] = ACTIONS(1452), - [anon_sym_do] = ACTIONS(1452), - [anon_sym_int] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1452), - [anon_sym_DASH] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1454), - [anon_sym_asm] = ACTIONS(1452), - [anon_sym_DOLLARassert] = ACTIONS(1452), - [anon_sym_DOLLARerror] = ACTIONS(1452), - [anon_sym_DOLLARecho] = ACTIONS(1452), - [anon_sym_DOLLARif] = ACTIONS(1452), - [anon_sym_DOLLARendif] = ACTIONS(1452), - [anon_sym_DOLLARelse] = ACTIONS(1452), - [anon_sym_DOLLARswitch] = ACTIONS(1452), - [anon_sym_DOLLARfor] = ACTIONS(1452), - [anon_sym_DOLLARforeach] = ACTIONS(1452), - [anon_sym_DOLLARalignof] = ACTIONS(1452), - [anon_sym_DOLLARextnameof] = ACTIONS(1452), - [anon_sym_DOLLARnameof] = ACTIONS(1452), - [anon_sym_DOLLARoffsetof] = ACTIONS(1452), - [anon_sym_DOLLARqnameof] = ACTIONS(1452), - [anon_sym_DOLLARvaconst] = ACTIONS(1452), - [anon_sym_DOLLARvaarg] = ACTIONS(1452), - [anon_sym_DOLLARvaref] = ACTIONS(1452), - [anon_sym_DOLLARvaexpr] = ACTIONS(1452), - [anon_sym_true] = ACTIONS(1452), - [anon_sym_false] = ACTIONS(1452), - [anon_sym_null] = ACTIONS(1452), - [anon_sym_DOLLARvacount] = ACTIONS(1452), - [anon_sym_DOLLARappend] = ACTIONS(1452), - [anon_sym_DOLLARconcat] = ACTIONS(1452), - [anon_sym_DOLLAReval] = ACTIONS(1452), - [anon_sym_DOLLARis_const] = ACTIONS(1452), - [anon_sym_DOLLARsizeof] = ACTIONS(1452), - [anon_sym_DOLLARstringify] = ACTIONS(1452), - [anon_sym_DOLLARand] = ACTIONS(1452), - [anon_sym_DOLLARdefined] = ACTIONS(1452), - [anon_sym_DOLLARembed] = ACTIONS(1452), - [anon_sym_DOLLARor] = ACTIONS(1452), - [anon_sym_DOLLARfeature] = ACTIONS(1452), - [anon_sym_DOLLARassignable] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1454), - [anon_sym_PLUS_PLUS] = ACTIONS(1454), - [anon_sym_DASH_DASH] = ACTIONS(1454), - [anon_sym_typeid] = ACTIONS(1452), - [anon_sym_LBRACE_PIPE] = ACTIONS(1454), - [anon_sym_void] = ACTIONS(1452), - [anon_sym_bool] = ACTIONS(1452), - [anon_sym_char] = ACTIONS(1452), - [anon_sym_ichar] = ACTIONS(1452), - [anon_sym_short] = ACTIONS(1452), - [anon_sym_ushort] = ACTIONS(1452), - [anon_sym_uint] = ACTIONS(1452), - [anon_sym_long] = ACTIONS(1452), - [anon_sym_ulong] = ACTIONS(1452), - [anon_sym_int128] = ACTIONS(1452), - [anon_sym_uint128] = ACTIONS(1452), - [anon_sym_float] = ACTIONS(1452), - [anon_sym_double] = ACTIONS(1452), - [anon_sym_float16] = ACTIONS(1452), - [anon_sym_bfloat16] = ACTIONS(1452), - [anon_sym_float128] = ACTIONS(1452), - [anon_sym_iptr] = ACTIONS(1452), - [anon_sym_uptr] = ACTIONS(1452), - [anon_sym_isz] = ACTIONS(1452), - [anon_sym_usz] = ACTIONS(1452), - [anon_sym_anyfault] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_DOLLARtypeof] = ACTIONS(1452), - [anon_sym_DOLLARtypefrom] = ACTIONS(1452), - [anon_sym_DOLLARvatype] = ACTIONS(1452), - [anon_sym_DOLLARevaltype] = ACTIONS(1452), - [sym_real_literal] = ACTIONS(1454), + [sym_ident] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1523), + [anon_sym_SQUOTE] = ACTIONS(1523), + [anon_sym_DQUOTE] = ACTIONS(1523), + [anon_sym_BQUOTE] = ACTIONS(1523), + [sym_bytes_literal] = ACTIONS(1523), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1521), + [sym_at_ident] = ACTIONS(1523), + [sym_hash_ident] = ACTIONS(1523), + [sym_type_ident] = ACTIONS(1523), + [sym_ct_type_ident] = ACTIONS(1523), + [sym_const_ident] = ACTIONS(1521), + [sym_builtin] = ACTIONS(1523), + [anon_sym_LPAREN] = ACTIONS(1523), + [anon_sym_AMP] = ACTIONS(1521), + [anon_sym_static] = ACTIONS(1521), + [anon_sym_tlocal] = ACTIONS(1521), + [anon_sym_SEMI] = ACTIONS(1523), + [anon_sym_fn] = ACTIONS(1521), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_const] = ACTIONS(1521), + [anon_sym_var] = ACTIONS(1521), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_continue] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1521), + [anon_sym_defer] = ACTIONS(1521), + [anon_sym_assert] = ACTIONS(1521), + [anon_sym_nextcase] = ACTIONS(1521), + [anon_sym_switch] = ACTIONS(1521), + [anon_sym_AMP_AMP] = ACTIONS(1523), + [anon_sym_if] = ACTIONS(1521), + [anon_sym_for] = ACTIONS(1521), + [anon_sym_foreach] = ACTIONS(1521), + [anon_sym_foreach_r] = ACTIONS(1521), + [anon_sym_while] = ACTIONS(1521), + [anon_sym_do] = ACTIONS(1521), + [anon_sym_int] = ACTIONS(1521), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), + [anon_sym_asm] = ACTIONS(1521), + [anon_sym_DOLLARassert] = ACTIONS(1521), + [anon_sym_DOLLARerror] = ACTIONS(1521), + [anon_sym_DOLLARecho] = ACTIONS(1521), + [anon_sym_DOLLARif] = ACTIONS(1521), + [anon_sym_DOLLARendif] = ACTIONS(1521), + [anon_sym_DOLLARelse] = ACTIONS(1521), + [anon_sym_DOLLARswitch] = ACTIONS(1521), + [anon_sym_DOLLARfor] = ACTIONS(1521), + [anon_sym_DOLLARforeach] = ACTIONS(1521), + [anon_sym_DOLLARalignof] = ACTIONS(1521), + [anon_sym_DOLLARextnameof] = ACTIONS(1521), + [anon_sym_DOLLARnameof] = ACTIONS(1521), + [anon_sym_DOLLARoffsetof] = ACTIONS(1521), + [anon_sym_DOLLARqnameof] = ACTIONS(1521), + [anon_sym_DOLLARvaconst] = ACTIONS(1521), + [anon_sym_DOLLARvaarg] = ACTIONS(1521), + [anon_sym_DOLLARvaref] = ACTIONS(1521), + [anon_sym_DOLLARvaexpr] = ACTIONS(1521), + [anon_sym_true] = ACTIONS(1521), + [anon_sym_false] = ACTIONS(1521), + [anon_sym_null] = ACTIONS(1521), + [anon_sym_DOLLARvacount] = ACTIONS(1521), + [anon_sym_DOLLARappend] = ACTIONS(1521), + [anon_sym_DOLLARconcat] = ACTIONS(1521), + [anon_sym_DOLLAReval] = ACTIONS(1521), + [anon_sym_DOLLARis_const] = ACTIONS(1521), + [anon_sym_DOLLARsizeof] = ACTIONS(1521), + [anon_sym_DOLLARstringify] = ACTIONS(1521), + [anon_sym_DOLLARand] = ACTIONS(1521), + [anon_sym_DOLLARdefined] = ACTIONS(1521), + [anon_sym_DOLLARembed] = ACTIONS(1521), + [anon_sym_DOLLARor] = ACTIONS(1521), + [anon_sym_DOLLARfeature] = ACTIONS(1521), + [anon_sym_DOLLARassignable] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1523), + [anon_sym_TILDE] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_typeid] = ACTIONS(1521), + [anon_sym_LBRACE_PIPE] = ACTIONS(1523), + [anon_sym_void] = ACTIONS(1521), + [anon_sym_bool] = ACTIONS(1521), + [anon_sym_char] = ACTIONS(1521), + [anon_sym_ichar] = ACTIONS(1521), + [anon_sym_short] = ACTIONS(1521), + [anon_sym_ushort] = ACTIONS(1521), + [anon_sym_uint] = ACTIONS(1521), + [anon_sym_long] = ACTIONS(1521), + [anon_sym_ulong] = ACTIONS(1521), + [anon_sym_int128] = ACTIONS(1521), + [anon_sym_uint128] = ACTIONS(1521), + [anon_sym_float] = ACTIONS(1521), + [anon_sym_double] = ACTIONS(1521), + [anon_sym_float16] = ACTIONS(1521), + [anon_sym_bfloat16] = ACTIONS(1521), + [anon_sym_float128] = ACTIONS(1521), + [anon_sym_iptr] = ACTIONS(1521), + [anon_sym_uptr] = ACTIONS(1521), + [anon_sym_isz] = ACTIONS(1521), + [anon_sym_usz] = ACTIONS(1521), + [anon_sym_anyfault] = ACTIONS(1521), + [anon_sym_any] = ACTIONS(1521), + [anon_sym_DOLLARtypeof] = ACTIONS(1521), + [anon_sym_DOLLARtypefrom] = ACTIONS(1521), + [anon_sym_DOLLARvatype] = ACTIONS(1521), + [anon_sym_DOLLARevaltype] = ACTIONS(1521), + [sym_real_literal] = ACTIONS(1523), }, [555] = { [sym_line_comment] = STATE(555), [sym_doc_comment] = STATE(555), [sym_block_comment] = STATE(555), - [sym_ident] = ACTIONS(1660), - [sym_integer_literal] = ACTIONS(1662), - [anon_sym_SQUOTE] = ACTIONS(1662), - [anon_sym_DQUOTE] = ACTIONS(1662), - [anon_sym_BQUOTE] = ACTIONS(1662), - [sym_bytes_literal] = ACTIONS(1662), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1660), - [sym_at_ident] = ACTIONS(1662), - [sym_hash_ident] = ACTIONS(1662), - [sym_type_ident] = ACTIONS(1662), - [sym_ct_type_ident] = ACTIONS(1662), - [sym_const_ident] = ACTIONS(1660), - [sym_builtin] = ACTIONS(1662), - [anon_sym_LPAREN] = ACTIONS(1662), - [anon_sym_AMP] = ACTIONS(1660), - [anon_sym_static] = ACTIONS(1660), - [anon_sym_tlocal] = ACTIONS(1660), - [anon_sym_SEMI] = ACTIONS(1662), - [anon_sym_fn] = ACTIONS(1660), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_const] = ACTIONS(1660), - [anon_sym_var] = ACTIONS(1660), - [anon_sym_return] = ACTIONS(1660), - [anon_sym_continue] = ACTIONS(1660), - [anon_sym_break] = ACTIONS(1660), - [anon_sym_defer] = ACTIONS(1660), - [anon_sym_assert] = ACTIONS(1660), - [anon_sym_nextcase] = ACTIONS(1660), - [anon_sym_switch] = ACTIONS(1660), - [anon_sym_AMP_AMP] = ACTIONS(1662), - [anon_sym_if] = ACTIONS(1660), - [anon_sym_for] = ACTIONS(1660), - [anon_sym_foreach] = ACTIONS(1660), - [anon_sym_foreach_r] = ACTIONS(1660), - [anon_sym_while] = ACTIONS(1660), - [anon_sym_do] = ACTIONS(1660), - [anon_sym_int] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1660), - [anon_sym_DASH] = ACTIONS(1660), - [anon_sym_STAR] = ACTIONS(1662), - [anon_sym_asm] = ACTIONS(1660), - [anon_sym_DOLLARassert] = ACTIONS(1660), - [anon_sym_DOLLARerror] = ACTIONS(1660), - [anon_sym_DOLLARecho] = ACTIONS(1660), - [anon_sym_DOLLARif] = ACTIONS(1660), - [anon_sym_DOLLARendif] = ACTIONS(1660), - [anon_sym_DOLLARelse] = ACTIONS(1660), - [anon_sym_DOLLARswitch] = ACTIONS(1660), - [anon_sym_DOLLARfor] = ACTIONS(1660), - [anon_sym_DOLLARforeach] = ACTIONS(1660), - [anon_sym_DOLLARalignof] = ACTIONS(1660), - [anon_sym_DOLLARextnameof] = ACTIONS(1660), - [anon_sym_DOLLARnameof] = ACTIONS(1660), - [anon_sym_DOLLARoffsetof] = ACTIONS(1660), - [anon_sym_DOLLARqnameof] = ACTIONS(1660), - [anon_sym_DOLLARvaconst] = ACTIONS(1660), - [anon_sym_DOLLARvaarg] = ACTIONS(1660), - [anon_sym_DOLLARvaref] = ACTIONS(1660), - [anon_sym_DOLLARvaexpr] = ACTIONS(1660), - [anon_sym_true] = ACTIONS(1660), - [anon_sym_false] = ACTIONS(1660), - [anon_sym_null] = ACTIONS(1660), - [anon_sym_DOLLARvacount] = ACTIONS(1660), - [anon_sym_DOLLARappend] = ACTIONS(1660), - [anon_sym_DOLLARconcat] = ACTIONS(1660), - [anon_sym_DOLLAReval] = ACTIONS(1660), - [anon_sym_DOLLARis_const] = ACTIONS(1660), - [anon_sym_DOLLARsizeof] = ACTIONS(1660), - [anon_sym_DOLLARstringify] = ACTIONS(1660), - [anon_sym_DOLLARand] = ACTIONS(1660), - [anon_sym_DOLLARdefined] = ACTIONS(1660), - [anon_sym_DOLLARembed] = ACTIONS(1660), - [anon_sym_DOLLARor] = ACTIONS(1660), - [anon_sym_DOLLARfeature] = ACTIONS(1660), - [anon_sym_DOLLARassignable] = ACTIONS(1660), - [anon_sym_BANG] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1662), - [anon_sym_PLUS_PLUS] = ACTIONS(1662), - [anon_sym_DASH_DASH] = ACTIONS(1662), - [anon_sym_typeid] = ACTIONS(1660), - [anon_sym_LBRACE_PIPE] = ACTIONS(1662), - [anon_sym_void] = ACTIONS(1660), - [anon_sym_bool] = ACTIONS(1660), - [anon_sym_char] = ACTIONS(1660), - [anon_sym_ichar] = ACTIONS(1660), - [anon_sym_short] = ACTIONS(1660), - [anon_sym_ushort] = ACTIONS(1660), - [anon_sym_uint] = ACTIONS(1660), - [anon_sym_long] = ACTIONS(1660), - [anon_sym_ulong] = ACTIONS(1660), - [anon_sym_int128] = ACTIONS(1660), - [anon_sym_uint128] = ACTIONS(1660), - [anon_sym_float] = ACTIONS(1660), - [anon_sym_double] = ACTIONS(1660), - [anon_sym_float16] = ACTIONS(1660), - [anon_sym_bfloat16] = ACTIONS(1660), - [anon_sym_float128] = ACTIONS(1660), - [anon_sym_iptr] = ACTIONS(1660), - [anon_sym_uptr] = ACTIONS(1660), - [anon_sym_isz] = ACTIONS(1660), - [anon_sym_usz] = ACTIONS(1660), - [anon_sym_anyfault] = ACTIONS(1660), - [anon_sym_any] = ACTIONS(1660), - [anon_sym_DOLLARtypeof] = ACTIONS(1660), - [anon_sym_DOLLARtypefrom] = ACTIONS(1660), - [anon_sym_DOLLARvatype] = ACTIONS(1660), - [anon_sym_DOLLARevaltype] = ACTIONS(1660), - [sym_real_literal] = ACTIONS(1662), + [sym_ident] = ACTIONS(1465), + [sym_integer_literal] = ACTIONS(1467), + [anon_sym_SQUOTE] = ACTIONS(1467), + [anon_sym_DQUOTE] = ACTIONS(1467), + [anon_sym_BQUOTE] = ACTIONS(1467), + [sym_bytes_literal] = ACTIONS(1467), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1465), + [sym_at_ident] = ACTIONS(1467), + [sym_hash_ident] = ACTIONS(1467), + [sym_type_ident] = ACTIONS(1467), + [sym_ct_type_ident] = ACTIONS(1467), + [sym_const_ident] = ACTIONS(1465), + [sym_builtin] = ACTIONS(1467), + [anon_sym_LPAREN] = ACTIONS(1467), + [anon_sym_AMP] = ACTIONS(1465), + [anon_sym_static] = ACTIONS(1465), + [anon_sym_tlocal] = ACTIONS(1465), + [anon_sym_SEMI] = ACTIONS(1467), + [anon_sym_fn] = ACTIONS(1465), + [anon_sym_LBRACE] = ACTIONS(1465), + [anon_sym_const] = ACTIONS(1465), + [anon_sym_var] = ACTIONS(1465), + [anon_sym_return] = ACTIONS(1465), + [anon_sym_continue] = ACTIONS(1465), + [anon_sym_break] = ACTIONS(1465), + [anon_sym_defer] = ACTIONS(1465), + [anon_sym_assert] = ACTIONS(1465), + [anon_sym_nextcase] = ACTIONS(1465), + [anon_sym_switch] = ACTIONS(1465), + [anon_sym_AMP_AMP] = ACTIONS(1467), + [anon_sym_if] = ACTIONS(1465), + [anon_sym_for] = ACTIONS(1465), + [anon_sym_foreach] = ACTIONS(1465), + [anon_sym_foreach_r] = ACTIONS(1465), + [anon_sym_while] = ACTIONS(1465), + [anon_sym_do] = ACTIONS(1465), + [anon_sym_int] = ACTIONS(1465), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_STAR] = ACTIONS(1467), + [anon_sym_asm] = ACTIONS(1465), + [anon_sym_DOLLARassert] = ACTIONS(1465), + [anon_sym_DOLLARerror] = ACTIONS(1465), + [anon_sym_DOLLARecho] = ACTIONS(1465), + [anon_sym_DOLLARif] = ACTIONS(1465), + [anon_sym_DOLLARendif] = ACTIONS(1465), + [anon_sym_DOLLARelse] = ACTIONS(1465), + [anon_sym_DOLLARswitch] = ACTIONS(1465), + [anon_sym_DOLLARfor] = ACTIONS(1465), + [anon_sym_DOLLARforeach] = ACTIONS(1465), + [anon_sym_DOLLARalignof] = ACTIONS(1465), + [anon_sym_DOLLARextnameof] = ACTIONS(1465), + [anon_sym_DOLLARnameof] = ACTIONS(1465), + [anon_sym_DOLLARoffsetof] = ACTIONS(1465), + [anon_sym_DOLLARqnameof] = ACTIONS(1465), + [anon_sym_DOLLARvaconst] = ACTIONS(1465), + [anon_sym_DOLLARvaarg] = ACTIONS(1465), + [anon_sym_DOLLARvaref] = ACTIONS(1465), + [anon_sym_DOLLARvaexpr] = ACTIONS(1465), + [anon_sym_true] = ACTIONS(1465), + [anon_sym_false] = ACTIONS(1465), + [anon_sym_null] = ACTIONS(1465), + [anon_sym_DOLLARvacount] = ACTIONS(1465), + [anon_sym_DOLLARappend] = ACTIONS(1465), + [anon_sym_DOLLARconcat] = ACTIONS(1465), + [anon_sym_DOLLAReval] = ACTIONS(1465), + [anon_sym_DOLLARis_const] = ACTIONS(1465), + [anon_sym_DOLLARsizeof] = ACTIONS(1465), + [anon_sym_DOLLARstringify] = ACTIONS(1465), + [anon_sym_DOLLARand] = ACTIONS(1465), + [anon_sym_DOLLARdefined] = ACTIONS(1465), + [anon_sym_DOLLARembed] = ACTIONS(1465), + [anon_sym_DOLLARor] = ACTIONS(1465), + [anon_sym_DOLLARfeature] = ACTIONS(1465), + [anon_sym_DOLLARassignable] = ACTIONS(1465), + [anon_sym_BANG] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1467), + [anon_sym_PLUS_PLUS] = ACTIONS(1467), + [anon_sym_DASH_DASH] = ACTIONS(1467), + [anon_sym_typeid] = ACTIONS(1465), + [anon_sym_LBRACE_PIPE] = ACTIONS(1467), + [anon_sym_void] = ACTIONS(1465), + [anon_sym_bool] = ACTIONS(1465), + [anon_sym_char] = ACTIONS(1465), + [anon_sym_ichar] = ACTIONS(1465), + [anon_sym_short] = ACTIONS(1465), + [anon_sym_ushort] = ACTIONS(1465), + [anon_sym_uint] = ACTIONS(1465), + [anon_sym_long] = ACTIONS(1465), + [anon_sym_ulong] = ACTIONS(1465), + [anon_sym_int128] = ACTIONS(1465), + [anon_sym_uint128] = ACTIONS(1465), + [anon_sym_float] = ACTIONS(1465), + [anon_sym_double] = ACTIONS(1465), + [anon_sym_float16] = ACTIONS(1465), + [anon_sym_bfloat16] = ACTIONS(1465), + [anon_sym_float128] = ACTIONS(1465), + [anon_sym_iptr] = ACTIONS(1465), + [anon_sym_uptr] = ACTIONS(1465), + [anon_sym_isz] = ACTIONS(1465), + [anon_sym_usz] = ACTIONS(1465), + [anon_sym_anyfault] = ACTIONS(1465), + [anon_sym_any] = ACTIONS(1465), + [anon_sym_DOLLARtypeof] = ACTIONS(1465), + [anon_sym_DOLLARtypefrom] = ACTIONS(1465), + [anon_sym_DOLLARvatype] = ACTIONS(1465), + [anon_sym_DOLLARevaltype] = ACTIONS(1465), + [sym_real_literal] = ACTIONS(1467), }, [556] = { [sym_line_comment] = STATE(556), [sym_doc_comment] = STATE(556), [sym_block_comment] = STATE(556), - [sym_ident] = ACTIONS(1186), - [sym_integer_literal] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym_DQUOTE] = ACTIONS(1188), - [anon_sym_BQUOTE] = ACTIONS(1188), - [sym_bytes_literal] = ACTIONS(1188), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1186), - [sym_at_ident] = ACTIONS(1188), - [sym_hash_ident] = ACTIONS(1188), - [sym_type_ident] = ACTIONS(1188), - [sym_ct_type_ident] = ACTIONS(1188), - [sym_const_ident] = ACTIONS(1186), - [sym_builtin] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(1188), - [anon_sym_AMP] = ACTIONS(1186), - [anon_sym_static] = ACTIONS(1186), - [anon_sym_tlocal] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1188), - [anon_sym_fn] = ACTIONS(1186), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_const] = ACTIONS(1186), - [anon_sym_var] = ACTIONS(1186), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1186), - [anon_sym_defer] = ACTIONS(1186), - [anon_sym_assert] = ACTIONS(1186), - [anon_sym_nextcase] = ACTIONS(1186), - [anon_sym_switch] = ACTIONS(1186), - [anon_sym_AMP_AMP] = ACTIONS(1188), - [anon_sym_if] = ACTIONS(1186), - [anon_sym_for] = ACTIONS(1186), - [anon_sym_foreach] = ACTIONS(1186), - [anon_sym_foreach_r] = ACTIONS(1186), - [anon_sym_while] = ACTIONS(1186), - [anon_sym_do] = ACTIONS(1186), - [anon_sym_int] = ACTIONS(1186), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1188), - [anon_sym_asm] = ACTIONS(1186), - [anon_sym_DOLLARassert] = ACTIONS(1186), - [anon_sym_DOLLARerror] = ACTIONS(1186), - [anon_sym_DOLLARecho] = ACTIONS(1186), - [anon_sym_DOLLARif] = ACTIONS(1186), - [anon_sym_DOLLARendif] = ACTIONS(1186), - [anon_sym_DOLLARelse] = ACTIONS(1186), - [anon_sym_DOLLARswitch] = ACTIONS(1186), - [anon_sym_DOLLARfor] = ACTIONS(1186), - [anon_sym_DOLLARforeach] = ACTIONS(1186), - [anon_sym_DOLLARalignof] = ACTIONS(1186), - [anon_sym_DOLLARextnameof] = ACTIONS(1186), - [anon_sym_DOLLARnameof] = ACTIONS(1186), - [anon_sym_DOLLARoffsetof] = ACTIONS(1186), - [anon_sym_DOLLARqnameof] = ACTIONS(1186), - [anon_sym_DOLLARvaconst] = ACTIONS(1186), - [anon_sym_DOLLARvaarg] = ACTIONS(1186), - [anon_sym_DOLLARvaref] = ACTIONS(1186), - [anon_sym_DOLLARvaexpr] = ACTIONS(1186), - [anon_sym_true] = ACTIONS(1186), - [anon_sym_false] = ACTIONS(1186), - [anon_sym_null] = ACTIONS(1186), - [anon_sym_DOLLARvacount] = ACTIONS(1186), - [anon_sym_DOLLARappend] = ACTIONS(1186), - [anon_sym_DOLLARconcat] = ACTIONS(1186), - [anon_sym_DOLLAReval] = ACTIONS(1186), - [anon_sym_DOLLARis_const] = ACTIONS(1186), - [anon_sym_DOLLARsizeof] = ACTIONS(1186), - [anon_sym_DOLLARstringify] = ACTIONS(1186), - [anon_sym_DOLLARand] = ACTIONS(1186), - [anon_sym_DOLLARdefined] = ACTIONS(1186), - [anon_sym_DOLLARembed] = ACTIONS(1186), - [anon_sym_DOLLARor] = ACTIONS(1186), - [anon_sym_DOLLARfeature] = ACTIONS(1186), - [anon_sym_DOLLARassignable] = ACTIONS(1186), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_PLUS_PLUS] = ACTIONS(1188), - [anon_sym_DASH_DASH] = ACTIONS(1188), - [anon_sym_typeid] = ACTIONS(1186), - [anon_sym_LBRACE_PIPE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1186), - [anon_sym_bool] = ACTIONS(1186), - [anon_sym_char] = ACTIONS(1186), - [anon_sym_ichar] = ACTIONS(1186), - [anon_sym_short] = ACTIONS(1186), - [anon_sym_ushort] = ACTIONS(1186), - [anon_sym_uint] = ACTIONS(1186), - [anon_sym_long] = ACTIONS(1186), - [anon_sym_ulong] = ACTIONS(1186), - [anon_sym_int128] = ACTIONS(1186), - [anon_sym_uint128] = ACTIONS(1186), - [anon_sym_float] = ACTIONS(1186), - [anon_sym_double] = ACTIONS(1186), - [anon_sym_float16] = ACTIONS(1186), - [anon_sym_bfloat16] = ACTIONS(1186), - [anon_sym_float128] = ACTIONS(1186), - [anon_sym_iptr] = ACTIONS(1186), - [anon_sym_uptr] = ACTIONS(1186), - [anon_sym_isz] = ACTIONS(1186), - [anon_sym_usz] = ACTIONS(1186), - [anon_sym_anyfault] = ACTIONS(1186), - [anon_sym_any] = ACTIONS(1186), - [anon_sym_DOLLARtypeof] = ACTIONS(1186), - [anon_sym_DOLLARtypefrom] = ACTIONS(1186), - [anon_sym_DOLLARvatype] = ACTIONS(1186), - [anon_sym_DOLLARevaltype] = ACTIONS(1186), - [sym_real_literal] = ACTIONS(1188), + [sym_ident] = ACTIONS(1581), + [sym_integer_literal] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1583), + [anon_sym_DQUOTE] = ACTIONS(1583), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_bytes_literal] = ACTIONS(1583), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1581), + [sym_at_ident] = ACTIONS(1583), + [sym_hash_ident] = ACTIONS(1583), + [sym_type_ident] = ACTIONS(1583), + [sym_ct_type_ident] = ACTIONS(1583), + [sym_const_ident] = ACTIONS(1581), + [sym_builtin] = ACTIONS(1583), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_AMP] = ACTIONS(1581), + [anon_sym_static] = ACTIONS(1581), + [anon_sym_tlocal] = ACTIONS(1581), + [anon_sym_SEMI] = ACTIONS(1583), + [anon_sym_fn] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_const] = ACTIONS(1581), + [anon_sym_var] = ACTIONS(1581), + [anon_sym_return] = ACTIONS(1581), + [anon_sym_continue] = ACTIONS(1581), + [anon_sym_break] = ACTIONS(1581), + [anon_sym_defer] = ACTIONS(1581), + [anon_sym_assert] = ACTIONS(1581), + [anon_sym_nextcase] = ACTIONS(1581), + [anon_sym_switch] = ACTIONS(1581), + [anon_sym_AMP_AMP] = ACTIONS(1583), + [anon_sym_if] = ACTIONS(1581), + [anon_sym_for] = ACTIONS(1581), + [anon_sym_foreach] = ACTIONS(1581), + [anon_sym_foreach_r] = ACTIONS(1581), + [anon_sym_while] = ACTIONS(1581), + [anon_sym_do] = ACTIONS(1581), + [anon_sym_int] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1581), + [anon_sym_DASH] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1583), + [anon_sym_asm] = ACTIONS(1581), + [anon_sym_DOLLARassert] = ACTIONS(1581), + [anon_sym_DOLLARerror] = ACTIONS(1581), + [anon_sym_DOLLARecho] = ACTIONS(1581), + [anon_sym_DOLLARif] = ACTIONS(1581), + [anon_sym_DOLLARendif] = ACTIONS(1581), + [anon_sym_DOLLARelse] = ACTIONS(1581), + [anon_sym_DOLLARswitch] = ACTIONS(1581), + [anon_sym_DOLLARfor] = ACTIONS(1581), + [anon_sym_DOLLARforeach] = ACTIONS(1581), + [anon_sym_DOLLARalignof] = ACTIONS(1581), + [anon_sym_DOLLARextnameof] = ACTIONS(1581), + [anon_sym_DOLLARnameof] = ACTIONS(1581), + [anon_sym_DOLLARoffsetof] = ACTIONS(1581), + [anon_sym_DOLLARqnameof] = ACTIONS(1581), + [anon_sym_DOLLARvaconst] = ACTIONS(1581), + [anon_sym_DOLLARvaarg] = ACTIONS(1581), + [anon_sym_DOLLARvaref] = ACTIONS(1581), + [anon_sym_DOLLARvaexpr] = ACTIONS(1581), + [anon_sym_true] = ACTIONS(1581), + [anon_sym_false] = ACTIONS(1581), + [anon_sym_null] = ACTIONS(1581), + [anon_sym_DOLLARvacount] = ACTIONS(1581), + [anon_sym_DOLLARappend] = ACTIONS(1581), + [anon_sym_DOLLARconcat] = ACTIONS(1581), + [anon_sym_DOLLAReval] = ACTIONS(1581), + [anon_sym_DOLLARis_const] = ACTIONS(1581), + [anon_sym_DOLLARsizeof] = ACTIONS(1581), + [anon_sym_DOLLARstringify] = ACTIONS(1581), + [anon_sym_DOLLARand] = ACTIONS(1581), + [anon_sym_DOLLARdefined] = ACTIONS(1581), + [anon_sym_DOLLARembed] = ACTIONS(1581), + [anon_sym_DOLLARor] = ACTIONS(1581), + [anon_sym_DOLLARfeature] = ACTIONS(1581), + [anon_sym_DOLLARassignable] = ACTIONS(1581), + [anon_sym_BANG] = ACTIONS(1583), + [anon_sym_TILDE] = ACTIONS(1583), + [anon_sym_PLUS_PLUS] = ACTIONS(1583), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [anon_sym_typeid] = ACTIONS(1581), + [anon_sym_LBRACE_PIPE] = ACTIONS(1583), + [anon_sym_void] = ACTIONS(1581), + [anon_sym_bool] = ACTIONS(1581), + [anon_sym_char] = ACTIONS(1581), + [anon_sym_ichar] = ACTIONS(1581), + [anon_sym_short] = ACTIONS(1581), + [anon_sym_ushort] = ACTIONS(1581), + [anon_sym_uint] = ACTIONS(1581), + [anon_sym_long] = ACTIONS(1581), + [anon_sym_ulong] = ACTIONS(1581), + [anon_sym_int128] = ACTIONS(1581), + [anon_sym_uint128] = ACTIONS(1581), + [anon_sym_float] = ACTIONS(1581), + [anon_sym_double] = ACTIONS(1581), + [anon_sym_float16] = ACTIONS(1581), + [anon_sym_bfloat16] = ACTIONS(1581), + [anon_sym_float128] = ACTIONS(1581), + [anon_sym_iptr] = ACTIONS(1581), + [anon_sym_uptr] = ACTIONS(1581), + [anon_sym_isz] = ACTIONS(1581), + [anon_sym_usz] = ACTIONS(1581), + [anon_sym_anyfault] = ACTIONS(1581), + [anon_sym_any] = ACTIONS(1581), + [anon_sym_DOLLARtypeof] = ACTIONS(1581), + [anon_sym_DOLLARtypefrom] = ACTIONS(1581), + [anon_sym_DOLLARvatype] = ACTIONS(1581), + [anon_sym_DOLLARevaltype] = ACTIONS(1581), + [sym_real_literal] = ACTIONS(1583), }, [557] = { [sym_line_comment] = STATE(557), [sym_doc_comment] = STATE(557), [sym_block_comment] = STATE(557), - [sym_ident] = ACTIONS(1572), - [sym_integer_literal] = ACTIONS(1574), - [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_DQUOTE] = ACTIONS(1574), - [anon_sym_BQUOTE] = ACTIONS(1574), - [sym_bytes_literal] = ACTIONS(1574), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1572), - [sym_at_ident] = ACTIONS(1574), - [sym_hash_ident] = ACTIONS(1574), - [sym_type_ident] = ACTIONS(1574), - [sym_ct_type_ident] = ACTIONS(1574), - [sym_const_ident] = ACTIONS(1572), - [sym_builtin] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1574), - [anon_sym_AMP] = ACTIONS(1572), - [anon_sym_static] = ACTIONS(1572), - [anon_sym_tlocal] = ACTIONS(1572), - [anon_sym_SEMI] = ACTIONS(1574), - [anon_sym_fn] = ACTIONS(1572), - [anon_sym_LBRACE] = ACTIONS(1572), - [anon_sym_const] = ACTIONS(1572), - [anon_sym_var] = ACTIONS(1572), - [anon_sym_return] = ACTIONS(1572), - [anon_sym_continue] = ACTIONS(1572), - [anon_sym_break] = ACTIONS(1572), - [anon_sym_defer] = ACTIONS(1572), - [anon_sym_assert] = ACTIONS(1572), - [anon_sym_nextcase] = ACTIONS(1572), - [anon_sym_switch] = ACTIONS(1572), - [anon_sym_AMP_AMP] = ACTIONS(1574), - [anon_sym_if] = ACTIONS(1572), - [anon_sym_for] = ACTIONS(1572), - [anon_sym_foreach] = ACTIONS(1572), - [anon_sym_foreach_r] = ACTIONS(1572), - [anon_sym_while] = ACTIONS(1572), - [anon_sym_do] = ACTIONS(1572), - [anon_sym_int] = ACTIONS(1572), - [anon_sym_PLUS] = ACTIONS(1572), - [anon_sym_DASH] = ACTIONS(1572), - [anon_sym_STAR] = ACTIONS(1574), - [anon_sym_asm] = ACTIONS(1572), - [anon_sym_DOLLARassert] = ACTIONS(1572), - [anon_sym_DOLLARerror] = ACTIONS(1572), - [anon_sym_DOLLARecho] = ACTIONS(1572), - [anon_sym_DOLLARif] = ACTIONS(1572), - [anon_sym_DOLLARendif] = ACTIONS(1572), - [anon_sym_DOLLARelse] = ACTIONS(1572), - [anon_sym_DOLLARswitch] = ACTIONS(1572), - [anon_sym_DOLLARfor] = ACTIONS(1572), - [anon_sym_DOLLARforeach] = ACTIONS(1572), - [anon_sym_DOLLARalignof] = ACTIONS(1572), - [anon_sym_DOLLARextnameof] = ACTIONS(1572), - [anon_sym_DOLLARnameof] = ACTIONS(1572), - [anon_sym_DOLLARoffsetof] = ACTIONS(1572), - [anon_sym_DOLLARqnameof] = ACTIONS(1572), - [anon_sym_DOLLARvaconst] = ACTIONS(1572), - [anon_sym_DOLLARvaarg] = ACTIONS(1572), - [anon_sym_DOLLARvaref] = ACTIONS(1572), - [anon_sym_DOLLARvaexpr] = ACTIONS(1572), - [anon_sym_true] = ACTIONS(1572), - [anon_sym_false] = ACTIONS(1572), - [anon_sym_null] = ACTIONS(1572), - [anon_sym_DOLLARvacount] = ACTIONS(1572), - [anon_sym_DOLLARappend] = ACTIONS(1572), - [anon_sym_DOLLARconcat] = ACTIONS(1572), - [anon_sym_DOLLAReval] = ACTIONS(1572), - [anon_sym_DOLLARis_const] = ACTIONS(1572), - [anon_sym_DOLLARsizeof] = ACTIONS(1572), - [anon_sym_DOLLARstringify] = ACTIONS(1572), - [anon_sym_DOLLARand] = ACTIONS(1572), - [anon_sym_DOLLARdefined] = ACTIONS(1572), - [anon_sym_DOLLARembed] = ACTIONS(1572), - [anon_sym_DOLLARor] = ACTIONS(1572), - [anon_sym_DOLLARfeature] = ACTIONS(1572), - [anon_sym_DOLLARassignable] = ACTIONS(1572), - [anon_sym_BANG] = ACTIONS(1574), - [anon_sym_TILDE] = ACTIONS(1574), - [anon_sym_PLUS_PLUS] = ACTIONS(1574), - [anon_sym_DASH_DASH] = ACTIONS(1574), - [anon_sym_typeid] = ACTIONS(1572), - [anon_sym_LBRACE_PIPE] = ACTIONS(1574), - [anon_sym_void] = ACTIONS(1572), - [anon_sym_bool] = ACTIONS(1572), - [anon_sym_char] = ACTIONS(1572), - [anon_sym_ichar] = ACTIONS(1572), - [anon_sym_short] = ACTIONS(1572), - [anon_sym_ushort] = ACTIONS(1572), - [anon_sym_uint] = ACTIONS(1572), - [anon_sym_long] = ACTIONS(1572), - [anon_sym_ulong] = ACTIONS(1572), - [anon_sym_int128] = ACTIONS(1572), - [anon_sym_uint128] = ACTIONS(1572), - [anon_sym_float] = ACTIONS(1572), - [anon_sym_double] = ACTIONS(1572), - [anon_sym_float16] = ACTIONS(1572), - [anon_sym_bfloat16] = ACTIONS(1572), - [anon_sym_float128] = ACTIONS(1572), - [anon_sym_iptr] = ACTIONS(1572), - [anon_sym_uptr] = ACTIONS(1572), - [anon_sym_isz] = ACTIONS(1572), - [anon_sym_usz] = ACTIONS(1572), - [anon_sym_anyfault] = ACTIONS(1572), - [anon_sym_any] = ACTIONS(1572), - [anon_sym_DOLLARtypeof] = ACTIONS(1572), - [anon_sym_DOLLARtypefrom] = ACTIONS(1572), - [anon_sym_DOLLARvatype] = ACTIONS(1572), - [anon_sym_DOLLARevaltype] = ACTIONS(1572), - [sym_real_literal] = ACTIONS(1574), + [sym_ident] = ACTIONS(1637), + [sym_integer_literal] = ACTIONS(1639), + [anon_sym_SQUOTE] = ACTIONS(1639), + [anon_sym_DQUOTE] = ACTIONS(1639), + [anon_sym_BQUOTE] = ACTIONS(1639), + [sym_bytes_literal] = ACTIONS(1639), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1637), + [sym_at_ident] = ACTIONS(1639), + [sym_hash_ident] = ACTIONS(1639), + [sym_type_ident] = ACTIONS(1639), + [sym_ct_type_ident] = ACTIONS(1639), + [sym_const_ident] = ACTIONS(1637), + [sym_builtin] = ACTIONS(1639), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_AMP] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1637), + [anon_sym_tlocal] = ACTIONS(1637), + [anon_sym_SEMI] = ACTIONS(1639), + [anon_sym_fn] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(1637), + [anon_sym_const] = ACTIONS(1637), + [anon_sym_var] = ACTIONS(1637), + [anon_sym_return] = ACTIONS(1637), + [anon_sym_continue] = ACTIONS(1637), + [anon_sym_break] = ACTIONS(1637), + [anon_sym_defer] = ACTIONS(1637), + [anon_sym_assert] = ACTIONS(1637), + [anon_sym_nextcase] = ACTIONS(1637), + [anon_sym_switch] = ACTIONS(1637), + [anon_sym_AMP_AMP] = ACTIONS(1639), + [anon_sym_if] = ACTIONS(1637), + [anon_sym_for] = ACTIONS(1637), + [anon_sym_foreach] = ACTIONS(1637), + [anon_sym_foreach_r] = ACTIONS(1637), + [anon_sym_while] = ACTIONS(1637), + [anon_sym_do] = ACTIONS(1637), + [anon_sym_int] = ACTIONS(1637), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1639), + [anon_sym_asm] = ACTIONS(1637), + [anon_sym_DOLLARassert] = ACTIONS(1637), + [anon_sym_DOLLARerror] = ACTIONS(1637), + [anon_sym_DOLLARecho] = ACTIONS(1637), + [anon_sym_DOLLARif] = ACTIONS(1637), + [anon_sym_DOLLARendif] = ACTIONS(1637), + [anon_sym_DOLLARelse] = ACTIONS(1637), + [anon_sym_DOLLARswitch] = ACTIONS(1637), + [anon_sym_DOLLARfor] = ACTIONS(1637), + [anon_sym_DOLLARforeach] = ACTIONS(1637), + [anon_sym_DOLLARalignof] = ACTIONS(1637), + [anon_sym_DOLLARextnameof] = ACTIONS(1637), + [anon_sym_DOLLARnameof] = ACTIONS(1637), + [anon_sym_DOLLARoffsetof] = ACTIONS(1637), + [anon_sym_DOLLARqnameof] = ACTIONS(1637), + [anon_sym_DOLLARvaconst] = ACTIONS(1637), + [anon_sym_DOLLARvaarg] = ACTIONS(1637), + [anon_sym_DOLLARvaref] = ACTIONS(1637), + [anon_sym_DOLLARvaexpr] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1637), + [anon_sym_false] = ACTIONS(1637), + [anon_sym_null] = ACTIONS(1637), + [anon_sym_DOLLARvacount] = ACTIONS(1637), + [anon_sym_DOLLARappend] = ACTIONS(1637), + [anon_sym_DOLLARconcat] = ACTIONS(1637), + [anon_sym_DOLLAReval] = ACTIONS(1637), + [anon_sym_DOLLARis_const] = ACTIONS(1637), + [anon_sym_DOLLARsizeof] = ACTIONS(1637), + [anon_sym_DOLLARstringify] = ACTIONS(1637), + [anon_sym_DOLLARand] = ACTIONS(1637), + [anon_sym_DOLLARdefined] = ACTIONS(1637), + [anon_sym_DOLLARembed] = ACTIONS(1637), + [anon_sym_DOLLARor] = ACTIONS(1637), + [anon_sym_DOLLARfeature] = ACTIONS(1637), + [anon_sym_DOLLARassignable] = ACTIONS(1637), + [anon_sym_BANG] = ACTIONS(1639), + [anon_sym_TILDE] = ACTIONS(1639), + [anon_sym_PLUS_PLUS] = ACTIONS(1639), + [anon_sym_DASH_DASH] = ACTIONS(1639), + [anon_sym_typeid] = ACTIONS(1637), + [anon_sym_LBRACE_PIPE] = ACTIONS(1639), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_bool] = ACTIONS(1637), + [anon_sym_char] = ACTIONS(1637), + [anon_sym_ichar] = ACTIONS(1637), + [anon_sym_short] = ACTIONS(1637), + [anon_sym_ushort] = ACTIONS(1637), + [anon_sym_uint] = ACTIONS(1637), + [anon_sym_long] = ACTIONS(1637), + [anon_sym_ulong] = ACTIONS(1637), + [anon_sym_int128] = ACTIONS(1637), + [anon_sym_uint128] = ACTIONS(1637), + [anon_sym_float] = ACTIONS(1637), + [anon_sym_double] = ACTIONS(1637), + [anon_sym_float16] = ACTIONS(1637), + [anon_sym_bfloat16] = ACTIONS(1637), + [anon_sym_float128] = ACTIONS(1637), + [anon_sym_iptr] = ACTIONS(1637), + [anon_sym_uptr] = ACTIONS(1637), + [anon_sym_isz] = ACTIONS(1637), + [anon_sym_usz] = ACTIONS(1637), + [anon_sym_anyfault] = ACTIONS(1637), + [anon_sym_any] = ACTIONS(1637), + [anon_sym_DOLLARtypeof] = ACTIONS(1637), + [anon_sym_DOLLARtypefrom] = ACTIONS(1637), + [anon_sym_DOLLARvatype] = ACTIONS(1637), + [anon_sym_DOLLARevaltype] = ACTIONS(1637), + [sym_real_literal] = ACTIONS(1639), }, [558] = { [sym_line_comment] = STATE(558), [sym_doc_comment] = STATE(558), [sym_block_comment] = STATE(558), - [sym_ident] = ACTIONS(1492), - [sym_integer_literal] = ACTIONS(1494), - [anon_sym_SQUOTE] = ACTIONS(1494), - [anon_sym_DQUOTE] = ACTIONS(1494), - [anon_sym_BQUOTE] = ACTIONS(1494), - [sym_bytes_literal] = ACTIONS(1494), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1492), - [sym_at_ident] = ACTIONS(1494), - [sym_hash_ident] = ACTIONS(1494), - [sym_type_ident] = ACTIONS(1494), - [sym_ct_type_ident] = ACTIONS(1494), - [sym_const_ident] = ACTIONS(1492), - [sym_builtin] = ACTIONS(1494), - [anon_sym_LPAREN] = ACTIONS(1494), - [anon_sym_AMP] = ACTIONS(1492), - [anon_sym_static] = ACTIONS(1492), - [anon_sym_tlocal] = ACTIONS(1492), - [anon_sym_SEMI] = ACTIONS(1494), - [anon_sym_fn] = ACTIONS(1492), - [anon_sym_LBRACE] = ACTIONS(1492), - [anon_sym_const] = ACTIONS(1492), - [anon_sym_var] = ACTIONS(1492), - [anon_sym_return] = ACTIONS(1492), - [anon_sym_continue] = ACTIONS(1492), - [anon_sym_break] = ACTIONS(1492), - [anon_sym_defer] = ACTIONS(1492), - [anon_sym_assert] = ACTIONS(1492), - [anon_sym_nextcase] = ACTIONS(1492), - [anon_sym_switch] = ACTIONS(1492), - [anon_sym_AMP_AMP] = ACTIONS(1494), - [anon_sym_if] = ACTIONS(1492), - [anon_sym_for] = ACTIONS(1492), - [anon_sym_foreach] = ACTIONS(1492), - [anon_sym_foreach_r] = ACTIONS(1492), - [anon_sym_while] = ACTIONS(1492), - [anon_sym_do] = ACTIONS(1492), - [anon_sym_int] = ACTIONS(1492), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1492), - [anon_sym_STAR] = ACTIONS(1494), - [anon_sym_asm] = ACTIONS(1492), - [anon_sym_DOLLARassert] = ACTIONS(1492), - [anon_sym_DOLLARerror] = ACTIONS(1492), - [anon_sym_DOLLARecho] = ACTIONS(1492), - [anon_sym_DOLLARif] = ACTIONS(1492), - [anon_sym_DOLLARendif] = ACTIONS(1492), - [anon_sym_DOLLARelse] = ACTIONS(1492), - [anon_sym_DOLLARswitch] = ACTIONS(1492), - [anon_sym_DOLLARfor] = ACTIONS(1492), - [anon_sym_DOLLARforeach] = ACTIONS(1492), - [anon_sym_DOLLARalignof] = ACTIONS(1492), - [anon_sym_DOLLARextnameof] = ACTIONS(1492), - [anon_sym_DOLLARnameof] = ACTIONS(1492), - [anon_sym_DOLLARoffsetof] = ACTIONS(1492), - [anon_sym_DOLLARqnameof] = ACTIONS(1492), - [anon_sym_DOLLARvaconst] = ACTIONS(1492), - [anon_sym_DOLLARvaarg] = ACTIONS(1492), - [anon_sym_DOLLARvaref] = ACTIONS(1492), - [anon_sym_DOLLARvaexpr] = ACTIONS(1492), - [anon_sym_true] = ACTIONS(1492), - [anon_sym_false] = ACTIONS(1492), - [anon_sym_null] = ACTIONS(1492), - [anon_sym_DOLLARvacount] = ACTIONS(1492), - [anon_sym_DOLLARappend] = ACTIONS(1492), - [anon_sym_DOLLARconcat] = ACTIONS(1492), - [anon_sym_DOLLAReval] = ACTIONS(1492), - [anon_sym_DOLLARis_const] = ACTIONS(1492), - [anon_sym_DOLLARsizeof] = ACTIONS(1492), - [anon_sym_DOLLARstringify] = ACTIONS(1492), - [anon_sym_DOLLARand] = ACTIONS(1492), - [anon_sym_DOLLARdefined] = ACTIONS(1492), - [anon_sym_DOLLARembed] = ACTIONS(1492), - [anon_sym_DOLLARor] = ACTIONS(1492), - [anon_sym_DOLLARfeature] = ACTIONS(1492), - [anon_sym_DOLLARassignable] = ACTIONS(1492), - [anon_sym_BANG] = ACTIONS(1494), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_DASH_DASH] = ACTIONS(1494), - [anon_sym_typeid] = ACTIONS(1492), - [anon_sym_LBRACE_PIPE] = ACTIONS(1494), - [anon_sym_void] = ACTIONS(1492), - [anon_sym_bool] = ACTIONS(1492), - [anon_sym_char] = ACTIONS(1492), - [anon_sym_ichar] = ACTIONS(1492), - [anon_sym_short] = ACTIONS(1492), - [anon_sym_ushort] = ACTIONS(1492), - [anon_sym_uint] = ACTIONS(1492), - [anon_sym_long] = ACTIONS(1492), - [anon_sym_ulong] = ACTIONS(1492), - [anon_sym_int128] = ACTIONS(1492), - [anon_sym_uint128] = ACTIONS(1492), - [anon_sym_float] = ACTIONS(1492), - [anon_sym_double] = ACTIONS(1492), - [anon_sym_float16] = ACTIONS(1492), - [anon_sym_bfloat16] = ACTIONS(1492), - [anon_sym_float128] = ACTIONS(1492), - [anon_sym_iptr] = ACTIONS(1492), - [anon_sym_uptr] = ACTIONS(1492), - [anon_sym_isz] = ACTIONS(1492), - [anon_sym_usz] = ACTIONS(1492), - [anon_sym_anyfault] = ACTIONS(1492), - [anon_sym_any] = ACTIONS(1492), - [anon_sym_DOLLARtypeof] = ACTIONS(1492), - [anon_sym_DOLLARtypefrom] = ACTIONS(1492), - [anon_sym_DOLLARvatype] = ACTIONS(1492), - [anon_sym_DOLLARevaltype] = ACTIONS(1492), - [sym_real_literal] = ACTIONS(1494), + [sym_ident] = ACTIONS(1569), + [sym_integer_literal] = ACTIONS(1571), + [anon_sym_SQUOTE] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1571), + [anon_sym_BQUOTE] = ACTIONS(1571), + [sym_bytes_literal] = ACTIONS(1571), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1569), + [sym_at_ident] = ACTIONS(1571), + [sym_hash_ident] = ACTIONS(1571), + [sym_type_ident] = ACTIONS(1571), + [sym_ct_type_ident] = ACTIONS(1571), + [sym_const_ident] = ACTIONS(1569), + [sym_builtin] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1571), + [anon_sym_AMP] = ACTIONS(1569), + [anon_sym_static] = ACTIONS(1569), + [anon_sym_tlocal] = ACTIONS(1569), + [anon_sym_SEMI] = ACTIONS(1571), + [anon_sym_fn] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1569), + [anon_sym_const] = ACTIONS(1569), + [anon_sym_var] = ACTIONS(1569), + [anon_sym_return] = ACTIONS(1569), + [anon_sym_continue] = ACTIONS(1569), + [anon_sym_break] = ACTIONS(1569), + [anon_sym_defer] = ACTIONS(1569), + [anon_sym_assert] = ACTIONS(1569), + [anon_sym_nextcase] = ACTIONS(1569), + [anon_sym_switch] = ACTIONS(1569), + [anon_sym_AMP_AMP] = ACTIONS(1571), + [anon_sym_if] = ACTIONS(1569), + [anon_sym_for] = ACTIONS(1569), + [anon_sym_foreach] = ACTIONS(1569), + [anon_sym_foreach_r] = ACTIONS(1569), + [anon_sym_while] = ACTIONS(1569), + [anon_sym_do] = ACTIONS(1569), + [anon_sym_int] = ACTIONS(1569), + [anon_sym_PLUS] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_STAR] = ACTIONS(1571), + [anon_sym_asm] = ACTIONS(1569), + [anon_sym_DOLLARassert] = ACTIONS(1569), + [anon_sym_DOLLARerror] = ACTIONS(1569), + [anon_sym_DOLLARecho] = ACTIONS(1569), + [anon_sym_DOLLARif] = ACTIONS(1569), + [anon_sym_DOLLARendif] = ACTIONS(1569), + [anon_sym_DOLLARelse] = ACTIONS(1569), + [anon_sym_DOLLARswitch] = ACTIONS(1569), + [anon_sym_DOLLARfor] = ACTIONS(1569), + [anon_sym_DOLLARforeach] = ACTIONS(1569), + [anon_sym_DOLLARalignof] = ACTIONS(1569), + [anon_sym_DOLLARextnameof] = ACTIONS(1569), + [anon_sym_DOLLARnameof] = ACTIONS(1569), + [anon_sym_DOLLARoffsetof] = ACTIONS(1569), + [anon_sym_DOLLARqnameof] = ACTIONS(1569), + [anon_sym_DOLLARvaconst] = ACTIONS(1569), + [anon_sym_DOLLARvaarg] = ACTIONS(1569), + [anon_sym_DOLLARvaref] = ACTIONS(1569), + [anon_sym_DOLLARvaexpr] = ACTIONS(1569), + [anon_sym_true] = ACTIONS(1569), + [anon_sym_false] = ACTIONS(1569), + [anon_sym_null] = ACTIONS(1569), + [anon_sym_DOLLARvacount] = ACTIONS(1569), + [anon_sym_DOLLARappend] = ACTIONS(1569), + [anon_sym_DOLLARconcat] = ACTIONS(1569), + [anon_sym_DOLLAReval] = ACTIONS(1569), + [anon_sym_DOLLARis_const] = ACTIONS(1569), + [anon_sym_DOLLARsizeof] = ACTIONS(1569), + [anon_sym_DOLLARstringify] = ACTIONS(1569), + [anon_sym_DOLLARand] = ACTIONS(1569), + [anon_sym_DOLLARdefined] = ACTIONS(1569), + [anon_sym_DOLLARembed] = ACTIONS(1569), + [anon_sym_DOLLARor] = ACTIONS(1569), + [anon_sym_DOLLARfeature] = ACTIONS(1569), + [anon_sym_DOLLARassignable] = ACTIONS(1569), + [anon_sym_BANG] = ACTIONS(1571), + [anon_sym_TILDE] = ACTIONS(1571), + [anon_sym_PLUS_PLUS] = ACTIONS(1571), + [anon_sym_DASH_DASH] = ACTIONS(1571), + [anon_sym_typeid] = ACTIONS(1569), + [anon_sym_LBRACE_PIPE] = ACTIONS(1571), + [anon_sym_void] = ACTIONS(1569), + [anon_sym_bool] = ACTIONS(1569), + [anon_sym_char] = ACTIONS(1569), + [anon_sym_ichar] = ACTIONS(1569), + [anon_sym_short] = ACTIONS(1569), + [anon_sym_ushort] = ACTIONS(1569), + [anon_sym_uint] = ACTIONS(1569), + [anon_sym_long] = ACTIONS(1569), + [anon_sym_ulong] = ACTIONS(1569), + [anon_sym_int128] = ACTIONS(1569), + [anon_sym_uint128] = ACTIONS(1569), + [anon_sym_float] = ACTIONS(1569), + [anon_sym_double] = ACTIONS(1569), + [anon_sym_float16] = ACTIONS(1569), + [anon_sym_bfloat16] = ACTIONS(1569), + [anon_sym_float128] = ACTIONS(1569), + [anon_sym_iptr] = ACTIONS(1569), + [anon_sym_uptr] = ACTIONS(1569), + [anon_sym_isz] = ACTIONS(1569), + [anon_sym_usz] = ACTIONS(1569), + [anon_sym_anyfault] = ACTIONS(1569), + [anon_sym_any] = ACTIONS(1569), + [anon_sym_DOLLARtypeof] = ACTIONS(1569), + [anon_sym_DOLLARtypefrom] = ACTIONS(1569), + [anon_sym_DOLLARvatype] = ACTIONS(1569), + [anon_sym_DOLLARevaltype] = ACTIONS(1569), + [sym_real_literal] = ACTIONS(1571), }, [559] = { [sym_line_comment] = STATE(559), [sym_doc_comment] = STATE(559), [sym_block_comment] = STATE(559), - [sym_ident] = ACTIONS(1496), - [sym_integer_literal] = ACTIONS(1498), - [anon_sym_SQUOTE] = ACTIONS(1498), - [anon_sym_DQUOTE] = ACTIONS(1498), - [anon_sym_BQUOTE] = ACTIONS(1498), - [sym_bytes_literal] = ACTIONS(1498), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1496), - [sym_at_ident] = ACTIONS(1498), - [sym_hash_ident] = ACTIONS(1498), - [sym_type_ident] = ACTIONS(1498), - [sym_ct_type_ident] = ACTIONS(1498), - [sym_const_ident] = ACTIONS(1496), - [sym_builtin] = ACTIONS(1498), - [anon_sym_LPAREN] = ACTIONS(1498), - [anon_sym_AMP] = ACTIONS(1496), - [anon_sym_static] = ACTIONS(1496), - [anon_sym_tlocal] = ACTIONS(1496), - [anon_sym_SEMI] = ACTIONS(1498), - [anon_sym_fn] = ACTIONS(1496), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_const] = ACTIONS(1496), - [anon_sym_var] = ACTIONS(1496), - [anon_sym_return] = ACTIONS(1496), - [anon_sym_continue] = ACTIONS(1496), - [anon_sym_break] = ACTIONS(1496), - [anon_sym_defer] = ACTIONS(1496), - [anon_sym_assert] = ACTIONS(1496), - [anon_sym_nextcase] = ACTIONS(1496), - [anon_sym_switch] = ACTIONS(1496), - [anon_sym_AMP_AMP] = ACTIONS(1498), - [anon_sym_if] = ACTIONS(1496), - [anon_sym_for] = ACTIONS(1496), - [anon_sym_foreach] = ACTIONS(1496), - [anon_sym_foreach_r] = ACTIONS(1496), - [anon_sym_while] = ACTIONS(1496), - [anon_sym_do] = ACTIONS(1496), - [anon_sym_int] = ACTIONS(1496), - [anon_sym_PLUS] = ACTIONS(1496), - [anon_sym_DASH] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(1498), - [anon_sym_asm] = ACTIONS(1496), - [anon_sym_DOLLARassert] = ACTIONS(1496), - [anon_sym_DOLLARerror] = ACTIONS(1496), - [anon_sym_DOLLARecho] = ACTIONS(1496), - [anon_sym_DOLLARif] = ACTIONS(1496), - [anon_sym_DOLLARendif] = ACTIONS(1496), - [anon_sym_DOLLARelse] = ACTIONS(1496), - [anon_sym_DOLLARswitch] = ACTIONS(1496), - [anon_sym_DOLLARfor] = ACTIONS(1496), - [anon_sym_DOLLARforeach] = ACTIONS(1496), - [anon_sym_DOLLARalignof] = ACTIONS(1496), - [anon_sym_DOLLARextnameof] = ACTIONS(1496), - [anon_sym_DOLLARnameof] = ACTIONS(1496), - [anon_sym_DOLLARoffsetof] = ACTIONS(1496), - [anon_sym_DOLLARqnameof] = ACTIONS(1496), - [anon_sym_DOLLARvaconst] = ACTIONS(1496), - [anon_sym_DOLLARvaarg] = ACTIONS(1496), - [anon_sym_DOLLARvaref] = ACTIONS(1496), - [anon_sym_DOLLARvaexpr] = ACTIONS(1496), - [anon_sym_true] = ACTIONS(1496), - [anon_sym_false] = ACTIONS(1496), - [anon_sym_null] = ACTIONS(1496), - [anon_sym_DOLLARvacount] = ACTIONS(1496), - [anon_sym_DOLLARappend] = ACTIONS(1496), - [anon_sym_DOLLARconcat] = ACTIONS(1496), - [anon_sym_DOLLAReval] = ACTIONS(1496), - [anon_sym_DOLLARis_const] = ACTIONS(1496), - [anon_sym_DOLLARsizeof] = ACTIONS(1496), - [anon_sym_DOLLARstringify] = ACTIONS(1496), - [anon_sym_DOLLARand] = ACTIONS(1496), - [anon_sym_DOLLARdefined] = ACTIONS(1496), - [anon_sym_DOLLARembed] = ACTIONS(1496), - [anon_sym_DOLLARor] = ACTIONS(1496), - [anon_sym_DOLLARfeature] = ACTIONS(1496), - [anon_sym_DOLLARassignable] = ACTIONS(1496), - [anon_sym_BANG] = ACTIONS(1498), - [anon_sym_TILDE] = ACTIONS(1498), - [anon_sym_PLUS_PLUS] = ACTIONS(1498), - [anon_sym_DASH_DASH] = ACTIONS(1498), - [anon_sym_typeid] = ACTIONS(1496), - [anon_sym_LBRACE_PIPE] = ACTIONS(1498), - [anon_sym_void] = ACTIONS(1496), - [anon_sym_bool] = ACTIONS(1496), - [anon_sym_char] = ACTIONS(1496), - [anon_sym_ichar] = ACTIONS(1496), - [anon_sym_short] = ACTIONS(1496), - [anon_sym_ushort] = ACTIONS(1496), - [anon_sym_uint] = ACTIONS(1496), - [anon_sym_long] = ACTIONS(1496), - [anon_sym_ulong] = ACTIONS(1496), - [anon_sym_int128] = ACTIONS(1496), - [anon_sym_uint128] = ACTIONS(1496), - [anon_sym_float] = ACTIONS(1496), - [anon_sym_double] = ACTIONS(1496), - [anon_sym_float16] = ACTIONS(1496), - [anon_sym_bfloat16] = ACTIONS(1496), - [anon_sym_float128] = ACTIONS(1496), - [anon_sym_iptr] = ACTIONS(1496), - [anon_sym_uptr] = ACTIONS(1496), - [anon_sym_isz] = ACTIONS(1496), - [anon_sym_usz] = ACTIONS(1496), - [anon_sym_anyfault] = ACTIONS(1496), - [anon_sym_any] = ACTIONS(1496), - [anon_sym_DOLLARtypeof] = ACTIONS(1496), - [anon_sym_DOLLARtypefrom] = ACTIONS(1496), - [anon_sym_DOLLARvatype] = ACTIONS(1496), - [anon_sym_DOLLARevaltype] = ACTIONS(1496), - [sym_real_literal] = ACTIONS(1498), + [sym_ident] = ACTIONS(1549), + [sym_integer_literal] = ACTIONS(1551), + [anon_sym_SQUOTE] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [anon_sym_BQUOTE] = ACTIONS(1551), + [sym_bytes_literal] = ACTIONS(1551), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1549), + [sym_at_ident] = ACTIONS(1551), + [sym_hash_ident] = ACTIONS(1551), + [sym_type_ident] = ACTIONS(1551), + [sym_ct_type_ident] = ACTIONS(1551), + [sym_const_ident] = ACTIONS(1549), + [sym_builtin] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_AMP] = ACTIONS(1549), + [anon_sym_static] = ACTIONS(1549), + [anon_sym_tlocal] = ACTIONS(1549), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_fn] = ACTIONS(1549), + [anon_sym_LBRACE] = ACTIONS(1549), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_var] = ACTIONS(1549), + [anon_sym_return] = ACTIONS(1549), + [anon_sym_continue] = ACTIONS(1549), + [anon_sym_break] = ACTIONS(1549), + [anon_sym_defer] = ACTIONS(1549), + [anon_sym_assert] = ACTIONS(1549), + [anon_sym_nextcase] = ACTIONS(1549), + [anon_sym_switch] = ACTIONS(1549), + [anon_sym_AMP_AMP] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1549), + [anon_sym_for] = ACTIONS(1549), + [anon_sym_foreach] = ACTIONS(1549), + [anon_sym_foreach_r] = ACTIONS(1549), + [anon_sym_while] = ACTIONS(1549), + [anon_sym_do] = ACTIONS(1549), + [anon_sym_int] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1551), + [anon_sym_asm] = ACTIONS(1549), + [anon_sym_DOLLARassert] = ACTIONS(1549), + [anon_sym_DOLLARerror] = ACTIONS(1549), + [anon_sym_DOLLARecho] = ACTIONS(1549), + [anon_sym_DOLLARif] = ACTIONS(1549), + [anon_sym_DOLLARendif] = ACTIONS(1549), + [anon_sym_DOLLARelse] = ACTIONS(1549), + [anon_sym_DOLLARswitch] = ACTIONS(1549), + [anon_sym_DOLLARfor] = ACTIONS(1549), + [anon_sym_DOLLARforeach] = ACTIONS(1549), + [anon_sym_DOLLARalignof] = ACTIONS(1549), + [anon_sym_DOLLARextnameof] = ACTIONS(1549), + [anon_sym_DOLLARnameof] = ACTIONS(1549), + [anon_sym_DOLLARoffsetof] = ACTIONS(1549), + [anon_sym_DOLLARqnameof] = ACTIONS(1549), + [anon_sym_DOLLARvaconst] = ACTIONS(1549), + [anon_sym_DOLLARvaarg] = ACTIONS(1549), + [anon_sym_DOLLARvaref] = ACTIONS(1549), + [anon_sym_DOLLARvaexpr] = ACTIONS(1549), + [anon_sym_true] = ACTIONS(1549), + [anon_sym_false] = ACTIONS(1549), + [anon_sym_null] = ACTIONS(1549), + [anon_sym_DOLLARvacount] = ACTIONS(1549), + [anon_sym_DOLLARappend] = ACTIONS(1549), + [anon_sym_DOLLARconcat] = ACTIONS(1549), + [anon_sym_DOLLAReval] = ACTIONS(1549), + [anon_sym_DOLLARis_const] = ACTIONS(1549), + [anon_sym_DOLLARsizeof] = ACTIONS(1549), + [anon_sym_DOLLARstringify] = ACTIONS(1549), + [anon_sym_DOLLARand] = ACTIONS(1549), + [anon_sym_DOLLARdefined] = ACTIONS(1549), + [anon_sym_DOLLARembed] = ACTIONS(1549), + [anon_sym_DOLLARor] = ACTIONS(1549), + [anon_sym_DOLLARfeature] = ACTIONS(1549), + [anon_sym_DOLLARassignable] = ACTIONS(1549), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_PLUS_PLUS] = ACTIONS(1551), + [anon_sym_DASH_DASH] = ACTIONS(1551), + [anon_sym_typeid] = ACTIONS(1549), + [anon_sym_LBRACE_PIPE] = ACTIONS(1551), + [anon_sym_void] = ACTIONS(1549), + [anon_sym_bool] = ACTIONS(1549), + [anon_sym_char] = ACTIONS(1549), + [anon_sym_ichar] = ACTIONS(1549), + [anon_sym_short] = ACTIONS(1549), + [anon_sym_ushort] = ACTIONS(1549), + [anon_sym_uint] = ACTIONS(1549), + [anon_sym_long] = ACTIONS(1549), + [anon_sym_ulong] = ACTIONS(1549), + [anon_sym_int128] = ACTIONS(1549), + [anon_sym_uint128] = ACTIONS(1549), + [anon_sym_float] = ACTIONS(1549), + [anon_sym_double] = ACTIONS(1549), + [anon_sym_float16] = ACTIONS(1549), + [anon_sym_bfloat16] = ACTIONS(1549), + [anon_sym_float128] = ACTIONS(1549), + [anon_sym_iptr] = ACTIONS(1549), + [anon_sym_uptr] = ACTIONS(1549), + [anon_sym_isz] = ACTIONS(1549), + [anon_sym_usz] = ACTIONS(1549), + [anon_sym_anyfault] = ACTIONS(1549), + [anon_sym_any] = ACTIONS(1549), + [anon_sym_DOLLARtypeof] = ACTIONS(1549), + [anon_sym_DOLLARtypefrom] = ACTIONS(1549), + [anon_sym_DOLLARvatype] = ACTIONS(1549), + [anon_sym_DOLLARevaltype] = ACTIONS(1549), + [sym_real_literal] = ACTIONS(1551), }, [560] = { [sym_line_comment] = STATE(560), [sym_doc_comment] = STATE(560), [sym_block_comment] = STATE(560), - [sym_ident] = ACTIONS(1504), - [sym_integer_literal] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1506), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_BQUOTE] = ACTIONS(1506), - [sym_bytes_literal] = ACTIONS(1506), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1504), - [sym_at_ident] = ACTIONS(1506), - [sym_hash_ident] = ACTIONS(1506), - [sym_type_ident] = ACTIONS(1506), - [sym_ct_type_ident] = ACTIONS(1506), - [sym_const_ident] = ACTIONS(1504), - [sym_builtin] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_AMP] = ACTIONS(1504), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_tlocal] = ACTIONS(1504), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym_fn] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(1504), - [anon_sym_var] = ACTIONS(1504), - [anon_sym_return] = ACTIONS(1504), - [anon_sym_continue] = ACTIONS(1504), - [anon_sym_break] = ACTIONS(1504), - [anon_sym_defer] = ACTIONS(1504), - [anon_sym_assert] = ACTIONS(1504), - [anon_sym_nextcase] = ACTIONS(1504), - [anon_sym_switch] = ACTIONS(1504), - [anon_sym_AMP_AMP] = ACTIONS(1506), - [anon_sym_if] = ACTIONS(1504), - [anon_sym_for] = ACTIONS(1504), - [anon_sym_foreach] = ACTIONS(1504), - [anon_sym_foreach_r] = ACTIONS(1504), - [anon_sym_while] = ACTIONS(1504), - [anon_sym_do] = ACTIONS(1504), - [anon_sym_int] = ACTIONS(1504), - [anon_sym_PLUS] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1504), - [anon_sym_STAR] = ACTIONS(1506), - [anon_sym_asm] = ACTIONS(1504), - [anon_sym_DOLLARassert] = ACTIONS(1504), - [anon_sym_DOLLARerror] = ACTIONS(1504), - [anon_sym_DOLLARecho] = ACTIONS(1504), - [anon_sym_DOLLARif] = ACTIONS(1504), - [anon_sym_DOLLARendif] = ACTIONS(1504), - [anon_sym_DOLLARelse] = ACTIONS(1504), - [anon_sym_DOLLARswitch] = ACTIONS(1504), - [anon_sym_DOLLARfor] = ACTIONS(1504), - [anon_sym_DOLLARforeach] = ACTIONS(1504), - [anon_sym_DOLLARalignof] = ACTIONS(1504), - [anon_sym_DOLLARextnameof] = ACTIONS(1504), - [anon_sym_DOLLARnameof] = ACTIONS(1504), - [anon_sym_DOLLARoffsetof] = ACTIONS(1504), - [anon_sym_DOLLARqnameof] = ACTIONS(1504), - [anon_sym_DOLLARvaconst] = ACTIONS(1504), - [anon_sym_DOLLARvaarg] = ACTIONS(1504), - [anon_sym_DOLLARvaref] = ACTIONS(1504), - [anon_sym_DOLLARvaexpr] = ACTIONS(1504), - [anon_sym_true] = ACTIONS(1504), - [anon_sym_false] = ACTIONS(1504), - [anon_sym_null] = ACTIONS(1504), - [anon_sym_DOLLARvacount] = ACTIONS(1504), - [anon_sym_DOLLARappend] = ACTIONS(1504), - [anon_sym_DOLLARconcat] = ACTIONS(1504), - [anon_sym_DOLLAReval] = ACTIONS(1504), - [anon_sym_DOLLARis_const] = ACTIONS(1504), - [anon_sym_DOLLARsizeof] = ACTIONS(1504), - [anon_sym_DOLLARstringify] = ACTIONS(1504), - [anon_sym_DOLLARand] = ACTIONS(1504), - [anon_sym_DOLLARdefined] = ACTIONS(1504), - [anon_sym_DOLLARembed] = ACTIONS(1504), - [anon_sym_DOLLARor] = ACTIONS(1504), - [anon_sym_DOLLARfeature] = ACTIONS(1504), - [anon_sym_DOLLARassignable] = ACTIONS(1504), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1506), - [anon_sym_typeid] = ACTIONS(1504), - [anon_sym_LBRACE_PIPE] = ACTIONS(1506), - [anon_sym_void] = ACTIONS(1504), - [anon_sym_bool] = ACTIONS(1504), - [anon_sym_char] = ACTIONS(1504), - [anon_sym_ichar] = ACTIONS(1504), - [anon_sym_short] = ACTIONS(1504), - [anon_sym_ushort] = ACTIONS(1504), - [anon_sym_uint] = ACTIONS(1504), - [anon_sym_long] = ACTIONS(1504), - [anon_sym_ulong] = ACTIONS(1504), - [anon_sym_int128] = ACTIONS(1504), - [anon_sym_uint128] = ACTIONS(1504), - [anon_sym_float] = ACTIONS(1504), - [anon_sym_double] = ACTIONS(1504), - [anon_sym_float16] = ACTIONS(1504), - [anon_sym_bfloat16] = ACTIONS(1504), - [anon_sym_float128] = ACTIONS(1504), - [anon_sym_iptr] = ACTIONS(1504), - [anon_sym_uptr] = ACTIONS(1504), - [anon_sym_isz] = ACTIONS(1504), - [anon_sym_usz] = ACTIONS(1504), - [anon_sym_anyfault] = ACTIONS(1504), - [anon_sym_any] = ACTIONS(1504), - [anon_sym_DOLLARtypeof] = ACTIONS(1504), - [anon_sym_DOLLARtypefrom] = ACTIONS(1504), - [anon_sym_DOLLARvatype] = ACTIONS(1504), - [anon_sym_DOLLARevaltype] = ACTIONS(1504), - [sym_real_literal] = ACTIONS(1506), + [sym_ident] = ACTIONS(1633), + [sym_integer_literal] = ACTIONS(1635), + [anon_sym_SQUOTE] = ACTIONS(1635), + [anon_sym_DQUOTE] = ACTIONS(1635), + [anon_sym_BQUOTE] = ACTIONS(1635), + [sym_bytes_literal] = ACTIONS(1635), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1633), + [sym_at_ident] = ACTIONS(1635), + [sym_hash_ident] = ACTIONS(1635), + [sym_type_ident] = ACTIONS(1635), + [sym_ct_type_ident] = ACTIONS(1635), + [sym_const_ident] = ACTIONS(1633), + [sym_builtin] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1633), + [anon_sym_static] = ACTIONS(1633), + [anon_sym_tlocal] = ACTIONS(1633), + [anon_sym_SEMI] = ACTIONS(1635), + [anon_sym_fn] = ACTIONS(1633), + [anon_sym_LBRACE] = ACTIONS(1633), + [anon_sym_const] = ACTIONS(1633), + [anon_sym_var] = ACTIONS(1633), + [anon_sym_return] = ACTIONS(1633), + [anon_sym_continue] = ACTIONS(1633), + [anon_sym_break] = ACTIONS(1633), + [anon_sym_defer] = ACTIONS(1633), + [anon_sym_assert] = ACTIONS(1633), + [anon_sym_nextcase] = ACTIONS(1633), + [anon_sym_switch] = ACTIONS(1633), + [anon_sym_AMP_AMP] = ACTIONS(1635), + [anon_sym_if] = ACTIONS(1633), + [anon_sym_for] = ACTIONS(1633), + [anon_sym_foreach] = ACTIONS(1633), + [anon_sym_foreach_r] = ACTIONS(1633), + [anon_sym_while] = ACTIONS(1633), + [anon_sym_do] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_PLUS] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1633), + [anon_sym_STAR] = ACTIONS(1635), + [anon_sym_asm] = ACTIONS(1633), + [anon_sym_DOLLARassert] = ACTIONS(1633), + [anon_sym_DOLLARerror] = ACTIONS(1633), + [anon_sym_DOLLARecho] = ACTIONS(1633), + [anon_sym_DOLLARif] = ACTIONS(1633), + [anon_sym_DOLLARendif] = ACTIONS(1633), + [anon_sym_DOLLARelse] = ACTIONS(1633), + [anon_sym_DOLLARswitch] = ACTIONS(1633), + [anon_sym_DOLLARfor] = ACTIONS(1633), + [anon_sym_DOLLARforeach] = ACTIONS(1633), + [anon_sym_DOLLARalignof] = ACTIONS(1633), + [anon_sym_DOLLARextnameof] = ACTIONS(1633), + [anon_sym_DOLLARnameof] = ACTIONS(1633), + [anon_sym_DOLLARoffsetof] = ACTIONS(1633), + [anon_sym_DOLLARqnameof] = ACTIONS(1633), + [anon_sym_DOLLARvaconst] = ACTIONS(1633), + [anon_sym_DOLLARvaarg] = ACTIONS(1633), + [anon_sym_DOLLARvaref] = ACTIONS(1633), + [anon_sym_DOLLARvaexpr] = ACTIONS(1633), + [anon_sym_true] = ACTIONS(1633), + [anon_sym_false] = ACTIONS(1633), + [anon_sym_null] = ACTIONS(1633), + [anon_sym_DOLLARvacount] = ACTIONS(1633), + [anon_sym_DOLLARappend] = ACTIONS(1633), + [anon_sym_DOLLARconcat] = ACTIONS(1633), + [anon_sym_DOLLAReval] = ACTIONS(1633), + [anon_sym_DOLLARis_const] = ACTIONS(1633), + [anon_sym_DOLLARsizeof] = ACTIONS(1633), + [anon_sym_DOLLARstringify] = ACTIONS(1633), + [anon_sym_DOLLARand] = ACTIONS(1633), + [anon_sym_DOLLARdefined] = ACTIONS(1633), + [anon_sym_DOLLARembed] = ACTIONS(1633), + [anon_sym_DOLLARor] = ACTIONS(1633), + [anon_sym_DOLLARfeature] = ACTIONS(1633), + [anon_sym_DOLLARassignable] = ACTIONS(1633), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1635), + [anon_sym_DASH_DASH] = ACTIONS(1635), + [anon_sym_typeid] = ACTIONS(1633), + [anon_sym_LBRACE_PIPE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_char] = ACTIONS(1633), + [anon_sym_ichar] = ACTIONS(1633), + [anon_sym_short] = ACTIONS(1633), + [anon_sym_ushort] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_long] = ACTIONS(1633), + [anon_sym_ulong] = ACTIONS(1633), + [anon_sym_int128] = ACTIONS(1633), + [anon_sym_uint128] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_double] = ACTIONS(1633), + [anon_sym_float16] = ACTIONS(1633), + [anon_sym_bfloat16] = ACTIONS(1633), + [anon_sym_float128] = ACTIONS(1633), + [anon_sym_iptr] = ACTIONS(1633), + [anon_sym_uptr] = ACTIONS(1633), + [anon_sym_isz] = ACTIONS(1633), + [anon_sym_usz] = ACTIONS(1633), + [anon_sym_anyfault] = ACTIONS(1633), + [anon_sym_any] = ACTIONS(1633), + [anon_sym_DOLLARtypeof] = ACTIONS(1633), + [anon_sym_DOLLARtypefrom] = ACTIONS(1633), + [anon_sym_DOLLARvatype] = ACTIONS(1633), + [anon_sym_DOLLARevaltype] = ACTIONS(1633), + [sym_real_literal] = ACTIONS(1635), }, [561] = { [sym_line_comment] = STATE(561), [sym_doc_comment] = STATE(561), [sym_block_comment] = STATE(561), - [sym_ident] = ACTIONS(1468), - [sym_integer_literal] = ACTIONS(1470), - [anon_sym_SQUOTE] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [anon_sym_BQUOTE] = ACTIONS(1470), - [sym_bytes_literal] = ACTIONS(1470), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1468), - [sym_at_ident] = ACTIONS(1470), - [sym_hash_ident] = ACTIONS(1470), - [sym_type_ident] = ACTIONS(1470), - [sym_ct_type_ident] = ACTIONS(1470), - [sym_const_ident] = ACTIONS(1468), - [sym_builtin] = ACTIONS(1470), - [anon_sym_LPAREN] = ACTIONS(1470), - [anon_sym_AMP] = ACTIONS(1468), - [anon_sym_static] = ACTIONS(1468), - [anon_sym_tlocal] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1470), - [anon_sym_fn] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1468), - [anon_sym_const] = ACTIONS(1468), - [anon_sym_var] = ACTIONS(1468), - [anon_sym_return] = ACTIONS(1468), - [anon_sym_continue] = ACTIONS(1468), - [anon_sym_break] = ACTIONS(1468), - [anon_sym_defer] = ACTIONS(1468), - [anon_sym_assert] = ACTIONS(1468), - [anon_sym_nextcase] = ACTIONS(1468), - [anon_sym_switch] = ACTIONS(1468), - [anon_sym_AMP_AMP] = ACTIONS(1470), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_for] = ACTIONS(1468), - [anon_sym_foreach] = ACTIONS(1468), - [anon_sym_foreach_r] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1468), - [anon_sym_do] = ACTIONS(1468), - [anon_sym_int] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1468), - [anon_sym_DASH] = ACTIONS(1468), - [anon_sym_STAR] = ACTIONS(1470), - [anon_sym_asm] = ACTIONS(1468), - [anon_sym_DOLLARassert] = ACTIONS(1468), - [anon_sym_DOLLARerror] = ACTIONS(1468), - [anon_sym_DOLLARecho] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1468), - [anon_sym_DOLLARendif] = ACTIONS(1468), - [anon_sym_DOLLARelse] = ACTIONS(1468), - [anon_sym_DOLLARswitch] = ACTIONS(1468), - [anon_sym_DOLLARfor] = ACTIONS(1468), - [anon_sym_DOLLARforeach] = ACTIONS(1468), - [anon_sym_DOLLARalignof] = ACTIONS(1468), - [anon_sym_DOLLARextnameof] = ACTIONS(1468), - [anon_sym_DOLLARnameof] = ACTIONS(1468), - [anon_sym_DOLLARoffsetof] = ACTIONS(1468), - [anon_sym_DOLLARqnameof] = ACTIONS(1468), - [anon_sym_DOLLARvaconst] = ACTIONS(1468), - [anon_sym_DOLLARvaarg] = ACTIONS(1468), - [anon_sym_DOLLARvaref] = ACTIONS(1468), - [anon_sym_DOLLARvaexpr] = ACTIONS(1468), - [anon_sym_true] = ACTIONS(1468), - [anon_sym_false] = ACTIONS(1468), - [anon_sym_null] = ACTIONS(1468), - [anon_sym_DOLLARvacount] = ACTIONS(1468), - [anon_sym_DOLLARappend] = ACTIONS(1468), - [anon_sym_DOLLARconcat] = ACTIONS(1468), - [anon_sym_DOLLAReval] = ACTIONS(1468), - [anon_sym_DOLLARis_const] = ACTIONS(1468), - [anon_sym_DOLLARsizeof] = ACTIONS(1468), - [anon_sym_DOLLARstringify] = ACTIONS(1468), - [anon_sym_DOLLARand] = ACTIONS(1468), - [anon_sym_DOLLARdefined] = ACTIONS(1468), - [anon_sym_DOLLARembed] = ACTIONS(1468), - [anon_sym_DOLLARor] = ACTIONS(1468), - [anon_sym_DOLLARfeature] = ACTIONS(1468), - [anon_sym_DOLLARassignable] = ACTIONS(1468), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1470), - [anon_sym_DASH_DASH] = ACTIONS(1470), - [anon_sym_typeid] = ACTIONS(1468), - [anon_sym_LBRACE_PIPE] = ACTIONS(1470), - [anon_sym_void] = ACTIONS(1468), - [anon_sym_bool] = ACTIONS(1468), - [anon_sym_char] = ACTIONS(1468), - [anon_sym_ichar] = ACTIONS(1468), - [anon_sym_short] = ACTIONS(1468), - [anon_sym_ushort] = ACTIONS(1468), - [anon_sym_uint] = ACTIONS(1468), - [anon_sym_long] = ACTIONS(1468), - [anon_sym_ulong] = ACTIONS(1468), - [anon_sym_int128] = ACTIONS(1468), - [anon_sym_uint128] = ACTIONS(1468), - [anon_sym_float] = ACTIONS(1468), - [anon_sym_double] = ACTIONS(1468), - [anon_sym_float16] = ACTIONS(1468), - [anon_sym_bfloat16] = ACTIONS(1468), - [anon_sym_float128] = ACTIONS(1468), - [anon_sym_iptr] = ACTIONS(1468), - [anon_sym_uptr] = ACTIONS(1468), - [anon_sym_isz] = ACTIONS(1468), - [anon_sym_usz] = ACTIONS(1468), - [anon_sym_anyfault] = ACTIONS(1468), - [anon_sym_any] = ACTIONS(1468), - [anon_sym_DOLLARtypeof] = ACTIONS(1468), - [anon_sym_DOLLARtypefrom] = ACTIONS(1468), - [anon_sym_DOLLARvatype] = ACTIONS(1468), - [anon_sym_DOLLARevaltype] = ACTIONS(1468), - [sym_real_literal] = ACTIONS(1470), + [sym_ident] = ACTIONS(1561), + [sym_integer_literal] = ACTIONS(1563), + [anon_sym_SQUOTE] = ACTIONS(1563), + [anon_sym_DQUOTE] = ACTIONS(1563), + [anon_sym_BQUOTE] = ACTIONS(1563), + [sym_bytes_literal] = ACTIONS(1563), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1561), + [sym_at_ident] = ACTIONS(1563), + [sym_hash_ident] = ACTIONS(1563), + [sym_type_ident] = ACTIONS(1563), + [sym_ct_type_ident] = ACTIONS(1563), + [sym_const_ident] = ACTIONS(1561), + [sym_builtin] = ACTIONS(1563), + [anon_sym_LPAREN] = ACTIONS(1563), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_static] = ACTIONS(1561), + [anon_sym_tlocal] = ACTIONS(1561), + [anon_sym_SEMI] = ACTIONS(1563), + [anon_sym_fn] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_const] = ACTIONS(1561), + [anon_sym_var] = ACTIONS(1561), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_continue] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1561), + [anon_sym_defer] = ACTIONS(1561), + [anon_sym_assert] = ACTIONS(1561), + [anon_sym_nextcase] = ACTIONS(1561), + [anon_sym_switch] = ACTIONS(1561), + [anon_sym_AMP_AMP] = ACTIONS(1563), + [anon_sym_if] = ACTIONS(1561), + [anon_sym_for] = ACTIONS(1561), + [anon_sym_foreach] = ACTIONS(1561), + [anon_sym_foreach_r] = ACTIONS(1561), + [anon_sym_while] = ACTIONS(1561), + [anon_sym_do] = ACTIONS(1561), + [anon_sym_int] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1561), + [anon_sym_STAR] = ACTIONS(1563), + [anon_sym_asm] = ACTIONS(1561), + [anon_sym_DOLLARassert] = ACTIONS(1561), + [anon_sym_DOLLARerror] = ACTIONS(1561), + [anon_sym_DOLLARecho] = ACTIONS(1561), + [anon_sym_DOLLARif] = ACTIONS(1561), + [anon_sym_DOLLARendif] = ACTIONS(1561), + [anon_sym_DOLLARelse] = ACTIONS(1561), + [anon_sym_DOLLARswitch] = ACTIONS(1561), + [anon_sym_DOLLARfor] = ACTIONS(1561), + [anon_sym_DOLLARforeach] = ACTIONS(1561), + [anon_sym_DOLLARalignof] = ACTIONS(1561), + [anon_sym_DOLLARextnameof] = ACTIONS(1561), + [anon_sym_DOLLARnameof] = ACTIONS(1561), + [anon_sym_DOLLARoffsetof] = ACTIONS(1561), + [anon_sym_DOLLARqnameof] = ACTIONS(1561), + [anon_sym_DOLLARvaconst] = ACTIONS(1561), + [anon_sym_DOLLARvaarg] = ACTIONS(1561), + [anon_sym_DOLLARvaref] = ACTIONS(1561), + [anon_sym_DOLLARvaexpr] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1561), + [anon_sym_false] = ACTIONS(1561), + [anon_sym_null] = ACTIONS(1561), + [anon_sym_DOLLARvacount] = ACTIONS(1561), + [anon_sym_DOLLARappend] = ACTIONS(1561), + [anon_sym_DOLLARconcat] = ACTIONS(1561), + [anon_sym_DOLLAReval] = ACTIONS(1561), + [anon_sym_DOLLARis_const] = ACTIONS(1561), + [anon_sym_DOLLARsizeof] = ACTIONS(1561), + [anon_sym_DOLLARstringify] = ACTIONS(1561), + [anon_sym_DOLLARand] = ACTIONS(1561), + [anon_sym_DOLLARdefined] = ACTIONS(1561), + [anon_sym_DOLLARembed] = ACTIONS(1561), + [anon_sym_DOLLARor] = ACTIONS(1561), + [anon_sym_DOLLARfeature] = ACTIONS(1561), + [anon_sym_DOLLARassignable] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1563), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_PLUS_PLUS] = ACTIONS(1563), + [anon_sym_DASH_DASH] = ACTIONS(1563), + [anon_sym_typeid] = ACTIONS(1561), + [anon_sym_LBRACE_PIPE] = ACTIONS(1563), + [anon_sym_void] = ACTIONS(1561), + [anon_sym_bool] = ACTIONS(1561), + [anon_sym_char] = ACTIONS(1561), + [anon_sym_ichar] = ACTIONS(1561), + [anon_sym_short] = ACTIONS(1561), + [anon_sym_ushort] = ACTIONS(1561), + [anon_sym_uint] = ACTIONS(1561), + [anon_sym_long] = ACTIONS(1561), + [anon_sym_ulong] = ACTIONS(1561), + [anon_sym_int128] = ACTIONS(1561), + [anon_sym_uint128] = ACTIONS(1561), + [anon_sym_float] = ACTIONS(1561), + [anon_sym_double] = ACTIONS(1561), + [anon_sym_float16] = ACTIONS(1561), + [anon_sym_bfloat16] = ACTIONS(1561), + [anon_sym_float128] = ACTIONS(1561), + [anon_sym_iptr] = ACTIONS(1561), + [anon_sym_uptr] = ACTIONS(1561), + [anon_sym_isz] = ACTIONS(1561), + [anon_sym_usz] = ACTIONS(1561), + [anon_sym_anyfault] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1561), + [anon_sym_DOLLARtypeof] = ACTIONS(1561), + [anon_sym_DOLLARtypefrom] = ACTIONS(1561), + [anon_sym_DOLLARvatype] = ACTIONS(1561), + [anon_sym_DOLLARevaltype] = ACTIONS(1561), + [sym_real_literal] = ACTIONS(1563), }, [562] = { [sym_line_comment] = STATE(562), [sym_doc_comment] = STATE(562), [sym_block_comment] = STATE(562), - [sym_ident] = ACTIONS(1464), - [sym_integer_literal] = ACTIONS(1466), - [anon_sym_SQUOTE] = ACTIONS(1466), - [anon_sym_DQUOTE] = ACTIONS(1466), - [anon_sym_BQUOTE] = ACTIONS(1466), - [sym_bytes_literal] = ACTIONS(1466), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1464), - [sym_at_ident] = ACTIONS(1466), - [sym_hash_ident] = ACTIONS(1466), - [sym_type_ident] = ACTIONS(1466), - [sym_ct_type_ident] = ACTIONS(1466), - [sym_const_ident] = ACTIONS(1464), - [sym_builtin] = ACTIONS(1466), - [anon_sym_LPAREN] = ACTIONS(1466), - [anon_sym_AMP] = ACTIONS(1464), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_tlocal] = ACTIONS(1464), - [anon_sym_SEMI] = ACTIONS(1466), - [anon_sym_fn] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1464), - [anon_sym_const] = ACTIONS(1464), - [anon_sym_var] = ACTIONS(1464), - [anon_sym_return] = ACTIONS(1464), - [anon_sym_continue] = ACTIONS(1464), - [anon_sym_break] = ACTIONS(1464), - [anon_sym_defer] = ACTIONS(1464), - [anon_sym_assert] = ACTIONS(1464), - [anon_sym_nextcase] = ACTIONS(1464), - [anon_sym_switch] = ACTIONS(1464), - [anon_sym_AMP_AMP] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1464), - [anon_sym_for] = ACTIONS(1464), - [anon_sym_foreach] = ACTIONS(1464), - [anon_sym_foreach_r] = ACTIONS(1464), - [anon_sym_while] = ACTIONS(1464), - [anon_sym_do] = ACTIONS(1464), - [anon_sym_int] = ACTIONS(1464), - [anon_sym_PLUS] = ACTIONS(1464), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1466), - [anon_sym_asm] = ACTIONS(1464), - [anon_sym_DOLLARassert] = ACTIONS(1464), - [anon_sym_DOLLARerror] = ACTIONS(1464), - [anon_sym_DOLLARecho] = ACTIONS(1464), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_DOLLARendif] = ACTIONS(1464), - [anon_sym_DOLLARelse] = ACTIONS(1464), - [anon_sym_DOLLARswitch] = ACTIONS(1464), - [anon_sym_DOLLARfor] = ACTIONS(1464), - [anon_sym_DOLLARforeach] = ACTIONS(1464), - [anon_sym_DOLLARalignof] = ACTIONS(1464), - [anon_sym_DOLLARextnameof] = ACTIONS(1464), - [anon_sym_DOLLARnameof] = ACTIONS(1464), - [anon_sym_DOLLARoffsetof] = ACTIONS(1464), - [anon_sym_DOLLARqnameof] = ACTIONS(1464), - [anon_sym_DOLLARvaconst] = ACTIONS(1464), - [anon_sym_DOLLARvaarg] = ACTIONS(1464), - [anon_sym_DOLLARvaref] = ACTIONS(1464), - [anon_sym_DOLLARvaexpr] = ACTIONS(1464), - [anon_sym_true] = ACTIONS(1464), - [anon_sym_false] = ACTIONS(1464), - [anon_sym_null] = ACTIONS(1464), - [anon_sym_DOLLARvacount] = ACTIONS(1464), - [anon_sym_DOLLARappend] = ACTIONS(1464), - [anon_sym_DOLLARconcat] = ACTIONS(1464), - [anon_sym_DOLLAReval] = ACTIONS(1464), - [anon_sym_DOLLARis_const] = ACTIONS(1464), - [anon_sym_DOLLARsizeof] = ACTIONS(1464), - [anon_sym_DOLLARstringify] = ACTIONS(1464), - [anon_sym_DOLLARand] = ACTIONS(1464), - [anon_sym_DOLLARdefined] = ACTIONS(1464), - [anon_sym_DOLLARembed] = ACTIONS(1464), - [anon_sym_DOLLARor] = ACTIONS(1464), - [anon_sym_DOLLARfeature] = ACTIONS(1464), - [anon_sym_DOLLARassignable] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_TILDE] = ACTIONS(1466), - [anon_sym_PLUS_PLUS] = ACTIONS(1466), - [anon_sym_DASH_DASH] = ACTIONS(1466), - [anon_sym_typeid] = ACTIONS(1464), - [anon_sym_LBRACE_PIPE] = ACTIONS(1466), - [anon_sym_void] = ACTIONS(1464), - [anon_sym_bool] = ACTIONS(1464), - [anon_sym_char] = ACTIONS(1464), - [anon_sym_ichar] = ACTIONS(1464), - [anon_sym_short] = ACTIONS(1464), - [anon_sym_ushort] = ACTIONS(1464), - [anon_sym_uint] = ACTIONS(1464), - [anon_sym_long] = ACTIONS(1464), - [anon_sym_ulong] = ACTIONS(1464), - [anon_sym_int128] = ACTIONS(1464), - [anon_sym_uint128] = ACTIONS(1464), - [anon_sym_float] = ACTIONS(1464), - [anon_sym_double] = ACTIONS(1464), - [anon_sym_float16] = ACTIONS(1464), - [anon_sym_bfloat16] = ACTIONS(1464), - [anon_sym_float128] = ACTIONS(1464), - [anon_sym_iptr] = ACTIONS(1464), - [anon_sym_uptr] = ACTIONS(1464), - [anon_sym_isz] = ACTIONS(1464), - [anon_sym_usz] = ACTIONS(1464), - [anon_sym_anyfault] = ACTIONS(1464), - [anon_sym_any] = ACTIONS(1464), - [anon_sym_DOLLARtypeof] = ACTIONS(1464), - [anon_sym_DOLLARtypefrom] = ACTIONS(1464), - [anon_sym_DOLLARvatype] = ACTIONS(1464), - [anon_sym_DOLLARevaltype] = ACTIONS(1464), - [sym_real_literal] = ACTIONS(1466), + [sym_ident] = ACTIONS(1561), + [sym_integer_literal] = ACTIONS(1563), + [anon_sym_SQUOTE] = ACTIONS(1563), + [anon_sym_DQUOTE] = ACTIONS(1563), + [anon_sym_BQUOTE] = ACTIONS(1563), + [sym_bytes_literal] = ACTIONS(1563), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1561), + [sym_at_ident] = ACTIONS(1563), + [sym_hash_ident] = ACTIONS(1563), + [sym_type_ident] = ACTIONS(1563), + [sym_ct_type_ident] = ACTIONS(1563), + [sym_const_ident] = ACTIONS(1561), + [sym_builtin] = ACTIONS(1563), + [anon_sym_LPAREN] = ACTIONS(1563), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_static] = ACTIONS(1561), + [anon_sym_tlocal] = ACTIONS(1561), + [anon_sym_SEMI] = ACTIONS(1563), + [anon_sym_fn] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_const] = ACTIONS(1561), + [anon_sym_var] = ACTIONS(1561), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_continue] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1561), + [anon_sym_defer] = ACTIONS(1561), + [anon_sym_assert] = ACTIONS(1561), + [anon_sym_nextcase] = ACTIONS(1561), + [anon_sym_switch] = ACTIONS(1561), + [anon_sym_AMP_AMP] = ACTIONS(1563), + [anon_sym_if] = ACTIONS(1561), + [anon_sym_for] = ACTIONS(1561), + [anon_sym_foreach] = ACTIONS(1561), + [anon_sym_foreach_r] = ACTIONS(1561), + [anon_sym_while] = ACTIONS(1561), + [anon_sym_do] = ACTIONS(1561), + [anon_sym_int] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1561), + [anon_sym_STAR] = ACTIONS(1563), + [anon_sym_asm] = ACTIONS(1561), + [anon_sym_DOLLARassert] = ACTIONS(1561), + [anon_sym_DOLLARerror] = ACTIONS(1561), + [anon_sym_DOLLARecho] = ACTIONS(1561), + [anon_sym_DOLLARif] = ACTIONS(1561), + [anon_sym_DOLLARendif] = ACTIONS(1561), + [anon_sym_DOLLARelse] = ACTIONS(1561), + [anon_sym_DOLLARswitch] = ACTIONS(1561), + [anon_sym_DOLLARfor] = ACTIONS(1561), + [anon_sym_DOLLARforeach] = ACTIONS(1561), + [anon_sym_DOLLARalignof] = ACTIONS(1561), + [anon_sym_DOLLARextnameof] = ACTIONS(1561), + [anon_sym_DOLLARnameof] = ACTIONS(1561), + [anon_sym_DOLLARoffsetof] = ACTIONS(1561), + [anon_sym_DOLLARqnameof] = ACTIONS(1561), + [anon_sym_DOLLARvaconst] = ACTIONS(1561), + [anon_sym_DOLLARvaarg] = ACTIONS(1561), + [anon_sym_DOLLARvaref] = ACTIONS(1561), + [anon_sym_DOLLARvaexpr] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1561), + [anon_sym_false] = ACTIONS(1561), + [anon_sym_null] = ACTIONS(1561), + [anon_sym_DOLLARvacount] = ACTIONS(1561), + [anon_sym_DOLLARappend] = ACTIONS(1561), + [anon_sym_DOLLARconcat] = ACTIONS(1561), + [anon_sym_DOLLAReval] = ACTIONS(1561), + [anon_sym_DOLLARis_const] = ACTIONS(1561), + [anon_sym_DOLLARsizeof] = ACTIONS(1561), + [anon_sym_DOLLARstringify] = ACTIONS(1561), + [anon_sym_DOLLARand] = ACTIONS(1561), + [anon_sym_DOLLARdefined] = ACTIONS(1561), + [anon_sym_DOLLARembed] = ACTIONS(1561), + [anon_sym_DOLLARor] = ACTIONS(1561), + [anon_sym_DOLLARfeature] = ACTIONS(1561), + [anon_sym_DOLLARassignable] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1563), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_PLUS_PLUS] = ACTIONS(1563), + [anon_sym_DASH_DASH] = ACTIONS(1563), + [anon_sym_typeid] = ACTIONS(1561), + [anon_sym_LBRACE_PIPE] = ACTIONS(1563), + [anon_sym_void] = ACTIONS(1561), + [anon_sym_bool] = ACTIONS(1561), + [anon_sym_char] = ACTIONS(1561), + [anon_sym_ichar] = ACTIONS(1561), + [anon_sym_short] = ACTIONS(1561), + [anon_sym_ushort] = ACTIONS(1561), + [anon_sym_uint] = ACTIONS(1561), + [anon_sym_long] = ACTIONS(1561), + [anon_sym_ulong] = ACTIONS(1561), + [anon_sym_int128] = ACTIONS(1561), + [anon_sym_uint128] = ACTIONS(1561), + [anon_sym_float] = ACTIONS(1561), + [anon_sym_double] = ACTIONS(1561), + [anon_sym_float16] = ACTIONS(1561), + [anon_sym_bfloat16] = ACTIONS(1561), + [anon_sym_float128] = ACTIONS(1561), + [anon_sym_iptr] = ACTIONS(1561), + [anon_sym_uptr] = ACTIONS(1561), + [anon_sym_isz] = ACTIONS(1561), + [anon_sym_usz] = ACTIONS(1561), + [anon_sym_anyfault] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1561), + [anon_sym_DOLLARtypeof] = ACTIONS(1561), + [anon_sym_DOLLARtypefrom] = ACTIONS(1561), + [anon_sym_DOLLARvatype] = ACTIONS(1561), + [anon_sym_DOLLARevaltype] = ACTIONS(1561), + [sym_real_literal] = ACTIONS(1563), }, [563] = { [sym_line_comment] = STATE(563), [sym_doc_comment] = STATE(563), [sym_block_comment] = STATE(563), - [sym_ident] = ACTIONS(1664), - [sym_integer_literal] = ACTIONS(1666), - [anon_sym_SQUOTE] = ACTIONS(1666), - [anon_sym_DQUOTE] = ACTIONS(1666), - [anon_sym_BQUOTE] = ACTIONS(1666), - [sym_bytes_literal] = ACTIONS(1666), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1664), - [sym_at_ident] = ACTIONS(1666), - [sym_hash_ident] = ACTIONS(1666), - [sym_type_ident] = ACTIONS(1666), - [sym_ct_type_ident] = ACTIONS(1666), - [sym_const_ident] = ACTIONS(1664), - [sym_builtin] = ACTIONS(1666), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_static] = ACTIONS(1664), - [anon_sym_tlocal] = ACTIONS(1664), - [anon_sym_SEMI] = ACTIONS(1666), - [anon_sym_fn] = ACTIONS(1664), - [anon_sym_LBRACE] = ACTIONS(1664), - [anon_sym_const] = ACTIONS(1664), - [anon_sym_var] = ACTIONS(1664), - [anon_sym_return] = ACTIONS(1664), - [anon_sym_continue] = ACTIONS(1664), - [anon_sym_break] = ACTIONS(1664), - [anon_sym_defer] = ACTIONS(1664), - [anon_sym_assert] = ACTIONS(1664), - [anon_sym_nextcase] = ACTIONS(1664), - [anon_sym_switch] = ACTIONS(1664), - [anon_sym_AMP_AMP] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_for] = ACTIONS(1664), - [anon_sym_foreach] = ACTIONS(1664), - [anon_sym_foreach_r] = ACTIONS(1664), - [anon_sym_while] = ACTIONS(1664), - [anon_sym_do] = ACTIONS(1664), - [anon_sym_int] = ACTIONS(1664), - [anon_sym_PLUS] = ACTIONS(1664), - [anon_sym_DASH] = ACTIONS(1664), - [anon_sym_STAR] = ACTIONS(1666), - [anon_sym_asm] = ACTIONS(1664), - [anon_sym_DOLLARassert] = ACTIONS(1664), - [anon_sym_DOLLARerror] = ACTIONS(1664), - [anon_sym_DOLLARecho] = ACTIONS(1664), - [anon_sym_DOLLARif] = ACTIONS(1664), - [anon_sym_DOLLARendif] = ACTIONS(1664), - [anon_sym_DOLLARelse] = ACTIONS(1664), - [anon_sym_DOLLARswitch] = ACTIONS(1664), - [anon_sym_DOLLARfor] = ACTIONS(1664), - [anon_sym_DOLLARforeach] = ACTIONS(1664), - [anon_sym_DOLLARalignof] = ACTIONS(1664), - [anon_sym_DOLLARextnameof] = ACTIONS(1664), - [anon_sym_DOLLARnameof] = ACTIONS(1664), - [anon_sym_DOLLARoffsetof] = ACTIONS(1664), - [anon_sym_DOLLARqnameof] = ACTIONS(1664), - [anon_sym_DOLLARvaconst] = ACTIONS(1664), - [anon_sym_DOLLARvaarg] = ACTIONS(1664), - [anon_sym_DOLLARvaref] = ACTIONS(1664), - [anon_sym_DOLLARvaexpr] = ACTIONS(1664), - [anon_sym_true] = ACTIONS(1664), - [anon_sym_false] = ACTIONS(1664), - [anon_sym_null] = ACTIONS(1664), - [anon_sym_DOLLARvacount] = ACTIONS(1664), - [anon_sym_DOLLARappend] = ACTIONS(1664), - [anon_sym_DOLLARconcat] = ACTIONS(1664), - [anon_sym_DOLLAReval] = ACTIONS(1664), - [anon_sym_DOLLARis_const] = ACTIONS(1664), - [anon_sym_DOLLARsizeof] = ACTIONS(1664), - [anon_sym_DOLLARstringify] = ACTIONS(1664), - [anon_sym_DOLLARand] = ACTIONS(1664), - [anon_sym_DOLLARdefined] = ACTIONS(1664), - [anon_sym_DOLLARembed] = ACTIONS(1664), - [anon_sym_DOLLARor] = ACTIONS(1664), - [anon_sym_DOLLARfeature] = ACTIONS(1664), - [anon_sym_DOLLARassignable] = ACTIONS(1664), - [anon_sym_BANG] = ACTIONS(1666), - [anon_sym_TILDE] = ACTIONS(1666), - [anon_sym_PLUS_PLUS] = ACTIONS(1666), - [anon_sym_DASH_DASH] = ACTIONS(1666), - [anon_sym_typeid] = ACTIONS(1664), - [anon_sym_LBRACE_PIPE] = ACTIONS(1666), - [anon_sym_void] = ACTIONS(1664), - [anon_sym_bool] = ACTIONS(1664), - [anon_sym_char] = ACTIONS(1664), - [anon_sym_ichar] = ACTIONS(1664), - [anon_sym_short] = ACTIONS(1664), - [anon_sym_ushort] = ACTIONS(1664), - [anon_sym_uint] = ACTIONS(1664), - [anon_sym_long] = ACTIONS(1664), - [anon_sym_ulong] = ACTIONS(1664), - [anon_sym_int128] = ACTIONS(1664), - [anon_sym_uint128] = ACTIONS(1664), - [anon_sym_float] = ACTIONS(1664), - [anon_sym_double] = ACTIONS(1664), - [anon_sym_float16] = ACTIONS(1664), - [anon_sym_bfloat16] = ACTIONS(1664), - [anon_sym_float128] = ACTIONS(1664), - [anon_sym_iptr] = ACTIONS(1664), - [anon_sym_uptr] = ACTIONS(1664), - [anon_sym_isz] = ACTIONS(1664), - [anon_sym_usz] = ACTIONS(1664), - [anon_sym_anyfault] = ACTIONS(1664), - [anon_sym_any] = ACTIONS(1664), - [anon_sym_DOLLARtypeof] = ACTIONS(1664), - [anon_sym_DOLLARtypefrom] = ACTIONS(1664), - [anon_sym_DOLLARvatype] = ACTIONS(1664), - [anon_sym_DOLLARevaltype] = ACTIONS(1664), - [sym_real_literal] = ACTIONS(1666), + [sym_ident] = ACTIONS(1537), + [sym_integer_literal] = ACTIONS(1539), + [anon_sym_SQUOTE] = ACTIONS(1539), + [anon_sym_DQUOTE] = ACTIONS(1539), + [anon_sym_BQUOTE] = ACTIONS(1539), + [sym_bytes_literal] = ACTIONS(1539), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1537), + [sym_at_ident] = ACTIONS(1539), + [sym_hash_ident] = ACTIONS(1539), + [sym_type_ident] = ACTIONS(1539), + [sym_ct_type_ident] = ACTIONS(1539), + [sym_const_ident] = ACTIONS(1537), + [sym_builtin] = ACTIONS(1539), + [anon_sym_LPAREN] = ACTIONS(1539), + [anon_sym_AMP] = ACTIONS(1537), + [anon_sym_static] = ACTIONS(1537), + [anon_sym_tlocal] = ACTIONS(1537), + [anon_sym_SEMI] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1537), + [anon_sym_LBRACE] = ACTIONS(1537), + [anon_sym_const] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(1537), + [anon_sym_return] = ACTIONS(1537), + [anon_sym_continue] = ACTIONS(1537), + [anon_sym_break] = ACTIONS(1537), + [anon_sym_defer] = ACTIONS(1537), + [anon_sym_assert] = ACTIONS(1537), + [anon_sym_nextcase] = ACTIONS(1537), + [anon_sym_switch] = ACTIONS(1537), + [anon_sym_AMP_AMP] = ACTIONS(1539), + [anon_sym_if] = ACTIONS(1537), + [anon_sym_for] = ACTIONS(1537), + [anon_sym_foreach] = ACTIONS(1537), + [anon_sym_foreach_r] = ACTIONS(1537), + [anon_sym_while] = ACTIONS(1537), + [anon_sym_do] = ACTIONS(1537), + [anon_sym_int] = ACTIONS(1537), + [anon_sym_PLUS] = ACTIONS(1537), + [anon_sym_DASH] = ACTIONS(1537), + [anon_sym_STAR] = ACTIONS(1539), + [anon_sym_asm] = ACTIONS(1537), + [anon_sym_DOLLARassert] = ACTIONS(1537), + [anon_sym_DOLLARerror] = ACTIONS(1537), + [anon_sym_DOLLARecho] = ACTIONS(1537), + [anon_sym_DOLLARif] = ACTIONS(1537), + [anon_sym_DOLLARendif] = ACTIONS(1537), + [anon_sym_DOLLARelse] = ACTIONS(1537), + [anon_sym_DOLLARswitch] = ACTIONS(1537), + [anon_sym_DOLLARfor] = ACTIONS(1537), + [anon_sym_DOLLARforeach] = ACTIONS(1537), + [anon_sym_DOLLARalignof] = ACTIONS(1537), + [anon_sym_DOLLARextnameof] = ACTIONS(1537), + [anon_sym_DOLLARnameof] = ACTIONS(1537), + [anon_sym_DOLLARoffsetof] = ACTIONS(1537), + [anon_sym_DOLLARqnameof] = ACTIONS(1537), + [anon_sym_DOLLARvaconst] = ACTIONS(1537), + [anon_sym_DOLLARvaarg] = ACTIONS(1537), + [anon_sym_DOLLARvaref] = ACTIONS(1537), + [anon_sym_DOLLARvaexpr] = ACTIONS(1537), + [anon_sym_true] = ACTIONS(1537), + [anon_sym_false] = ACTIONS(1537), + [anon_sym_null] = ACTIONS(1537), + [anon_sym_DOLLARvacount] = ACTIONS(1537), + [anon_sym_DOLLARappend] = ACTIONS(1537), + [anon_sym_DOLLARconcat] = ACTIONS(1537), + [anon_sym_DOLLAReval] = ACTIONS(1537), + [anon_sym_DOLLARis_const] = ACTIONS(1537), + [anon_sym_DOLLARsizeof] = ACTIONS(1537), + [anon_sym_DOLLARstringify] = ACTIONS(1537), + [anon_sym_DOLLARand] = ACTIONS(1537), + [anon_sym_DOLLARdefined] = ACTIONS(1537), + [anon_sym_DOLLARembed] = ACTIONS(1537), + [anon_sym_DOLLARor] = ACTIONS(1537), + [anon_sym_DOLLARfeature] = ACTIONS(1537), + [anon_sym_DOLLARassignable] = ACTIONS(1537), + [anon_sym_BANG] = ACTIONS(1539), + [anon_sym_TILDE] = ACTIONS(1539), + [anon_sym_PLUS_PLUS] = ACTIONS(1539), + [anon_sym_DASH_DASH] = ACTIONS(1539), + [anon_sym_typeid] = ACTIONS(1537), + [anon_sym_LBRACE_PIPE] = ACTIONS(1539), + [anon_sym_void] = ACTIONS(1537), + [anon_sym_bool] = ACTIONS(1537), + [anon_sym_char] = ACTIONS(1537), + [anon_sym_ichar] = ACTIONS(1537), + [anon_sym_short] = ACTIONS(1537), + [anon_sym_ushort] = ACTIONS(1537), + [anon_sym_uint] = ACTIONS(1537), + [anon_sym_long] = ACTIONS(1537), + [anon_sym_ulong] = ACTIONS(1537), + [anon_sym_int128] = ACTIONS(1537), + [anon_sym_uint128] = ACTIONS(1537), + [anon_sym_float] = ACTIONS(1537), + [anon_sym_double] = ACTIONS(1537), + [anon_sym_float16] = ACTIONS(1537), + [anon_sym_bfloat16] = ACTIONS(1537), + [anon_sym_float128] = ACTIONS(1537), + [anon_sym_iptr] = ACTIONS(1537), + [anon_sym_uptr] = ACTIONS(1537), + [anon_sym_isz] = ACTIONS(1537), + [anon_sym_usz] = ACTIONS(1537), + [anon_sym_anyfault] = ACTIONS(1537), + [anon_sym_any] = ACTIONS(1537), + [anon_sym_DOLLARtypeof] = ACTIONS(1537), + [anon_sym_DOLLARtypefrom] = ACTIONS(1537), + [anon_sym_DOLLARvatype] = ACTIONS(1537), + [anon_sym_DOLLARevaltype] = ACTIONS(1537), + [sym_real_literal] = ACTIONS(1539), }, [564] = { [sym_line_comment] = STATE(564), [sym_doc_comment] = STATE(564), [sym_block_comment] = STATE(564), - [sym_ident] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(1606), - [anon_sym_SQUOTE] = ACTIONS(1606), - [anon_sym_DQUOTE] = ACTIONS(1606), - [anon_sym_BQUOTE] = ACTIONS(1606), - [sym_bytes_literal] = ACTIONS(1606), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1604), - [sym_at_ident] = ACTIONS(1606), - [sym_hash_ident] = ACTIONS(1606), - [sym_type_ident] = ACTIONS(1606), - [sym_ct_type_ident] = ACTIONS(1606), - [sym_const_ident] = ACTIONS(1604), - [sym_builtin] = ACTIONS(1606), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_AMP] = ACTIONS(1604), - [anon_sym_static] = ACTIONS(1604), - [anon_sym_tlocal] = ACTIONS(1604), - [anon_sym_SEMI] = ACTIONS(1606), - [anon_sym_fn] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(1604), - [anon_sym_const] = ACTIONS(1604), - [anon_sym_var] = ACTIONS(1604), - [anon_sym_return] = ACTIONS(1604), - [anon_sym_continue] = ACTIONS(1604), - [anon_sym_break] = ACTIONS(1604), - [anon_sym_defer] = ACTIONS(1604), - [anon_sym_assert] = ACTIONS(1604), - [anon_sym_nextcase] = ACTIONS(1604), - [anon_sym_switch] = ACTIONS(1604), - [anon_sym_AMP_AMP] = ACTIONS(1606), - [anon_sym_if] = ACTIONS(1604), - [anon_sym_for] = ACTIONS(1604), - [anon_sym_foreach] = ACTIONS(1604), - [anon_sym_foreach_r] = ACTIONS(1604), - [anon_sym_while] = ACTIONS(1604), - [anon_sym_do] = ACTIONS(1604), - [anon_sym_int] = ACTIONS(1604), - [anon_sym_PLUS] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1606), - [anon_sym_asm] = ACTIONS(1604), - [anon_sym_DOLLARassert] = ACTIONS(1604), - [anon_sym_DOLLARerror] = ACTIONS(1604), - [anon_sym_DOLLARecho] = ACTIONS(1604), - [anon_sym_DOLLARif] = ACTIONS(1604), - [anon_sym_DOLLARendif] = ACTIONS(1604), - [anon_sym_DOLLARelse] = ACTIONS(1604), - [anon_sym_DOLLARswitch] = ACTIONS(1604), - [anon_sym_DOLLARfor] = ACTIONS(1604), - [anon_sym_DOLLARforeach] = ACTIONS(1604), - [anon_sym_DOLLARalignof] = ACTIONS(1604), - [anon_sym_DOLLARextnameof] = ACTIONS(1604), - [anon_sym_DOLLARnameof] = ACTIONS(1604), - [anon_sym_DOLLARoffsetof] = ACTIONS(1604), - [anon_sym_DOLLARqnameof] = ACTIONS(1604), - [anon_sym_DOLLARvaconst] = ACTIONS(1604), - [anon_sym_DOLLARvaarg] = ACTIONS(1604), - [anon_sym_DOLLARvaref] = ACTIONS(1604), - [anon_sym_DOLLARvaexpr] = ACTIONS(1604), - [anon_sym_true] = ACTIONS(1604), - [anon_sym_false] = ACTIONS(1604), - [anon_sym_null] = ACTIONS(1604), - [anon_sym_DOLLARvacount] = ACTIONS(1604), - [anon_sym_DOLLARappend] = ACTIONS(1604), - [anon_sym_DOLLARconcat] = ACTIONS(1604), - [anon_sym_DOLLAReval] = ACTIONS(1604), - [anon_sym_DOLLARis_const] = ACTIONS(1604), - [anon_sym_DOLLARsizeof] = ACTIONS(1604), - [anon_sym_DOLLARstringify] = ACTIONS(1604), - [anon_sym_DOLLARand] = ACTIONS(1604), - [anon_sym_DOLLARdefined] = ACTIONS(1604), - [anon_sym_DOLLARembed] = ACTIONS(1604), - [anon_sym_DOLLARor] = ACTIONS(1604), - [anon_sym_DOLLARfeature] = ACTIONS(1604), - [anon_sym_DOLLARassignable] = ACTIONS(1604), - [anon_sym_BANG] = ACTIONS(1606), - [anon_sym_TILDE] = ACTIONS(1606), - [anon_sym_PLUS_PLUS] = ACTIONS(1606), - [anon_sym_DASH_DASH] = ACTIONS(1606), - [anon_sym_typeid] = ACTIONS(1604), - [anon_sym_LBRACE_PIPE] = ACTIONS(1606), - [anon_sym_void] = ACTIONS(1604), - [anon_sym_bool] = ACTIONS(1604), - [anon_sym_char] = ACTIONS(1604), - [anon_sym_ichar] = ACTIONS(1604), - [anon_sym_short] = ACTIONS(1604), - [anon_sym_ushort] = ACTIONS(1604), - [anon_sym_uint] = ACTIONS(1604), - [anon_sym_long] = ACTIONS(1604), - [anon_sym_ulong] = ACTIONS(1604), - [anon_sym_int128] = ACTIONS(1604), - [anon_sym_uint128] = ACTIONS(1604), - [anon_sym_float] = ACTIONS(1604), - [anon_sym_double] = ACTIONS(1604), - [anon_sym_float16] = ACTIONS(1604), - [anon_sym_bfloat16] = ACTIONS(1604), - [anon_sym_float128] = ACTIONS(1604), - [anon_sym_iptr] = ACTIONS(1604), - [anon_sym_uptr] = ACTIONS(1604), - [anon_sym_isz] = ACTIONS(1604), - [anon_sym_usz] = ACTIONS(1604), - [anon_sym_anyfault] = ACTIONS(1604), - [anon_sym_any] = ACTIONS(1604), - [anon_sym_DOLLARtypeof] = ACTIONS(1604), - [anon_sym_DOLLARtypefrom] = ACTIONS(1604), - [anon_sym_DOLLARvatype] = ACTIONS(1604), - [anon_sym_DOLLARevaltype] = ACTIONS(1604), - [sym_real_literal] = ACTIONS(1606), + [sym_ident] = ACTIONS(1617), + [sym_integer_literal] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1619), + [anon_sym_BQUOTE] = ACTIONS(1619), + [sym_bytes_literal] = ACTIONS(1619), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1617), + [sym_at_ident] = ACTIONS(1619), + [sym_hash_ident] = ACTIONS(1619), + [sym_type_ident] = ACTIONS(1619), + [sym_ct_type_ident] = ACTIONS(1619), + [sym_const_ident] = ACTIONS(1617), + [sym_builtin] = ACTIONS(1619), + [anon_sym_LPAREN] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1617), + [anon_sym_static] = ACTIONS(1617), + [anon_sym_tlocal] = ACTIONS(1617), + [anon_sym_SEMI] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1617), + [anon_sym_LBRACE] = ACTIONS(1617), + [anon_sym_const] = ACTIONS(1617), + [anon_sym_var] = ACTIONS(1617), + [anon_sym_return] = ACTIONS(1617), + [anon_sym_continue] = ACTIONS(1617), + [anon_sym_break] = ACTIONS(1617), + [anon_sym_defer] = ACTIONS(1617), + [anon_sym_assert] = ACTIONS(1617), + [anon_sym_nextcase] = ACTIONS(1617), + [anon_sym_switch] = ACTIONS(1617), + [anon_sym_AMP_AMP] = ACTIONS(1619), + [anon_sym_if] = ACTIONS(1617), + [anon_sym_for] = ACTIONS(1617), + [anon_sym_foreach] = ACTIONS(1617), + [anon_sym_foreach_r] = ACTIONS(1617), + [anon_sym_while] = ACTIONS(1617), + [anon_sym_do] = ACTIONS(1617), + [anon_sym_int] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_asm] = ACTIONS(1617), + [anon_sym_DOLLARassert] = ACTIONS(1617), + [anon_sym_DOLLARerror] = ACTIONS(1617), + [anon_sym_DOLLARecho] = ACTIONS(1617), + [anon_sym_DOLLARif] = ACTIONS(1617), + [anon_sym_DOLLARendif] = ACTIONS(1617), + [anon_sym_DOLLARelse] = ACTIONS(1617), + [anon_sym_DOLLARswitch] = ACTIONS(1617), + [anon_sym_DOLLARfor] = ACTIONS(1617), + [anon_sym_DOLLARforeach] = ACTIONS(1617), + [anon_sym_DOLLARalignof] = ACTIONS(1617), + [anon_sym_DOLLARextnameof] = ACTIONS(1617), + [anon_sym_DOLLARnameof] = ACTIONS(1617), + [anon_sym_DOLLARoffsetof] = ACTIONS(1617), + [anon_sym_DOLLARqnameof] = ACTIONS(1617), + [anon_sym_DOLLARvaconst] = ACTIONS(1617), + [anon_sym_DOLLARvaarg] = ACTIONS(1617), + [anon_sym_DOLLARvaref] = ACTIONS(1617), + [anon_sym_DOLLARvaexpr] = ACTIONS(1617), + [anon_sym_true] = ACTIONS(1617), + [anon_sym_false] = ACTIONS(1617), + [anon_sym_null] = ACTIONS(1617), + [anon_sym_DOLLARvacount] = ACTIONS(1617), + [anon_sym_DOLLARappend] = ACTIONS(1617), + [anon_sym_DOLLARconcat] = ACTIONS(1617), + [anon_sym_DOLLAReval] = ACTIONS(1617), + [anon_sym_DOLLARis_const] = ACTIONS(1617), + [anon_sym_DOLLARsizeof] = ACTIONS(1617), + [anon_sym_DOLLARstringify] = ACTIONS(1617), + [anon_sym_DOLLARand] = ACTIONS(1617), + [anon_sym_DOLLARdefined] = ACTIONS(1617), + [anon_sym_DOLLARembed] = ACTIONS(1617), + [anon_sym_DOLLARor] = ACTIONS(1617), + [anon_sym_DOLLARfeature] = ACTIONS(1617), + [anon_sym_DOLLARassignable] = ACTIONS(1617), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_typeid] = ACTIONS(1617), + [anon_sym_LBRACE_PIPE] = ACTIONS(1619), + [anon_sym_void] = ACTIONS(1617), + [anon_sym_bool] = ACTIONS(1617), + [anon_sym_char] = ACTIONS(1617), + [anon_sym_ichar] = ACTIONS(1617), + [anon_sym_short] = ACTIONS(1617), + [anon_sym_ushort] = ACTIONS(1617), + [anon_sym_uint] = ACTIONS(1617), + [anon_sym_long] = ACTIONS(1617), + [anon_sym_ulong] = ACTIONS(1617), + [anon_sym_int128] = ACTIONS(1617), + [anon_sym_uint128] = ACTIONS(1617), + [anon_sym_float] = ACTIONS(1617), + [anon_sym_double] = ACTIONS(1617), + [anon_sym_float16] = ACTIONS(1617), + [anon_sym_bfloat16] = ACTIONS(1617), + [anon_sym_float128] = ACTIONS(1617), + [anon_sym_iptr] = ACTIONS(1617), + [anon_sym_uptr] = ACTIONS(1617), + [anon_sym_isz] = ACTIONS(1617), + [anon_sym_usz] = ACTIONS(1617), + [anon_sym_anyfault] = ACTIONS(1617), + [anon_sym_any] = ACTIONS(1617), + [anon_sym_DOLLARtypeof] = ACTIONS(1617), + [anon_sym_DOLLARtypefrom] = ACTIONS(1617), + [anon_sym_DOLLARvatype] = ACTIONS(1617), + [anon_sym_DOLLARevaltype] = ACTIONS(1617), + [sym_real_literal] = ACTIONS(1619), }, [565] = { [sym_line_comment] = STATE(565), [sym_doc_comment] = STATE(565), [sym_block_comment] = STATE(565), - [sym_ident] = ACTIONS(1398), - [sym_integer_literal] = ACTIONS(1400), - [anon_sym_SQUOTE] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [anon_sym_BQUOTE] = ACTIONS(1400), - [sym_bytes_literal] = ACTIONS(1400), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1398), - [sym_at_ident] = ACTIONS(1400), - [sym_hash_ident] = ACTIONS(1400), - [sym_type_ident] = ACTIONS(1400), - [sym_ct_type_ident] = ACTIONS(1400), - [sym_const_ident] = ACTIONS(1398), - [sym_builtin] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1400), - [anon_sym_AMP] = ACTIONS(1398), - [anon_sym_static] = ACTIONS(1398), - [anon_sym_tlocal] = ACTIONS(1398), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym_fn] = ACTIONS(1398), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_const] = ACTIONS(1398), - [anon_sym_var] = ACTIONS(1398), - [anon_sym_return] = ACTIONS(1398), - [anon_sym_continue] = ACTIONS(1398), - [anon_sym_break] = ACTIONS(1398), - [anon_sym_defer] = ACTIONS(1398), - [anon_sym_assert] = ACTIONS(1398), - [anon_sym_nextcase] = ACTIONS(1398), - [anon_sym_switch] = ACTIONS(1398), - [anon_sym_AMP_AMP] = ACTIONS(1400), - [anon_sym_if] = ACTIONS(1398), - [anon_sym_for] = ACTIONS(1398), - [anon_sym_foreach] = ACTIONS(1398), - [anon_sym_foreach_r] = ACTIONS(1398), - [anon_sym_while] = ACTIONS(1398), - [anon_sym_do] = ACTIONS(1398), - [anon_sym_int] = ACTIONS(1398), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_asm] = ACTIONS(1398), - [anon_sym_DOLLARassert] = ACTIONS(1398), - [anon_sym_DOLLARerror] = ACTIONS(1398), - [anon_sym_DOLLARecho] = ACTIONS(1398), - [anon_sym_DOLLARif] = ACTIONS(1398), - [anon_sym_DOLLARendif] = ACTIONS(1398), - [anon_sym_DOLLARelse] = ACTIONS(1398), - [anon_sym_DOLLARswitch] = ACTIONS(1398), - [anon_sym_DOLLARfor] = ACTIONS(1398), - [anon_sym_DOLLARforeach] = ACTIONS(1398), - [anon_sym_DOLLARalignof] = ACTIONS(1398), - [anon_sym_DOLLARextnameof] = ACTIONS(1398), - [anon_sym_DOLLARnameof] = ACTIONS(1398), - [anon_sym_DOLLARoffsetof] = ACTIONS(1398), - [anon_sym_DOLLARqnameof] = ACTIONS(1398), - [anon_sym_DOLLARvaconst] = ACTIONS(1398), - [anon_sym_DOLLARvaarg] = ACTIONS(1398), - [anon_sym_DOLLARvaref] = ACTIONS(1398), - [anon_sym_DOLLARvaexpr] = ACTIONS(1398), - [anon_sym_true] = ACTIONS(1398), - [anon_sym_false] = ACTIONS(1398), - [anon_sym_null] = ACTIONS(1398), - [anon_sym_DOLLARvacount] = ACTIONS(1398), - [anon_sym_DOLLARappend] = ACTIONS(1398), - [anon_sym_DOLLARconcat] = ACTIONS(1398), - [anon_sym_DOLLAReval] = ACTIONS(1398), - [anon_sym_DOLLARis_const] = ACTIONS(1398), - [anon_sym_DOLLARsizeof] = ACTIONS(1398), - [anon_sym_DOLLARstringify] = ACTIONS(1398), - [anon_sym_DOLLARand] = ACTIONS(1398), - [anon_sym_DOLLARdefined] = ACTIONS(1398), - [anon_sym_DOLLARembed] = ACTIONS(1398), - [anon_sym_DOLLARor] = ACTIONS(1398), - [anon_sym_DOLLARfeature] = ACTIONS(1398), - [anon_sym_DOLLARassignable] = ACTIONS(1398), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [anon_sym_typeid] = ACTIONS(1398), - [anon_sym_LBRACE_PIPE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1398), - [anon_sym_bool] = ACTIONS(1398), - [anon_sym_char] = ACTIONS(1398), - [anon_sym_ichar] = ACTIONS(1398), - [anon_sym_short] = ACTIONS(1398), - [anon_sym_ushort] = ACTIONS(1398), - [anon_sym_uint] = ACTIONS(1398), - [anon_sym_long] = ACTIONS(1398), - [anon_sym_ulong] = ACTIONS(1398), - [anon_sym_int128] = ACTIONS(1398), - [anon_sym_uint128] = ACTIONS(1398), - [anon_sym_float] = ACTIONS(1398), - [anon_sym_double] = ACTIONS(1398), - [anon_sym_float16] = ACTIONS(1398), - [anon_sym_bfloat16] = ACTIONS(1398), - [anon_sym_float128] = ACTIONS(1398), - [anon_sym_iptr] = ACTIONS(1398), - [anon_sym_uptr] = ACTIONS(1398), - [anon_sym_isz] = ACTIONS(1398), - [anon_sym_usz] = ACTIONS(1398), - [anon_sym_anyfault] = ACTIONS(1398), - [anon_sym_any] = ACTIONS(1398), - [anon_sym_DOLLARtypeof] = ACTIONS(1398), - [anon_sym_DOLLARtypefrom] = ACTIONS(1398), - [anon_sym_DOLLARvatype] = ACTIONS(1398), - [anon_sym_DOLLARevaltype] = ACTIONS(1398), - [sym_real_literal] = ACTIONS(1400), + [sym_ident] = ACTIONS(1613), + [sym_integer_literal] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(1615), + [anon_sym_DQUOTE] = ACTIONS(1615), + [anon_sym_BQUOTE] = ACTIONS(1615), + [sym_bytes_literal] = ACTIONS(1615), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1613), + [sym_at_ident] = ACTIONS(1615), + [sym_hash_ident] = ACTIONS(1615), + [sym_type_ident] = ACTIONS(1615), + [sym_ct_type_ident] = ACTIONS(1615), + [sym_const_ident] = ACTIONS(1613), + [sym_builtin] = ACTIONS(1615), + [anon_sym_LPAREN] = ACTIONS(1615), + [anon_sym_AMP] = ACTIONS(1613), + [anon_sym_static] = ACTIONS(1613), + [anon_sym_tlocal] = ACTIONS(1613), + [anon_sym_SEMI] = ACTIONS(1615), + [anon_sym_fn] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(1613), + [anon_sym_const] = ACTIONS(1613), + [anon_sym_var] = ACTIONS(1613), + [anon_sym_return] = ACTIONS(1613), + [anon_sym_continue] = ACTIONS(1613), + [anon_sym_break] = ACTIONS(1613), + [anon_sym_defer] = ACTIONS(1613), + [anon_sym_assert] = ACTIONS(1613), + [anon_sym_nextcase] = ACTIONS(1613), + [anon_sym_switch] = ACTIONS(1613), + [anon_sym_AMP_AMP] = ACTIONS(1615), + [anon_sym_if] = ACTIONS(1613), + [anon_sym_for] = ACTIONS(1613), + [anon_sym_foreach] = ACTIONS(1613), + [anon_sym_foreach_r] = ACTIONS(1613), + [anon_sym_while] = ACTIONS(1613), + [anon_sym_do] = ACTIONS(1613), + [anon_sym_int] = ACTIONS(1613), + [anon_sym_PLUS] = ACTIONS(1613), + [anon_sym_DASH] = ACTIONS(1613), + [anon_sym_STAR] = ACTIONS(1615), + [anon_sym_asm] = ACTIONS(1613), + [anon_sym_DOLLARassert] = ACTIONS(1613), + [anon_sym_DOLLARerror] = ACTIONS(1613), + [anon_sym_DOLLARecho] = ACTIONS(1613), + [anon_sym_DOLLARif] = ACTIONS(1613), + [anon_sym_DOLLARendif] = ACTIONS(1613), + [anon_sym_DOLLARelse] = ACTIONS(1613), + [anon_sym_DOLLARswitch] = ACTIONS(1613), + [anon_sym_DOLLARfor] = ACTIONS(1613), + [anon_sym_DOLLARforeach] = ACTIONS(1613), + [anon_sym_DOLLARalignof] = ACTIONS(1613), + [anon_sym_DOLLARextnameof] = ACTIONS(1613), + [anon_sym_DOLLARnameof] = ACTIONS(1613), + [anon_sym_DOLLARoffsetof] = ACTIONS(1613), + [anon_sym_DOLLARqnameof] = ACTIONS(1613), + [anon_sym_DOLLARvaconst] = ACTIONS(1613), + [anon_sym_DOLLARvaarg] = ACTIONS(1613), + [anon_sym_DOLLARvaref] = ACTIONS(1613), + [anon_sym_DOLLARvaexpr] = ACTIONS(1613), + [anon_sym_true] = ACTIONS(1613), + [anon_sym_false] = ACTIONS(1613), + [anon_sym_null] = ACTIONS(1613), + [anon_sym_DOLLARvacount] = ACTIONS(1613), + [anon_sym_DOLLARappend] = ACTIONS(1613), + [anon_sym_DOLLARconcat] = ACTIONS(1613), + [anon_sym_DOLLAReval] = ACTIONS(1613), + [anon_sym_DOLLARis_const] = ACTIONS(1613), + [anon_sym_DOLLARsizeof] = ACTIONS(1613), + [anon_sym_DOLLARstringify] = ACTIONS(1613), + [anon_sym_DOLLARand] = ACTIONS(1613), + [anon_sym_DOLLARdefined] = ACTIONS(1613), + [anon_sym_DOLLARembed] = ACTIONS(1613), + [anon_sym_DOLLARor] = ACTIONS(1613), + [anon_sym_DOLLARfeature] = ACTIONS(1613), + [anon_sym_DOLLARassignable] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1615), + [anon_sym_TILDE] = ACTIONS(1615), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), + [anon_sym_typeid] = ACTIONS(1613), + [anon_sym_LBRACE_PIPE] = ACTIONS(1615), + [anon_sym_void] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_ichar] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [anon_sym_ushort] = ACTIONS(1613), + [anon_sym_uint] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_ulong] = ACTIONS(1613), + [anon_sym_int128] = ACTIONS(1613), + [anon_sym_uint128] = ACTIONS(1613), + [anon_sym_float] = ACTIONS(1613), + [anon_sym_double] = ACTIONS(1613), + [anon_sym_float16] = ACTIONS(1613), + [anon_sym_bfloat16] = ACTIONS(1613), + [anon_sym_float128] = ACTIONS(1613), + [anon_sym_iptr] = ACTIONS(1613), + [anon_sym_uptr] = ACTIONS(1613), + [anon_sym_isz] = ACTIONS(1613), + [anon_sym_usz] = ACTIONS(1613), + [anon_sym_anyfault] = ACTIONS(1613), + [anon_sym_any] = ACTIONS(1613), + [anon_sym_DOLLARtypeof] = ACTIONS(1613), + [anon_sym_DOLLARtypefrom] = ACTIONS(1613), + [anon_sym_DOLLARvatype] = ACTIONS(1613), + [anon_sym_DOLLARevaltype] = ACTIONS(1613), + [sym_real_literal] = ACTIONS(1615), }, [566] = { [sym_line_comment] = STATE(566), [sym_doc_comment] = STATE(566), [sym_block_comment] = STATE(566), - [sym_ident] = ACTIONS(1540), - [sym_integer_literal] = ACTIONS(1542), - [anon_sym_SQUOTE] = ACTIONS(1542), - [anon_sym_DQUOTE] = ACTIONS(1542), - [anon_sym_BQUOTE] = ACTIONS(1542), - [sym_bytes_literal] = ACTIONS(1542), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1540), - [sym_at_ident] = ACTIONS(1542), - [sym_hash_ident] = ACTIONS(1542), - [sym_type_ident] = ACTIONS(1542), - [sym_ct_type_ident] = ACTIONS(1542), - [sym_const_ident] = ACTIONS(1540), - [sym_builtin] = ACTIONS(1542), - [anon_sym_LPAREN] = ACTIONS(1542), - [anon_sym_AMP] = ACTIONS(1540), - [anon_sym_static] = ACTIONS(1540), - [anon_sym_tlocal] = ACTIONS(1540), - [anon_sym_SEMI] = ACTIONS(1542), - [anon_sym_fn] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(1540), - [anon_sym_const] = ACTIONS(1540), - [anon_sym_var] = ACTIONS(1540), - [anon_sym_return] = ACTIONS(1540), - [anon_sym_continue] = ACTIONS(1540), - [anon_sym_break] = ACTIONS(1540), - [anon_sym_defer] = ACTIONS(1540), - [anon_sym_assert] = ACTIONS(1540), - [anon_sym_nextcase] = ACTIONS(1540), - [anon_sym_switch] = ACTIONS(1540), - [anon_sym_AMP_AMP] = ACTIONS(1542), - [anon_sym_if] = ACTIONS(1540), - [anon_sym_for] = ACTIONS(1540), - [anon_sym_foreach] = ACTIONS(1540), - [anon_sym_foreach_r] = ACTIONS(1540), - [anon_sym_while] = ACTIONS(1540), - [anon_sym_do] = ACTIONS(1540), - [anon_sym_int] = ACTIONS(1540), - [anon_sym_PLUS] = ACTIONS(1540), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_STAR] = ACTIONS(1542), - [anon_sym_asm] = ACTIONS(1540), - [anon_sym_DOLLARassert] = ACTIONS(1540), - [anon_sym_DOLLARerror] = ACTIONS(1540), - [anon_sym_DOLLARecho] = ACTIONS(1540), - [anon_sym_DOLLARif] = ACTIONS(1540), - [anon_sym_DOLLARendif] = ACTIONS(1540), - [anon_sym_DOLLARelse] = ACTIONS(1540), - [anon_sym_DOLLARswitch] = ACTIONS(1540), - [anon_sym_DOLLARfor] = ACTIONS(1540), - [anon_sym_DOLLARforeach] = ACTIONS(1540), - [anon_sym_DOLLARalignof] = ACTIONS(1540), - [anon_sym_DOLLARextnameof] = ACTIONS(1540), - [anon_sym_DOLLARnameof] = ACTIONS(1540), - [anon_sym_DOLLARoffsetof] = ACTIONS(1540), - [anon_sym_DOLLARqnameof] = ACTIONS(1540), - [anon_sym_DOLLARvaconst] = ACTIONS(1540), - [anon_sym_DOLLARvaarg] = ACTIONS(1540), - [anon_sym_DOLLARvaref] = ACTIONS(1540), - [anon_sym_DOLLARvaexpr] = ACTIONS(1540), - [anon_sym_true] = ACTIONS(1540), - [anon_sym_false] = ACTIONS(1540), - [anon_sym_null] = ACTIONS(1540), - [anon_sym_DOLLARvacount] = ACTIONS(1540), - [anon_sym_DOLLARappend] = ACTIONS(1540), - [anon_sym_DOLLARconcat] = ACTIONS(1540), - [anon_sym_DOLLAReval] = ACTIONS(1540), - [anon_sym_DOLLARis_const] = ACTIONS(1540), - [anon_sym_DOLLARsizeof] = ACTIONS(1540), - [anon_sym_DOLLARstringify] = ACTIONS(1540), - [anon_sym_DOLLARand] = ACTIONS(1540), - [anon_sym_DOLLARdefined] = ACTIONS(1540), - [anon_sym_DOLLARembed] = ACTIONS(1540), - [anon_sym_DOLLARor] = ACTIONS(1540), - [anon_sym_DOLLARfeature] = ACTIONS(1540), - [anon_sym_DOLLARassignable] = ACTIONS(1540), - [anon_sym_BANG] = ACTIONS(1542), - [anon_sym_TILDE] = ACTIONS(1542), - [anon_sym_PLUS_PLUS] = ACTIONS(1542), - [anon_sym_DASH_DASH] = ACTIONS(1542), - [anon_sym_typeid] = ACTIONS(1540), - [anon_sym_LBRACE_PIPE] = ACTIONS(1542), - [anon_sym_void] = ACTIONS(1540), - [anon_sym_bool] = ACTIONS(1540), - [anon_sym_char] = ACTIONS(1540), - [anon_sym_ichar] = ACTIONS(1540), - [anon_sym_short] = ACTIONS(1540), - [anon_sym_ushort] = ACTIONS(1540), - [anon_sym_uint] = ACTIONS(1540), - [anon_sym_long] = ACTIONS(1540), - [anon_sym_ulong] = ACTIONS(1540), - [anon_sym_int128] = ACTIONS(1540), - [anon_sym_uint128] = ACTIONS(1540), - [anon_sym_float] = ACTIONS(1540), - [anon_sym_double] = ACTIONS(1540), - [anon_sym_float16] = ACTIONS(1540), - [anon_sym_bfloat16] = ACTIONS(1540), - [anon_sym_float128] = ACTIONS(1540), - [anon_sym_iptr] = ACTIONS(1540), - [anon_sym_uptr] = ACTIONS(1540), - [anon_sym_isz] = ACTIONS(1540), - [anon_sym_usz] = ACTIONS(1540), - [anon_sym_anyfault] = ACTIONS(1540), - [anon_sym_any] = ACTIONS(1540), - [anon_sym_DOLLARtypeof] = ACTIONS(1540), - [anon_sym_DOLLARtypefrom] = ACTIONS(1540), - [anon_sym_DOLLARvatype] = ACTIONS(1540), - [anon_sym_DOLLARevaltype] = ACTIONS(1540), - [sym_real_literal] = ACTIONS(1542), + [sym_ident] = ACTIONS(1601), + [sym_integer_literal] = ACTIONS(1603), + [anon_sym_SQUOTE] = ACTIONS(1603), + [anon_sym_DQUOTE] = ACTIONS(1603), + [anon_sym_BQUOTE] = ACTIONS(1603), + [sym_bytes_literal] = ACTIONS(1603), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1601), + [sym_at_ident] = ACTIONS(1603), + [sym_hash_ident] = ACTIONS(1603), + [sym_type_ident] = ACTIONS(1603), + [sym_ct_type_ident] = ACTIONS(1603), + [sym_const_ident] = ACTIONS(1601), + [sym_builtin] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_static] = ACTIONS(1601), + [anon_sym_tlocal] = ACTIONS(1601), + [anon_sym_SEMI] = ACTIONS(1603), + [anon_sym_fn] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(1601), + [anon_sym_const] = ACTIONS(1601), + [anon_sym_var] = ACTIONS(1601), + [anon_sym_return] = ACTIONS(1601), + [anon_sym_continue] = ACTIONS(1601), + [anon_sym_break] = ACTIONS(1601), + [anon_sym_defer] = ACTIONS(1601), + [anon_sym_assert] = ACTIONS(1601), + [anon_sym_nextcase] = ACTIONS(1601), + [anon_sym_switch] = ACTIONS(1601), + [anon_sym_AMP_AMP] = ACTIONS(1603), + [anon_sym_if] = ACTIONS(1601), + [anon_sym_for] = ACTIONS(1601), + [anon_sym_foreach] = ACTIONS(1601), + [anon_sym_foreach_r] = ACTIONS(1601), + [anon_sym_while] = ACTIONS(1601), + [anon_sym_do] = ACTIONS(1601), + [anon_sym_int] = ACTIONS(1601), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_asm] = ACTIONS(1601), + [anon_sym_DOLLARassert] = ACTIONS(1601), + [anon_sym_DOLLARerror] = ACTIONS(1601), + [anon_sym_DOLLARecho] = ACTIONS(1601), + [anon_sym_DOLLARif] = ACTIONS(1601), + [anon_sym_DOLLARendif] = ACTIONS(1601), + [anon_sym_DOLLARelse] = ACTIONS(1601), + [anon_sym_DOLLARswitch] = ACTIONS(1601), + [anon_sym_DOLLARfor] = ACTIONS(1601), + [anon_sym_DOLLARforeach] = ACTIONS(1601), + [anon_sym_DOLLARalignof] = ACTIONS(1601), + [anon_sym_DOLLARextnameof] = ACTIONS(1601), + [anon_sym_DOLLARnameof] = ACTIONS(1601), + [anon_sym_DOLLARoffsetof] = ACTIONS(1601), + [anon_sym_DOLLARqnameof] = ACTIONS(1601), + [anon_sym_DOLLARvaconst] = ACTIONS(1601), + [anon_sym_DOLLARvaarg] = ACTIONS(1601), + [anon_sym_DOLLARvaref] = ACTIONS(1601), + [anon_sym_DOLLARvaexpr] = ACTIONS(1601), + [anon_sym_true] = ACTIONS(1601), + [anon_sym_false] = ACTIONS(1601), + [anon_sym_null] = ACTIONS(1601), + [anon_sym_DOLLARvacount] = ACTIONS(1601), + [anon_sym_DOLLARappend] = ACTIONS(1601), + [anon_sym_DOLLARconcat] = ACTIONS(1601), + [anon_sym_DOLLAReval] = ACTIONS(1601), + [anon_sym_DOLLARis_const] = ACTIONS(1601), + [anon_sym_DOLLARsizeof] = ACTIONS(1601), + [anon_sym_DOLLARstringify] = ACTIONS(1601), + [anon_sym_DOLLARand] = ACTIONS(1601), + [anon_sym_DOLLARdefined] = ACTIONS(1601), + [anon_sym_DOLLARembed] = ACTIONS(1601), + [anon_sym_DOLLARor] = ACTIONS(1601), + [anon_sym_DOLLARfeature] = ACTIONS(1601), + [anon_sym_DOLLARassignable] = ACTIONS(1601), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1603), + [anon_sym_DASH_DASH] = ACTIONS(1603), + [anon_sym_typeid] = ACTIONS(1601), + [anon_sym_LBRACE_PIPE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1601), + [anon_sym_bool] = ACTIONS(1601), + [anon_sym_char] = ACTIONS(1601), + [anon_sym_ichar] = ACTIONS(1601), + [anon_sym_short] = ACTIONS(1601), + [anon_sym_ushort] = ACTIONS(1601), + [anon_sym_uint] = ACTIONS(1601), + [anon_sym_long] = ACTIONS(1601), + [anon_sym_ulong] = ACTIONS(1601), + [anon_sym_int128] = ACTIONS(1601), + [anon_sym_uint128] = ACTIONS(1601), + [anon_sym_float] = ACTIONS(1601), + [anon_sym_double] = ACTIONS(1601), + [anon_sym_float16] = ACTIONS(1601), + [anon_sym_bfloat16] = ACTIONS(1601), + [anon_sym_float128] = ACTIONS(1601), + [anon_sym_iptr] = ACTIONS(1601), + [anon_sym_uptr] = ACTIONS(1601), + [anon_sym_isz] = ACTIONS(1601), + [anon_sym_usz] = ACTIONS(1601), + [anon_sym_anyfault] = ACTIONS(1601), + [anon_sym_any] = ACTIONS(1601), + [anon_sym_DOLLARtypeof] = ACTIONS(1601), + [anon_sym_DOLLARtypefrom] = ACTIONS(1601), + [anon_sym_DOLLARvatype] = ACTIONS(1601), + [anon_sym_DOLLARevaltype] = ACTIONS(1601), + [sym_real_literal] = ACTIONS(1603), }, [567] = { [sym_line_comment] = STATE(567), [sym_doc_comment] = STATE(567), [sym_block_comment] = STATE(567), - [sym_ident] = ACTIONS(1390), - [sym_integer_literal] = ACTIONS(1392), - [anon_sym_SQUOTE] = ACTIONS(1392), - [anon_sym_DQUOTE] = ACTIONS(1392), - [anon_sym_BQUOTE] = ACTIONS(1392), - [sym_bytes_literal] = ACTIONS(1392), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1390), - [sym_at_ident] = ACTIONS(1392), - [sym_hash_ident] = ACTIONS(1392), - [sym_type_ident] = ACTIONS(1392), - [sym_ct_type_ident] = ACTIONS(1392), - [sym_const_ident] = ACTIONS(1390), - [sym_builtin] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1392), - [anon_sym_AMP] = ACTIONS(1390), - [anon_sym_static] = ACTIONS(1390), - [anon_sym_tlocal] = ACTIONS(1390), - [anon_sym_SEMI] = ACTIONS(1392), - [anon_sym_fn] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1390), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_var] = ACTIONS(1390), - [anon_sym_return] = ACTIONS(1390), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_break] = ACTIONS(1390), - [anon_sym_defer] = ACTIONS(1390), - [anon_sym_assert] = ACTIONS(1390), - [anon_sym_nextcase] = ACTIONS(1390), - [anon_sym_switch] = ACTIONS(1390), - [anon_sym_AMP_AMP] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1390), - [anon_sym_for] = ACTIONS(1390), - [anon_sym_foreach] = ACTIONS(1390), - [anon_sym_foreach_r] = ACTIONS(1390), - [anon_sym_while] = ACTIONS(1390), - [anon_sym_do] = ACTIONS(1390), - [anon_sym_int] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1390), - [anon_sym_DASH] = ACTIONS(1390), - [anon_sym_STAR] = ACTIONS(1392), - [anon_sym_asm] = ACTIONS(1390), - [anon_sym_DOLLARassert] = ACTIONS(1390), - [anon_sym_DOLLARerror] = ACTIONS(1390), - [anon_sym_DOLLARecho] = ACTIONS(1390), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_DOLLARendif] = ACTIONS(1390), - [anon_sym_DOLLARelse] = ACTIONS(1390), - [anon_sym_DOLLARswitch] = ACTIONS(1390), - [anon_sym_DOLLARfor] = ACTIONS(1390), - [anon_sym_DOLLARforeach] = ACTIONS(1390), - [anon_sym_DOLLARalignof] = ACTIONS(1390), - [anon_sym_DOLLARextnameof] = ACTIONS(1390), - [anon_sym_DOLLARnameof] = ACTIONS(1390), - [anon_sym_DOLLARoffsetof] = ACTIONS(1390), - [anon_sym_DOLLARqnameof] = ACTIONS(1390), - [anon_sym_DOLLARvaconst] = ACTIONS(1390), - [anon_sym_DOLLARvaarg] = ACTIONS(1390), - [anon_sym_DOLLARvaref] = ACTIONS(1390), - [anon_sym_DOLLARvaexpr] = ACTIONS(1390), - [anon_sym_true] = ACTIONS(1390), - [anon_sym_false] = ACTIONS(1390), - [anon_sym_null] = ACTIONS(1390), - [anon_sym_DOLLARvacount] = ACTIONS(1390), - [anon_sym_DOLLARappend] = ACTIONS(1390), - [anon_sym_DOLLARconcat] = ACTIONS(1390), - [anon_sym_DOLLAReval] = ACTIONS(1390), - [anon_sym_DOLLARis_const] = ACTIONS(1390), - [anon_sym_DOLLARsizeof] = ACTIONS(1390), - [anon_sym_DOLLARstringify] = ACTIONS(1390), - [anon_sym_DOLLARand] = ACTIONS(1390), - [anon_sym_DOLLARdefined] = ACTIONS(1390), - [anon_sym_DOLLARembed] = ACTIONS(1390), - [anon_sym_DOLLARor] = ACTIONS(1390), - [anon_sym_DOLLARfeature] = ACTIONS(1390), - [anon_sym_DOLLARassignable] = ACTIONS(1390), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_PLUS_PLUS] = ACTIONS(1392), - [anon_sym_DASH_DASH] = ACTIONS(1392), - [anon_sym_typeid] = ACTIONS(1390), - [anon_sym_LBRACE_PIPE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1390), - [anon_sym_bool] = ACTIONS(1390), - [anon_sym_char] = ACTIONS(1390), - [anon_sym_ichar] = ACTIONS(1390), - [anon_sym_short] = ACTIONS(1390), - [anon_sym_ushort] = ACTIONS(1390), - [anon_sym_uint] = ACTIONS(1390), - [anon_sym_long] = ACTIONS(1390), - [anon_sym_ulong] = ACTIONS(1390), - [anon_sym_int128] = ACTIONS(1390), - [anon_sym_uint128] = ACTIONS(1390), - [anon_sym_float] = ACTIONS(1390), - [anon_sym_double] = ACTIONS(1390), - [anon_sym_float16] = ACTIONS(1390), - [anon_sym_bfloat16] = ACTIONS(1390), - [anon_sym_float128] = ACTIONS(1390), - [anon_sym_iptr] = ACTIONS(1390), - [anon_sym_uptr] = ACTIONS(1390), - [anon_sym_isz] = ACTIONS(1390), - [anon_sym_usz] = ACTIONS(1390), - [anon_sym_anyfault] = ACTIONS(1390), - [anon_sym_any] = ACTIONS(1390), - [anon_sym_DOLLARtypeof] = ACTIONS(1390), - [anon_sym_DOLLARtypefrom] = ACTIONS(1390), - [anon_sym_DOLLARvatype] = ACTIONS(1390), - [anon_sym_DOLLARevaltype] = ACTIONS(1390), - [sym_real_literal] = ACTIONS(1392), + [sym_ident] = ACTIONS(1565), + [sym_integer_literal] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_DQUOTE] = ACTIONS(1567), + [anon_sym_BQUOTE] = ACTIONS(1567), + [sym_bytes_literal] = ACTIONS(1567), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1565), + [sym_at_ident] = ACTIONS(1567), + [sym_hash_ident] = ACTIONS(1567), + [sym_type_ident] = ACTIONS(1567), + [sym_ct_type_ident] = ACTIONS(1567), + [sym_const_ident] = ACTIONS(1565), + [sym_builtin] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_static] = ACTIONS(1565), + [anon_sym_tlocal] = ACTIONS(1565), + [anon_sym_SEMI] = ACTIONS(1567), + [anon_sym_fn] = ACTIONS(1565), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_const] = ACTIONS(1565), + [anon_sym_var] = ACTIONS(1565), + [anon_sym_return] = ACTIONS(1565), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_break] = ACTIONS(1565), + [anon_sym_defer] = ACTIONS(1565), + [anon_sym_assert] = ACTIONS(1565), + [anon_sym_nextcase] = ACTIONS(1565), + [anon_sym_switch] = ACTIONS(1565), + [anon_sym_AMP_AMP] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(1565), + [anon_sym_for] = ACTIONS(1565), + [anon_sym_foreach] = ACTIONS(1565), + [anon_sym_foreach_r] = ACTIONS(1565), + [anon_sym_while] = ACTIONS(1565), + [anon_sym_do] = ACTIONS(1565), + [anon_sym_int] = ACTIONS(1565), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_STAR] = ACTIONS(1567), + [anon_sym_asm] = ACTIONS(1565), + [anon_sym_DOLLARassert] = ACTIONS(1565), + [anon_sym_DOLLARerror] = ACTIONS(1565), + [anon_sym_DOLLARecho] = ACTIONS(1565), + [anon_sym_DOLLARif] = ACTIONS(1565), + [anon_sym_DOLLARendif] = ACTIONS(1565), + [anon_sym_DOLLARelse] = ACTIONS(1565), + [anon_sym_DOLLARswitch] = ACTIONS(1565), + [anon_sym_DOLLARfor] = ACTIONS(1565), + [anon_sym_DOLLARforeach] = ACTIONS(1565), + [anon_sym_DOLLARalignof] = ACTIONS(1565), + [anon_sym_DOLLARextnameof] = ACTIONS(1565), + [anon_sym_DOLLARnameof] = ACTIONS(1565), + [anon_sym_DOLLARoffsetof] = ACTIONS(1565), + [anon_sym_DOLLARqnameof] = ACTIONS(1565), + [anon_sym_DOLLARvaconst] = ACTIONS(1565), + [anon_sym_DOLLARvaarg] = ACTIONS(1565), + [anon_sym_DOLLARvaref] = ACTIONS(1565), + [anon_sym_DOLLARvaexpr] = ACTIONS(1565), + [anon_sym_true] = ACTIONS(1565), + [anon_sym_false] = ACTIONS(1565), + [anon_sym_null] = ACTIONS(1565), + [anon_sym_DOLLARvacount] = ACTIONS(1565), + [anon_sym_DOLLARappend] = ACTIONS(1565), + [anon_sym_DOLLARconcat] = ACTIONS(1565), + [anon_sym_DOLLAReval] = ACTIONS(1565), + [anon_sym_DOLLARis_const] = ACTIONS(1565), + [anon_sym_DOLLARsizeof] = ACTIONS(1565), + [anon_sym_DOLLARstringify] = ACTIONS(1565), + [anon_sym_DOLLARand] = ACTIONS(1565), + [anon_sym_DOLLARdefined] = ACTIONS(1565), + [anon_sym_DOLLARembed] = ACTIONS(1565), + [anon_sym_DOLLARor] = ACTIONS(1565), + [anon_sym_DOLLARfeature] = ACTIONS(1565), + [anon_sym_DOLLARassignable] = ACTIONS(1565), + [anon_sym_BANG] = ACTIONS(1567), + [anon_sym_TILDE] = ACTIONS(1567), + [anon_sym_PLUS_PLUS] = ACTIONS(1567), + [anon_sym_DASH_DASH] = ACTIONS(1567), + [anon_sym_typeid] = ACTIONS(1565), + [anon_sym_LBRACE_PIPE] = ACTIONS(1567), + [anon_sym_void] = ACTIONS(1565), + [anon_sym_bool] = ACTIONS(1565), + [anon_sym_char] = ACTIONS(1565), + [anon_sym_ichar] = ACTIONS(1565), + [anon_sym_short] = ACTIONS(1565), + [anon_sym_ushort] = ACTIONS(1565), + [anon_sym_uint] = ACTIONS(1565), + [anon_sym_long] = ACTIONS(1565), + [anon_sym_ulong] = ACTIONS(1565), + [anon_sym_int128] = ACTIONS(1565), + [anon_sym_uint128] = ACTIONS(1565), + [anon_sym_float] = ACTIONS(1565), + [anon_sym_double] = ACTIONS(1565), + [anon_sym_float16] = ACTIONS(1565), + [anon_sym_bfloat16] = ACTIONS(1565), + [anon_sym_float128] = ACTIONS(1565), + [anon_sym_iptr] = ACTIONS(1565), + [anon_sym_uptr] = ACTIONS(1565), + [anon_sym_isz] = ACTIONS(1565), + [anon_sym_usz] = ACTIONS(1565), + [anon_sym_anyfault] = ACTIONS(1565), + [anon_sym_any] = ACTIONS(1565), + [anon_sym_DOLLARtypeof] = ACTIONS(1565), + [anon_sym_DOLLARtypefrom] = ACTIONS(1565), + [anon_sym_DOLLARvatype] = ACTIONS(1565), + [anon_sym_DOLLARevaltype] = ACTIONS(1565), + [sym_real_literal] = ACTIONS(1567), }, [568] = { [sym_line_comment] = STATE(568), [sym_doc_comment] = STATE(568), [sym_block_comment] = STATE(568), - [sym_ident] = ACTIONS(1376), - [sym_integer_literal] = ACTIONS(1378), - [anon_sym_SQUOTE] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1378), - [anon_sym_BQUOTE] = ACTIONS(1378), - [sym_bytes_literal] = ACTIONS(1378), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1376), - [sym_at_ident] = ACTIONS(1378), - [sym_hash_ident] = ACTIONS(1378), - [sym_type_ident] = ACTIONS(1378), - [sym_ct_type_ident] = ACTIONS(1378), - [sym_const_ident] = ACTIONS(1376), - [sym_builtin] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_AMP] = ACTIONS(1376), - [anon_sym_static] = ACTIONS(1376), - [anon_sym_tlocal] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1378), - [anon_sym_fn] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_var] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_defer] = ACTIONS(1376), - [anon_sym_assert] = ACTIONS(1376), - [anon_sym_nextcase] = ACTIONS(1376), - [anon_sym_switch] = ACTIONS(1376), - [anon_sym_AMP_AMP] = ACTIONS(1378), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_else] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_foreach] = ACTIONS(1376), - [anon_sym_foreach_r] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_int] = ACTIONS(1376), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_asm] = ACTIONS(1376), - [anon_sym_DOLLARassert] = ACTIONS(1376), - [anon_sym_DOLLARerror] = ACTIONS(1376), - [anon_sym_DOLLARecho] = ACTIONS(1376), - [anon_sym_DOLLARif] = ACTIONS(1376), - [anon_sym_DOLLARswitch] = ACTIONS(1376), - [anon_sym_DOLLARfor] = ACTIONS(1376), - [anon_sym_DOLLARendfor] = ACTIONS(1376), - [anon_sym_DOLLARforeach] = ACTIONS(1376), - [anon_sym_DOLLARalignof] = ACTIONS(1376), - [anon_sym_DOLLARextnameof] = ACTIONS(1376), - [anon_sym_DOLLARnameof] = ACTIONS(1376), - [anon_sym_DOLLARoffsetof] = ACTIONS(1376), - [anon_sym_DOLLARqnameof] = ACTIONS(1376), - [anon_sym_DOLLARvaconst] = ACTIONS(1376), - [anon_sym_DOLLARvaarg] = ACTIONS(1376), - [anon_sym_DOLLARvaref] = ACTIONS(1376), - [anon_sym_DOLLARvaexpr] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_DOLLARvacount] = ACTIONS(1376), - [anon_sym_DOLLARappend] = ACTIONS(1376), - [anon_sym_DOLLARconcat] = ACTIONS(1376), - [anon_sym_DOLLAReval] = ACTIONS(1376), - [anon_sym_DOLLARis_const] = ACTIONS(1376), - [anon_sym_DOLLARsizeof] = ACTIONS(1376), - [anon_sym_DOLLARstringify] = ACTIONS(1376), - [anon_sym_DOLLARand] = ACTIONS(1376), - [anon_sym_DOLLARdefined] = ACTIONS(1376), - [anon_sym_DOLLARembed] = ACTIONS(1376), - [anon_sym_DOLLARor] = ACTIONS(1376), - [anon_sym_DOLLARfeature] = ACTIONS(1376), - [anon_sym_DOLLARassignable] = ACTIONS(1376), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_PLUS_PLUS] = ACTIONS(1378), - [anon_sym_DASH_DASH] = ACTIONS(1378), - [anon_sym_typeid] = ACTIONS(1376), - [anon_sym_LBRACE_PIPE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1376), - [anon_sym_bool] = ACTIONS(1376), - [anon_sym_char] = ACTIONS(1376), - [anon_sym_ichar] = ACTIONS(1376), - [anon_sym_short] = ACTIONS(1376), - [anon_sym_ushort] = ACTIONS(1376), - [anon_sym_uint] = ACTIONS(1376), - [anon_sym_long] = ACTIONS(1376), - [anon_sym_ulong] = ACTIONS(1376), - [anon_sym_int128] = ACTIONS(1376), - [anon_sym_uint128] = ACTIONS(1376), - [anon_sym_float] = ACTIONS(1376), - [anon_sym_double] = ACTIONS(1376), - [anon_sym_float16] = ACTIONS(1376), - [anon_sym_bfloat16] = ACTIONS(1376), - [anon_sym_float128] = ACTIONS(1376), - [anon_sym_iptr] = ACTIONS(1376), - [anon_sym_uptr] = ACTIONS(1376), - [anon_sym_isz] = ACTIONS(1376), - [anon_sym_usz] = ACTIONS(1376), - [anon_sym_anyfault] = ACTIONS(1376), - [anon_sym_any] = ACTIONS(1376), - [anon_sym_DOLLARtypeof] = ACTIONS(1376), - [anon_sym_DOLLARtypefrom] = ACTIONS(1376), - [anon_sym_DOLLARvatype] = ACTIONS(1376), - [anon_sym_DOLLARevaltype] = ACTIONS(1376), - [sym_real_literal] = ACTIONS(1378), + [sym_ident] = ACTIONS(1529), + [sym_integer_literal] = ACTIONS(1531), + [anon_sym_SQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [anon_sym_BQUOTE] = ACTIONS(1531), + [sym_bytes_literal] = ACTIONS(1531), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1529), + [sym_at_ident] = ACTIONS(1531), + [sym_hash_ident] = ACTIONS(1531), + [sym_type_ident] = ACTIONS(1531), + [sym_ct_type_ident] = ACTIONS(1531), + [sym_const_ident] = ACTIONS(1529), + [sym_builtin] = ACTIONS(1531), + [anon_sym_LPAREN] = ACTIONS(1531), + [anon_sym_AMP] = ACTIONS(1529), + [anon_sym_static] = ACTIONS(1529), + [anon_sym_tlocal] = ACTIONS(1529), + [anon_sym_SEMI] = ACTIONS(1531), + [anon_sym_fn] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1529), + [anon_sym_const] = ACTIONS(1529), + [anon_sym_var] = ACTIONS(1529), + [anon_sym_return] = ACTIONS(1529), + [anon_sym_continue] = ACTIONS(1529), + [anon_sym_break] = ACTIONS(1529), + [anon_sym_defer] = ACTIONS(1529), + [anon_sym_assert] = ACTIONS(1529), + [anon_sym_nextcase] = ACTIONS(1529), + [anon_sym_switch] = ACTIONS(1529), + [anon_sym_AMP_AMP] = ACTIONS(1531), + [anon_sym_if] = ACTIONS(1529), + [anon_sym_for] = ACTIONS(1529), + [anon_sym_foreach] = ACTIONS(1529), + [anon_sym_foreach_r] = ACTIONS(1529), + [anon_sym_while] = ACTIONS(1529), + [anon_sym_do] = ACTIONS(1529), + [anon_sym_int] = ACTIONS(1529), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_STAR] = ACTIONS(1531), + [anon_sym_asm] = ACTIONS(1529), + [anon_sym_DOLLARassert] = ACTIONS(1529), + [anon_sym_DOLLARerror] = ACTIONS(1529), + [anon_sym_DOLLARecho] = ACTIONS(1529), + [anon_sym_DOLLARif] = ACTIONS(1529), + [anon_sym_DOLLARendif] = ACTIONS(1529), + [anon_sym_DOLLARelse] = ACTIONS(1529), + [anon_sym_DOLLARswitch] = ACTIONS(1529), + [anon_sym_DOLLARfor] = ACTIONS(1529), + [anon_sym_DOLLARforeach] = ACTIONS(1529), + [anon_sym_DOLLARalignof] = ACTIONS(1529), + [anon_sym_DOLLARextnameof] = ACTIONS(1529), + [anon_sym_DOLLARnameof] = ACTIONS(1529), + [anon_sym_DOLLARoffsetof] = ACTIONS(1529), + [anon_sym_DOLLARqnameof] = ACTIONS(1529), + [anon_sym_DOLLARvaconst] = ACTIONS(1529), + [anon_sym_DOLLARvaarg] = ACTIONS(1529), + [anon_sym_DOLLARvaref] = ACTIONS(1529), + [anon_sym_DOLLARvaexpr] = ACTIONS(1529), + [anon_sym_true] = ACTIONS(1529), + [anon_sym_false] = ACTIONS(1529), + [anon_sym_null] = ACTIONS(1529), + [anon_sym_DOLLARvacount] = ACTIONS(1529), + [anon_sym_DOLLARappend] = ACTIONS(1529), + [anon_sym_DOLLARconcat] = ACTIONS(1529), + [anon_sym_DOLLAReval] = ACTIONS(1529), + [anon_sym_DOLLARis_const] = ACTIONS(1529), + [anon_sym_DOLLARsizeof] = ACTIONS(1529), + [anon_sym_DOLLARstringify] = ACTIONS(1529), + [anon_sym_DOLLARand] = ACTIONS(1529), + [anon_sym_DOLLARdefined] = ACTIONS(1529), + [anon_sym_DOLLARembed] = ACTIONS(1529), + [anon_sym_DOLLARor] = ACTIONS(1529), + [anon_sym_DOLLARfeature] = ACTIONS(1529), + [anon_sym_DOLLARassignable] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1531), + [anon_sym_TILDE] = ACTIONS(1531), + [anon_sym_PLUS_PLUS] = ACTIONS(1531), + [anon_sym_DASH_DASH] = ACTIONS(1531), + [anon_sym_typeid] = ACTIONS(1529), + [anon_sym_LBRACE_PIPE] = ACTIONS(1531), + [anon_sym_void] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_ichar] = ACTIONS(1529), + [anon_sym_short] = ACTIONS(1529), + [anon_sym_ushort] = ACTIONS(1529), + [anon_sym_uint] = ACTIONS(1529), + [anon_sym_long] = ACTIONS(1529), + [anon_sym_ulong] = ACTIONS(1529), + [anon_sym_int128] = ACTIONS(1529), + [anon_sym_uint128] = ACTIONS(1529), + [anon_sym_float] = ACTIONS(1529), + [anon_sym_double] = ACTIONS(1529), + [anon_sym_float16] = ACTIONS(1529), + [anon_sym_bfloat16] = ACTIONS(1529), + [anon_sym_float128] = ACTIONS(1529), + [anon_sym_iptr] = ACTIONS(1529), + [anon_sym_uptr] = ACTIONS(1529), + [anon_sym_isz] = ACTIONS(1529), + [anon_sym_usz] = ACTIONS(1529), + [anon_sym_anyfault] = ACTIONS(1529), + [anon_sym_any] = ACTIONS(1529), + [anon_sym_DOLLARtypeof] = ACTIONS(1529), + [anon_sym_DOLLARtypefrom] = ACTIONS(1529), + [anon_sym_DOLLARvatype] = ACTIONS(1529), + [anon_sym_DOLLARevaltype] = ACTIONS(1529), + [sym_real_literal] = ACTIONS(1531), }, [569] = { [sym_line_comment] = STATE(569), [sym_doc_comment] = STATE(569), [sym_block_comment] = STATE(569), - [sym_ident] = ACTIONS(1568), - [sym_integer_literal] = ACTIONS(1570), - [anon_sym_SQUOTE] = ACTIONS(1570), - [anon_sym_DQUOTE] = ACTIONS(1570), - [anon_sym_BQUOTE] = ACTIONS(1570), - [sym_bytes_literal] = ACTIONS(1570), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1568), - [sym_at_ident] = ACTIONS(1570), - [sym_hash_ident] = ACTIONS(1570), - [sym_type_ident] = ACTIONS(1570), - [sym_ct_type_ident] = ACTIONS(1570), - [sym_const_ident] = ACTIONS(1568), - [sym_builtin] = ACTIONS(1570), - [anon_sym_LPAREN] = ACTIONS(1570), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_static] = ACTIONS(1568), - [anon_sym_tlocal] = ACTIONS(1568), - [anon_sym_SEMI] = ACTIONS(1570), - [anon_sym_fn] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(1568), - [anon_sym_const] = ACTIONS(1568), - [anon_sym_var] = ACTIONS(1568), - [anon_sym_return] = ACTIONS(1568), - [anon_sym_continue] = ACTIONS(1568), - [anon_sym_break] = ACTIONS(1568), - [anon_sym_defer] = ACTIONS(1568), - [anon_sym_assert] = ACTIONS(1568), - [anon_sym_nextcase] = ACTIONS(1568), - [anon_sym_switch] = ACTIONS(1568), - [anon_sym_AMP_AMP] = ACTIONS(1570), - [anon_sym_if] = ACTIONS(1568), - [anon_sym_for] = ACTIONS(1568), - [anon_sym_foreach] = ACTIONS(1568), - [anon_sym_foreach_r] = ACTIONS(1568), - [anon_sym_while] = ACTIONS(1568), - [anon_sym_do] = ACTIONS(1568), - [anon_sym_int] = ACTIONS(1568), - [anon_sym_PLUS] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1568), - [anon_sym_STAR] = ACTIONS(1570), - [anon_sym_asm] = ACTIONS(1568), - [anon_sym_DOLLARassert] = ACTIONS(1568), - [anon_sym_DOLLARerror] = ACTIONS(1568), - [anon_sym_DOLLARecho] = ACTIONS(1568), - [anon_sym_DOLLARif] = ACTIONS(1568), - [anon_sym_DOLLARendif] = ACTIONS(1568), - [anon_sym_DOLLARelse] = ACTIONS(1568), - [anon_sym_DOLLARswitch] = ACTIONS(1568), - [anon_sym_DOLLARfor] = ACTIONS(1568), - [anon_sym_DOLLARforeach] = ACTIONS(1568), - [anon_sym_DOLLARalignof] = ACTIONS(1568), - [anon_sym_DOLLARextnameof] = ACTIONS(1568), - [anon_sym_DOLLARnameof] = ACTIONS(1568), - [anon_sym_DOLLARoffsetof] = ACTIONS(1568), - [anon_sym_DOLLARqnameof] = ACTIONS(1568), - [anon_sym_DOLLARvaconst] = ACTIONS(1568), - [anon_sym_DOLLARvaarg] = ACTIONS(1568), - [anon_sym_DOLLARvaref] = ACTIONS(1568), - [anon_sym_DOLLARvaexpr] = ACTIONS(1568), - [anon_sym_true] = ACTIONS(1568), - [anon_sym_false] = ACTIONS(1568), - [anon_sym_null] = ACTIONS(1568), - [anon_sym_DOLLARvacount] = ACTIONS(1568), - [anon_sym_DOLLARappend] = ACTIONS(1568), - [anon_sym_DOLLARconcat] = ACTIONS(1568), - [anon_sym_DOLLAReval] = ACTIONS(1568), - [anon_sym_DOLLARis_const] = ACTIONS(1568), - [anon_sym_DOLLARsizeof] = ACTIONS(1568), - [anon_sym_DOLLARstringify] = ACTIONS(1568), - [anon_sym_DOLLARand] = ACTIONS(1568), - [anon_sym_DOLLARdefined] = ACTIONS(1568), - [anon_sym_DOLLARembed] = ACTIONS(1568), - [anon_sym_DOLLARor] = ACTIONS(1568), - [anon_sym_DOLLARfeature] = ACTIONS(1568), - [anon_sym_DOLLARassignable] = ACTIONS(1568), - [anon_sym_BANG] = ACTIONS(1570), - [anon_sym_TILDE] = ACTIONS(1570), - [anon_sym_PLUS_PLUS] = ACTIONS(1570), - [anon_sym_DASH_DASH] = ACTIONS(1570), - [anon_sym_typeid] = ACTIONS(1568), - [anon_sym_LBRACE_PIPE] = ACTIONS(1570), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_bool] = ACTIONS(1568), - [anon_sym_char] = ACTIONS(1568), - [anon_sym_ichar] = ACTIONS(1568), - [anon_sym_short] = ACTIONS(1568), - [anon_sym_ushort] = ACTIONS(1568), - [anon_sym_uint] = ACTIONS(1568), - [anon_sym_long] = ACTIONS(1568), - [anon_sym_ulong] = ACTIONS(1568), - [anon_sym_int128] = ACTIONS(1568), - [anon_sym_uint128] = ACTIONS(1568), - [anon_sym_float] = ACTIONS(1568), - [anon_sym_double] = ACTIONS(1568), - [anon_sym_float16] = ACTIONS(1568), - [anon_sym_bfloat16] = ACTIONS(1568), - [anon_sym_float128] = ACTIONS(1568), - [anon_sym_iptr] = ACTIONS(1568), - [anon_sym_uptr] = ACTIONS(1568), - [anon_sym_isz] = ACTIONS(1568), - [anon_sym_usz] = ACTIONS(1568), - [anon_sym_anyfault] = ACTIONS(1568), - [anon_sym_any] = ACTIONS(1568), - [anon_sym_DOLLARtypeof] = ACTIONS(1568), - [anon_sym_DOLLARtypefrom] = ACTIONS(1568), - [anon_sym_DOLLARvatype] = ACTIONS(1568), - [anon_sym_DOLLARevaltype] = ACTIONS(1568), - [sym_real_literal] = ACTIONS(1570), + [sym_ident] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1527), + [anon_sym_SQUOTE] = ACTIONS(1527), + [anon_sym_DQUOTE] = ACTIONS(1527), + [anon_sym_BQUOTE] = ACTIONS(1527), + [sym_bytes_literal] = ACTIONS(1527), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1525), + [sym_at_ident] = ACTIONS(1527), + [sym_hash_ident] = ACTIONS(1527), + [sym_type_ident] = ACTIONS(1527), + [sym_ct_type_ident] = ACTIONS(1527), + [sym_const_ident] = ACTIONS(1525), + [sym_builtin] = ACTIONS(1527), + [anon_sym_LPAREN] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_static] = ACTIONS(1525), + [anon_sym_tlocal] = ACTIONS(1525), + [anon_sym_SEMI] = ACTIONS(1527), + [anon_sym_fn] = ACTIONS(1525), + [anon_sym_LBRACE] = ACTIONS(1525), + [anon_sym_const] = ACTIONS(1525), + [anon_sym_var] = ACTIONS(1525), + [anon_sym_return] = ACTIONS(1525), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_break] = ACTIONS(1525), + [anon_sym_defer] = ACTIONS(1525), + [anon_sym_assert] = ACTIONS(1525), + [anon_sym_nextcase] = ACTIONS(1525), + [anon_sym_switch] = ACTIONS(1525), + [anon_sym_AMP_AMP] = ACTIONS(1527), + [anon_sym_if] = ACTIONS(1525), + [anon_sym_for] = ACTIONS(1525), + [anon_sym_foreach] = ACTIONS(1525), + [anon_sym_foreach_r] = ACTIONS(1525), + [anon_sym_while] = ACTIONS(1525), + [anon_sym_do] = ACTIONS(1525), + [anon_sym_int] = ACTIONS(1525), + [anon_sym_PLUS] = ACTIONS(1525), + [anon_sym_DASH] = ACTIONS(1525), + [anon_sym_STAR] = ACTIONS(1527), + [anon_sym_asm] = ACTIONS(1525), + [anon_sym_DOLLARassert] = ACTIONS(1525), + [anon_sym_DOLLARerror] = ACTIONS(1525), + [anon_sym_DOLLARecho] = ACTIONS(1525), + [anon_sym_DOLLARif] = ACTIONS(1525), + [anon_sym_DOLLARendif] = ACTIONS(1525), + [anon_sym_DOLLARelse] = ACTIONS(1525), + [anon_sym_DOLLARswitch] = ACTIONS(1525), + [anon_sym_DOLLARfor] = ACTIONS(1525), + [anon_sym_DOLLARforeach] = ACTIONS(1525), + [anon_sym_DOLLARalignof] = ACTIONS(1525), + [anon_sym_DOLLARextnameof] = ACTIONS(1525), + [anon_sym_DOLLARnameof] = ACTIONS(1525), + [anon_sym_DOLLARoffsetof] = ACTIONS(1525), + [anon_sym_DOLLARqnameof] = ACTIONS(1525), + [anon_sym_DOLLARvaconst] = ACTIONS(1525), + [anon_sym_DOLLARvaarg] = ACTIONS(1525), + [anon_sym_DOLLARvaref] = ACTIONS(1525), + [anon_sym_DOLLARvaexpr] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(1525), + [anon_sym_false] = ACTIONS(1525), + [anon_sym_null] = ACTIONS(1525), + [anon_sym_DOLLARvacount] = ACTIONS(1525), + [anon_sym_DOLLARappend] = ACTIONS(1525), + [anon_sym_DOLLARconcat] = ACTIONS(1525), + [anon_sym_DOLLAReval] = ACTIONS(1525), + [anon_sym_DOLLARis_const] = ACTIONS(1525), + [anon_sym_DOLLARsizeof] = ACTIONS(1525), + [anon_sym_DOLLARstringify] = ACTIONS(1525), + [anon_sym_DOLLARand] = ACTIONS(1525), + [anon_sym_DOLLARdefined] = ACTIONS(1525), + [anon_sym_DOLLARembed] = ACTIONS(1525), + [anon_sym_DOLLARor] = ACTIONS(1525), + [anon_sym_DOLLARfeature] = ACTIONS(1525), + [anon_sym_DOLLARassignable] = ACTIONS(1525), + [anon_sym_BANG] = ACTIONS(1527), + [anon_sym_TILDE] = ACTIONS(1527), + [anon_sym_PLUS_PLUS] = ACTIONS(1527), + [anon_sym_DASH_DASH] = ACTIONS(1527), + [anon_sym_typeid] = ACTIONS(1525), + [anon_sym_LBRACE_PIPE] = ACTIONS(1527), + [anon_sym_void] = ACTIONS(1525), + [anon_sym_bool] = ACTIONS(1525), + [anon_sym_char] = ACTIONS(1525), + [anon_sym_ichar] = ACTIONS(1525), + [anon_sym_short] = ACTIONS(1525), + [anon_sym_ushort] = ACTIONS(1525), + [anon_sym_uint] = ACTIONS(1525), + [anon_sym_long] = ACTIONS(1525), + [anon_sym_ulong] = ACTIONS(1525), + [anon_sym_int128] = ACTIONS(1525), + [anon_sym_uint128] = ACTIONS(1525), + [anon_sym_float] = ACTIONS(1525), + [anon_sym_double] = ACTIONS(1525), + [anon_sym_float16] = ACTIONS(1525), + [anon_sym_bfloat16] = ACTIONS(1525), + [anon_sym_float128] = ACTIONS(1525), + [anon_sym_iptr] = ACTIONS(1525), + [anon_sym_uptr] = ACTIONS(1525), + [anon_sym_isz] = ACTIONS(1525), + [anon_sym_usz] = ACTIONS(1525), + [anon_sym_anyfault] = ACTIONS(1525), + [anon_sym_any] = ACTIONS(1525), + [anon_sym_DOLLARtypeof] = ACTIONS(1525), + [anon_sym_DOLLARtypefrom] = ACTIONS(1525), + [anon_sym_DOLLARvatype] = ACTIONS(1525), + [anon_sym_DOLLARevaltype] = ACTIONS(1525), + [sym_real_literal] = ACTIONS(1527), }, [570] = { [sym_line_comment] = STATE(570), [sym_doc_comment] = STATE(570), [sym_block_comment] = STATE(570), - [sym_ident] = ACTIONS(1652), - [sym_integer_literal] = ACTIONS(1654), - [anon_sym_SQUOTE] = ACTIONS(1654), - [anon_sym_DQUOTE] = ACTIONS(1654), - [anon_sym_BQUOTE] = ACTIONS(1654), - [sym_bytes_literal] = ACTIONS(1654), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1652), - [sym_at_ident] = ACTIONS(1654), - [sym_hash_ident] = ACTIONS(1654), - [sym_type_ident] = ACTIONS(1654), - [sym_ct_type_ident] = ACTIONS(1654), - [sym_const_ident] = ACTIONS(1652), - [sym_builtin] = ACTIONS(1654), - [anon_sym_LPAREN] = ACTIONS(1654), - [anon_sym_AMP] = ACTIONS(1652), - [anon_sym_static] = ACTIONS(1652), - [anon_sym_tlocal] = ACTIONS(1652), - [anon_sym_SEMI] = ACTIONS(1654), - [anon_sym_fn] = ACTIONS(1652), - [anon_sym_LBRACE] = ACTIONS(1652), - [anon_sym_const] = ACTIONS(1652), - [anon_sym_var] = ACTIONS(1652), - [anon_sym_return] = ACTIONS(1652), - [anon_sym_continue] = ACTIONS(1652), - [anon_sym_break] = ACTIONS(1652), - [anon_sym_defer] = ACTIONS(1652), - [anon_sym_assert] = ACTIONS(1652), - [anon_sym_nextcase] = ACTIONS(1652), - [anon_sym_switch] = ACTIONS(1652), - [anon_sym_AMP_AMP] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1652), - [anon_sym_for] = ACTIONS(1652), - [anon_sym_foreach] = ACTIONS(1652), - [anon_sym_foreach_r] = ACTIONS(1652), - [anon_sym_while] = ACTIONS(1652), - [anon_sym_do] = ACTIONS(1652), - [anon_sym_int] = ACTIONS(1652), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_asm] = ACTIONS(1652), - [anon_sym_DOLLARassert] = ACTIONS(1652), - [anon_sym_DOLLARerror] = ACTIONS(1652), - [anon_sym_DOLLARecho] = ACTIONS(1652), - [anon_sym_DOLLARif] = ACTIONS(1652), - [anon_sym_DOLLARendif] = ACTIONS(1652), - [anon_sym_DOLLARelse] = ACTIONS(1652), - [anon_sym_DOLLARswitch] = ACTIONS(1652), - [anon_sym_DOLLARfor] = ACTIONS(1652), - [anon_sym_DOLLARforeach] = ACTIONS(1652), - [anon_sym_DOLLARalignof] = ACTIONS(1652), - [anon_sym_DOLLARextnameof] = ACTIONS(1652), - [anon_sym_DOLLARnameof] = ACTIONS(1652), - [anon_sym_DOLLARoffsetof] = ACTIONS(1652), - [anon_sym_DOLLARqnameof] = ACTIONS(1652), - [anon_sym_DOLLARvaconst] = ACTIONS(1652), - [anon_sym_DOLLARvaarg] = ACTIONS(1652), - [anon_sym_DOLLARvaref] = ACTIONS(1652), - [anon_sym_DOLLARvaexpr] = ACTIONS(1652), - [anon_sym_true] = ACTIONS(1652), - [anon_sym_false] = ACTIONS(1652), - [anon_sym_null] = ACTIONS(1652), - [anon_sym_DOLLARvacount] = ACTIONS(1652), - [anon_sym_DOLLARappend] = ACTIONS(1652), - [anon_sym_DOLLARconcat] = ACTIONS(1652), - [anon_sym_DOLLAReval] = ACTIONS(1652), - [anon_sym_DOLLARis_const] = ACTIONS(1652), - [anon_sym_DOLLARsizeof] = ACTIONS(1652), - [anon_sym_DOLLARstringify] = ACTIONS(1652), - [anon_sym_DOLLARand] = ACTIONS(1652), - [anon_sym_DOLLARdefined] = ACTIONS(1652), - [anon_sym_DOLLARembed] = ACTIONS(1652), - [anon_sym_DOLLARor] = ACTIONS(1652), - [anon_sym_DOLLARfeature] = ACTIONS(1652), - [anon_sym_DOLLARassignable] = ACTIONS(1652), - [anon_sym_BANG] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1654), - [anon_sym_PLUS_PLUS] = ACTIONS(1654), - [anon_sym_DASH_DASH] = ACTIONS(1654), - [anon_sym_typeid] = ACTIONS(1652), - [anon_sym_LBRACE_PIPE] = ACTIONS(1654), - [anon_sym_void] = ACTIONS(1652), - [anon_sym_bool] = ACTIONS(1652), - [anon_sym_char] = ACTIONS(1652), - [anon_sym_ichar] = ACTIONS(1652), - [anon_sym_short] = ACTIONS(1652), - [anon_sym_ushort] = ACTIONS(1652), - [anon_sym_uint] = ACTIONS(1652), - [anon_sym_long] = ACTIONS(1652), - [anon_sym_ulong] = ACTIONS(1652), - [anon_sym_int128] = ACTIONS(1652), - [anon_sym_uint128] = ACTIONS(1652), - [anon_sym_float] = ACTIONS(1652), - [anon_sym_double] = ACTIONS(1652), - [anon_sym_float16] = ACTIONS(1652), - [anon_sym_bfloat16] = ACTIONS(1652), - [anon_sym_float128] = ACTIONS(1652), - [anon_sym_iptr] = ACTIONS(1652), - [anon_sym_uptr] = ACTIONS(1652), - [anon_sym_isz] = ACTIONS(1652), - [anon_sym_usz] = ACTIONS(1652), - [anon_sym_anyfault] = ACTIONS(1652), - [anon_sym_any] = ACTIONS(1652), - [anon_sym_DOLLARtypeof] = ACTIONS(1652), - [anon_sym_DOLLARtypefrom] = ACTIONS(1652), - [anon_sym_DOLLARvatype] = ACTIONS(1652), - [anon_sym_DOLLARevaltype] = ACTIONS(1652), - [sym_real_literal] = ACTIONS(1654), + [sym_ident] = ACTIONS(1537), + [sym_integer_literal] = ACTIONS(1539), + [anon_sym_SQUOTE] = ACTIONS(1539), + [anon_sym_DQUOTE] = ACTIONS(1539), + [anon_sym_BQUOTE] = ACTIONS(1539), + [sym_bytes_literal] = ACTIONS(1539), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1537), + [sym_at_ident] = ACTIONS(1539), + [sym_hash_ident] = ACTIONS(1539), + [sym_type_ident] = ACTIONS(1539), + [sym_ct_type_ident] = ACTIONS(1539), + [sym_const_ident] = ACTIONS(1537), + [sym_builtin] = ACTIONS(1539), + [anon_sym_LPAREN] = ACTIONS(1539), + [anon_sym_AMP] = ACTIONS(1537), + [anon_sym_static] = ACTIONS(1537), + [anon_sym_tlocal] = ACTIONS(1537), + [anon_sym_SEMI] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1537), + [anon_sym_LBRACE] = ACTIONS(1537), + [anon_sym_const] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(1537), + [anon_sym_return] = ACTIONS(1537), + [anon_sym_continue] = ACTIONS(1537), + [anon_sym_break] = ACTIONS(1537), + [anon_sym_defer] = ACTIONS(1537), + [anon_sym_assert] = ACTIONS(1537), + [anon_sym_nextcase] = ACTIONS(1537), + [anon_sym_switch] = ACTIONS(1537), + [anon_sym_AMP_AMP] = ACTIONS(1539), + [anon_sym_if] = ACTIONS(1537), + [anon_sym_for] = ACTIONS(1537), + [anon_sym_foreach] = ACTIONS(1537), + [anon_sym_foreach_r] = ACTIONS(1537), + [anon_sym_while] = ACTIONS(1537), + [anon_sym_do] = ACTIONS(1537), + [anon_sym_int] = ACTIONS(1537), + [anon_sym_PLUS] = ACTIONS(1537), + [anon_sym_DASH] = ACTIONS(1537), + [anon_sym_STAR] = ACTIONS(1539), + [anon_sym_asm] = ACTIONS(1537), + [anon_sym_DOLLARassert] = ACTIONS(1537), + [anon_sym_DOLLARerror] = ACTIONS(1537), + [anon_sym_DOLLARecho] = ACTIONS(1537), + [anon_sym_DOLLARif] = ACTIONS(1537), + [anon_sym_DOLLARswitch] = ACTIONS(1537), + [anon_sym_DOLLARfor] = ACTIONS(1537), + [anon_sym_DOLLARforeach] = ACTIONS(1537), + [anon_sym_DOLLARendforeach] = ACTIONS(1537), + [anon_sym_DOLLARalignof] = ACTIONS(1537), + [anon_sym_DOLLARextnameof] = ACTIONS(1537), + [anon_sym_DOLLARnameof] = ACTIONS(1537), + [anon_sym_DOLLARoffsetof] = ACTIONS(1537), + [anon_sym_DOLLARqnameof] = ACTIONS(1537), + [anon_sym_DOLLARvaconst] = ACTIONS(1537), + [anon_sym_DOLLARvaarg] = ACTIONS(1537), + [anon_sym_DOLLARvaref] = ACTIONS(1537), + [anon_sym_DOLLARvaexpr] = ACTIONS(1537), + [anon_sym_true] = ACTIONS(1537), + [anon_sym_false] = ACTIONS(1537), + [anon_sym_null] = ACTIONS(1537), + [anon_sym_DOLLARvacount] = ACTIONS(1537), + [anon_sym_DOLLARappend] = ACTIONS(1537), + [anon_sym_DOLLARconcat] = ACTIONS(1537), + [anon_sym_DOLLAReval] = ACTIONS(1537), + [anon_sym_DOLLARis_const] = ACTIONS(1537), + [anon_sym_DOLLARsizeof] = ACTIONS(1537), + [anon_sym_DOLLARstringify] = ACTIONS(1537), + [anon_sym_DOLLARand] = ACTIONS(1537), + [anon_sym_DOLLARdefined] = ACTIONS(1537), + [anon_sym_DOLLARembed] = ACTIONS(1537), + [anon_sym_DOLLARor] = ACTIONS(1537), + [anon_sym_DOLLARfeature] = ACTIONS(1537), + [anon_sym_DOLLARassignable] = ACTIONS(1537), + [anon_sym_BANG] = ACTIONS(1539), + [anon_sym_TILDE] = ACTIONS(1539), + [anon_sym_PLUS_PLUS] = ACTIONS(1539), + [anon_sym_DASH_DASH] = ACTIONS(1539), + [anon_sym_typeid] = ACTIONS(1537), + [anon_sym_LBRACE_PIPE] = ACTIONS(1539), + [anon_sym_void] = ACTIONS(1537), + [anon_sym_bool] = ACTIONS(1537), + [anon_sym_char] = ACTIONS(1537), + [anon_sym_ichar] = ACTIONS(1537), + [anon_sym_short] = ACTIONS(1537), + [anon_sym_ushort] = ACTIONS(1537), + [anon_sym_uint] = ACTIONS(1537), + [anon_sym_long] = ACTIONS(1537), + [anon_sym_ulong] = ACTIONS(1537), + [anon_sym_int128] = ACTIONS(1537), + [anon_sym_uint128] = ACTIONS(1537), + [anon_sym_float] = ACTIONS(1537), + [anon_sym_double] = ACTIONS(1537), + [anon_sym_float16] = ACTIONS(1537), + [anon_sym_bfloat16] = ACTIONS(1537), + [anon_sym_float128] = ACTIONS(1537), + [anon_sym_iptr] = ACTIONS(1537), + [anon_sym_uptr] = ACTIONS(1537), + [anon_sym_isz] = ACTIONS(1537), + [anon_sym_usz] = ACTIONS(1537), + [anon_sym_anyfault] = ACTIONS(1537), + [anon_sym_any] = ACTIONS(1537), + [anon_sym_DOLLARtypeof] = ACTIONS(1537), + [anon_sym_DOLLARtypefrom] = ACTIONS(1537), + [anon_sym_DOLLARvatype] = ACTIONS(1537), + [anon_sym_DOLLARevaltype] = ACTIONS(1537), + [sym_real_literal] = ACTIONS(1539), }, [571] = { [sym_line_comment] = STATE(571), [sym_doc_comment] = STATE(571), [sym_block_comment] = STATE(571), - [sym_ident] = ACTIONS(1382), - [sym_integer_literal] = ACTIONS(1384), - [anon_sym_SQUOTE] = ACTIONS(1384), - [anon_sym_DQUOTE] = ACTIONS(1384), - [anon_sym_BQUOTE] = ACTIONS(1384), - [sym_bytes_literal] = ACTIONS(1384), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1382), - [sym_at_ident] = ACTIONS(1384), - [sym_hash_ident] = ACTIONS(1384), - [sym_type_ident] = ACTIONS(1384), - [sym_ct_type_ident] = ACTIONS(1384), - [sym_const_ident] = ACTIONS(1382), - [sym_builtin] = ACTIONS(1384), - [anon_sym_LPAREN] = ACTIONS(1384), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_static] = ACTIONS(1382), - [anon_sym_tlocal] = ACTIONS(1382), - [anon_sym_SEMI] = ACTIONS(1384), - [anon_sym_fn] = ACTIONS(1382), - [anon_sym_LBRACE] = ACTIONS(1382), - [anon_sym_const] = ACTIONS(1382), - [anon_sym_var] = ACTIONS(1382), - [anon_sym_return] = ACTIONS(1382), - [anon_sym_continue] = ACTIONS(1382), - [anon_sym_break] = ACTIONS(1382), - [anon_sym_defer] = ACTIONS(1382), - [anon_sym_assert] = ACTIONS(1382), - [anon_sym_nextcase] = ACTIONS(1382), - [anon_sym_switch] = ACTIONS(1382), - [anon_sym_AMP_AMP] = ACTIONS(1384), - [anon_sym_if] = ACTIONS(1382), - [anon_sym_else] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1382), - [anon_sym_foreach] = ACTIONS(1382), - [anon_sym_foreach_r] = ACTIONS(1382), - [anon_sym_while] = ACTIONS(1382), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_int] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_asm] = ACTIONS(1382), - [anon_sym_DOLLARassert] = ACTIONS(1382), - [anon_sym_DOLLARerror] = ACTIONS(1382), - [anon_sym_DOLLARecho] = ACTIONS(1382), - [anon_sym_DOLLARif] = ACTIONS(1382), - [anon_sym_DOLLARswitch] = ACTIONS(1382), - [anon_sym_DOLLARfor] = ACTIONS(1382), - [anon_sym_DOLLARforeach] = ACTIONS(1382), - [anon_sym_DOLLARendforeach] = ACTIONS(1382), - [anon_sym_DOLLARalignof] = ACTIONS(1382), - [anon_sym_DOLLARextnameof] = ACTIONS(1382), - [anon_sym_DOLLARnameof] = ACTIONS(1382), - [anon_sym_DOLLARoffsetof] = ACTIONS(1382), - [anon_sym_DOLLARqnameof] = ACTIONS(1382), - [anon_sym_DOLLARvaconst] = ACTIONS(1382), - [anon_sym_DOLLARvaarg] = ACTIONS(1382), - [anon_sym_DOLLARvaref] = ACTIONS(1382), - [anon_sym_DOLLARvaexpr] = ACTIONS(1382), - [anon_sym_true] = ACTIONS(1382), - [anon_sym_false] = ACTIONS(1382), - [anon_sym_null] = ACTIONS(1382), - [anon_sym_DOLLARvacount] = ACTIONS(1382), - [anon_sym_DOLLARappend] = ACTIONS(1382), - [anon_sym_DOLLARconcat] = ACTIONS(1382), - [anon_sym_DOLLAReval] = ACTIONS(1382), - [anon_sym_DOLLARis_const] = ACTIONS(1382), - [anon_sym_DOLLARsizeof] = ACTIONS(1382), - [anon_sym_DOLLARstringify] = ACTIONS(1382), - [anon_sym_DOLLARand] = ACTIONS(1382), - [anon_sym_DOLLARdefined] = ACTIONS(1382), - [anon_sym_DOLLARembed] = ACTIONS(1382), - [anon_sym_DOLLARor] = ACTIONS(1382), - [anon_sym_DOLLARfeature] = ACTIONS(1382), - [anon_sym_DOLLARassignable] = ACTIONS(1382), - [anon_sym_BANG] = ACTIONS(1384), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_PLUS_PLUS] = ACTIONS(1384), - [anon_sym_DASH_DASH] = ACTIONS(1384), - [anon_sym_typeid] = ACTIONS(1382), - [anon_sym_LBRACE_PIPE] = ACTIONS(1384), - [anon_sym_void] = ACTIONS(1382), - [anon_sym_bool] = ACTIONS(1382), - [anon_sym_char] = ACTIONS(1382), - [anon_sym_ichar] = ACTIONS(1382), - [anon_sym_short] = ACTIONS(1382), - [anon_sym_ushort] = ACTIONS(1382), - [anon_sym_uint] = ACTIONS(1382), - [anon_sym_long] = ACTIONS(1382), - [anon_sym_ulong] = ACTIONS(1382), - [anon_sym_int128] = ACTIONS(1382), - [anon_sym_uint128] = ACTIONS(1382), - [anon_sym_float] = ACTIONS(1382), - [anon_sym_double] = ACTIONS(1382), - [anon_sym_float16] = ACTIONS(1382), - [anon_sym_bfloat16] = ACTIONS(1382), - [anon_sym_float128] = ACTIONS(1382), - [anon_sym_iptr] = ACTIONS(1382), - [anon_sym_uptr] = ACTIONS(1382), - [anon_sym_isz] = ACTIONS(1382), - [anon_sym_usz] = ACTIONS(1382), - [anon_sym_anyfault] = ACTIONS(1382), - [anon_sym_any] = ACTIONS(1382), - [anon_sym_DOLLARtypeof] = ACTIONS(1382), - [anon_sym_DOLLARtypefrom] = ACTIONS(1382), - [anon_sym_DOLLARvatype] = ACTIONS(1382), - [anon_sym_DOLLARevaltype] = ACTIONS(1382), - [sym_real_literal] = ACTIONS(1384), + [sym_ident] = ACTIONS(1469), + [sym_integer_literal] = ACTIONS(1471), + [anon_sym_SQUOTE] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(1471), + [anon_sym_BQUOTE] = ACTIONS(1471), + [sym_bytes_literal] = ACTIONS(1471), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1469), + [sym_at_ident] = ACTIONS(1471), + [sym_hash_ident] = ACTIONS(1471), + [sym_type_ident] = ACTIONS(1471), + [sym_ct_type_ident] = ACTIONS(1471), + [sym_const_ident] = ACTIONS(1469), + [sym_builtin] = ACTIONS(1471), + [anon_sym_LPAREN] = ACTIONS(1471), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_static] = ACTIONS(1469), + [anon_sym_tlocal] = ACTIONS(1469), + [anon_sym_SEMI] = ACTIONS(1471), + [anon_sym_fn] = ACTIONS(1469), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_const] = ACTIONS(1469), + [anon_sym_var] = ACTIONS(1469), + [anon_sym_return] = ACTIONS(1469), + [anon_sym_continue] = ACTIONS(1469), + [anon_sym_break] = ACTIONS(1469), + [anon_sym_defer] = ACTIONS(1469), + [anon_sym_assert] = ACTIONS(1469), + [anon_sym_nextcase] = ACTIONS(1469), + [anon_sym_switch] = ACTIONS(1469), + [anon_sym_AMP_AMP] = ACTIONS(1471), + [anon_sym_if] = ACTIONS(1469), + [anon_sym_for] = ACTIONS(1469), + [anon_sym_foreach] = ACTIONS(1469), + [anon_sym_foreach_r] = ACTIONS(1469), + [anon_sym_while] = ACTIONS(1469), + [anon_sym_do] = ACTIONS(1469), + [anon_sym_int] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1469), + [anon_sym_DASH] = ACTIONS(1469), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_asm] = ACTIONS(1469), + [anon_sym_DOLLARassert] = ACTIONS(1469), + [anon_sym_DOLLARerror] = ACTIONS(1469), + [anon_sym_DOLLARecho] = ACTIONS(1469), + [anon_sym_DOLLARif] = ACTIONS(1469), + [anon_sym_DOLLARswitch] = ACTIONS(1469), + [anon_sym_DOLLARfor] = ACTIONS(1469), + [anon_sym_DOLLARendfor] = ACTIONS(1469), + [anon_sym_DOLLARforeach] = ACTIONS(1469), + [anon_sym_DOLLARalignof] = ACTIONS(1469), + [anon_sym_DOLLARextnameof] = ACTIONS(1469), + [anon_sym_DOLLARnameof] = ACTIONS(1469), + [anon_sym_DOLLARoffsetof] = ACTIONS(1469), + [anon_sym_DOLLARqnameof] = ACTIONS(1469), + [anon_sym_DOLLARvaconst] = ACTIONS(1469), + [anon_sym_DOLLARvaarg] = ACTIONS(1469), + [anon_sym_DOLLARvaref] = ACTIONS(1469), + [anon_sym_DOLLARvaexpr] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1469), + [anon_sym_false] = ACTIONS(1469), + [anon_sym_null] = ACTIONS(1469), + [anon_sym_DOLLARvacount] = ACTIONS(1469), + [anon_sym_DOLLARappend] = ACTIONS(1469), + [anon_sym_DOLLARconcat] = ACTIONS(1469), + [anon_sym_DOLLAReval] = ACTIONS(1469), + [anon_sym_DOLLARis_const] = ACTIONS(1469), + [anon_sym_DOLLARsizeof] = ACTIONS(1469), + [anon_sym_DOLLARstringify] = ACTIONS(1469), + [anon_sym_DOLLARand] = ACTIONS(1469), + [anon_sym_DOLLARdefined] = ACTIONS(1469), + [anon_sym_DOLLARembed] = ACTIONS(1469), + [anon_sym_DOLLARor] = ACTIONS(1469), + [anon_sym_DOLLARfeature] = ACTIONS(1469), + [anon_sym_DOLLARassignable] = ACTIONS(1469), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1471), + [anon_sym_PLUS_PLUS] = ACTIONS(1471), + [anon_sym_DASH_DASH] = ACTIONS(1471), + [anon_sym_typeid] = ACTIONS(1469), + [anon_sym_LBRACE_PIPE] = ACTIONS(1471), + [anon_sym_void] = ACTIONS(1469), + [anon_sym_bool] = ACTIONS(1469), + [anon_sym_char] = ACTIONS(1469), + [anon_sym_ichar] = ACTIONS(1469), + [anon_sym_short] = ACTIONS(1469), + [anon_sym_ushort] = ACTIONS(1469), + [anon_sym_uint] = ACTIONS(1469), + [anon_sym_long] = ACTIONS(1469), + [anon_sym_ulong] = ACTIONS(1469), + [anon_sym_int128] = ACTIONS(1469), + [anon_sym_uint128] = ACTIONS(1469), + [anon_sym_float] = ACTIONS(1469), + [anon_sym_double] = ACTIONS(1469), + [anon_sym_float16] = ACTIONS(1469), + [anon_sym_bfloat16] = ACTIONS(1469), + [anon_sym_float128] = ACTIONS(1469), + [anon_sym_iptr] = ACTIONS(1469), + [anon_sym_uptr] = ACTIONS(1469), + [anon_sym_isz] = ACTIONS(1469), + [anon_sym_usz] = ACTIONS(1469), + [anon_sym_anyfault] = ACTIONS(1469), + [anon_sym_any] = ACTIONS(1469), + [anon_sym_DOLLARtypeof] = ACTIONS(1469), + [anon_sym_DOLLARtypefrom] = ACTIONS(1469), + [anon_sym_DOLLARvatype] = ACTIONS(1469), + [anon_sym_DOLLARevaltype] = ACTIONS(1469), + [sym_real_literal] = ACTIONS(1471), }, [572] = { [sym_line_comment] = STATE(572), [sym_doc_comment] = STATE(572), [sym_block_comment] = STATE(572), - [sym_ident] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(1658), - [anon_sym_SQUOTE] = ACTIONS(1658), - [anon_sym_DQUOTE] = ACTIONS(1658), - [anon_sym_BQUOTE] = ACTIONS(1658), - [sym_bytes_literal] = ACTIONS(1658), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1656), - [sym_at_ident] = ACTIONS(1658), - [sym_hash_ident] = ACTIONS(1658), - [sym_type_ident] = ACTIONS(1658), - [sym_ct_type_ident] = ACTIONS(1658), - [sym_const_ident] = ACTIONS(1656), - [sym_builtin] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_static] = ACTIONS(1656), - [anon_sym_tlocal] = ACTIONS(1656), - [anon_sym_SEMI] = ACTIONS(1658), - [anon_sym_fn] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_const] = ACTIONS(1656), - [anon_sym_var] = ACTIONS(1656), - [anon_sym_return] = ACTIONS(1656), - [anon_sym_continue] = ACTIONS(1656), - [anon_sym_break] = ACTIONS(1656), - [anon_sym_defer] = ACTIONS(1656), - [anon_sym_assert] = ACTIONS(1656), - [anon_sym_nextcase] = ACTIONS(1656), - [anon_sym_switch] = ACTIONS(1656), - [anon_sym_AMP_AMP] = ACTIONS(1658), - [anon_sym_if] = ACTIONS(1656), - [anon_sym_for] = ACTIONS(1656), - [anon_sym_foreach] = ACTIONS(1656), - [anon_sym_foreach_r] = ACTIONS(1656), - [anon_sym_while] = ACTIONS(1656), - [anon_sym_do] = ACTIONS(1656), - [anon_sym_int] = ACTIONS(1656), - [anon_sym_PLUS] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1656), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_asm] = ACTIONS(1656), - [anon_sym_DOLLARassert] = ACTIONS(1656), - [anon_sym_DOLLARerror] = ACTIONS(1656), - [anon_sym_DOLLARecho] = ACTIONS(1656), - [anon_sym_DOLLARif] = ACTIONS(1656), - [anon_sym_DOLLARendif] = ACTIONS(1656), - [anon_sym_DOLLARelse] = ACTIONS(1656), - [anon_sym_DOLLARswitch] = ACTIONS(1656), - [anon_sym_DOLLARfor] = ACTIONS(1656), - [anon_sym_DOLLARforeach] = ACTIONS(1656), - [anon_sym_DOLLARalignof] = ACTIONS(1656), - [anon_sym_DOLLARextnameof] = ACTIONS(1656), - [anon_sym_DOLLARnameof] = ACTIONS(1656), - [anon_sym_DOLLARoffsetof] = ACTIONS(1656), - [anon_sym_DOLLARqnameof] = ACTIONS(1656), - [anon_sym_DOLLARvaconst] = ACTIONS(1656), - [anon_sym_DOLLARvaarg] = ACTIONS(1656), - [anon_sym_DOLLARvaref] = ACTIONS(1656), - [anon_sym_DOLLARvaexpr] = ACTIONS(1656), - [anon_sym_true] = ACTIONS(1656), - [anon_sym_false] = ACTIONS(1656), - [anon_sym_null] = ACTIONS(1656), - [anon_sym_DOLLARvacount] = ACTIONS(1656), - [anon_sym_DOLLARappend] = ACTIONS(1656), - [anon_sym_DOLLARconcat] = ACTIONS(1656), - [anon_sym_DOLLAReval] = ACTIONS(1656), - [anon_sym_DOLLARis_const] = ACTIONS(1656), - [anon_sym_DOLLARsizeof] = ACTIONS(1656), - [anon_sym_DOLLARstringify] = ACTIONS(1656), - [anon_sym_DOLLARand] = ACTIONS(1656), - [anon_sym_DOLLARdefined] = ACTIONS(1656), - [anon_sym_DOLLARembed] = ACTIONS(1656), - [anon_sym_DOLLARor] = ACTIONS(1656), - [anon_sym_DOLLARfeature] = ACTIONS(1656), - [anon_sym_DOLLARassignable] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(1658), - [anon_sym_TILDE] = ACTIONS(1658), - [anon_sym_PLUS_PLUS] = ACTIONS(1658), - [anon_sym_DASH_DASH] = ACTIONS(1658), - [anon_sym_typeid] = ACTIONS(1656), - [anon_sym_LBRACE_PIPE] = ACTIONS(1658), - [anon_sym_void] = ACTIONS(1656), - [anon_sym_bool] = ACTIONS(1656), - [anon_sym_char] = ACTIONS(1656), - [anon_sym_ichar] = ACTIONS(1656), - [anon_sym_short] = ACTIONS(1656), - [anon_sym_ushort] = ACTIONS(1656), - [anon_sym_uint] = ACTIONS(1656), - [anon_sym_long] = ACTIONS(1656), - [anon_sym_ulong] = ACTIONS(1656), - [anon_sym_int128] = ACTIONS(1656), - [anon_sym_uint128] = ACTIONS(1656), - [anon_sym_float] = ACTIONS(1656), - [anon_sym_double] = ACTIONS(1656), - [anon_sym_float16] = ACTIONS(1656), - [anon_sym_bfloat16] = ACTIONS(1656), - [anon_sym_float128] = ACTIONS(1656), - [anon_sym_iptr] = ACTIONS(1656), - [anon_sym_uptr] = ACTIONS(1656), - [anon_sym_isz] = ACTIONS(1656), - [anon_sym_usz] = ACTIONS(1656), - [anon_sym_anyfault] = ACTIONS(1656), - [anon_sym_any] = ACTIONS(1656), - [anon_sym_DOLLARtypeof] = ACTIONS(1656), - [anon_sym_DOLLARtypefrom] = ACTIONS(1656), - [anon_sym_DOLLARvatype] = ACTIONS(1656), - [anon_sym_DOLLARevaltype] = ACTIONS(1656), - [sym_real_literal] = ACTIONS(1658), + [sym_ident] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1421), + [anon_sym_SQUOTE] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1421), + [anon_sym_BQUOTE] = ACTIONS(1421), + [sym_bytes_literal] = ACTIONS(1421), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1419), + [sym_at_ident] = ACTIONS(1421), + [sym_hash_ident] = ACTIONS(1421), + [sym_type_ident] = ACTIONS(1421), + [sym_ct_type_ident] = ACTIONS(1421), + [sym_const_ident] = ACTIONS(1419), + [sym_builtin] = ACTIONS(1421), + [anon_sym_LPAREN] = ACTIONS(1421), + [anon_sym_AMP] = ACTIONS(1419), + [anon_sym_static] = ACTIONS(1419), + [anon_sym_tlocal] = ACTIONS(1419), + [anon_sym_SEMI] = ACTIONS(1421), + [anon_sym_fn] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(1419), + [anon_sym_const] = ACTIONS(1419), + [anon_sym_var] = ACTIONS(1419), + [anon_sym_return] = ACTIONS(1419), + [anon_sym_continue] = ACTIONS(1419), + [anon_sym_break] = ACTIONS(1419), + [anon_sym_defer] = ACTIONS(1419), + [anon_sym_assert] = ACTIONS(1419), + [anon_sym_nextcase] = ACTIONS(1419), + [anon_sym_switch] = ACTIONS(1419), + [anon_sym_AMP_AMP] = ACTIONS(1421), + [anon_sym_if] = ACTIONS(1419), + [anon_sym_for] = ACTIONS(1419), + [anon_sym_foreach] = ACTIONS(1419), + [anon_sym_foreach_r] = ACTIONS(1419), + [anon_sym_while] = ACTIONS(1419), + [anon_sym_do] = ACTIONS(1419), + [anon_sym_int] = ACTIONS(1419), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_DASH] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1421), + [anon_sym_asm] = ACTIONS(1419), + [anon_sym_DOLLARassert] = ACTIONS(1419), + [anon_sym_DOLLARerror] = ACTIONS(1419), + [anon_sym_DOLLARecho] = ACTIONS(1419), + [anon_sym_DOLLARif] = ACTIONS(1419), + [anon_sym_DOLLARswitch] = ACTIONS(1419), + [anon_sym_DOLLARfor] = ACTIONS(1419), + [anon_sym_DOLLARendfor] = ACTIONS(1419), + [anon_sym_DOLLARforeach] = ACTIONS(1419), + [anon_sym_DOLLARalignof] = ACTIONS(1419), + [anon_sym_DOLLARextnameof] = ACTIONS(1419), + [anon_sym_DOLLARnameof] = ACTIONS(1419), + [anon_sym_DOLLARoffsetof] = ACTIONS(1419), + [anon_sym_DOLLARqnameof] = ACTIONS(1419), + [anon_sym_DOLLARvaconst] = ACTIONS(1419), + [anon_sym_DOLLARvaarg] = ACTIONS(1419), + [anon_sym_DOLLARvaref] = ACTIONS(1419), + [anon_sym_DOLLARvaexpr] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1419), + [anon_sym_false] = ACTIONS(1419), + [anon_sym_null] = ACTIONS(1419), + [anon_sym_DOLLARvacount] = ACTIONS(1419), + [anon_sym_DOLLARappend] = ACTIONS(1419), + [anon_sym_DOLLARconcat] = ACTIONS(1419), + [anon_sym_DOLLAReval] = ACTIONS(1419), + [anon_sym_DOLLARis_const] = ACTIONS(1419), + [anon_sym_DOLLARsizeof] = ACTIONS(1419), + [anon_sym_DOLLARstringify] = ACTIONS(1419), + [anon_sym_DOLLARand] = ACTIONS(1419), + [anon_sym_DOLLARdefined] = ACTIONS(1419), + [anon_sym_DOLLARembed] = ACTIONS(1419), + [anon_sym_DOLLARor] = ACTIONS(1419), + [anon_sym_DOLLARfeature] = ACTIONS(1419), + [anon_sym_DOLLARassignable] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_PLUS_PLUS] = ACTIONS(1421), + [anon_sym_DASH_DASH] = ACTIONS(1421), + [anon_sym_typeid] = ACTIONS(1419), + [anon_sym_LBRACE_PIPE] = ACTIONS(1421), + [anon_sym_void] = ACTIONS(1419), + [anon_sym_bool] = ACTIONS(1419), + [anon_sym_char] = ACTIONS(1419), + [anon_sym_ichar] = ACTIONS(1419), + [anon_sym_short] = ACTIONS(1419), + [anon_sym_ushort] = ACTIONS(1419), + [anon_sym_uint] = ACTIONS(1419), + [anon_sym_long] = ACTIONS(1419), + [anon_sym_ulong] = ACTIONS(1419), + [anon_sym_int128] = ACTIONS(1419), + [anon_sym_uint128] = ACTIONS(1419), + [anon_sym_float] = ACTIONS(1419), + [anon_sym_double] = ACTIONS(1419), + [anon_sym_float16] = ACTIONS(1419), + [anon_sym_bfloat16] = ACTIONS(1419), + [anon_sym_float128] = ACTIONS(1419), + [anon_sym_iptr] = ACTIONS(1419), + [anon_sym_uptr] = ACTIONS(1419), + [anon_sym_isz] = ACTIONS(1419), + [anon_sym_usz] = ACTIONS(1419), + [anon_sym_anyfault] = ACTIONS(1419), + [anon_sym_any] = ACTIONS(1419), + [anon_sym_DOLLARtypeof] = ACTIONS(1419), + [anon_sym_DOLLARtypefrom] = ACTIONS(1419), + [anon_sym_DOLLARvatype] = ACTIONS(1419), + [anon_sym_DOLLARevaltype] = ACTIONS(1419), + [sym_real_literal] = ACTIONS(1421), }, [573] = { [sym_line_comment] = STATE(573), [sym_doc_comment] = STATE(573), [sym_block_comment] = STATE(573), - [sym_ident] = ACTIONS(1640), - [sym_integer_literal] = ACTIONS(1642), - [anon_sym_SQUOTE] = ACTIONS(1642), - [anon_sym_DQUOTE] = ACTIONS(1642), - [anon_sym_BQUOTE] = ACTIONS(1642), - [sym_bytes_literal] = ACTIONS(1642), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1640), - [sym_at_ident] = ACTIONS(1642), - [sym_hash_ident] = ACTIONS(1642), - [sym_type_ident] = ACTIONS(1642), - [sym_ct_type_ident] = ACTIONS(1642), - [sym_const_ident] = ACTIONS(1640), - [sym_builtin] = ACTIONS(1642), - [anon_sym_LPAREN] = ACTIONS(1642), - [anon_sym_AMP] = ACTIONS(1640), - [anon_sym_static] = ACTIONS(1640), - [anon_sym_tlocal] = ACTIONS(1640), - [anon_sym_SEMI] = ACTIONS(1642), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_LBRACE] = ACTIONS(1640), - [anon_sym_const] = ACTIONS(1640), - [anon_sym_var] = ACTIONS(1640), - [anon_sym_return] = ACTIONS(1640), - [anon_sym_continue] = ACTIONS(1640), - [anon_sym_break] = ACTIONS(1640), - [anon_sym_defer] = ACTIONS(1640), - [anon_sym_assert] = ACTIONS(1640), - [anon_sym_nextcase] = ACTIONS(1640), - [anon_sym_switch] = ACTIONS(1640), - [anon_sym_AMP_AMP] = ACTIONS(1642), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1640), - [anon_sym_foreach] = ACTIONS(1640), - [anon_sym_foreach_r] = ACTIONS(1640), - [anon_sym_while] = ACTIONS(1640), - [anon_sym_do] = ACTIONS(1640), - [anon_sym_int] = ACTIONS(1640), - [anon_sym_PLUS] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1640), - [anon_sym_STAR] = ACTIONS(1642), - [anon_sym_asm] = ACTIONS(1640), - [anon_sym_DOLLARassert] = ACTIONS(1640), - [anon_sym_DOLLARerror] = ACTIONS(1640), - [anon_sym_DOLLARecho] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1640), - [anon_sym_DOLLARendif] = ACTIONS(1640), - [anon_sym_DOLLARelse] = ACTIONS(1640), - [anon_sym_DOLLARswitch] = ACTIONS(1640), - [anon_sym_DOLLARfor] = ACTIONS(1640), - [anon_sym_DOLLARforeach] = ACTIONS(1640), - [anon_sym_DOLLARalignof] = ACTIONS(1640), - [anon_sym_DOLLARextnameof] = ACTIONS(1640), - [anon_sym_DOLLARnameof] = ACTIONS(1640), - [anon_sym_DOLLARoffsetof] = ACTIONS(1640), - [anon_sym_DOLLARqnameof] = ACTIONS(1640), - [anon_sym_DOLLARvaconst] = ACTIONS(1640), - [anon_sym_DOLLARvaarg] = ACTIONS(1640), - [anon_sym_DOLLARvaref] = ACTIONS(1640), - [anon_sym_DOLLARvaexpr] = ACTIONS(1640), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_null] = ACTIONS(1640), - [anon_sym_DOLLARvacount] = ACTIONS(1640), - [anon_sym_DOLLARappend] = ACTIONS(1640), - [anon_sym_DOLLARconcat] = ACTIONS(1640), - [anon_sym_DOLLAReval] = ACTIONS(1640), - [anon_sym_DOLLARis_const] = ACTIONS(1640), - [anon_sym_DOLLARsizeof] = ACTIONS(1640), - [anon_sym_DOLLARstringify] = ACTIONS(1640), - [anon_sym_DOLLARand] = ACTIONS(1640), - [anon_sym_DOLLARdefined] = ACTIONS(1640), - [anon_sym_DOLLARembed] = ACTIONS(1640), - [anon_sym_DOLLARor] = ACTIONS(1640), - [anon_sym_DOLLARfeature] = ACTIONS(1640), - [anon_sym_DOLLARassignable] = ACTIONS(1640), - [anon_sym_BANG] = ACTIONS(1642), - [anon_sym_TILDE] = ACTIONS(1642), - [anon_sym_PLUS_PLUS] = ACTIONS(1642), - [anon_sym_DASH_DASH] = ACTIONS(1642), - [anon_sym_typeid] = ACTIONS(1640), - [anon_sym_LBRACE_PIPE] = ACTIONS(1642), - [anon_sym_void] = ACTIONS(1640), - [anon_sym_bool] = ACTIONS(1640), - [anon_sym_char] = ACTIONS(1640), - [anon_sym_ichar] = ACTIONS(1640), - [anon_sym_short] = ACTIONS(1640), - [anon_sym_ushort] = ACTIONS(1640), - [anon_sym_uint] = ACTIONS(1640), - [anon_sym_long] = ACTIONS(1640), - [anon_sym_ulong] = ACTIONS(1640), - [anon_sym_int128] = ACTIONS(1640), - [anon_sym_uint128] = ACTIONS(1640), - [anon_sym_float] = ACTIONS(1640), - [anon_sym_double] = ACTIONS(1640), - [anon_sym_float16] = ACTIONS(1640), - [anon_sym_bfloat16] = ACTIONS(1640), - [anon_sym_float128] = ACTIONS(1640), - [anon_sym_iptr] = ACTIONS(1640), - [anon_sym_uptr] = ACTIONS(1640), - [anon_sym_isz] = ACTIONS(1640), - [anon_sym_usz] = ACTIONS(1640), - [anon_sym_anyfault] = ACTIONS(1640), - [anon_sym_any] = ACTIONS(1640), - [anon_sym_DOLLARtypeof] = ACTIONS(1640), - [anon_sym_DOLLARtypefrom] = ACTIONS(1640), - [anon_sym_DOLLARvatype] = ACTIONS(1640), - [anon_sym_DOLLARevaltype] = ACTIONS(1640), - [sym_real_literal] = ACTIONS(1642), + [sym_ident] = ACTIONS(1501), + [sym_integer_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1503), + [anon_sym_BQUOTE] = ACTIONS(1503), + [sym_bytes_literal] = ACTIONS(1503), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1501), + [sym_at_ident] = ACTIONS(1503), + [sym_hash_ident] = ACTIONS(1503), + [sym_type_ident] = ACTIONS(1503), + [sym_ct_type_ident] = ACTIONS(1503), + [sym_const_ident] = ACTIONS(1501), + [sym_builtin] = ACTIONS(1503), + [anon_sym_LPAREN] = ACTIONS(1503), + [anon_sym_AMP] = ACTIONS(1501), + [anon_sym_static] = ACTIONS(1501), + [anon_sym_tlocal] = ACTIONS(1501), + [anon_sym_SEMI] = ACTIONS(1503), + [anon_sym_fn] = ACTIONS(1501), + [anon_sym_LBRACE] = ACTIONS(1501), + [anon_sym_const] = ACTIONS(1501), + [anon_sym_var] = ACTIONS(1501), + [anon_sym_return] = ACTIONS(1501), + [anon_sym_continue] = ACTIONS(1501), + [anon_sym_break] = ACTIONS(1501), + [anon_sym_defer] = ACTIONS(1501), + [anon_sym_assert] = ACTIONS(1501), + [anon_sym_nextcase] = ACTIONS(1501), + [anon_sym_switch] = ACTIONS(1501), + [anon_sym_AMP_AMP] = ACTIONS(1503), + [anon_sym_if] = ACTIONS(1501), + [anon_sym_for] = ACTIONS(1501), + [anon_sym_foreach] = ACTIONS(1501), + [anon_sym_foreach_r] = ACTIONS(1501), + [anon_sym_while] = ACTIONS(1501), + [anon_sym_do] = ACTIONS(1501), + [anon_sym_int] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_asm] = ACTIONS(1501), + [anon_sym_DOLLARassert] = ACTIONS(1501), + [anon_sym_DOLLARerror] = ACTIONS(1501), + [anon_sym_DOLLARecho] = ACTIONS(1501), + [anon_sym_DOLLARif] = ACTIONS(1501), + [anon_sym_DOLLARswitch] = ACTIONS(1501), + [anon_sym_DOLLARfor] = ACTIONS(1501), + [anon_sym_DOLLARendfor] = ACTIONS(1501), + [anon_sym_DOLLARforeach] = ACTIONS(1501), + [anon_sym_DOLLARalignof] = ACTIONS(1501), + [anon_sym_DOLLARextnameof] = ACTIONS(1501), + [anon_sym_DOLLARnameof] = ACTIONS(1501), + [anon_sym_DOLLARoffsetof] = ACTIONS(1501), + [anon_sym_DOLLARqnameof] = ACTIONS(1501), + [anon_sym_DOLLARvaconst] = ACTIONS(1501), + [anon_sym_DOLLARvaarg] = ACTIONS(1501), + [anon_sym_DOLLARvaref] = ACTIONS(1501), + [anon_sym_DOLLARvaexpr] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1501), + [anon_sym_false] = ACTIONS(1501), + [anon_sym_null] = ACTIONS(1501), + [anon_sym_DOLLARvacount] = ACTIONS(1501), + [anon_sym_DOLLARappend] = ACTIONS(1501), + [anon_sym_DOLLARconcat] = ACTIONS(1501), + [anon_sym_DOLLAReval] = ACTIONS(1501), + [anon_sym_DOLLARis_const] = ACTIONS(1501), + [anon_sym_DOLLARsizeof] = ACTIONS(1501), + [anon_sym_DOLLARstringify] = ACTIONS(1501), + [anon_sym_DOLLARand] = ACTIONS(1501), + [anon_sym_DOLLARdefined] = ACTIONS(1501), + [anon_sym_DOLLARembed] = ACTIONS(1501), + [anon_sym_DOLLARor] = ACTIONS(1501), + [anon_sym_DOLLARfeature] = ACTIONS(1501), + [anon_sym_DOLLARassignable] = ACTIONS(1501), + [anon_sym_BANG] = ACTIONS(1503), + [anon_sym_TILDE] = ACTIONS(1503), + [anon_sym_PLUS_PLUS] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1503), + [anon_sym_typeid] = ACTIONS(1501), + [anon_sym_LBRACE_PIPE] = ACTIONS(1503), + [anon_sym_void] = ACTIONS(1501), + [anon_sym_bool] = ACTIONS(1501), + [anon_sym_char] = ACTIONS(1501), + [anon_sym_ichar] = ACTIONS(1501), + [anon_sym_short] = ACTIONS(1501), + [anon_sym_ushort] = ACTIONS(1501), + [anon_sym_uint] = ACTIONS(1501), + [anon_sym_long] = ACTIONS(1501), + [anon_sym_ulong] = ACTIONS(1501), + [anon_sym_int128] = ACTIONS(1501), + [anon_sym_uint128] = ACTIONS(1501), + [anon_sym_float] = ACTIONS(1501), + [anon_sym_double] = ACTIONS(1501), + [anon_sym_float16] = ACTIONS(1501), + [anon_sym_bfloat16] = ACTIONS(1501), + [anon_sym_float128] = ACTIONS(1501), + [anon_sym_iptr] = ACTIONS(1501), + [anon_sym_uptr] = ACTIONS(1501), + [anon_sym_isz] = ACTIONS(1501), + [anon_sym_usz] = ACTIONS(1501), + [anon_sym_anyfault] = ACTIONS(1501), + [anon_sym_any] = ACTIONS(1501), + [anon_sym_DOLLARtypeof] = ACTIONS(1501), + [anon_sym_DOLLARtypefrom] = ACTIONS(1501), + [anon_sym_DOLLARvatype] = ACTIONS(1501), + [anon_sym_DOLLARevaltype] = ACTIONS(1501), + [sym_real_literal] = ACTIONS(1503), }, [574] = { [sym_line_comment] = STATE(574), [sym_doc_comment] = STATE(574), [sym_block_comment] = STATE(574), - [sym_ident] = ACTIONS(1394), - [sym_integer_literal] = ACTIONS(1396), - [anon_sym_SQUOTE] = ACTIONS(1396), - [anon_sym_DQUOTE] = ACTIONS(1396), - [anon_sym_BQUOTE] = ACTIONS(1396), - [sym_bytes_literal] = ACTIONS(1396), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1394), - [sym_at_ident] = ACTIONS(1396), - [sym_hash_ident] = ACTIONS(1396), - [sym_type_ident] = ACTIONS(1396), - [sym_ct_type_ident] = ACTIONS(1396), - [sym_const_ident] = ACTIONS(1394), - [sym_builtin] = ACTIONS(1396), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_AMP] = ACTIONS(1394), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_tlocal] = ACTIONS(1394), - [anon_sym_SEMI] = ACTIONS(1396), - [anon_sym_fn] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1394), - [anon_sym_const] = ACTIONS(1394), - [anon_sym_var] = ACTIONS(1394), - [anon_sym_return] = ACTIONS(1394), - [anon_sym_continue] = ACTIONS(1394), - [anon_sym_break] = ACTIONS(1394), - [anon_sym_defer] = ACTIONS(1394), - [anon_sym_assert] = ACTIONS(1394), - [anon_sym_nextcase] = ACTIONS(1394), - [anon_sym_switch] = ACTIONS(1394), - [anon_sym_AMP_AMP] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1394), - [anon_sym_for] = ACTIONS(1394), - [anon_sym_foreach] = ACTIONS(1394), - [anon_sym_foreach_r] = ACTIONS(1394), - [anon_sym_while] = ACTIONS(1394), - [anon_sym_do] = ACTIONS(1394), - [anon_sym_int] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1394), - [anon_sym_DASH] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(1396), - [anon_sym_asm] = ACTIONS(1394), - [anon_sym_DOLLARassert] = ACTIONS(1394), - [anon_sym_DOLLARerror] = ACTIONS(1394), - [anon_sym_DOLLARecho] = ACTIONS(1394), - [anon_sym_DOLLARif] = ACTIONS(1394), - [anon_sym_DOLLARendif] = ACTIONS(1394), - [anon_sym_DOLLARelse] = ACTIONS(1394), - [anon_sym_DOLLARswitch] = ACTIONS(1394), - [anon_sym_DOLLARfor] = ACTIONS(1394), - [anon_sym_DOLLARforeach] = ACTIONS(1394), - [anon_sym_DOLLARalignof] = ACTIONS(1394), - [anon_sym_DOLLARextnameof] = ACTIONS(1394), - [anon_sym_DOLLARnameof] = ACTIONS(1394), - [anon_sym_DOLLARoffsetof] = ACTIONS(1394), - [anon_sym_DOLLARqnameof] = ACTIONS(1394), - [anon_sym_DOLLARvaconst] = ACTIONS(1394), - [anon_sym_DOLLARvaarg] = ACTIONS(1394), - [anon_sym_DOLLARvaref] = ACTIONS(1394), - [anon_sym_DOLLARvaexpr] = ACTIONS(1394), - [anon_sym_true] = ACTIONS(1394), - [anon_sym_false] = ACTIONS(1394), - [anon_sym_null] = ACTIONS(1394), - [anon_sym_DOLLARvacount] = ACTIONS(1394), - [anon_sym_DOLLARappend] = ACTIONS(1394), - [anon_sym_DOLLARconcat] = ACTIONS(1394), - [anon_sym_DOLLAReval] = ACTIONS(1394), - [anon_sym_DOLLARis_const] = ACTIONS(1394), - [anon_sym_DOLLARsizeof] = ACTIONS(1394), - [anon_sym_DOLLARstringify] = ACTIONS(1394), - [anon_sym_DOLLARand] = ACTIONS(1394), - [anon_sym_DOLLARdefined] = ACTIONS(1394), - [anon_sym_DOLLARembed] = ACTIONS(1394), - [anon_sym_DOLLARor] = ACTIONS(1394), - [anon_sym_DOLLARfeature] = ACTIONS(1394), - [anon_sym_DOLLARassignable] = ACTIONS(1394), - [anon_sym_BANG] = ACTIONS(1396), - [anon_sym_TILDE] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1396), - [anon_sym_DASH_DASH] = ACTIONS(1396), - [anon_sym_typeid] = ACTIONS(1394), - [anon_sym_LBRACE_PIPE] = ACTIONS(1396), - [anon_sym_void] = ACTIONS(1394), - [anon_sym_bool] = ACTIONS(1394), - [anon_sym_char] = ACTIONS(1394), - [anon_sym_ichar] = ACTIONS(1394), - [anon_sym_short] = ACTIONS(1394), - [anon_sym_ushort] = ACTIONS(1394), - [anon_sym_uint] = ACTIONS(1394), - [anon_sym_long] = ACTIONS(1394), - [anon_sym_ulong] = ACTIONS(1394), - [anon_sym_int128] = ACTIONS(1394), - [anon_sym_uint128] = ACTIONS(1394), - [anon_sym_float] = ACTIONS(1394), - [anon_sym_double] = ACTIONS(1394), - [anon_sym_float16] = ACTIONS(1394), - [anon_sym_bfloat16] = ACTIONS(1394), - [anon_sym_float128] = ACTIONS(1394), - [anon_sym_iptr] = ACTIONS(1394), - [anon_sym_uptr] = ACTIONS(1394), - [anon_sym_isz] = ACTIONS(1394), - [anon_sym_usz] = ACTIONS(1394), - [anon_sym_anyfault] = ACTIONS(1394), - [anon_sym_any] = ACTIONS(1394), - [anon_sym_DOLLARtypeof] = ACTIONS(1394), - [anon_sym_DOLLARtypefrom] = ACTIONS(1394), - [anon_sym_DOLLARvatype] = ACTIONS(1394), - [anon_sym_DOLLARevaltype] = ACTIONS(1394), - [sym_real_literal] = ACTIONS(1396), + [sym_ident] = ACTIONS(1517), + [sym_integer_literal] = ACTIONS(1519), + [anon_sym_SQUOTE] = ACTIONS(1519), + [anon_sym_DQUOTE] = ACTIONS(1519), + [anon_sym_BQUOTE] = ACTIONS(1519), + [sym_bytes_literal] = ACTIONS(1519), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1517), + [sym_at_ident] = ACTIONS(1519), + [sym_hash_ident] = ACTIONS(1519), + [sym_type_ident] = ACTIONS(1519), + [sym_ct_type_ident] = ACTIONS(1519), + [sym_const_ident] = ACTIONS(1517), + [sym_builtin] = ACTIONS(1519), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_static] = ACTIONS(1517), + [anon_sym_tlocal] = ACTIONS(1517), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_fn] = ACTIONS(1517), + [anon_sym_LBRACE] = ACTIONS(1517), + [anon_sym_const] = ACTIONS(1517), + [anon_sym_var] = ACTIONS(1517), + [anon_sym_return] = ACTIONS(1517), + [anon_sym_continue] = ACTIONS(1517), + [anon_sym_break] = ACTIONS(1517), + [anon_sym_defer] = ACTIONS(1517), + [anon_sym_assert] = ACTIONS(1517), + [anon_sym_nextcase] = ACTIONS(1517), + [anon_sym_switch] = ACTIONS(1517), + [anon_sym_AMP_AMP] = ACTIONS(1519), + [anon_sym_if] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1517), + [anon_sym_foreach] = ACTIONS(1517), + [anon_sym_foreach_r] = ACTIONS(1517), + [anon_sym_while] = ACTIONS(1517), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_int] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1517), + [anon_sym_DASH] = ACTIONS(1517), + [anon_sym_STAR] = ACTIONS(1519), + [anon_sym_asm] = ACTIONS(1517), + [anon_sym_DOLLARassert] = ACTIONS(1517), + [anon_sym_DOLLARerror] = ACTIONS(1517), + [anon_sym_DOLLARecho] = ACTIONS(1517), + [anon_sym_DOLLARif] = ACTIONS(1517), + [anon_sym_DOLLARswitch] = ACTIONS(1517), + [anon_sym_DOLLARfor] = ACTIONS(1517), + [anon_sym_DOLLARendfor] = ACTIONS(1517), + [anon_sym_DOLLARforeach] = ACTIONS(1517), + [anon_sym_DOLLARalignof] = ACTIONS(1517), + [anon_sym_DOLLARextnameof] = ACTIONS(1517), + [anon_sym_DOLLARnameof] = ACTIONS(1517), + [anon_sym_DOLLARoffsetof] = ACTIONS(1517), + [anon_sym_DOLLARqnameof] = ACTIONS(1517), + [anon_sym_DOLLARvaconst] = ACTIONS(1517), + [anon_sym_DOLLARvaarg] = ACTIONS(1517), + [anon_sym_DOLLARvaref] = ACTIONS(1517), + [anon_sym_DOLLARvaexpr] = ACTIONS(1517), + [anon_sym_true] = ACTIONS(1517), + [anon_sym_false] = ACTIONS(1517), + [anon_sym_null] = ACTIONS(1517), + [anon_sym_DOLLARvacount] = ACTIONS(1517), + [anon_sym_DOLLARappend] = ACTIONS(1517), + [anon_sym_DOLLARconcat] = ACTIONS(1517), + [anon_sym_DOLLAReval] = ACTIONS(1517), + [anon_sym_DOLLARis_const] = ACTIONS(1517), + [anon_sym_DOLLARsizeof] = ACTIONS(1517), + [anon_sym_DOLLARstringify] = ACTIONS(1517), + [anon_sym_DOLLARand] = ACTIONS(1517), + [anon_sym_DOLLARdefined] = ACTIONS(1517), + [anon_sym_DOLLARembed] = ACTIONS(1517), + [anon_sym_DOLLARor] = ACTIONS(1517), + [anon_sym_DOLLARfeature] = ACTIONS(1517), + [anon_sym_DOLLARassignable] = ACTIONS(1517), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1519), + [anon_sym_PLUS_PLUS] = ACTIONS(1519), + [anon_sym_DASH_DASH] = ACTIONS(1519), + [anon_sym_typeid] = ACTIONS(1517), + [anon_sym_LBRACE_PIPE] = ACTIONS(1519), + [anon_sym_void] = ACTIONS(1517), + [anon_sym_bool] = ACTIONS(1517), + [anon_sym_char] = ACTIONS(1517), + [anon_sym_ichar] = ACTIONS(1517), + [anon_sym_short] = ACTIONS(1517), + [anon_sym_ushort] = ACTIONS(1517), + [anon_sym_uint] = ACTIONS(1517), + [anon_sym_long] = ACTIONS(1517), + [anon_sym_ulong] = ACTIONS(1517), + [anon_sym_int128] = ACTIONS(1517), + [anon_sym_uint128] = ACTIONS(1517), + [anon_sym_float] = ACTIONS(1517), + [anon_sym_double] = ACTIONS(1517), + [anon_sym_float16] = ACTIONS(1517), + [anon_sym_bfloat16] = ACTIONS(1517), + [anon_sym_float128] = ACTIONS(1517), + [anon_sym_iptr] = ACTIONS(1517), + [anon_sym_uptr] = ACTIONS(1517), + [anon_sym_isz] = ACTIONS(1517), + [anon_sym_usz] = ACTIONS(1517), + [anon_sym_anyfault] = ACTIONS(1517), + [anon_sym_any] = ACTIONS(1517), + [anon_sym_DOLLARtypeof] = ACTIONS(1517), + [anon_sym_DOLLARtypefrom] = ACTIONS(1517), + [anon_sym_DOLLARvatype] = ACTIONS(1517), + [anon_sym_DOLLARevaltype] = ACTIONS(1517), + [sym_real_literal] = ACTIONS(1519), }, [575] = { [sym_line_comment] = STATE(575), [sym_doc_comment] = STATE(575), [sym_block_comment] = STATE(575), - [sym_ident] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(1634), - [anon_sym_DQUOTE] = ACTIONS(1634), - [anon_sym_BQUOTE] = ACTIONS(1634), - [sym_bytes_literal] = ACTIONS(1634), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1632), - [sym_at_ident] = ACTIONS(1634), - [sym_hash_ident] = ACTIONS(1634), - [sym_type_ident] = ACTIONS(1634), - [sym_ct_type_ident] = ACTIONS(1634), - [sym_const_ident] = ACTIONS(1632), - [sym_builtin] = ACTIONS(1634), - [anon_sym_LPAREN] = ACTIONS(1634), - [anon_sym_AMP] = ACTIONS(1632), - [anon_sym_static] = ACTIONS(1632), - [anon_sym_tlocal] = ACTIONS(1632), - [anon_sym_SEMI] = ACTIONS(1634), - [anon_sym_fn] = ACTIONS(1632), - [anon_sym_LBRACE] = ACTIONS(1632), - [anon_sym_const] = ACTIONS(1632), - [anon_sym_var] = ACTIONS(1632), - [anon_sym_return] = ACTIONS(1632), - [anon_sym_continue] = ACTIONS(1632), - [anon_sym_break] = ACTIONS(1632), - [anon_sym_defer] = ACTIONS(1632), - [anon_sym_assert] = ACTIONS(1632), - [anon_sym_nextcase] = ACTIONS(1632), - [anon_sym_switch] = ACTIONS(1632), - [anon_sym_AMP_AMP] = ACTIONS(1634), - [anon_sym_if] = ACTIONS(1632), - [anon_sym_for] = ACTIONS(1632), - [anon_sym_foreach] = ACTIONS(1632), - [anon_sym_foreach_r] = ACTIONS(1632), - [anon_sym_while] = ACTIONS(1632), - [anon_sym_do] = ACTIONS(1632), - [anon_sym_int] = ACTIONS(1632), - [anon_sym_PLUS] = ACTIONS(1632), - [anon_sym_DASH] = ACTIONS(1632), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_asm] = ACTIONS(1632), - [anon_sym_DOLLARassert] = ACTIONS(1632), - [anon_sym_DOLLARerror] = ACTIONS(1632), - [anon_sym_DOLLARecho] = ACTIONS(1632), - [anon_sym_DOLLARif] = ACTIONS(1632), - [anon_sym_DOLLARendif] = ACTIONS(1632), - [anon_sym_DOLLARelse] = ACTIONS(1632), - [anon_sym_DOLLARswitch] = ACTIONS(1632), - [anon_sym_DOLLARfor] = ACTIONS(1632), - [anon_sym_DOLLARforeach] = ACTIONS(1632), - [anon_sym_DOLLARalignof] = ACTIONS(1632), - [anon_sym_DOLLARextnameof] = ACTIONS(1632), - [anon_sym_DOLLARnameof] = ACTIONS(1632), - [anon_sym_DOLLARoffsetof] = ACTIONS(1632), - [anon_sym_DOLLARqnameof] = ACTIONS(1632), - [anon_sym_DOLLARvaconst] = ACTIONS(1632), - [anon_sym_DOLLARvaarg] = ACTIONS(1632), - [anon_sym_DOLLARvaref] = ACTIONS(1632), - [anon_sym_DOLLARvaexpr] = ACTIONS(1632), - [anon_sym_true] = ACTIONS(1632), - [anon_sym_false] = ACTIONS(1632), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_DOLLARvacount] = ACTIONS(1632), - [anon_sym_DOLLARappend] = ACTIONS(1632), - [anon_sym_DOLLARconcat] = ACTIONS(1632), - [anon_sym_DOLLAReval] = ACTIONS(1632), - [anon_sym_DOLLARis_const] = ACTIONS(1632), - [anon_sym_DOLLARsizeof] = ACTIONS(1632), - [anon_sym_DOLLARstringify] = ACTIONS(1632), - [anon_sym_DOLLARand] = ACTIONS(1632), - [anon_sym_DOLLARdefined] = ACTIONS(1632), - [anon_sym_DOLLARembed] = ACTIONS(1632), - [anon_sym_DOLLARor] = ACTIONS(1632), - [anon_sym_DOLLARfeature] = ACTIONS(1632), - [anon_sym_DOLLARassignable] = ACTIONS(1632), - [anon_sym_BANG] = ACTIONS(1634), - [anon_sym_TILDE] = ACTIONS(1634), - [anon_sym_PLUS_PLUS] = ACTIONS(1634), - [anon_sym_DASH_DASH] = ACTIONS(1634), - [anon_sym_typeid] = ACTIONS(1632), - [anon_sym_LBRACE_PIPE] = ACTIONS(1634), - [anon_sym_void] = ACTIONS(1632), - [anon_sym_bool] = ACTIONS(1632), - [anon_sym_char] = ACTIONS(1632), - [anon_sym_ichar] = ACTIONS(1632), - [anon_sym_short] = ACTIONS(1632), - [anon_sym_ushort] = ACTIONS(1632), - [anon_sym_uint] = ACTIONS(1632), - [anon_sym_long] = ACTIONS(1632), - [anon_sym_ulong] = ACTIONS(1632), - [anon_sym_int128] = ACTIONS(1632), - [anon_sym_uint128] = ACTIONS(1632), - [anon_sym_float] = ACTIONS(1632), - [anon_sym_double] = ACTIONS(1632), - [anon_sym_float16] = ACTIONS(1632), - [anon_sym_bfloat16] = ACTIONS(1632), - [anon_sym_float128] = ACTIONS(1632), - [anon_sym_iptr] = ACTIONS(1632), - [anon_sym_uptr] = ACTIONS(1632), - [anon_sym_isz] = ACTIONS(1632), - [anon_sym_usz] = ACTIONS(1632), - [anon_sym_anyfault] = ACTIONS(1632), - [anon_sym_any] = ACTIONS(1632), - [anon_sym_DOLLARtypeof] = ACTIONS(1632), - [anon_sym_DOLLARtypefrom] = ACTIONS(1632), - [anon_sym_DOLLARvatype] = ACTIONS(1632), - [anon_sym_DOLLARevaltype] = ACTIONS(1632), - [sym_real_literal] = ACTIONS(1634), + [sym_ident] = ACTIONS(1541), + [sym_integer_literal] = ACTIONS(1543), + [anon_sym_SQUOTE] = ACTIONS(1543), + [anon_sym_DQUOTE] = ACTIONS(1543), + [anon_sym_BQUOTE] = ACTIONS(1543), + [sym_bytes_literal] = ACTIONS(1543), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1541), + [sym_at_ident] = ACTIONS(1543), + [sym_hash_ident] = ACTIONS(1543), + [sym_type_ident] = ACTIONS(1543), + [sym_ct_type_ident] = ACTIONS(1543), + [sym_const_ident] = ACTIONS(1541), + [sym_builtin] = ACTIONS(1543), + [anon_sym_LPAREN] = ACTIONS(1543), + [anon_sym_AMP] = ACTIONS(1541), + [anon_sym_static] = ACTIONS(1541), + [anon_sym_tlocal] = ACTIONS(1541), + [anon_sym_SEMI] = ACTIONS(1543), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1541), + [anon_sym_const] = ACTIONS(1541), + [anon_sym_var] = ACTIONS(1541), + [anon_sym_return] = ACTIONS(1541), + [anon_sym_continue] = ACTIONS(1541), + [anon_sym_break] = ACTIONS(1541), + [anon_sym_defer] = ACTIONS(1541), + [anon_sym_assert] = ACTIONS(1541), + [anon_sym_nextcase] = ACTIONS(1541), + [anon_sym_switch] = ACTIONS(1541), + [anon_sym_AMP_AMP] = ACTIONS(1543), + [anon_sym_if] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1541), + [anon_sym_foreach] = ACTIONS(1541), + [anon_sym_foreach_r] = ACTIONS(1541), + [anon_sym_while] = ACTIONS(1541), + [anon_sym_do] = ACTIONS(1541), + [anon_sym_int] = ACTIONS(1541), + [anon_sym_PLUS] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_asm] = ACTIONS(1541), + [anon_sym_DOLLARassert] = ACTIONS(1541), + [anon_sym_DOLLARerror] = ACTIONS(1541), + [anon_sym_DOLLARecho] = ACTIONS(1541), + [anon_sym_DOLLARif] = ACTIONS(1541), + [anon_sym_DOLLARswitch] = ACTIONS(1541), + [anon_sym_DOLLARfor] = ACTIONS(1541), + [anon_sym_DOLLARendfor] = ACTIONS(1541), + [anon_sym_DOLLARforeach] = ACTIONS(1541), + [anon_sym_DOLLARalignof] = ACTIONS(1541), + [anon_sym_DOLLARextnameof] = ACTIONS(1541), + [anon_sym_DOLLARnameof] = ACTIONS(1541), + [anon_sym_DOLLARoffsetof] = ACTIONS(1541), + [anon_sym_DOLLARqnameof] = ACTIONS(1541), + [anon_sym_DOLLARvaconst] = ACTIONS(1541), + [anon_sym_DOLLARvaarg] = ACTIONS(1541), + [anon_sym_DOLLARvaref] = ACTIONS(1541), + [anon_sym_DOLLARvaexpr] = ACTIONS(1541), + [anon_sym_true] = ACTIONS(1541), + [anon_sym_false] = ACTIONS(1541), + [anon_sym_null] = ACTIONS(1541), + [anon_sym_DOLLARvacount] = ACTIONS(1541), + [anon_sym_DOLLARappend] = ACTIONS(1541), + [anon_sym_DOLLARconcat] = ACTIONS(1541), + [anon_sym_DOLLAReval] = ACTIONS(1541), + [anon_sym_DOLLARis_const] = ACTIONS(1541), + [anon_sym_DOLLARsizeof] = ACTIONS(1541), + [anon_sym_DOLLARstringify] = ACTIONS(1541), + [anon_sym_DOLLARand] = ACTIONS(1541), + [anon_sym_DOLLARdefined] = ACTIONS(1541), + [anon_sym_DOLLARembed] = ACTIONS(1541), + [anon_sym_DOLLARor] = ACTIONS(1541), + [anon_sym_DOLLARfeature] = ACTIONS(1541), + [anon_sym_DOLLARassignable] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_PLUS_PLUS] = ACTIONS(1543), + [anon_sym_DASH_DASH] = ACTIONS(1543), + [anon_sym_typeid] = ACTIONS(1541), + [anon_sym_LBRACE_PIPE] = ACTIONS(1543), + [anon_sym_void] = ACTIONS(1541), + [anon_sym_bool] = ACTIONS(1541), + [anon_sym_char] = ACTIONS(1541), + [anon_sym_ichar] = ACTIONS(1541), + [anon_sym_short] = ACTIONS(1541), + [anon_sym_ushort] = ACTIONS(1541), + [anon_sym_uint] = ACTIONS(1541), + [anon_sym_long] = ACTIONS(1541), + [anon_sym_ulong] = ACTIONS(1541), + [anon_sym_int128] = ACTIONS(1541), + [anon_sym_uint128] = ACTIONS(1541), + [anon_sym_float] = ACTIONS(1541), + [anon_sym_double] = ACTIONS(1541), + [anon_sym_float16] = ACTIONS(1541), + [anon_sym_bfloat16] = ACTIONS(1541), + [anon_sym_float128] = ACTIONS(1541), + [anon_sym_iptr] = ACTIONS(1541), + [anon_sym_uptr] = ACTIONS(1541), + [anon_sym_isz] = ACTIONS(1541), + [anon_sym_usz] = ACTIONS(1541), + [anon_sym_anyfault] = ACTIONS(1541), + [anon_sym_any] = ACTIONS(1541), + [anon_sym_DOLLARtypeof] = ACTIONS(1541), + [anon_sym_DOLLARtypefrom] = ACTIONS(1541), + [anon_sym_DOLLARvatype] = ACTIONS(1541), + [anon_sym_DOLLARevaltype] = ACTIONS(1541), + [sym_real_literal] = ACTIONS(1543), }, [576] = { [sym_line_comment] = STATE(576), [sym_doc_comment] = STATE(576), [sym_block_comment] = STATE(576), - [sym_ident] = ACTIONS(1544), - [sym_integer_literal] = ACTIONS(1546), - [anon_sym_SQUOTE] = ACTIONS(1546), - [anon_sym_DQUOTE] = ACTIONS(1546), - [anon_sym_BQUOTE] = ACTIONS(1546), - [sym_bytes_literal] = ACTIONS(1546), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1544), - [sym_at_ident] = ACTIONS(1546), - [sym_hash_ident] = ACTIONS(1546), - [sym_type_ident] = ACTIONS(1546), - [sym_ct_type_ident] = ACTIONS(1546), - [sym_const_ident] = ACTIONS(1544), - [sym_builtin] = ACTIONS(1546), - [anon_sym_LPAREN] = ACTIONS(1546), - [anon_sym_AMP] = ACTIONS(1544), - [anon_sym_static] = ACTIONS(1544), - [anon_sym_tlocal] = ACTIONS(1544), - [anon_sym_SEMI] = ACTIONS(1546), - [anon_sym_fn] = ACTIONS(1544), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_const] = ACTIONS(1544), - [anon_sym_var] = ACTIONS(1544), - [anon_sym_return] = ACTIONS(1544), - [anon_sym_continue] = ACTIONS(1544), - [anon_sym_break] = ACTIONS(1544), - [anon_sym_defer] = ACTIONS(1544), - [anon_sym_assert] = ACTIONS(1544), - [anon_sym_nextcase] = ACTIONS(1544), - [anon_sym_switch] = ACTIONS(1544), - [anon_sym_AMP_AMP] = ACTIONS(1546), - [anon_sym_if] = ACTIONS(1544), - [anon_sym_for] = ACTIONS(1544), - [anon_sym_foreach] = ACTIONS(1544), - [anon_sym_foreach_r] = ACTIONS(1544), - [anon_sym_while] = ACTIONS(1544), - [anon_sym_do] = ACTIONS(1544), - [anon_sym_int] = ACTIONS(1544), - [anon_sym_PLUS] = ACTIONS(1544), - [anon_sym_DASH] = ACTIONS(1544), - [anon_sym_STAR] = ACTIONS(1546), - [anon_sym_asm] = ACTIONS(1544), - [anon_sym_DOLLARassert] = ACTIONS(1544), - [anon_sym_DOLLARerror] = ACTIONS(1544), - [anon_sym_DOLLARecho] = ACTIONS(1544), - [anon_sym_DOLLARif] = ACTIONS(1544), - [anon_sym_DOLLARendif] = ACTIONS(1544), - [anon_sym_DOLLARelse] = ACTIONS(1544), - [anon_sym_DOLLARswitch] = ACTIONS(1544), - [anon_sym_DOLLARfor] = ACTIONS(1544), - [anon_sym_DOLLARforeach] = ACTIONS(1544), - [anon_sym_DOLLARalignof] = ACTIONS(1544), - [anon_sym_DOLLARextnameof] = ACTIONS(1544), - [anon_sym_DOLLARnameof] = ACTIONS(1544), - [anon_sym_DOLLARoffsetof] = ACTIONS(1544), - [anon_sym_DOLLARqnameof] = ACTIONS(1544), - [anon_sym_DOLLARvaconst] = ACTIONS(1544), - [anon_sym_DOLLARvaarg] = ACTIONS(1544), - [anon_sym_DOLLARvaref] = ACTIONS(1544), - [anon_sym_DOLLARvaexpr] = ACTIONS(1544), - [anon_sym_true] = ACTIONS(1544), - [anon_sym_false] = ACTIONS(1544), - [anon_sym_null] = ACTIONS(1544), - [anon_sym_DOLLARvacount] = ACTIONS(1544), - [anon_sym_DOLLARappend] = ACTIONS(1544), - [anon_sym_DOLLARconcat] = ACTIONS(1544), - [anon_sym_DOLLAReval] = ACTIONS(1544), - [anon_sym_DOLLARis_const] = ACTIONS(1544), - [anon_sym_DOLLARsizeof] = ACTIONS(1544), - [anon_sym_DOLLARstringify] = ACTIONS(1544), - [anon_sym_DOLLARand] = ACTIONS(1544), - [anon_sym_DOLLARdefined] = ACTIONS(1544), - [anon_sym_DOLLARembed] = ACTIONS(1544), - [anon_sym_DOLLARor] = ACTIONS(1544), - [anon_sym_DOLLARfeature] = ACTIONS(1544), - [anon_sym_DOLLARassignable] = ACTIONS(1544), - [anon_sym_BANG] = ACTIONS(1546), - [anon_sym_TILDE] = ACTIONS(1546), - [anon_sym_PLUS_PLUS] = ACTIONS(1546), - [anon_sym_DASH_DASH] = ACTIONS(1546), - [anon_sym_typeid] = ACTIONS(1544), - [anon_sym_LBRACE_PIPE] = ACTIONS(1546), - [anon_sym_void] = ACTIONS(1544), - [anon_sym_bool] = ACTIONS(1544), - [anon_sym_char] = ACTIONS(1544), - [anon_sym_ichar] = ACTIONS(1544), - [anon_sym_short] = ACTIONS(1544), - [anon_sym_ushort] = ACTIONS(1544), - [anon_sym_uint] = ACTIONS(1544), - [anon_sym_long] = ACTIONS(1544), - [anon_sym_ulong] = ACTIONS(1544), - [anon_sym_int128] = ACTIONS(1544), - [anon_sym_uint128] = ACTIONS(1544), - [anon_sym_float] = ACTIONS(1544), - [anon_sym_double] = ACTIONS(1544), - [anon_sym_float16] = ACTIONS(1544), - [anon_sym_bfloat16] = ACTIONS(1544), - [anon_sym_float128] = ACTIONS(1544), - [anon_sym_iptr] = ACTIONS(1544), - [anon_sym_uptr] = ACTIONS(1544), - [anon_sym_isz] = ACTIONS(1544), - [anon_sym_usz] = ACTIONS(1544), - [anon_sym_anyfault] = ACTIONS(1544), - [anon_sym_any] = ACTIONS(1544), - [anon_sym_DOLLARtypeof] = ACTIONS(1544), - [anon_sym_DOLLARtypefrom] = ACTIONS(1544), - [anon_sym_DOLLARvatype] = ACTIONS(1544), - [anon_sym_DOLLARevaltype] = ACTIONS(1544), - [sym_real_literal] = ACTIONS(1546), + [sym_ident] = ACTIONS(1553), + [sym_integer_literal] = ACTIONS(1555), + [anon_sym_SQUOTE] = ACTIONS(1555), + [anon_sym_DQUOTE] = ACTIONS(1555), + [anon_sym_BQUOTE] = ACTIONS(1555), + [sym_bytes_literal] = ACTIONS(1555), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1553), + [sym_at_ident] = ACTIONS(1555), + [sym_hash_ident] = ACTIONS(1555), + [sym_type_ident] = ACTIONS(1555), + [sym_ct_type_ident] = ACTIONS(1555), + [sym_const_ident] = ACTIONS(1553), + [sym_builtin] = ACTIONS(1555), + [anon_sym_LPAREN] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1553), + [anon_sym_static] = ACTIONS(1553), + [anon_sym_tlocal] = ACTIONS(1553), + [anon_sym_SEMI] = ACTIONS(1555), + [anon_sym_fn] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1553), + [anon_sym_const] = ACTIONS(1553), + [anon_sym_var] = ACTIONS(1553), + [anon_sym_return] = ACTIONS(1553), + [anon_sym_continue] = ACTIONS(1553), + [anon_sym_break] = ACTIONS(1553), + [anon_sym_defer] = ACTIONS(1553), + [anon_sym_assert] = ACTIONS(1553), + [anon_sym_nextcase] = ACTIONS(1553), + [anon_sym_switch] = ACTIONS(1553), + [anon_sym_AMP_AMP] = ACTIONS(1555), + [anon_sym_if] = ACTIONS(1553), + [anon_sym_for] = ACTIONS(1553), + [anon_sym_foreach] = ACTIONS(1553), + [anon_sym_foreach_r] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1553), + [anon_sym_do] = ACTIONS(1553), + [anon_sym_int] = ACTIONS(1553), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1555), + [anon_sym_asm] = ACTIONS(1553), + [anon_sym_DOLLARassert] = ACTIONS(1553), + [anon_sym_DOLLARerror] = ACTIONS(1553), + [anon_sym_DOLLARecho] = ACTIONS(1553), + [anon_sym_DOLLARif] = ACTIONS(1553), + [anon_sym_DOLLARswitch] = ACTIONS(1553), + [anon_sym_DOLLARfor] = ACTIONS(1553), + [anon_sym_DOLLARendfor] = ACTIONS(1553), + [anon_sym_DOLLARforeach] = ACTIONS(1553), + [anon_sym_DOLLARalignof] = ACTIONS(1553), + [anon_sym_DOLLARextnameof] = ACTIONS(1553), + [anon_sym_DOLLARnameof] = ACTIONS(1553), + [anon_sym_DOLLARoffsetof] = ACTIONS(1553), + [anon_sym_DOLLARqnameof] = ACTIONS(1553), + [anon_sym_DOLLARvaconst] = ACTIONS(1553), + [anon_sym_DOLLARvaarg] = ACTIONS(1553), + [anon_sym_DOLLARvaref] = ACTIONS(1553), + [anon_sym_DOLLARvaexpr] = ACTIONS(1553), + [anon_sym_true] = ACTIONS(1553), + [anon_sym_false] = ACTIONS(1553), + [anon_sym_null] = ACTIONS(1553), + [anon_sym_DOLLARvacount] = ACTIONS(1553), + [anon_sym_DOLLARappend] = ACTIONS(1553), + [anon_sym_DOLLARconcat] = ACTIONS(1553), + [anon_sym_DOLLAReval] = ACTIONS(1553), + [anon_sym_DOLLARis_const] = ACTIONS(1553), + [anon_sym_DOLLARsizeof] = ACTIONS(1553), + [anon_sym_DOLLARstringify] = ACTIONS(1553), + [anon_sym_DOLLARand] = ACTIONS(1553), + [anon_sym_DOLLARdefined] = ACTIONS(1553), + [anon_sym_DOLLARembed] = ACTIONS(1553), + [anon_sym_DOLLARor] = ACTIONS(1553), + [anon_sym_DOLLARfeature] = ACTIONS(1553), + [anon_sym_DOLLARassignable] = ACTIONS(1553), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_TILDE] = ACTIONS(1555), + [anon_sym_PLUS_PLUS] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(1555), + [anon_sym_typeid] = ACTIONS(1553), + [anon_sym_LBRACE_PIPE] = ACTIONS(1555), + [anon_sym_void] = ACTIONS(1553), + [anon_sym_bool] = ACTIONS(1553), + [anon_sym_char] = ACTIONS(1553), + [anon_sym_ichar] = ACTIONS(1553), + [anon_sym_short] = ACTIONS(1553), + [anon_sym_ushort] = ACTIONS(1553), + [anon_sym_uint] = ACTIONS(1553), + [anon_sym_long] = ACTIONS(1553), + [anon_sym_ulong] = ACTIONS(1553), + [anon_sym_int128] = ACTIONS(1553), + [anon_sym_uint128] = ACTIONS(1553), + [anon_sym_float] = ACTIONS(1553), + [anon_sym_double] = ACTIONS(1553), + [anon_sym_float16] = ACTIONS(1553), + [anon_sym_bfloat16] = ACTIONS(1553), + [anon_sym_float128] = ACTIONS(1553), + [anon_sym_iptr] = ACTIONS(1553), + [anon_sym_uptr] = ACTIONS(1553), + [anon_sym_isz] = ACTIONS(1553), + [anon_sym_usz] = ACTIONS(1553), + [anon_sym_anyfault] = ACTIONS(1553), + [anon_sym_any] = ACTIONS(1553), + [anon_sym_DOLLARtypeof] = ACTIONS(1553), + [anon_sym_DOLLARtypefrom] = ACTIONS(1553), + [anon_sym_DOLLARvatype] = ACTIONS(1553), + [anon_sym_DOLLARevaltype] = ACTIONS(1553), + [sym_real_literal] = ACTIONS(1555), }, [577] = { [sym_line_comment] = STATE(577), [sym_doc_comment] = STATE(577), [sym_block_comment] = STATE(577), - [sym_ident] = ACTIONS(1376), - [sym_integer_literal] = ACTIONS(1378), - [anon_sym_SQUOTE] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1378), - [anon_sym_BQUOTE] = ACTIONS(1378), - [sym_bytes_literal] = ACTIONS(1378), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1376), - [sym_at_ident] = ACTIONS(1378), - [sym_hash_ident] = ACTIONS(1378), - [sym_type_ident] = ACTIONS(1378), - [sym_ct_type_ident] = ACTIONS(1378), - [sym_const_ident] = ACTIONS(1376), - [sym_builtin] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_AMP] = ACTIONS(1376), - [anon_sym_static] = ACTIONS(1376), - [anon_sym_tlocal] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1378), - [anon_sym_fn] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_var] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_defer] = ACTIONS(1376), - [anon_sym_assert] = ACTIONS(1376), - [anon_sym_nextcase] = ACTIONS(1376), - [anon_sym_switch] = ACTIONS(1376), - [anon_sym_AMP_AMP] = ACTIONS(1378), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_else] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_foreach] = ACTIONS(1376), - [anon_sym_foreach_r] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_int] = ACTIONS(1376), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_asm] = ACTIONS(1376), - [anon_sym_DOLLARassert] = ACTIONS(1376), - [anon_sym_DOLLARerror] = ACTIONS(1376), - [anon_sym_DOLLARecho] = ACTIONS(1376), - [anon_sym_DOLLARif] = ACTIONS(1376), - [anon_sym_DOLLARendif] = ACTIONS(1376), - [anon_sym_DOLLARswitch] = ACTIONS(1376), - [anon_sym_DOLLARfor] = ACTIONS(1376), - [anon_sym_DOLLARforeach] = ACTIONS(1376), - [anon_sym_DOLLARalignof] = ACTIONS(1376), - [anon_sym_DOLLARextnameof] = ACTIONS(1376), - [anon_sym_DOLLARnameof] = ACTIONS(1376), - [anon_sym_DOLLARoffsetof] = ACTIONS(1376), - [anon_sym_DOLLARqnameof] = ACTIONS(1376), - [anon_sym_DOLLARvaconst] = ACTIONS(1376), - [anon_sym_DOLLARvaarg] = ACTIONS(1376), - [anon_sym_DOLLARvaref] = ACTIONS(1376), - [anon_sym_DOLLARvaexpr] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_DOLLARvacount] = ACTIONS(1376), - [anon_sym_DOLLARappend] = ACTIONS(1376), - [anon_sym_DOLLARconcat] = ACTIONS(1376), - [anon_sym_DOLLAReval] = ACTIONS(1376), - [anon_sym_DOLLARis_const] = ACTIONS(1376), - [anon_sym_DOLLARsizeof] = ACTIONS(1376), - [anon_sym_DOLLARstringify] = ACTIONS(1376), - [anon_sym_DOLLARand] = ACTIONS(1376), - [anon_sym_DOLLARdefined] = ACTIONS(1376), - [anon_sym_DOLLARembed] = ACTIONS(1376), - [anon_sym_DOLLARor] = ACTIONS(1376), - [anon_sym_DOLLARfeature] = ACTIONS(1376), - [anon_sym_DOLLARassignable] = ACTIONS(1376), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_PLUS_PLUS] = ACTIONS(1378), - [anon_sym_DASH_DASH] = ACTIONS(1378), - [anon_sym_typeid] = ACTIONS(1376), - [anon_sym_LBRACE_PIPE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1376), - [anon_sym_bool] = ACTIONS(1376), - [anon_sym_char] = ACTIONS(1376), - [anon_sym_ichar] = ACTIONS(1376), - [anon_sym_short] = ACTIONS(1376), - [anon_sym_ushort] = ACTIONS(1376), - [anon_sym_uint] = ACTIONS(1376), - [anon_sym_long] = ACTIONS(1376), - [anon_sym_ulong] = ACTIONS(1376), - [anon_sym_int128] = ACTIONS(1376), - [anon_sym_uint128] = ACTIONS(1376), - [anon_sym_float] = ACTIONS(1376), - [anon_sym_double] = ACTIONS(1376), - [anon_sym_float16] = ACTIONS(1376), - [anon_sym_bfloat16] = ACTIONS(1376), - [anon_sym_float128] = ACTIONS(1376), - [anon_sym_iptr] = ACTIONS(1376), - [anon_sym_uptr] = ACTIONS(1376), - [anon_sym_isz] = ACTIONS(1376), - [anon_sym_usz] = ACTIONS(1376), - [anon_sym_anyfault] = ACTIONS(1376), - [anon_sym_any] = ACTIONS(1376), - [anon_sym_DOLLARtypeof] = ACTIONS(1376), - [anon_sym_DOLLARtypefrom] = ACTIONS(1376), - [anon_sym_DOLLARvatype] = ACTIONS(1376), - [anon_sym_DOLLARevaltype] = ACTIONS(1376), - [sym_real_literal] = ACTIONS(1378), + [sym_ident] = ACTIONS(1423), + [sym_integer_literal] = ACTIONS(1425), + [anon_sym_SQUOTE] = ACTIONS(1425), + [anon_sym_DQUOTE] = ACTIONS(1425), + [anon_sym_BQUOTE] = ACTIONS(1425), + [sym_bytes_literal] = ACTIONS(1425), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1423), + [sym_at_ident] = ACTIONS(1425), + [sym_hash_ident] = ACTIONS(1425), + [sym_type_ident] = ACTIONS(1425), + [sym_ct_type_ident] = ACTIONS(1425), + [sym_const_ident] = ACTIONS(1423), + [sym_builtin] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1423), + [anon_sym_static] = ACTIONS(1423), + [anon_sym_tlocal] = ACTIONS(1423), + [anon_sym_SEMI] = ACTIONS(1425), + [anon_sym_fn] = ACTIONS(1423), + [anon_sym_LBRACE] = ACTIONS(1423), + [anon_sym_const] = ACTIONS(1423), + [anon_sym_var] = ACTIONS(1423), + [anon_sym_return] = ACTIONS(1423), + [anon_sym_continue] = ACTIONS(1423), + [anon_sym_break] = ACTIONS(1423), + [anon_sym_defer] = ACTIONS(1423), + [anon_sym_assert] = ACTIONS(1423), + [anon_sym_nextcase] = ACTIONS(1423), + [anon_sym_switch] = ACTIONS(1423), + [anon_sym_AMP_AMP] = ACTIONS(1425), + [anon_sym_if] = ACTIONS(1423), + [anon_sym_for] = ACTIONS(1423), + [anon_sym_foreach] = ACTIONS(1423), + [anon_sym_foreach_r] = ACTIONS(1423), + [anon_sym_while] = ACTIONS(1423), + [anon_sym_do] = ACTIONS(1423), + [anon_sym_int] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_asm] = ACTIONS(1423), + [anon_sym_DOLLARassert] = ACTIONS(1423), + [anon_sym_DOLLARerror] = ACTIONS(1423), + [anon_sym_DOLLARecho] = ACTIONS(1423), + [anon_sym_DOLLARif] = ACTIONS(1423), + [anon_sym_DOLLARswitch] = ACTIONS(1423), + [anon_sym_DOLLARfor] = ACTIONS(1423), + [anon_sym_DOLLARendfor] = ACTIONS(1423), + [anon_sym_DOLLARforeach] = ACTIONS(1423), + [anon_sym_DOLLARalignof] = ACTIONS(1423), + [anon_sym_DOLLARextnameof] = ACTIONS(1423), + [anon_sym_DOLLARnameof] = ACTIONS(1423), + [anon_sym_DOLLARoffsetof] = ACTIONS(1423), + [anon_sym_DOLLARqnameof] = ACTIONS(1423), + [anon_sym_DOLLARvaconst] = ACTIONS(1423), + [anon_sym_DOLLARvaarg] = ACTIONS(1423), + [anon_sym_DOLLARvaref] = ACTIONS(1423), + [anon_sym_DOLLARvaexpr] = ACTIONS(1423), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_null] = ACTIONS(1423), + [anon_sym_DOLLARvacount] = ACTIONS(1423), + [anon_sym_DOLLARappend] = ACTIONS(1423), + [anon_sym_DOLLARconcat] = ACTIONS(1423), + [anon_sym_DOLLAReval] = ACTIONS(1423), + [anon_sym_DOLLARis_const] = ACTIONS(1423), + [anon_sym_DOLLARsizeof] = ACTIONS(1423), + [anon_sym_DOLLARstringify] = ACTIONS(1423), + [anon_sym_DOLLARand] = ACTIONS(1423), + [anon_sym_DOLLARdefined] = ACTIONS(1423), + [anon_sym_DOLLARembed] = ACTIONS(1423), + [anon_sym_DOLLARor] = ACTIONS(1423), + [anon_sym_DOLLARfeature] = ACTIONS(1423), + [anon_sym_DOLLARassignable] = ACTIONS(1423), + [anon_sym_BANG] = ACTIONS(1425), + [anon_sym_TILDE] = ACTIONS(1425), + [anon_sym_PLUS_PLUS] = ACTIONS(1425), + [anon_sym_DASH_DASH] = ACTIONS(1425), + [anon_sym_typeid] = ACTIONS(1423), + [anon_sym_LBRACE_PIPE] = ACTIONS(1425), + [anon_sym_void] = ACTIONS(1423), + [anon_sym_bool] = ACTIONS(1423), + [anon_sym_char] = ACTIONS(1423), + [anon_sym_ichar] = ACTIONS(1423), + [anon_sym_short] = ACTIONS(1423), + [anon_sym_ushort] = ACTIONS(1423), + [anon_sym_uint] = ACTIONS(1423), + [anon_sym_long] = ACTIONS(1423), + [anon_sym_ulong] = ACTIONS(1423), + [anon_sym_int128] = ACTIONS(1423), + [anon_sym_uint128] = ACTIONS(1423), + [anon_sym_float] = ACTIONS(1423), + [anon_sym_double] = ACTIONS(1423), + [anon_sym_float16] = ACTIONS(1423), + [anon_sym_bfloat16] = ACTIONS(1423), + [anon_sym_float128] = ACTIONS(1423), + [anon_sym_iptr] = ACTIONS(1423), + [anon_sym_uptr] = ACTIONS(1423), + [anon_sym_isz] = ACTIONS(1423), + [anon_sym_usz] = ACTIONS(1423), + [anon_sym_anyfault] = ACTIONS(1423), + [anon_sym_any] = ACTIONS(1423), + [anon_sym_DOLLARtypeof] = ACTIONS(1423), + [anon_sym_DOLLARtypefrom] = ACTIONS(1423), + [anon_sym_DOLLARvatype] = ACTIONS(1423), + [anon_sym_DOLLARevaltype] = ACTIONS(1423), + [sym_real_literal] = ACTIONS(1425), }, [578] = { [sym_line_comment] = STATE(578), [sym_doc_comment] = STATE(578), [sym_block_comment] = STATE(578), - [sym_ident] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(1618), - [anon_sym_SQUOTE] = ACTIONS(1618), - [anon_sym_DQUOTE] = ACTIONS(1618), - [anon_sym_BQUOTE] = ACTIONS(1618), - [sym_bytes_literal] = ACTIONS(1618), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1616), - [sym_at_ident] = ACTIONS(1618), - [sym_hash_ident] = ACTIONS(1618), - [sym_type_ident] = ACTIONS(1618), - [sym_ct_type_ident] = ACTIONS(1618), - [sym_const_ident] = ACTIONS(1616), - [sym_builtin] = ACTIONS(1618), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_static] = ACTIONS(1616), - [anon_sym_tlocal] = ACTIONS(1616), - [anon_sym_SEMI] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1616), - [anon_sym_LBRACE] = ACTIONS(1616), - [anon_sym_const] = ACTIONS(1616), - [anon_sym_var] = ACTIONS(1616), - [anon_sym_return] = ACTIONS(1616), - [anon_sym_continue] = ACTIONS(1616), - [anon_sym_break] = ACTIONS(1616), - [anon_sym_defer] = ACTIONS(1616), - [anon_sym_assert] = ACTIONS(1616), - [anon_sym_nextcase] = ACTIONS(1616), - [anon_sym_switch] = ACTIONS(1616), - [anon_sym_AMP_AMP] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1616), - [anon_sym_for] = ACTIONS(1616), - [anon_sym_foreach] = ACTIONS(1616), - [anon_sym_foreach_r] = ACTIONS(1616), - [anon_sym_while] = ACTIONS(1616), - [anon_sym_do] = ACTIONS(1616), - [anon_sym_int] = ACTIONS(1616), - [anon_sym_PLUS] = ACTIONS(1616), - [anon_sym_DASH] = ACTIONS(1616), - [anon_sym_STAR] = ACTIONS(1618), - [anon_sym_asm] = ACTIONS(1616), - [anon_sym_DOLLARassert] = ACTIONS(1616), - [anon_sym_DOLLARerror] = ACTIONS(1616), - [anon_sym_DOLLARecho] = ACTIONS(1616), - [anon_sym_DOLLARif] = ACTIONS(1616), - [anon_sym_DOLLARendif] = ACTIONS(1616), - [anon_sym_DOLLARelse] = ACTIONS(1616), - [anon_sym_DOLLARswitch] = ACTIONS(1616), - [anon_sym_DOLLARfor] = ACTIONS(1616), - [anon_sym_DOLLARforeach] = ACTIONS(1616), - [anon_sym_DOLLARalignof] = ACTIONS(1616), - [anon_sym_DOLLARextnameof] = ACTIONS(1616), - [anon_sym_DOLLARnameof] = ACTIONS(1616), - [anon_sym_DOLLARoffsetof] = ACTIONS(1616), - [anon_sym_DOLLARqnameof] = ACTIONS(1616), - [anon_sym_DOLLARvaconst] = ACTIONS(1616), - [anon_sym_DOLLARvaarg] = ACTIONS(1616), - [anon_sym_DOLLARvaref] = ACTIONS(1616), - [anon_sym_DOLLARvaexpr] = ACTIONS(1616), - [anon_sym_true] = ACTIONS(1616), - [anon_sym_false] = ACTIONS(1616), - [anon_sym_null] = ACTIONS(1616), - [anon_sym_DOLLARvacount] = ACTIONS(1616), - [anon_sym_DOLLARappend] = ACTIONS(1616), - [anon_sym_DOLLARconcat] = ACTIONS(1616), - [anon_sym_DOLLAReval] = ACTIONS(1616), - [anon_sym_DOLLARis_const] = ACTIONS(1616), - [anon_sym_DOLLARsizeof] = ACTIONS(1616), - [anon_sym_DOLLARstringify] = ACTIONS(1616), - [anon_sym_DOLLARand] = ACTIONS(1616), - [anon_sym_DOLLARdefined] = ACTIONS(1616), - [anon_sym_DOLLARembed] = ACTIONS(1616), - [anon_sym_DOLLARor] = ACTIONS(1616), - [anon_sym_DOLLARfeature] = ACTIONS(1616), - [anon_sym_DOLLARassignable] = ACTIONS(1616), - [anon_sym_BANG] = ACTIONS(1618), - [anon_sym_TILDE] = ACTIONS(1618), - [anon_sym_PLUS_PLUS] = ACTIONS(1618), - [anon_sym_DASH_DASH] = ACTIONS(1618), - [anon_sym_typeid] = ACTIONS(1616), - [anon_sym_LBRACE_PIPE] = ACTIONS(1618), - [anon_sym_void] = ACTIONS(1616), - [anon_sym_bool] = ACTIONS(1616), - [anon_sym_char] = ACTIONS(1616), - [anon_sym_ichar] = ACTIONS(1616), - [anon_sym_short] = ACTIONS(1616), - [anon_sym_ushort] = ACTIONS(1616), - [anon_sym_uint] = ACTIONS(1616), - [anon_sym_long] = ACTIONS(1616), - [anon_sym_ulong] = ACTIONS(1616), - [anon_sym_int128] = ACTIONS(1616), - [anon_sym_uint128] = ACTIONS(1616), - [anon_sym_float] = ACTIONS(1616), - [anon_sym_double] = ACTIONS(1616), - [anon_sym_float16] = ACTIONS(1616), - [anon_sym_bfloat16] = ACTIONS(1616), - [anon_sym_float128] = ACTIONS(1616), - [anon_sym_iptr] = ACTIONS(1616), - [anon_sym_uptr] = ACTIONS(1616), - [anon_sym_isz] = ACTIONS(1616), - [anon_sym_usz] = ACTIONS(1616), - [anon_sym_anyfault] = ACTIONS(1616), - [anon_sym_any] = ACTIONS(1616), - [anon_sym_DOLLARtypeof] = ACTIONS(1616), - [anon_sym_DOLLARtypefrom] = ACTIONS(1616), - [anon_sym_DOLLARvatype] = ACTIONS(1616), - [anon_sym_DOLLARevaltype] = ACTIONS(1616), - [sym_real_literal] = ACTIONS(1618), + [sym_ident] = ACTIONS(1441), + [sym_integer_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1443), + [anon_sym_DQUOTE] = ACTIONS(1443), + [anon_sym_BQUOTE] = ACTIONS(1443), + [sym_bytes_literal] = ACTIONS(1443), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1441), + [sym_at_ident] = ACTIONS(1443), + [sym_hash_ident] = ACTIONS(1443), + [sym_type_ident] = ACTIONS(1443), + [sym_ct_type_ident] = ACTIONS(1443), + [sym_const_ident] = ACTIONS(1441), + [sym_builtin] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_tlocal] = ACTIONS(1441), + [anon_sym_SEMI] = ACTIONS(1443), + [anon_sym_fn] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1441), + [anon_sym_const] = ACTIONS(1441), + [anon_sym_var] = ACTIONS(1441), + [anon_sym_return] = ACTIONS(1441), + [anon_sym_continue] = ACTIONS(1441), + [anon_sym_break] = ACTIONS(1441), + [anon_sym_defer] = ACTIONS(1441), + [anon_sym_assert] = ACTIONS(1441), + [anon_sym_nextcase] = ACTIONS(1441), + [anon_sym_switch] = ACTIONS(1441), + [anon_sym_AMP_AMP] = ACTIONS(1443), + [anon_sym_if] = ACTIONS(1441), + [anon_sym_for] = ACTIONS(1441), + [anon_sym_foreach] = ACTIONS(1441), + [anon_sym_foreach_r] = ACTIONS(1441), + [anon_sym_while] = ACTIONS(1441), + [anon_sym_do] = ACTIONS(1441), + [anon_sym_int] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1441), + [anon_sym_DASH] = ACTIONS(1441), + [anon_sym_STAR] = ACTIONS(1443), + [anon_sym_asm] = ACTIONS(1441), + [anon_sym_DOLLARassert] = ACTIONS(1441), + [anon_sym_DOLLARerror] = ACTIONS(1441), + [anon_sym_DOLLARecho] = ACTIONS(1441), + [anon_sym_DOLLARif] = ACTIONS(1441), + [anon_sym_DOLLARswitch] = ACTIONS(1441), + [anon_sym_DOLLARfor] = ACTIONS(1441), + [anon_sym_DOLLARendfor] = ACTIONS(1441), + [anon_sym_DOLLARforeach] = ACTIONS(1441), + [anon_sym_DOLLARalignof] = ACTIONS(1441), + [anon_sym_DOLLARextnameof] = ACTIONS(1441), + [anon_sym_DOLLARnameof] = ACTIONS(1441), + [anon_sym_DOLLARoffsetof] = ACTIONS(1441), + [anon_sym_DOLLARqnameof] = ACTIONS(1441), + [anon_sym_DOLLARvaconst] = ACTIONS(1441), + [anon_sym_DOLLARvaarg] = ACTIONS(1441), + [anon_sym_DOLLARvaref] = ACTIONS(1441), + [anon_sym_DOLLARvaexpr] = ACTIONS(1441), + [anon_sym_true] = ACTIONS(1441), + [anon_sym_false] = ACTIONS(1441), + [anon_sym_null] = ACTIONS(1441), + [anon_sym_DOLLARvacount] = ACTIONS(1441), + [anon_sym_DOLLARappend] = ACTIONS(1441), + [anon_sym_DOLLARconcat] = ACTIONS(1441), + [anon_sym_DOLLAReval] = ACTIONS(1441), + [anon_sym_DOLLARis_const] = ACTIONS(1441), + [anon_sym_DOLLARsizeof] = ACTIONS(1441), + [anon_sym_DOLLARstringify] = ACTIONS(1441), + [anon_sym_DOLLARand] = ACTIONS(1441), + [anon_sym_DOLLARdefined] = ACTIONS(1441), + [anon_sym_DOLLARembed] = ACTIONS(1441), + [anon_sym_DOLLARor] = ACTIONS(1441), + [anon_sym_DOLLARfeature] = ACTIONS(1441), + [anon_sym_DOLLARassignable] = ACTIONS(1441), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_TILDE] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(1443), + [anon_sym_DASH_DASH] = ACTIONS(1443), + [anon_sym_typeid] = ACTIONS(1441), + [anon_sym_LBRACE_PIPE] = ACTIONS(1443), + [anon_sym_void] = ACTIONS(1441), + [anon_sym_bool] = ACTIONS(1441), + [anon_sym_char] = ACTIONS(1441), + [anon_sym_ichar] = ACTIONS(1441), + [anon_sym_short] = ACTIONS(1441), + [anon_sym_ushort] = ACTIONS(1441), + [anon_sym_uint] = ACTIONS(1441), + [anon_sym_long] = ACTIONS(1441), + [anon_sym_ulong] = ACTIONS(1441), + [anon_sym_int128] = ACTIONS(1441), + [anon_sym_uint128] = ACTIONS(1441), + [anon_sym_float] = ACTIONS(1441), + [anon_sym_double] = ACTIONS(1441), + [anon_sym_float16] = ACTIONS(1441), + [anon_sym_bfloat16] = ACTIONS(1441), + [anon_sym_float128] = ACTIONS(1441), + [anon_sym_iptr] = ACTIONS(1441), + [anon_sym_uptr] = ACTIONS(1441), + [anon_sym_isz] = ACTIONS(1441), + [anon_sym_usz] = ACTIONS(1441), + [anon_sym_anyfault] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_DOLLARtypeof] = ACTIONS(1441), + [anon_sym_DOLLARtypefrom] = ACTIONS(1441), + [anon_sym_DOLLARvatype] = ACTIONS(1441), + [anon_sym_DOLLARevaltype] = ACTIONS(1441), + [sym_real_literal] = ACTIONS(1443), }, [579] = { [sym_line_comment] = STATE(579), [sym_doc_comment] = STATE(579), [sym_block_comment] = STATE(579), - [sym_ident] = ACTIONS(1674), - [sym_integer_literal] = ACTIONS(1676), - [anon_sym_SQUOTE] = ACTIONS(1676), - [anon_sym_DQUOTE] = ACTIONS(1676), - [anon_sym_BQUOTE] = ACTIONS(1676), - [sym_bytes_literal] = ACTIONS(1676), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1674), - [sym_at_ident] = ACTIONS(1676), - [sym_hash_ident] = ACTIONS(1676), - [sym_type_ident] = ACTIONS(1676), - [sym_ct_type_ident] = ACTIONS(1676), - [sym_const_ident] = ACTIONS(1674), - [sym_builtin] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1676), - [anon_sym_AMP] = ACTIONS(1674), - [anon_sym_static] = ACTIONS(1674), - [anon_sym_tlocal] = ACTIONS(1674), - [anon_sym_SEMI] = ACTIONS(1676), - [anon_sym_fn] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1674), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_var] = ACTIONS(1674), - [anon_sym_return] = ACTIONS(1674), - [anon_sym_continue] = ACTIONS(1674), - [anon_sym_break] = ACTIONS(1674), - [anon_sym_defer] = ACTIONS(1674), - [anon_sym_assert] = ACTIONS(1674), - [anon_sym_nextcase] = ACTIONS(1674), - [anon_sym_switch] = ACTIONS(1674), - [anon_sym_AMP_AMP] = ACTIONS(1676), - [anon_sym_if] = ACTIONS(1674), - [anon_sym_for] = ACTIONS(1674), - [anon_sym_foreach] = ACTIONS(1674), - [anon_sym_foreach_r] = ACTIONS(1674), - [anon_sym_while] = ACTIONS(1674), - [anon_sym_do] = ACTIONS(1674), - [anon_sym_int] = ACTIONS(1674), - [anon_sym_PLUS] = ACTIONS(1674), - [anon_sym_DASH] = ACTIONS(1674), - [anon_sym_STAR] = ACTIONS(1676), - [anon_sym_asm] = ACTIONS(1674), - [anon_sym_DOLLARassert] = ACTIONS(1674), - [anon_sym_DOLLARerror] = ACTIONS(1674), - [anon_sym_DOLLARecho] = ACTIONS(1674), - [anon_sym_DOLLARif] = ACTIONS(1674), - [anon_sym_DOLLARendif] = ACTIONS(1674), - [anon_sym_DOLLARelse] = ACTIONS(1674), - [anon_sym_DOLLARswitch] = ACTIONS(1674), - [anon_sym_DOLLARfor] = ACTIONS(1674), - [anon_sym_DOLLARforeach] = ACTIONS(1674), - [anon_sym_DOLLARalignof] = ACTIONS(1674), - [anon_sym_DOLLARextnameof] = ACTIONS(1674), - [anon_sym_DOLLARnameof] = ACTIONS(1674), - [anon_sym_DOLLARoffsetof] = ACTIONS(1674), - [anon_sym_DOLLARqnameof] = ACTIONS(1674), - [anon_sym_DOLLARvaconst] = ACTIONS(1674), - [anon_sym_DOLLARvaarg] = ACTIONS(1674), - [anon_sym_DOLLARvaref] = ACTIONS(1674), - [anon_sym_DOLLARvaexpr] = ACTIONS(1674), - [anon_sym_true] = ACTIONS(1674), - [anon_sym_false] = ACTIONS(1674), - [anon_sym_null] = ACTIONS(1674), - [anon_sym_DOLLARvacount] = ACTIONS(1674), - [anon_sym_DOLLARappend] = ACTIONS(1674), - [anon_sym_DOLLARconcat] = ACTIONS(1674), - [anon_sym_DOLLAReval] = ACTIONS(1674), - [anon_sym_DOLLARis_const] = ACTIONS(1674), - [anon_sym_DOLLARsizeof] = ACTIONS(1674), - [anon_sym_DOLLARstringify] = ACTIONS(1674), - [anon_sym_DOLLARand] = ACTIONS(1674), - [anon_sym_DOLLARdefined] = ACTIONS(1674), - [anon_sym_DOLLARembed] = ACTIONS(1674), - [anon_sym_DOLLARor] = ACTIONS(1674), - [anon_sym_DOLLARfeature] = ACTIONS(1674), - [anon_sym_DOLLARassignable] = ACTIONS(1674), - [anon_sym_BANG] = ACTIONS(1676), - [anon_sym_TILDE] = ACTIONS(1676), - [anon_sym_PLUS_PLUS] = ACTIONS(1676), - [anon_sym_DASH_DASH] = ACTIONS(1676), - [anon_sym_typeid] = ACTIONS(1674), - [anon_sym_LBRACE_PIPE] = ACTIONS(1676), - [anon_sym_void] = ACTIONS(1674), - [anon_sym_bool] = ACTIONS(1674), - [anon_sym_char] = ACTIONS(1674), - [anon_sym_ichar] = ACTIONS(1674), - [anon_sym_short] = ACTIONS(1674), - [anon_sym_ushort] = ACTIONS(1674), - [anon_sym_uint] = ACTIONS(1674), - [anon_sym_long] = ACTIONS(1674), - [anon_sym_ulong] = ACTIONS(1674), - [anon_sym_int128] = ACTIONS(1674), - [anon_sym_uint128] = ACTIONS(1674), - [anon_sym_float] = ACTIONS(1674), - [anon_sym_double] = ACTIONS(1674), - [anon_sym_float16] = ACTIONS(1674), - [anon_sym_bfloat16] = ACTIONS(1674), - [anon_sym_float128] = ACTIONS(1674), - [anon_sym_iptr] = ACTIONS(1674), - [anon_sym_uptr] = ACTIONS(1674), - [anon_sym_isz] = ACTIONS(1674), - [anon_sym_usz] = ACTIONS(1674), - [anon_sym_anyfault] = ACTIONS(1674), - [anon_sym_any] = ACTIONS(1674), - [anon_sym_DOLLARtypeof] = ACTIONS(1674), - [anon_sym_DOLLARtypefrom] = ACTIONS(1674), - [anon_sym_DOLLARvatype] = ACTIONS(1674), - [anon_sym_DOLLARevaltype] = ACTIONS(1674), - [sym_real_literal] = ACTIONS(1676), + [sym_ident] = ACTIONS(1449), + [sym_integer_literal] = ACTIONS(1451), + [anon_sym_SQUOTE] = ACTIONS(1451), + [anon_sym_DQUOTE] = ACTIONS(1451), + [anon_sym_BQUOTE] = ACTIONS(1451), + [sym_bytes_literal] = ACTIONS(1451), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1449), + [sym_at_ident] = ACTIONS(1451), + [sym_hash_ident] = ACTIONS(1451), + [sym_type_ident] = ACTIONS(1451), + [sym_ct_type_ident] = ACTIONS(1451), + [sym_const_ident] = ACTIONS(1449), + [sym_builtin] = ACTIONS(1451), + [anon_sym_LPAREN] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_static] = ACTIONS(1449), + [anon_sym_tlocal] = ACTIONS(1449), + [anon_sym_SEMI] = ACTIONS(1451), + [anon_sym_fn] = ACTIONS(1449), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_const] = ACTIONS(1449), + [anon_sym_var] = ACTIONS(1449), + [anon_sym_return] = ACTIONS(1449), + [anon_sym_continue] = ACTIONS(1449), + [anon_sym_break] = ACTIONS(1449), + [anon_sym_defer] = ACTIONS(1449), + [anon_sym_assert] = ACTIONS(1449), + [anon_sym_nextcase] = ACTIONS(1449), + [anon_sym_switch] = ACTIONS(1449), + [anon_sym_AMP_AMP] = ACTIONS(1451), + [anon_sym_if] = ACTIONS(1449), + [anon_sym_for] = ACTIONS(1449), + [anon_sym_foreach] = ACTIONS(1449), + [anon_sym_foreach_r] = ACTIONS(1449), + [anon_sym_while] = ACTIONS(1449), + [anon_sym_do] = ACTIONS(1449), + [anon_sym_int] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1449), + [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_STAR] = ACTIONS(1451), + [anon_sym_asm] = ACTIONS(1449), + [anon_sym_DOLLARassert] = ACTIONS(1449), + [anon_sym_DOLLARerror] = ACTIONS(1449), + [anon_sym_DOLLARecho] = ACTIONS(1449), + [anon_sym_DOLLARif] = ACTIONS(1449), + [anon_sym_DOLLARswitch] = ACTIONS(1449), + [anon_sym_DOLLARfor] = ACTIONS(1449), + [anon_sym_DOLLARendfor] = ACTIONS(1449), + [anon_sym_DOLLARforeach] = ACTIONS(1449), + [anon_sym_DOLLARalignof] = ACTIONS(1449), + [anon_sym_DOLLARextnameof] = ACTIONS(1449), + [anon_sym_DOLLARnameof] = ACTIONS(1449), + [anon_sym_DOLLARoffsetof] = ACTIONS(1449), + [anon_sym_DOLLARqnameof] = ACTIONS(1449), + [anon_sym_DOLLARvaconst] = ACTIONS(1449), + [anon_sym_DOLLARvaarg] = ACTIONS(1449), + [anon_sym_DOLLARvaref] = ACTIONS(1449), + [anon_sym_DOLLARvaexpr] = ACTIONS(1449), + [anon_sym_true] = ACTIONS(1449), + [anon_sym_false] = ACTIONS(1449), + [anon_sym_null] = ACTIONS(1449), + [anon_sym_DOLLARvacount] = ACTIONS(1449), + [anon_sym_DOLLARappend] = ACTIONS(1449), + [anon_sym_DOLLARconcat] = ACTIONS(1449), + [anon_sym_DOLLAReval] = ACTIONS(1449), + [anon_sym_DOLLARis_const] = ACTIONS(1449), + [anon_sym_DOLLARsizeof] = ACTIONS(1449), + [anon_sym_DOLLARstringify] = ACTIONS(1449), + [anon_sym_DOLLARand] = ACTIONS(1449), + [anon_sym_DOLLARdefined] = ACTIONS(1449), + [anon_sym_DOLLARembed] = ACTIONS(1449), + [anon_sym_DOLLARor] = ACTIONS(1449), + [anon_sym_DOLLARfeature] = ACTIONS(1449), + [anon_sym_DOLLARassignable] = ACTIONS(1449), + [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_TILDE] = ACTIONS(1451), + [anon_sym_PLUS_PLUS] = ACTIONS(1451), + [anon_sym_DASH_DASH] = ACTIONS(1451), + [anon_sym_typeid] = ACTIONS(1449), + [anon_sym_LBRACE_PIPE] = ACTIONS(1451), + [anon_sym_void] = ACTIONS(1449), + [anon_sym_bool] = ACTIONS(1449), + [anon_sym_char] = ACTIONS(1449), + [anon_sym_ichar] = ACTIONS(1449), + [anon_sym_short] = ACTIONS(1449), + [anon_sym_ushort] = ACTIONS(1449), + [anon_sym_uint] = ACTIONS(1449), + [anon_sym_long] = ACTIONS(1449), + [anon_sym_ulong] = ACTIONS(1449), + [anon_sym_int128] = ACTIONS(1449), + [anon_sym_uint128] = ACTIONS(1449), + [anon_sym_float] = ACTIONS(1449), + [anon_sym_double] = ACTIONS(1449), + [anon_sym_float16] = ACTIONS(1449), + [anon_sym_bfloat16] = ACTIONS(1449), + [anon_sym_float128] = ACTIONS(1449), + [anon_sym_iptr] = ACTIONS(1449), + [anon_sym_uptr] = ACTIONS(1449), + [anon_sym_isz] = ACTIONS(1449), + [anon_sym_usz] = ACTIONS(1449), + [anon_sym_anyfault] = ACTIONS(1449), + [anon_sym_any] = ACTIONS(1449), + [anon_sym_DOLLARtypeof] = ACTIONS(1449), + [anon_sym_DOLLARtypefrom] = ACTIONS(1449), + [anon_sym_DOLLARvatype] = ACTIONS(1449), + [anon_sym_DOLLARevaltype] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1451), }, [580] = { [sym_line_comment] = STATE(580), [sym_doc_comment] = STATE(580), [sym_block_comment] = STATE(580), - [sym_ident] = ACTIONS(1624), - [sym_integer_literal] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1626), - [anon_sym_DQUOTE] = ACTIONS(1626), - [anon_sym_BQUOTE] = ACTIONS(1626), - [sym_bytes_literal] = ACTIONS(1626), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1624), - [sym_at_ident] = ACTIONS(1626), - [sym_hash_ident] = ACTIONS(1626), - [sym_type_ident] = ACTIONS(1626), - [sym_ct_type_ident] = ACTIONS(1626), - [sym_const_ident] = ACTIONS(1624), - [sym_builtin] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(1626), - [anon_sym_AMP] = ACTIONS(1624), - [anon_sym_static] = ACTIONS(1624), - [anon_sym_tlocal] = ACTIONS(1624), - [anon_sym_SEMI] = ACTIONS(1626), - [anon_sym_fn] = ACTIONS(1624), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_const] = ACTIONS(1624), - [anon_sym_var] = ACTIONS(1624), - [anon_sym_return] = ACTIONS(1624), - [anon_sym_continue] = ACTIONS(1624), - [anon_sym_break] = ACTIONS(1624), - [anon_sym_defer] = ACTIONS(1624), - [anon_sym_assert] = ACTIONS(1624), - [anon_sym_nextcase] = ACTIONS(1624), - [anon_sym_switch] = ACTIONS(1624), - [anon_sym_AMP_AMP] = ACTIONS(1626), - [anon_sym_if] = ACTIONS(1624), - [anon_sym_for] = ACTIONS(1624), - [anon_sym_foreach] = ACTIONS(1624), - [anon_sym_foreach_r] = ACTIONS(1624), - [anon_sym_while] = ACTIONS(1624), - [anon_sym_do] = ACTIONS(1624), - [anon_sym_int] = ACTIONS(1624), - [anon_sym_PLUS] = ACTIONS(1624), - [anon_sym_DASH] = ACTIONS(1624), - [anon_sym_STAR] = ACTIONS(1626), - [anon_sym_asm] = ACTIONS(1624), - [anon_sym_DOLLARassert] = ACTIONS(1624), - [anon_sym_DOLLARerror] = ACTIONS(1624), - [anon_sym_DOLLARecho] = ACTIONS(1624), - [anon_sym_DOLLARif] = ACTIONS(1624), - [anon_sym_DOLLARendif] = ACTIONS(1624), - [anon_sym_DOLLARelse] = ACTIONS(1624), - [anon_sym_DOLLARswitch] = ACTIONS(1624), - [anon_sym_DOLLARfor] = ACTIONS(1624), - [anon_sym_DOLLARforeach] = ACTIONS(1624), - [anon_sym_DOLLARalignof] = ACTIONS(1624), - [anon_sym_DOLLARextnameof] = ACTIONS(1624), - [anon_sym_DOLLARnameof] = ACTIONS(1624), - [anon_sym_DOLLARoffsetof] = ACTIONS(1624), - [anon_sym_DOLLARqnameof] = ACTIONS(1624), - [anon_sym_DOLLARvaconst] = ACTIONS(1624), - [anon_sym_DOLLARvaarg] = ACTIONS(1624), - [anon_sym_DOLLARvaref] = ACTIONS(1624), - [anon_sym_DOLLARvaexpr] = ACTIONS(1624), - [anon_sym_true] = ACTIONS(1624), - [anon_sym_false] = ACTIONS(1624), - [anon_sym_null] = ACTIONS(1624), - [anon_sym_DOLLARvacount] = ACTIONS(1624), - [anon_sym_DOLLARappend] = ACTIONS(1624), - [anon_sym_DOLLARconcat] = ACTIONS(1624), - [anon_sym_DOLLAReval] = ACTIONS(1624), - [anon_sym_DOLLARis_const] = ACTIONS(1624), - [anon_sym_DOLLARsizeof] = ACTIONS(1624), - [anon_sym_DOLLARstringify] = ACTIONS(1624), - [anon_sym_DOLLARand] = ACTIONS(1624), - [anon_sym_DOLLARdefined] = ACTIONS(1624), - [anon_sym_DOLLARembed] = ACTIONS(1624), - [anon_sym_DOLLARor] = ACTIONS(1624), - [anon_sym_DOLLARfeature] = ACTIONS(1624), - [anon_sym_DOLLARassignable] = ACTIONS(1624), - [anon_sym_BANG] = ACTIONS(1626), - [anon_sym_TILDE] = ACTIONS(1626), - [anon_sym_PLUS_PLUS] = ACTIONS(1626), - [anon_sym_DASH_DASH] = ACTIONS(1626), - [anon_sym_typeid] = ACTIONS(1624), - [anon_sym_LBRACE_PIPE] = ACTIONS(1626), - [anon_sym_void] = ACTIONS(1624), - [anon_sym_bool] = ACTIONS(1624), - [anon_sym_char] = ACTIONS(1624), - [anon_sym_ichar] = ACTIONS(1624), - [anon_sym_short] = ACTIONS(1624), - [anon_sym_ushort] = ACTIONS(1624), - [anon_sym_uint] = ACTIONS(1624), - [anon_sym_long] = ACTIONS(1624), - [anon_sym_ulong] = ACTIONS(1624), - [anon_sym_int128] = ACTIONS(1624), - [anon_sym_uint128] = ACTIONS(1624), - [anon_sym_float] = ACTIONS(1624), - [anon_sym_double] = ACTIONS(1624), - [anon_sym_float16] = ACTIONS(1624), - [anon_sym_bfloat16] = ACTIONS(1624), - [anon_sym_float128] = ACTIONS(1624), - [anon_sym_iptr] = ACTIONS(1624), - [anon_sym_uptr] = ACTIONS(1624), - [anon_sym_isz] = ACTIONS(1624), - [anon_sym_usz] = ACTIONS(1624), - [anon_sym_anyfault] = ACTIONS(1624), - [anon_sym_any] = ACTIONS(1624), - [anon_sym_DOLLARtypeof] = ACTIONS(1624), - [anon_sym_DOLLARtypefrom] = ACTIONS(1624), - [anon_sym_DOLLARvatype] = ACTIONS(1624), - [anon_sym_DOLLARevaltype] = ACTIONS(1624), - [sym_real_literal] = ACTIONS(1626), + [sym_ident] = ACTIONS(1557), + [sym_integer_literal] = ACTIONS(1559), + [anon_sym_SQUOTE] = ACTIONS(1559), + [anon_sym_DQUOTE] = ACTIONS(1559), + [anon_sym_BQUOTE] = ACTIONS(1559), + [sym_bytes_literal] = ACTIONS(1559), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1557), + [sym_at_ident] = ACTIONS(1559), + [sym_hash_ident] = ACTIONS(1559), + [sym_type_ident] = ACTIONS(1559), + [sym_ct_type_ident] = ACTIONS(1559), + [sym_const_ident] = ACTIONS(1557), + [sym_builtin] = ACTIONS(1559), + [anon_sym_LPAREN] = ACTIONS(1559), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_static] = ACTIONS(1557), + [anon_sym_tlocal] = ACTIONS(1557), + [anon_sym_SEMI] = ACTIONS(1559), + [anon_sym_fn] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1557), + [anon_sym_const] = ACTIONS(1557), + [anon_sym_var] = ACTIONS(1557), + [anon_sym_return] = ACTIONS(1557), + [anon_sym_continue] = ACTIONS(1557), + [anon_sym_break] = ACTIONS(1557), + [anon_sym_defer] = ACTIONS(1557), + [anon_sym_assert] = ACTIONS(1557), + [anon_sym_nextcase] = ACTIONS(1557), + [anon_sym_switch] = ACTIONS(1557), + [anon_sym_AMP_AMP] = ACTIONS(1559), + [anon_sym_if] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(1557), + [anon_sym_foreach] = ACTIONS(1557), + [anon_sym_foreach_r] = ACTIONS(1557), + [anon_sym_while] = ACTIONS(1557), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_int] = ACTIONS(1557), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_STAR] = ACTIONS(1559), + [anon_sym_asm] = ACTIONS(1557), + [anon_sym_DOLLARassert] = ACTIONS(1557), + [anon_sym_DOLLARerror] = ACTIONS(1557), + [anon_sym_DOLLARecho] = ACTIONS(1557), + [anon_sym_DOLLARif] = ACTIONS(1557), + [anon_sym_DOLLARswitch] = ACTIONS(1557), + [anon_sym_DOLLARfor] = ACTIONS(1557), + [anon_sym_DOLLARendfor] = ACTIONS(1557), + [anon_sym_DOLLARforeach] = ACTIONS(1557), + [anon_sym_DOLLARalignof] = ACTIONS(1557), + [anon_sym_DOLLARextnameof] = ACTIONS(1557), + [anon_sym_DOLLARnameof] = ACTIONS(1557), + [anon_sym_DOLLARoffsetof] = ACTIONS(1557), + [anon_sym_DOLLARqnameof] = ACTIONS(1557), + [anon_sym_DOLLARvaconst] = ACTIONS(1557), + [anon_sym_DOLLARvaarg] = ACTIONS(1557), + [anon_sym_DOLLARvaref] = ACTIONS(1557), + [anon_sym_DOLLARvaexpr] = ACTIONS(1557), + [anon_sym_true] = ACTIONS(1557), + [anon_sym_false] = ACTIONS(1557), + [anon_sym_null] = ACTIONS(1557), + [anon_sym_DOLLARvacount] = ACTIONS(1557), + [anon_sym_DOLLARappend] = ACTIONS(1557), + [anon_sym_DOLLARconcat] = ACTIONS(1557), + [anon_sym_DOLLAReval] = ACTIONS(1557), + [anon_sym_DOLLARis_const] = ACTIONS(1557), + [anon_sym_DOLLARsizeof] = ACTIONS(1557), + [anon_sym_DOLLARstringify] = ACTIONS(1557), + [anon_sym_DOLLARand] = ACTIONS(1557), + [anon_sym_DOLLARdefined] = ACTIONS(1557), + [anon_sym_DOLLARembed] = ACTIONS(1557), + [anon_sym_DOLLARor] = ACTIONS(1557), + [anon_sym_DOLLARfeature] = ACTIONS(1557), + [anon_sym_DOLLARassignable] = ACTIONS(1557), + [anon_sym_BANG] = ACTIONS(1559), + [anon_sym_TILDE] = ACTIONS(1559), + [anon_sym_PLUS_PLUS] = ACTIONS(1559), + [anon_sym_DASH_DASH] = ACTIONS(1559), + [anon_sym_typeid] = ACTIONS(1557), + [anon_sym_LBRACE_PIPE] = ACTIONS(1559), + [anon_sym_void] = ACTIONS(1557), + [anon_sym_bool] = ACTIONS(1557), + [anon_sym_char] = ACTIONS(1557), + [anon_sym_ichar] = ACTIONS(1557), + [anon_sym_short] = ACTIONS(1557), + [anon_sym_ushort] = ACTIONS(1557), + [anon_sym_uint] = ACTIONS(1557), + [anon_sym_long] = ACTIONS(1557), + [anon_sym_ulong] = ACTIONS(1557), + [anon_sym_int128] = ACTIONS(1557), + [anon_sym_uint128] = ACTIONS(1557), + [anon_sym_float] = ACTIONS(1557), + [anon_sym_double] = ACTIONS(1557), + [anon_sym_float16] = ACTIONS(1557), + [anon_sym_bfloat16] = ACTIONS(1557), + [anon_sym_float128] = ACTIONS(1557), + [anon_sym_iptr] = ACTIONS(1557), + [anon_sym_uptr] = ACTIONS(1557), + [anon_sym_isz] = ACTIONS(1557), + [anon_sym_usz] = ACTIONS(1557), + [anon_sym_anyfault] = ACTIONS(1557), + [anon_sym_any] = ACTIONS(1557), + [anon_sym_DOLLARtypeof] = ACTIONS(1557), + [anon_sym_DOLLARtypefrom] = ACTIONS(1557), + [anon_sym_DOLLARvatype] = ACTIONS(1557), + [anon_sym_DOLLARevaltype] = ACTIONS(1557), + [sym_real_literal] = ACTIONS(1559), }, [581] = { [sym_line_comment] = STATE(581), [sym_doc_comment] = STATE(581), [sym_block_comment] = STATE(581), - [sym_ident] = ACTIONS(1612), - [sym_integer_literal] = ACTIONS(1614), - [anon_sym_SQUOTE] = ACTIONS(1614), - [anon_sym_DQUOTE] = ACTIONS(1614), - [anon_sym_BQUOTE] = ACTIONS(1614), - [sym_bytes_literal] = ACTIONS(1614), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1612), - [sym_at_ident] = ACTIONS(1614), - [sym_hash_ident] = ACTIONS(1614), - [sym_type_ident] = ACTIONS(1614), - [sym_ct_type_ident] = ACTIONS(1614), - [sym_const_ident] = ACTIONS(1612), - [sym_builtin] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_static] = ACTIONS(1612), - [anon_sym_tlocal] = ACTIONS(1612), - [anon_sym_SEMI] = ACTIONS(1614), - [anon_sym_fn] = ACTIONS(1612), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_const] = ACTIONS(1612), - [anon_sym_var] = ACTIONS(1612), - [anon_sym_return] = ACTIONS(1612), - [anon_sym_continue] = ACTIONS(1612), - [anon_sym_break] = ACTIONS(1612), - [anon_sym_defer] = ACTIONS(1612), - [anon_sym_assert] = ACTIONS(1612), - [anon_sym_nextcase] = ACTIONS(1612), - [anon_sym_switch] = ACTIONS(1612), - [anon_sym_AMP_AMP] = ACTIONS(1614), - [anon_sym_if] = ACTIONS(1612), - [anon_sym_for] = ACTIONS(1612), - [anon_sym_foreach] = ACTIONS(1612), - [anon_sym_foreach_r] = ACTIONS(1612), - [anon_sym_while] = ACTIONS(1612), - [anon_sym_do] = ACTIONS(1612), - [anon_sym_int] = ACTIONS(1612), - [anon_sym_PLUS] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1612), - [anon_sym_STAR] = ACTIONS(1614), - [anon_sym_asm] = ACTIONS(1612), - [anon_sym_DOLLARassert] = ACTIONS(1612), - [anon_sym_DOLLARerror] = ACTIONS(1612), - [anon_sym_DOLLARecho] = ACTIONS(1612), - [anon_sym_DOLLARif] = ACTIONS(1612), - [anon_sym_DOLLARendif] = ACTIONS(1612), - [anon_sym_DOLLARelse] = ACTIONS(1612), - [anon_sym_DOLLARswitch] = ACTIONS(1612), - [anon_sym_DOLLARfor] = ACTIONS(1612), - [anon_sym_DOLLARforeach] = ACTIONS(1612), - [anon_sym_DOLLARalignof] = ACTIONS(1612), - [anon_sym_DOLLARextnameof] = ACTIONS(1612), - [anon_sym_DOLLARnameof] = ACTIONS(1612), - [anon_sym_DOLLARoffsetof] = ACTIONS(1612), - [anon_sym_DOLLARqnameof] = ACTIONS(1612), - [anon_sym_DOLLARvaconst] = ACTIONS(1612), - [anon_sym_DOLLARvaarg] = ACTIONS(1612), - [anon_sym_DOLLARvaref] = ACTIONS(1612), - [anon_sym_DOLLARvaexpr] = ACTIONS(1612), - [anon_sym_true] = ACTIONS(1612), - [anon_sym_false] = ACTIONS(1612), - [anon_sym_null] = ACTIONS(1612), - [anon_sym_DOLLARvacount] = ACTIONS(1612), - [anon_sym_DOLLARappend] = ACTIONS(1612), - [anon_sym_DOLLARconcat] = ACTIONS(1612), - [anon_sym_DOLLAReval] = ACTIONS(1612), - [anon_sym_DOLLARis_const] = ACTIONS(1612), - [anon_sym_DOLLARsizeof] = ACTIONS(1612), - [anon_sym_DOLLARstringify] = ACTIONS(1612), - [anon_sym_DOLLARand] = ACTIONS(1612), - [anon_sym_DOLLARdefined] = ACTIONS(1612), - [anon_sym_DOLLARembed] = ACTIONS(1612), - [anon_sym_DOLLARor] = ACTIONS(1612), - [anon_sym_DOLLARfeature] = ACTIONS(1612), - [anon_sym_DOLLARassignable] = ACTIONS(1612), - [anon_sym_BANG] = ACTIONS(1614), - [anon_sym_TILDE] = ACTIONS(1614), - [anon_sym_PLUS_PLUS] = ACTIONS(1614), - [anon_sym_DASH_DASH] = ACTIONS(1614), - [anon_sym_typeid] = ACTIONS(1612), - [anon_sym_LBRACE_PIPE] = ACTIONS(1614), - [anon_sym_void] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_ichar] = ACTIONS(1612), - [anon_sym_short] = ACTIONS(1612), - [anon_sym_ushort] = ACTIONS(1612), - [anon_sym_uint] = ACTIONS(1612), - [anon_sym_long] = ACTIONS(1612), - [anon_sym_ulong] = ACTIONS(1612), - [anon_sym_int128] = ACTIONS(1612), - [anon_sym_uint128] = ACTIONS(1612), - [anon_sym_float] = ACTIONS(1612), - [anon_sym_double] = ACTIONS(1612), - [anon_sym_float16] = ACTIONS(1612), - [anon_sym_bfloat16] = ACTIONS(1612), - [anon_sym_float128] = ACTIONS(1612), - [anon_sym_iptr] = ACTIONS(1612), - [anon_sym_uptr] = ACTIONS(1612), - [anon_sym_isz] = ACTIONS(1612), - [anon_sym_usz] = ACTIONS(1612), - [anon_sym_anyfault] = ACTIONS(1612), - [anon_sym_any] = ACTIONS(1612), - [anon_sym_DOLLARtypeof] = ACTIONS(1612), - [anon_sym_DOLLARtypefrom] = ACTIONS(1612), - [anon_sym_DOLLARvatype] = ACTIONS(1612), - [anon_sym_DOLLARevaltype] = ACTIONS(1612), - [sym_real_literal] = ACTIONS(1614), + [sym_ident] = ACTIONS(1485), + [sym_integer_literal] = ACTIONS(1487), + [anon_sym_SQUOTE] = ACTIONS(1487), + [anon_sym_DQUOTE] = ACTIONS(1487), + [anon_sym_BQUOTE] = ACTIONS(1487), + [sym_bytes_literal] = ACTIONS(1487), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1485), + [sym_at_ident] = ACTIONS(1487), + [sym_hash_ident] = ACTIONS(1487), + [sym_type_ident] = ACTIONS(1487), + [sym_ct_type_ident] = ACTIONS(1487), + [sym_const_ident] = ACTIONS(1485), + [sym_builtin] = ACTIONS(1487), + [anon_sym_LPAREN] = ACTIONS(1487), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_static] = ACTIONS(1485), + [anon_sym_tlocal] = ACTIONS(1485), + [anon_sym_SEMI] = ACTIONS(1487), + [anon_sym_fn] = ACTIONS(1485), + [anon_sym_LBRACE] = ACTIONS(1485), + [anon_sym_const] = ACTIONS(1485), + [anon_sym_var] = ACTIONS(1485), + [anon_sym_return] = ACTIONS(1485), + [anon_sym_continue] = ACTIONS(1485), + [anon_sym_break] = ACTIONS(1485), + [anon_sym_defer] = ACTIONS(1485), + [anon_sym_assert] = ACTIONS(1485), + [anon_sym_nextcase] = ACTIONS(1485), + [anon_sym_switch] = ACTIONS(1485), + [anon_sym_AMP_AMP] = ACTIONS(1487), + [anon_sym_if] = ACTIONS(1485), + [anon_sym_for] = ACTIONS(1485), + [anon_sym_foreach] = ACTIONS(1485), + [anon_sym_foreach_r] = ACTIONS(1485), + [anon_sym_while] = ACTIONS(1485), + [anon_sym_do] = ACTIONS(1485), + [anon_sym_int] = ACTIONS(1485), + [anon_sym_PLUS] = ACTIONS(1485), + [anon_sym_DASH] = ACTIONS(1485), + [anon_sym_STAR] = ACTIONS(1487), + [anon_sym_asm] = ACTIONS(1485), + [anon_sym_DOLLARassert] = ACTIONS(1485), + [anon_sym_DOLLARerror] = ACTIONS(1485), + [anon_sym_DOLLARecho] = ACTIONS(1485), + [anon_sym_DOLLARif] = ACTIONS(1485), + [anon_sym_DOLLARswitch] = ACTIONS(1485), + [anon_sym_DOLLARfor] = ACTIONS(1485), + [anon_sym_DOLLARendfor] = ACTIONS(1485), + [anon_sym_DOLLARforeach] = ACTIONS(1485), + [anon_sym_DOLLARalignof] = ACTIONS(1485), + [anon_sym_DOLLARextnameof] = ACTIONS(1485), + [anon_sym_DOLLARnameof] = ACTIONS(1485), + [anon_sym_DOLLARoffsetof] = ACTIONS(1485), + [anon_sym_DOLLARqnameof] = ACTIONS(1485), + [anon_sym_DOLLARvaconst] = ACTIONS(1485), + [anon_sym_DOLLARvaarg] = ACTIONS(1485), + [anon_sym_DOLLARvaref] = ACTIONS(1485), + [anon_sym_DOLLARvaexpr] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(1485), + [anon_sym_false] = ACTIONS(1485), + [anon_sym_null] = ACTIONS(1485), + [anon_sym_DOLLARvacount] = ACTIONS(1485), + [anon_sym_DOLLARappend] = ACTIONS(1485), + [anon_sym_DOLLARconcat] = ACTIONS(1485), + [anon_sym_DOLLAReval] = ACTIONS(1485), + [anon_sym_DOLLARis_const] = ACTIONS(1485), + [anon_sym_DOLLARsizeof] = ACTIONS(1485), + [anon_sym_DOLLARstringify] = ACTIONS(1485), + [anon_sym_DOLLARand] = ACTIONS(1485), + [anon_sym_DOLLARdefined] = ACTIONS(1485), + [anon_sym_DOLLARembed] = ACTIONS(1485), + [anon_sym_DOLLARor] = ACTIONS(1485), + [anon_sym_DOLLARfeature] = ACTIONS(1485), + [anon_sym_DOLLARassignable] = ACTIONS(1485), + [anon_sym_BANG] = ACTIONS(1487), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1487), + [anon_sym_DASH_DASH] = ACTIONS(1487), + [anon_sym_typeid] = ACTIONS(1485), + [anon_sym_LBRACE_PIPE] = ACTIONS(1487), + [anon_sym_void] = ACTIONS(1485), + [anon_sym_bool] = ACTIONS(1485), + [anon_sym_char] = ACTIONS(1485), + [anon_sym_ichar] = ACTIONS(1485), + [anon_sym_short] = ACTIONS(1485), + [anon_sym_ushort] = ACTIONS(1485), + [anon_sym_uint] = ACTIONS(1485), + [anon_sym_long] = ACTIONS(1485), + [anon_sym_ulong] = ACTIONS(1485), + [anon_sym_int128] = ACTIONS(1485), + [anon_sym_uint128] = ACTIONS(1485), + [anon_sym_float] = ACTIONS(1485), + [anon_sym_double] = ACTIONS(1485), + [anon_sym_float16] = ACTIONS(1485), + [anon_sym_bfloat16] = ACTIONS(1485), + [anon_sym_float128] = ACTIONS(1485), + [anon_sym_iptr] = ACTIONS(1485), + [anon_sym_uptr] = ACTIONS(1485), + [anon_sym_isz] = ACTIONS(1485), + [anon_sym_usz] = ACTIONS(1485), + [anon_sym_anyfault] = ACTIONS(1485), + [anon_sym_any] = ACTIONS(1485), + [anon_sym_DOLLARtypeof] = ACTIONS(1485), + [anon_sym_DOLLARtypefrom] = ACTIONS(1485), + [anon_sym_DOLLARvatype] = ACTIONS(1485), + [anon_sym_DOLLARevaltype] = ACTIONS(1485), + [sym_real_literal] = ACTIONS(1487), }, [582] = { [sym_line_comment] = STATE(582), [sym_doc_comment] = STATE(582), [sym_block_comment] = STATE(582), - [sym_ident] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(1622), - [anon_sym_SQUOTE] = ACTIONS(1622), - [anon_sym_DQUOTE] = ACTIONS(1622), - [anon_sym_BQUOTE] = ACTIONS(1622), - [sym_bytes_literal] = ACTIONS(1622), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1620), - [sym_at_ident] = ACTIONS(1622), - [sym_hash_ident] = ACTIONS(1622), - [sym_type_ident] = ACTIONS(1622), - [sym_ct_type_ident] = ACTIONS(1622), - [sym_const_ident] = ACTIONS(1620), - [sym_builtin] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(1622), - [anon_sym_AMP] = ACTIONS(1620), - [anon_sym_static] = ACTIONS(1620), - [anon_sym_tlocal] = ACTIONS(1620), - [anon_sym_SEMI] = ACTIONS(1622), - [anon_sym_fn] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1620), - [anon_sym_const] = ACTIONS(1620), - [anon_sym_var] = ACTIONS(1620), - [anon_sym_return] = ACTIONS(1620), - [anon_sym_continue] = ACTIONS(1620), - [anon_sym_break] = ACTIONS(1620), - [anon_sym_defer] = ACTIONS(1620), - [anon_sym_assert] = ACTIONS(1620), - [anon_sym_nextcase] = ACTIONS(1620), - [anon_sym_switch] = ACTIONS(1620), - [anon_sym_AMP_AMP] = ACTIONS(1622), - [anon_sym_if] = ACTIONS(1620), - [anon_sym_for] = ACTIONS(1620), - [anon_sym_foreach] = ACTIONS(1620), - [anon_sym_foreach_r] = ACTIONS(1620), - [anon_sym_while] = ACTIONS(1620), - [anon_sym_do] = ACTIONS(1620), - [anon_sym_int] = ACTIONS(1620), - [anon_sym_PLUS] = ACTIONS(1620), - [anon_sym_DASH] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1622), - [anon_sym_asm] = ACTIONS(1620), - [anon_sym_DOLLARassert] = ACTIONS(1620), - [anon_sym_DOLLARerror] = ACTIONS(1620), - [anon_sym_DOLLARecho] = ACTIONS(1620), - [anon_sym_DOLLARif] = ACTIONS(1620), - [anon_sym_DOLLARendif] = ACTIONS(1620), - [anon_sym_DOLLARelse] = ACTIONS(1620), - [anon_sym_DOLLARswitch] = ACTIONS(1620), - [anon_sym_DOLLARfor] = ACTIONS(1620), - [anon_sym_DOLLARforeach] = ACTIONS(1620), - [anon_sym_DOLLARalignof] = ACTIONS(1620), - [anon_sym_DOLLARextnameof] = ACTIONS(1620), - [anon_sym_DOLLARnameof] = ACTIONS(1620), - [anon_sym_DOLLARoffsetof] = ACTIONS(1620), - [anon_sym_DOLLARqnameof] = ACTIONS(1620), - [anon_sym_DOLLARvaconst] = ACTIONS(1620), - [anon_sym_DOLLARvaarg] = ACTIONS(1620), - [anon_sym_DOLLARvaref] = ACTIONS(1620), - [anon_sym_DOLLARvaexpr] = ACTIONS(1620), - [anon_sym_true] = ACTIONS(1620), - [anon_sym_false] = ACTIONS(1620), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_DOLLARvacount] = ACTIONS(1620), - [anon_sym_DOLLARappend] = ACTIONS(1620), - [anon_sym_DOLLARconcat] = ACTIONS(1620), - [anon_sym_DOLLAReval] = ACTIONS(1620), - [anon_sym_DOLLARis_const] = ACTIONS(1620), - [anon_sym_DOLLARsizeof] = ACTIONS(1620), - [anon_sym_DOLLARstringify] = ACTIONS(1620), - [anon_sym_DOLLARand] = ACTIONS(1620), - [anon_sym_DOLLARdefined] = ACTIONS(1620), - [anon_sym_DOLLARembed] = ACTIONS(1620), - [anon_sym_DOLLARor] = ACTIONS(1620), - [anon_sym_DOLLARfeature] = ACTIONS(1620), - [anon_sym_DOLLARassignable] = ACTIONS(1620), - [anon_sym_BANG] = ACTIONS(1622), - [anon_sym_TILDE] = ACTIONS(1622), - [anon_sym_PLUS_PLUS] = ACTIONS(1622), - [anon_sym_DASH_DASH] = ACTIONS(1622), - [anon_sym_typeid] = ACTIONS(1620), - [anon_sym_LBRACE_PIPE] = ACTIONS(1622), - [anon_sym_void] = ACTIONS(1620), - [anon_sym_bool] = ACTIONS(1620), - [anon_sym_char] = ACTIONS(1620), - [anon_sym_ichar] = ACTIONS(1620), - [anon_sym_short] = ACTIONS(1620), - [anon_sym_ushort] = ACTIONS(1620), - [anon_sym_uint] = ACTIONS(1620), - [anon_sym_long] = ACTIONS(1620), - [anon_sym_ulong] = ACTIONS(1620), - [anon_sym_int128] = ACTIONS(1620), - [anon_sym_uint128] = ACTIONS(1620), - [anon_sym_float] = ACTIONS(1620), - [anon_sym_double] = ACTIONS(1620), - [anon_sym_float16] = ACTIONS(1620), - [anon_sym_bfloat16] = ACTIONS(1620), - [anon_sym_float128] = ACTIONS(1620), - [anon_sym_iptr] = ACTIONS(1620), - [anon_sym_uptr] = ACTIONS(1620), - [anon_sym_isz] = ACTIONS(1620), - [anon_sym_usz] = ACTIONS(1620), - [anon_sym_anyfault] = ACTIONS(1620), - [anon_sym_any] = ACTIONS(1620), - [anon_sym_DOLLARtypeof] = ACTIONS(1620), - [anon_sym_DOLLARtypefrom] = ACTIONS(1620), - [anon_sym_DOLLARvatype] = ACTIONS(1620), - [anon_sym_DOLLARevaltype] = ACTIONS(1620), - [sym_real_literal] = ACTIONS(1622), + [sym_ident] = ACTIONS(1497), + [sym_integer_literal] = ACTIONS(1499), + [anon_sym_SQUOTE] = ACTIONS(1499), + [anon_sym_DQUOTE] = ACTIONS(1499), + [anon_sym_BQUOTE] = ACTIONS(1499), + [sym_bytes_literal] = ACTIONS(1499), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1497), + [sym_at_ident] = ACTIONS(1499), + [sym_hash_ident] = ACTIONS(1499), + [sym_type_ident] = ACTIONS(1499), + [sym_ct_type_ident] = ACTIONS(1499), + [sym_const_ident] = ACTIONS(1497), + [sym_builtin] = ACTIONS(1499), + [anon_sym_LPAREN] = ACTIONS(1499), + [anon_sym_AMP] = ACTIONS(1497), + [anon_sym_static] = ACTIONS(1497), + [anon_sym_tlocal] = ACTIONS(1497), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_fn] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_const] = ACTIONS(1497), + [anon_sym_var] = ACTIONS(1497), + [anon_sym_return] = ACTIONS(1497), + [anon_sym_continue] = ACTIONS(1497), + [anon_sym_break] = ACTIONS(1497), + [anon_sym_defer] = ACTIONS(1497), + [anon_sym_assert] = ACTIONS(1497), + [anon_sym_nextcase] = ACTIONS(1497), + [anon_sym_switch] = ACTIONS(1497), + [anon_sym_AMP_AMP] = ACTIONS(1499), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_for] = ACTIONS(1497), + [anon_sym_foreach] = ACTIONS(1497), + [anon_sym_foreach_r] = ACTIONS(1497), + [anon_sym_while] = ACTIONS(1497), + [anon_sym_do] = ACTIONS(1497), + [anon_sym_int] = ACTIONS(1497), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_asm] = ACTIONS(1497), + [anon_sym_DOLLARassert] = ACTIONS(1497), + [anon_sym_DOLLARerror] = ACTIONS(1497), + [anon_sym_DOLLARecho] = ACTIONS(1497), + [anon_sym_DOLLARif] = ACTIONS(1497), + [anon_sym_DOLLARswitch] = ACTIONS(1497), + [anon_sym_DOLLARfor] = ACTIONS(1497), + [anon_sym_DOLLARendfor] = ACTIONS(1497), + [anon_sym_DOLLARforeach] = ACTIONS(1497), + [anon_sym_DOLLARalignof] = ACTIONS(1497), + [anon_sym_DOLLARextnameof] = ACTIONS(1497), + [anon_sym_DOLLARnameof] = ACTIONS(1497), + [anon_sym_DOLLARoffsetof] = ACTIONS(1497), + [anon_sym_DOLLARqnameof] = ACTIONS(1497), + [anon_sym_DOLLARvaconst] = ACTIONS(1497), + [anon_sym_DOLLARvaarg] = ACTIONS(1497), + [anon_sym_DOLLARvaref] = ACTIONS(1497), + [anon_sym_DOLLARvaexpr] = ACTIONS(1497), + [anon_sym_true] = ACTIONS(1497), + [anon_sym_false] = ACTIONS(1497), + [anon_sym_null] = ACTIONS(1497), + [anon_sym_DOLLARvacount] = ACTIONS(1497), + [anon_sym_DOLLARappend] = ACTIONS(1497), + [anon_sym_DOLLARconcat] = ACTIONS(1497), + [anon_sym_DOLLAReval] = ACTIONS(1497), + [anon_sym_DOLLARis_const] = ACTIONS(1497), + [anon_sym_DOLLARsizeof] = ACTIONS(1497), + [anon_sym_DOLLARstringify] = ACTIONS(1497), + [anon_sym_DOLLARand] = ACTIONS(1497), + [anon_sym_DOLLARdefined] = ACTIONS(1497), + [anon_sym_DOLLARembed] = ACTIONS(1497), + [anon_sym_DOLLARor] = ACTIONS(1497), + [anon_sym_DOLLARfeature] = ACTIONS(1497), + [anon_sym_DOLLARassignable] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_TILDE] = ACTIONS(1499), + [anon_sym_PLUS_PLUS] = ACTIONS(1499), + [anon_sym_DASH_DASH] = ACTIONS(1499), + [anon_sym_typeid] = ACTIONS(1497), + [anon_sym_LBRACE_PIPE] = ACTIONS(1499), + [anon_sym_void] = ACTIONS(1497), + [anon_sym_bool] = ACTIONS(1497), + [anon_sym_char] = ACTIONS(1497), + [anon_sym_ichar] = ACTIONS(1497), + [anon_sym_short] = ACTIONS(1497), + [anon_sym_ushort] = ACTIONS(1497), + [anon_sym_uint] = ACTIONS(1497), + [anon_sym_long] = ACTIONS(1497), + [anon_sym_ulong] = ACTIONS(1497), + [anon_sym_int128] = ACTIONS(1497), + [anon_sym_uint128] = ACTIONS(1497), + [anon_sym_float] = ACTIONS(1497), + [anon_sym_double] = ACTIONS(1497), + [anon_sym_float16] = ACTIONS(1497), + [anon_sym_bfloat16] = ACTIONS(1497), + [anon_sym_float128] = ACTIONS(1497), + [anon_sym_iptr] = ACTIONS(1497), + [anon_sym_uptr] = ACTIONS(1497), + [anon_sym_isz] = ACTIONS(1497), + [anon_sym_usz] = ACTIONS(1497), + [anon_sym_anyfault] = ACTIONS(1497), + [anon_sym_any] = ACTIONS(1497), + [anon_sym_DOLLARtypeof] = ACTIONS(1497), + [anon_sym_DOLLARtypefrom] = ACTIONS(1497), + [anon_sym_DOLLARvatype] = ACTIONS(1497), + [anon_sym_DOLLARevaltype] = ACTIONS(1497), + [sym_real_literal] = ACTIONS(1499), }, [583] = { [sym_line_comment] = STATE(583), [sym_doc_comment] = STATE(583), [sym_block_comment] = STATE(583), - [sym_ident] = ACTIONS(1644), - [sym_integer_literal] = ACTIONS(1646), - [anon_sym_SQUOTE] = ACTIONS(1646), - [anon_sym_DQUOTE] = ACTIONS(1646), - [anon_sym_BQUOTE] = ACTIONS(1646), - [sym_bytes_literal] = ACTIONS(1646), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1644), - [sym_at_ident] = ACTIONS(1646), - [sym_hash_ident] = ACTIONS(1646), - [sym_type_ident] = ACTIONS(1646), - [sym_ct_type_ident] = ACTIONS(1646), - [sym_const_ident] = ACTIONS(1644), - [sym_builtin] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(1646), - [anon_sym_AMP] = ACTIONS(1644), - [anon_sym_static] = ACTIONS(1644), - [anon_sym_tlocal] = ACTIONS(1644), - [anon_sym_SEMI] = ACTIONS(1646), - [anon_sym_fn] = ACTIONS(1644), - [anon_sym_LBRACE] = ACTIONS(1644), - [anon_sym_const] = ACTIONS(1644), - [anon_sym_var] = ACTIONS(1644), - [anon_sym_return] = ACTIONS(1644), - [anon_sym_continue] = ACTIONS(1644), - [anon_sym_break] = ACTIONS(1644), - [anon_sym_defer] = ACTIONS(1644), - [anon_sym_assert] = ACTIONS(1644), - [anon_sym_nextcase] = ACTIONS(1644), - [anon_sym_switch] = ACTIONS(1644), - [anon_sym_AMP_AMP] = ACTIONS(1646), - [anon_sym_if] = ACTIONS(1644), - [anon_sym_for] = ACTIONS(1644), - [anon_sym_foreach] = ACTIONS(1644), - [anon_sym_foreach_r] = ACTIONS(1644), - [anon_sym_while] = ACTIONS(1644), - [anon_sym_do] = ACTIONS(1644), - [anon_sym_int] = ACTIONS(1644), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_asm] = ACTIONS(1644), - [anon_sym_DOLLARassert] = ACTIONS(1644), - [anon_sym_DOLLARerror] = ACTIONS(1644), - [anon_sym_DOLLARecho] = ACTIONS(1644), - [anon_sym_DOLLARif] = ACTIONS(1644), - [anon_sym_DOLLARendif] = ACTIONS(1644), - [anon_sym_DOLLARelse] = ACTIONS(1644), - [anon_sym_DOLLARswitch] = ACTIONS(1644), - [anon_sym_DOLLARfor] = ACTIONS(1644), - [anon_sym_DOLLARforeach] = ACTIONS(1644), - [anon_sym_DOLLARalignof] = ACTIONS(1644), - [anon_sym_DOLLARextnameof] = ACTIONS(1644), - [anon_sym_DOLLARnameof] = ACTIONS(1644), - [anon_sym_DOLLARoffsetof] = ACTIONS(1644), - [anon_sym_DOLLARqnameof] = ACTIONS(1644), - [anon_sym_DOLLARvaconst] = ACTIONS(1644), - [anon_sym_DOLLARvaarg] = ACTIONS(1644), - [anon_sym_DOLLARvaref] = ACTIONS(1644), - [anon_sym_DOLLARvaexpr] = ACTIONS(1644), - [anon_sym_true] = ACTIONS(1644), - [anon_sym_false] = ACTIONS(1644), - [anon_sym_null] = ACTIONS(1644), - [anon_sym_DOLLARvacount] = ACTIONS(1644), - [anon_sym_DOLLARappend] = ACTIONS(1644), - [anon_sym_DOLLARconcat] = ACTIONS(1644), - [anon_sym_DOLLAReval] = ACTIONS(1644), - [anon_sym_DOLLARis_const] = ACTIONS(1644), - [anon_sym_DOLLARsizeof] = ACTIONS(1644), - [anon_sym_DOLLARstringify] = ACTIONS(1644), - [anon_sym_DOLLARand] = ACTIONS(1644), - [anon_sym_DOLLARdefined] = ACTIONS(1644), - [anon_sym_DOLLARembed] = ACTIONS(1644), - [anon_sym_DOLLARor] = ACTIONS(1644), - [anon_sym_DOLLARfeature] = ACTIONS(1644), - [anon_sym_DOLLARassignable] = ACTIONS(1644), - [anon_sym_BANG] = ACTIONS(1646), - [anon_sym_TILDE] = ACTIONS(1646), - [anon_sym_PLUS_PLUS] = ACTIONS(1646), - [anon_sym_DASH_DASH] = ACTIONS(1646), - [anon_sym_typeid] = ACTIONS(1644), - [anon_sym_LBRACE_PIPE] = ACTIONS(1646), - [anon_sym_void] = ACTIONS(1644), - [anon_sym_bool] = ACTIONS(1644), - [anon_sym_char] = ACTIONS(1644), - [anon_sym_ichar] = ACTIONS(1644), - [anon_sym_short] = ACTIONS(1644), - [anon_sym_ushort] = ACTIONS(1644), - [anon_sym_uint] = ACTIONS(1644), - [anon_sym_long] = ACTIONS(1644), - [anon_sym_ulong] = ACTIONS(1644), - [anon_sym_int128] = ACTIONS(1644), - [anon_sym_uint128] = ACTIONS(1644), - [anon_sym_float] = ACTIONS(1644), - [anon_sym_double] = ACTIONS(1644), - [anon_sym_float16] = ACTIONS(1644), - [anon_sym_bfloat16] = ACTIONS(1644), - [anon_sym_float128] = ACTIONS(1644), - [anon_sym_iptr] = ACTIONS(1644), - [anon_sym_uptr] = ACTIONS(1644), - [anon_sym_isz] = ACTIONS(1644), - [anon_sym_usz] = ACTIONS(1644), - [anon_sym_anyfault] = ACTIONS(1644), - [anon_sym_any] = ACTIONS(1644), - [anon_sym_DOLLARtypeof] = ACTIONS(1644), - [anon_sym_DOLLARtypefrom] = ACTIONS(1644), - [anon_sym_DOLLARvatype] = ACTIONS(1644), - [anon_sym_DOLLARevaltype] = ACTIONS(1644), - [sym_real_literal] = ACTIONS(1646), + [sym_ident] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1507), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1507), + [anon_sym_BQUOTE] = ACTIONS(1507), + [sym_bytes_literal] = ACTIONS(1507), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1505), + [sym_at_ident] = ACTIONS(1507), + [sym_hash_ident] = ACTIONS(1507), + [sym_type_ident] = ACTIONS(1507), + [sym_ct_type_ident] = ACTIONS(1507), + [sym_const_ident] = ACTIONS(1505), + [sym_builtin] = ACTIONS(1507), + [anon_sym_LPAREN] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_static] = ACTIONS(1505), + [anon_sym_tlocal] = ACTIONS(1505), + [anon_sym_SEMI] = ACTIONS(1507), + [anon_sym_fn] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_const] = ACTIONS(1505), + [anon_sym_var] = ACTIONS(1505), + [anon_sym_return] = ACTIONS(1505), + [anon_sym_continue] = ACTIONS(1505), + [anon_sym_break] = ACTIONS(1505), + [anon_sym_defer] = ACTIONS(1505), + [anon_sym_assert] = ACTIONS(1505), + [anon_sym_nextcase] = ACTIONS(1505), + [anon_sym_switch] = ACTIONS(1505), + [anon_sym_AMP_AMP] = ACTIONS(1507), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_for] = ACTIONS(1505), + [anon_sym_foreach] = ACTIONS(1505), + [anon_sym_foreach_r] = ACTIONS(1505), + [anon_sym_while] = ACTIONS(1505), + [anon_sym_do] = ACTIONS(1505), + [anon_sym_int] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1505), + [anon_sym_DASH] = ACTIONS(1505), + [anon_sym_STAR] = ACTIONS(1507), + [anon_sym_asm] = ACTIONS(1505), + [anon_sym_DOLLARassert] = ACTIONS(1505), + [anon_sym_DOLLARerror] = ACTIONS(1505), + [anon_sym_DOLLARecho] = ACTIONS(1505), + [anon_sym_DOLLARif] = ACTIONS(1505), + [anon_sym_DOLLARswitch] = ACTIONS(1505), + [anon_sym_DOLLARfor] = ACTIONS(1505), + [anon_sym_DOLLARendfor] = ACTIONS(1505), + [anon_sym_DOLLARforeach] = ACTIONS(1505), + [anon_sym_DOLLARalignof] = ACTIONS(1505), + [anon_sym_DOLLARextnameof] = ACTIONS(1505), + [anon_sym_DOLLARnameof] = ACTIONS(1505), + [anon_sym_DOLLARoffsetof] = ACTIONS(1505), + [anon_sym_DOLLARqnameof] = ACTIONS(1505), + [anon_sym_DOLLARvaconst] = ACTIONS(1505), + [anon_sym_DOLLARvaarg] = ACTIONS(1505), + [anon_sym_DOLLARvaref] = ACTIONS(1505), + [anon_sym_DOLLARvaexpr] = ACTIONS(1505), + [anon_sym_true] = ACTIONS(1505), + [anon_sym_false] = ACTIONS(1505), + [anon_sym_null] = ACTIONS(1505), + [anon_sym_DOLLARvacount] = ACTIONS(1505), + [anon_sym_DOLLARappend] = ACTIONS(1505), + [anon_sym_DOLLARconcat] = ACTIONS(1505), + [anon_sym_DOLLAReval] = ACTIONS(1505), + [anon_sym_DOLLARis_const] = ACTIONS(1505), + [anon_sym_DOLLARsizeof] = ACTIONS(1505), + [anon_sym_DOLLARstringify] = ACTIONS(1505), + [anon_sym_DOLLARand] = ACTIONS(1505), + [anon_sym_DOLLARdefined] = ACTIONS(1505), + [anon_sym_DOLLARembed] = ACTIONS(1505), + [anon_sym_DOLLARor] = ACTIONS(1505), + [anon_sym_DOLLARfeature] = ACTIONS(1505), + [anon_sym_DOLLARassignable] = ACTIONS(1505), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_TILDE] = ACTIONS(1507), + [anon_sym_PLUS_PLUS] = ACTIONS(1507), + [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_typeid] = ACTIONS(1505), + [anon_sym_LBRACE_PIPE] = ACTIONS(1507), + [anon_sym_void] = ACTIONS(1505), + [anon_sym_bool] = ACTIONS(1505), + [anon_sym_char] = ACTIONS(1505), + [anon_sym_ichar] = ACTIONS(1505), + [anon_sym_short] = ACTIONS(1505), + [anon_sym_ushort] = ACTIONS(1505), + [anon_sym_uint] = ACTIONS(1505), + [anon_sym_long] = ACTIONS(1505), + [anon_sym_ulong] = ACTIONS(1505), + [anon_sym_int128] = ACTIONS(1505), + [anon_sym_uint128] = ACTIONS(1505), + [anon_sym_float] = ACTIONS(1505), + [anon_sym_double] = ACTIONS(1505), + [anon_sym_float16] = ACTIONS(1505), + [anon_sym_bfloat16] = ACTIONS(1505), + [anon_sym_float128] = ACTIONS(1505), + [anon_sym_iptr] = ACTIONS(1505), + [anon_sym_uptr] = ACTIONS(1505), + [anon_sym_isz] = ACTIONS(1505), + [anon_sym_usz] = ACTIONS(1505), + [anon_sym_anyfault] = ACTIONS(1505), + [anon_sym_any] = ACTIONS(1505), + [anon_sym_DOLLARtypeof] = ACTIONS(1505), + [anon_sym_DOLLARtypefrom] = ACTIONS(1505), + [anon_sym_DOLLARvatype] = ACTIONS(1505), + [anon_sym_DOLLARevaltype] = ACTIONS(1505), + [sym_real_literal] = ACTIONS(1507), }, [584] = { [sym_line_comment] = STATE(584), [sym_doc_comment] = STATE(584), [sym_block_comment] = STATE(584), - [sym_ident] = ACTIONS(1548), - [sym_integer_literal] = ACTIONS(1550), - [anon_sym_SQUOTE] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1550), - [anon_sym_BQUOTE] = ACTIONS(1550), - [sym_bytes_literal] = ACTIONS(1550), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1548), - [sym_at_ident] = ACTIONS(1550), - [sym_hash_ident] = ACTIONS(1550), - [sym_type_ident] = ACTIONS(1550), - [sym_ct_type_ident] = ACTIONS(1550), - [sym_const_ident] = ACTIONS(1548), - [sym_builtin] = ACTIONS(1550), - [anon_sym_LPAREN] = ACTIONS(1550), - [anon_sym_AMP] = ACTIONS(1548), - [anon_sym_static] = ACTIONS(1548), - [anon_sym_tlocal] = ACTIONS(1548), - [anon_sym_SEMI] = ACTIONS(1550), - [anon_sym_fn] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(1548), - [anon_sym_const] = ACTIONS(1548), - [anon_sym_var] = ACTIONS(1548), - [anon_sym_return] = ACTIONS(1548), - [anon_sym_continue] = ACTIONS(1548), - [anon_sym_break] = ACTIONS(1548), - [anon_sym_defer] = ACTIONS(1548), - [anon_sym_assert] = ACTIONS(1548), - [anon_sym_nextcase] = ACTIONS(1548), - [anon_sym_switch] = ACTIONS(1548), - [anon_sym_AMP_AMP] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(1548), - [anon_sym_for] = ACTIONS(1548), - [anon_sym_foreach] = ACTIONS(1548), - [anon_sym_foreach_r] = ACTIONS(1548), - [anon_sym_while] = ACTIONS(1548), - [anon_sym_do] = ACTIONS(1548), - [anon_sym_int] = ACTIONS(1548), - [anon_sym_PLUS] = ACTIONS(1548), - [anon_sym_DASH] = ACTIONS(1548), - [anon_sym_STAR] = ACTIONS(1550), - [anon_sym_asm] = ACTIONS(1548), - [anon_sym_DOLLARassert] = ACTIONS(1548), - [anon_sym_DOLLARerror] = ACTIONS(1548), - [anon_sym_DOLLARecho] = ACTIONS(1548), - [anon_sym_DOLLARif] = ACTIONS(1548), - [anon_sym_DOLLARendif] = ACTIONS(1548), - [anon_sym_DOLLARelse] = ACTIONS(1548), - [anon_sym_DOLLARswitch] = ACTIONS(1548), - [anon_sym_DOLLARfor] = ACTIONS(1548), - [anon_sym_DOLLARforeach] = ACTIONS(1548), - [anon_sym_DOLLARalignof] = ACTIONS(1548), - [anon_sym_DOLLARextnameof] = ACTIONS(1548), - [anon_sym_DOLLARnameof] = ACTIONS(1548), - [anon_sym_DOLLARoffsetof] = ACTIONS(1548), - [anon_sym_DOLLARqnameof] = ACTIONS(1548), - [anon_sym_DOLLARvaconst] = ACTIONS(1548), - [anon_sym_DOLLARvaarg] = ACTIONS(1548), - [anon_sym_DOLLARvaref] = ACTIONS(1548), - [anon_sym_DOLLARvaexpr] = ACTIONS(1548), - [anon_sym_true] = ACTIONS(1548), - [anon_sym_false] = ACTIONS(1548), - [anon_sym_null] = ACTIONS(1548), - [anon_sym_DOLLARvacount] = ACTIONS(1548), - [anon_sym_DOLLARappend] = ACTIONS(1548), - [anon_sym_DOLLARconcat] = ACTIONS(1548), - [anon_sym_DOLLAReval] = ACTIONS(1548), - [anon_sym_DOLLARis_const] = ACTIONS(1548), - [anon_sym_DOLLARsizeof] = ACTIONS(1548), - [anon_sym_DOLLARstringify] = ACTIONS(1548), - [anon_sym_DOLLARand] = ACTIONS(1548), - [anon_sym_DOLLARdefined] = ACTIONS(1548), - [anon_sym_DOLLARembed] = ACTIONS(1548), - [anon_sym_DOLLARor] = ACTIONS(1548), - [anon_sym_DOLLARfeature] = ACTIONS(1548), - [anon_sym_DOLLARassignable] = ACTIONS(1548), - [anon_sym_BANG] = ACTIONS(1550), - [anon_sym_TILDE] = ACTIONS(1550), - [anon_sym_PLUS_PLUS] = ACTIONS(1550), - [anon_sym_DASH_DASH] = ACTIONS(1550), - [anon_sym_typeid] = ACTIONS(1548), - [anon_sym_LBRACE_PIPE] = ACTIONS(1550), - [anon_sym_void] = ACTIONS(1548), - [anon_sym_bool] = ACTIONS(1548), - [anon_sym_char] = ACTIONS(1548), - [anon_sym_ichar] = ACTIONS(1548), - [anon_sym_short] = ACTIONS(1548), - [anon_sym_ushort] = ACTIONS(1548), - [anon_sym_uint] = ACTIONS(1548), - [anon_sym_long] = ACTIONS(1548), - [anon_sym_ulong] = ACTIONS(1548), - [anon_sym_int128] = ACTIONS(1548), - [anon_sym_uint128] = ACTIONS(1548), - [anon_sym_float] = ACTIONS(1548), - [anon_sym_double] = ACTIONS(1548), - [anon_sym_float16] = ACTIONS(1548), - [anon_sym_bfloat16] = ACTIONS(1548), - [anon_sym_float128] = ACTIONS(1548), - [anon_sym_iptr] = ACTIONS(1548), - [anon_sym_uptr] = ACTIONS(1548), - [anon_sym_isz] = ACTIONS(1548), - [anon_sym_usz] = ACTIONS(1548), - [anon_sym_anyfault] = ACTIONS(1548), - [anon_sym_any] = ACTIONS(1548), - [anon_sym_DOLLARtypeof] = ACTIONS(1548), - [anon_sym_DOLLARtypefrom] = ACTIONS(1548), - [anon_sym_DOLLARvatype] = ACTIONS(1548), - [anon_sym_DOLLARevaltype] = ACTIONS(1548), - [sym_real_literal] = ACTIONS(1550), + [sym_ident] = ACTIONS(1509), + [sym_integer_literal] = ACTIONS(1511), + [anon_sym_SQUOTE] = ACTIONS(1511), + [anon_sym_DQUOTE] = ACTIONS(1511), + [anon_sym_BQUOTE] = ACTIONS(1511), + [sym_bytes_literal] = ACTIONS(1511), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1509), + [sym_at_ident] = ACTIONS(1511), + [sym_hash_ident] = ACTIONS(1511), + [sym_type_ident] = ACTIONS(1511), + [sym_ct_type_ident] = ACTIONS(1511), + [sym_const_ident] = ACTIONS(1509), + [sym_builtin] = ACTIONS(1511), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_tlocal] = ACTIONS(1509), + [anon_sym_SEMI] = ACTIONS(1511), + [anon_sym_fn] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1509), + [anon_sym_const] = ACTIONS(1509), + [anon_sym_var] = ACTIONS(1509), + [anon_sym_return] = ACTIONS(1509), + [anon_sym_continue] = ACTIONS(1509), + [anon_sym_break] = ACTIONS(1509), + [anon_sym_defer] = ACTIONS(1509), + [anon_sym_assert] = ACTIONS(1509), + [anon_sym_nextcase] = ACTIONS(1509), + [anon_sym_switch] = ACTIONS(1509), + [anon_sym_AMP_AMP] = ACTIONS(1511), + [anon_sym_if] = ACTIONS(1509), + [anon_sym_for] = ACTIONS(1509), + [anon_sym_foreach] = ACTIONS(1509), + [anon_sym_foreach_r] = ACTIONS(1509), + [anon_sym_while] = ACTIONS(1509), + [anon_sym_do] = ACTIONS(1509), + [anon_sym_int] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(1511), + [anon_sym_asm] = ACTIONS(1509), + [anon_sym_DOLLARassert] = ACTIONS(1509), + [anon_sym_DOLLARerror] = ACTIONS(1509), + [anon_sym_DOLLARecho] = ACTIONS(1509), + [anon_sym_DOLLARif] = ACTIONS(1509), + [anon_sym_DOLLARswitch] = ACTIONS(1509), + [anon_sym_DOLLARfor] = ACTIONS(1509), + [anon_sym_DOLLARendfor] = ACTIONS(1509), + [anon_sym_DOLLARforeach] = ACTIONS(1509), + [anon_sym_DOLLARalignof] = ACTIONS(1509), + [anon_sym_DOLLARextnameof] = ACTIONS(1509), + [anon_sym_DOLLARnameof] = ACTIONS(1509), + [anon_sym_DOLLARoffsetof] = ACTIONS(1509), + [anon_sym_DOLLARqnameof] = ACTIONS(1509), + [anon_sym_DOLLARvaconst] = ACTIONS(1509), + [anon_sym_DOLLARvaarg] = ACTIONS(1509), + [anon_sym_DOLLARvaref] = ACTIONS(1509), + [anon_sym_DOLLARvaexpr] = ACTIONS(1509), + [anon_sym_true] = ACTIONS(1509), + [anon_sym_false] = ACTIONS(1509), + [anon_sym_null] = ACTIONS(1509), + [anon_sym_DOLLARvacount] = ACTIONS(1509), + [anon_sym_DOLLARappend] = ACTIONS(1509), + [anon_sym_DOLLARconcat] = ACTIONS(1509), + [anon_sym_DOLLAReval] = ACTIONS(1509), + [anon_sym_DOLLARis_const] = ACTIONS(1509), + [anon_sym_DOLLARsizeof] = ACTIONS(1509), + [anon_sym_DOLLARstringify] = ACTIONS(1509), + [anon_sym_DOLLARand] = ACTIONS(1509), + [anon_sym_DOLLARdefined] = ACTIONS(1509), + [anon_sym_DOLLARembed] = ACTIONS(1509), + [anon_sym_DOLLARor] = ACTIONS(1509), + [anon_sym_DOLLARfeature] = ACTIONS(1509), + [anon_sym_DOLLARassignable] = ACTIONS(1509), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_PLUS_PLUS] = ACTIONS(1511), + [anon_sym_DASH_DASH] = ACTIONS(1511), + [anon_sym_typeid] = ACTIONS(1509), + [anon_sym_LBRACE_PIPE] = ACTIONS(1511), + [anon_sym_void] = ACTIONS(1509), + [anon_sym_bool] = ACTIONS(1509), + [anon_sym_char] = ACTIONS(1509), + [anon_sym_ichar] = ACTIONS(1509), + [anon_sym_short] = ACTIONS(1509), + [anon_sym_ushort] = ACTIONS(1509), + [anon_sym_uint] = ACTIONS(1509), + [anon_sym_long] = ACTIONS(1509), + [anon_sym_ulong] = ACTIONS(1509), + [anon_sym_int128] = ACTIONS(1509), + [anon_sym_uint128] = ACTIONS(1509), + [anon_sym_float] = ACTIONS(1509), + [anon_sym_double] = ACTIONS(1509), + [anon_sym_float16] = ACTIONS(1509), + [anon_sym_bfloat16] = ACTIONS(1509), + [anon_sym_float128] = ACTIONS(1509), + [anon_sym_iptr] = ACTIONS(1509), + [anon_sym_uptr] = ACTIONS(1509), + [anon_sym_isz] = ACTIONS(1509), + [anon_sym_usz] = ACTIONS(1509), + [anon_sym_anyfault] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_DOLLARtypeof] = ACTIONS(1509), + [anon_sym_DOLLARtypefrom] = ACTIONS(1509), + [anon_sym_DOLLARvatype] = ACTIONS(1509), + [anon_sym_DOLLARevaltype] = ACTIONS(1509), + [sym_real_literal] = ACTIONS(1511), }, [585] = { [sym_line_comment] = STATE(585), [sym_doc_comment] = STATE(585), [sym_block_comment] = STATE(585), - [sym_ident] = ACTIONS(1512), - [sym_integer_literal] = ACTIONS(1514), - [anon_sym_SQUOTE] = ACTIONS(1514), - [anon_sym_DQUOTE] = ACTIONS(1514), - [anon_sym_BQUOTE] = ACTIONS(1514), - [sym_bytes_literal] = ACTIONS(1514), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1512), - [sym_at_ident] = ACTIONS(1514), - [sym_hash_ident] = ACTIONS(1514), - [sym_type_ident] = ACTIONS(1514), - [sym_ct_type_ident] = ACTIONS(1514), - [sym_const_ident] = ACTIONS(1512), - [sym_builtin] = ACTIONS(1514), - [anon_sym_LPAREN] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(1512), - [anon_sym_static] = ACTIONS(1512), - [anon_sym_tlocal] = ACTIONS(1512), - [anon_sym_SEMI] = ACTIONS(1514), - [anon_sym_fn] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(1512), - [anon_sym_const] = ACTIONS(1512), - [anon_sym_var] = ACTIONS(1512), - [anon_sym_return] = ACTIONS(1512), - [anon_sym_continue] = ACTIONS(1512), - [anon_sym_break] = ACTIONS(1512), - [anon_sym_defer] = ACTIONS(1512), - [anon_sym_assert] = ACTIONS(1512), - [anon_sym_nextcase] = ACTIONS(1512), - [anon_sym_switch] = ACTIONS(1512), - [anon_sym_AMP_AMP] = ACTIONS(1514), - [anon_sym_if] = ACTIONS(1512), - [anon_sym_for] = ACTIONS(1512), - [anon_sym_foreach] = ACTIONS(1512), - [anon_sym_foreach_r] = ACTIONS(1512), - [anon_sym_while] = ACTIONS(1512), - [anon_sym_do] = ACTIONS(1512), - [anon_sym_int] = ACTIONS(1512), - [anon_sym_PLUS] = ACTIONS(1512), - [anon_sym_DASH] = ACTIONS(1512), - [anon_sym_STAR] = ACTIONS(1514), - [anon_sym_asm] = ACTIONS(1512), - [anon_sym_DOLLARassert] = ACTIONS(1512), - [anon_sym_DOLLARerror] = ACTIONS(1512), - [anon_sym_DOLLARecho] = ACTIONS(1512), - [anon_sym_DOLLARif] = ACTIONS(1512), - [anon_sym_DOLLARendif] = ACTIONS(1512), - [anon_sym_DOLLARelse] = ACTIONS(1512), - [anon_sym_DOLLARswitch] = ACTIONS(1512), - [anon_sym_DOLLARfor] = ACTIONS(1512), - [anon_sym_DOLLARforeach] = ACTIONS(1512), - [anon_sym_DOLLARalignof] = ACTIONS(1512), - [anon_sym_DOLLARextnameof] = ACTIONS(1512), - [anon_sym_DOLLARnameof] = ACTIONS(1512), - [anon_sym_DOLLARoffsetof] = ACTIONS(1512), - [anon_sym_DOLLARqnameof] = ACTIONS(1512), - [anon_sym_DOLLARvaconst] = ACTIONS(1512), - [anon_sym_DOLLARvaarg] = ACTIONS(1512), - [anon_sym_DOLLARvaref] = ACTIONS(1512), - [anon_sym_DOLLARvaexpr] = ACTIONS(1512), - [anon_sym_true] = ACTIONS(1512), - [anon_sym_false] = ACTIONS(1512), - [anon_sym_null] = ACTIONS(1512), - [anon_sym_DOLLARvacount] = ACTIONS(1512), - [anon_sym_DOLLARappend] = ACTIONS(1512), - [anon_sym_DOLLARconcat] = ACTIONS(1512), - [anon_sym_DOLLAReval] = ACTIONS(1512), - [anon_sym_DOLLARis_const] = ACTIONS(1512), - [anon_sym_DOLLARsizeof] = ACTIONS(1512), - [anon_sym_DOLLARstringify] = ACTIONS(1512), - [anon_sym_DOLLARand] = ACTIONS(1512), - [anon_sym_DOLLARdefined] = ACTIONS(1512), - [anon_sym_DOLLARembed] = ACTIONS(1512), - [anon_sym_DOLLARor] = ACTIONS(1512), - [anon_sym_DOLLARfeature] = ACTIONS(1512), - [anon_sym_DOLLARassignable] = ACTIONS(1512), - [anon_sym_BANG] = ACTIONS(1514), - [anon_sym_TILDE] = ACTIONS(1514), - [anon_sym_PLUS_PLUS] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1514), - [anon_sym_typeid] = ACTIONS(1512), - [anon_sym_LBRACE_PIPE] = ACTIONS(1514), - [anon_sym_void] = ACTIONS(1512), - [anon_sym_bool] = ACTIONS(1512), - [anon_sym_char] = ACTIONS(1512), - [anon_sym_ichar] = ACTIONS(1512), - [anon_sym_short] = ACTIONS(1512), - [anon_sym_ushort] = ACTIONS(1512), - [anon_sym_uint] = ACTIONS(1512), - [anon_sym_long] = ACTIONS(1512), - [anon_sym_ulong] = ACTIONS(1512), - [anon_sym_int128] = ACTIONS(1512), - [anon_sym_uint128] = ACTIONS(1512), - [anon_sym_float] = ACTIONS(1512), - [anon_sym_double] = ACTIONS(1512), - [anon_sym_float16] = ACTIONS(1512), - [anon_sym_bfloat16] = ACTIONS(1512), - [anon_sym_float128] = ACTIONS(1512), - [anon_sym_iptr] = ACTIONS(1512), - [anon_sym_uptr] = ACTIONS(1512), - [anon_sym_isz] = ACTIONS(1512), - [anon_sym_usz] = ACTIONS(1512), - [anon_sym_anyfault] = ACTIONS(1512), - [anon_sym_any] = ACTIONS(1512), - [anon_sym_DOLLARtypeof] = ACTIONS(1512), - [anon_sym_DOLLARtypefrom] = ACTIONS(1512), - [anon_sym_DOLLARvatype] = ACTIONS(1512), - [anon_sym_DOLLARevaltype] = ACTIONS(1512), - [sym_real_literal] = ACTIONS(1514), + [sym_ident] = ACTIONS(1533), + [sym_integer_literal] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(1535), + [anon_sym_DQUOTE] = ACTIONS(1535), + [anon_sym_BQUOTE] = ACTIONS(1535), + [sym_bytes_literal] = ACTIONS(1535), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1533), + [sym_at_ident] = ACTIONS(1535), + [sym_hash_ident] = ACTIONS(1535), + [sym_type_ident] = ACTIONS(1535), + [sym_ct_type_ident] = ACTIONS(1535), + [sym_const_ident] = ACTIONS(1533), + [sym_builtin] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_AMP] = ACTIONS(1533), + [anon_sym_static] = ACTIONS(1533), + [anon_sym_tlocal] = ACTIONS(1533), + [anon_sym_SEMI] = ACTIONS(1535), + [anon_sym_fn] = ACTIONS(1533), + [anon_sym_LBRACE] = ACTIONS(1533), + [anon_sym_const] = ACTIONS(1533), + [anon_sym_var] = ACTIONS(1533), + [anon_sym_return] = ACTIONS(1533), + [anon_sym_continue] = ACTIONS(1533), + [anon_sym_break] = ACTIONS(1533), + [anon_sym_defer] = ACTIONS(1533), + [anon_sym_assert] = ACTIONS(1533), + [anon_sym_nextcase] = ACTIONS(1533), + [anon_sym_switch] = ACTIONS(1533), + [anon_sym_AMP_AMP] = ACTIONS(1535), + [anon_sym_if] = ACTIONS(1533), + [anon_sym_for] = ACTIONS(1533), + [anon_sym_foreach] = ACTIONS(1533), + [anon_sym_foreach_r] = ACTIONS(1533), + [anon_sym_while] = ACTIONS(1533), + [anon_sym_do] = ACTIONS(1533), + [anon_sym_int] = ACTIONS(1533), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_STAR] = ACTIONS(1535), + [anon_sym_asm] = ACTIONS(1533), + [anon_sym_DOLLARassert] = ACTIONS(1533), + [anon_sym_DOLLARerror] = ACTIONS(1533), + [anon_sym_DOLLARecho] = ACTIONS(1533), + [anon_sym_DOLLARif] = ACTIONS(1533), + [anon_sym_DOLLARswitch] = ACTIONS(1533), + [anon_sym_DOLLARfor] = ACTIONS(1533), + [anon_sym_DOLLARendfor] = ACTIONS(1533), + [anon_sym_DOLLARforeach] = ACTIONS(1533), + [anon_sym_DOLLARalignof] = ACTIONS(1533), + [anon_sym_DOLLARextnameof] = ACTIONS(1533), + [anon_sym_DOLLARnameof] = ACTIONS(1533), + [anon_sym_DOLLARoffsetof] = ACTIONS(1533), + [anon_sym_DOLLARqnameof] = ACTIONS(1533), + [anon_sym_DOLLARvaconst] = ACTIONS(1533), + [anon_sym_DOLLARvaarg] = ACTIONS(1533), + [anon_sym_DOLLARvaref] = ACTIONS(1533), + [anon_sym_DOLLARvaexpr] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(1533), + [anon_sym_false] = ACTIONS(1533), + [anon_sym_null] = ACTIONS(1533), + [anon_sym_DOLLARvacount] = ACTIONS(1533), + [anon_sym_DOLLARappend] = ACTIONS(1533), + [anon_sym_DOLLARconcat] = ACTIONS(1533), + [anon_sym_DOLLAReval] = ACTIONS(1533), + [anon_sym_DOLLARis_const] = ACTIONS(1533), + [anon_sym_DOLLARsizeof] = ACTIONS(1533), + [anon_sym_DOLLARstringify] = ACTIONS(1533), + [anon_sym_DOLLARand] = ACTIONS(1533), + [anon_sym_DOLLARdefined] = ACTIONS(1533), + [anon_sym_DOLLARembed] = ACTIONS(1533), + [anon_sym_DOLLARor] = ACTIONS(1533), + [anon_sym_DOLLARfeature] = ACTIONS(1533), + [anon_sym_DOLLARassignable] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1535), + [anon_sym_TILDE] = ACTIONS(1535), + [anon_sym_PLUS_PLUS] = ACTIONS(1535), + [anon_sym_DASH_DASH] = ACTIONS(1535), + [anon_sym_typeid] = ACTIONS(1533), + [anon_sym_LBRACE_PIPE] = ACTIONS(1535), + [anon_sym_void] = ACTIONS(1533), + [anon_sym_bool] = ACTIONS(1533), + [anon_sym_char] = ACTIONS(1533), + [anon_sym_ichar] = ACTIONS(1533), + [anon_sym_short] = ACTIONS(1533), + [anon_sym_ushort] = ACTIONS(1533), + [anon_sym_uint] = ACTIONS(1533), + [anon_sym_long] = ACTIONS(1533), + [anon_sym_ulong] = ACTIONS(1533), + [anon_sym_int128] = ACTIONS(1533), + [anon_sym_uint128] = ACTIONS(1533), + [anon_sym_float] = ACTIONS(1533), + [anon_sym_double] = ACTIONS(1533), + [anon_sym_float16] = ACTIONS(1533), + [anon_sym_bfloat16] = ACTIONS(1533), + [anon_sym_float128] = ACTIONS(1533), + [anon_sym_iptr] = ACTIONS(1533), + [anon_sym_uptr] = ACTIONS(1533), + [anon_sym_isz] = ACTIONS(1533), + [anon_sym_usz] = ACTIONS(1533), + [anon_sym_anyfault] = ACTIONS(1533), + [anon_sym_any] = ACTIONS(1533), + [anon_sym_DOLLARtypeof] = ACTIONS(1533), + [anon_sym_DOLLARtypefrom] = ACTIONS(1533), + [anon_sym_DOLLARvatype] = ACTIONS(1533), + [anon_sym_DOLLARevaltype] = ACTIONS(1533), + [sym_real_literal] = ACTIONS(1535), }, [586] = { [sym_line_comment] = STATE(586), [sym_doc_comment] = STATE(586), [sym_block_comment] = STATE(586), - [sym_ident] = ACTIONS(1508), - [sym_integer_literal] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1510), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_BQUOTE] = ACTIONS(1510), - [sym_bytes_literal] = ACTIONS(1510), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1508), - [sym_at_ident] = ACTIONS(1510), - [sym_hash_ident] = ACTIONS(1510), - [sym_type_ident] = ACTIONS(1510), - [sym_ct_type_ident] = ACTIONS(1510), - [sym_const_ident] = ACTIONS(1508), - [sym_builtin] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(1508), - [anon_sym_static] = ACTIONS(1508), - [anon_sym_tlocal] = ACTIONS(1508), - [anon_sym_SEMI] = ACTIONS(1510), - [anon_sym_fn] = ACTIONS(1508), - [anon_sym_LBRACE] = ACTIONS(1508), - [anon_sym_const] = ACTIONS(1508), - [anon_sym_var] = ACTIONS(1508), - [anon_sym_return] = ACTIONS(1508), - [anon_sym_continue] = ACTIONS(1508), - [anon_sym_break] = ACTIONS(1508), - [anon_sym_defer] = ACTIONS(1508), - [anon_sym_assert] = ACTIONS(1508), - [anon_sym_nextcase] = ACTIONS(1508), - [anon_sym_switch] = ACTIONS(1508), - [anon_sym_AMP_AMP] = ACTIONS(1510), - [anon_sym_if] = ACTIONS(1508), - [anon_sym_for] = ACTIONS(1508), - [anon_sym_foreach] = ACTIONS(1508), - [anon_sym_foreach_r] = ACTIONS(1508), - [anon_sym_while] = ACTIONS(1508), - [anon_sym_do] = ACTIONS(1508), - [anon_sym_int] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(1508), - [anon_sym_STAR] = ACTIONS(1510), - [anon_sym_asm] = ACTIONS(1508), - [anon_sym_DOLLARassert] = ACTIONS(1508), - [anon_sym_DOLLARerror] = ACTIONS(1508), - [anon_sym_DOLLARecho] = ACTIONS(1508), - [anon_sym_DOLLARif] = ACTIONS(1508), - [anon_sym_DOLLARendif] = ACTIONS(1508), - [anon_sym_DOLLARelse] = ACTIONS(1508), - [anon_sym_DOLLARswitch] = ACTIONS(1508), - [anon_sym_DOLLARfor] = ACTIONS(1508), - [anon_sym_DOLLARforeach] = ACTIONS(1508), - [anon_sym_DOLLARalignof] = ACTIONS(1508), - [anon_sym_DOLLARextnameof] = ACTIONS(1508), - [anon_sym_DOLLARnameof] = ACTIONS(1508), - [anon_sym_DOLLARoffsetof] = ACTIONS(1508), - [anon_sym_DOLLARqnameof] = ACTIONS(1508), - [anon_sym_DOLLARvaconst] = ACTIONS(1508), - [anon_sym_DOLLARvaarg] = ACTIONS(1508), - [anon_sym_DOLLARvaref] = ACTIONS(1508), - [anon_sym_DOLLARvaexpr] = ACTIONS(1508), - [anon_sym_true] = ACTIONS(1508), - [anon_sym_false] = ACTIONS(1508), - [anon_sym_null] = ACTIONS(1508), - [anon_sym_DOLLARvacount] = ACTIONS(1508), - [anon_sym_DOLLARappend] = ACTIONS(1508), - [anon_sym_DOLLARconcat] = ACTIONS(1508), - [anon_sym_DOLLAReval] = ACTIONS(1508), - [anon_sym_DOLLARis_const] = ACTIONS(1508), - [anon_sym_DOLLARsizeof] = ACTIONS(1508), - [anon_sym_DOLLARstringify] = ACTIONS(1508), - [anon_sym_DOLLARand] = ACTIONS(1508), - [anon_sym_DOLLARdefined] = ACTIONS(1508), - [anon_sym_DOLLARembed] = ACTIONS(1508), - [anon_sym_DOLLARor] = ACTIONS(1508), - [anon_sym_DOLLARfeature] = ACTIONS(1508), - [anon_sym_DOLLARassignable] = ACTIONS(1508), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_PLUS_PLUS] = ACTIONS(1510), - [anon_sym_DASH_DASH] = ACTIONS(1510), - [anon_sym_typeid] = ACTIONS(1508), - [anon_sym_LBRACE_PIPE] = ACTIONS(1510), - [anon_sym_void] = ACTIONS(1508), - [anon_sym_bool] = ACTIONS(1508), - [anon_sym_char] = ACTIONS(1508), - [anon_sym_ichar] = ACTIONS(1508), - [anon_sym_short] = ACTIONS(1508), - [anon_sym_ushort] = ACTIONS(1508), - [anon_sym_uint] = ACTIONS(1508), - [anon_sym_long] = ACTIONS(1508), - [anon_sym_ulong] = ACTIONS(1508), - [anon_sym_int128] = ACTIONS(1508), - [anon_sym_uint128] = ACTIONS(1508), - [anon_sym_float] = ACTIONS(1508), - [anon_sym_double] = ACTIONS(1508), - [anon_sym_float16] = ACTIONS(1508), - [anon_sym_bfloat16] = ACTIONS(1508), - [anon_sym_float128] = ACTIONS(1508), - [anon_sym_iptr] = ACTIONS(1508), - [anon_sym_uptr] = ACTIONS(1508), - [anon_sym_isz] = ACTIONS(1508), - [anon_sym_usz] = ACTIONS(1508), - [anon_sym_anyfault] = ACTIONS(1508), - [anon_sym_any] = ACTIONS(1508), - [anon_sym_DOLLARtypeof] = ACTIONS(1508), - [anon_sym_DOLLARtypefrom] = ACTIONS(1508), - [anon_sym_DOLLARvatype] = ACTIONS(1508), - [anon_sym_DOLLARevaltype] = ACTIONS(1508), - [sym_real_literal] = ACTIONS(1510), + [sym_ident] = ACTIONS(1573), + [sym_integer_literal] = ACTIONS(1575), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_DQUOTE] = ACTIONS(1575), + [anon_sym_BQUOTE] = ACTIONS(1575), + [sym_bytes_literal] = ACTIONS(1575), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1573), + [sym_at_ident] = ACTIONS(1575), + [sym_hash_ident] = ACTIONS(1575), + [sym_type_ident] = ACTIONS(1575), + [sym_ct_type_ident] = ACTIONS(1575), + [sym_const_ident] = ACTIONS(1573), + [sym_builtin] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(1575), + [anon_sym_AMP] = ACTIONS(1573), + [anon_sym_static] = ACTIONS(1573), + [anon_sym_tlocal] = ACTIONS(1573), + [anon_sym_SEMI] = ACTIONS(1575), + [anon_sym_fn] = ACTIONS(1573), + [anon_sym_LBRACE] = ACTIONS(1573), + [anon_sym_const] = ACTIONS(1573), + [anon_sym_var] = ACTIONS(1573), + [anon_sym_return] = ACTIONS(1573), + [anon_sym_continue] = ACTIONS(1573), + [anon_sym_break] = ACTIONS(1573), + [anon_sym_defer] = ACTIONS(1573), + [anon_sym_assert] = ACTIONS(1573), + [anon_sym_nextcase] = ACTIONS(1573), + [anon_sym_switch] = ACTIONS(1573), + [anon_sym_AMP_AMP] = ACTIONS(1575), + [anon_sym_if] = ACTIONS(1573), + [anon_sym_for] = ACTIONS(1573), + [anon_sym_foreach] = ACTIONS(1573), + [anon_sym_foreach_r] = ACTIONS(1573), + [anon_sym_while] = ACTIONS(1573), + [anon_sym_do] = ACTIONS(1573), + [anon_sym_int] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1573), + [anon_sym_DASH] = ACTIONS(1573), + [anon_sym_STAR] = ACTIONS(1575), + [anon_sym_asm] = ACTIONS(1573), + [anon_sym_DOLLARassert] = ACTIONS(1573), + [anon_sym_DOLLARerror] = ACTIONS(1573), + [anon_sym_DOLLARecho] = ACTIONS(1573), + [anon_sym_DOLLARif] = ACTIONS(1573), + [anon_sym_DOLLARswitch] = ACTIONS(1573), + [anon_sym_DOLLARfor] = ACTIONS(1573), + [anon_sym_DOLLARendfor] = ACTIONS(1573), + [anon_sym_DOLLARforeach] = ACTIONS(1573), + [anon_sym_DOLLARalignof] = ACTIONS(1573), + [anon_sym_DOLLARextnameof] = ACTIONS(1573), + [anon_sym_DOLLARnameof] = ACTIONS(1573), + [anon_sym_DOLLARoffsetof] = ACTIONS(1573), + [anon_sym_DOLLARqnameof] = ACTIONS(1573), + [anon_sym_DOLLARvaconst] = ACTIONS(1573), + [anon_sym_DOLLARvaarg] = ACTIONS(1573), + [anon_sym_DOLLARvaref] = ACTIONS(1573), + [anon_sym_DOLLARvaexpr] = ACTIONS(1573), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [anon_sym_null] = ACTIONS(1573), + [anon_sym_DOLLARvacount] = ACTIONS(1573), + [anon_sym_DOLLARappend] = ACTIONS(1573), + [anon_sym_DOLLARconcat] = ACTIONS(1573), + [anon_sym_DOLLAReval] = ACTIONS(1573), + [anon_sym_DOLLARis_const] = ACTIONS(1573), + [anon_sym_DOLLARsizeof] = ACTIONS(1573), + [anon_sym_DOLLARstringify] = ACTIONS(1573), + [anon_sym_DOLLARand] = ACTIONS(1573), + [anon_sym_DOLLARdefined] = ACTIONS(1573), + [anon_sym_DOLLARembed] = ACTIONS(1573), + [anon_sym_DOLLARor] = ACTIONS(1573), + [anon_sym_DOLLARfeature] = ACTIONS(1573), + [anon_sym_DOLLARassignable] = ACTIONS(1573), + [anon_sym_BANG] = ACTIONS(1575), + [anon_sym_TILDE] = ACTIONS(1575), + [anon_sym_PLUS_PLUS] = ACTIONS(1575), + [anon_sym_DASH_DASH] = ACTIONS(1575), + [anon_sym_typeid] = ACTIONS(1573), + [anon_sym_LBRACE_PIPE] = ACTIONS(1575), + [anon_sym_void] = ACTIONS(1573), + [anon_sym_bool] = ACTIONS(1573), + [anon_sym_char] = ACTIONS(1573), + [anon_sym_ichar] = ACTIONS(1573), + [anon_sym_short] = ACTIONS(1573), + [anon_sym_ushort] = ACTIONS(1573), + [anon_sym_uint] = ACTIONS(1573), + [anon_sym_long] = ACTIONS(1573), + [anon_sym_ulong] = ACTIONS(1573), + [anon_sym_int128] = ACTIONS(1573), + [anon_sym_uint128] = ACTIONS(1573), + [anon_sym_float] = ACTIONS(1573), + [anon_sym_double] = ACTIONS(1573), + [anon_sym_float16] = ACTIONS(1573), + [anon_sym_bfloat16] = ACTIONS(1573), + [anon_sym_float128] = ACTIONS(1573), + [anon_sym_iptr] = ACTIONS(1573), + [anon_sym_uptr] = ACTIONS(1573), + [anon_sym_isz] = ACTIONS(1573), + [anon_sym_usz] = ACTIONS(1573), + [anon_sym_anyfault] = ACTIONS(1573), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_DOLLARtypeof] = ACTIONS(1573), + [anon_sym_DOLLARtypefrom] = ACTIONS(1573), + [anon_sym_DOLLARvatype] = ACTIONS(1573), + [anon_sym_DOLLARevaltype] = ACTIONS(1573), + [sym_real_literal] = ACTIONS(1575), }, [587] = { [sym_line_comment] = STATE(587), [sym_doc_comment] = STATE(587), [sym_block_comment] = STATE(587), - [sym_ident] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1490), - [anon_sym_SQUOTE] = ACTIONS(1490), - [anon_sym_DQUOTE] = ACTIONS(1490), - [anon_sym_BQUOTE] = ACTIONS(1490), - [sym_bytes_literal] = ACTIONS(1490), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1488), - [sym_at_ident] = ACTIONS(1490), - [sym_hash_ident] = ACTIONS(1490), - [sym_type_ident] = ACTIONS(1490), - [sym_ct_type_ident] = ACTIONS(1490), - [sym_const_ident] = ACTIONS(1488), - [sym_builtin] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1490), - [anon_sym_AMP] = ACTIONS(1488), - [anon_sym_static] = ACTIONS(1488), - [anon_sym_tlocal] = ACTIONS(1488), - [anon_sym_SEMI] = ACTIONS(1490), - [anon_sym_fn] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_const] = ACTIONS(1488), - [anon_sym_var] = ACTIONS(1488), - [anon_sym_return] = ACTIONS(1488), - [anon_sym_continue] = ACTIONS(1488), - [anon_sym_break] = ACTIONS(1488), - [anon_sym_defer] = ACTIONS(1488), - [anon_sym_assert] = ACTIONS(1488), - [anon_sym_nextcase] = ACTIONS(1488), - [anon_sym_switch] = ACTIONS(1488), - [anon_sym_AMP_AMP] = ACTIONS(1490), - [anon_sym_if] = ACTIONS(1488), - [anon_sym_for] = ACTIONS(1488), - [anon_sym_foreach] = ACTIONS(1488), - [anon_sym_foreach_r] = ACTIONS(1488), - [anon_sym_while] = ACTIONS(1488), - [anon_sym_do] = ACTIONS(1488), - [anon_sym_int] = ACTIONS(1488), - [anon_sym_PLUS] = ACTIONS(1488), - [anon_sym_DASH] = ACTIONS(1488), - [anon_sym_STAR] = ACTIONS(1490), - [anon_sym_asm] = ACTIONS(1488), - [anon_sym_DOLLARassert] = ACTIONS(1488), - [anon_sym_DOLLARerror] = ACTIONS(1488), - [anon_sym_DOLLARecho] = ACTIONS(1488), - [anon_sym_DOLLARif] = ACTIONS(1488), - [anon_sym_DOLLARendif] = ACTIONS(1488), - [anon_sym_DOLLARelse] = ACTIONS(1488), - [anon_sym_DOLLARswitch] = ACTIONS(1488), - [anon_sym_DOLLARfor] = ACTIONS(1488), - [anon_sym_DOLLARforeach] = ACTIONS(1488), - [anon_sym_DOLLARalignof] = ACTIONS(1488), - [anon_sym_DOLLARextnameof] = ACTIONS(1488), - [anon_sym_DOLLARnameof] = ACTIONS(1488), - [anon_sym_DOLLARoffsetof] = ACTIONS(1488), - [anon_sym_DOLLARqnameof] = ACTIONS(1488), - [anon_sym_DOLLARvaconst] = ACTIONS(1488), - [anon_sym_DOLLARvaarg] = ACTIONS(1488), - [anon_sym_DOLLARvaref] = ACTIONS(1488), - [anon_sym_DOLLARvaexpr] = ACTIONS(1488), - [anon_sym_true] = ACTIONS(1488), - [anon_sym_false] = ACTIONS(1488), - [anon_sym_null] = ACTIONS(1488), - [anon_sym_DOLLARvacount] = ACTIONS(1488), - [anon_sym_DOLLARappend] = ACTIONS(1488), - [anon_sym_DOLLARconcat] = ACTIONS(1488), - [anon_sym_DOLLAReval] = ACTIONS(1488), - [anon_sym_DOLLARis_const] = ACTIONS(1488), - [anon_sym_DOLLARsizeof] = ACTIONS(1488), - [anon_sym_DOLLARstringify] = ACTIONS(1488), - [anon_sym_DOLLARand] = ACTIONS(1488), - [anon_sym_DOLLARdefined] = ACTIONS(1488), - [anon_sym_DOLLARembed] = ACTIONS(1488), - [anon_sym_DOLLARor] = ACTIONS(1488), - [anon_sym_DOLLARfeature] = ACTIONS(1488), - [anon_sym_DOLLARassignable] = ACTIONS(1488), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1490), - [anon_sym_DASH_DASH] = ACTIONS(1490), - [anon_sym_typeid] = ACTIONS(1488), - [anon_sym_LBRACE_PIPE] = ACTIONS(1490), - [anon_sym_void] = ACTIONS(1488), - [anon_sym_bool] = ACTIONS(1488), - [anon_sym_char] = ACTIONS(1488), - [anon_sym_ichar] = ACTIONS(1488), - [anon_sym_short] = ACTIONS(1488), - [anon_sym_ushort] = ACTIONS(1488), - [anon_sym_uint] = ACTIONS(1488), - [anon_sym_long] = ACTIONS(1488), - [anon_sym_ulong] = ACTIONS(1488), - [anon_sym_int128] = ACTIONS(1488), - [anon_sym_uint128] = ACTIONS(1488), - [anon_sym_float] = ACTIONS(1488), - [anon_sym_double] = ACTIONS(1488), - [anon_sym_float16] = ACTIONS(1488), - [anon_sym_bfloat16] = ACTIONS(1488), - [anon_sym_float128] = ACTIONS(1488), - [anon_sym_iptr] = ACTIONS(1488), - [anon_sym_uptr] = ACTIONS(1488), - [anon_sym_isz] = ACTIONS(1488), - [anon_sym_usz] = ACTIONS(1488), - [anon_sym_anyfault] = ACTIONS(1488), - [anon_sym_any] = ACTIONS(1488), - [anon_sym_DOLLARtypeof] = ACTIONS(1488), - [anon_sym_DOLLARtypefrom] = ACTIONS(1488), - [anon_sym_DOLLARvatype] = ACTIONS(1488), - [anon_sym_DOLLARevaltype] = ACTIONS(1488), - [sym_real_literal] = ACTIONS(1490), + [sym_ident] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1447), + [anon_sym_SQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [anon_sym_BQUOTE] = ACTIONS(1447), + [sym_bytes_literal] = ACTIONS(1447), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1445), + [sym_at_ident] = ACTIONS(1447), + [sym_hash_ident] = ACTIONS(1447), + [sym_type_ident] = ACTIONS(1447), + [sym_ct_type_ident] = ACTIONS(1447), + [sym_const_ident] = ACTIONS(1445), + [sym_builtin] = ACTIONS(1447), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_AMP] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_tlocal] = ACTIONS(1445), + [anon_sym_SEMI] = ACTIONS(1447), + [anon_sym_fn] = ACTIONS(1445), + [anon_sym_LBRACE] = ACTIONS(1445), + [anon_sym_const] = ACTIONS(1445), + [anon_sym_var] = ACTIONS(1445), + [anon_sym_return] = ACTIONS(1445), + [anon_sym_continue] = ACTIONS(1445), + [anon_sym_break] = ACTIONS(1445), + [anon_sym_defer] = ACTIONS(1445), + [anon_sym_assert] = ACTIONS(1445), + [anon_sym_nextcase] = ACTIONS(1445), + [anon_sym_switch] = ACTIONS(1445), + [anon_sym_AMP_AMP] = ACTIONS(1447), + [anon_sym_if] = ACTIONS(1445), + [anon_sym_for] = ACTIONS(1445), + [anon_sym_foreach] = ACTIONS(1445), + [anon_sym_foreach_r] = ACTIONS(1445), + [anon_sym_while] = ACTIONS(1445), + [anon_sym_do] = ACTIONS(1445), + [anon_sym_int] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_STAR] = ACTIONS(1447), + [anon_sym_asm] = ACTIONS(1445), + [anon_sym_DOLLARassert] = ACTIONS(1445), + [anon_sym_DOLLARerror] = ACTIONS(1445), + [anon_sym_DOLLARecho] = ACTIONS(1445), + [anon_sym_DOLLARif] = ACTIONS(1445), + [anon_sym_DOLLARswitch] = ACTIONS(1445), + [anon_sym_DOLLARfor] = ACTIONS(1445), + [anon_sym_DOLLARendfor] = ACTIONS(1445), + [anon_sym_DOLLARforeach] = ACTIONS(1445), + [anon_sym_DOLLARalignof] = ACTIONS(1445), + [anon_sym_DOLLARextnameof] = ACTIONS(1445), + [anon_sym_DOLLARnameof] = ACTIONS(1445), + [anon_sym_DOLLARoffsetof] = ACTIONS(1445), + [anon_sym_DOLLARqnameof] = ACTIONS(1445), + [anon_sym_DOLLARvaconst] = ACTIONS(1445), + [anon_sym_DOLLARvaarg] = ACTIONS(1445), + [anon_sym_DOLLARvaref] = ACTIONS(1445), + [anon_sym_DOLLARvaexpr] = ACTIONS(1445), + [anon_sym_true] = ACTIONS(1445), + [anon_sym_false] = ACTIONS(1445), + [anon_sym_null] = ACTIONS(1445), + [anon_sym_DOLLARvacount] = ACTIONS(1445), + [anon_sym_DOLLARappend] = ACTIONS(1445), + [anon_sym_DOLLARconcat] = ACTIONS(1445), + [anon_sym_DOLLAReval] = ACTIONS(1445), + [anon_sym_DOLLARis_const] = ACTIONS(1445), + [anon_sym_DOLLARsizeof] = ACTIONS(1445), + [anon_sym_DOLLARstringify] = ACTIONS(1445), + [anon_sym_DOLLARand] = ACTIONS(1445), + [anon_sym_DOLLARdefined] = ACTIONS(1445), + [anon_sym_DOLLARembed] = ACTIONS(1445), + [anon_sym_DOLLARor] = ACTIONS(1445), + [anon_sym_DOLLARfeature] = ACTIONS(1445), + [anon_sym_DOLLARassignable] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(1447), + [anon_sym_TILDE] = ACTIONS(1447), + [anon_sym_PLUS_PLUS] = ACTIONS(1447), + [anon_sym_DASH_DASH] = ACTIONS(1447), + [anon_sym_typeid] = ACTIONS(1445), + [anon_sym_LBRACE_PIPE] = ACTIONS(1447), + [anon_sym_void] = ACTIONS(1445), + [anon_sym_bool] = ACTIONS(1445), + [anon_sym_char] = ACTIONS(1445), + [anon_sym_ichar] = ACTIONS(1445), + [anon_sym_short] = ACTIONS(1445), + [anon_sym_ushort] = ACTIONS(1445), + [anon_sym_uint] = ACTIONS(1445), + [anon_sym_long] = ACTIONS(1445), + [anon_sym_ulong] = ACTIONS(1445), + [anon_sym_int128] = ACTIONS(1445), + [anon_sym_uint128] = ACTIONS(1445), + [anon_sym_float] = ACTIONS(1445), + [anon_sym_double] = ACTIONS(1445), + [anon_sym_float16] = ACTIONS(1445), + [anon_sym_bfloat16] = ACTIONS(1445), + [anon_sym_float128] = ACTIONS(1445), + [anon_sym_iptr] = ACTIONS(1445), + [anon_sym_uptr] = ACTIONS(1445), + [anon_sym_isz] = ACTIONS(1445), + [anon_sym_usz] = ACTIONS(1445), + [anon_sym_anyfault] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_DOLLARtypeof] = ACTIONS(1445), + [anon_sym_DOLLARtypefrom] = ACTIONS(1445), + [anon_sym_DOLLARvatype] = ACTIONS(1445), + [anon_sym_DOLLARevaltype] = ACTIONS(1445), + [sym_real_literal] = ACTIONS(1447), }, [588] = { [sym_line_comment] = STATE(588), [sym_doc_comment] = STATE(588), [sym_block_comment] = STATE(588), - [sym_ident] = ACTIONS(1484), - [sym_integer_literal] = ACTIONS(1486), - [anon_sym_SQUOTE] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(1486), - [anon_sym_BQUOTE] = ACTIONS(1486), - [sym_bytes_literal] = ACTIONS(1486), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1484), - [sym_at_ident] = ACTIONS(1486), - [sym_hash_ident] = ACTIONS(1486), - [sym_type_ident] = ACTIONS(1486), - [sym_ct_type_ident] = ACTIONS(1486), - [sym_const_ident] = ACTIONS(1484), - [sym_builtin] = ACTIONS(1486), - [anon_sym_LPAREN] = ACTIONS(1486), - [anon_sym_AMP] = ACTIONS(1484), - [anon_sym_static] = ACTIONS(1484), - [anon_sym_tlocal] = ACTIONS(1484), - [anon_sym_SEMI] = ACTIONS(1486), - [anon_sym_fn] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1484), - [anon_sym_const] = ACTIONS(1484), - [anon_sym_var] = ACTIONS(1484), - [anon_sym_return] = ACTIONS(1484), - [anon_sym_continue] = ACTIONS(1484), - [anon_sym_break] = ACTIONS(1484), - [anon_sym_defer] = ACTIONS(1484), - [anon_sym_assert] = ACTIONS(1484), - [anon_sym_nextcase] = ACTIONS(1484), - [anon_sym_switch] = ACTIONS(1484), - [anon_sym_AMP_AMP] = ACTIONS(1486), - [anon_sym_if] = ACTIONS(1484), - [anon_sym_for] = ACTIONS(1484), - [anon_sym_foreach] = ACTIONS(1484), - [anon_sym_foreach_r] = ACTIONS(1484), - [anon_sym_while] = ACTIONS(1484), - [anon_sym_do] = ACTIONS(1484), - [anon_sym_int] = ACTIONS(1484), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_DASH] = ACTIONS(1484), - [anon_sym_STAR] = ACTIONS(1486), - [anon_sym_asm] = ACTIONS(1484), - [anon_sym_DOLLARassert] = ACTIONS(1484), - [anon_sym_DOLLARerror] = ACTIONS(1484), - [anon_sym_DOLLARecho] = ACTIONS(1484), - [anon_sym_DOLLARif] = ACTIONS(1484), - [anon_sym_DOLLARendif] = ACTIONS(1484), - [anon_sym_DOLLARelse] = ACTIONS(1484), - [anon_sym_DOLLARswitch] = ACTIONS(1484), - [anon_sym_DOLLARfor] = ACTIONS(1484), - [anon_sym_DOLLARforeach] = ACTIONS(1484), - [anon_sym_DOLLARalignof] = ACTIONS(1484), - [anon_sym_DOLLARextnameof] = ACTIONS(1484), - [anon_sym_DOLLARnameof] = ACTIONS(1484), - [anon_sym_DOLLARoffsetof] = ACTIONS(1484), - [anon_sym_DOLLARqnameof] = ACTIONS(1484), - [anon_sym_DOLLARvaconst] = ACTIONS(1484), - [anon_sym_DOLLARvaarg] = ACTIONS(1484), - [anon_sym_DOLLARvaref] = ACTIONS(1484), - [anon_sym_DOLLARvaexpr] = ACTIONS(1484), - [anon_sym_true] = ACTIONS(1484), - [anon_sym_false] = ACTIONS(1484), - [anon_sym_null] = ACTIONS(1484), - [anon_sym_DOLLARvacount] = ACTIONS(1484), - [anon_sym_DOLLARappend] = ACTIONS(1484), - [anon_sym_DOLLARconcat] = ACTIONS(1484), - [anon_sym_DOLLAReval] = ACTIONS(1484), - [anon_sym_DOLLARis_const] = ACTIONS(1484), - [anon_sym_DOLLARsizeof] = ACTIONS(1484), - [anon_sym_DOLLARstringify] = ACTIONS(1484), - [anon_sym_DOLLARand] = ACTIONS(1484), - [anon_sym_DOLLARdefined] = ACTIONS(1484), - [anon_sym_DOLLARembed] = ACTIONS(1484), - [anon_sym_DOLLARor] = ACTIONS(1484), - [anon_sym_DOLLARfeature] = ACTIONS(1484), - [anon_sym_DOLLARassignable] = ACTIONS(1484), - [anon_sym_BANG] = ACTIONS(1486), - [anon_sym_TILDE] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_typeid] = ACTIONS(1484), - [anon_sym_LBRACE_PIPE] = ACTIONS(1486), - [anon_sym_void] = ACTIONS(1484), - [anon_sym_bool] = ACTIONS(1484), - [anon_sym_char] = ACTIONS(1484), - [anon_sym_ichar] = ACTIONS(1484), - [anon_sym_short] = ACTIONS(1484), - [anon_sym_ushort] = ACTIONS(1484), - [anon_sym_uint] = ACTIONS(1484), - [anon_sym_long] = ACTIONS(1484), - [anon_sym_ulong] = ACTIONS(1484), - [anon_sym_int128] = ACTIONS(1484), - [anon_sym_uint128] = ACTIONS(1484), - [anon_sym_float] = ACTIONS(1484), - [anon_sym_double] = ACTIONS(1484), - [anon_sym_float16] = ACTIONS(1484), - [anon_sym_bfloat16] = ACTIONS(1484), - [anon_sym_float128] = ACTIONS(1484), - [anon_sym_iptr] = ACTIONS(1484), - [anon_sym_uptr] = ACTIONS(1484), - [anon_sym_isz] = ACTIONS(1484), - [anon_sym_usz] = ACTIONS(1484), - [anon_sym_anyfault] = ACTIONS(1484), - [anon_sym_any] = ACTIONS(1484), - [anon_sym_DOLLARtypeof] = ACTIONS(1484), - [anon_sym_DOLLARtypefrom] = ACTIONS(1484), - [anon_sym_DOLLARvatype] = ACTIONS(1484), - [anon_sym_DOLLARevaltype] = ACTIONS(1484), - [sym_real_literal] = ACTIONS(1486), + [sym_ident] = ACTIONS(1589), + [sym_integer_literal] = ACTIONS(1591), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1591), + [anon_sym_BQUOTE] = ACTIONS(1591), + [sym_bytes_literal] = ACTIONS(1591), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1589), + [sym_at_ident] = ACTIONS(1591), + [sym_hash_ident] = ACTIONS(1591), + [sym_type_ident] = ACTIONS(1591), + [sym_ct_type_ident] = ACTIONS(1591), + [sym_const_ident] = ACTIONS(1589), + [sym_builtin] = ACTIONS(1591), + [anon_sym_LPAREN] = ACTIONS(1591), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_static] = ACTIONS(1589), + [anon_sym_tlocal] = ACTIONS(1589), + [anon_sym_SEMI] = ACTIONS(1591), + [anon_sym_fn] = ACTIONS(1589), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_const] = ACTIONS(1589), + [anon_sym_var] = ACTIONS(1589), + [anon_sym_return] = ACTIONS(1589), + [anon_sym_continue] = ACTIONS(1589), + [anon_sym_break] = ACTIONS(1589), + [anon_sym_defer] = ACTIONS(1589), + [anon_sym_assert] = ACTIONS(1589), + [anon_sym_nextcase] = ACTIONS(1589), + [anon_sym_switch] = ACTIONS(1589), + [anon_sym_AMP_AMP] = ACTIONS(1591), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_for] = ACTIONS(1589), + [anon_sym_foreach] = ACTIONS(1589), + [anon_sym_foreach_r] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1589), + [anon_sym_do] = ACTIONS(1589), + [anon_sym_int] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1589), + [anon_sym_STAR] = ACTIONS(1591), + [anon_sym_asm] = ACTIONS(1589), + [anon_sym_DOLLARassert] = ACTIONS(1589), + [anon_sym_DOLLARerror] = ACTIONS(1589), + [anon_sym_DOLLARecho] = ACTIONS(1589), + [anon_sym_DOLLARif] = ACTIONS(1589), + [anon_sym_DOLLARswitch] = ACTIONS(1589), + [anon_sym_DOLLARfor] = ACTIONS(1589), + [anon_sym_DOLLARendfor] = ACTIONS(1589), + [anon_sym_DOLLARforeach] = ACTIONS(1589), + [anon_sym_DOLLARalignof] = ACTIONS(1589), + [anon_sym_DOLLARextnameof] = ACTIONS(1589), + [anon_sym_DOLLARnameof] = ACTIONS(1589), + [anon_sym_DOLLARoffsetof] = ACTIONS(1589), + [anon_sym_DOLLARqnameof] = ACTIONS(1589), + [anon_sym_DOLLARvaconst] = ACTIONS(1589), + [anon_sym_DOLLARvaarg] = ACTIONS(1589), + [anon_sym_DOLLARvaref] = ACTIONS(1589), + [anon_sym_DOLLARvaexpr] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1589), + [anon_sym_false] = ACTIONS(1589), + [anon_sym_null] = ACTIONS(1589), + [anon_sym_DOLLARvacount] = ACTIONS(1589), + [anon_sym_DOLLARappend] = ACTIONS(1589), + [anon_sym_DOLLARconcat] = ACTIONS(1589), + [anon_sym_DOLLAReval] = ACTIONS(1589), + [anon_sym_DOLLARis_const] = ACTIONS(1589), + [anon_sym_DOLLARsizeof] = ACTIONS(1589), + [anon_sym_DOLLARstringify] = ACTIONS(1589), + [anon_sym_DOLLARand] = ACTIONS(1589), + [anon_sym_DOLLARdefined] = ACTIONS(1589), + [anon_sym_DOLLARembed] = ACTIONS(1589), + [anon_sym_DOLLARor] = ACTIONS(1589), + [anon_sym_DOLLARfeature] = ACTIONS(1589), + [anon_sym_DOLLARassignable] = ACTIONS(1589), + [anon_sym_BANG] = ACTIONS(1591), + [anon_sym_TILDE] = ACTIONS(1591), + [anon_sym_PLUS_PLUS] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1591), + [anon_sym_typeid] = ACTIONS(1589), + [anon_sym_LBRACE_PIPE] = ACTIONS(1591), + [anon_sym_void] = ACTIONS(1589), + [anon_sym_bool] = ACTIONS(1589), + [anon_sym_char] = ACTIONS(1589), + [anon_sym_ichar] = ACTIONS(1589), + [anon_sym_short] = ACTIONS(1589), + [anon_sym_ushort] = ACTIONS(1589), + [anon_sym_uint] = ACTIONS(1589), + [anon_sym_long] = ACTIONS(1589), + [anon_sym_ulong] = ACTIONS(1589), + [anon_sym_int128] = ACTIONS(1589), + [anon_sym_uint128] = ACTIONS(1589), + [anon_sym_float] = ACTIONS(1589), + [anon_sym_double] = ACTIONS(1589), + [anon_sym_float16] = ACTIONS(1589), + [anon_sym_bfloat16] = ACTIONS(1589), + [anon_sym_float128] = ACTIONS(1589), + [anon_sym_iptr] = ACTIONS(1589), + [anon_sym_uptr] = ACTIONS(1589), + [anon_sym_isz] = ACTIONS(1589), + [anon_sym_usz] = ACTIONS(1589), + [anon_sym_anyfault] = ACTIONS(1589), + [anon_sym_any] = ACTIONS(1589), + [anon_sym_DOLLARtypeof] = ACTIONS(1589), + [anon_sym_DOLLARtypefrom] = ACTIONS(1589), + [anon_sym_DOLLARvatype] = ACTIONS(1589), + [anon_sym_DOLLARevaltype] = ACTIONS(1589), + [sym_real_literal] = ACTIONS(1591), }, [589] = { [sym_line_comment] = STATE(589), [sym_doc_comment] = STATE(589), [sym_block_comment] = STATE(589), - [sym_ident] = ACTIONS(1608), - [sym_integer_literal] = ACTIONS(1610), - [anon_sym_SQUOTE] = ACTIONS(1610), - [anon_sym_DQUOTE] = ACTIONS(1610), - [anon_sym_BQUOTE] = ACTIONS(1610), - [sym_bytes_literal] = ACTIONS(1610), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1608), - [sym_at_ident] = ACTIONS(1610), - [sym_hash_ident] = ACTIONS(1610), - [sym_type_ident] = ACTIONS(1610), - [sym_ct_type_ident] = ACTIONS(1610), - [sym_const_ident] = ACTIONS(1608), - [sym_builtin] = ACTIONS(1610), - [anon_sym_LPAREN] = ACTIONS(1610), - [anon_sym_AMP] = ACTIONS(1608), - [anon_sym_static] = ACTIONS(1608), - [anon_sym_tlocal] = ACTIONS(1608), - [anon_sym_SEMI] = ACTIONS(1610), - [anon_sym_fn] = ACTIONS(1608), - [anon_sym_LBRACE] = ACTIONS(1608), - [anon_sym_const] = ACTIONS(1608), - [anon_sym_var] = ACTIONS(1608), - [anon_sym_return] = ACTIONS(1608), - [anon_sym_continue] = ACTIONS(1608), - [anon_sym_break] = ACTIONS(1608), - [anon_sym_defer] = ACTIONS(1608), - [anon_sym_assert] = ACTIONS(1608), - [anon_sym_nextcase] = ACTIONS(1608), - [anon_sym_switch] = ACTIONS(1608), - [anon_sym_AMP_AMP] = ACTIONS(1610), - [anon_sym_if] = ACTIONS(1608), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_foreach] = ACTIONS(1608), - [anon_sym_foreach_r] = ACTIONS(1608), - [anon_sym_while] = ACTIONS(1608), - [anon_sym_do] = ACTIONS(1608), - [anon_sym_int] = ACTIONS(1608), - [anon_sym_PLUS] = ACTIONS(1608), - [anon_sym_DASH] = ACTIONS(1608), - [anon_sym_STAR] = ACTIONS(1610), - [anon_sym_asm] = ACTIONS(1608), - [anon_sym_DOLLARassert] = ACTIONS(1608), - [anon_sym_DOLLARerror] = ACTIONS(1608), - [anon_sym_DOLLARecho] = ACTIONS(1608), - [anon_sym_DOLLARif] = ACTIONS(1608), - [anon_sym_DOLLARendif] = ACTIONS(1608), - [anon_sym_DOLLARelse] = ACTIONS(1608), - [anon_sym_DOLLARswitch] = ACTIONS(1608), - [anon_sym_DOLLARfor] = ACTIONS(1608), - [anon_sym_DOLLARforeach] = ACTIONS(1608), - [anon_sym_DOLLARalignof] = ACTIONS(1608), - [anon_sym_DOLLARextnameof] = ACTIONS(1608), - [anon_sym_DOLLARnameof] = ACTIONS(1608), - [anon_sym_DOLLARoffsetof] = ACTIONS(1608), - [anon_sym_DOLLARqnameof] = ACTIONS(1608), - [anon_sym_DOLLARvaconst] = ACTIONS(1608), - [anon_sym_DOLLARvaarg] = ACTIONS(1608), - [anon_sym_DOLLARvaref] = ACTIONS(1608), - [anon_sym_DOLLARvaexpr] = ACTIONS(1608), - [anon_sym_true] = ACTIONS(1608), - [anon_sym_false] = ACTIONS(1608), - [anon_sym_null] = ACTIONS(1608), - [anon_sym_DOLLARvacount] = ACTIONS(1608), - [anon_sym_DOLLARappend] = ACTIONS(1608), - [anon_sym_DOLLARconcat] = ACTIONS(1608), - [anon_sym_DOLLAReval] = ACTIONS(1608), - [anon_sym_DOLLARis_const] = ACTIONS(1608), - [anon_sym_DOLLARsizeof] = ACTIONS(1608), - [anon_sym_DOLLARstringify] = ACTIONS(1608), - [anon_sym_DOLLARand] = ACTIONS(1608), - [anon_sym_DOLLARdefined] = ACTIONS(1608), - [anon_sym_DOLLARembed] = ACTIONS(1608), - [anon_sym_DOLLARor] = ACTIONS(1608), - [anon_sym_DOLLARfeature] = ACTIONS(1608), - [anon_sym_DOLLARassignable] = ACTIONS(1608), - [anon_sym_BANG] = ACTIONS(1610), - [anon_sym_TILDE] = ACTIONS(1610), - [anon_sym_PLUS_PLUS] = ACTIONS(1610), - [anon_sym_DASH_DASH] = ACTIONS(1610), - [anon_sym_typeid] = ACTIONS(1608), - [anon_sym_LBRACE_PIPE] = ACTIONS(1610), - [anon_sym_void] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_ichar] = ACTIONS(1608), - [anon_sym_short] = ACTIONS(1608), - [anon_sym_ushort] = ACTIONS(1608), - [anon_sym_uint] = ACTIONS(1608), - [anon_sym_long] = ACTIONS(1608), - [anon_sym_ulong] = ACTIONS(1608), - [anon_sym_int128] = ACTIONS(1608), - [anon_sym_uint128] = ACTIONS(1608), - [anon_sym_float] = ACTIONS(1608), - [anon_sym_double] = ACTIONS(1608), - [anon_sym_float16] = ACTIONS(1608), - [anon_sym_bfloat16] = ACTIONS(1608), - [anon_sym_float128] = ACTIONS(1608), - [anon_sym_iptr] = ACTIONS(1608), - [anon_sym_uptr] = ACTIONS(1608), - [anon_sym_isz] = ACTIONS(1608), - [anon_sym_usz] = ACTIONS(1608), - [anon_sym_anyfault] = ACTIONS(1608), - [anon_sym_any] = ACTIONS(1608), - [anon_sym_DOLLARtypeof] = ACTIONS(1608), - [anon_sym_DOLLARtypefrom] = ACTIONS(1608), - [anon_sym_DOLLARvatype] = ACTIONS(1608), - [anon_sym_DOLLARevaltype] = ACTIONS(1608), - [sym_real_literal] = ACTIONS(1610), + [sym_ident] = ACTIONS(1461), + [sym_integer_literal] = ACTIONS(1463), + [anon_sym_SQUOTE] = ACTIONS(1463), + [anon_sym_DQUOTE] = ACTIONS(1463), + [anon_sym_BQUOTE] = ACTIONS(1463), + [sym_bytes_literal] = ACTIONS(1463), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1461), + [sym_at_ident] = ACTIONS(1463), + [sym_hash_ident] = ACTIONS(1463), + [sym_type_ident] = ACTIONS(1463), + [sym_ct_type_ident] = ACTIONS(1463), + [sym_const_ident] = ACTIONS(1461), + [sym_builtin] = ACTIONS(1463), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_static] = ACTIONS(1461), + [anon_sym_tlocal] = ACTIONS(1461), + [anon_sym_SEMI] = ACTIONS(1463), + [anon_sym_fn] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_const] = ACTIONS(1461), + [anon_sym_var] = ACTIONS(1461), + [anon_sym_return] = ACTIONS(1461), + [anon_sym_continue] = ACTIONS(1461), + [anon_sym_break] = ACTIONS(1461), + [anon_sym_defer] = ACTIONS(1461), + [anon_sym_assert] = ACTIONS(1461), + [anon_sym_nextcase] = ACTIONS(1461), + [anon_sym_switch] = ACTIONS(1461), + [anon_sym_AMP_AMP] = ACTIONS(1463), + [anon_sym_if] = ACTIONS(1461), + [anon_sym_for] = ACTIONS(1461), + [anon_sym_foreach] = ACTIONS(1461), + [anon_sym_foreach_r] = ACTIONS(1461), + [anon_sym_while] = ACTIONS(1461), + [anon_sym_do] = ACTIONS(1461), + [anon_sym_int] = ACTIONS(1461), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_STAR] = ACTIONS(1463), + [anon_sym_asm] = ACTIONS(1461), + [anon_sym_DOLLARassert] = ACTIONS(1461), + [anon_sym_DOLLARerror] = ACTIONS(1461), + [anon_sym_DOLLARecho] = ACTIONS(1461), + [anon_sym_DOLLARif] = ACTIONS(1461), + [anon_sym_DOLLARswitch] = ACTIONS(1461), + [anon_sym_DOLLARfor] = ACTIONS(1461), + [anon_sym_DOLLARendfor] = ACTIONS(1461), + [anon_sym_DOLLARforeach] = ACTIONS(1461), + [anon_sym_DOLLARalignof] = ACTIONS(1461), + [anon_sym_DOLLARextnameof] = ACTIONS(1461), + [anon_sym_DOLLARnameof] = ACTIONS(1461), + [anon_sym_DOLLARoffsetof] = ACTIONS(1461), + [anon_sym_DOLLARqnameof] = ACTIONS(1461), + [anon_sym_DOLLARvaconst] = ACTIONS(1461), + [anon_sym_DOLLARvaarg] = ACTIONS(1461), + [anon_sym_DOLLARvaref] = ACTIONS(1461), + [anon_sym_DOLLARvaexpr] = ACTIONS(1461), + [anon_sym_true] = ACTIONS(1461), + [anon_sym_false] = ACTIONS(1461), + [anon_sym_null] = ACTIONS(1461), + [anon_sym_DOLLARvacount] = ACTIONS(1461), + [anon_sym_DOLLARappend] = ACTIONS(1461), + [anon_sym_DOLLARconcat] = ACTIONS(1461), + [anon_sym_DOLLAReval] = ACTIONS(1461), + [anon_sym_DOLLARis_const] = ACTIONS(1461), + [anon_sym_DOLLARsizeof] = ACTIONS(1461), + [anon_sym_DOLLARstringify] = ACTIONS(1461), + [anon_sym_DOLLARand] = ACTIONS(1461), + [anon_sym_DOLLARdefined] = ACTIONS(1461), + [anon_sym_DOLLARembed] = ACTIONS(1461), + [anon_sym_DOLLARor] = ACTIONS(1461), + [anon_sym_DOLLARfeature] = ACTIONS(1461), + [anon_sym_DOLLARassignable] = ACTIONS(1461), + [anon_sym_BANG] = ACTIONS(1463), + [anon_sym_TILDE] = ACTIONS(1463), + [anon_sym_PLUS_PLUS] = ACTIONS(1463), + [anon_sym_DASH_DASH] = ACTIONS(1463), + [anon_sym_typeid] = ACTIONS(1461), + [anon_sym_LBRACE_PIPE] = ACTIONS(1463), + [anon_sym_void] = ACTIONS(1461), + [anon_sym_bool] = ACTIONS(1461), + [anon_sym_char] = ACTIONS(1461), + [anon_sym_ichar] = ACTIONS(1461), + [anon_sym_short] = ACTIONS(1461), + [anon_sym_ushort] = ACTIONS(1461), + [anon_sym_uint] = ACTIONS(1461), + [anon_sym_long] = ACTIONS(1461), + [anon_sym_ulong] = ACTIONS(1461), + [anon_sym_int128] = ACTIONS(1461), + [anon_sym_uint128] = ACTIONS(1461), + [anon_sym_float] = ACTIONS(1461), + [anon_sym_double] = ACTIONS(1461), + [anon_sym_float16] = ACTIONS(1461), + [anon_sym_bfloat16] = ACTIONS(1461), + [anon_sym_float128] = ACTIONS(1461), + [anon_sym_iptr] = ACTIONS(1461), + [anon_sym_uptr] = ACTIONS(1461), + [anon_sym_isz] = ACTIONS(1461), + [anon_sym_usz] = ACTIONS(1461), + [anon_sym_anyfault] = ACTIONS(1461), + [anon_sym_any] = ACTIONS(1461), + [anon_sym_DOLLARtypeof] = ACTIONS(1461), + [anon_sym_DOLLARtypefrom] = ACTIONS(1461), + [anon_sym_DOLLARvatype] = ACTIONS(1461), + [anon_sym_DOLLARevaltype] = ACTIONS(1461), + [sym_real_literal] = ACTIONS(1463), }, [590] = { [sym_line_comment] = STATE(590), [sym_doc_comment] = STATE(590), [sym_block_comment] = STATE(590), - [sym_ident] = ACTIONS(1636), - [sym_integer_literal] = ACTIONS(1638), - [anon_sym_SQUOTE] = ACTIONS(1638), - [anon_sym_DQUOTE] = ACTIONS(1638), - [anon_sym_BQUOTE] = ACTIONS(1638), - [sym_bytes_literal] = ACTIONS(1638), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1636), - [sym_at_ident] = ACTIONS(1638), - [sym_hash_ident] = ACTIONS(1638), - [sym_type_ident] = ACTIONS(1638), - [sym_ct_type_ident] = ACTIONS(1638), - [sym_const_ident] = ACTIONS(1636), - [sym_builtin] = ACTIONS(1638), - [anon_sym_LPAREN] = ACTIONS(1638), - [anon_sym_AMP] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(1636), - [anon_sym_tlocal] = ACTIONS(1636), - [anon_sym_SEMI] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1636), - [anon_sym_LBRACE] = ACTIONS(1636), - [anon_sym_const] = ACTIONS(1636), - [anon_sym_var] = ACTIONS(1636), - [anon_sym_return] = ACTIONS(1636), - [anon_sym_continue] = ACTIONS(1636), - [anon_sym_break] = ACTIONS(1636), - [anon_sym_defer] = ACTIONS(1636), - [anon_sym_assert] = ACTIONS(1636), - [anon_sym_nextcase] = ACTIONS(1636), - [anon_sym_switch] = ACTIONS(1636), - [anon_sym_AMP_AMP] = ACTIONS(1638), - [anon_sym_if] = ACTIONS(1636), - [anon_sym_for] = ACTIONS(1636), - [anon_sym_foreach] = ACTIONS(1636), - [anon_sym_foreach_r] = ACTIONS(1636), - [anon_sym_while] = ACTIONS(1636), - [anon_sym_do] = ACTIONS(1636), - [anon_sym_int] = ACTIONS(1636), - [anon_sym_PLUS] = ACTIONS(1636), - [anon_sym_DASH] = ACTIONS(1636), - [anon_sym_STAR] = ACTIONS(1638), - [anon_sym_asm] = ACTIONS(1636), - [anon_sym_DOLLARassert] = ACTIONS(1636), - [anon_sym_DOLLARerror] = ACTIONS(1636), - [anon_sym_DOLLARecho] = ACTIONS(1636), - [anon_sym_DOLLARif] = ACTIONS(1636), - [anon_sym_DOLLARendif] = ACTIONS(1636), - [anon_sym_DOLLARelse] = ACTIONS(1636), - [anon_sym_DOLLARswitch] = ACTIONS(1636), - [anon_sym_DOLLARfor] = ACTIONS(1636), - [anon_sym_DOLLARforeach] = ACTIONS(1636), - [anon_sym_DOLLARalignof] = ACTIONS(1636), - [anon_sym_DOLLARextnameof] = ACTIONS(1636), - [anon_sym_DOLLARnameof] = ACTIONS(1636), - [anon_sym_DOLLARoffsetof] = ACTIONS(1636), - [anon_sym_DOLLARqnameof] = ACTIONS(1636), - [anon_sym_DOLLARvaconst] = ACTIONS(1636), - [anon_sym_DOLLARvaarg] = ACTIONS(1636), - [anon_sym_DOLLARvaref] = ACTIONS(1636), - [anon_sym_DOLLARvaexpr] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1636), - [anon_sym_false] = ACTIONS(1636), - [anon_sym_null] = ACTIONS(1636), - [anon_sym_DOLLARvacount] = ACTIONS(1636), - [anon_sym_DOLLARappend] = ACTIONS(1636), - [anon_sym_DOLLARconcat] = ACTIONS(1636), - [anon_sym_DOLLAReval] = ACTIONS(1636), - [anon_sym_DOLLARis_const] = ACTIONS(1636), - [anon_sym_DOLLARsizeof] = ACTIONS(1636), - [anon_sym_DOLLARstringify] = ACTIONS(1636), - [anon_sym_DOLLARand] = ACTIONS(1636), - [anon_sym_DOLLARdefined] = ACTIONS(1636), - [anon_sym_DOLLARembed] = ACTIONS(1636), - [anon_sym_DOLLARor] = ACTIONS(1636), - [anon_sym_DOLLARfeature] = ACTIONS(1636), - [anon_sym_DOLLARassignable] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1638), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_PLUS_PLUS] = ACTIONS(1638), - [anon_sym_DASH_DASH] = ACTIONS(1638), - [anon_sym_typeid] = ACTIONS(1636), - [anon_sym_LBRACE_PIPE] = ACTIONS(1638), - [anon_sym_void] = ACTIONS(1636), - [anon_sym_bool] = ACTIONS(1636), - [anon_sym_char] = ACTIONS(1636), - [anon_sym_ichar] = ACTIONS(1636), - [anon_sym_short] = ACTIONS(1636), - [anon_sym_ushort] = ACTIONS(1636), - [anon_sym_uint] = ACTIONS(1636), - [anon_sym_long] = ACTIONS(1636), - [anon_sym_ulong] = ACTIONS(1636), - [anon_sym_int128] = ACTIONS(1636), - [anon_sym_uint128] = ACTIONS(1636), - [anon_sym_float] = ACTIONS(1636), - [anon_sym_double] = ACTIONS(1636), - [anon_sym_float16] = ACTIONS(1636), - [anon_sym_bfloat16] = ACTIONS(1636), - [anon_sym_float128] = ACTIONS(1636), - [anon_sym_iptr] = ACTIONS(1636), - [anon_sym_uptr] = ACTIONS(1636), - [anon_sym_isz] = ACTIONS(1636), - [anon_sym_usz] = ACTIONS(1636), - [anon_sym_anyfault] = ACTIONS(1636), - [anon_sym_any] = ACTIONS(1636), - [anon_sym_DOLLARtypeof] = ACTIONS(1636), - [anon_sym_DOLLARtypefrom] = ACTIONS(1636), - [anon_sym_DOLLARvatype] = ACTIONS(1636), - [anon_sym_DOLLARevaltype] = ACTIONS(1636), - [sym_real_literal] = ACTIONS(1638), + [sym_ident] = ACTIONS(1343), + [sym_integer_literal] = ACTIONS(1345), + [anon_sym_SQUOTE] = ACTIONS(1345), + [anon_sym_DQUOTE] = ACTIONS(1345), + [anon_sym_BQUOTE] = ACTIONS(1345), + [sym_bytes_literal] = ACTIONS(1345), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1343), + [sym_at_ident] = ACTIONS(1345), + [sym_hash_ident] = ACTIONS(1345), + [sym_type_ident] = ACTIONS(1345), + [sym_ct_type_ident] = ACTIONS(1345), + [sym_const_ident] = ACTIONS(1343), + [sym_builtin] = ACTIONS(1345), + [anon_sym_LPAREN] = ACTIONS(1345), + [anon_sym_AMP] = ACTIONS(1343), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_tlocal] = ACTIONS(1343), + [anon_sym_SEMI] = ACTIONS(1345), + [anon_sym_fn] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1343), + [anon_sym_const] = ACTIONS(1343), + [anon_sym_var] = ACTIONS(1343), + [anon_sym_return] = ACTIONS(1343), + [anon_sym_continue] = ACTIONS(1343), + [anon_sym_break] = ACTIONS(1343), + [anon_sym_defer] = ACTIONS(1343), + [anon_sym_assert] = ACTIONS(1343), + [anon_sym_nextcase] = ACTIONS(1343), + [anon_sym_switch] = ACTIONS(1343), + [anon_sym_AMP_AMP] = ACTIONS(1345), + [anon_sym_if] = ACTIONS(1343), + [anon_sym_for] = ACTIONS(1343), + [anon_sym_foreach] = ACTIONS(1343), + [anon_sym_foreach_r] = ACTIONS(1343), + [anon_sym_while] = ACTIONS(1343), + [anon_sym_do] = ACTIONS(1343), + [anon_sym_int] = ACTIONS(1343), + [anon_sym_PLUS] = ACTIONS(1343), + [anon_sym_DASH] = ACTIONS(1343), + [anon_sym_STAR] = ACTIONS(1345), + [anon_sym_asm] = ACTIONS(1343), + [anon_sym_DOLLARassert] = ACTIONS(1343), + [anon_sym_DOLLARerror] = ACTIONS(1343), + [anon_sym_DOLLARecho] = ACTIONS(1343), + [anon_sym_DOLLARif] = ACTIONS(1343), + [anon_sym_DOLLARswitch] = ACTIONS(1343), + [anon_sym_DOLLARfor] = ACTIONS(1343), + [anon_sym_DOLLARendfor] = ACTIONS(1343), + [anon_sym_DOLLARforeach] = ACTIONS(1343), + [anon_sym_DOLLARalignof] = ACTIONS(1343), + [anon_sym_DOLLARextnameof] = ACTIONS(1343), + [anon_sym_DOLLARnameof] = ACTIONS(1343), + [anon_sym_DOLLARoffsetof] = ACTIONS(1343), + [anon_sym_DOLLARqnameof] = ACTIONS(1343), + [anon_sym_DOLLARvaconst] = ACTIONS(1343), + [anon_sym_DOLLARvaarg] = ACTIONS(1343), + [anon_sym_DOLLARvaref] = ACTIONS(1343), + [anon_sym_DOLLARvaexpr] = ACTIONS(1343), + [anon_sym_true] = ACTIONS(1343), + [anon_sym_false] = ACTIONS(1343), + [anon_sym_null] = ACTIONS(1343), + [anon_sym_DOLLARvacount] = ACTIONS(1343), + [anon_sym_DOLLARappend] = ACTIONS(1343), + [anon_sym_DOLLARconcat] = ACTIONS(1343), + [anon_sym_DOLLAReval] = ACTIONS(1343), + [anon_sym_DOLLARis_const] = ACTIONS(1343), + [anon_sym_DOLLARsizeof] = ACTIONS(1343), + [anon_sym_DOLLARstringify] = ACTIONS(1343), + [anon_sym_DOLLARand] = ACTIONS(1343), + [anon_sym_DOLLARdefined] = ACTIONS(1343), + [anon_sym_DOLLARembed] = ACTIONS(1343), + [anon_sym_DOLLARor] = ACTIONS(1343), + [anon_sym_DOLLARfeature] = ACTIONS(1343), + [anon_sym_DOLLARassignable] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(1345), + [anon_sym_TILDE] = ACTIONS(1345), + [anon_sym_PLUS_PLUS] = ACTIONS(1345), + [anon_sym_DASH_DASH] = ACTIONS(1345), + [anon_sym_typeid] = ACTIONS(1343), + [anon_sym_LBRACE_PIPE] = ACTIONS(1345), + [anon_sym_void] = ACTIONS(1343), + [anon_sym_bool] = ACTIONS(1343), + [anon_sym_char] = ACTIONS(1343), + [anon_sym_ichar] = ACTIONS(1343), + [anon_sym_short] = ACTIONS(1343), + [anon_sym_ushort] = ACTIONS(1343), + [anon_sym_uint] = ACTIONS(1343), + [anon_sym_long] = ACTIONS(1343), + [anon_sym_ulong] = ACTIONS(1343), + [anon_sym_int128] = ACTIONS(1343), + [anon_sym_uint128] = ACTIONS(1343), + [anon_sym_float] = ACTIONS(1343), + [anon_sym_double] = ACTIONS(1343), + [anon_sym_float16] = ACTIONS(1343), + [anon_sym_bfloat16] = ACTIONS(1343), + [anon_sym_float128] = ACTIONS(1343), + [anon_sym_iptr] = ACTIONS(1343), + [anon_sym_uptr] = ACTIONS(1343), + [anon_sym_isz] = ACTIONS(1343), + [anon_sym_usz] = ACTIONS(1343), + [anon_sym_anyfault] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_DOLLARtypeof] = ACTIONS(1343), + [anon_sym_DOLLARtypefrom] = ACTIONS(1343), + [anon_sym_DOLLARvatype] = ACTIONS(1343), + [anon_sym_DOLLARevaltype] = ACTIONS(1343), + [sym_real_literal] = ACTIONS(1345), }, [591] = { [sym_line_comment] = STATE(591), [sym_doc_comment] = STATE(591), [sym_block_comment] = STATE(591), - [sym_ident] = ACTIONS(1432), - [sym_integer_literal] = ACTIONS(1434), - [anon_sym_SQUOTE] = ACTIONS(1434), - [anon_sym_DQUOTE] = ACTIONS(1434), - [anon_sym_BQUOTE] = ACTIONS(1434), - [sym_bytes_literal] = ACTIONS(1434), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1432), - [sym_at_ident] = ACTIONS(1434), - [sym_hash_ident] = ACTIONS(1434), - [sym_type_ident] = ACTIONS(1434), - [sym_ct_type_ident] = ACTIONS(1434), - [sym_const_ident] = ACTIONS(1432), - [sym_builtin] = ACTIONS(1434), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_AMP] = ACTIONS(1432), - [anon_sym_static] = ACTIONS(1432), - [anon_sym_tlocal] = ACTIONS(1432), - [anon_sym_SEMI] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1432), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_const] = ACTIONS(1432), - [anon_sym_var] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_continue] = ACTIONS(1432), - [anon_sym_break] = ACTIONS(1432), - [anon_sym_defer] = ACTIONS(1432), - [anon_sym_assert] = ACTIONS(1432), - [anon_sym_nextcase] = ACTIONS(1432), - [anon_sym_switch] = ACTIONS(1432), - [anon_sym_AMP_AMP] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_foreach] = ACTIONS(1432), - [anon_sym_foreach_r] = ACTIONS(1432), - [anon_sym_while] = ACTIONS(1432), - [anon_sym_do] = ACTIONS(1432), - [anon_sym_int] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1432), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_STAR] = ACTIONS(1434), - [anon_sym_asm] = ACTIONS(1432), - [anon_sym_DOLLARassert] = ACTIONS(1432), - [anon_sym_DOLLARerror] = ACTIONS(1432), - [anon_sym_DOLLARecho] = ACTIONS(1432), - [anon_sym_DOLLARif] = ACTIONS(1432), - [anon_sym_DOLLARendif] = ACTIONS(1432), - [anon_sym_DOLLARelse] = ACTIONS(1432), - [anon_sym_DOLLARswitch] = ACTIONS(1432), - [anon_sym_DOLLARfor] = ACTIONS(1432), - [anon_sym_DOLLARforeach] = ACTIONS(1432), - [anon_sym_DOLLARalignof] = ACTIONS(1432), - [anon_sym_DOLLARextnameof] = ACTIONS(1432), - [anon_sym_DOLLARnameof] = ACTIONS(1432), - [anon_sym_DOLLARoffsetof] = ACTIONS(1432), - [anon_sym_DOLLARqnameof] = ACTIONS(1432), - [anon_sym_DOLLARvaconst] = ACTIONS(1432), - [anon_sym_DOLLARvaarg] = ACTIONS(1432), - [anon_sym_DOLLARvaref] = ACTIONS(1432), - [anon_sym_DOLLARvaexpr] = ACTIONS(1432), - [anon_sym_true] = ACTIONS(1432), - [anon_sym_false] = ACTIONS(1432), - [anon_sym_null] = ACTIONS(1432), - [anon_sym_DOLLARvacount] = ACTIONS(1432), - [anon_sym_DOLLARappend] = ACTIONS(1432), - [anon_sym_DOLLARconcat] = ACTIONS(1432), - [anon_sym_DOLLAReval] = ACTIONS(1432), - [anon_sym_DOLLARis_const] = ACTIONS(1432), - [anon_sym_DOLLARsizeof] = ACTIONS(1432), - [anon_sym_DOLLARstringify] = ACTIONS(1432), - [anon_sym_DOLLARand] = ACTIONS(1432), - [anon_sym_DOLLARdefined] = ACTIONS(1432), - [anon_sym_DOLLARembed] = ACTIONS(1432), - [anon_sym_DOLLARor] = ACTIONS(1432), - [anon_sym_DOLLARfeature] = ACTIONS(1432), - [anon_sym_DOLLARassignable] = ACTIONS(1432), - [anon_sym_BANG] = ACTIONS(1434), - [anon_sym_TILDE] = ACTIONS(1434), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), - [anon_sym_typeid] = ACTIONS(1432), - [anon_sym_LBRACE_PIPE] = ACTIONS(1434), - [anon_sym_void] = ACTIONS(1432), - [anon_sym_bool] = ACTIONS(1432), - [anon_sym_char] = ACTIONS(1432), - [anon_sym_ichar] = ACTIONS(1432), - [anon_sym_short] = ACTIONS(1432), - [anon_sym_ushort] = ACTIONS(1432), - [anon_sym_uint] = ACTIONS(1432), - [anon_sym_long] = ACTIONS(1432), - [anon_sym_ulong] = ACTIONS(1432), - [anon_sym_int128] = ACTIONS(1432), - [anon_sym_uint128] = ACTIONS(1432), - [anon_sym_float] = ACTIONS(1432), - [anon_sym_double] = ACTIONS(1432), - [anon_sym_float16] = ACTIONS(1432), - [anon_sym_bfloat16] = ACTIONS(1432), - [anon_sym_float128] = ACTIONS(1432), - [anon_sym_iptr] = ACTIONS(1432), - [anon_sym_uptr] = ACTIONS(1432), - [anon_sym_isz] = ACTIONS(1432), - [anon_sym_usz] = ACTIONS(1432), - [anon_sym_anyfault] = ACTIONS(1432), - [anon_sym_any] = ACTIONS(1432), - [anon_sym_DOLLARtypeof] = ACTIONS(1432), - [anon_sym_DOLLARtypefrom] = ACTIONS(1432), - [anon_sym_DOLLARvatype] = ACTIONS(1432), - [anon_sym_DOLLARevaltype] = ACTIONS(1432), - [sym_real_literal] = ACTIONS(1434), + [sym_ident] = ACTIONS(1597), + [sym_integer_literal] = ACTIONS(1599), + [anon_sym_SQUOTE] = ACTIONS(1599), + [anon_sym_DQUOTE] = ACTIONS(1599), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_bytes_literal] = ACTIONS(1599), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1597), + [sym_at_ident] = ACTIONS(1599), + [sym_hash_ident] = ACTIONS(1599), + [sym_type_ident] = ACTIONS(1599), + [sym_ct_type_ident] = ACTIONS(1599), + [sym_const_ident] = ACTIONS(1597), + [sym_builtin] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_AMP] = ACTIONS(1597), + [anon_sym_static] = ACTIONS(1597), + [anon_sym_tlocal] = ACTIONS(1597), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_fn] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1597), + [anon_sym_const] = ACTIONS(1597), + [anon_sym_var] = ACTIONS(1597), + [anon_sym_return] = ACTIONS(1597), + [anon_sym_continue] = ACTIONS(1597), + [anon_sym_break] = ACTIONS(1597), + [anon_sym_defer] = ACTIONS(1597), + [anon_sym_assert] = ACTIONS(1597), + [anon_sym_nextcase] = ACTIONS(1597), + [anon_sym_switch] = ACTIONS(1597), + [anon_sym_AMP_AMP] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(1597), + [anon_sym_for] = ACTIONS(1597), + [anon_sym_foreach] = ACTIONS(1597), + [anon_sym_foreach_r] = ACTIONS(1597), + [anon_sym_while] = ACTIONS(1597), + [anon_sym_do] = ACTIONS(1597), + [anon_sym_int] = ACTIONS(1597), + [anon_sym_PLUS] = ACTIONS(1597), + [anon_sym_DASH] = ACTIONS(1597), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_asm] = ACTIONS(1597), + [anon_sym_DOLLARassert] = ACTIONS(1597), + [anon_sym_DOLLARerror] = ACTIONS(1597), + [anon_sym_DOLLARecho] = ACTIONS(1597), + [anon_sym_DOLLARif] = ACTIONS(1597), + [anon_sym_DOLLARswitch] = ACTIONS(1597), + [anon_sym_DOLLARfor] = ACTIONS(1597), + [anon_sym_DOLLARendfor] = ACTIONS(1597), + [anon_sym_DOLLARforeach] = ACTIONS(1597), + [anon_sym_DOLLARalignof] = ACTIONS(1597), + [anon_sym_DOLLARextnameof] = ACTIONS(1597), + [anon_sym_DOLLARnameof] = ACTIONS(1597), + [anon_sym_DOLLARoffsetof] = ACTIONS(1597), + [anon_sym_DOLLARqnameof] = ACTIONS(1597), + [anon_sym_DOLLARvaconst] = ACTIONS(1597), + [anon_sym_DOLLARvaarg] = ACTIONS(1597), + [anon_sym_DOLLARvaref] = ACTIONS(1597), + [anon_sym_DOLLARvaexpr] = ACTIONS(1597), + [anon_sym_true] = ACTIONS(1597), + [anon_sym_false] = ACTIONS(1597), + [anon_sym_null] = ACTIONS(1597), + [anon_sym_DOLLARvacount] = ACTIONS(1597), + [anon_sym_DOLLARappend] = ACTIONS(1597), + [anon_sym_DOLLARconcat] = ACTIONS(1597), + [anon_sym_DOLLAReval] = ACTIONS(1597), + [anon_sym_DOLLARis_const] = ACTIONS(1597), + [anon_sym_DOLLARsizeof] = ACTIONS(1597), + [anon_sym_DOLLARstringify] = ACTIONS(1597), + [anon_sym_DOLLARand] = ACTIONS(1597), + [anon_sym_DOLLARdefined] = ACTIONS(1597), + [anon_sym_DOLLARembed] = ACTIONS(1597), + [anon_sym_DOLLARor] = ACTIONS(1597), + [anon_sym_DOLLARfeature] = ACTIONS(1597), + [anon_sym_DOLLARassignable] = ACTIONS(1597), + [anon_sym_BANG] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_DASH_DASH] = ACTIONS(1599), + [anon_sym_typeid] = ACTIONS(1597), + [anon_sym_LBRACE_PIPE] = ACTIONS(1599), + [anon_sym_void] = ACTIONS(1597), + [anon_sym_bool] = ACTIONS(1597), + [anon_sym_char] = ACTIONS(1597), + [anon_sym_ichar] = ACTIONS(1597), + [anon_sym_short] = ACTIONS(1597), + [anon_sym_ushort] = ACTIONS(1597), + [anon_sym_uint] = ACTIONS(1597), + [anon_sym_long] = ACTIONS(1597), + [anon_sym_ulong] = ACTIONS(1597), + [anon_sym_int128] = ACTIONS(1597), + [anon_sym_uint128] = ACTIONS(1597), + [anon_sym_float] = ACTIONS(1597), + [anon_sym_double] = ACTIONS(1597), + [anon_sym_float16] = ACTIONS(1597), + [anon_sym_bfloat16] = ACTIONS(1597), + [anon_sym_float128] = ACTIONS(1597), + [anon_sym_iptr] = ACTIONS(1597), + [anon_sym_uptr] = ACTIONS(1597), + [anon_sym_isz] = ACTIONS(1597), + [anon_sym_usz] = ACTIONS(1597), + [anon_sym_anyfault] = ACTIONS(1597), + [anon_sym_any] = ACTIONS(1597), + [anon_sym_DOLLARtypeof] = ACTIONS(1597), + [anon_sym_DOLLARtypefrom] = ACTIONS(1597), + [anon_sym_DOLLARvatype] = ACTIONS(1597), + [anon_sym_DOLLARevaltype] = ACTIONS(1597), + [sym_real_literal] = ACTIONS(1599), }, [592] = { [sym_line_comment] = STATE(592), [sym_doc_comment] = STATE(592), [sym_block_comment] = STATE(592), - [sym_ident] = ACTIONS(1422), - [sym_integer_literal] = ACTIONS(1424), - [anon_sym_SQUOTE] = ACTIONS(1424), - [anon_sym_DQUOTE] = ACTIONS(1424), - [anon_sym_BQUOTE] = ACTIONS(1424), - [sym_bytes_literal] = ACTIONS(1424), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1422), - [sym_at_ident] = ACTIONS(1424), - [sym_hash_ident] = ACTIONS(1424), - [sym_type_ident] = ACTIONS(1424), - [sym_ct_type_ident] = ACTIONS(1424), - [sym_const_ident] = ACTIONS(1422), - [sym_builtin] = ACTIONS(1424), - [anon_sym_LPAREN] = ACTIONS(1424), - [anon_sym_AMP] = ACTIONS(1422), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_tlocal] = ACTIONS(1422), - [anon_sym_SEMI] = ACTIONS(1424), - [anon_sym_fn] = ACTIONS(1422), - [anon_sym_LBRACE] = ACTIONS(1422), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_var] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_continue] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_defer] = ACTIONS(1422), - [anon_sym_assert] = ACTIONS(1422), - [anon_sym_nextcase] = ACTIONS(1422), - [anon_sym_switch] = ACTIONS(1422), - [anon_sym_AMP_AMP] = ACTIONS(1424), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_foreach] = ACTIONS(1422), - [anon_sym_foreach_r] = ACTIONS(1422), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_do] = ACTIONS(1422), - [anon_sym_int] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_STAR] = ACTIONS(1424), - [anon_sym_asm] = ACTIONS(1422), - [anon_sym_DOLLARassert] = ACTIONS(1422), - [anon_sym_DOLLARerror] = ACTIONS(1422), - [anon_sym_DOLLARecho] = ACTIONS(1422), - [anon_sym_DOLLARif] = ACTIONS(1422), - [anon_sym_DOLLARendif] = ACTIONS(1422), - [anon_sym_DOLLARelse] = ACTIONS(1422), - [anon_sym_DOLLARswitch] = ACTIONS(1422), - [anon_sym_DOLLARfor] = ACTIONS(1422), - [anon_sym_DOLLARforeach] = ACTIONS(1422), - [anon_sym_DOLLARalignof] = ACTIONS(1422), - [anon_sym_DOLLARextnameof] = ACTIONS(1422), - [anon_sym_DOLLARnameof] = ACTIONS(1422), - [anon_sym_DOLLARoffsetof] = ACTIONS(1422), - [anon_sym_DOLLARqnameof] = ACTIONS(1422), - [anon_sym_DOLLARvaconst] = ACTIONS(1422), - [anon_sym_DOLLARvaarg] = ACTIONS(1422), - [anon_sym_DOLLARvaref] = ACTIONS(1422), - [anon_sym_DOLLARvaexpr] = ACTIONS(1422), - [anon_sym_true] = ACTIONS(1422), - [anon_sym_false] = ACTIONS(1422), - [anon_sym_null] = ACTIONS(1422), - [anon_sym_DOLLARvacount] = ACTIONS(1422), - [anon_sym_DOLLARappend] = ACTIONS(1422), - [anon_sym_DOLLARconcat] = ACTIONS(1422), - [anon_sym_DOLLAReval] = ACTIONS(1422), - [anon_sym_DOLLARis_const] = ACTIONS(1422), - [anon_sym_DOLLARsizeof] = ACTIONS(1422), - [anon_sym_DOLLARstringify] = ACTIONS(1422), - [anon_sym_DOLLARand] = ACTIONS(1422), - [anon_sym_DOLLARdefined] = ACTIONS(1422), - [anon_sym_DOLLARembed] = ACTIONS(1422), - [anon_sym_DOLLARor] = ACTIONS(1422), - [anon_sym_DOLLARfeature] = ACTIONS(1422), - [anon_sym_DOLLARassignable] = ACTIONS(1422), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_TILDE] = ACTIONS(1424), - [anon_sym_PLUS_PLUS] = ACTIONS(1424), - [anon_sym_DASH_DASH] = ACTIONS(1424), - [anon_sym_typeid] = ACTIONS(1422), - [anon_sym_LBRACE_PIPE] = ACTIONS(1424), - [anon_sym_void] = ACTIONS(1422), - [anon_sym_bool] = ACTIONS(1422), - [anon_sym_char] = ACTIONS(1422), - [anon_sym_ichar] = ACTIONS(1422), - [anon_sym_short] = ACTIONS(1422), - [anon_sym_ushort] = ACTIONS(1422), - [anon_sym_uint] = ACTIONS(1422), - [anon_sym_long] = ACTIONS(1422), - [anon_sym_ulong] = ACTIONS(1422), - [anon_sym_int128] = ACTIONS(1422), - [anon_sym_uint128] = ACTIONS(1422), - [anon_sym_float] = ACTIONS(1422), - [anon_sym_double] = ACTIONS(1422), - [anon_sym_float16] = ACTIONS(1422), - [anon_sym_bfloat16] = ACTIONS(1422), - [anon_sym_float128] = ACTIONS(1422), - [anon_sym_iptr] = ACTIONS(1422), - [anon_sym_uptr] = ACTIONS(1422), - [anon_sym_isz] = ACTIONS(1422), - [anon_sym_usz] = ACTIONS(1422), - [anon_sym_anyfault] = ACTIONS(1422), - [anon_sym_any] = ACTIONS(1422), - [anon_sym_DOLLARtypeof] = ACTIONS(1422), - [anon_sym_DOLLARtypefrom] = ACTIONS(1422), - [anon_sym_DOLLARvatype] = ACTIONS(1422), - [anon_sym_DOLLARevaltype] = ACTIONS(1422), - [sym_real_literal] = ACTIONS(1424), + [sym_ident] = ACTIONS(1605), + [sym_integer_literal] = ACTIONS(1607), + [anon_sym_SQUOTE] = ACTIONS(1607), + [anon_sym_DQUOTE] = ACTIONS(1607), + [anon_sym_BQUOTE] = ACTIONS(1607), + [sym_bytes_literal] = ACTIONS(1607), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1605), + [sym_at_ident] = ACTIONS(1607), + [sym_hash_ident] = ACTIONS(1607), + [sym_type_ident] = ACTIONS(1607), + [sym_ct_type_ident] = ACTIONS(1607), + [sym_const_ident] = ACTIONS(1605), + [sym_builtin] = ACTIONS(1607), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_static] = ACTIONS(1605), + [anon_sym_tlocal] = ACTIONS(1605), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_fn] = ACTIONS(1605), + [anon_sym_LBRACE] = ACTIONS(1605), + [anon_sym_const] = ACTIONS(1605), + [anon_sym_var] = ACTIONS(1605), + [anon_sym_return] = ACTIONS(1605), + [anon_sym_continue] = ACTIONS(1605), + [anon_sym_break] = ACTIONS(1605), + [anon_sym_defer] = ACTIONS(1605), + [anon_sym_assert] = ACTIONS(1605), + [anon_sym_nextcase] = ACTIONS(1605), + [anon_sym_switch] = ACTIONS(1605), + [anon_sym_AMP_AMP] = ACTIONS(1607), + [anon_sym_if] = ACTIONS(1605), + [anon_sym_for] = ACTIONS(1605), + [anon_sym_foreach] = ACTIONS(1605), + [anon_sym_foreach_r] = ACTIONS(1605), + [anon_sym_while] = ACTIONS(1605), + [anon_sym_do] = ACTIONS(1605), + [anon_sym_int] = ACTIONS(1605), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_asm] = ACTIONS(1605), + [anon_sym_DOLLARassert] = ACTIONS(1605), + [anon_sym_DOLLARerror] = ACTIONS(1605), + [anon_sym_DOLLARecho] = ACTIONS(1605), + [anon_sym_DOLLARif] = ACTIONS(1605), + [anon_sym_DOLLARswitch] = ACTIONS(1605), + [anon_sym_DOLLARfor] = ACTIONS(1605), + [anon_sym_DOLLARendfor] = ACTIONS(1605), + [anon_sym_DOLLARforeach] = ACTIONS(1605), + [anon_sym_DOLLARalignof] = ACTIONS(1605), + [anon_sym_DOLLARextnameof] = ACTIONS(1605), + [anon_sym_DOLLARnameof] = ACTIONS(1605), + [anon_sym_DOLLARoffsetof] = ACTIONS(1605), + [anon_sym_DOLLARqnameof] = ACTIONS(1605), + [anon_sym_DOLLARvaconst] = ACTIONS(1605), + [anon_sym_DOLLARvaarg] = ACTIONS(1605), + [anon_sym_DOLLARvaref] = ACTIONS(1605), + [anon_sym_DOLLARvaexpr] = ACTIONS(1605), + [anon_sym_true] = ACTIONS(1605), + [anon_sym_false] = ACTIONS(1605), + [anon_sym_null] = ACTIONS(1605), + [anon_sym_DOLLARvacount] = ACTIONS(1605), + [anon_sym_DOLLARappend] = ACTIONS(1605), + [anon_sym_DOLLARconcat] = ACTIONS(1605), + [anon_sym_DOLLAReval] = ACTIONS(1605), + [anon_sym_DOLLARis_const] = ACTIONS(1605), + [anon_sym_DOLLARsizeof] = ACTIONS(1605), + [anon_sym_DOLLARstringify] = ACTIONS(1605), + [anon_sym_DOLLARand] = ACTIONS(1605), + [anon_sym_DOLLARdefined] = ACTIONS(1605), + [anon_sym_DOLLARembed] = ACTIONS(1605), + [anon_sym_DOLLARor] = ACTIONS(1605), + [anon_sym_DOLLARfeature] = ACTIONS(1605), + [anon_sym_DOLLARassignable] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [anon_sym_TILDE] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1607), + [anon_sym_DASH_DASH] = ACTIONS(1607), + [anon_sym_typeid] = ACTIONS(1605), + [anon_sym_LBRACE_PIPE] = ACTIONS(1607), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_bool] = ACTIONS(1605), + [anon_sym_char] = ACTIONS(1605), + [anon_sym_ichar] = ACTIONS(1605), + [anon_sym_short] = ACTIONS(1605), + [anon_sym_ushort] = ACTIONS(1605), + [anon_sym_uint] = ACTIONS(1605), + [anon_sym_long] = ACTIONS(1605), + [anon_sym_ulong] = ACTIONS(1605), + [anon_sym_int128] = ACTIONS(1605), + [anon_sym_uint128] = ACTIONS(1605), + [anon_sym_float] = ACTIONS(1605), + [anon_sym_double] = ACTIONS(1605), + [anon_sym_float16] = ACTIONS(1605), + [anon_sym_bfloat16] = ACTIONS(1605), + [anon_sym_float128] = ACTIONS(1605), + [anon_sym_iptr] = ACTIONS(1605), + [anon_sym_uptr] = ACTIONS(1605), + [anon_sym_isz] = ACTIONS(1605), + [anon_sym_usz] = ACTIONS(1605), + [anon_sym_anyfault] = ACTIONS(1605), + [anon_sym_any] = ACTIONS(1605), + [anon_sym_DOLLARtypeof] = ACTIONS(1605), + [anon_sym_DOLLARtypefrom] = ACTIONS(1605), + [anon_sym_DOLLARvatype] = ACTIONS(1605), + [anon_sym_DOLLARevaltype] = ACTIONS(1605), + [sym_real_literal] = ACTIONS(1607), }, [593] = { [sym_line_comment] = STATE(593), [sym_doc_comment] = STATE(593), [sym_block_comment] = STATE(593), - [sym_ident] = ACTIONS(1580), - [sym_integer_literal] = ACTIONS(1582), - [anon_sym_SQUOTE] = ACTIONS(1582), - [anon_sym_DQUOTE] = ACTIONS(1582), - [anon_sym_BQUOTE] = ACTIONS(1582), - [sym_bytes_literal] = ACTIONS(1582), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1580), - [sym_at_ident] = ACTIONS(1582), - [sym_hash_ident] = ACTIONS(1582), - [sym_type_ident] = ACTIONS(1582), - [sym_ct_type_ident] = ACTIONS(1582), - [sym_const_ident] = ACTIONS(1580), - [sym_builtin] = ACTIONS(1582), - [anon_sym_LPAREN] = ACTIONS(1582), - [anon_sym_AMP] = ACTIONS(1580), - [anon_sym_static] = ACTIONS(1580), - [anon_sym_tlocal] = ACTIONS(1580), - [anon_sym_SEMI] = ACTIONS(1582), - [anon_sym_fn] = ACTIONS(1580), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_const] = ACTIONS(1580), - [anon_sym_var] = ACTIONS(1580), - [anon_sym_return] = ACTIONS(1580), - [anon_sym_continue] = ACTIONS(1580), - [anon_sym_break] = ACTIONS(1580), - [anon_sym_defer] = ACTIONS(1580), - [anon_sym_assert] = ACTIONS(1580), - [anon_sym_nextcase] = ACTIONS(1580), - [anon_sym_switch] = ACTIONS(1580), - [anon_sym_AMP_AMP] = ACTIONS(1582), - [anon_sym_if] = ACTIONS(1580), - [anon_sym_for] = ACTIONS(1580), - [anon_sym_foreach] = ACTIONS(1580), - [anon_sym_foreach_r] = ACTIONS(1580), - [anon_sym_while] = ACTIONS(1580), - [anon_sym_do] = ACTIONS(1580), - [anon_sym_int] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1580), - [anon_sym_DASH] = ACTIONS(1580), - [anon_sym_STAR] = ACTIONS(1582), - [anon_sym_asm] = ACTIONS(1580), - [anon_sym_DOLLARassert] = ACTIONS(1580), - [anon_sym_DOLLARerror] = ACTIONS(1580), - [anon_sym_DOLLARecho] = ACTIONS(1580), - [anon_sym_DOLLARif] = ACTIONS(1580), - [anon_sym_DOLLARendif] = ACTIONS(1580), - [anon_sym_DOLLARelse] = ACTIONS(1580), - [anon_sym_DOLLARswitch] = ACTIONS(1580), - [anon_sym_DOLLARfor] = ACTIONS(1580), - [anon_sym_DOLLARforeach] = ACTIONS(1580), - [anon_sym_DOLLARalignof] = ACTIONS(1580), - [anon_sym_DOLLARextnameof] = ACTIONS(1580), - [anon_sym_DOLLARnameof] = ACTIONS(1580), - [anon_sym_DOLLARoffsetof] = ACTIONS(1580), - [anon_sym_DOLLARqnameof] = ACTIONS(1580), - [anon_sym_DOLLARvaconst] = ACTIONS(1580), - [anon_sym_DOLLARvaarg] = ACTIONS(1580), - [anon_sym_DOLLARvaref] = ACTIONS(1580), - [anon_sym_DOLLARvaexpr] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1580), - [anon_sym_false] = ACTIONS(1580), - [anon_sym_null] = ACTIONS(1580), - [anon_sym_DOLLARvacount] = ACTIONS(1580), - [anon_sym_DOLLARappend] = ACTIONS(1580), - [anon_sym_DOLLARconcat] = ACTIONS(1580), - [anon_sym_DOLLAReval] = ACTIONS(1580), - [anon_sym_DOLLARis_const] = ACTIONS(1580), - [anon_sym_DOLLARsizeof] = ACTIONS(1580), - [anon_sym_DOLLARstringify] = ACTIONS(1580), - [anon_sym_DOLLARand] = ACTIONS(1580), - [anon_sym_DOLLARdefined] = ACTIONS(1580), - [anon_sym_DOLLARembed] = ACTIONS(1580), - [anon_sym_DOLLARor] = ACTIONS(1580), - [anon_sym_DOLLARfeature] = ACTIONS(1580), - [anon_sym_DOLLARassignable] = ACTIONS(1580), - [anon_sym_BANG] = ACTIONS(1582), - [anon_sym_TILDE] = ACTIONS(1582), - [anon_sym_PLUS_PLUS] = ACTIONS(1582), - [anon_sym_DASH_DASH] = ACTIONS(1582), - [anon_sym_typeid] = ACTIONS(1580), - [anon_sym_LBRACE_PIPE] = ACTIONS(1582), - [anon_sym_void] = ACTIONS(1580), - [anon_sym_bool] = ACTIONS(1580), - [anon_sym_char] = ACTIONS(1580), - [anon_sym_ichar] = ACTIONS(1580), - [anon_sym_short] = ACTIONS(1580), - [anon_sym_ushort] = ACTIONS(1580), - [anon_sym_uint] = ACTIONS(1580), - [anon_sym_long] = ACTIONS(1580), - [anon_sym_ulong] = ACTIONS(1580), - [anon_sym_int128] = ACTIONS(1580), - [anon_sym_uint128] = ACTIONS(1580), - [anon_sym_float] = ACTIONS(1580), - [anon_sym_double] = ACTIONS(1580), - [anon_sym_float16] = ACTIONS(1580), - [anon_sym_bfloat16] = ACTIONS(1580), - [anon_sym_float128] = ACTIONS(1580), - [anon_sym_iptr] = ACTIONS(1580), - [anon_sym_uptr] = ACTIONS(1580), - [anon_sym_isz] = ACTIONS(1580), - [anon_sym_usz] = ACTIONS(1580), - [anon_sym_anyfault] = ACTIONS(1580), - [anon_sym_any] = ACTIONS(1580), - [anon_sym_DOLLARtypeof] = ACTIONS(1580), - [anon_sym_DOLLARtypefrom] = ACTIONS(1580), - [anon_sym_DOLLARvatype] = ACTIONS(1580), - [anon_sym_DOLLARevaltype] = ACTIONS(1580), - [sym_real_literal] = ACTIONS(1582), + [sym_ident] = ACTIONS(1465), + [sym_integer_literal] = ACTIONS(1467), + [anon_sym_SQUOTE] = ACTIONS(1467), + [anon_sym_DQUOTE] = ACTIONS(1467), + [anon_sym_BQUOTE] = ACTIONS(1467), + [sym_bytes_literal] = ACTIONS(1467), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1465), + [sym_at_ident] = ACTIONS(1467), + [sym_hash_ident] = ACTIONS(1467), + [sym_type_ident] = ACTIONS(1467), + [sym_ct_type_ident] = ACTIONS(1467), + [sym_const_ident] = ACTIONS(1465), + [sym_builtin] = ACTIONS(1467), + [anon_sym_LPAREN] = ACTIONS(1467), + [anon_sym_AMP] = ACTIONS(1465), + [anon_sym_static] = ACTIONS(1465), + [anon_sym_tlocal] = ACTIONS(1465), + [anon_sym_SEMI] = ACTIONS(1467), + [anon_sym_fn] = ACTIONS(1465), + [anon_sym_LBRACE] = ACTIONS(1465), + [anon_sym_const] = ACTIONS(1465), + [anon_sym_var] = ACTIONS(1465), + [anon_sym_return] = ACTIONS(1465), + [anon_sym_continue] = ACTIONS(1465), + [anon_sym_break] = ACTIONS(1465), + [anon_sym_defer] = ACTIONS(1465), + [anon_sym_assert] = ACTIONS(1465), + [anon_sym_nextcase] = ACTIONS(1465), + [anon_sym_switch] = ACTIONS(1465), + [anon_sym_AMP_AMP] = ACTIONS(1467), + [anon_sym_if] = ACTIONS(1465), + [anon_sym_for] = ACTIONS(1465), + [anon_sym_foreach] = ACTIONS(1465), + [anon_sym_foreach_r] = ACTIONS(1465), + [anon_sym_while] = ACTIONS(1465), + [anon_sym_do] = ACTIONS(1465), + [anon_sym_int] = ACTIONS(1465), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_STAR] = ACTIONS(1467), + [anon_sym_asm] = ACTIONS(1465), + [anon_sym_DOLLARassert] = ACTIONS(1465), + [anon_sym_DOLLARerror] = ACTIONS(1465), + [anon_sym_DOLLARecho] = ACTIONS(1465), + [anon_sym_DOLLARif] = ACTIONS(1465), + [anon_sym_DOLLARswitch] = ACTIONS(1465), + [anon_sym_DOLLARfor] = ACTIONS(1465), + [anon_sym_DOLLARendfor] = ACTIONS(1465), + [anon_sym_DOLLARforeach] = ACTIONS(1465), + [anon_sym_DOLLARalignof] = ACTIONS(1465), + [anon_sym_DOLLARextnameof] = ACTIONS(1465), + [anon_sym_DOLLARnameof] = ACTIONS(1465), + [anon_sym_DOLLARoffsetof] = ACTIONS(1465), + [anon_sym_DOLLARqnameof] = ACTIONS(1465), + [anon_sym_DOLLARvaconst] = ACTIONS(1465), + [anon_sym_DOLLARvaarg] = ACTIONS(1465), + [anon_sym_DOLLARvaref] = ACTIONS(1465), + [anon_sym_DOLLARvaexpr] = ACTIONS(1465), + [anon_sym_true] = ACTIONS(1465), + [anon_sym_false] = ACTIONS(1465), + [anon_sym_null] = ACTIONS(1465), + [anon_sym_DOLLARvacount] = ACTIONS(1465), + [anon_sym_DOLLARappend] = ACTIONS(1465), + [anon_sym_DOLLARconcat] = ACTIONS(1465), + [anon_sym_DOLLAReval] = ACTIONS(1465), + [anon_sym_DOLLARis_const] = ACTIONS(1465), + [anon_sym_DOLLARsizeof] = ACTIONS(1465), + [anon_sym_DOLLARstringify] = ACTIONS(1465), + [anon_sym_DOLLARand] = ACTIONS(1465), + [anon_sym_DOLLARdefined] = ACTIONS(1465), + [anon_sym_DOLLARembed] = ACTIONS(1465), + [anon_sym_DOLLARor] = ACTIONS(1465), + [anon_sym_DOLLARfeature] = ACTIONS(1465), + [anon_sym_DOLLARassignable] = ACTIONS(1465), + [anon_sym_BANG] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1467), + [anon_sym_PLUS_PLUS] = ACTIONS(1467), + [anon_sym_DASH_DASH] = ACTIONS(1467), + [anon_sym_typeid] = ACTIONS(1465), + [anon_sym_LBRACE_PIPE] = ACTIONS(1467), + [anon_sym_void] = ACTIONS(1465), + [anon_sym_bool] = ACTIONS(1465), + [anon_sym_char] = ACTIONS(1465), + [anon_sym_ichar] = ACTIONS(1465), + [anon_sym_short] = ACTIONS(1465), + [anon_sym_ushort] = ACTIONS(1465), + [anon_sym_uint] = ACTIONS(1465), + [anon_sym_long] = ACTIONS(1465), + [anon_sym_ulong] = ACTIONS(1465), + [anon_sym_int128] = ACTIONS(1465), + [anon_sym_uint128] = ACTIONS(1465), + [anon_sym_float] = ACTIONS(1465), + [anon_sym_double] = ACTIONS(1465), + [anon_sym_float16] = ACTIONS(1465), + [anon_sym_bfloat16] = ACTIONS(1465), + [anon_sym_float128] = ACTIONS(1465), + [anon_sym_iptr] = ACTIONS(1465), + [anon_sym_uptr] = ACTIONS(1465), + [anon_sym_isz] = ACTIONS(1465), + [anon_sym_usz] = ACTIONS(1465), + [anon_sym_anyfault] = ACTIONS(1465), + [anon_sym_any] = ACTIONS(1465), + [anon_sym_DOLLARtypeof] = ACTIONS(1465), + [anon_sym_DOLLARtypefrom] = ACTIONS(1465), + [anon_sym_DOLLARvatype] = ACTIONS(1465), + [anon_sym_DOLLARevaltype] = ACTIONS(1465), + [sym_real_literal] = ACTIONS(1467), }, [594] = { [sym_line_comment] = STATE(594), [sym_doc_comment] = STATE(594), [sym_block_comment] = STATE(594), - [sym_ident] = ACTIONS(1552), - [sym_integer_literal] = ACTIONS(1554), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_DQUOTE] = ACTIONS(1554), - [anon_sym_BQUOTE] = ACTIONS(1554), - [sym_bytes_literal] = ACTIONS(1554), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1552), - [sym_at_ident] = ACTIONS(1554), - [sym_hash_ident] = ACTIONS(1554), - [sym_type_ident] = ACTIONS(1554), - [sym_ct_type_ident] = ACTIONS(1554), - [sym_const_ident] = ACTIONS(1552), - [sym_builtin] = ACTIONS(1554), - [anon_sym_LPAREN] = ACTIONS(1554), - [anon_sym_AMP] = ACTIONS(1552), - [anon_sym_static] = ACTIONS(1552), - [anon_sym_tlocal] = ACTIONS(1552), - [anon_sym_SEMI] = ACTIONS(1554), - [anon_sym_fn] = ACTIONS(1552), - [anon_sym_LBRACE] = ACTIONS(1552), - [anon_sym_const] = ACTIONS(1552), - [anon_sym_var] = ACTIONS(1552), - [anon_sym_return] = ACTIONS(1552), - [anon_sym_continue] = ACTIONS(1552), - [anon_sym_break] = ACTIONS(1552), - [anon_sym_defer] = ACTIONS(1552), - [anon_sym_assert] = ACTIONS(1552), - [anon_sym_nextcase] = ACTIONS(1552), - [anon_sym_switch] = ACTIONS(1552), - [anon_sym_AMP_AMP] = ACTIONS(1554), - [anon_sym_if] = ACTIONS(1552), - [anon_sym_for] = ACTIONS(1552), - [anon_sym_foreach] = ACTIONS(1552), - [anon_sym_foreach_r] = ACTIONS(1552), - [anon_sym_while] = ACTIONS(1552), - [anon_sym_do] = ACTIONS(1552), - [anon_sym_int] = ACTIONS(1552), - [anon_sym_PLUS] = ACTIONS(1552), - [anon_sym_DASH] = ACTIONS(1552), - [anon_sym_STAR] = ACTIONS(1554), - [anon_sym_asm] = ACTIONS(1552), - [anon_sym_DOLLARassert] = ACTIONS(1552), - [anon_sym_DOLLARerror] = ACTIONS(1552), - [anon_sym_DOLLARecho] = ACTIONS(1552), - [anon_sym_DOLLARif] = ACTIONS(1552), - [anon_sym_DOLLARendif] = ACTIONS(1552), - [anon_sym_DOLLARelse] = ACTIONS(1552), - [anon_sym_DOLLARswitch] = ACTIONS(1552), - [anon_sym_DOLLARfor] = ACTIONS(1552), - [anon_sym_DOLLARforeach] = ACTIONS(1552), - [anon_sym_DOLLARalignof] = ACTIONS(1552), - [anon_sym_DOLLARextnameof] = ACTIONS(1552), - [anon_sym_DOLLARnameof] = ACTIONS(1552), - [anon_sym_DOLLARoffsetof] = ACTIONS(1552), - [anon_sym_DOLLARqnameof] = ACTIONS(1552), - [anon_sym_DOLLARvaconst] = ACTIONS(1552), - [anon_sym_DOLLARvaarg] = ACTIONS(1552), - [anon_sym_DOLLARvaref] = ACTIONS(1552), - [anon_sym_DOLLARvaexpr] = ACTIONS(1552), - [anon_sym_true] = ACTIONS(1552), - [anon_sym_false] = ACTIONS(1552), - [anon_sym_null] = ACTIONS(1552), - [anon_sym_DOLLARvacount] = ACTIONS(1552), - [anon_sym_DOLLARappend] = ACTIONS(1552), - [anon_sym_DOLLARconcat] = ACTIONS(1552), - [anon_sym_DOLLAReval] = ACTIONS(1552), - [anon_sym_DOLLARis_const] = ACTIONS(1552), - [anon_sym_DOLLARsizeof] = ACTIONS(1552), - [anon_sym_DOLLARstringify] = ACTIONS(1552), - [anon_sym_DOLLARand] = ACTIONS(1552), - [anon_sym_DOLLARdefined] = ACTIONS(1552), - [anon_sym_DOLLARembed] = ACTIONS(1552), - [anon_sym_DOLLARor] = ACTIONS(1552), - [anon_sym_DOLLARfeature] = ACTIONS(1552), - [anon_sym_DOLLARassignable] = ACTIONS(1552), - [anon_sym_BANG] = ACTIONS(1554), - [anon_sym_TILDE] = ACTIONS(1554), - [anon_sym_PLUS_PLUS] = ACTIONS(1554), - [anon_sym_DASH_DASH] = ACTIONS(1554), - [anon_sym_typeid] = ACTIONS(1552), - [anon_sym_LBRACE_PIPE] = ACTIONS(1554), - [anon_sym_void] = ACTIONS(1552), - [anon_sym_bool] = ACTIONS(1552), - [anon_sym_char] = ACTIONS(1552), - [anon_sym_ichar] = ACTIONS(1552), - [anon_sym_short] = ACTIONS(1552), - [anon_sym_ushort] = ACTIONS(1552), - [anon_sym_uint] = ACTIONS(1552), - [anon_sym_long] = ACTIONS(1552), - [anon_sym_ulong] = ACTIONS(1552), - [anon_sym_int128] = ACTIONS(1552), - [anon_sym_uint128] = ACTIONS(1552), - [anon_sym_float] = ACTIONS(1552), - [anon_sym_double] = ACTIONS(1552), - [anon_sym_float16] = ACTIONS(1552), - [anon_sym_bfloat16] = ACTIONS(1552), - [anon_sym_float128] = ACTIONS(1552), - [anon_sym_iptr] = ACTIONS(1552), - [anon_sym_uptr] = ACTIONS(1552), - [anon_sym_isz] = ACTIONS(1552), - [anon_sym_usz] = ACTIONS(1552), - [anon_sym_anyfault] = ACTIONS(1552), - [anon_sym_any] = ACTIONS(1552), - [anon_sym_DOLLARtypeof] = ACTIONS(1552), - [anon_sym_DOLLARtypefrom] = ACTIONS(1552), - [anon_sym_DOLLARvatype] = ACTIONS(1552), - [anon_sym_DOLLARevaltype] = ACTIONS(1552), - [sym_real_literal] = ACTIONS(1554), + [sym_ident] = ACTIONS(1581), + [sym_integer_literal] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1583), + [anon_sym_DQUOTE] = ACTIONS(1583), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_bytes_literal] = ACTIONS(1583), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1581), + [sym_at_ident] = ACTIONS(1583), + [sym_hash_ident] = ACTIONS(1583), + [sym_type_ident] = ACTIONS(1583), + [sym_ct_type_ident] = ACTIONS(1583), + [sym_const_ident] = ACTIONS(1581), + [sym_builtin] = ACTIONS(1583), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_AMP] = ACTIONS(1581), + [anon_sym_static] = ACTIONS(1581), + [anon_sym_tlocal] = ACTIONS(1581), + [anon_sym_SEMI] = ACTIONS(1583), + [anon_sym_fn] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_const] = ACTIONS(1581), + [anon_sym_var] = ACTIONS(1581), + [anon_sym_return] = ACTIONS(1581), + [anon_sym_continue] = ACTIONS(1581), + [anon_sym_break] = ACTIONS(1581), + [anon_sym_defer] = ACTIONS(1581), + [anon_sym_assert] = ACTIONS(1581), + [anon_sym_nextcase] = ACTIONS(1581), + [anon_sym_switch] = ACTIONS(1581), + [anon_sym_AMP_AMP] = ACTIONS(1583), + [anon_sym_if] = ACTIONS(1581), + [anon_sym_for] = ACTIONS(1581), + [anon_sym_foreach] = ACTIONS(1581), + [anon_sym_foreach_r] = ACTIONS(1581), + [anon_sym_while] = ACTIONS(1581), + [anon_sym_do] = ACTIONS(1581), + [anon_sym_int] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1581), + [anon_sym_DASH] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1583), + [anon_sym_asm] = ACTIONS(1581), + [anon_sym_DOLLARassert] = ACTIONS(1581), + [anon_sym_DOLLARerror] = ACTIONS(1581), + [anon_sym_DOLLARecho] = ACTIONS(1581), + [anon_sym_DOLLARif] = ACTIONS(1581), + [anon_sym_DOLLARswitch] = ACTIONS(1581), + [anon_sym_DOLLARfor] = ACTIONS(1581), + [anon_sym_DOLLARendfor] = ACTIONS(1581), + [anon_sym_DOLLARforeach] = ACTIONS(1581), + [anon_sym_DOLLARalignof] = ACTIONS(1581), + [anon_sym_DOLLARextnameof] = ACTIONS(1581), + [anon_sym_DOLLARnameof] = ACTIONS(1581), + [anon_sym_DOLLARoffsetof] = ACTIONS(1581), + [anon_sym_DOLLARqnameof] = ACTIONS(1581), + [anon_sym_DOLLARvaconst] = ACTIONS(1581), + [anon_sym_DOLLARvaarg] = ACTIONS(1581), + [anon_sym_DOLLARvaref] = ACTIONS(1581), + [anon_sym_DOLLARvaexpr] = ACTIONS(1581), + [anon_sym_true] = ACTIONS(1581), + [anon_sym_false] = ACTIONS(1581), + [anon_sym_null] = ACTIONS(1581), + [anon_sym_DOLLARvacount] = ACTIONS(1581), + [anon_sym_DOLLARappend] = ACTIONS(1581), + [anon_sym_DOLLARconcat] = ACTIONS(1581), + [anon_sym_DOLLAReval] = ACTIONS(1581), + [anon_sym_DOLLARis_const] = ACTIONS(1581), + [anon_sym_DOLLARsizeof] = ACTIONS(1581), + [anon_sym_DOLLARstringify] = ACTIONS(1581), + [anon_sym_DOLLARand] = ACTIONS(1581), + [anon_sym_DOLLARdefined] = ACTIONS(1581), + [anon_sym_DOLLARembed] = ACTIONS(1581), + [anon_sym_DOLLARor] = ACTIONS(1581), + [anon_sym_DOLLARfeature] = ACTIONS(1581), + [anon_sym_DOLLARassignable] = ACTIONS(1581), + [anon_sym_BANG] = ACTIONS(1583), + [anon_sym_TILDE] = ACTIONS(1583), + [anon_sym_PLUS_PLUS] = ACTIONS(1583), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [anon_sym_typeid] = ACTIONS(1581), + [anon_sym_LBRACE_PIPE] = ACTIONS(1583), + [anon_sym_void] = ACTIONS(1581), + [anon_sym_bool] = ACTIONS(1581), + [anon_sym_char] = ACTIONS(1581), + [anon_sym_ichar] = ACTIONS(1581), + [anon_sym_short] = ACTIONS(1581), + [anon_sym_ushort] = ACTIONS(1581), + [anon_sym_uint] = ACTIONS(1581), + [anon_sym_long] = ACTIONS(1581), + [anon_sym_ulong] = ACTIONS(1581), + [anon_sym_int128] = ACTIONS(1581), + [anon_sym_uint128] = ACTIONS(1581), + [anon_sym_float] = ACTIONS(1581), + [anon_sym_double] = ACTIONS(1581), + [anon_sym_float16] = ACTIONS(1581), + [anon_sym_bfloat16] = ACTIONS(1581), + [anon_sym_float128] = ACTIONS(1581), + [anon_sym_iptr] = ACTIONS(1581), + [anon_sym_uptr] = ACTIONS(1581), + [anon_sym_isz] = ACTIONS(1581), + [anon_sym_usz] = ACTIONS(1581), + [anon_sym_anyfault] = ACTIONS(1581), + [anon_sym_any] = ACTIONS(1581), + [anon_sym_DOLLARtypeof] = ACTIONS(1581), + [anon_sym_DOLLARtypefrom] = ACTIONS(1581), + [anon_sym_DOLLARvatype] = ACTIONS(1581), + [anon_sym_DOLLARevaltype] = ACTIONS(1581), + [sym_real_literal] = ACTIONS(1583), }, [595] = { [sym_line_comment] = STATE(595), [sym_doc_comment] = STATE(595), [sym_block_comment] = STATE(595), - [sym_ident] = ACTIONS(1556), - [sym_integer_literal] = ACTIONS(1558), - [anon_sym_SQUOTE] = ACTIONS(1558), - [anon_sym_DQUOTE] = ACTIONS(1558), - [anon_sym_BQUOTE] = ACTIONS(1558), - [sym_bytes_literal] = ACTIONS(1558), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1556), - [sym_at_ident] = ACTIONS(1558), - [sym_hash_ident] = ACTIONS(1558), - [sym_type_ident] = ACTIONS(1558), - [sym_ct_type_ident] = ACTIONS(1558), - [sym_const_ident] = ACTIONS(1556), - [sym_builtin] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1558), - [anon_sym_AMP] = ACTIONS(1556), - [anon_sym_static] = ACTIONS(1556), - [anon_sym_tlocal] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1558), - [anon_sym_fn] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_const] = ACTIONS(1556), - [anon_sym_var] = ACTIONS(1556), - [anon_sym_return] = ACTIONS(1556), - [anon_sym_continue] = ACTIONS(1556), - [anon_sym_break] = ACTIONS(1556), - [anon_sym_defer] = ACTIONS(1556), - [anon_sym_assert] = ACTIONS(1556), - [anon_sym_nextcase] = ACTIONS(1556), - [anon_sym_switch] = ACTIONS(1556), - [anon_sym_AMP_AMP] = ACTIONS(1558), - [anon_sym_if] = ACTIONS(1556), - [anon_sym_for] = ACTIONS(1556), - [anon_sym_foreach] = ACTIONS(1556), - [anon_sym_foreach_r] = ACTIONS(1556), - [anon_sym_while] = ACTIONS(1556), - [anon_sym_do] = ACTIONS(1556), - [anon_sym_int] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1558), - [anon_sym_asm] = ACTIONS(1556), - [anon_sym_DOLLARassert] = ACTIONS(1556), - [anon_sym_DOLLARerror] = ACTIONS(1556), - [anon_sym_DOLLARecho] = ACTIONS(1556), - [anon_sym_DOLLARif] = ACTIONS(1556), - [anon_sym_DOLLARendif] = ACTIONS(1556), - [anon_sym_DOLLARelse] = ACTIONS(1556), - [anon_sym_DOLLARswitch] = ACTIONS(1556), - [anon_sym_DOLLARfor] = ACTIONS(1556), - [anon_sym_DOLLARforeach] = ACTIONS(1556), - [anon_sym_DOLLARalignof] = ACTIONS(1556), - [anon_sym_DOLLARextnameof] = ACTIONS(1556), - [anon_sym_DOLLARnameof] = ACTIONS(1556), - [anon_sym_DOLLARoffsetof] = ACTIONS(1556), - [anon_sym_DOLLARqnameof] = ACTIONS(1556), - [anon_sym_DOLLARvaconst] = ACTIONS(1556), - [anon_sym_DOLLARvaarg] = ACTIONS(1556), - [anon_sym_DOLLARvaref] = ACTIONS(1556), - [anon_sym_DOLLARvaexpr] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [anon_sym_DOLLARvacount] = ACTIONS(1556), - [anon_sym_DOLLARappend] = ACTIONS(1556), - [anon_sym_DOLLARconcat] = ACTIONS(1556), - [anon_sym_DOLLAReval] = ACTIONS(1556), - [anon_sym_DOLLARis_const] = ACTIONS(1556), - [anon_sym_DOLLARsizeof] = ACTIONS(1556), - [anon_sym_DOLLARstringify] = ACTIONS(1556), - [anon_sym_DOLLARand] = ACTIONS(1556), - [anon_sym_DOLLARdefined] = ACTIONS(1556), - [anon_sym_DOLLARembed] = ACTIONS(1556), - [anon_sym_DOLLARor] = ACTIONS(1556), - [anon_sym_DOLLARfeature] = ACTIONS(1556), - [anon_sym_DOLLARassignable] = ACTIONS(1556), - [anon_sym_BANG] = ACTIONS(1558), - [anon_sym_TILDE] = ACTIONS(1558), - [anon_sym_PLUS_PLUS] = ACTIONS(1558), - [anon_sym_DASH_DASH] = ACTIONS(1558), - [anon_sym_typeid] = ACTIONS(1556), - [anon_sym_LBRACE_PIPE] = ACTIONS(1558), - [anon_sym_void] = ACTIONS(1556), - [anon_sym_bool] = ACTIONS(1556), - [anon_sym_char] = ACTIONS(1556), - [anon_sym_ichar] = ACTIONS(1556), - [anon_sym_short] = ACTIONS(1556), - [anon_sym_ushort] = ACTIONS(1556), - [anon_sym_uint] = ACTIONS(1556), - [anon_sym_long] = ACTIONS(1556), - [anon_sym_ulong] = ACTIONS(1556), - [anon_sym_int128] = ACTIONS(1556), - [anon_sym_uint128] = ACTIONS(1556), - [anon_sym_float] = ACTIONS(1556), - [anon_sym_double] = ACTIONS(1556), - [anon_sym_float16] = ACTIONS(1556), - [anon_sym_bfloat16] = ACTIONS(1556), - [anon_sym_float128] = ACTIONS(1556), - [anon_sym_iptr] = ACTIONS(1556), - [anon_sym_uptr] = ACTIONS(1556), - [anon_sym_isz] = ACTIONS(1556), - [anon_sym_usz] = ACTIONS(1556), - [anon_sym_anyfault] = ACTIONS(1556), - [anon_sym_any] = ACTIONS(1556), - [anon_sym_DOLLARtypeof] = ACTIONS(1556), - [anon_sym_DOLLARtypefrom] = ACTIONS(1556), - [anon_sym_DOLLARvatype] = ACTIONS(1556), - [anon_sym_DOLLARevaltype] = ACTIONS(1556), - [sym_real_literal] = ACTIONS(1558), + [sym_ident] = ACTIONS(1609), + [sym_integer_literal] = ACTIONS(1611), + [anon_sym_SQUOTE] = ACTIONS(1611), + [anon_sym_DQUOTE] = ACTIONS(1611), + [anon_sym_BQUOTE] = ACTIONS(1611), + [sym_bytes_literal] = ACTIONS(1611), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1609), + [sym_at_ident] = ACTIONS(1611), + [sym_hash_ident] = ACTIONS(1611), + [sym_type_ident] = ACTIONS(1611), + [sym_ct_type_ident] = ACTIONS(1611), + [sym_const_ident] = ACTIONS(1609), + [sym_builtin] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1611), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_static] = ACTIONS(1609), + [anon_sym_tlocal] = ACTIONS(1609), + [anon_sym_SEMI] = ACTIONS(1611), + [anon_sym_fn] = ACTIONS(1609), + [anon_sym_LBRACE] = ACTIONS(1609), + [anon_sym_const] = ACTIONS(1609), + [anon_sym_var] = ACTIONS(1609), + [anon_sym_return] = ACTIONS(1609), + [anon_sym_continue] = ACTIONS(1609), + [anon_sym_break] = ACTIONS(1609), + [anon_sym_defer] = ACTIONS(1609), + [anon_sym_assert] = ACTIONS(1609), + [anon_sym_nextcase] = ACTIONS(1609), + [anon_sym_switch] = ACTIONS(1609), + [anon_sym_AMP_AMP] = ACTIONS(1611), + [anon_sym_if] = ACTIONS(1609), + [anon_sym_for] = ACTIONS(1609), + [anon_sym_foreach] = ACTIONS(1609), + [anon_sym_foreach_r] = ACTIONS(1609), + [anon_sym_while] = ACTIONS(1609), + [anon_sym_do] = ACTIONS(1609), + [anon_sym_int] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1609), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(1611), + [anon_sym_asm] = ACTIONS(1609), + [anon_sym_DOLLARassert] = ACTIONS(1609), + [anon_sym_DOLLARerror] = ACTIONS(1609), + [anon_sym_DOLLARecho] = ACTIONS(1609), + [anon_sym_DOLLARif] = ACTIONS(1609), + [anon_sym_DOLLARswitch] = ACTIONS(1609), + [anon_sym_DOLLARfor] = ACTIONS(1609), + [anon_sym_DOLLARendfor] = ACTIONS(1609), + [anon_sym_DOLLARforeach] = ACTIONS(1609), + [anon_sym_DOLLARalignof] = ACTIONS(1609), + [anon_sym_DOLLARextnameof] = ACTIONS(1609), + [anon_sym_DOLLARnameof] = ACTIONS(1609), + [anon_sym_DOLLARoffsetof] = ACTIONS(1609), + [anon_sym_DOLLARqnameof] = ACTIONS(1609), + [anon_sym_DOLLARvaconst] = ACTIONS(1609), + [anon_sym_DOLLARvaarg] = ACTIONS(1609), + [anon_sym_DOLLARvaref] = ACTIONS(1609), + [anon_sym_DOLLARvaexpr] = ACTIONS(1609), + [anon_sym_true] = ACTIONS(1609), + [anon_sym_false] = ACTIONS(1609), + [anon_sym_null] = ACTIONS(1609), + [anon_sym_DOLLARvacount] = ACTIONS(1609), + [anon_sym_DOLLARappend] = ACTIONS(1609), + [anon_sym_DOLLARconcat] = ACTIONS(1609), + [anon_sym_DOLLAReval] = ACTIONS(1609), + [anon_sym_DOLLARis_const] = ACTIONS(1609), + [anon_sym_DOLLARsizeof] = ACTIONS(1609), + [anon_sym_DOLLARstringify] = ACTIONS(1609), + [anon_sym_DOLLARand] = ACTIONS(1609), + [anon_sym_DOLLARdefined] = ACTIONS(1609), + [anon_sym_DOLLARembed] = ACTIONS(1609), + [anon_sym_DOLLARor] = ACTIONS(1609), + [anon_sym_DOLLARfeature] = ACTIONS(1609), + [anon_sym_DOLLARassignable] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1611), + [anon_sym_TILDE] = ACTIONS(1611), + [anon_sym_PLUS_PLUS] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_typeid] = ACTIONS(1609), + [anon_sym_LBRACE_PIPE] = ACTIONS(1611), + [anon_sym_void] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_ichar] = ACTIONS(1609), + [anon_sym_short] = ACTIONS(1609), + [anon_sym_ushort] = ACTIONS(1609), + [anon_sym_uint] = ACTIONS(1609), + [anon_sym_long] = ACTIONS(1609), + [anon_sym_ulong] = ACTIONS(1609), + [anon_sym_int128] = ACTIONS(1609), + [anon_sym_uint128] = ACTIONS(1609), + [anon_sym_float] = ACTIONS(1609), + [anon_sym_double] = ACTIONS(1609), + [anon_sym_float16] = ACTIONS(1609), + [anon_sym_bfloat16] = ACTIONS(1609), + [anon_sym_float128] = ACTIONS(1609), + [anon_sym_iptr] = ACTIONS(1609), + [anon_sym_uptr] = ACTIONS(1609), + [anon_sym_isz] = ACTIONS(1609), + [anon_sym_usz] = ACTIONS(1609), + [anon_sym_anyfault] = ACTIONS(1609), + [anon_sym_any] = ACTIONS(1609), + [anon_sym_DOLLARtypeof] = ACTIONS(1609), + [anon_sym_DOLLARtypefrom] = ACTIONS(1609), + [anon_sym_DOLLARvatype] = ACTIONS(1609), + [anon_sym_DOLLARevaltype] = ACTIONS(1609), + [sym_real_literal] = ACTIONS(1611), }, [596] = { [sym_line_comment] = STATE(596), [sym_doc_comment] = STATE(596), [sym_block_comment] = STATE(596), - [sym_ident] = ACTIONS(1406), - [sym_integer_literal] = ACTIONS(1408), - [anon_sym_SQUOTE] = ACTIONS(1408), - [anon_sym_DQUOTE] = ACTIONS(1408), - [anon_sym_BQUOTE] = ACTIONS(1408), - [sym_bytes_literal] = ACTIONS(1408), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1406), - [sym_at_ident] = ACTIONS(1408), - [sym_hash_ident] = ACTIONS(1408), - [sym_type_ident] = ACTIONS(1408), - [sym_ct_type_ident] = ACTIONS(1408), - [sym_const_ident] = ACTIONS(1406), - [sym_builtin] = ACTIONS(1408), - [anon_sym_LPAREN] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(1406), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_tlocal] = ACTIONS(1406), - [anon_sym_SEMI] = ACTIONS(1408), - [anon_sym_fn] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1406), - [anon_sym_const] = ACTIONS(1406), - [anon_sym_var] = ACTIONS(1406), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_defer] = ACTIONS(1406), - [anon_sym_assert] = ACTIONS(1406), - [anon_sym_nextcase] = ACTIONS(1406), - [anon_sym_switch] = ACTIONS(1406), - [anon_sym_AMP_AMP] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_for] = ACTIONS(1406), - [anon_sym_foreach] = ACTIONS(1406), - [anon_sym_foreach_r] = ACTIONS(1406), - [anon_sym_while] = ACTIONS(1406), - [anon_sym_do] = ACTIONS(1406), - [anon_sym_int] = ACTIONS(1406), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_asm] = ACTIONS(1406), - [anon_sym_DOLLARassert] = ACTIONS(1406), - [anon_sym_DOLLARerror] = ACTIONS(1406), - [anon_sym_DOLLARecho] = ACTIONS(1406), - [anon_sym_DOLLARif] = ACTIONS(1406), - [anon_sym_DOLLARendif] = ACTIONS(1406), - [anon_sym_DOLLARelse] = ACTIONS(1406), - [anon_sym_DOLLARswitch] = ACTIONS(1406), - [anon_sym_DOLLARfor] = ACTIONS(1406), - [anon_sym_DOLLARforeach] = ACTIONS(1406), - [anon_sym_DOLLARalignof] = ACTIONS(1406), - [anon_sym_DOLLARextnameof] = ACTIONS(1406), - [anon_sym_DOLLARnameof] = ACTIONS(1406), - [anon_sym_DOLLARoffsetof] = ACTIONS(1406), - [anon_sym_DOLLARqnameof] = ACTIONS(1406), - [anon_sym_DOLLARvaconst] = ACTIONS(1406), - [anon_sym_DOLLARvaarg] = ACTIONS(1406), - [anon_sym_DOLLARvaref] = ACTIONS(1406), - [anon_sym_DOLLARvaexpr] = ACTIONS(1406), - [anon_sym_true] = ACTIONS(1406), - [anon_sym_false] = ACTIONS(1406), - [anon_sym_null] = ACTIONS(1406), - [anon_sym_DOLLARvacount] = ACTIONS(1406), - [anon_sym_DOLLARappend] = ACTIONS(1406), - [anon_sym_DOLLARconcat] = ACTIONS(1406), - [anon_sym_DOLLAReval] = ACTIONS(1406), - [anon_sym_DOLLARis_const] = ACTIONS(1406), - [anon_sym_DOLLARsizeof] = ACTIONS(1406), - [anon_sym_DOLLARstringify] = ACTIONS(1406), - [anon_sym_DOLLARand] = ACTIONS(1406), - [anon_sym_DOLLARdefined] = ACTIONS(1406), - [anon_sym_DOLLARembed] = ACTIONS(1406), - [anon_sym_DOLLARor] = ACTIONS(1406), - [anon_sym_DOLLARfeature] = ACTIONS(1406), - [anon_sym_DOLLARassignable] = ACTIONS(1406), - [anon_sym_BANG] = ACTIONS(1408), - [anon_sym_TILDE] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1408), - [anon_sym_DASH_DASH] = ACTIONS(1408), - [anon_sym_typeid] = ACTIONS(1406), - [anon_sym_LBRACE_PIPE] = ACTIONS(1408), - [anon_sym_void] = ACTIONS(1406), - [anon_sym_bool] = ACTIONS(1406), - [anon_sym_char] = ACTIONS(1406), - [anon_sym_ichar] = ACTIONS(1406), - [anon_sym_short] = ACTIONS(1406), - [anon_sym_ushort] = ACTIONS(1406), - [anon_sym_uint] = ACTIONS(1406), - [anon_sym_long] = ACTIONS(1406), - [anon_sym_ulong] = ACTIONS(1406), - [anon_sym_int128] = ACTIONS(1406), - [anon_sym_uint128] = ACTIONS(1406), - [anon_sym_float] = ACTIONS(1406), - [anon_sym_double] = ACTIONS(1406), - [anon_sym_float16] = ACTIONS(1406), - [anon_sym_bfloat16] = ACTIONS(1406), - [anon_sym_float128] = ACTIONS(1406), - [anon_sym_iptr] = ACTIONS(1406), - [anon_sym_uptr] = ACTIONS(1406), - [anon_sym_isz] = ACTIONS(1406), - [anon_sym_usz] = ACTIONS(1406), - [anon_sym_anyfault] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_DOLLARtypeof] = ACTIONS(1406), - [anon_sym_DOLLARtypefrom] = ACTIONS(1406), - [anon_sym_DOLLARvatype] = ACTIONS(1406), - [anon_sym_DOLLARevaltype] = ACTIONS(1406), - [sym_real_literal] = ACTIONS(1408), + [sym_ident] = ACTIONS(1651), + [sym_integer_literal] = ACTIONS(1653), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_DQUOTE] = ACTIONS(1653), + [anon_sym_BQUOTE] = ACTIONS(1653), + [sym_bytes_literal] = ACTIONS(1653), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1651), + [sym_at_ident] = ACTIONS(1653), + [sym_hash_ident] = ACTIONS(1653), + [sym_type_ident] = ACTIONS(1653), + [sym_ct_type_ident] = ACTIONS(1653), + [sym_const_ident] = ACTIONS(1651), + [sym_builtin] = ACTIONS(1653), + [anon_sym_LPAREN] = ACTIONS(1653), + [anon_sym_AMP] = ACTIONS(1651), + [anon_sym_static] = ACTIONS(1651), + [anon_sym_tlocal] = ACTIONS(1651), + [anon_sym_SEMI] = ACTIONS(1653), + [anon_sym_fn] = ACTIONS(1651), + [anon_sym_LBRACE] = ACTIONS(1651), + [anon_sym_const] = ACTIONS(1651), + [anon_sym_var] = ACTIONS(1651), + [anon_sym_return] = ACTIONS(1651), + [anon_sym_continue] = ACTIONS(1651), + [anon_sym_break] = ACTIONS(1651), + [anon_sym_defer] = ACTIONS(1651), + [anon_sym_assert] = ACTIONS(1651), + [anon_sym_nextcase] = ACTIONS(1651), + [anon_sym_switch] = ACTIONS(1651), + [anon_sym_AMP_AMP] = ACTIONS(1653), + [anon_sym_if] = ACTIONS(1651), + [anon_sym_for] = ACTIONS(1651), + [anon_sym_foreach] = ACTIONS(1651), + [anon_sym_foreach_r] = ACTIONS(1651), + [anon_sym_while] = ACTIONS(1651), + [anon_sym_do] = ACTIONS(1651), + [anon_sym_int] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1651), + [anon_sym_DASH] = ACTIONS(1651), + [anon_sym_STAR] = ACTIONS(1653), + [anon_sym_asm] = ACTIONS(1651), + [anon_sym_DOLLARassert] = ACTIONS(1651), + [anon_sym_DOLLARerror] = ACTIONS(1651), + [anon_sym_DOLLARecho] = ACTIONS(1651), + [anon_sym_DOLLARif] = ACTIONS(1651), + [anon_sym_DOLLARswitch] = ACTIONS(1651), + [anon_sym_DOLLARfor] = ACTIONS(1651), + [anon_sym_DOLLARendfor] = ACTIONS(1651), + [anon_sym_DOLLARforeach] = ACTIONS(1651), + [anon_sym_DOLLARalignof] = ACTIONS(1651), + [anon_sym_DOLLARextnameof] = ACTIONS(1651), + [anon_sym_DOLLARnameof] = ACTIONS(1651), + [anon_sym_DOLLARoffsetof] = ACTIONS(1651), + [anon_sym_DOLLARqnameof] = ACTIONS(1651), + [anon_sym_DOLLARvaconst] = ACTIONS(1651), + [anon_sym_DOLLARvaarg] = ACTIONS(1651), + [anon_sym_DOLLARvaref] = ACTIONS(1651), + [anon_sym_DOLLARvaexpr] = ACTIONS(1651), + [anon_sym_true] = ACTIONS(1651), + [anon_sym_false] = ACTIONS(1651), + [anon_sym_null] = ACTIONS(1651), + [anon_sym_DOLLARvacount] = ACTIONS(1651), + [anon_sym_DOLLARappend] = ACTIONS(1651), + [anon_sym_DOLLARconcat] = ACTIONS(1651), + [anon_sym_DOLLAReval] = ACTIONS(1651), + [anon_sym_DOLLARis_const] = ACTIONS(1651), + [anon_sym_DOLLARsizeof] = ACTIONS(1651), + [anon_sym_DOLLARstringify] = ACTIONS(1651), + [anon_sym_DOLLARand] = ACTIONS(1651), + [anon_sym_DOLLARdefined] = ACTIONS(1651), + [anon_sym_DOLLARembed] = ACTIONS(1651), + [anon_sym_DOLLARor] = ACTIONS(1651), + [anon_sym_DOLLARfeature] = ACTIONS(1651), + [anon_sym_DOLLARassignable] = ACTIONS(1651), + [anon_sym_BANG] = ACTIONS(1653), + [anon_sym_TILDE] = ACTIONS(1653), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), + [anon_sym_typeid] = ACTIONS(1651), + [anon_sym_LBRACE_PIPE] = ACTIONS(1653), + [anon_sym_void] = ACTIONS(1651), + [anon_sym_bool] = ACTIONS(1651), + [anon_sym_char] = ACTIONS(1651), + [anon_sym_ichar] = ACTIONS(1651), + [anon_sym_short] = ACTIONS(1651), + [anon_sym_ushort] = ACTIONS(1651), + [anon_sym_uint] = ACTIONS(1651), + [anon_sym_long] = ACTIONS(1651), + [anon_sym_ulong] = ACTIONS(1651), + [anon_sym_int128] = ACTIONS(1651), + [anon_sym_uint128] = ACTIONS(1651), + [anon_sym_float] = ACTIONS(1651), + [anon_sym_double] = ACTIONS(1651), + [anon_sym_float16] = ACTIONS(1651), + [anon_sym_bfloat16] = ACTIONS(1651), + [anon_sym_float128] = ACTIONS(1651), + [anon_sym_iptr] = ACTIONS(1651), + [anon_sym_uptr] = ACTIONS(1651), + [anon_sym_isz] = ACTIONS(1651), + [anon_sym_usz] = ACTIONS(1651), + [anon_sym_anyfault] = ACTIONS(1651), + [anon_sym_any] = ACTIONS(1651), + [anon_sym_DOLLARtypeof] = ACTIONS(1651), + [anon_sym_DOLLARtypefrom] = ACTIONS(1651), + [anon_sym_DOLLARvatype] = ACTIONS(1651), + [anon_sym_DOLLARevaltype] = ACTIONS(1651), + [sym_real_literal] = ACTIONS(1653), }, [597] = { [sym_line_comment] = STATE(597), [sym_doc_comment] = STATE(597), [sym_block_comment] = STATE(597), - [sym_ident] = ACTIONS(1410), - [sym_integer_literal] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1412), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_BQUOTE] = ACTIONS(1412), - [sym_bytes_literal] = ACTIONS(1412), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1410), - [sym_at_ident] = ACTIONS(1412), - [sym_hash_ident] = ACTIONS(1412), - [sym_type_ident] = ACTIONS(1412), - [sym_ct_type_ident] = ACTIONS(1412), - [sym_const_ident] = ACTIONS(1410), - [sym_builtin] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1410), - [anon_sym_static] = ACTIONS(1410), - [anon_sym_tlocal] = ACTIONS(1410), - [anon_sym_SEMI] = ACTIONS(1412), - [anon_sym_fn] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_var] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_defer] = ACTIONS(1410), - [anon_sym_assert] = ACTIONS(1410), - [anon_sym_nextcase] = ACTIONS(1410), - [anon_sym_switch] = ACTIONS(1410), - [anon_sym_AMP_AMP] = ACTIONS(1412), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_foreach] = ACTIONS(1410), - [anon_sym_foreach_r] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [anon_sym_do] = ACTIONS(1410), - [anon_sym_int] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1412), - [anon_sym_asm] = ACTIONS(1410), - [anon_sym_DOLLARassert] = ACTIONS(1410), - [anon_sym_DOLLARerror] = ACTIONS(1410), - [anon_sym_DOLLARecho] = ACTIONS(1410), - [anon_sym_DOLLARif] = ACTIONS(1410), - [anon_sym_DOLLARendif] = ACTIONS(1410), - [anon_sym_DOLLARelse] = ACTIONS(1410), - [anon_sym_DOLLARswitch] = ACTIONS(1410), - [anon_sym_DOLLARfor] = ACTIONS(1410), - [anon_sym_DOLLARforeach] = ACTIONS(1410), - [anon_sym_DOLLARalignof] = ACTIONS(1410), - [anon_sym_DOLLARextnameof] = ACTIONS(1410), - [anon_sym_DOLLARnameof] = ACTIONS(1410), - [anon_sym_DOLLARoffsetof] = ACTIONS(1410), - [anon_sym_DOLLARqnameof] = ACTIONS(1410), - [anon_sym_DOLLARvaconst] = ACTIONS(1410), - [anon_sym_DOLLARvaarg] = ACTIONS(1410), - [anon_sym_DOLLARvaref] = ACTIONS(1410), - [anon_sym_DOLLARvaexpr] = ACTIONS(1410), - [anon_sym_true] = ACTIONS(1410), - [anon_sym_false] = ACTIONS(1410), - [anon_sym_null] = ACTIONS(1410), - [anon_sym_DOLLARvacount] = ACTIONS(1410), - [anon_sym_DOLLARappend] = ACTIONS(1410), - [anon_sym_DOLLARconcat] = ACTIONS(1410), - [anon_sym_DOLLAReval] = ACTIONS(1410), - [anon_sym_DOLLARis_const] = ACTIONS(1410), - [anon_sym_DOLLARsizeof] = ACTIONS(1410), - [anon_sym_DOLLARstringify] = ACTIONS(1410), - [anon_sym_DOLLARand] = ACTIONS(1410), - [anon_sym_DOLLARdefined] = ACTIONS(1410), - [anon_sym_DOLLARembed] = ACTIONS(1410), - [anon_sym_DOLLARor] = ACTIONS(1410), - [anon_sym_DOLLARfeature] = ACTIONS(1410), - [anon_sym_DOLLARassignable] = ACTIONS(1410), - [anon_sym_BANG] = ACTIONS(1412), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_PLUS_PLUS] = ACTIONS(1412), - [anon_sym_DASH_DASH] = ACTIONS(1412), - [anon_sym_typeid] = ACTIONS(1410), - [anon_sym_LBRACE_PIPE] = ACTIONS(1412), - [anon_sym_void] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_ichar] = ACTIONS(1410), - [anon_sym_short] = ACTIONS(1410), - [anon_sym_ushort] = ACTIONS(1410), - [anon_sym_uint] = ACTIONS(1410), - [anon_sym_long] = ACTIONS(1410), - [anon_sym_ulong] = ACTIONS(1410), - [anon_sym_int128] = ACTIONS(1410), - [anon_sym_uint128] = ACTIONS(1410), - [anon_sym_float] = ACTIONS(1410), - [anon_sym_double] = ACTIONS(1410), - [anon_sym_float16] = ACTIONS(1410), - [anon_sym_bfloat16] = ACTIONS(1410), - [anon_sym_float128] = ACTIONS(1410), - [anon_sym_iptr] = ACTIONS(1410), - [anon_sym_uptr] = ACTIONS(1410), - [anon_sym_isz] = ACTIONS(1410), - [anon_sym_usz] = ACTIONS(1410), - [anon_sym_anyfault] = ACTIONS(1410), - [anon_sym_any] = ACTIONS(1410), - [anon_sym_DOLLARtypeof] = ACTIONS(1410), - [anon_sym_DOLLARtypefrom] = ACTIONS(1410), - [anon_sym_DOLLARvatype] = ACTIONS(1410), - [anon_sym_DOLLARevaltype] = ACTIONS(1410), - [sym_real_literal] = ACTIONS(1412), + [sym_ident] = ACTIONS(1655), + [sym_integer_literal] = ACTIONS(1657), + [anon_sym_SQUOTE] = ACTIONS(1657), + [anon_sym_DQUOTE] = ACTIONS(1657), + [anon_sym_BQUOTE] = ACTIONS(1657), + [sym_bytes_literal] = ACTIONS(1657), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1655), + [sym_at_ident] = ACTIONS(1657), + [sym_hash_ident] = ACTIONS(1657), + [sym_type_ident] = ACTIONS(1657), + [sym_ct_type_ident] = ACTIONS(1657), + [sym_const_ident] = ACTIONS(1655), + [sym_builtin] = ACTIONS(1657), + [anon_sym_LPAREN] = ACTIONS(1657), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_static] = ACTIONS(1655), + [anon_sym_tlocal] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1655), + [anon_sym_LBRACE] = ACTIONS(1655), + [anon_sym_const] = ACTIONS(1655), + [anon_sym_var] = ACTIONS(1655), + [anon_sym_return] = ACTIONS(1655), + [anon_sym_continue] = ACTIONS(1655), + [anon_sym_break] = ACTIONS(1655), + [anon_sym_defer] = ACTIONS(1655), + [anon_sym_assert] = ACTIONS(1655), + [anon_sym_nextcase] = ACTIONS(1655), + [anon_sym_switch] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1657), + [anon_sym_if] = ACTIONS(1655), + [anon_sym_for] = ACTIONS(1655), + [anon_sym_foreach] = ACTIONS(1655), + [anon_sym_foreach_r] = ACTIONS(1655), + [anon_sym_while] = ACTIONS(1655), + [anon_sym_do] = ACTIONS(1655), + [anon_sym_int] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_STAR] = ACTIONS(1657), + [anon_sym_asm] = ACTIONS(1655), + [anon_sym_DOLLARassert] = ACTIONS(1655), + [anon_sym_DOLLARerror] = ACTIONS(1655), + [anon_sym_DOLLARecho] = ACTIONS(1655), + [anon_sym_DOLLARif] = ACTIONS(1655), + [anon_sym_DOLLARswitch] = ACTIONS(1655), + [anon_sym_DOLLARfor] = ACTIONS(1655), + [anon_sym_DOLLARendfor] = ACTIONS(1655), + [anon_sym_DOLLARforeach] = ACTIONS(1655), + [anon_sym_DOLLARalignof] = ACTIONS(1655), + [anon_sym_DOLLARextnameof] = ACTIONS(1655), + [anon_sym_DOLLARnameof] = ACTIONS(1655), + [anon_sym_DOLLARoffsetof] = ACTIONS(1655), + [anon_sym_DOLLARqnameof] = ACTIONS(1655), + [anon_sym_DOLLARvaconst] = ACTIONS(1655), + [anon_sym_DOLLARvaarg] = ACTIONS(1655), + [anon_sym_DOLLARvaref] = ACTIONS(1655), + [anon_sym_DOLLARvaexpr] = ACTIONS(1655), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_null] = ACTIONS(1655), + [anon_sym_DOLLARvacount] = ACTIONS(1655), + [anon_sym_DOLLARappend] = ACTIONS(1655), + [anon_sym_DOLLARconcat] = ACTIONS(1655), + [anon_sym_DOLLAReval] = ACTIONS(1655), + [anon_sym_DOLLARis_const] = ACTIONS(1655), + [anon_sym_DOLLARsizeof] = ACTIONS(1655), + [anon_sym_DOLLARstringify] = ACTIONS(1655), + [anon_sym_DOLLARand] = ACTIONS(1655), + [anon_sym_DOLLARdefined] = ACTIONS(1655), + [anon_sym_DOLLARembed] = ACTIONS(1655), + [anon_sym_DOLLARor] = ACTIONS(1655), + [anon_sym_DOLLARfeature] = ACTIONS(1655), + [anon_sym_DOLLARassignable] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(1657), + [anon_sym_TILDE] = ACTIONS(1657), + [anon_sym_PLUS_PLUS] = ACTIONS(1657), + [anon_sym_DASH_DASH] = ACTIONS(1657), + [anon_sym_typeid] = ACTIONS(1655), + [anon_sym_LBRACE_PIPE] = ACTIONS(1657), + [anon_sym_void] = ACTIONS(1655), + [anon_sym_bool] = ACTIONS(1655), + [anon_sym_char] = ACTIONS(1655), + [anon_sym_ichar] = ACTIONS(1655), + [anon_sym_short] = ACTIONS(1655), + [anon_sym_ushort] = ACTIONS(1655), + [anon_sym_uint] = ACTIONS(1655), + [anon_sym_long] = ACTIONS(1655), + [anon_sym_ulong] = ACTIONS(1655), + [anon_sym_int128] = ACTIONS(1655), + [anon_sym_uint128] = ACTIONS(1655), + [anon_sym_float] = ACTIONS(1655), + [anon_sym_double] = ACTIONS(1655), + [anon_sym_float16] = ACTIONS(1655), + [anon_sym_bfloat16] = ACTIONS(1655), + [anon_sym_float128] = ACTIONS(1655), + [anon_sym_iptr] = ACTIONS(1655), + [anon_sym_uptr] = ACTIONS(1655), + [anon_sym_isz] = ACTIONS(1655), + [anon_sym_usz] = ACTIONS(1655), + [anon_sym_anyfault] = ACTIONS(1655), + [anon_sym_any] = ACTIONS(1655), + [anon_sym_DOLLARtypeof] = ACTIONS(1655), + [anon_sym_DOLLARtypefrom] = ACTIONS(1655), + [anon_sym_DOLLARvatype] = ACTIONS(1655), + [anon_sym_DOLLARevaltype] = ACTIONS(1655), + [sym_real_literal] = ACTIONS(1657), }, [598] = { [sym_line_comment] = STATE(598), [sym_doc_comment] = STATE(598), [sym_block_comment] = STATE(598), - [sym_ident] = ACTIONS(1600), - [sym_integer_literal] = ACTIONS(1602), - [anon_sym_SQUOTE] = ACTIONS(1602), - [anon_sym_DQUOTE] = ACTIONS(1602), - [anon_sym_BQUOTE] = ACTIONS(1602), - [sym_bytes_literal] = ACTIONS(1602), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1600), - [sym_at_ident] = ACTIONS(1602), - [sym_hash_ident] = ACTIONS(1602), - [sym_type_ident] = ACTIONS(1602), - [sym_ct_type_ident] = ACTIONS(1602), - [sym_const_ident] = ACTIONS(1600), - [sym_builtin] = ACTIONS(1602), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_AMP] = ACTIONS(1600), - [anon_sym_static] = ACTIONS(1600), - [anon_sym_tlocal] = ACTIONS(1600), - [anon_sym_SEMI] = ACTIONS(1602), - [anon_sym_fn] = ACTIONS(1600), - [anon_sym_LBRACE] = ACTIONS(1600), - [anon_sym_const] = ACTIONS(1600), - [anon_sym_var] = ACTIONS(1600), - [anon_sym_return] = ACTIONS(1600), - [anon_sym_continue] = ACTIONS(1600), - [anon_sym_break] = ACTIONS(1600), - [anon_sym_defer] = ACTIONS(1600), - [anon_sym_assert] = ACTIONS(1600), - [anon_sym_nextcase] = ACTIONS(1600), - [anon_sym_switch] = ACTIONS(1600), - [anon_sym_AMP_AMP] = ACTIONS(1602), - [anon_sym_if] = ACTIONS(1600), - [anon_sym_for] = ACTIONS(1600), - [anon_sym_foreach] = ACTIONS(1600), - [anon_sym_foreach_r] = ACTIONS(1600), - [anon_sym_while] = ACTIONS(1600), - [anon_sym_do] = ACTIONS(1600), - [anon_sym_int] = ACTIONS(1600), - [anon_sym_PLUS] = ACTIONS(1600), - [anon_sym_DASH] = ACTIONS(1600), - [anon_sym_STAR] = ACTIONS(1602), - [anon_sym_asm] = ACTIONS(1600), - [anon_sym_DOLLARassert] = ACTIONS(1600), - [anon_sym_DOLLARerror] = ACTIONS(1600), - [anon_sym_DOLLARecho] = ACTIONS(1600), - [anon_sym_DOLLARif] = ACTIONS(1600), - [anon_sym_DOLLARendif] = ACTIONS(1600), - [anon_sym_DOLLARelse] = ACTIONS(1600), - [anon_sym_DOLLARswitch] = ACTIONS(1600), - [anon_sym_DOLLARfor] = ACTIONS(1600), - [anon_sym_DOLLARforeach] = ACTIONS(1600), - [anon_sym_DOLLARalignof] = ACTIONS(1600), - [anon_sym_DOLLARextnameof] = ACTIONS(1600), - [anon_sym_DOLLARnameof] = ACTIONS(1600), - [anon_sym_DOLLARoffsetof] = ACTIONS(1600), - [anon_sym_DOLLARqnameof] = ACTIONS(1600), - [anon_sym_DOLLARvaconst] = ACTIONS(1600), - [anon_sym_DOLLARvaarg] = ACTIONS(1600), - [anon_sym_DOLLARvaref] = ACTIONS(1600), - [anon_sym_DOLLARvaexpr] = ACTIONS(1600), - [anon_sym_true] = ACTIONS(1600), - [anon_sym_false] = ACTIONS(1600), - [anon_sym_null] = ACTIONS(1600), - [anon_sym_DOLLARvacount] = ACTIONS(1600), - [anon_sym_DOLLARappend] = ACTIONS(1600), - [anon_sym_DOLLARconcat] = ACTIONS(1600), - [anon_sym_DOLLAReval] = ACTIONS(1600), - [anon_sym_DOLLARis_const] = ACTIONS(1600), - [anon_sym_DOLLARsizeof] = ACTIONS(1600), - [anon_sym_DOLLARstringify] = ACTIONS(1600), - [anon_sym_DOLLARand] = ACTIONS(1600), - [anon_sym_DOLLARdefined] = ACTIONS(1600), - [anon_sym_DOLLARembed] = ACTIONS(1600), - [anon_sym_DOLLARor] = ACTIONS(1600), - [anon_sym_DOLLARfeature] = ACTIONS(1600), - [anon_sym_DOLLARassignable] = ACTIONS(1600), - [anon_sym_BANG] = ACTIONS(1602), - [anon_sym_TILDE] = ACTIONS(1602), - [anon_sym_PLUS_PLUS] = ACTIONS(1602), - [anon_sym_DASH_DASH] = ACTIONS(1602), - [anon_sym_typeid] = ACTIONS(1600), - [anon_sym_LBRACE_PIPE] = ACTIONS(1602), - [anon_sym_void] = ACTIONS(1600), - [anon_sym_bool] = ACTIONS(1600), - [anon_sym_char] = ACTIONS(1600), - [anon_sym_ichar] = ACTIONS(1600), - [anon_sym_short] = ACTIONS(1600), - [anon_sym_ushort] = ACTIONS(1600), - [anon_sym_uint] = ACTIONS(1600), - [anon_sym_long] = ACTIONS(1600), - [anon_sym_ulong] = ACTIONS(1600), - [anon_sym_int128] = ACTIONS(1600), - [anon_sym_uint128] = ACTIONS(1600), - [anon_sym_float] = ACTIONS(1600), - [anon_sym_double] = ACTIONS(1600), - [anon_sym_float16] = ACTIONS(1600), - [anon_sym_bfloat16] = ACTIONS(1600), - [anon_sym_float128] = ACTIONS(1600), - [anon_sym_iptr] = ACTIONS(1600), - [anon_sym_uptr] = ACTIONS(1600), - [anon_sym_isz] = ACTIONS(1600), - [anon_sym_usz] = ACTIONS(1600), - [anon_sym_anyfault] = ACTIONS(1600), - [anon_sym_any] = ACTIONS(1600), - [anon_sym_DOLLARtypeof] = ACTIONS(1600), - [anon_sym_DOLLARtypefrom] = ACTIONS(1600), - [anon_sym_DOLLARvatype] = ACTIONS(1600), - [anon_sym_DOLLARevaltype] = ACTIONS(1600), - [sym_real_literal] = ACTIONS(1602), + [sym_ident] = ACTIONS(1659), + [sym_integer_literal] = ACTIONS(1661), + [anon_sym_SQUOTE] = ACTIONS(1661), + [anon_sym_DQUOTE] = ACTIONS(1661), + [anon_sym_BQUOTE] = ACTIONS(1661), + [sym_bytes_literal] = ACTIONS(1661), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1659), + [sym_at_ident] = ACTIONS(1661), + [sym_hash_ident] = ACTIONS(1661), + [sym_type_ident] = ACTIONS(1661), + [sym_ct_type_ident] = ACTIONS(1661), + [sym_const_ident] = ACTIONS(1659), + [sym_builtin] = ACTIONS(1661), + [anon_sym_LPAREN] = ACTIONS(1661), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_static] = ACTIONS(1659), + [anon_sym_tlocal] = ACTIONS(1659), + [anon_sym_SEMI] = ACTIONS(1661), + [anon_sym_fn] = ACTIONS(1659), + [anon_sym_LBRACE] = ACTIONS(1659), + [anon_sym_const] = ACTIONS(1659), + [anon_sym_var] = ACTIONS(1659), + [anon_sym_return] = ACTIONS(1659), + [anon_sym_continue] = ACTIONS(1659), + [anon_sym_break] = ACTIONS(1659), + [anon_sym_defer] = ACTIONS(1659), + [anon_sym_assert] = ACTIONS(1659), + [anon_sym_nextcase] = ACTIONS(1659), + [anon_sym_switch] = ACTIONS(1659), + [anon_sym_AMP_AMP] = ACTIONS(1661), + [anon_sym_if] = ACTIONS(1659), + [anon_sym_for] = ACTIONS(1659), + [anon_sym_foreach] = ACTIONS(1659), + [anon_sym_foreach_r] = ACTIONS(1659), + [anon_sym_while] = ACTIONS(1659), + [anon_sym_do] = ACTIONS(1659), + [anon_sym_int] = ACTIONS(1659), + [anon_sym_PLUS] = ACTIONS(1659), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_STAR] = ACTIONS(1661), + [anon_sym_asm] = ACTIONS(1659), + [anon_sym_DOLLARassert] = ACTIONS(1659), + [anon_sym_DOLLARerror] = ACTIONS(1659), + [anon_sym_DOLLARecho] = ACTIONS(1659), + [anon_sym_DOLLARif] = ACTIONS(1659), + [anon_sym_DOLLARswitch] = ACTIONS(1659), + [anon_sym_DOLLARfor] = ACTIONS(1659), + [anon_sym_DOLLARendfor] = ACTIONS(1659), + [anon_sym_DOLLARforeach] = ACTIONS(1659), + [anon_sym_DOLLARalignof] = ACTIONS(1659), + [anon_sym_DOLLARextnameof] = ACTIONS(1659), + [anon_sym_DOLLARnameof] = ACTIONS(1659), + [anon_sym_DOLLARoffsetof] = ACTIONS(1659), + [anon_sym_DOLLARqnameof] = ACTIONS(1659), + [anon_sym_DOLLARvaconst] = ACTIONS(1659), + [anon_sym_DOLLARvaarg] = ACTIONS(1659), + [anon_sym_DOLLARvaref] = ACTIONS(1659), + [anon_sym_DOLLARvaexpr] = ACTIONS(1659), + [anon_sym_true] = ACTIONS(1659), + [anon_sym_false] = ACTIONS(1659), + [anon_sym_null] = ACTIONS(1659), + [anon_sym_DOLLARvacount] = ACTIONS(1659), + [anon_sym_DOLLARappend] = ACTIONS(1659), + [anon_sym_DOLLARconcat] = ACTIONS(1659), + [anon_sym_DOLLAReval] = ACTIONS(1659), + [anon_sym_DOLLARis_const] = ACTIONS(1659), + [anon_sym_DOLLARsizeof] = ACTIONS(1659), + [anon_sym_DOLLARstringify] = ACTIONS(1659), + [anon_sym_DOLLARand] = ACTIONS(1659), + [anon_sym_DOLLARdefined] = ACTIONS(1659), + [anon_sym_DOLLARembed] = ACTIONS(1659), + [anon_sym_DOLLARor] = ACTIONS(1659), + [anon_sym_DOLLARfeature] = ACTIONS(1659), + [anon_sym_DOLLARassignable] = ACTIONS(1659), + [anon_sym_BANG] = ACTIONS(1661), + [anon_sym_TILDE] = ACTIONS(1661), + [anon_sym_PLUS_PLUS] = ACTIONS(1661), + [anon_sym_DASH_DASH] = ACTIONS(1661), + [anon_sym_typeid] = ACTIONS(1659), + [anon_sym_LBRACE_PIPE] = ACTIONS(1661), + [anon_sym_void] = ACTIONS(1659), + [anon_sym_bool] = ACTIONS(1659), + [anon_sym_char] = ACTIONS(1659), + [anon_sym_ichar] = ACTIONS(1659), + [anon_sym_short] = ACTIONS(1659), + [anon_sym_ushort] = ACTIONS(1659), + [anon_sym_uint] = ACTIONS(1659), + [anon_sym_long] = ACTIONS(1659), + [anon_sym_ulong] = ACTIONS(1659), + [anon_sym_int128] = ACTIONS(1659), + [anon_sym_uint128] = ACTIONS(1659), + [anon_sym_float] = ACTIONS(1659), + [anon_sym_double] = ACTIONS(1659), + [anon_sym_float16] = ACTIONS(1659), + [anon_sym_bfloat16] = ACTIONS(1659), + [anon_sym_float128] = ACTIONS(1659), + [anon_sym_iptr] = ACTIONS(1659), + [anon_sym_uptr] = ACTIONS(1659), + [anon_sym_isz] = ACTIONS(1659), + [anon_sym_usz] = ACTIONS(1659), + [anon_sym_anyfault] = ACTIONS(1659), + [anon_sym_any] = ACTIONS(1659), + [anon_sym_DOLLARtypeof] = ACTIONS(1659), + [anon_sym_DOLLARtypefrom] = ACTIONS(1659), + [anon_sym_DOLLARvatype] = ACTIONS(1659), + [anon_sym_DOLLARevaltype] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1661), }, [599] = { [sym_line_comment] = STATE(599), [sym_doc_comment] = STATE(599), [sym_block_comment] = STATE(599), - [sym_ident] = ACTIONS(1596), - [sym_integer_literal] = ACTIONS(1598), - [anon_sym_SQUOTE] = ACTIONS(1598), - [anon_sym_DQUOTE] = ACTIONS(1598), - [anon_sym_BQUOTE] = ACTIONS(1598), - [sym_bytes_literal] = ACTIONS(1598), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1596), - [sym_at_ident] = ACTIONS(1598), - [sym_hash_ident] = ACTIONS(1598), - [sym_type_ident] = ACTIONS(1598), - [sym_ct_type_ident] = ACTIONS(1598), - [sym_const_ident] = ACTIONS(1596), - [sym_builtin] = ACTIONS(1598), - [anon_sym_LPAREN] = ACTIONS(1598), - [anon_sym_AMP] = ACTIONS(1596), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_tlocal] = ACTIONS(1596), - [anon_sym_SEMI] = ACTIONS(1598), - [anon_sym_fn] = ACTIONS(1596), - [anon_sym_LBRACE] = ACTIONS(1596), - [anon_sym_const] = ACTIONS(1596), - [anon_sym_var] = ACTIONS(1596), - [anon_sym_return] = ACTIONS(1596), - [anon_sym_continue] = ACTIONS(1596), - [anon_sym_break] = ACTIONS(1596), - [anon_sym_defer] = ACTIONS(1596), - [anon_sym_assert] = ACTIONS(1596), - [anon_sym_nextcase] = ACTIONS(1596), - [anon_sym_switch] = ACTIONS(1596), - [anon_sym_AMP_AMP] = ACTIONS(1598), - [anon_sym_if] = ACTIONS(1596), - [anon_sym_for] = ACTIONS(1596), - [anon_sym_foreach] = ACTIONS(1596), - [anon_sym_foreach_r] = ACTIONS(1596), - [anon_sym_while] = ACTIONS(1596), - [anon_sym_do] = ACTIONS(1596), - [anon_sym_int] = ACTIONS(1596), - [anon_sym_PLUS] = ACTIONS(1596), - [anon_sym_DASH] = ACTIONS(1596), - [anon_sym_STAR] = ACTIONS(1598), - [anon_sym_asm] = ACTIONS(1596), - [anon_sym_DOLLARassert] = ACTIONS(1596), - [anon_sym_DOLLARerror] = ACTIONS(1596), - [anon_sym_DOLLARecho] = ACTIONS(1596), - [anon_sym_DOLLARif] = ACTIONS(1596), - [anon_sym_DOLLARendif] = ACTIONS(1596), - [anon_sym_DOLLARelse] = ACTIONS(1596), - [anon_sym_DOLLARswitch] = ACTIONS(1596), - [anon_sym_DOLLARfor] = ACTIONS(1596), - [anon_sym_DOLLARforeach] = ACTIONS(1596), - [anon_sym_DOLLARalignof] = ACTIONS(1596), - [anon_sym_DOLLARextnameof] = ACTIONS(1596), - [anon_sym_DOLLARnameof] = ACTIONS(1596), - [anon_sym_DOLLARoffsetof] = ACTIONS(1596), - [anon_sym_DOLLARqnameof] = ACTIONS(1596), - [anon_sym_DOLLARvaconst] = ACTIONS(1596), - [anon_sym_DOLLARvaarg] = ACTIONS(1596), - [anon_sym_DOLLARvaref] = ACTIONS(1596), - [anon_sym_DOLLARvaexpr] = ACTIONS(1596), - [anon_sym_true] = ACTIONS(1596), - [anon_sym_false] = ACTIONS(1596), - [anon_sym_null] = ACTIONS(1596), - [anon_sym_DOLLARvacount] = ACTIONS(1596), - [anon_sym_DOLLARappend] = ACTIONS(1596), - [anon_sym_DOLLARconcat] = ACTIONS(1596), - [anon_sym_DOLLAReval] = ACTIONS(1596), - [anon_sym_DOLLARis_const] = ACTIONS(1596), - [anon_sym_DOLLARsizeof] = ACTIONS(1596), - [anon_sym_DOLLARstringify] = ACTIONS(1596), - [anon_sym_DOLLARand] = ACTIONS(1596), - [anon_sym_DOLLARdefined] = ACTIONS(1596), - [anon_sym_DOLLARembed] = ACTIONS(1596), - [anon_sym_DOLLARor] = ACTIONS(1596), - [anon_sym_DOLLARfeature] = ACTIONS(1596), - [anon_sym_DOLLARassignable] = ACTIONS(1596), - [anon_sym_BANG] = ACTIONS(1598), - [anon_sym_TILDE] = ACTIONS(1598), - [anon_sym_PLUS_PLUS] = ACTIONS(1598), - [anon_sym_DASH_DASH] = ACTIONS(1598), - [anon_sym_typeid] = ACTIONS(1596), - [anon_sym_LBRACE_PIPE] = ACTIONS(1598), - [anon_sym_void] = ACTIONS(1596), - [anon_sym_bool] = ACTIONS(1596), - [anon_sym_char] = ACTIONS(1596), - [anon_sym_ichar] = ACTIONS(1596), - [anon_sym_short] = ACTIONS(1596), - [anon_sym_ushort] = ACTIONS(1596), - [anon_sym_uint] = ACTIONS(1596), - [anon_sym_long] = ACTIONS(1596), - [anon_sym_ulong] = ACTIONS(1596), - [anon_sym_int128] = ACTIONS(1596), - [anon_sym_uint128] = ACTIONS(1596), - [anon_sym_float] = ACTIONS(1596), - [anon_sym_double] = ACTIONS(1596), - [anon_sym_float16] = ACTIONS(1596), - [anon_sym_bfloat16] = ACTIONS(1596), - [anon_sym_float128] = ACTIONS(1596), - [anon_sym_iptr] = ACTIONS(1596), - [anon_sym_uptr] = ACTIONS(1596), - [anon_sym_isz] = ACTIONS(1596), - [anon_sym_usz] = ACTIONS(1596), - [anon_sym_anyfault] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_DOLLARtypeof] = ACTIONS(1596), - [anon_sym_DOLLARtypefrom] = ACTIONS(1596), - [anon_sym_DOLLARvatype] = ACTIONS(1596), - [anon_sym_DOLLARevaltype] = ACTIONS(1596), - [sym_real_literal] = ACTIONS(1598), + [sym_ident] = ACTIONS(1663), + [sym_integer_literal] = ACTIONS(1665), + [anon_sym_SQUOTE] = ACTIONS(1665), + [anon_sym_DQUOTE] = ACTIONS(1665), + [anon_sym_BQUOTE] = ACTIONS(1665), + [sym_bytes_literal] = ACTIONS(1665), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1663), + [sym_at_ident] = ACTIONS(1665), + [sym_hash_ident] = ACTIONS(1665), + [sym_type_ident] = ACTIONS(1665), + [sym_ct_type_ident] = ACTIONS(1665), + [sym_const_ident] = ACTIONS(1663), + [sym_builtin] = ACTIONS(1665), + [anon_sym_LPAREN] = ACTIONS(1665), + [anon_sym_AMP] = ACTIONS(1663), + [anon_sym_static] = ACTIONS(1663), + [anon_sym_tlocal] = ACTIONS(1663), + [anon_sym_SEMI] = ACTIONS(1665), + [anon_sym_fn] = ACTIONS(1663), + [anon_sym_LBRACE] = ACTIONS(1663), + [anon_sym_const] = ACTIONS(1663), + [anon_sym_var] = ACTIONS(1663), + [anon_sym_return] = ACTIONS(1663), + [anon_sym_continue] = ACTIONS(1663), + [anon_sym_break] = ACTIONS(1663), + [anon_sym_defer] = ACTIONS(1663), + [anon_sym_assert] = ACTIONS(1663), + [anon_sym_nextcase] = ACTIONS(1663), + [anon_sym_switch] = ACTIONS(1663), + [anon_sym_AMP_AMP] = ACTIONS(1665), + [anon_sym_if] = ACTIONS(1663), + [anon_sym_for] = ACTIONS(1663), + [anon_sym_foreach] = ACTIONS(1663), + [anon_sym_foreach_r] = ACTIONS(1663), + [anon_sym_while] = ACTIONS(1663), + [anon_sym_do] = ACTIONS(1663), + [anon_sym_int] = ACTIONS(1663), + [anon_sym_PLUS] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1665), + [anon_sym_asm] = ACTIONS(1663), + [anon_sym_DOLLARassert] = ACTIONS(1663), + [anon_sym_DOLLARerror] = ACTIONS(1663), + [anon_sym_DOLLARecho] = ACTIONS(1663), + [anon_sym_DOLLARif] = ACTIONS(1663), + [anon_sym_DOLLARswitch] = ACTIONS(1663), + [anon_sym_DOLLARfor] = ACTIONS(1663), + [anon_sym_DOLLARendfor] = ACTIONS(1663), + [anon_sym_DOLLARforeach] = ACTIONS(1663), + [anon_sym_DOLLARalignof] = ACTIONS(1663), + [anon_sym_DOLLARextnameof] = ACTIONS(1663), + [anon_sym_DOLLARnameof] = ACTIONS(1663), + [anon_sym_DOLLARoffsetof] = ACTIONS(1663), + [anon_sym_DOLLARqnameof] = ACTIONS(1663), + [anon_sym_DOLLARvaconst] = ACTIONS(1663), + [anon_sym_DOLLARvaarg] = ACTIONS(1663), + [anon_sym_DOLLARvaref] = ACTIONS(1663), + [anon_sym_DOLLARvaexpr] = ACTIONS(1663), + [anon_sym_true] = ACTIONS(1663), + [anon_sym_false] = ACTIONS(1663), + [anon_sym_null] = ACTIONS(1663), + [anon_sym_DOLLARvacount] = ACTIONS(1663), + [anon_sym_DOLLARappend] = ACTIONS(1663), + [anon_sym_DOLLARconcat] = ACTIONS(1663), + [anon_sym_DOLLAReval] = ACTIONS(1663), + [anon_sym_DOLLARis_const] = ACTIONS(1663), + [anon_sym_DOLLARsizeof] = ACTIONS(1663), + [anon_sym_DOLLARstringify] = ACTIONS(1663), + [anon_sym_DOLLARand] = ACTIONS(1663), + [anon_sym_DOLLARdefined] = ACTIONS(1663), + [anon_sym_DOLLARembed] = ACTIONS(1663), + [anon_sym_DOLLARor] = ACTIONS(1663), + [anon_sym_DOLLARfeature] = ACTIONS(1663), + [anon_sym_DOLLARassignable] = ACTIONS(1663), + [anon_sym_BANG] = ACTIONS(1665), + [anon_sym_TILDE] = ACTIONS(1665), + [anon_sym_PLUS_PLUS] = ACTIONS(1665), + [anon_sym_DASH_DASH] = ACTIONS(1665), + [anon_sym_typeid] = ACTIONS(1663), + [anon_sym_LBRACE_PIPE] = ACTIONS(1665), + [anon_sym_void] = ACTIONS(1663), + [anon_sym_bool] = ACTIONS(1663), + [anon_sym_char] = ACTIONS(1663), + [anon_sym_ichar] = ACTIONS(1663), + [anon_sym_short] = ACTIONS(1663), + [anon_sym_ushort] = ACTIONS(1663), + [anon_sym_uint] = ACTIONS(1663), + [anon_sym_long] = ACTIONS(1663), + [anon_sym_ulong] = ACTIONS(1663), + [anon_sym_int128] = ACTIONS(1663), + [anon_sym_uint128] = ACTIONS(1663), + [anon_sym_float] = ACTIONS(1663), + [anon_sym_double] = ACTIONS(1663), + [anon_sym_float16] = ACTIONS(1663), + [anon_sym_bfloat16] = ACTIONS(1663), + [anon_sym_float128] = ACTIONS(1663), + [anon_sym_iptr] = ACTIONS(1663), + [anon_sym_uptr] = ACTIONS(1663), + [anon_sym_isz] = ACTIONS(1663), + [anon_sym_usz] = ACTIONS(1663), + [anon_sym_anyfault] = ACTIONS(1663), + [anon_sym_any] = ACTIONS(1663), + [anon_sym_DOLLARtypeof] = ACTIONS(1663), + [anon_sym_DOLLARtypefrom] = ACTIONS(1663), + [anon_sym_DOLLARvatype] = ACTIONS(1663), + [anon_sym_DOLLARevaltype] = ACTIONS(1663), + [sym_real_literal] = ACTIONS(1665), }, [600] = { [sym_line_comment] = STATE(600), [sym_doc_comment] = STATE(600), [sym_block_comment] = STATE(600), - [sym_ident] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(1594), - [anon_sym_SQUOTE] = ACTIONS(1594), - [anon_sym_DQUOTE] = ACTIONS(1594), - [anon_sym_BQUOTE] = ACTIONS(1594), - [sym_bytes_literal] = ACTIONS(1594), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1592), - [sym_at_ident] = ACTIONS(1594), - [sym_hash_ident] = ACTIONS(1594), - [sym_type_ident] = ACTIONS(1594), - [sym_ct_type_ident] = ACTIONS(1594), - [sym_const_ident] = ACTIONS(1592), - [sym_builtin] = ACTIONS(1594), - [anon_sym_LPAREN] = ACTIONS(1594), - [anon_sym_AMP] = ACTIONS(1592), - [anon_sym_static] = ACTIONS(1592), - [anon_sym_tlocal] = ACTIONS(1592), - [anon_sym_SEMI] = ACTIONS(1594), - [anon_sym_fn] = ACTIONS(1592), - [anon_sym_LBRACE] = ACTIONS(1592), - [anon_sym_const] = ACTIONS(1592), - [anon_sym_var] = ACTIONS(1592), - [anon_sym_return] = ACTIONS(1592), - [anon_sym_continue] = ACTIONS(1592), - [anon_sym_break] = ACTIONS(1592), - [anon_sym_defer] = ACTIONS(1592), - [anon_sym_assert] = ACTIONS(1592), - [anon_sym_nextcase] = ACTIONS(1592), - [anon_sym_switch] = ACTIONS(1592), - [anon_sym_AMP_AMP] = ACTIONS(1594), - [anon_sym_if] = ACTIONS(1592), - [anon_sym_for] = ACTIONS(1592), - [anon_sym_foreach] = ACTIONS(1592), - [anon_sym_foreach_r] = ACTIONS(1592), - [anon_sym_while] = ACTIONS(1592), - [anon_sym_do] = ACTIONS(1592), - [anon_sym_int] = ACTIONS(1592), - [anon_sym_PLUS] = ACTIONS(1592), - [anon_sym_DASH] = ACTIONS(1592), - [anon_sym_STAR] = ACTIONS(1594), - [anon_sym_asm] = ACTIONS(1592), - [anon_sym_DOLLARassert] = ACTIONS(1592), - [anon_sym_DOLLARerror] = ACTIONS(1592), - [anon_sym_DOLLARecho] = ACTIONS(1592), - [anon_sym_DOLLARif] = ACTIONS(1592), - [anon_sym_DOLLARendif] = ACTIONS(1592), - [anon_sym_DOLLARelse] = ACTIONS(1592), - [anon_sym_DOLLARswitch] = ACTIONS(1592), - [anon_sym_DOLLARfor] = ACTIONS(1592), - [anon_sym_DOLLARforeach] = ACTIONS(1592), - [anon_sym_DOLLARalignof] = ACTIONS(1592), - [anon_sym_DOLLARextnameof] = ACTIONS(1592), - [anon_sym_DOLLARnameof] = ACTIONS(1592), - [anon_sym_DOLLARoffsetof] = ACTIONS(1592), - [anon_sym_DOLLARqnameof] = ACTIONS(1592), - [anon_sym_DOLLARvaconst] = ACTIONS(1592), - [anon_sym_DOLLARvaarg] = ACTIONS(1592), - [anon_sym_DOLLARvaref] = ACTIONS(1592), - [anon_sym_DOLLARvaexpr] = ACTIONS(1592), - [anon_sym_true] = ACTIONS(1592), - [anon_sym_false] = ACTIONS(1592), - [anon_sym_null] = ACTIONS(1592), - [anon_sym_DOLLARvacount] = ACTIONS(1592), - [anon_sym_DOLLARappend] = ACTIONS(1592), - [anon_sym_DOLLARconcat] = ACTIONS(1592), - [anon_sym_DOLLAReval] = ACTIONS(1592), - [anon_sym_DOLLARis_const] = ACTIONS(1592), - [anon_sym_DOLLARsizeof] = ACTIONS(1592), - [anon_sym_DOLLARstringify] = ACTIONS(1592), - [anon_sym_DOLLARand] = ACTIONS(1592), - [anon_sym_DOLLARdefined] = ACTIONS(1592), - [anon_sym_DOLLARembed] = ACTIONS(1592), - [anon_sym_DOLLARor] = ACTIONS(1592), - [anon_sym_DOLLARfeature] = ACTIONS(1592), - [anon_sym_DOLLARassignable] = ACTIONS(1592), - [anon_sym_BANG] = ACTIONS(1594), - [anon_sym_TILDE] = ACTIONS(1594), - [anon_sym_PLUS_PLUS] = ACTIONS(1594), - [anon_sym_DASH_DASH] = ACTIONS(1594), - [anon_sym_typeid] = ACTIONS(1592), - [anon_sym_LBRACE_PIPE] = ACTIONS(1594), - [anon_sym_void] = ACTIONS(1592), - [anon_sym_bool] = ACTIONS(1592), - [anon_sym_char] = ACTIONS(1592), - [anon_sym_ichar] = ACTIONS(1592), - [anon_sym_short] = ACTIONS(1592), - [anon_sym_ushort] = ACTIONS(1592), - [anon_sym_uint] = ACTIONS(1592), - [anon_sym_long] = ACTIONS(1592), - [anon_sym_ulong] = ACTIONS(1592), - [anon_sym_int128] = ACTIONS(1592), - [anon_sym_uint128] = ACTIONS(1592), - [anon_sym_float] = ACTIONS(1592), - [anon_sym_double] = ACTIONS(1592), - [anon_sym_float16] = ACTIONS(1592), - [anon_sym_bfloat16] = ACTIONS(1592), - [anon_sym_float128] = ACTIONS(1592), - [anon_sym_iptr] = ACTIONS(1592), - [anon_sym_uptr] = ACTIONS(1592), - [anon_sym_isz] = ACTIONS(1592), - [anon_sym_usz] = ACTIONS(1592), - [anon_sym_anyfault] = ACTIONS(1592), - [anon_sym_any] = ACTIONS(1592), - [anon_sym_DOLLARtypeof] = ACTIONS(1592), - [anon_sym_DOLLARtypefrom] = ACTIONS(1592), - [anon_sym_DOLLARvatype] = ACTIONS(1592), - [anon_sym_DOLLARevaltype] = ACTIONS(1592), - [sym_real_literal] = ACTIONS(1594), + [sym_ident] = ACTIONS(1629), + [sym_integer_literal] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1631), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_BQUOTE] = ACTIONS(1631), + [sym_bytes_literal] = ACTIONS(1631), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1629), + [sym_at_ident] = ACTIONS(1631), + [sym_hash_ident] = ACTIONS(1631), + [sym_type_ident] = ACTIONS(1631), + [sym_ct_type_ident] = ACTIONS(1631), + [sym_const_ident] = ACTIONS(1629), + [sym_builtin] = ACTIONS(1631), + [anon_sym_LPAREN] = ACTIONS(1631), + [anon_sym_AMP] = ACTIONS(1629), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_tlocal] = ACTIONS(1629), + [anon_sym_SEMI] = ACTIONS(1631), + [anon_sym_fn] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1629), + [anon_sym_const] = ACTIONS(1629), + [anon_sym_var] = ACTIONS(1629), + [anon_sym_return] = ACTIONS(1629), + [anon_sym_continue] = ACTIONS(1629), + [anon_sym_break] = ACTIONS(1629), + [anon_sym_defer] = ACTIONS(1629), + [anon_sym_assert] = ACTIONS(1629), + [anon_sym_nextcase] = ACTIONS(1629), + [anon_sym_switch] = ACTIONS(1629), + [anon_sym_AMP_AMP] = ACTIONS(1631), + [anon_sym_if] = ACTIONS(1629), + [anon_sym_for] = ACTIONS(1629), + [anon_sym_foreach] = ACTIONS(1629), + [anon_sym_foreach_r] = ACTIONS(1629), + [anon_sym_while] = ACTIONS(1629), + [anon_sym_do] = ACTIONS(1629), + [anon_sym_int] = ACTIONS(1629), + [anon_sym_PLUS] = ACTIONS(1629), + [anon_sym_DASH] = ACTIONS(1629), + [anon_sym_STAR] = ACTIONS(1631), + [anon_sym_asm] = ACTIONS(1629), + [anon_sym_DOLLARassert] = ACTIONS(1629), + [anon_sym_DOLLARerror] = ACTIONS(1629), + [anon_sym_DOLLARecho] = ACTIONS(1629), + [anon_sym_DOLLARif] = ACTIONS(1629), + [anon_sym_DOLLARswitch] = ACTIONS(1629), + [anon_sym_DOLLARfor] = ACTIONS(1629), + [anon_sym_DOLLARendfor] = ACTIONS(1629), + [anon_sym_DOLLARforeach] = ACTIONS(1629), + [anon_sym_DOLLARalignof] = ACTIONS(1629), + [anon_sym_DOLLARextnameof] = ACTIONS(1629), + [anon_sym_DOLLARnameof] = ACTIONS(1629), + [anon_sym_DOLLARoffsetof] = ACTIONS(1629), + [anon_sym_DOLLARqnameof] = ACTIONS(1629), + [anon_sym_DOLLARvaconst] = ACTIONS(1629), + [anon_sym_DOLLARvaarg] = ACTIONS(1629), + [anon_sym_DOLLARvaref] = ACTIONS(1629), + [anon_sym_DOLLARvaexpr] = ACTIONS(1629), + [anon_sym_true] = ACTIONS(1629), + [anon_sym_false] = ACTIONS(1629), + [anon_sym_null] = ACTIONS(1629), + [anon_sym_DOLLARvacount] = ACTIONS(1629), + [anon_sym_DOLLARappend] = ACTIONS(1629), + [anon_sym_DOLLARconcat] = ACTIONS(1629), + [anon_sym_DOLLAReval] = ACTIONS(1629), + [anon_sym_DOLLARis_const] = ACTIONS(1629), + [anon_sym_DOLLARsizeof] = ACTIONS(1629), + [anon_sym_DOLLARstringify] = ACTIONS(1629), + [anon_sym_DOLLARand] = ACTIONS(1629), + [anon_sym_DOLLARdefined] = ACTIONS(1629), + [anon_sym_DOLLARembed] = ACTIONS(1629), + [anon_sym_DOLLARor] = ACTIONS(1629), + [anon_sym_DOLLARfeature] = ACTIONS(1629), + [anon_sym_DOLLARassignable] = ACTIONS(1629), + [anon_sym_BANG] = ACTIONS(1631), + [anon_sym_TILDE] = ACTIONS(1631), + [anon_sym_PLUS_PLUS] = ACTIONS(1631), + [anon_sym_DASH_DASH] = ACTIONS(1631), + [anon_sym_typeid] = ACTIONS(1629), + [anon_sym_LBRACE_PIPE] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1629), + [anon_sym_bool] = ACTIONS(1629), + [anon_sym_char] = ACTIONS(1629), + [anon_sym_ichar] = ACTIONS(1629), + [anon_sym_short] = ACTIONS(1629), + [anon_sym_ushort] = ACTIONS(1629), + [anon_sym_uint] = ACTIONS(1629), + [anon_sym_long] = ACTIONS(1629), + [anon_sym_ulong] = ACTIONS(1629), + [anon_sym_int128] = ACTIONS(1629), + [anon_sym_uint128] = ACTIONS(1629), + [anon_sym_float] = ACTIONS(1629), + [anon_sym_double] = ACTIONS(1629), + [anon_sym_float16] = ACTIONS(1629), + [anon_sym_bfloat16] = ACTIONS(1629), + [anon_sym_float128] = ACTIONS(1629), + [anon_sym_iptr] = ACTIONS(1629), + [anon_sym_uptr] = ACTIONS(1629), + [anon_sym_isz] = ACTIONS(1629), + [anon_sym_usz] = ACTIONS(1629), + [anon_sym_anyfault] = ACTIONS(1629), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_DOLLARtypeof] = ACTIONS(1629), + [anon_sym_DOLLARtypefrom] = ACTIONS(1629), + [anon_sym_DOLLARvatype] = ACTIONS(1629), + [anon_sym_DOLLARevaltype] = ACTIONS(1629), + [sym_real_literal] = ACTIONS(1631), }, [601] = { [sym_line_comment] = STATE(601), [sym_doc_comment] = STATE(601), [sym_block_comment] = STATE(601), - [sym_ident] = ACTIONS(1370), - [sym_integer_literal] = ACTIONS(1372), - [anon_sym_SQUOTE] = ACTIONS(1372), - [anon_sym_DQUOTE] = ACTIONS(1372), - [anon_sym_BQUOTE] = ACTIONS(1372), - [sym_bytes_literal] = ACTIONS(1372), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1370), - [sym_at_ident] = ACTIONS(1372), - [sym_hash_ident] = ACTIONS(1372), - [sym_type_ident] = ACTIONS(1372), - [sym_ct_type_ident] = ACTIONS(1372), - [sym_const_ident] = ACTIONS(1370), - [sym_builtin] = ACTIONS(1372), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_AMP] = ACTIONS(1370), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_tlocal] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_const] = ACTIONS(1370), - [anon_sym_var] = ACTIONS(1370), - [anon_sym_return] = ACTIONS(1370), - [anon_sym_continue] = ACTIONS(1370), - [anon_sym_break] = ACTIONS(1370), - [anon_sym_defer] = ACTIONS(1370), - [anon_sym_assert] = ACTIONS(1370), - [anon_sym_nextcase] = ACTIONS(1370), - [anon_sym_switch] = ACTIONS(1370), - [anon_sym_AMP_AMP] = ACTIONS(1372), - [anon_sym_if] = ACTIONS(1370), - [anon_sym_for] = ACTIONS(1370), - [anon_sym_foreach] = ACTIONS(1370), - [anon_sym_foreach_r] = ACTIONS(1370), - [anon_sym_while] = ACTIONS(1370), - [anon_sym_do] = ACTIONS(1370), - [anon_sym_int] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_asm] = ACTIONS(1370), - [anon_sym_DOLLARassert] = ACTIONS(1370), - [anon_sym_DOLLARerror] = ACTIONS(1370), - [anon_sym_DOLLARecho] = ACTIONS(1370), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_DOLLARendif] = ACTIONS(1370), - [anon_sym_DOLLARelse] = ACTIONS(1370), - [anon_sym_DOLLARswitch] = ACTIONS(1370), - [anon_sym_DOLLARfor] = ACTIONS(1370), - [anon_sym_DOLLARforeach] = ACTIONS(1370), - [anon_sym_DOLLARalignof] = ACTIONS(1370), - [anon_sym_DOLLARextnameof] = ACTIONS(1370), - [anon_sym_DOLLARnameof] = ACTIONS(1370), - [anon_sym_DOLLARoffsetof] = ACTIONS(1370), - [anon_sym_DOLLARqnameof] = ACTIONS(1370), - [anon_sym_DOLLARvaconst] = ACTIONS(1370), - [anon_sym_DOLLARvaarg] = ACTIONS(1370), - [anon_sym_DOLLARvaref] = ACTIONS(1370), - [anon_sym_DOLLARvaexpr] = ACTIONS(1370), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [anon_sym_null] = ACTIONS(1370), - [anon_sym_DOLLARvacount] = ACTIONS(1370), - [anon_sym_DOLLARappend] = ACTIONS(1370), - [anon_sym_DOLLARconcat] = ACTIONS(1370), - [anon_sym_DOLLAReval] = ACTIONS(1370), - [anon_sym_DOLLARis_const] = ACTIONS(1370), - [anon_sym_DOLLARsizeof] = ACTIONS(1370), - [anon_sym_DOLLARstringify] = ACTIONS(1370), - [anon_sym_DOLLARand] = ACTIONS(1370), - [anon_sym_DOLLARdefined] = ACTIONS(1370), - [anon_sym_DOLLARembed] = ACTIONS(1370), - [anon_sym_DOLLARor] = ACTIONS(1370), - [anon_sym_DOLLARfeature] = ACTIONS(1370), - [anon_sym_DOLLARassignable] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_TILDE] = ACTIONS(1372), - [anon_sym_PLUS_PLUS] = ACTIONS(1372), - [anon_sym_DASH_DASH] = ACTIONS(1372), - [anon_sym_typeid] = ACTIONS(1370), - [anon_sym_LBRACE_PIPE] = ACTIONS(1372), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_bool] = ACTIONS(1370), - [anon_sym_char] = ACTIONS(1370), - [anon_sym_ichar] = ACTIONS(1370), - [anon_sym_short] = ACTIONS(1370), - [anon_sym_ushort] = ACTIONS(1370), - [anon_sym_uint] = ACTIONS(1370), - [anon_sym_long] = ACTIONS(1370), - [anon_sym_ulong] = ACTIONS(1370), - [anon_sym_int128] = ACTIONS(1370), - [anon_sym_uint128] = ACTIONS(1370), - [anon_sym_float] = ACTIONS(1370), - [anon_sym_double] = ACTIONS(1370), - [anon_sym_float16] = ACTIONS(1370), - [anon_sym_bfloat16] = ACTIONS(1370), - [anon_sym_float128] = ACTIONS(1370), - [anon_sym_iptr] = ACTIONS(1370), - [anon_sym_uptr] = ACTIONS(1370), - [anon_sym_isz] = ACTIONS(1370), - [anon_sym_usz] = ACTIONS(1370), - [anon_sym_anyfault] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_DOLLARtypeof] = ACTIONS(1370), - [anon_sym_DOLLARtypefrom] = ACTIONS(1370), - [anon_sym_DOLLARvatype] = ACTIONS(1370), - [anon_sym_DOLLARevaltype] = ACTIONS(1370), - [sym_real_literal] = ACTIONS(1372), + [sym_ident] = ACTIONS(1359), + [sym_integer_literal] = ACTIONS(1361), + [anon_sym_SQUOTE] = ACTIONS(1361), + [anon_sym_DQUOTE] = ACTIONS(1361), + [anon_sym_BQUOTE] = ACTIONS(1361), + [sym_bytes_literal] = ACTIONS(1361), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1359), + [sym_at_ident] = ACTIONS(1361), + [sym_hash_ident] = ACTIONS(1361), + [sym_type_ident] = ACTIONS(1361), + [sym_ct_type_ident] = ACTIONS(1361), + [sym_const_ident] = ACTIONS(1359), + [sym_builtin] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(1361), + [anon_sym_AMP] = ACTIONS(1359), + [anon_sym_static] = ACTIONS(1359), + [anon_sym_tlocal] = ACTIONS(1359), + [anon_sym_SEMI] = ACTIONS(1361), + [anon_sym_fn] = ACTIONS(1359), + [anon_sym_LBRACE] = ACTIONS(1359), + [anon_sym_const] = ACTIONS(1359), + [anon_sym_var] = ACTIONS(1359), + [anon_sym_return] = ACTIONS(1359), + [anon_sym_continue] = ACTIONS(1359), + [anon_sym_break] = ACTIONS(1359), + [anon_sym_defer] = ACTIONS(1359), + [anon_sym_assert] = ACTIONS(1359), + [anon_sym_nextcase] = ACTIONS(1359), + [anon_sym_switch] = ACTIONS(1359), + [anon_sym_AMP_AMP] = ACTIONS(1361), + [anon_sym_if] = ACTIONS(1359), + [anon_sym_for] = ACTIONS(1359), + [anon_sym_foreach] = ACTIONS(1359), + [anon_sym_foreach_r] = ACTIONS(1359), + [anon_sym_while] = ACTIONS(1359), + [anon_sym_do] = ACTIONS(1359), + [anon_sym_int] = ACTIONS(1359), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_asm] = ACTIONS(1359), + [anon_sym_DOLLARassert] = ACTIONS(1359), + [anon_sym_DOLLARerror] = ACTIONS(1359), + [anon_sym_DOLLARecho] = ACTIONS(1359), + [anon_sym_DOLLARif] = ACTIONS(1359), + [anon_sym_DOLLARswitch] = ACTIONS(1359), + [anon_sym_DOLLARfor] = ACTIONS(1359), + [anon_sym_DOLLARendfor] = ACTIONS(1359), + [anon_sym_DOLLARforeach] = ACTIONS(1359), + [anon_sym_DOLLARalignof] = ACTIONS(1359), + [anon_sym_DOLLARextnameof] = ACTIONS(1359), + [anon_sym_DOLLARnameof] = ACTIONS(1359), + [anon_sym_DOLLARoffsetof] = ACTIONS(1359), + [anon_sym_DOLLARqnameof] = ACTIONS(1359), + [anon_sym_DOLLARvaconst] = ACTIONS(1359), + [anon_sym_DOLLARvaarg] = ACTIONS(1359), + [anon_sym_DOLLARvaref] = ACTIONS(1359), + [anon_sym_DOLLARvaexpr] = ACTIONS(1359), + [anon_sym_true] = ACTIONS(1359), + [anon_sym_false] = ACTIONS(1359), + [anon_sym_null] = ACTIONS(1359), + [anon_sym_DOLLARvacount] = ACTIONS(1359), + [anon_sym_DOLLARappend] = ACTIONS(1359), + [anon_sym_DOLLARconcat] = ACTIONS(1359), + [anon_sym_DOLLAReval] = ACTIONS(1359), + [anon_sym_DOLLARis_const] = ACTIONS(1359), + [anon_sym_DOLLARsizeof] = ACTIONS(1359), + [anon_sym_DOLLARstringify] = ACTIONS(1359), + [anon_sym_DOLLARand] = ACTIONS(1359), + [anon_sym_DOLLARdefined] = ACTIONS(1359), + [anon_sym_DOLLARembed] = ACTIONS(1359), + [anon_sym_DOLLARor] = ACTIONS(1359), + [anon_sym_DOLLARfeature] = ACTIONS(1359), + [anon_sym_DOLLARassignable] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1361), + [anon_sym_TILDE] = ACTIONS(1361), + [anon_sym_PLUS_PLUS] = ACTIONS(1361), + [anon_sym_DASH_DASH] = ACTIONS(1361), + [anon_sym_typeid] = ACTIONS(1359), + [anon_sym_LBRACE_PIPE] = ACTIONS(1361), + [anon_sym_void] = ACTIONS(1359), + [anon_sym_bool] = ACTIONS(1359), + [anon_sym_char] = ACTIONS(1359), + [anon_sym_ichar] = ACTIONS(1359), + [anon_sym_short] = ACTIONS(1359), + [anon_sym_ushort] = ACTIONS(1359), + [anon_sym_uint] = ACTIONS(1359), + [anon_sym_long] = ACTIONS(1359), + [anon_sym_ulong] = ACTIONS(1359), + [anon_sym_int128] = ACTIONS(1359), + [anon_sym_uint128] = ACTIONS(1359), + [anon_sym_float] = ACTIONS(1359), + [anon_sym_double] = ACTIONS(1359), + [anon_sym_float16] = ACTIONS(1359), + [anon_sym_bfloat16] = ACTIONS(1359), + [anon_sym_float128] = ACTIONS(1359), + [anon_sym_iptr] = ACTIONS(1359), + [anon_sym_uptr] = ACTIONS(1359), + [anon_sym_isz] = ACTIONS(1359), + [anon_sym_usz] = ACTIONS(1359), + [anon_sym_anyfault] = ACTIONS(1359), + [anon_sym_any] = ACTIONS(1359), + [anon_sym_DOLLARtypeof] = ACTIONS(1359), + [anon_sym_DOLLARtypefrom] = ACTIONS(1359), + [anon_sym_DOLLARvatype] = ACTIONS(1359), + [anon_sym_DOLLARevaltype] = ACTIONS(1359), + [sym_real_literal] = ACTIONS(1361), }, [602] = { [sym_line_comment] = STATE(602), [sym_doc_comment] = STATE(602), [sym_block_comment] = STATE(602), - [sym_ident] = ACTIONS(1628), - [sym_integer_literal] = ACTIONS(1630), - [anon_sym_SQUOTE] = ACTIONS(1630), - [anon_sym_DQUOTE] = ACTIONS(1630), - [anon_sym_BQUOTE] = ACTIONS(1630), - [sym_bytes_literal] = ACTIONS(1630), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1628), - [sym_at_ident] = ACTIONS(1630), - [sym_hash_ident] = ACTIONS(1630), - [sym_type_ident] = ACTIONS(1630), - [sym_ct_type_ident] = ACTIONS(1630), - [sym_const_ident] = ACTIONS(1628), - [sym_builtin] = ACTIONS(1630), - [anon_sym_LPAREN] = ACTIONS(1630), - [anon_sym_AMP] = ACTIONS(1628), - [anon_sym_static] = ACTIONS(1628), - [anon_sym_tlocal] = ACTIONS(1628), - [anon_sym_SEMI] = ACTIONS(1630), - [anon_sym_fn] = ACTIONS(1628), - [anon_sym_LBRACE] = ACTIONS(1628), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_var] = ACTIONS(1628), - [anon_sym_return] = ACTIONS(1628), - [anon_sym_continue] = ACTIONS(1628), - [anon_sym_break] = ACTIONS(1628), - [anon_sym_defer] = ACTIONS(1628), - [anon_sym_assert] = ACTIONS(1628), - [anon_sym_nextcase] = ACTIONS(1628), - [anon_sym_switch] = ACTIONS(1628), - [anon_sym_AMP_AMP] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1628), - [anon_sym_for] = ACTIONS(1628), - [anon_sym_foreach] = ACTIONS(1628), - [anon_sym_foreach_r] = ACTIONS(1628), - [anon_sym_while] = ACTIONS(1628), - [anon_sym_do] = ACTIONS(1628), - [anon_sym_int] = ACTIONS(1628), - [anon_sym_PLUS] = ACTIONS(1628), - [anon_sym_DASH] = ACTIONS(1628), - [anon_sym_STAR] = ACTIONS(1630), - [anon_sym_asm] = ACTIONS(1628), - [anon_sym_DOLLARassert] = ACTIONS(1628), - [anon_sym_DOLLARerror] = ACTIONS(1628), - [anon_sym_DOLLARecho] = ACTIONS(1628), - [anon_sym_DOLLARif] = ACTIONS(1628), - [anon_sym_DOLLARendif] = ACTIONS(1628), - [anon_sym_DOLLARelse] = ACTIONS(1628), - [anon_sym_DOLLARswitch] = ACTIONS(1628), - [anon_sym_DOLLARfor] = ACTIONS(1628), - [anon_sym_DOLLARforeach] = ACTIONS(1628), - [anon_sym_DOLLARalignof] = ACTIONS(1628), - [anon_sym_DOLLARextnameof] = ACTIONS(1628), - [anon_sym_DOLLARnameof] = ACTIONS(1628), - [anon_sym_DOLLARoffsetof] = ACTIONS(1628), - [anon_sym_DOLLARqnameof] = ACTIONS(1628), - [anon_sym_DOLLARvaconst] = ACTIONS(1628), - [anon_sym_DOLLARvaarg] = ACTIONS(1628), - [anon_sym_DOLLARvaref] = ACTIONS(1628), - [anon_sym_DOLLARvaexpr] = ACTIONS(1628), - [anon_sym_true] = ACTIONS(1628), - [anon_sym_false] = ACTIONS(1628), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_DOLLARvacount] = ACTIONS(1628), - [anon_sym_DOLLARappend] = ACTIONS(1628), - [anon_sym_DOLLARconcat] = ACTIONS(1628), - [anon_sym_DOLLAReval] = ACTIONS(1628), - [anon_sym_DOLLARis_const] = ACTIONS(1628), - [anon_sym_DOLLARsizeof] = ACTIONS(1628), - [anon_sym_DOLLARstringify] = ACTIONS(1628), - [anon_sym_DOLLARand] = ACTIONS(1628), - [anon_sym_DOLLARdefined] = ACTIONS(1628), - [anon_sym_DOLLARembed] = ACTIONS(1628), - [anon_sym_DOLLARor] = ACTIONS(1628), - [anon_sym_DOLLARfeature] = ACTIONS(1628), - [anon_sym_DOLLARassignable] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1630), - [anon_sym_TILDE] = ACTIONS(1630), - [anon_sym_PLUS_PLUS] = ACTIONS(1630), - [anon_sym_DASH_DASH] = ACTIONS(1630), - [anon_sym_typeid] = ACTIONS(1628), - [anon_sym_LBRACE_PIPE] = ACTIONS(1630), - [anon_sym_void] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_ichar] = ACTIONS(1628), - [anon_sym_short] = ACTIONS(1628), - [anon_sym_ushort] = ACTIONS(1628), - [anon_sym_uint] = ACTIONS(1628), - [anon_sym_long] = ACTIONS(1628), - [anon_sym_ulong] = ACTIONS(1628), - [anon_sym_int128] = ACTIONS(1628), - [anon_sym_uint128] = ACTIONS(1628), - [anon_sym_float] = ACTIONS(1628), - [anon_sym_double] = ACTIONS(1628), - [anon_sym_float16] = ACTIONS(1628), - [anon_sym_bfloat16] = ACTIONS(1628), - [anon_sym_float128] = ACTIONS(1628), - [anon_sym_iptr] = ACTIONS(1628), - [anon_sym_uptr] = ACTIONS(1628), - [anon_sym_isz] = ACTIONS(1628), - [anon_sym_usz] = ACTIONS(1628), - [anon_sym_anyfault] = ACTIONS(1628), - [anon_sym_any] = ACTIONS(1628), - [anon_sym_DOLLARtypeof] = ACTIONS(1628), - [anon_sym_DOLLARtypefrom] = ACTIONS(1628), - [anon_sym_DOLLARvatype] = ACTIONS(1628), - [anon_sym_DOLLARevaltype] = ACTIONS(1628), - [sym_real_literal] = ACTIONS(1630), + [sym_ident] = ACTIONS(1625), + [sym_integer_literal] = ACTIONS(1627), + [anon_sym_SQUOTE] = ACTIONS(1627), + [anon_sym_DQUOTE] = ACTIONS(1627), + [anon_sym_BQUOTE] = ACTIONS(1627), + [sym_bytes_literal] = ACTIONS(1627), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1625), + [sym_at_ident] = ACTIONS(1627), + [sym_hash_ident] = ACTIONS(1627), + [sym_type_ident] = ACTIONS(1627), + [sym_ct_type_ident] = ACTIONS(1627), + [sym_const_ident] = ACTIONS(1625), + [sym_builtin] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1627), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_static] = ACTIONS(1625), + [anon_sym_tlocal] = ACTIONS(1625), + [anon_sym_SEMI] = ACTIONS(1627), + [anon_sym_fn] = ACTIONS(1625), + [anon_sym_LBRACE] = ACTIONS(1625), + [anon_sym_const] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1625), + [anon_sym_return] = ACTIONS(1625), + [anon_sym_continue] = ACTIONS(1625), + [anon_sym_break] = ACTIONS(1625), + [anon_sym_defer] = ACTIONS(1625), + [anon_sym_assert] = ACTIONS(1625), + [anon_sym_nextcase] = ACTIONS(1625), + [anon_sym_switch] = ACTIONS(1625), + [anon_sym_AMP_AMP] = ACTIONS(1627), + [anon_sym_if] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1625), + [anon_sym_foreach] = ACTIONS(1625), + [anon_sym_foreach_r] = ACTIONS(1625), + [anon_sym_while] = ACTIONS(1625), + [anon_sym_do] = ACTIONS(1625), + [anon_sym_int] = ACTIONS(1625), + [anon_sym_PLUS] = ACTIONS(1625), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(1627), + [anon_sym_asm] = ACTIONS(1625), + [anon_sym_DOLLARassert] = ACTIONS(1625), + [anon_sym_DOLLARerror] = ACTIONS(1625), + [anon_sym_DOLLARecho] = ACTIONS(1625), + [anon_sym_DOLLARif] = ACTIONS(1625), + [anon_sym_DOLLARswitch] = ACTIONS(1625), + [anon_sym_DOLLARfor] = ACTIONS(1625), + [anon_sym_DOLLARendfor] = ACTIONS(1625), + [anon_sym_DOLLARforeach] = ACTIONS(1625), + [anon_sym_DOLLARalignof] = ACTIONS(1625), + [anon_sym_DOLLARextnameof] = ACTIONS(1625), + [anon_sym_DOLLARnameof] = ACTIONS(1625), + [anon_sym_DOLLARoffsetof] = ACTIONS(1625), + [anon_sym_DOLLARqnameof] = ACTIONS(1625), + [anon_sym_DOLLARvaconst] = ACTIONS(1625), + [anon_sym_DOLLARvaarg] = ACTIONS(1625), + [anon_sym_DOLLARvaref] = ACTIONS(1625), + [anon_sym_DOLLARvaexpr] = ACTIONS(1625), + [anon_sym_true] = ACTIONS(1625), + [anon_sym_false] = ACTIONS(1625), + [anon_sym_null] = ACTIONS(1625), + [anon_sym_DOLLARvacount] = ACTIONS(1625), + [anon_sym_DOLLARappend] = ACTIONS(1625), + [anon_sym_DOLLARconcat] = ACTIONS(1625), + [anon_sym_DOLLAReval] = ACTIONS(1625), + [anon_sym_DOLLARis_const] = ACTIONS(1625), + [anon_sym_DOLLARsizeof] = ACTIONS(1625), + [anon_sym_DOLLARstringify] = ACTIONS(1625), + [anon_sym_DOLLARand] = ACTIONS(1625), + [anon_sym_DOLLARdefined] = ACTIONS(1625), + [anon_sym_DOLLARembed] = ACTIONS(1625), + [anon_sym_DOLLARor] = ACTIONS(1625), + [anon_sym_DOLLARfeature] = ACTIONS(1625), + [anon_sym_DOLLARassignable] = ACTIONS(1625), + [anon_sym_BANG] = ACTIONS(1627), + [anon_sym_TILDE] = ACTIONS(1627), + [anon_sym_PLUS_PLUS] = ACTIONS(1627), + [anon_sym_DASH_DASH] = ACTIONS(1627), + [anon_sym_typeid] = ACTIONS(1625), + [anon_sym_LBRACE_PIPE] = ACTIONS(1627), + [anon_sym_void] = ACTIONS(1625), + [anon_sym_bool] = ACTIONS(1625), + [anon_sym_char] = ACTIONS(1625), + [anon_sym_ichar] = ACTIONS(1625), + [anon_sym_short] = ACTIONS(1625), + [anon_sym_ushort] = ACTIONS(1625), + [anon_sym_uint] = ACTIONS(1625), + [anon_sym_long] = ACTIONS(1625), + [anon_sym_ulong] = ACTIONS(1625), + [anon_sym_int128] = ACTIONS(1625), + [anon_sym_uint128] = ACTIONS(1625), + [anon_sym_float] = ACTIONS(1625), + [anon_sym_double] = ACTIONS(1625), + [anon_sym_float16] = ACTIONS(1625), + [anon_sym_bfloat16] = ACTIONS(1625), + [anon_sym_float128] = ACTIONS(1625), + [anon_sym_iptr] = ACTIONS(1625), + [anon_sym_uptr] = ACTIONS(1625), + [anon_sym_isz] = ACTIONS(1625), + [anon_sym_usz] = ACTIONS(1625), + [anon_sym_anyfault] = ACTIONS(1625), + [anon_sym_any] = ACTIONS(1625), + [anon_sym_DOLLARtypeof] = ACTIONS(1625), + [anon_sym_DOLLARtypefrom] = ACTIONS(1625), + [anon_sym_DOLLARvatype] = ACTIONS(1625), + [anon_sym_DOLLARevaltype] = ACTIONS(1625), + [sym_real_literal] = ACTIONS(1627), }, [603] = { [sym_line_comment] = STATE(603), [sym_doc_comment] = STATE(603), [sym_block_comment] = STATE(603), - [sym_ident] = ACTIONS(1564), - [sym_integer_literal] = ACTIONS(1566), - [anon_sym_SQUOTE] = ACTIONS(1566), - [anon_sym_DQUOTE] = ACTIONS(1566), - [anon_sym_BQUOTE] = ACTIONS(1566), - [sym_bytes_literal] = ACTIONS(1566), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1564), - [sym_at_ident] = ACTIONS(1566), - [sym_hash_ident] = ACTIONS(1566), - [sym_type_ident] = ACTIONS(1566), - [sym_ct_type_ident] = ACTIONS(1566), - [sym_const_ident] = ACTIONS(1564), - [sym_builtin] = ACTIONS(1566), - [anon_sym_LPAREN] = ACTIONS(1566), - [anon_sym_AMP] = ACTIONS(1564), - [anon_sym_static] = ACTIONS(1564), - [anon_sym_tlocal] = ACTIONS(1564), - [anon_sym_SEMI] = ACTIONS(1566), - [anon_sym_fn] = ACTIONS(1564), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_const] = ACTIONS(1564), - [anon_sym_var] = ACTIONS(1564), - [anon_sym_return] = ACTIONS(1564), - [anon_sym_continue] = ACTIONS(1564), - [anon_sym_break] = ACTIONS(1564), - [anon_sym_defer] = ACTIONS(1564), - [anon_sym_assert] = ACTIONS(1564), - [anon_sym_nextcase] = ACTIONS(1564), - [anon_sym_switch] = ACTIONS(1564), - [anon_sym_AMP_AMP] = ACTIONS(1566), - [anon_sym_if] = ACTIONS(1564), - [anon_sym_for] = ACTIONS(1564), - [anon_sym_foreach] = ACTIONS(1564), - [anon_sym_foreach_r] = ACTIONS(1564), - [anon_sym_while] = ACTIONS(1564), - [anon_sym_do] = ACTIONS(1564), - [anon_sym_int] = ACTIONS(1564), - [anon_sym_PLUS] = ACTIONS(1564), - [anon_sym_DASH] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1566), - [anon_sym_asm] = ACTIONS(1564), - [anon_sym_DOLLARassert] = ACTIONS(1564), - [anon_sym_DOLLARerror] = ACTIONS(1564), - [anon_sym_DOLLARecho] = ACTIONS(1564), - [anon_sym_DOLLARif] = ACTIONS(1564), - [anon_sym_DOLLARendif] = ACTIONS(1564), - [anon_sym_DOLLARelse] = ACTIONS(1564), - [anon_sym_DOLLARswitch] = ACTIONS(1564), - [anon_sym_DOLLARfor] = ACTIONS(1564), - [anon_sym_DOLLARforeach] = ACTIONS(1564), - [anon_sym_DOLLARalignof] = ACTIONS(1564), - [anon_sym_DOLLARextnameof] = ACTIONS(1564), - [anon_sym_DOLLARnameof] = ACTIONS(1564), - [anon_sym_DOLLARoffsetof] = ACTIONS(1564), - [anon_sym_DOLLARqnameof] = ACTIONS(1564), - [anon_sym_DOLLARvaconst] = ACTIONS(1564), - [anon_sym_DOLLARvaarg] = ACTIONS(1564), - [anon_sym_DOLLARvaref] = ACTIONS(1564), - [anon_sym_DOLLARvaexpr] = ACTIONS(1564), - [anon_sym_true] = ACTIONS(1564), - [anon_sym_false] = ACTIONS(1564), - [anon_sym_null] = ACTIONS(1564), - [anon_sym_DOLLARvacount] = ACTIONS(1564), - [anon_sym_DOLLARappend] = ACTIONS(1564), - [anon_sym_DOLLARconcat] = ACTIONS(1564), - [anon_sym_DOLLAReval] = ACTIONS(1564), - [anon_sym_DOLLARis_const] = ACTIONS(1564), - [anon_sym_DOLLARsizeof] = ACTIONS(1564), - [anon_sym_DOLLARstringify] = ACTIONS(1564), - [anon_sym_DOLLARand] = ACTIONS(1564), - [anon_sym_DOLLARdefined] = ACTIONS(1564), - [anon_sym_DOLLARembed] = ACTIONS(1564), - [anon_sym_DOLLARor] = ACTIONS(1564), - [anon_sym_DOLLARfeature] = ACTIONS(1564), - [anon_sym_DOLLARassignable] = ACTIONS(1564), - [anon_sym_BANG] = ACTIONS(1566), - [anon_sym_TILDE] = ACTIONS(1566), - [anon_sym_PLUS_PLUS] = ACTIONS(1566), - [anon_sym_DASH_DASH] = ACTIONS(1566), - [anon_sym_typeid] = ACTIONS(1564), - [anon_sym_LBRACE_PIPE] = ACTIONS(1566), - [anon_sym_void] = ACTIONS(1564), - [anon_sym_bool] = ACTIONS(1564), - [anon_sym_char] = ACTIONS(1564), - [anon_sym_ichar] = ACTIONS(1564), - [anon_sym_short] = ACTIONS(1564), - [anon_sym_ushort] = ACTIONS(1564), - [anon_sym_uint] = ACTIONS(1564), - [anon_sym_long] = ACTIONS(1564), - [anon_sym_ulong] = ACTIONS(1564), - [anon_sym_int128] = ACTIONS(1564), - [anon_sym_uint128] = ACTIONS(1564), - [anon_sym_float] = ACTIONS(1564), - [anon_sym_double] = ACTIONS(1564), - [anon_sym_float16] = ACTIONS(1564), - [anon_sym_bfloat16] = ACTIONS(1564), - [anon_sym_float128] = ACTIONS(1564), - [anon_sym_iptr] = ACTIONS(1564), - [anon_sym_uptr] = ACTIONS(1564), - [anon_sym_isz] = ACTIONS(1564), - [anon_sym_usz] = ACTIONS(1564), - [anon_sym_anyfault] = ACTIONS(1564), - [anon_sym_any] = ACTIONS(1564), - [anon_sym_DOLLARtypeof] = ACTIONS(1564), - [anon_sym_DOLLARtypefrom] = ACTIONS(1564), - [anon_sym_DOLLARvatype] = ACTIONS(1564), - [anon_sym_DOLLARevaltype] = ACTIONS(1564), - [sym_real_literal] = ACTIONS(1566), + [sym_ident] = ACTIONS(1667), + [sym_integer_literal] = ACTIONS(1669), + [anon_sym_SQUOTE] = ACTIONS(1669), + [anon_sym_DQUOTE] = ACTIONS(1669), + [anon_sym_BQUOTE] = ACTIONS(1669), + [sym_bytes_literal] = ACTIONS(1669), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1667), + [sym_at_ident] = ACTIONS(1669), + [sym_hash_ident] = ACTIONS(1669), + [sym_type_ident] = ACTIONS(1669), + [sym_ct_type_ident] = ACTIONS(1669), + [sym_const_ident] = ACTIONS(1667), + [sym_builtin] = ACTIONS(1669), + [anon_sym_LPAREN] = ACTIONS(1669), + [anon_sym_AMP] = ACTIONS(1667), + [anon_sym_static] = ACTIONS(1667), + [anon_sym_tlocal] = ACTIONS(1667), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LBRACE] = ACTIONS(1667), + [anon_sym_const] = ACTIONS(1667), + [anon_sym_var] = ACTIONS(1667), + [anon_sym_return] = ACTIONS(1667), + [anon_sym_continue] = ACTIONS(1667), + [anon_sym_break] = ACTIONS(1667), + [anon_sym_defer] = ACTIONS(1667), + [anon_sym_assert] = ACTIONS(1667), + [anon_sym_nextcase] = ACTIONS(1667), + [anon_sym_switch] = ACTIONS(1667), + [anon_sym_AMP_AMP] = ACTIONS(1669), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_for] = ACTIONS(1667), + [anon_sym_foreach] = ACTIONS(1667), + [anon_sym_foreach_r] = ACTIONS(1667), + [anon_sym_while] = ACTIONS(1667), + [anon_sym_do] = ACTIONS(1667), + [anon_sym_int] = ACTIONS(1667), + [anon_sym_PLUS] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_STAR] = ACTIONS(1669), + [anon_sym_asm] = ACTIONS(1667), + [anon_sym_DOLLARassert] = ACTIONS(1667), + [anon_sym_DOLLARerror] = ACTIONS(1667), + [anon_sym_DOLLARecho] = ACTIONS(1667), + [anon_sym_DOLLARif] = ACTIONS(1667), + [anon_sym_DOLLARswitch] = ACTIONS(1667), + [anon_sym_DOLLARfor] = ACTIONS(1667), + [anon_sym_DOLLARendfor] = ACTIONS(1667), + [anon_sym_DOLLARforeach] = ACTIONS(1667), + [anon_sym_DOLLARalignof] = ACTIONS(1667), + [anon_sym_DOLLARextnameof] = ACTIONS(1667), + [anon_sym_DOLLARnameof] = ACTIONS(1667), + [anon_sym_DOLLARoffsetof] = ACTIONS(1667), + [anon_sym_DOLLARqnameof] = ACTIONS(1667), + [anon_sym_DOLLARvaconst] = ACTIONS(1667), + [anon_sym_DOLLARvaarg] = ACTIONS(1667), + [anon_sym_DOLLARvaref] = ACTIONS(1667), + [anon_sym_DOLLARvaexpr] = ACTIONS(1667), + [anon_sym_true] = ACTIONS(1667), + [anon_sym_false] = ACTIONS(1667), + [anon_sym_null] = ACTIONS(1667), + [anon_sym_DOLLARvacount] = ACTIONS(1667), + [anon_sym_DOLLARappend] = ACTIONS(1667), + [anon_sym_DOLLARconcat] = ACTIONS(1667), + [anon_sym_DOLLAReval] = ACTIONS(1667), + [anon_sym_DOLLARis_const] = ACTIONS(1667), + [anon_sym_DOLLARsizeof] = ACTIONS(1667), + [anon_sym_DOLLARstringify] = ACTIONS(1667), + [anon_sym_DOLLARand] = ACTIONS(1667), + [anon_sym_DOLLARdefined] = ACTIONS(1667), + [anon_sym_DOLLARembed] = ACTIONS(1667), + [anon_sym_DOLLARor] = ACTIONS(1667), + [anon_sym_DOLLARfeature] = ACTIONS(1667), + [anon_sym_DOLLARassignable] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1669), + [anon_sym_TILDE] = ACTIONS(1669), + [anon_sym_PLUS_PLUS] = ACTIONS(1669), + [anon_sym_DASH_DASH] = ACTIONS(1669), + [anon_sym_typeid] = ACTIONS(1667), + [anon_sym_LBRACE_PIPE] = ACTIONS(1669), + [anon_sym_void] = ACTIONS(1667), + [anon_sym_bool] = ACTIONS(1667), + [anon_sym_char] = ACTIONS(1667), + [anon_sym_ichar] = ACTIONS(1667), + [anon_sym_short] = ACTIONS(1667), + [anon_sym_ushort] = ACTIONS(1667), + [anon_sym_uint] = ACTIONS(1667), + [anon_sym_long] = ACTIONS(1667), + [anon_sym_ulong] = ACTIONS(1667), + [anon_sym_int128] = ACTIONS(1667), + [anon_sym_uint128] = ACTIONS(1667), + [anon_sym_float] = ACTIONS(1667), + [anon_sym_double] = ACTIONS(1667), + [anon_sym_float16] = ACTIONS(1667), + [anon_sym_bfloat16] = ACTIONS(1667), + [anon_sym_float128] = ACTIONS(1667), + [anon_sym_iptr] = ACTIONS(1667), + [anon_sym_uptr] = ACTIONS(1667), + [anon_sym_isz] = ACTIONS(1667), + [anon_sym_usz] = ACTIONS(1667), + [anon_sym_anyfault] = ACTIONS(1667), + [anon_sym_any] = ACTIONS(1667), + [anon_sym_DOLLARtypeof] = ACTIONS(1667), + [anon_sym_DOLLARtypefrom] = ACTIONS(1667), + [anon_sym_DOLLARvatype] = ACTIONS(1667), + [anon_sym_DOLLARevaltype] = ACTIONS(1667), + [sym_real_literal] = ACTIONS(1669), }, [604] = { [sym_line_comment] = STATE(604), [sym_doc_comment] = STATE(604), [sym_block_comment] = STATE(604), - [sym_ident] = ACTIONS(1560), - [sym_integer_literal] = ACTIONS(1562), - [anon_sym_SQUOTE] = ACTIONS(1562), - [anon_sym_DQUOTE] = ACTIONS(1562), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_bytes_literal] = ACTIONS(1562), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1560), - [sym_at_ident] = ACTIONS(1562), - [sym_hash_ident] = ACTIONS(1562), - [sym_type_ident] = ACTIONS(1562), - [sym_ct_type_ident] = ACTIONS(1562), - [sym_const_ident] = ACTIONS(1560), - [sym_builtin] = ACTIONS(1562), - [anon_sym_LPAREN] = ACTIONS(1562), - [anon_sym_AMP] = ACTIONS(1560), - [anon_sym_static] = ACTIONS(1560), - [anon_sym_tlocal] = ACTIONS(1560), - [anon_sym_SEMI] = ACTIONS(1562), - [anon_sym_fn] = ACTIONS(1560), - [anon_sym_LBRACE] = ACTIONS(1560), - [anon_sym_const] = ACTIONS(1560), - [anon_sym_var] = ACTIONS(1560), - [anon_sym_return] = ACTIONS(1560), - [anon_sym_continue] = ACTIONS(1560), - [anon_sym_break] = ACTIONS(1560), - [anon_sym_defer] = ACTIONS(1560), - [anon_sym_assert] = ACTIONS(1560), - [anon_sym_nextcase] = ACTIONS(1560), - [anon_sym_switch] = ACTIONS(1560), - [anon_sym_AMP_AMP] = ACTIONS(1562), - [anon_sym_if] = ACTIONS(1560), - [anon_sym_for] = ACTIONS(1560), - [anon_sym_foreach] = ACTIONS(1560), - [anon_sym_foreach_r] = ACTIONS(1560), - [anon_sym_while] = ACTIONS(1560), - [anon_sym_do] = ACTIONS(1560), - [anon_sym_int] = ACTIONS(1560), - [anon_sym_PLUS] = ACTIONS(1560), - [anon_sym_DASH] = ACTIONS(1560), - [anon_sym_STAR] = ACTIONS(1562), - [anon_sym_asm] = ACTIONS(1560), - [anon_sym_DOLLARassert] = ACTIONS(1560), - [anon_sym_DOLLARerror] = ACTIONS(1560), - [anon_sym_DOLLARecho] = ACTIONS(1560), - [anon_sym_DOLLARif] = ACTIONS(1560), - [anon_sym_DOLLARendif] = ACTIONS(1560), - [anon_sym_DOLLARelse] = ACTIONS(1560), - [anon_sym_DOLLARswitch] = ACTIONS(1560), - [anon_sym_DOLLARfor] = ACTIONS(1560), - [anon_sym_DOLLARforeach] = ACTIONS(1560), - [anon_sym_DOLLARalignof] = ACTIONS(1560), - [anon_sym_DOLLARextnameof] = ACTIONS(1560), - [anon_sym_DOLLARnameof] = ACTIONS(1560), - [anon_sym_DOLLARoffsetof] = ACTIONS(1560), - [anon_sym_DOLLARqnameof] = ACTIONS(1560), - [anon_sym_DOLLARvaconst] = ACTIONS(1560), - [anon_sym_DOLLARvaarg] = ACTIONS(1560), - [anon_sym_DOLLARvaref] = ACTIONS(1560), - [anon_sym_DOLLARvaexpr] = ACTIONS(1560), - [anon_sym_true] = ACTIONS(1560), - [anon_sym_false] = ACTIONS(1560), - [anon_sym_null] = ACTIONS(1560), - [anon_sym_DOLLARvacount] = ACTIONS(1560), - [anon_sym_DOLLARappend] = ACTIONS(1560), - [anon_sym_DOLLARconcat] = ACTIONS(1560), - [anon_sym_DOLLAReval] = ACTIONS(1560), - [anon_sym_DOLLARis_const] = ACTIONS(1560), - [anon_sym_DOLLARsizeof] = ACTIONS(1560), - [anon_sym_DOLLARstringify] = ACTIONS(1560), - [anon_sym_DOLLARand] = ACTIONS(1560), - [anon_sym_DOLLARdefined] = ACTIONS(1560), - [anon_sym_DOLLARembed] = ACTIONS(1560), - [anon_sym_DOLLARor] = ACTIONS(1560), - [anon_sym_DOLLARfeature] = ACTIONS(1560), - [anon_sym_DOLLARassignable] = ACTIONS(1560), - [anon_sym_BANG] = ACTIONS(1562), - [anon_sym_TILDE] = ACTIONS(1562), - [anon_sym_PLUS_PLUS] = ACTIONS(1562), - [anon_sym_DASH_DASH] = ACTIONS(1562), - [anon_sym_typeid] = ACTIONS(1560), - [anon_sym_LBRACE_PIPE] = ACTIONS(1562), - [anon_sym_void] = ACTIONS(1560), - [anon_sym_bool] = ACTIONS(1560), - [anon_sym_char] = ACTIONS(1560), - [anon_sym_ichar] = ACTIONS(1560), - [anon_sym_short] = ACTIONS(1560), - [anon_sym_ushort] = ACTIONS(1560), - [anon_sym_uint] = ACTIONS(1560), - [anon_sym_long] = ACTIONS(1560), - [anon_sym_ulong] = ACTIONS(1560), - [anon_sym_int128] = ACTIONS(1560), - [anon_sym_uint128] = ACTIONS(1560), - [anon_sym_float] = ACTIONS(1560), - [anon_sym_double] = ACTIONS(1560), - [anon_sym_float16] = ACTIONS(1560), - [anon_sym_bfloat16] = ACTIONS(1560), - [anon_sym_float128] = ACTIONS(1560), - [anon_sym_iptr] = ACTIONS(1560), - [anon_sym_uptr] = ACTIONS(1560), - [anon_sym_isz] = ACTIONS(1560), - [anon_sym_usz] = ACTIONS(1560), - [anon_sym_anyfault] = ACTIONS(1560), - [anon_sym_any] = ACTIONS(1560), - [anon_sym_DOLLARtypeof] = ACTIONS(1560), - [anon_sym_DOLLARtypefrom] = ACTIONS(1560), - [anon_sym_DOLLARvatype] = ACTIONS(1560), - [anon_sym_DOLLARevaltype] = ACTIONS(1560), - [sym_real_literal] = ACTIONS(1562), + [sym_ident] = ACTIONS(1671), + [sym_integer_literal] = ACTIONS(1673), + [anon_sym_SQUOTE] = ACTIONS(1673), + [anon_sym_DQUOTE] = ACTIONS(1673), + [anon_sym_BQUOTE] = ACTIONS(1673), + [sym_bytes_literal] = ACTIONS(1673), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1671), + [sym_at_ident] = ACTIONS(1673), + [sym_hash_ident] = ACTIONS(1673), + [sym_type_ident] = ACTIONS(1673), + [sym_ct_type_ident] = ACTIONS(1673), + [sym_const_ident] = ACTIONS(1671), + [sym_builtin] = ACTIONS(1673), + [anon_sym_LPAREN] = ACTIONS(1673), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_tlocal] = ACTIONS(1671), + [anon_sym_SEMI] = ACTIONS(1673), + [anon_sym_fn] = ACTIONS(1671), + [anon_sym_LBRACE] = ACTIONS(1671), + [anon_sym_const] = ACTIONS(1671), + [anon_sym_var] = ACTIONS(1671), + [anon_sym_return] = ACTIONS(1671), + [anon_sym_continue] = ACTIONS(1671), + [anon_sym_break] = ACTIONS(1671), + [anon_sym_defer] = ACTIONS(1671), + [anon_sym_assert] = ACTIONS(1671), + [anon_sym_nextcase] = ACTIONS(1671), + [anon_sym_switch] = ACTIONS(1671), + [anon_sym_AMP_AMP] = ACTIONS(1673), + [anon_sym_if] = ACTIONS(1671), + [anon_sym_for] = ACTIONS(1671), + [anon_sym_foreach] = ACTIONS(1671), + [anon_sym_foreach_r] = ACTIONS(1671), + [anon_sym_while] = ACTIONS(1671), + [anon_sym_do] = ACTIONS(1671), + [anon_sym_int] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(1673), + [anon_sym_asm] = ACTIONS(1671), + [anon_sym_DOLLARassert] = ACTIONS(1671), + [anon_sym_DOLLARerror] = ACTIONS(1671), + [anon_sym_DOLLARecho] = ACTIONS(1671), + [anon_sym_DOLLARif] = ACTIONS(1671), + [anon_sym_DOLLARswitch] = ACTIONS(1671), + [anon_sym_DOLLARfor] = ACTIONS(1671), + [anon_sym_DOLLARendfor] = ACTIONS(1671), + [anon_sym_DOLLARforeach] = ACTIONS(1671), + [anon_sym_DOLLARalignof] = ACTIONS(1671), + [anon_sym_DOLLARextnameof] = ACTIONS(1671), + [anon_sym_DOLLARnameof] = ACTIONS(1671), + [anon_sym_DOLLARoffsetof] = ACTIONS(1671), + [anon_sym_DOLLARqnameof] = ACTIONS(1671), + [anon_sym_DOLLARvaconst] = ACTIONS(1671), + [anon_sym_DOLLARvaarg] = ACTIONS(1671), + [anon_sym_DOLLARvaref] = ACTIONS(1671), + [anon_sym_DOLLARvaexpr] = ACTIONS(1671), + [anon_sym_true] = ACTIONS(1671), + [anon_sym_false] = ACTIONS(1671), + [anon_sym_null] = ACTIONS(1671), + [anon_sym_DOLLARvacount] = ACTIONS(1671), + [anon_sym_DOLLARappend] = ACTIONS(1671), + [anon_sym_DOLLARconcat] = ACTIONS(1671), + [anon_sym_DOLLAReval] = ACTIONS(1671), + [anon_sym_DOLLARis_const] = ACTIONS(1671), + [anon_sym_DOLLARsizeof] = ACTIONS(1671), + [anon_sym_DOLLARstringify] = ACTIONS(1671), + [anon_sym_DOLLARand] = ACTIONS(1671), + [anon_sym_DOLLARdefined] = ACTIONS(1671), + [anon_sym_DOLLARembed] = ACTIONS(1671), + [anon_sym_DOLLARor] = ACTIONS(1671), + [anon_sym_DOLLARfeature] = ACTIONS(1671), + [anon_sym_DOLLARassignable] = ACTIONS(1671), + [anon_sym_BANG] = ACTIONS(1673), + [anon_sym_TILDE] = ACTIONS(1673), + [anon_sym_PLUS_PLUS] = ACTIONS(1673), + [anon_sym_DASH_DASH] = ACTIONS(1673), + [anon_sym_typeid] = ACTIONS(1671), + [anon_sym_LBRACE_PIPE] = ACTIONS(1673), + [anon_sym_void] = ACTIONS(1671), + [anon_sym_bool] = ACTIONS(1671), + [anon_sym_char] = ACTIONS(1671), + [anon_sym_ichar] = ACTIONS(1671), + [anon_sym_short] = ACTIONS(1671), + [anon_sym_ushort] = ACTIONS(1671), + [anon_sym_uint] = ACTIONS(1671), + [anon_sym_long] = ACTIONS(1671), + [anon_sym_ulong] = ACTIONS(1671), + [anon_sym_int128] = ACTIONS(1671), + [anon_sym_uint128] = ACTIONS(1671), + [anon_sym_float] = ACTIONS(1671), + [anon_sym_double] = ACTIONS(1671), + [anon_sym_float16] = ACTIONS(1671), + [anon_sym_bfloat16] = ACTIONS(1671), + [anon_sym_float128] = ACTIONS(1671), + [anon_sym_iptr] = ACTIONS(1671), + [anon_sym_uptr] = ACTIONS(1671), + [anon_sym_isz] = ACTIONS(1671), + [anon_sym_usz] = ACTIONS(1671), + [anon_sym_anyfault] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_DOLLARtypeof] = ACTIONS(1671), + [anon_sym_DOLLARtypefrom] = ACTIONS(1671), + [anon_sym_DOLLARvatype] = ACTIONS(1671), + [anon_sym_DOLLARevaltype] = ACTIONS(1671), + [sym_real_literal] = ACTIONS(1673), }, [605] = { [sym_line_comment] = STATE(605), [sym_doc_comment] = STATE(605), [sym_block_comment] = STATE(605), - [sym_ident] = ACTIONS(1576), - [sym_integer_literal] = ACTIONS(1578), - [anon_sym_SQUOTE] = ACTIONS(1578), - [anon_sym_DQUOTE] = ACTIONS(1578), - [anon_sym_BQUOTE] = ACTIONS(1578), - [sym_bytes_literal] = ACTIONS(1578), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1576), - [sym_at_ident] = ACTIONS(1578), - [sym_hash_ident] = ACTIONS(1578), - [sym_type_ident] = ACTIONS(1578), - [sym_ct_type_ident] = ACTIONS(1578), - [sym_const_ident] = ACTIONS(1576), - [sym_builtin] = ACTIONS(1578), - [anon_sym_LPAREN] = ACTIONS(1578), - [anon_sym_AMP] = ACTIONS(1576), - [anon_sym_static] = ACTIONS(1576), - [anon_sym_tlocal] = ACTIONS(1576), - [anon_sym_SEMI] = ACTIONS(1578), - [anon_sym_fn] = ACTIONS(1576), - [anon_sym_LBRACE] = ACTIONS(1576), - [anon_sym_const] = ACTIONS(1576), - [anon_sym_var] = ACTIONS(1576), - [anon_sym_return] = ACTIONS(1576), - [anon_sym_continue] = ACTIONS(1576), - [anon_sym_break] = ACTIONS(1576), - [anon_sym_defer] = ACTIONS(1576), - [anon_sym_assert] = ACTIONS(1576), - [anon_sym_nextcase] = ACTIONS(1576), - [anon_sym_switch] = ACTIONS(1576), - [anon_sym_AMP_AMP] = ACTIONS(1578), - [anon_sym_if] = ACTIONS(1576), - [anon_sym_for] = ACTIONS(1576), - [anon_sym_foreach] = ACTIONS(1576), - [anon_sym_foreach_r] = ACTIONS(1576), - [anon_sym_while] = ACTIONS(1576), - [anon_sym_do] = ACTIONS(1576), - [anon_sym_int] = ACTIONS(1576), - [anon_sym_PLUS] = ACTIONS(1576), - [anon_sym_DASH] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(1578), - [anon_sym_asm] = ACTIONS(1576), - [anon_sym_DOLLARassert] = ACTIONS(1576), - [anon_sym_DOLLARerror] = ACTIONS(1576), - [anon_sym_DOLLARecho] = ACTIONS(1576), - [anon_sym_DOLLARif] = ACTIONS(1576), - [anon_sym_DOLLARendif] = ACTIONS(1576), - [anon_sym_DOLLARelse] = ACTIONS(1576), - [anon_sym_DOLLARswitch] = ACTIONS(1576), - [anon_sym_DOLLARfor] = ACTIONS(1576), - [anon_sym_DOLLARforeach] = ACTIONS(1576), - [anon_sym_DOLLARalignof] = ACTIONS(1576), - [anon_sym_DOLLARextnameof] = ACTIONS(1576), - [anon_sym_DOLLARnameof] = ACTIONS(1576), - [anon_sym_DOLLARoffsetof] = ACTIONS(1576), - [anon_sym_DOLLARqnameof] = ACTIONS(1576), - [anon_sym_DOLLARvaconst] = ACTIONS(1576), - [anon_sym_DOLLARvaarg] = ACTIONS(1576), - [anon_sym_DOLLARvaref] = ACTIONS(1576), - [anon_sym_DOLLARvaexpr] = ACTIONS(1576), - [anon_sym_true] = ACTIONS(1576), - [anon_sym_false] = ACTIONS(1576), - [anon_sym_null] = ACTIONS(1576), - [anon_sym_DOLLARvacount] = ACTIONS(1576), - [anon_sym_DOLLARappend] = ACTIONS(1576), - [anon_sym_DOLLARconcat] = ACTIONS(1576), - [anon_sym_DOLLAReval] = ACTIONS(1576), - [anon_sym_DOLLARis_const] = ACTIONS(1576), - [anon_sym_DOLLARsizeof] = ACTIONS(1576), - [anon_sym_DOLLARstringify] = ACTIONS(1576), - [anon_sym_DOLLARand] = ACTIONS(1576), - [anon_sym_DOLLARdefined] = ACTIONS(1576), - [anon_sym_DOLLARembed] = ACTIONS(1576), - [anon_sym_DOLLARor] = ACTIONS(1576), - [anon_sym_DOLLARfeature] = ACTIONS(1576), - [anon_sym_DOLLARassignable] = ACTIONS(1576), - [anon_sym_BANG] = ACTIONS(1578), - [anon_sym_TILDE] = ACTIONS(1578), - [anon_sym_PLUS_PLUS] = ACTIONS(1578), - [anon_sym_DASH_DASH] = ACTIONS(1578), - [anon_sym_typeid] = ACTIONS(1576), - [anon_sym_LBRACE_PIPE] = ACTIONS(1578), - [anon_sym_void] = ACTIONS(1576), - [anon_sym_bool] = ACTIONS(1576), - [anon_sym_char] = ACTIONS(1576), - [anon_sym_ichar] = ACTIONS(1576), - [anon_sym_short] = ACTIONS(1576), - [anon_sym_ushort] = ACTIONS(1576), - [anon_sym_uint] = ACTIONS(1576), - [anon_sym_long] = ACTIONS(1576), - [anon_sym_ulong] = ACTIONS(1576), - [anon_sym_int128] = ACTIONS(1576), - [anon_sym_uint128] = ACTIONS(1576), - [anon_sym_float] = ACTIONS(1576), - [anon_sym_double] = ACTIONS(1576), - [anon_sym_float16] = ACTIONS(1576), - [anon_sym_bfloat16] = ACTIONS(1576), - [anon_sym_float128] = ACTIONS(1576), - [anon_sym_iptr] = ACTIONS(1576), - [anon_sym_uptr] = ACTIONS(1576), - [anon_sym_isz] = ACTIONS(1576), - [anon_sym_usz] = ACTIONS(1576), - [anon_sym_anyfault] = ACTIONS(1576), - [anon_sym_any] = ACTIONS(1576), - [anon_sym_DOLLARtypeof] = ACTIONS(1576), - [anon_sym_DOLLARtypefrom] = ACTIONS(1576), - [anon_sym_DOLLARvatype] = ACTIONS(1576), - [anon_sym_DOLLARevaltype] = ACTIONS(1576), - [sym_real_literal] = ACTIONS(1578), + [sym_ident] = ACTIONS(1675), + [sym_integer_literal] = ACTIONS(1677), + [anon_sym_SQUOTE] = ACTIONS(1677), + [anon_sym_DQUOTE] = ACTIONS(1677), + [anon_sym_BQUOTE] = ACTIONS(1677), + [sym_bytes_literal] = ACTIONS(1677), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1675), + [sym_at_ident] = ACTIONS(1677), + [sym_hash_ident] = ACTIONS(1677), + [sym_type_ident] = ACTIONS(1677), + [sym_ct_type_ident] = ACTIONS(1677), + [sym_const_ident] = ACTIONS(1675), + [sym_builtin] = ACTIONS(1677), + [anon_sym_LPAREN] = ACTIONS(1677), + [anon_sym_AMP] = ACTIONS(1675), + [anon_sym_static] = ACTIONS(1675), + [anon_sym_tlocal] = ACTIONS(1675), + [anon_sym_SEMI] = ACTIONS(1677), + [anon_sym_fn] = ACTIONS(1675), + [anon_sym_LBRACE] = ACTIONS(1675), + [anon_sym_const] = ACTIONS(1675), + [anon_sym_var] = ACTIONS(1675), + [anon_sym_return] = ACTIONS(1675), + [anon_sym_continue] = ACTIONS(1675), + [anon_sym_break] = ACTIONS(1675), + [anon_sym_defer] = ACTIONS(1675), + [anon_sym_assert] = ACTIONS(1675), + [anon_sym_nextcase] = ACTIONS(1675), + [anon_sym_switch] = ACTIONS(1675), + [anon_sym_AMP_AMP] = ACTIONS(1677), + [anon_sym_if] = ACTIONS(1675), + [anon_sym_for] = ACTIONS(1675), + [anon_sym_foreach] = ACTIONS(1675), + [anon_sym_foreach_r] = ACTIONS(1675), + [anon_sym_while] = ACTIONS(1675), + [anon_sym_do] = ACTIONS(1675), + [anon_sym_int] = ACTIONS(1675), + [anon_sym_PLUS] = ACTIONS(1675), + [anon_sym_DASH] = ACTIONS(1675), + [anon_sym_STAR] = ACTIONS(1677), + [anon_sym_asm] = ACTIONS(1675), + [anon_sym_DOLLARassert] = ACTIONS(1675), + [anon_sym_DOLLARerror] = ACTIONS(1675), + [anon_sym_DOLLARecho] = ACTIONS(1675), + [anon_sym_DOLLARif] = ACTIONS(1675), + [anon_sym_DOLLARswitch] = ACTIONS(1675), + [anon_sym_DOLLARfor] = ACTIONS(1675), + [anon_sym_DOLLARendfor] = ACTIONS(1675), + [anon_sym_DOLLARforeach] = ACTIONS(1675), + [anon_sym_DOLLARalignof] = ACTIONS(1675), + [anon_sym_DOLLARextnameof] = ACTIONS(1675), + [anon_sym_DOLLARnameof] = ACTIONS(1675), + [anon_sym_DOLLARoffsetof] = ACTIONS(1675), + [anon_sym_DOLLARqnameof] = ACTIONS(1675), + [anon_sym_DOLLARvaconst] = ACTIONS(1675), + [anon_sym_DOLLARvaarg] = ACTIONS(1675), + [anon_sym_DOLLARvaref] = ACTIONS(1675), + [anon_sym_DOLLARvaexpr] = ACTIONS(1675), + [anon_sym_true] = ACTIONS(1675), + [anon_sym_false] = ACTIONS(1675), + [anon_sym_null] = ACTIONS(1675), + [anon_sym_DOLLARvacount] = ACTIONS(1675), + [anon_sym_DOLLARappend] = ACTIONS(1675), + [anon_sym_DOLLARconcat] = ACTIONS(1675), + [anon_sym_DOLLAReval] = ACTIONS(1675), + [anon_sym_DOLLARis_const] = ACTIONS(1675), + [anon_sym_DOLLARsizeof] = ACTIONS(1675), + [anon_sym_DOLLARstringify] = ACTIONS(1675), + [anon_sym_DOLLARand] = ACTIONS(1675), + [anon_sym_DOLLARdefined] = ACTIONS(1675), + [anon_sym_DOLLARembed] = ACTIONS(1675), + [anon_sym_DOLLARor] = ACTIONS(1675), + [anon_sym_DOLLARfeature] = ACTIONS(1675), + [anon_sym_DOLLARassignable] = ACTIONS(1675), + [anon_sym_BANG] = ACTIONS(1677), + [anon_sym_TILDE] = ACTIONS(1677), + [anon_sym_PLUS_PLUS] = ACTIONS(1677), + [anon_sym_DASH_DASH] = ACTIONS(1677), + [anon_sym_typeid] = ACTIONS(1675), + [anon_sym_LBRACE_PIPE] = ACTIONS(1677), + [anon_sym_void] = ACTIONS(1675), + [anon_sym_bool] = ACTIONS(1675), + [anon_sym_char] = ACTIONS(1675), + [anon_sym_ichar] = ACTIONS(1675), + [anon_sym_short] = ACTIONS(1675), + [anon_sym_ushort] = ACTIONS(1675), + [anon_sym_uint] = ACTIONS(1675), + [anon_sym_long] = ACTIONS(1675), + [anon_sym_ulong] = ACTIONS(1675), + [anon_sym_int128] = ACTIONS(1675), + [anon_sym_uint128] = ACTIONS(1675), + [anon_sym_float] = ACTIONS(1675), + [anon_sym_double] = ACTIONS(1675), + [anon_sym_float16] = ACTIONS(1675), + [anon_sym_bfloat16] = ACTIONS(1675), + [anon_sym_float128] = ACTIONS(1675), + [anon_sym_iptr] = ACTIONS(1675), + [anon_sym_uptr] = ACTIONS(1675), + [anon_sym_isz] = ACTIONS(1675), + [anon_sym_usz] = ACTIONS(1675), + [anon_sym_anyfault] = ACTIONS(1675), + [anon_sym_any] = ACTIONS(1675), + [anon_sym_DOLLARtypeof] = ACTIONS(1675), + [anon_sym_DOLLARtypefrom] = ACTIONS(1675), + [anon_sym_DOLLARvatype] = ACTIONS(1675), + [anon_sym_DOLLARevaltype] = ACTIONS(1675), + [sym_real_literal] = ACTIONS(1677), }, [606] = { [sym_line_comment] = STATE(606), [sym_doc_comment] = STATE(606), [sym_block_comment] = STATE(606), - [sym_ident] = ACTIONS(1528), - [sym_integer_literal] = ACTIONS(1530), - [anon_sym_SQUOTE] = ACTIONS(1530), - [anon_sym_DQUOTE] = ACTIONS(1530), - [anon_sym_BQUOTE] = ACTIONS(1530), - [sym_bytes_literal] = ACTIONS(1530), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1528), - [sym_at_ident] = ACTIONS(1530), - [sym_hash_ident] = ACTIONS(1530), - [sym_type_ident] = ACTIONS(1530), - [sym_ct_type_ident] = ACTIONS(1530), - [sym_const_ident] = ACTIONS(1528), - [sym_builtin] = ACTIONS(1530), - [anon_sym_LPAREN] = ACTIONS(1530), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_static] = ACTIONS(1528), - [anon_sym_tlocal] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(1530), - [anon_sym_fn] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_var] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(1528), - [anon_sym_continue] = ACTIONS(1528), - [anon_sym_break] = ACTIONS(1528), - [anon_sym_defer] = ACTIONS(1528), - [anon_sym_assert] = ACTIONS(1528), - [anon_sym_nextcase] = ACTIONS(1528), - [anon_sym_switch] = ACTIONS(1528), - [anon_sym_AMP_AMP] = ACTIONS(1530), - [anon_sym_if] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1528), - [anon_sym_foreach] = ACTIONS(1528), - [anon_sym_foreach_r] = ACTIONS(1528), - [anon_sym_while] = ACTIONS(1528), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_int] = ACTIONS(1528), - [anon_sym_PLUS] = ACTIONS(1528), - [anon_sym_DASH] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1530), - [anon_sym_asm] = ACTIONS(1528), - [anon_sym_DOLLARassert] = ACTIONS(1528), - [anon_sym_DOLLARerror] = ACTIONS(1528), - [anon_sym_DOLLARecho] = ACTIONS(1528), - [anon_sym_DOLLARif] = ACTIONS(1528), - [anon_sym_DOLLARendif] = ACTIONS(1528), - [anon_sym_DOLLARelse] = ACTIONS(1528), - [anon_sym_DOLLARswitch] = ACTIONS(1528), - [anon_sym_DOLLARfor] = ACTIONS(1528), - [anon_sym_DOLLARforeach] = ACTIONS(1528), - [anon_sym_DOLLARalignof] = ACTIONS(1528), - [anon_sym_DOLLARextnameof] = ACTIONS(1528), - [anon_sym_DOLLARnameof] = ACTIONS(1528), - [anon_sym_DOLLARoffsetof] = ACTIONS(1528), - [anon_sym_DOLLARqnameof] = ACTIONS(1528), - [anon_sym_DOLLARvaconst] = ACTIONS(1528), - [anon_sym_DOLLARvaarg] = ACTIONS(1528), - [anon_sym_DOLLARvaref] = ACTIONS(1528), - [anon_sym_DOLLARvaexpr] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [anon_sym_null] = ACTIONS(1528), - [anon_sym_DOLLARvacount] = ACTIONS(1528), - [anon_sym_DOLLARappend] = ACTIONS(1528), - [anon_sym_DOLLARconcat] = ACTIONS(1528), - [anon_sym_DOLLAReval] = ACTIONS(1528), - [anon_sym_DOLLARis_const] = ACTIONS(1528), - [anon_sym_DOLLARsizeof] = ACTIONS(1528), - [anon_sym_DOLLARstringify] = ACTIONS(1528), - [anon_sym_DOLLARand] = ACTIONS(1528), - [anon_sym_DOLLARdefined] = ACTIONS(1528), - [anon_sym_DOLLARembed] = ACTIONS(1528), - [anon_sym_DOLLARor] = ACTIONS(1528), - [anon_sym_DOLLARfeature] = ACTIONS(1528), - [anon_sym_DOLLARassignable] = ACTIONS(1528), - [anon_sym_BANG] = ACTIONS(1530), - [anon_sym_TILDE] = ACTIONS(1530), - [anon_sym_PLUS_PLUS] = ACTIONS(1530), - [anon_sym_DASH_DASH] = ACTIONS(1530), - [anon_sym_typeid] = ACTIONS(1528), - [anon_sym_LBRACE_PIPE] = ACTIONS(1530), - [anon_sym_void] = ACTIONS(1528), - [anon_sym_bool] = ACTIONS(1528), - [anon_sym_char] = ACTIONS(1528), - [anon_sym_ichar] = ACTIONS(1528), - [anon_sym_short] = ACTIONS(1528), - [anon_sym_ushort] = ACTIONS(1528), - [anon_sym_uint] = ACTIONS(1528), - [anon_sym_long] = ACTIONS(1528), - [anon_sym_ulong] = ACTIONS(1528), - [anon_sym_int128] = ACTIONS(1528), - [anon_sym_uint128] = ACTIONS(1528), - [anon_sym_float] = ACTIONS(1528), - [anon_sym_double] = ACTIONS(1528), - [anon_sym_float16] = ACTIONS(1528), - [anon_sym_bfloat16] = ACTIONS(1528), - [anon_sym_float128] = ACTIONS(1528), - [anon_sym_iptr] = ACTIONS(1528), - [anon_sym_uptr] = ACTIONS(1528), - [anon_sym_isz] = ACTIONS(1528), - [anon_sym_usz] = ACTIONS(1528), - [anon_sym_anyfault] = ACTIONS(1528), - [anon_sym_any] = ACTIONS(1528), - [anon_sym_DOLLARtypeof] = ACTIONS(1528), - [anon_sym_DOLLARtypefrom] = ACTIONS(1528), - [anon_sym_DOLLARvatype] = ACTIONS(1528), - [anon_sym_DOLLARevaltype] = ACTIONS(1528), - [sym_real_literal] = ACTIONS(1530), + [sym_ident] = ACTIONS(1363), + [sym_integer_literal] = ACTIONS(1365), + [anon_sym_SQUOTE] = ACTIONS(1365), + [anon_sym_DQUOTE] = ACTIONS(1365), + [anon_sym_BQUOTE] = ACTIONS(1365), + [sym_bytes_literal] = ACTIONS(1365), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1363), + [sym_at_ident] = ACTIONS(1365), + [sym_hash_ident] = ACTIONS(1365), + [sym_type_ident] = ACTIONS(1365), + [sym_ct_type_ident] = ACTIONS(1365), + [sym_const_ident] = ACTIONS(1363), + [sym_builtin] = ACTIONS(1365), + [anon_sym_LPAREN] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1363), + [anon_sym_static] = ACTIONS(1363), + [anon_sym_tlocal] = ACTIONS(1363), + [anon_sym_SEMI] = ACTIONS(1365), + [anon_sym_fn] = ACTIONS(1363), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_const] = ACTIONS(1363), + [anon_sym_var] = ACTIONS(1363), + [anon_sym_return] = ACTIONS(1363), + [anon_sym_continue] = ACTIONS(1363), + [anon_sym_break] = ACTIONS(1363), + [anon_sym_defer] = ACTIONS(1363), + [anon_sym_assert] = ACTIONS(1363), + [anon_sym_nextcase] = ACTIONS(1363), + [anon_sym_switch] = ACTIONS(1363), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_if] = ACTIONS(1363), + [anon_sym_for] = ACTIONS(1363), + [anon_sym_foreach] = ACTIONS(1363), + [anon_sym_foreach_r] = ACTIONS(1363), + [anon_sym_while] = ACTIONS(1363), + [anon_sym_do] = ACTIONS(1363), + [anon_sym_int] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_asm] = ACTIONS(1363), + [anon_sym_DOLLARassert] = ACTIONS(1363), + [anon_sym_DOLLARerror] = ACTIONS(1363), + [anon_sym_DOLLARecho] = ACTIONS(1363), + [anon_sym_DOLLARif] = ACTIONS(1363), + [anon_sym_DOLLARswitch] = ACTIONS(1363), + [anon_sym_DOLLARfor] = ACTIONS(1363), + [anon_sym_DOLLARendfor] = ACTIONS(1363), + [anon_sym_DOLLARforeach] = ACTIONS(1363), + [anon_sym_DOLLARalignof] = ACTIONS(1363), + [anon_sym_DOLLARextnameof] = ACTIONS(1363), + [anon_sym_DOLLARnameof] = ACTIONS(1363), + [anon_sym_DOLLARoffsetof] = ACTIONS(1363), + [anon_sym_DOLLARqnameof] = ACTIONS(1363), + [anon_sym_DOLLARvaconst] = ACTIONS(1363), + [anon_sym_DOLLARvaarg] = ACTIONS(1363), + [anon_sym_DOLLARvaref] = ACTIONS(1363), + [anon_sym_DOLLARvaexpr] = ACTIONS(1363), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_null] = ACTIONS(1363), + [anon_sym_DOLLARvacount] = ACTIONS(1363), + [anon_sym_DOLLARappend] = ACTIONS(1363), + [anon_sym_DOLLARconcat] = ACTIONS(1363), + [anon_sym_DOLLAReval] = ACTIONS(1363), + [anon_sym_DOLLARis_const] = ACTIONS(1363), + [anon_sym_DOLLARsizeof] = ACTIONS(1363), + [anon_sym_DOLLARstringify] = ACTIONS(1363), + [anon_sym_DOLLARand] = ACTIONS(1363), + [anon_sym_DOLLARdefined] = ACTIONS(1363), + [anon_sym_DOLLARembed] = ACTIONS(1363), + [anon_sym_DOLLARor] = ACTIONS(1363), + [anon_sym_DOLLARfeature] = ACTIONS(1363), + [anon_sym_DOLLARassignable] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1365), + [anon_sym_TILDE] = ACTIONS(1365), + [anon_sym_PLUS_PLUS] = ACTIONS(1365), + [anon_sym_DASH_DASH] = ACTIONS(1365), + [anon_sym_typeid] = ACTIONS(1363), + [anon_sym_LBRACE_PIPE] = ACTIONS(1365), + [anon_sym_void] = ACTIONS(1363), + [anon_sym_bool] = ACTIONS(1363), + [anon_sym_char] = ACTIONS(1363), + [anon_sym_ichar] = ACTIONS(1363), + [anon_sym_short] = ACTIONS(1363), + [anon_sym_ushort] = ACTIONS(1363), + [anon_sym_uint] = ACTIONS(1363), + [anon_sym_long] = ACTIONS(1363), + [anon_sym_ulong] = ACTIONS(1363), + [anon_sym_int128] = ACTIONS(1363), + [anon_sym_uint128] = ACTIONS(1363), + [anon_sym_float] = ACTIONS(1363), + [anon_sym_double] = ACTIONS(1363), + [anon_sym_float16] = ACTIONS(1363), + [anon_sym_bfloat16] = ACTIONS(1363), + [anon_sym_float128] = ACTIONS(1363), + [anon_sym_iptr] = ACTIONS(1363), + [anon_sym_uptr] = ACTIONS(1363), + [anon_sym_isz] = ACTIONS(1363), + [anon_sym_usz] = ACTIONS(1363), + [anon_sym_anyfault] = ACTIONS(1363), + [anon_sym_any] = ACTIONS(1363), + [anon_sym_DOLLARtypeof] = ACTIONS(1363), + [anon_sym_DOLLARtypefrom] = ACTIONS(1363), + [anon_sym_DOLLARvatype] = ACTIONS(1363), + [anon_sym_DOLLARevaltype] = ACTIONS(1363), + [sym_real_literal] = ACTIONS(1365), }, [607] = { [sym_line_comment] = STATE(607), [sym_doc_comment] = STATE(607), [sym_block_comment] = STATE(607), - [sym_ident] = ACTIONS(1500), - [sym_integer_literal] = ACTIONS(1502), - [anon_sym_SQUOTE] = ACTIONS(1502), - [anon_sym_DQUOTE] = ACTIONS(1502), - [anon_sym_BQUOTE] = ACTIONS(1502), - [sym_bytes_literal] = ACTIONS(1502), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1500), - [sym_at_ident] = ACTIONS(1502), - [sym_hash_ident] = ACTIONS(1502), - [sym_type_ident] = ACTIONS(1502), - [sym_ct_type_ident] = ACTIONS(1502), - [sym_const_ident] = ACTIONS(1500), - [sym_builtin] = ACTIONS(1502), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_AMP] = ACTIONS(1500), - [anon_sym_static] = ACTIONS(1500), - [anon_sym_tlocal] = ACTIONS(1500), - [anon_sym_SEMI] = ACTIONS(1502), - [anon_sym_fn] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_const] = ACTIONS(1500), - [anon_sym_var] = ACTIONS(1500), - [anon_sym_return] = ACTIONS(1500), - [anon_sym_continue] = ACTIONS(1500), - [anon_sym_break] = ACTIONS(1500), - [anon_sym_defer] = ACTIONS(1500), - [anon_sym_assert] = ACTIONS(1500), - [anon_sym_nextcase] = ACTIONS(1500), - [anon_sym_switch] = ACTIONS(1500), - [anon_sym_AMP_AMP] = ACTIONS(1502), - [anon_sym_if] = ACTIONS(1500), - [anon_sym_for] = ACTIONS(1500), - [anon_sym_foreach] = ACTIONS(1500), - [anon_sym_foreach_r] = ACTIONS(1500), - [anon_sym_while] = ACTIONS(1500), - [anon_sym_do] = ACTIONS(1500), - [anon_sym_int] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1500), - [anon_sym_DASH] = ACTIONS(1500), - [anon_sym_STAR] = ACTIONS(1502), - [anon_sym_asm] = ACTIONS(1500), - [anon_sym_DOLLARassert] = ACTIONS(1500), - [anon_sym_DOLLARerror] = ACTIONS(1500), - [anon_sym_DOLLARecho] = ACTIONS(1500), - [anon_sym_DOLLARif] = ACTIONS(1500), - [anon_sym_DOLLARendif] = ACTIONS(1500), - [anon_sym_DOLLARelse] = ACTIONS(1500), - [anon_sym_DOLLARswitch] = ACTIONS(1500), - [anon_sym_DOLLARfor] = ACTIONS(1500), - [anon_sym_DOLLARforeach] = ACTIONS(1500), - [anon_sym_DOLLARalignof] = ACTIONS(1500), - [anon_sym_DOLLARextnameof] = ACTIONS(1500), - [anon_sym_DOLLARnameof] = ACTIONS(1500), - [anon_sym_DOLLARoffsetof] = ACTIONS(1500), - [anon_sym_DOLLARqnameof] = ACTIONS(1500), - [anon_sym_DOLLARvaconst] = ACTIONS(1500), - [anon_sym_DOLLARvaarg] = ACTIONS(1500), - [anon_sym_DOLLARvaref] = ACTIONS(1500), - [anon_sym_DOLLARvaexpr] = ACTIONS(1500), - [anon_sym_true] = ACTIONS(1500), - [anon_sym_false] = ACTIONS(1500), - [anon_sym_null] = ACTIONS(1500), - [anon_sym_DOLLARvacount] = ACTIONS(1500), - [anon_sym_DOLLARappend] = ACTIONS(1500), - [anon_sym_DOLLARconcat] = ACTIONS(1500), - [anon_sym_DOLLAReval] = ACTIONS(1500), - [anon_sym_DOLLARis_const] = ACTIONS(1500), - [anon_sym_DOLLARsizeof] = ACTIONS(1500), - [anon_sym_DOLLARstringify] = ACTIONS(1500), - [anon_sym_DOLLARand] = ACTIONS(1500), - [anon_sym_DOLLARdefined] = ACTIONS(1500), - [anon_sym_DOLLARembed] = ACTIONS(1500), - [anon_sym_DOLLARor] = ACTIONS(1500), - [anon_sym_DOLLARfeature] = ACTIONS(1500), - [anon_sym_DOLLARassignable] = ACTIONS(1500), - [anon_sym_BANG] = ACTIONS(1502), - [anon_sym_TILDE] = ACTIONS(1502), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), - [anon_sym_DASH_DASH] = ACTIONS(1502), - [anon_sym_typeid] = ACTIONS(1500), - [anon_sym_LBRACE_PIPE] = ACTIONS(1502), - [anon_sym_void] = ACTIONS(1500), - [anon_sym_bool] = ACTIONS(1500), - [anon_sym_char] = ACTIONS(1500), - [anon_sym_ichar] = ACTIONS(1500), - [anon_sym_short] = ACTIONS(1500), - [anon_sym_ushort] = ACTIONS(1500), - [anon_sym_uint] = ACTIONS(1500), - [anon_sym_long] = ACTIONS(1500), - [anon_sym_ulong] = ACTIONS(1500), - [anon_sym_int128] = ACTIONS(1500), - [anon_sym_uint128] = ACTIONS(1500), - [anon_sym_float] = ACTIONS(1500), - [anon_sym_double] = ACTIONS(1500), - [anon_sym_float16] = ACTIONS(1500), - [anon_sym_bfloat16] = ACTIONS(1500), - [anon_sym_float128] = ACTIONS(1500), - [anon_sym_iptr] = ACTIONS(1500), - [anon_sym_uptr] = ACTIONS(1500), - [anon_sym_isz] = ACTIONS(1500), - [anon_sym_usz] = ACTIONS(1500), - [anon_sym_anyfault] = ACTIONS(1500), - [anon_sym_any] = ACTIONS(1500), - [anon_sym_DOLLARtypeof] = ACTIONS(1500), - [anon_sym_DOLLARtypefrom] = ACTIONS(1500), - [anon_sym_DOLLARvatype] = ACTIONS(1500), - [anon_sym_DOLLARevaltype] = ACTIONS(1500), - [sym_real_literal] = ACTIONS(1502), + [sym_ident] = ACTIONS(1577), + [sym_integer_literal] = ACTIONS(1579), + [anon_sym_SQUOTE] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1579), + [sym_bytes_literal] = ACTIONS(1579), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1577), + [sym_at_ident] = ACTIONS(1579), + [sym_hash_ident] = ACTIONS(1579), + [sym_type_ident] = ACTIONS(1579), + [sym_ct_type_ident] = ACTIONS(1579), + [sym_const_ident] = ACTIONS(1577), + [sym_builtin] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_AMP] = ACTIONS(1577), + [anon_sym_static] = ACTIONS(1577), + [anon_sym_tlocal] = ACTIONS(1577), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_fn] = ACTIONS(1577), + [anon_sym_LBRACE] = ACTIONS(1577), + [anon_sym_const] = ACTIONS(1577), + [anon_sym_var] = ACTIONS(1577), + [anon_sym_return] = ACTIONS(1577), + [anon_sym_continue] = ACTIONS(1577), + [anon_sym_break] = ACTIONS(1577), + [anon_sym_defer] = ACTIONS(1577), + [anon_sym_assert] = ACTIONS(1577), + [anon_sym_nextcase] = ACTIONS(1577), + [anon_sym_switch] = ACTIONS(1577), + [anon_sym_AMP_AMP] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1577), + [anon_sym_for] = ACTIONS(1577), + [anon_sym_foreach] = ACTIONS(1577), + [anon_sym_foreach_r] = ACTIONS(1577), + [anon_sym_while] = ACTIONS(1577), + [anon_sym_do] = ACTIONS(1577), + [anon_sym_int] = ACTIONS(1577), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_asm] = ACTIONS(1577), + [anon_sym_DOLLARassert] = ACTIONS(1577), + [anon_sym_DOLLARerror] = ACTIONS(1577), + [anon_sym_DOLLARecho] = ACTIONS(1577), + [anon_sym_DOLLARif] = ACTIONS(1577), + [anon_sym_DOLLARswitch] = ACTIONS(1577), + [anon_sym_DOLLARfor] = ACTIONS(1577), + [anon_sym_DOLLARendfor] = ACTIONS(1577), + [anon_sym_DOLLARforeach] = ACTIONS(1577), + [anon_sym_DOLLARalignof] = ACTIONS(1577), + [anon_sym_DOLLARextnameof] = ACTIONS(1577), + [anon_sym_DOLLARnameof] = ACTIONS(1577), + [anon_sym_DOLLARoffsetof] = ACTIONS(1577), + [anon_sym_DOLLARqnameof] = ACTIONS(1577), + [anon_sym_DOLLARvaconst] = ACTIONS(1577), + [anon_sym_DOLLARvaarg] = ACTIONS(1577), + [anon_sym_DOLLARvaref] = ACTIONS(1577), + [anon_sym_DOLLARvaexpr] = ACTIONS(1577), + [anon_sym_true] = ACTIONS(1577), + [anon_sym_false] = ACTIONS(1577), + [anon_sym_null] = ACTIONS(1577), + [anon_sym_DOLLARvacount] = ACTIONS(1577), + [anon_sym_DOLLARappend] = ACTIONS(1577), + [anon_sym_DOLLARconcat] = ACTIONS(1577), + [anon_sym_DOLLAReval] = ACTIONS(1577), + [anon_sym_DOLLARis_const] = ACTIONS(1577), + [anon_sym_DOLLARsizeof] = ACTIONS(1577), + [anon_sym_DOLLARstringify] = ACTIONS(1577), + [anon_sym_DOLLARand] = ACTIONS(1577), + [anon_sym_DOLLARdefined] = ACTIONS(1577), + [anon_sym_DOLLARembed] = ACTIONS(1577), + [anon_sym_DOLLARor] = ACTIONS(1577), + [anon_sym_DOLLARfeature] = ACTIONS(1577), + [anon_sym_DOLLARassignable] = ACTIONS(1577), + [anon_sym_BANG] = ACTIONS(1579), + [anon_sym_TILDE] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_DASH_DASH] = ACTIONS(1579), + [anon_sym_typeid] = ACTIONS(1577), + [anon_sym_LBRACE_PIPE] = ACTIONS(1579), + [anon_sym_void] = ACTIONS(1577), + [anon_sym_bool] = ACTIONS(1577), + [anon_sym_char] = ACTIONS(1577), + [anon_sym_ichar] = ACTIONS(1577), + [anon_sym_short] = ACTIONS(1577), + [anon_sym_ushort] = ACTIONS(1577), + [anon_sym_uint] = ACTIONS(1577), + [anon_sym_long] = ACTIONS(1577), + [anon_sym_ulong] = ACTIONS(1577), + [anon_sym_int128] = ACTIONS(1577), + [anon_sym_uint128] = ACTIONS(1577), + [anon_sym_float] = ACTIONS(1577), + [anon_sym_double] = ACTIONS(1577), + [anon_sym_float16] = ACTIONS(1577), + [anon_sym_bfloat16] = ACTIONS(1577), + [anon_sym_float128] = ACTIONS(1577), + [anon_sym_iptr] = ACTIONS(1577), + [anon_sym_uptr] = ACTIONS(1577), + [anon_sym_isz] = ACTIONS(1577), + [anon_sym_usz] = ACTIONS(1577), + [anon_sym_anyfault] = ACTIONS(1577), + [anon_sym_any] = ACTIONS(1577), + [anon_sym_DOLLARtypeof] = ACTIONS(1577), + [anon_sym_DOLLARtypefrom] = ACTIONS(1577), + [anon_sym_DOLLARvatype] = ACTIONS(1577), + [anon_sym_DOLLARevaltype] = ACTIONS(1577), + [sym_real_literal] = ACTIONS(1579), }, [608] = { [sym_line_comment] = STATE(608), [sym_doc_comment] = STATE(608), [sym_block_comment] = STATE(608), - [sym_ident] = ACTIONS(1536), - [sym_integer_literal] = ACTIONS(1538), - [anon_sym_SQUOTE] = ACTIONS(1538), - [anon_sym_DQUOTE] = ACTIONS(1538), - [anon_sym_BQUOTE] = ACTIONS(1538), - [sym_bytes_literal] = ACTIONS(1538), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1536), - [sym_at_ident] = ACTIONS(1538), - [sym_hash_ident] = ACTIONS(1538), - [sym_type_ident] = ACTIONS(1538), - [sym_ct_type_ident] = ACTIONS(1538), - [sym_const_ident] = ACTIONS(1536), - [sym_builtin] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1538), - [anon_sym_AMP] = ACTIONS(1536), - [anon_sym_static] = ACTIONS(1536), - [anon_sym_tlocal] = ACTIONS(1536), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_fn] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(1536), - [anon_sym_const] = ACTIONS(1536), - [anon_sym_var] = ACTIONS(1536), - [anon_sym_return] = ACTIONS(1536), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_break] = ACTIONS(1536), - [anon_sym_defer] = ACTIONS(1536), - [anon_sym_assert] = ACTIONS(1536), - [anon_sym_nextcase] = ACTIONS(1536), - [anon_sym_switch] = ACTIONS(1536), - [anon_sym_AMP_AMP] = ACTIONS(1538), - [anon_sym_if] = ACTIONS(1536), - [anon_sym_for] = ACTIONS(1536), - [anon_sym_foreach] = ACTIONS(1536), - [anon_sym_foreach_r] = ACTIONS(1536), - [anon_sym_while] = ACTIONS(1536), - [anon_sym_do] = ACTIONS(1536), - [anon_sym_int] = ACTIONS(1536), - [anon_sym_PLUS] = ACTIONS(1536), - [anon_sym_DASH] = ACTIONS(1536), - [anon_sym_STAR] = ACTIONS(1538), - [anon_sym_asm] = ACTIONS(1536), - [anon_sym_DOLLARassert] = ACTIONS(1536), - [anon_sym_DOLLARerror] = ACTIONS(1536), - [anon_sym_DOLLARecho] = ACTIONS(1536), - [anon_sym_DOLLARif] = ACTIONS(1536), - [anon_sym_DOLLARendif] = ACTIONS(1536), - [anon_sym_DOLLARelse] = ACTIONS(1536), - [anon_sym_DOLLARswitch] = ACTIONS(1536), - [anon_sym_DOLLARfor] = ACTIONS(1536), - [anon_sym_DOLLARforeach] = ACTIONS(1536), - [anon_sym_DOLLARalignof] = ACTIONS(1536), - [anon_sym_DOLLARextnameof] = ACTIONS(1536), - [anon_sym_DOLLARnameof] = ACTIONS(1536), - [anon_sym_DOLLARoffsetof] = ACTIONS(1536), - [anon_sym_DOLLARqnameof] = ACTIONS(1536), - [anon_sym_DOLLARvaconst] = ACTIONS(1536), - [anon_sym_DOLLARvaarg] = ACTIONS(1536), - [anon_sym_DOLLARvaref] = ACTIONS(1536), - [anon_sym_DOLLARvaexpr] = ACTIONS(1536), - [anon_sym_true] = ACTIONS(1536), - [anon_sym_false] = ACTIONS(1536), - [anon_sym_null] = ACTIONS(1536), - [anon_sym_DOLLARvacount] = ACTIONS(1536), - [anon_sym_DOLLARappend] = ACTIONS(1536), - [anon_sym_DOLLARconcat] = ACTIONS(1536), - [anon_sym_DOLLAReval] = ACTIONS(1536), - [anon_sym_DOLLARis_const] = ACTIONS(1536), - [anon_sym_DOLLARsizeof] = ACTIONS(1536), - [anon_sym_DOLLARstringify] = ACTIONS(1536), - [anon_sym_DOLLARand] = ACTIONS(1536), - [anon_sym_DOLLARdefined] = ACTIONS(1536), - [anon_sym_DOLLARembed] = ACTIONS(1536), - [anon_sym_DOLLARor] = ACTIONS(1536), - [anon_sym_DOLLARfeature] = ACTIONS(1536), - [anon_sym_DOLLARassignable] = ACTIONS(1536), - [anon_sym_BANG] = ACTIONS(1538), - [anon_sym_TILDE] = ACTIONS(1538), - [anon_sym_PLUS_PLUS] = ACTIONS(1538), - [anon_sym_DASH_DASH] = ACTIONS(1538), - [anon_sym_typeid] = ACTIONS(1536), - [anon_sym_LBRACE_PIPE] = ACTIONS(1538), - [anon_sym_void] = ACTIONS(1536), - [anon_sym_bool] = ACTIONS(1536), - [anon_sym_char] = ACTIONS(1536), - [anon_sym_ichar] = ACTIONS(1536), - [anon_sym_short] = ACTIONS(1536), - [anon_sym_ushort] = ACTIONS(1536), - [anon_sym_uint] = ACTIONS(1536), - [anon_sym_long] = ACTIONS(1536), - [anon_sym_ulong] = ACTIONS(1536), - [anon_sym_int128] = ACTIONS(1536), - [anon_sym_uint128] = ACTIONS(1536), - [anon_sym_float] = ACTIONS(1536), - [anon_sym_double] = ACTIONS(1536), - [anon_sym_float16] = ACTIONS(1536), - [anon_sym_bfloat16] = ACTIONS(1536), - [anon_sym_float128] = ACTIONS(1536), - [anon_sym_iptr] = ACTIONS(1536), - [anon_sym_uptr] = ACTIONS(1536), - [anon_sym_isz] = ACTIONS(1536), - [anon_sym_usz] = ACTIONS(1536), - [anon_sym_anyfault] = ACTIONS(1536), - [anon_sym_any] = ACTIONS(1536), - [anon_sym_DOLLARtypeof] = ACTIONS(1536), - [anon_sym_DOLLARtypefrom] = ACTIONS(1536), - [anon_sym_DOLLARvatype] = ACTIONS(1536), - [anon_sym_DOLLARevaltype] = ACTIONS(1536), - [sym_real_literal] = ACTIONS(1538), + [sym_ident] = ACTIONS(1621), + [sym_integer_literal] = ACTIONS(1623), + [anon_sym_SQUOTE] = ACTIONS(1623), + [anon_sym_DQUOTE] = ACTIONS(1623), + [anon_sym_BQUOTE] = ACTIONS(1623), + [sym_bytes_literal] = ACTIONS(1623), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1621), + [sym_at_ident] = ACTIONS(1623), + [sym_hash_ident] = ACTIONS(1623), + [sym_type_ident] = ACTIONS(1623), + [sym_ct_type_ident] = ACTIONS(1623), + [sym_const_ident] = ACTIONS(1621), + [sym_builtin] = ACTIONS(1623), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_AMP] = ACTIONS(1621), + [anon_sym_static] = ACTIONS(1621), + [anon_sym_tlocal] = ACTIONS(1621), + [anon_sym_SEMI] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_LBRACE] = ACTIONS(1621), + [anon_sym_const] = ACTIONS(1621), + [anon_sym_var] = ACTIONS(1621), + [anon_sym_return] = ACTIONS(1621), + [anon_sym_continue] = ACTIONS(1621), + [anon_sym_break] = ACTIONS(1621), + [anon_sym_defer] = ACTIONS(1621), + [anon_sym_assert] = ACTIONS(1621), + [anon_sym_nextcase] = ACTIONS(1621), + [anon_sym_switch] = ACTIONS(1621), + [anon_sym_AMP_AMP] = ACTIONS(1623), + [anon_sym_if] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1621), + [anon_sym_foreach] = ACTIONS(1621), + [anon_sym_foreach_r] = ACTIONS(1621), + [anon_sym_while] = ACTIONS(1621), + [anon_sym_do] = ACTIONS(1621), + [anon_sym_int] = ACTIONS(1621), + [anon_sym_PLUS] = ACTIONS(1621), + [anon_sym_DASH] = ACTIONS(1621), + [anon_sym_STAR] = ACTIONS(1623), + [anon_sym_asm] = ACTIONS(1621), + [anon_sym_DOLLARassert] = ACTIONS(1621), + [anon_sym_DOLLARerror] = ACTIONS(1621), + [anon_sym_DOLLARecho] = ACTIONS(1621), + [anon_sym_DOLLARif] = ACTIONS(1621), + [anon_sym_DOLLARswitch] = ACTIONS(1621), + [anon_sym_DOLLARfor] = ACTIONS(1621), + [anon_sym_DOLLARendfor] = ACTIONS(1621), + [anon_sym_DOLLARforeach] = ACTIONS(1621), + [anon_sym_DOLLARalignof] = ACTIONS(1621), + [anon_sym_DOLLARextnameof] = ACTIONS(1621), + [anon_sym_DOLLARnameof] = ACTIONS(1621), + [anon_sym_DOLLARoffsetof] = ACTIONS(1621), + [anon_sym_DOLLARqnameof] = ACTIONS(1621), + [anon_sym_DOLLARvaconst] = ACTIONS(1621), + [anon_sym_DOLLARvaarg] = ACTIONS(1621), + [anon_sym_DOLLARvaref] = ACTIONS(1621), + [anon_sym_DOLLARvaexpr] = ACTIONS(1621), + [anon_sym_true] = ACTIONS(1621), + [anon_sym_false] = ACTIONS(1621), + [anon_sym_null] = ACTIONS(1621), + [anon_sym_DOLLARvacount] = ACTIONS(1621), + [anon_sym_DOLLARappend] = ACTIONS(1621), + [anon_sym_DOLLARconcat] = ACTIONS(1621), + [anon_sym_DOLLAReval] = ACTIONS(1621), + [anon_sym_DOLLARis_const] = ACTIONS(1621), + [anon_sym_DOLLARsizeof] = ACTIONS(1621), + [anon_sym_DOLLARstringify] = ACTIONS(1621), + [anon_sym_DOLLARand] = ACTIONS(1621), + [anon_sym_DOLLARdefined] = ACTIONS(1621), + [anon_sym_DOLLARembed] = ACTIONS(1621), + [anon_sym_DOLLARor] = ACTIONS(1621), + [anon_sym_DOLLARfeature] = ACTIONS(1621), + [anon_sym_DOLLARassignable] = ACTIONS(1621), + [anon_sym_BANG] = ACTIONS(1623), + [anon_sym_TILDE] = ACTIONS(1623), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_typeid] = ACTIONS(1621), + [anon_sym_LBRACE_PIPE] = ACTIONS(1623), + [anon_sym_void] = ACTIONS(1621), + [anon_sym_bool] = ACTIONS(1621), + [anon_sym_char] = ACTIONS(1621), + [anon_sym_ichar] = ACTIONS(1621), + [anon_sym_short] = ACTIONS(1621), + [anon_sym_ushort] = ACTIONS(1621), + [anon_sym_uint] = ACTIONS(1621), + [anon_sym_long] = ACTIONS(1621), + [anon_sym_ulong] = ACTIONS(1621), + [anon_sym_int128] = ACTIONS(1621), + [anon_sym_uint128] = ACTIONS(1621), + [anon_sym_float] = ACTIONS(1621), + [anon_sym_double] = ACTIONS(1621), + [anon_sym_float16] = ACTIONS(1621), + [anon_sym_bfloat16] = ACTIONS(1621), + [anon_sym_float128] = ACTIONS(1621), + [anon_sym_iptr] = ACTIONS(1621), + [anon_sym_uptr] = ACTIONS(1621), + [anon_sym_isz] = ACTIONS(1621), + [anon_sym_usz] = ACTIONS(1621), + [anon_sym_anyfault] = ACTIONS(1621), + [anon_sym_any] = ACTIONS(1621), + [anon_sym_DOLLARtypeof] = ACTIONS(1621), + [anon_sym_DOLLARtypefrom] = ACTIONS(1621), + [anon_sym_DOLLARvatype] = ACTIONS(1621), + [anon_sym_DOLLARevaltype] = ACTIONS(1621), + [sym_real_literal] = ACTIONS(1623), }, [609] = { [sym_line_comment] = STATE(609), [sym_doc_comment] = STATE(609), [sym_block_comment] = STATE(609), - [sym_ident] = ACTIONS(1532), - [sym_integer_literal] = ACTIONS(1534), - [anon_sym_SQUOTE] = ACTIONS(1534), - [anon_sym_DQUOTE] = ACTIONS(1534), - [anon_sym_BQUOTE] = ACTIONS(1534), - [sym_bytes_literal] = ACTIONS(1534), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1532), - [sym_at_ident] = ACTIONS(1534), - [sym_hash_ident] = ACTIONS(1534), - [sym_type_ident] = ACTIONS(1534), - [sym_ct_type_ident] = ACTIONS(1534), - [sym_const_ident] = ACTIONS(1532), - [sym_builtin] = ACTIONS(1534), - [anon_sym_LPAREN] = ACTIONS(1534), - [anon_sym_AMP] = ACTIONS(1532), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_tlocal] = ACTIONS(1532), - [anon_sym_SEMI] = ACTIONS(1534), - [anon_sym_fn] = ACTIONS(1532), - [anon_sym_LBRACE] = ACTIONS(1532), - [anon_sym_const] = ACTIONS(1532), - [anon_sym_var] = ACTIONS(1532), - [anon_sym_return] = ACTIONS(1532), - [anon_sym_continue] = ACTIONS(1532), - [anon_sym_break] = ACTIONS(1532), - [anon_sym_defer] = ACTIONS(1532), - [anon_sym_assert] = ACTIONS(1532), - [anon_sym_nextcase] = ACTIONS(1532), - [anon_sym_switch] = ACTIONS(1532), - [anon_sym_AMP_AMP] = ACTIONS(1534), - [anon_sym_if] = ACTIONS(1532), - [anon_sym_for] = ACTIONS(1532), - [anon_sym_foreach] = ACTIONS(1532), - [anon_sym_foreach_r] = ACTIONS(1532), - [anon_sym_while] = ACTIONS(1532), - [anon_sym_do] = ACTIONS(1532), - [anon_sym_int] = ACTIONS(1532), - [anon_sym_PLUS] = ACTIONS(1532), - [anon_sym_DASH] = ACTIONS(1532), - [anon_sym_STAR] = ACTIONS(1534), - [anon_sym_asm] = ACTIONS(1532), - [anon_sym_DOLLARassert] = ACTIONS(1532), - [anon_sym_DOLLARerror] = ACTIONS(1532), - [anon_sym_DOLLARecho] = ACTIONS(1532), - [anon_sym_DOLLARif] = ACTIONS(1532), - [anon_sym_DOLLARendif] = ACTIONS(1532), - [anon_sym_DOLLARelse] = ACTIONS(1532), - [anon_sym_DOLLARswitch] = ACTIONS(1532), - [anon_sym_DOLLARfor] = ACTIONS(1532), - [anon_sym_DOLLARforeach] = ACTIONS(1532), - [anon_sym_DOLLARalignof] = ACTIONS(1532), - [anon_sym_DOLLARextnameof] = ACTIONS(1532), - [anon_sym_DOLLARnameof] = ACTIONS(1532), - [anon_sym_DOLLARoffsetof] = ACTIONS(1532), - [anon_sym_DOLLARqnameof] = ACTIONS(1532), - [anon_sym_DOLLARvaconst] = ACTIONS(1532), - [anon_sym_DOLLARvaarg] = ACTIONS(1532), - [anon_sym_DOLLARvaref] = ACTIONS(1532), - [anon_sym_DOLLARvaexpr] = ACTIONS(1532), - [anon_sym_true] = ACTIONS(1532), - [anon_sym_false] = ACTIONS(1532), - [anon_sym_null] = ACTIONS(1532), - [anon_sym_DOLLARvacount] = ACTIONS(1532), - [anon_sym_DOLLARappend] = ACTIONS(1532), - [anon_sym_DOLLARconcat] = ACTIONS(1532), - [anon_sym_DOLLAReval] = ACTIONS(1532), - [anon_sym_DOLLARis_const] = ACTIONS(1532), - [anon_sym_DOLLARsizeof] = ACTIONS(1532), - [anon_sym_DOLLARstringify] = ACTIONS(1532), - [anon_sym_DOLLARand] = ACTIONS(1532), - [anon_sym_DOLLARdefined] = ACTIONS(1532), - [anon_sym_DOLLARembed] = ACTIONS(1532), - [anon_sym_DOLLARor] = ACTIONS(1532), - [anon_sym_DOLLARfeature] = ACTIONS(1532), - [anon_sym_DOLLARassignable] = ACTIONS(1532), - [anon_sym_BANG] = ACTIONS(1534), - [anon_sym_TILDE] = ACTIONS(1534), - [anon_sym_PLUS_PLUS] = ACTIONS(1534), - [anon_sym_DASH_DASH] = ACTIONS(1534), - [anon_sym_typeid] = ACTIONS(1532), - [anon_sym_LBRACE_PIPE] = ACTIONS(1534), - [anon_sym_void] = ACTIONS(1532), - [anon_sym_bool] = ACTIONS(1532), - [anon_sym_char] = ACTIONS(1532), - [anon_sym_ichar] = ACTIONS(1532), - [anon_sym_short] = ACTIONS(1532), - [anon_sym_ushort] = ACTIONS(1532), - [anon_sym_uint] = ACTIONS(1532), - [anon_sym_long] = ACTIONS(1532), - [anon_sym_ulong] = ACTIONS(1532), - [anon_sym_int128] = ACTIONS(1532), - [anon_sym_uint128] = ACTIONS(1532), - [anon_sym_float] = ACTIONS(1532), - [anon_sym_double] = ACTIONS(1532), - [anon_sym_float16] = ACTIONS(1532), - [anon_sym_bfloat16] = ACTIONS(1532), - [anon_sym_float128] = ACTIONS(1532), - [anon_sym_iptr] = ACTIONS(1532), - [anon_sym_uptr] = ACTIONS(1532), - [anon_sym_isz] = ACTIONS(1532), - [anon_sym_usz] = ACTIONS(1532), - [anon_sym_anyfault] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_DOLLARtypeof] = ACTIONS(1532), - [anon_sym_DOLLARtypefrom] = ACTIONS(1532), - [anon_sym_DOLLARvatype] = ACTIONS(1532), - [anon_sym_DOLLARevaltype] = ACTIONS(1532), - [sym_real_literal] = ACTIONS(1534), + [sym_ident] = ACTIONS(1545), + [sym_integer_literal] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1547), + [anon_sym_DQUOTE] = ACTIONS(1547), + [anon_sym_BQUOTE] = ACTIONS(1547), + [sym_bytes_literal] = ACTIONS(1547), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1545), + [sym_at_ident] = ACTIONS(1547), + [sym_hash_ident] = ACTIONS(1547), + [sym_type_ident] = ACTIONS(1547), + [sym_ct_type_ident] = ACTIONS(1547), + [sym_const_ident] = ACTIONS(1545), + [sym_builtin] = ACTIONS(1547), + [anon_sym_LPAREN] = ACTIONS(1547), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_static] = ACTIONS(1545), + [anon_sym_tlocal] = ACTIONS(1545), + [anon_sym_SEMI] = ACTIONS(1547), + [anon_sym_fn] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(1545), + [anon_sym_const] = ACTIONS(1545), + [anon_sym_var] = ACTIONS(1545), + [anon_sym_return] = ACTIONS(1545), + [anon_sym_continue] = ACTIONS(1545), + [anon_sym_break] = ACTIONS(1545), + [anon_sym_defer] = ACTIONS(1545), + [anon_sym_assert] = ACTIONS(1545), + [anon_sym_nextcase] = ACTIONS(1545), + [anon_sym_switch] = ACTIONS(1545), + [anon_sym_AMP_AMP] = ACTIONS(1547), + [anon_sym_if] = ACTIONS(1545), + [anon_sym_for] = ACTIONS(1545), + [anon_sym_foreach] = ACTIONS(1545), + [anon_sym_foreach_r] = ACTIONS(1545), + [anon_sym_while] = ACTIONS(1545), + [anon_sym_do] = ACTIONS(1545), + [anon_sym_int] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_STAR] = ACTIONS(1547), + [anon_sym_asm] = ACTIONS(1545), + [anon_sym_DOLLARassert] = ACTIONS(1545), + [anon_sym_DOLLARerror] = ACTIONS(1545), + [anon_sym_DOLLARecho] = ACTIONS(1545), + [anon_sym_DOLLARif] = ACTIONS(1545), + [anon_sym_DOLLARswitch] = ACTIONS(1545), + [anon_sym_DOLLARfor] = ACTIONS(1545), + [anon_sym_DOLLARendfor] = ACTIONS(1545), + [anon_sym_DOLLARforeach] = ACTIONS(1545), + [anon_sym_DOLLARalignof] = ACTIONS(1545), + [anon_sym_DOLLARextnameof] = ACTIONS(1545), + [anon_sym_DOLLARnameof] = ACTIONS(1545), + [anon_sym_DOLLARoffsetof] = ACTIONS(1545), + [anon_sym_DOLLARqnameof] = ACTIONS(1545), + [anon_sym_DOLLARvaconst] = ACTIONS(1545), + [anon_sym_DOLLARvaarg] = ACTIONS(1545), + [anon_sym_DOLLARvaref] = ACTIONS(1545), + [anon_sym_DOLLARvaexpr] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(1545), + [anon_sym_false] = ACTIONS(1545), + [anon_sym_null] = ACTIONS(1545), + [anon_sym_DOLLARvacount] = ACTIONS(1545), + [anon_sym_DOLLARappend] = ACTIONS(1545), + [anon_sym_DOLLARconcat] = ACTIONS(1545), + [anon_sym_DOLLAReval] = ACTIONS(1545), + [anon_sym_DOLLARis_const] = ACTIONS(1545), + [anon_sym_DOLLARsizeof] = ACTIONS(1545), + [anon_sym_DOLLARstringify] = ACTIONS(1545), + [anon_sym_DOLLARand] = ACTIONS(1545), + [anon_sym_DOLLARdefined] = ACTIONS(1545), + [anon_sym_DOLLARembed] = ACTIONS(1545), + [anon_sym_DOLLARor] = ACTIONS(1545), + [anon_sym_DOLLARfeature] = ACTIONS(1545), + [anon_sym_DOLLARassignable] = ACTIONS(1545), + [anon_sym_BANG] = ACTIONS(1547), + [anon_sym_TILDE] = ACTIONS(1547), + [anon_sym_PLUS_PLUS] = ACTIONS(1547), + [anon_sym_DASH_DASH] = ACTIONS(1547), + [anon_sym_typeid] = ACTIONS(1545), + [anon_sym_LBRACE_PIPE] = ACTIONS(1547), + [anon_sym_void] = ACTIONS(1545), + [anon_sym_bool] = ACTIONS(1545), + [anon_sym_char] = ACTIONS(1545), + [anon_sym_ichar] = ACTIONS(1545), + [anon_sym_short] = ACTIONS(1545), + [anon_sym_ushort] = ACTIONS(1545), + [anon_sym_uint] = ACTIONS(1545), + [anon_sym_long] = ACTIONS(1545), + [anon_sym_ulong] = ACTIONS(1545), + [anon_sym_int128] = ACTIONS(1545), + [anon_sym_uint128] = ACTIONS(1545), + [anon_sym_float] = ACTIONS(1545), + [anon_sym_double] = ACTIONS(1545), + [anon_sym_float16] = ACTIONS(1545), + [anon_sym_bfloat16] = ACTIONS(1545), + [anon_sym_float128] = ACTIONS(1545), + [anon_sym_iptr] = ACTIONS(1545), + [anon_sym_uptr] = ACTIONS(1545), + [anon_sym_isz] = ACTIONS(1545), + [anon_sym_usz] = ACTIONS(1545), + [anon_sym_anyfault] = ACTIONS(1545), + [anon_sym_any] = ACTIONS(1545), + [anon_sym_DOLLARtypeof] = ACTIONS(1545), + [anon_sym_DOLLARtypefrom] = ACTIONS(1545), + [anon_sym_DOLLARvatype] = ACTIONS(1545), + [anon_sym_DOLLARevaltype] = ACTIONS(1545), + [sym_real_literal] = ACTIONS(1547), }, [610] = { [sym_line_comment] = STATE(610), [sym_doc_comment] = STATE(610), [sym_block_comment] = STATE(610), - [sym_ident] = ACTIONS(1520), - [sym_integer_literal] = ACTIONS(1522), - [anon_sym_SQUOTE] = ACTIONS(1522), - [anon_sym_DQUOTE] = ACTIONS(1522), - [anon_sym_BQUOTE] = ACTIONS(1522), - [sym_bytes_literal] = ACTIONS(1522), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1520), - [sym_at_ident] = ACTIONS(1522), - [sym_hash_ident] = ACTIONS(1522), - [sym_type_ident] = ACTIONS(1522), - [sym_ct_type_ident] = ACTIONS(1522), - [sym_const_ident] = ACTIONS(1520), - [sym_builtin] = ACTIONS(1522), - [anon_sym_LPAREN] = ACTIONS(1522), - [anon_sym_AMP] = ACTIONS(1520), - [anon_sym_static] = ACTIONS(1520), - [anon_sym_tlocal] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1522), - [anon_sym_fn] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1520), - [anon_sym_const] = ACTIONS(1520), - [anon_sym_var] = ACTIONS(1520), - [anon_sym_return] = ACTIONS(1520), - [anon_sym_continue] = ACTIONS(1520), - [anon_sym_break] = ACTIONS(1520), - [anon_sym_defer] = ACTIONS(1520), - [anon_sym_assert] = ACTIONS(1520), - [anon_sym_nextcase] = ACTIONS(1520), - [anon_sym_switch] = ACTIONS(1520), - [anon_sym_AMP_AMP] = ACTIONS(1522), - [anon_sym_if] = ACTIONS(1520), - [anon_sym_for] = ACTIONS(1520), - [anon_sym_foreach] = ACTIONS(1520), - [anon_sym_foreach_r] = ACTIONS(1520), - [anon_sym_while] = ACTIONS(1520), - [anon_sym_do] = ACTIONS(1520), - [anon_sym_int] = ACTIONS(1520), - [anon_sym_PLUS] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1520), - [anon_sym_STAR] = ACTIONS(1522), - [anon_sym_asm] = ACTIONS(1520), - [anon_sym_DOLLARassert] = ACTIONS(1520), - [anon_sym_DOLLARerror] = ACTIONS(1520), - [anon_sym_DOLLARecho] = ACTIONS(1520), - [anon_sym_DOLLARif] = ACTIONS(1520), - [anon_sym_DOLLARendif] = ACTIONS(1520), - [anon_sym_DOLLARelse] = ACTIONS(1520), - [anon_sym_DOLLARswitch] = ACTIONS(1520), - [anon_sym_DOLLARfor] = ACTIONS(1520), - [anon_sym_DOLLARforeach] = ACTIONS(1520), - [anon_sym_DOLLARalignof] = ACTIONS(1520), - [anon_sym_DOLLARextnameof] = ACTIONS(1520), - [anon_sym_DOLLARnameof] = ACTIONS(1520), - [anon_sym_DOLLARoffsetof] = ACTIONS(1520), - [anon_sym_DOLLARqnameof] = ACTIONS(1520), - [anon_sym_DOLLARvaconst] = ACTIONS(1520), - [anon_sym_DOLLARvaarg] = ACTIONS(1520), - [anon_sym_DOLLARvaref] = ACTIONS(1520), - [anon_sym_DOLLARvaexpr] = ACTIONS(1520), - [anon_sym_true] = ACTIONS(1520), - [anon_sym_false] = ACTIONS(1520), - [anon_sym_null] = ACTIONS(1520), - [anon_sym_DOLLARvacount] = ACTIONS(1520), - [anon_sym_DOLLARappend] = ACTIONS(1520), - [anon_sym_DOLLARconcat] = ACTIONS(1520), - [anon_sym_DOLLAReval] = ACTIONS(1520), - [anon_sym_DOLLARis_const] = ACTIONS(1520), - [anon_sym_DOLLARsizeof] = ACTIONS(1520), - [anon_sym_DOLLARstringify] = ACTIONS(1520), - [anon_sym_DOLLARand] = ACTIONS(1520), - [anon_sym_DOLLARdefined] = ACTIONS(1520), - [anon_sym_DOLLARembed] = ACTIONS(1520), - [anon_sym_DOLLARor] = ACTIONS(1520), - [anon_sym_DOLLARfeature] = ACTIONS(1520), - [anon_sym_DOLLARassignable] = ACTIONS(1520), - [anon_sym_BANG] = ACTIONS(1522), - [anon_sym_TILDE] = ACTIONS(1522), - [anon_sym_PLUS_PLUS] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1522), - [anon_sym_typeid] = ACTIONS(1520), - [anon_sym_LBRACE_PIPE] = ACTIONS(1522), - [anon_sym_void] = ACTIONS(1520), - [anon_sym_bool] = ACTIONS(1520), - [anon_sym_char] = ACTIONS(1520), - [anon_sym_ichar] = ACTIONS(1520), - [anon_sym_short] = ACTIONS(1520), - [anon_sym_ushort] = ACTIONS(1520), - [anon_sym_uint] = ACTIONS(1520), - [anon_sym_long] = ACTIONS(1520), - [anon_sym_ulong] = ACTIONS(1520), - [anon_sym_int128] = ACTIONS(1520), - [anon_sym_uint128] = ACTIONS(1520), - [anon_sym_float] = ACTIONS(1520), - [anon_sym_double] = ACTIONS(1520), - [anon_sym_float16] = ACTIONS(1520), - [anon_sym_bfloat16] = ACTIONS(1520), - [anon_sym_float128] = ACTIONS(1520), - [anon_sym_iptr] = ACTIONS(1520), - [anon_sym_uptr] = ACTIONS(1520), - [anon_sym_isz] = ACTIONS(1520), - [anon_sym_usz] = ACTIONS(1520), - [anon_sym_anyfault] = ACTIONS(1520), - [anon_sym_any] = ACTIONS(1520), - [anon_sym_DOLLARtypeof] = ACTIONS(1520), - [anon_sym_DOLLARtypefrom] = ACTIONS(1520), - [anon_sym_DOLLARvatype] = ACTIONS(1520), - [anon_sym_DOLLARevaltype] = ACTIONS(1520), - [sym_real_literal] = ACTIONS(1522), + [sym_ident] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1507), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1507), + [anon_sym_BQUOTE] = ACTIONS(1507), + [sym_bytes_literal] = ACTIONS(1507), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1505), + [sym_at_ident] = ACTIONS(1507), + [sym_hash_ident] = ACTIONS(1507), + [sym_type_ident] = ACTIONS(1507), + [sym_ct_type_ident] = ACTIONS(1507), + [sym_const_ident] = ACTIONS(1505), + [sym_builtin] = ACTIONS(1507), + [anon_sym_LPAREN] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_static] = ACTIONS(1505), + [anon_sym_tlocal] = ACTIONS(1505), + [anon_sym_SEMI] = ACTIONS(1507), + [anon_sym_fn] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_const] = ACTIONS(1505), + [anon_sym_var] = ACTIONS(1505), + [anon_sym_return] = ACTIONS(1505), + [anon_sym_continue] = ACTIONS(1505), + [anon_sym_break] = ACTIONS(1505), + [anon_sym_defer] = ACTIONS(1505), + [anon_sym_assert] = ACTIONS(1505), + [anon_sym_nextcase] = ACTIONS(1505), + [anon_sym_switch] = ACTIONS(1505), + [anon_sym_AMP_AMP] = ACTIONS(1507), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_for] = ACTIONS(1505), + [anon_sym_foreach] = ACTIONS(1505), + [anon_sym_foreach_r] = ACTIONS(1505), + [anon_sym_while] = ACTIONS(1505), + [anon_sym_do] = ACTIONS(1505), + [anon_sym_int] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1505), + [anon_sym_DASH] = ACTIONS(1505), + [anon_sym_STAR] = ACTIONS(1507), + [anon_sym_asm] = ACTIONS(1505), + [anon_sym_DOLLARassert] = ACTIONS(1505), + [anon_sym_DOLLARerror] = ACTIONS(1505), + [anon_sym_DOLLARecho] = ACTIONS(1505), + [anon_sym_DOLLARif] = ACTIONS(1505), + [anon_sym_DOLLARswitch] = ACTIONS(1505), + [anon_sym_DOLLARfor] = ACTIONS(1505), + [anon_sym_DOLLARforeach] = ACTIONS(1505), + [anon_sym_DOLLARendforeach] = ACTIONS(1505), + [anon_sym_DOLLARalignof] = ACTIONS(1505), + [anon_sym_DOLLARextnameof] = ACTIONS(1505), + [anon_sym_DOLLARnameof] = ACTIONS(1505), + [anon_sym_DOLLARoffsetof] = ACTIONS(1505), + [anon_sym_DOLLARqnameof] = ACTIONS(1505), + [anon_sym_DOLLARvaconst] = ACTIONS(1505), + [anon_sym_DOLLARvaarg] = ACTIONS(1505), + [anon_sym_DOLLARvaref] = ACTIONS(1505), + [anon_sym_DOLLARvaexpr] = ACTIONS(1505), + [anon_sym_true] = ACTIONS(1505), + [anon_sym_false] = ACTIONS(1505), + [anon_sym_null] = ACTIONS(1505), + [anon_sym_DOLLARvacount] = ACTIONS(1505), + [anon_sym_DOLLARappend] = ACTIONS(1505), + [anon_sym_DOLLARconcat] = ACTIONS(1505), + [anon_sym_DOLLAReval] = ACTIONS(1505), + [anon_sym_DOLLARis_const] = ACTIONS(1505), + [anon_sym_DOLLARsizeof] = ACTIONS(1505), + [anon_sym_DOLLARstringify] = ACTIONS(1505), + [anon_sym_DOLLARand] = ACTIONS(1505), + [anon_sym_DOLLARdefined] = ACTIONS(1505), + [anon_sym_DOLLARembed] = ACTIONS(1505), + [anon_sym_DOLLARor] = ACTIONS(1505), + [anon_sym_DOLLARfeature] = ACTIONS(1505), + [anon_sym_DOLLARassignable] = ACTIONS(1505), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_TILDE] = ACTIONS(1507), + [anon_sym_PLUS_PLUS] = ACTIONS(1507), + [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_typeid] = ACTIONS(1505), + [anon_sym_LBRACE_PIPE] = ACTIONS(1507), + [anon_sym_void] = ACTIONS(1505), + [anon_sym_bool] = ACTIONS(1505), + [anon_sym_char] = ACTIONS(1505), + [anon_sym_ichar] = ACTIONS(1505), + [anon_sym_short] = ACTIONS(1505), + [anon_sym_ushort] = ACTIONS(1505), + [anon_sym_uint] = ACTIONS(1505), + [anon_sym_long] = ACTIONS(1505), + [anon_sym_ulong] = ACTIONS(1505), + [anon_sym_int128] = ACTIONS(1505), + [anon_sym_uint128] = ACTIONS(1505), + [anon_sym_float] = ACTIONS(1505), + [anon_sym_double] = ACTIONS(1505), + [anon_sym_float16] = ACTIONS(1505), + [anon_sym_bfloat16] = ACTIONS(1505), + [anon_sym_float128] = ACTIONS(1505), + [anon_sym_iptr] = ACTIONS(1505), + [anon_sym_uptr] = ACTIONS(1505), + [anon_sym_isz] = ACTIONS(1505), + [anon_sym_usz] = ACTIONS(1505), + [anon_sym_anyfault] = ACTIONS(1505), + [anon_sym_any] = ACTIONS(1505), + [anon_sym_DOLLARtypeof] = ACTIONS(1505), + [anon_sym_DOLLARtypefrom] = ACTIONS(1505), + [anon_sym_DOLLARvatype] = ACTIONS(1505), + [anon_sym_DOLLARevaltype] = ACTIONS(1505), + [sym_real_literal] = ACTIONS(1507), }, [611] = { [sym_line_comment] = STATE(611), [sym_doc_comment] = STATE(611), [sym_block_comment] = STATE(611), - [sym_ident] = ACTIONS(1480), - [sym_integer_literal] = ACTIONS(1482), - [anon_sym_SQUOTE] = ACTIONS(1482), - [anon_sym_DQUOTE] = ACTIONS(1482), - [anon_sym_BQUOTE] = ACTIONS(1482), - [sym_bytes_literal] = ACTIONS(1482), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1480), - [sym_at_ident] = ACTIONS(1482), - [sym_hash_ident] = ACTIONS(1482), - [sym_type_ident] = ACTIONS(1482), - [sym_ct_type_ident] = ACTIONS(1482), - [sym_const_ident] = ACTIONS(1480), - [sym_builtin] = ACTIONS(1482), - [anon_sym_LPAREN] = ACTIONS(1482), - [anon_sym_AMP] = ACTIONS(1480), - [anon_sym_static] = ACTIONS(1480), - [anon_sym_tlocal] = ACTIONS(1480), - [anon_sym_SEMI] = ACTIONS(1482), - [anon_sym_fn] = ACTIONS(1480), - [anon_sym_LBRACE] = ACTIONS(1480), - [anon_sym_const] = ACTIONS(1480), - [anon_sym_var] = ACTIONS(1480), - [anon_sym_return] = ACTIONS(1480), - [anon_sym_continue] = ACTIONS(1480), - [anon_sym_break] = ACTIONS(1480), - [anon_sym_defer] = ACTIONS(1480), - [anon_sym_assert] = ACTIONS(1480), - [anon_sym_nextcase] = ACTIONS(1480), - [anon_sym_switch] = ACTIONS(1480), - [anon_sym_AMP_AMP] = ACTIONS(1482), - [anon_sym_if] = ACTIONS(1480), - [anon_sym_for] = ACTIONS(1480), - [anon_sym_foreach] = ACTIONS(1480), - [anon_sym_foreach_r] = ACTIONS(1480), - [anon_sym_while] = ACTIONS(1480), - [anon_sym_do] = ACTIONS(1480), - [anon_sym_int] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1480), - [anon_sym_DASH] = ACTIONS(1480), - [anon_sym_STAR] = ACTIONS(1482), - [anon_sym_asm] = ACTIONS(1480), - [anon_sym_DOLLARassert] = ACTIONS(1480), - [anon_sym_DOLLARerror] = ACTIONS(1480), - [anon_sym_DOLLARecho] = ACTIONS(1480), - [anon_sym_DOLLARif] = ACTIONS(1480), - [anon_sym_DOLLARendif] = ACTIONS(1480), - [anon_sym_DOLLARelse] = ACTIONS(1480), - [anon_sym_DOLLARswitch] = ACTIONS(1480), - [anon_sym_DOLLARfor] = ACTIONS(1480), - [anon_sym_DOLLARforeach] = ACTIONS(1480), - [anon_sym_DOLLARalignof] = ACTIONS(1480), - [anon_sym_DOLLARextnameof] = ACTIONS(1480), - [anon_sym_DOLLARnameof] = ACTIONS(1480), - [anon_sym_DOLLARoffsetof] = ACTIONS(1480), - [anon_sym_DOLLARqnameof] = ACTIONS(1480), - [anon_sym_DOLLARvaconst] = ACTIONS(1480), - [anon_sym_DOLLARvaarg] = ACTIONS(1480), - [anon_sym_DOLLARvaref] = ACTIONS(1480), - [anon_sym_DOLLARvaexpr] = ACTIONS(1480), - [anon_sym_true] = ACTIONS(1480), - [anon_sym_false] = ACTIONS(1480), - [anon_sym_null] = ACTIONS(1480), - [anon_sym_DOLLARvacount] = ACTIONS(1480), - [anon_sym_DOLLARappend] = ACTIONS(1480), - [anon_sym_DOLLARconcat] = ACTIONS(1480), - [anon_sym_DOLLAReval] = ACTIONS(1480), - [anon_sym_DOLLARis_const] = ACTIONS(1480), - [anon_sym_DOLLARsizeof] = ACTIONS(1480), - [anon_sym_DOLLARstringify] = ACTIONS(1480), - [anon_sym_DOLLARand] = ACTIONS(1480), - [anon_sym_DOLLARdefined] = ACTIONS(1480), - [anon_sym_DOLLARembed] = ACTIONS(1480), - [anon_sym_DOLLARor] = ACTIONS(1480), - [anon_sym_DOLLARfeature] = ACTIONS(1480), - [anon_sym_DOLLARassignable] = ACTIONS(1480), - [anon_sym_BANG] = ACTIONS(1482), - [anon_sym_TILDE] = ACTIONS(1482), - [anon_sym_PLUS_PLUS] = ACTIONS(1482), - [anon_sym_DASH_DASH] = ACTIONS(1482), - [anon_sym_typeid] = ACTIONS(1480), - [anon_sym_LBRACE_PIPE] = ACTIONS(1482), - [anon_sym_void] = ACTIONS(1480), - [anon_sym_bool] = ACTIONS(1480), - [anon_sym_char] = ACTIONS(1480), - [anon_sym_ichar] = ACTIONS(1480), - [anon_sym_short] = ACTIONS(1480), - [anon_sym_ushort] = ACTIONS(1480), - [anon_sym_uint] = ACTIONS(1480), - [anon_sym_long] = ACTIONS(1480), - [anon_sym_ulong] = ACTIONS(1480), - [anon_sym_int128] = ACTIONS(1480), - [anon_sym_uint128] = ACTIONS(1480), - [anon_sym_float] = ACTIONS(1480), - [anon_sym_double] = ACTIONS(1480), - [anon_sym_float16] = ACTIONS(1480), - [anon_sym_bfloat16] = ACTIONS(1480), - [anon_sym_float128] = ACTIONS(1480), - [anon_sym_iptr] = ACTIONS(1480), - [anon_sym_uptr] = ACTIONS(1480), - [anon_sym_isz] = ACTIONS(1480), - [anon_sym_usz] = ACTIONS(1480), - [anon_sym_anyfault] = ACTIONS(1480), - [anon_sym_any] = ACTIONS(1480), - [anon_sym_DOLLARtypeof] = ACTIONS(1480), - [anon_sym_DOLLARtypefrom] = ACTIONS(1480), - [anon_sym_DOLLARvatype] = ACTIONS(1480), - [anon_sym_DOLLARevaltype] = ACTIONS(1480), - [sym_real_literal] = ACTIONS(1482), + [sym_ident] = ACTIONS(1679), + [sym_integer_literal] = ACTIONS(1681), + [anon_sym_SQUOTE] = ACTIONS(1681), + [anon_sym_DQUOTE] = ACTIONS(1681), + [anon_sym_BQUOTE] = ACTIONS(1681), + [sym_bytes_literal] = ACTIONS(1681), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1679), + [sym_at_ident] = ACTIONS(1681), + [sym_hash_ident] = ACTIONS(1681), + [sym_type_ident] = ACTIONS(1681), + [sym_ct_type_ident] = ACTIONS(1681), + [sym_const_ident] = ACTIONS(1679), + [sym_builtin] = ACTIONS(1681), + [anon_sym_LPAREN] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1679), + [anon_sym_static] = ACTIONS(1679), + [anon_sym_tlocal] = ACTIONS(1679), + [anon_sym_SEMI] = ACTIONS(1681), + [anon_sym_fn] = ACTIONS(1679), + [anon_sym_LBRACE] = ACTIONS(1679), + [anon_sym_const] = ACTIONS(1679), + [anon_sym_var] = ACTIONS(1679), + [anon_sym_return] = ACTIONS(1679), + [anon_sym_continue] = ACTIONS(1679), + [anon_sym_break] = ACTIONS(1679), + [anon_sym_defer] = ACTIONS(1679), + [anon_sym_assert] = ACTIONS(1679), + [anon_sym_nextcase] = ACTIONS(1679), + [anon_sym_switch] = ACTIONS(1679), + [anon_sym_AMP_AMP] = ACTIONS(1681), + [anon_sym_if] = ACTIONS(1679), + [anon_sym_for] = ACTIONS(1679), + [anon_sym_foreach] = ACTIONS(1679), + [anon_sym_foreach_r] = ACTIONS(1679), + [anon_sym_while] = ACTIONS(1679), + [anon_sym_do] = ACTIONS(1679), + [anon_sym_int] = ACTIONS(1679), + [anon_sym_PLUS] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1679), + [anon_sym_STAR] = ACTIONS(1681), + [anon_sym_asm] = ACTIONS(1679), + [anon_sym_DOLLARassert] = ACTIONS(1679), + [anon_sym_DOLLARerror] = ACTIONS(1679), + [anon_sym_DOLLARecho] = ACTIONS(1679), + [anon_sym_DOLLARif] = ACTIONS(1679), + [anon_sym_DOLLARswitch] = ACTIONS(1679), + [anon_sym_DOLLARfor] = ACTIONS(1679), + [anon_sym_DOLLARendfor] = ACTIONS(1679), + [anon_sym_DOLLARforeach] = ACTIONS(1679), + [anon_sym_DOLLARalignof] = ACTIONS(1679), + [anon_sym_DOLLARextnameof] = ACTIONS(1679), + [anon_sym_DOLLARnameof] = ACTIONS(1679), + [anon_sym_DOLLARoffsetof] = ACTIONS(1679), + [anon_sym_DOLLARqnameof] = ACTIONS(1679), + [anon_sym_DOLLARvaconst] = ACTIONS(1679), + [anon_sym_DOLLARvaarg] = ACTIONS(1679), + [anon_sym_DOLLARvaref] = ACTIONS(1679), + [anon_sym_DOLLARvaexpr] = ACTIONS(1679), + [anon_sym_true] = ACTIONS(1679), + [anon_sym_false] = ACTIONS(1679), + [anon_sym_null] = ACTIONS(1679), + [anon_sym_DOLLARvacount] = ACTIONS(1679), + [anon_sym_DOLLARappend] = ACTIONS(1679), + [anon_sym_DOLLARconcat] = ACTIONS(1679), + [anon_sym_DOLLAReval] = ACTIONS(1679), + [anon_sym_DOLLARis_const] = ACTIONS(1679), + [anon_sym_DOLLARsizeof] = ACTIONS(1679), + [anon_sym_DOLLARstringify] = ACTIONS(1679), + [anon_sym_DOLLARand] = ACTIONS(1679), + [anon_sym_DOLLARdefined] = ACTIONS(1679), + [anon_sym_DOLLARembed] = ACTIONS(1679), + [anon_sym_DOLLARor] = ACTIONS(1679), + [anon_sym_DOLLARfeature] = ACTIONS(1679), + [anon_sym_DOLLARassignable] = ACTIONS(1679), + [anon_sym_BANG] = ACTIONS(1681), + [anon_sym_TILDE] = ACTIONS(1681), + [anon_sym_PLUS_PLUS] = ACTIONS(1681), + [anon_sym_DASH_DASH] = ACTIONS(1681), + [anon_sym_typeid] = ACTIONS(1679), + [anon_sym_LBRACE_PIPE] = ACTIONS(1681), + [anon_sym_void] = ACTIONS(1679), + [anon_sym_bool] = ACTIONS(1679), + [anon_sym_char] = ACTIONS(1679), + [anon_sym_ichar] = ACTIONS(1679), + [anon_sym_short] = ACTIONS(1679), + [anon_sym_ushort] = ACTIONS(1679), + [anon_sym_uint] = ACTIONS(1679), + [anon_sym_long] = ACTIONS(1679), + [anon_sym_ulong] = ACTIONS(1679), + [anon_sym_int128] = ACTIONS(1679), + [anon_sym_uint128] = ACTIONS(1679), + [anon_sym_float] = ACTIONS(1679), + [anon_sym_double] = ACTIONS(1679), + [anon_sym_float16] = ACTIONS(1679), + [anon_sym_bfloat16] = ACTIONS(1679), + [anon_sym_float128] = ACTIONS(1679), + [anon_sym_iptr] = ACTIONS(1679), + [anon_sym_uptr] = ACTIONS(1679), + [anon_sym_isz] = ACTIONS(1679), + [anon_sym_usz] = ACTIONS(1679), + [anon_sym_anyfault] = ACTIONS(1679), + [anon_sym_any] = ACTIONS(1679), + [anon_sym_DOLLARtypeof] = ACTIONS(1679), + [anon_sym_DOLLARtypefrom] = ACTIONS(1679), + [anon_sym_DOLLARvatype] = ACTIONS(1679), + [anon_sym_DOLLARevaltype] = ACTIONS(1679), + [sym_real_literal] = ACTIONS(1681), }, [612] = { [sym_line_comment] = STATE(612), [sym_doc_comment] = STATE(612), [sym_block_comment] = STATE(612), - [sym_ident] = ACTIONS(1516), - [sym_integer_literal] = ACTIONS(1518), - [anon_sym_SQUOTE] = ACTIONS(1518), - [anon_sym_DQUOTE] = ACTIONS(1518), - [anon_sym_BQUOTE] = ACTIONS(1518), - [sym_bytes_literal] = ACTIONS(1518), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1516), - [sym_at_ident] = ACTIONS(1518), - [sym_hash_ident] = ACTIONS(1518), - [sym_type_ident] = ACTIONS(1518), - [sym_ct_type_ident] = ACTIONS(1518), - [sym_const_ident] = ACTIONS(1516), - [sym_builtin] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1518), - [anon_sym_AMP] = ACTIONS(1516), - [anon_sym_static] = ACTIONS(1516), - [anon_sym_tlocal] = ACTIONS(1516), - [anon_sym_SEMI] = ACTIONS(1518), - [anon_sym_fn] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1516), - [anon_sym_const] = ACTIONS(1516), - [anon_sym_var] = ACTIONS(1516), - [anon_sym_return] = ACTIONS(1516), - [anon_sym_continue] = ACTIONS(1516), - [anon_sym_break] = ACTIONS(1516), - [anon_sym_defer] = ACTIONS(1516), - [anon_sym_assert] = ACTIONS(1516), - [anon_sym_nextcase] = ACTIONS(1516), - [anon_sym_switch] = ACTIONS(1516), - [anon_sym_AMP_AMP] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1516), - [anon_sym_for] = ACTIONS(1516), - [anon_sym_foreach] = ACTIONS(1516), - [anon_sym_foreach_r] = ACTIONS(1516), - [anon_sym_while] = ACTIONS(1516), - [anon_sym_do] = ACTIONS(1516), - [anon_sym_int] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1516), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_STAR] = ACTIONS(1518), - [anon_sym_asm] = ACTIONS(1516), - [anon_sym_DOLLARassert] = ACTIONS(1516), - [anon_sym_DOLLARerror] = ACTIONS(1516), - [anon_sym_DOLLARecho] = ACTIONS(1516), - [anon_sym_DOLLARif] = ACTIONS(1516), - [anon_sym_DOLLARendif] = ACTIONS(1516), - [anon_sym_DOLLARelse] = ACTIONS(1516), - [anon_sym_DOLLARswitch] = ACTIONS(1516), - [anon_sym_DOLLARfor] = ACTIONS(1516), - [anon_sym_DOLLARforeach] = ACTIONS(1516), - [anon_sym_DOLLARalignof] = ACTIONS(1516), - [anon_sym_DOLLARextnameof] = ACTIONS(1516), - [anon_sym_DOLLARnameof] = ACTIONS(1516), - [anon_sym_DOLLARoffsetof] = ACTIONS(1516), - [anon_sym_DOLLARqnameof] = ACTIONS(1516), - [anon_sym_DOLLARvaconst] = ACTIONS(1516), - [anon_sym_DOLLARvaarg] = ACTIONS(1516), - [anon_sym_DOLLARvaref] = ACTIONS(1516), - [anon_sym_DOLLARvaexpr] = ACTIONS(1516), - [anon_sym_true] = ACTIONS(1516), - [anon_sym_false] = ACTIONS(1516), - [anon_sym_null] = ACTIONS(1516), - [anon_sym_DOLLARvacount] = ACTIONS(1516), - [anon_sym_DOLLARappend] = ACTIONS(1516), - [anon_sym_DOLLARconcat] = ACTIONS(1516), - [anon_sym_DOLLAReval] = ACTIONS(1516), - [anon_sym_DOLLARis_const] = ACTIONS(1516), - [anon_sym_DOLLARsizeof] = ACTIONS(1516), - [anon_sym_DOLLARstringify] = ACTIONS(1516), - [anon_sym_DOLLARand] = ACTIONS(1516), - [anon_sym_DOLLARdefined] = ACTIONS(1516), - [anon_sym_DOLLARembed] = ACTIONS(1516), - [anon_sym_DOLLARor] = ACTIONS(1516), - [anon_sym_DOLLARfeature] = ACTIONS(1516), - [anon_sym_DOLLARassignable] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1518), - [anon_sym_TILDE] = ACTIONS(1518), - [anon_sym_PLUS_PLUS] = ACTIONS(1518), - [anon_sym_DASH_DASH] = ACTIONS(1518), - [anon_sym_typeid] = ACTIONS(1516), - [anon_sym_LBRACE_PIPE] = ACTIONS(1518), - [anon_sym_void] = ACTIONS(1516), - [anon_sym_bool] = ACTIONS(1516), - [anon_sym_char] = ACTIONS(1516), - [anon_sym_ichar] = ACTIONS(1516), - [anon_sym_short] = ACTIONS(1516), - [anon_sym_ushort] = ACTIONS(1516), - [anon_sym_uint] = ACTIONS(1516), - [anon_sym_long] = ACTIONS(1516), - [anon_sym_ulong] = ACTIONS(1516), - [anon_sym_int128] = ACTIONS(1516), - [anon_sym_uint128] = ACTIONS(1516), - [anon_sym_float] = ACTIONS(1516), - [anon_sym_double] = ACTIONS(1516), - [anon_sym_float16] = ACTIONS(1516), - [anon_sym_bfloat16] = ACTIONS(1516), - [anon_sym_float128] = ACTIONS(1516), - [anon_sym_iptr] = ACTIONS(1516), - [anon_sym_uptr] = ACTIONS(1516), - [anon_sym_isz] = ACTIONS(1516), - [anon_sym_usz] = ACTIONS(1516), - [anon_sym_anyfault] = ACTIONS(1516), - [anon_sym_any] = ACTIONS(1516), - [anon_sym_DOLLARtypeof] = ACTIONS(1516), - [anon_sym_DOLLARtypefrom] = ACTIONS(1516), - [anon_sym_DOLLARvatype] = ACTIONS(1516), - [anon_sym_DOLLARevaltype] = ACTIONS(1516), - [sym_real_literal] = ACTIONS(1518), + [sym_ident] = ACTIONS(1415), + [sym_integer_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1417), + [anon_sym_DQUOTE] = ACTIONS(1417), + [anon_sym_BQUOTE] = ACTIONS(1417), + [sym_bytes_literal] = ACTIONS(1417), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1415), + [sym_at_ident] = ACTIONS(1417), + [sym_hash_ident] = ACTIONS(1417), + [sym_type_ident] = ACTIONS(1417), + [sym_ct_type_ident] = ACTIONS(1417), + [sym_const_ident] = ACTIONS(1415), + [sym_builtin] = ACTIONS(1417), + [anon_sym_LPAREN] = ACTIONS(1417), + [anon_sym_AMP] = ACTIONS(1415), + [anon_sym_static] = ACTIONS(1415), + [anon_sym_tlocal] = ACTIONS(1415), + [anon_sym_SEMI] = ACTIONS(1417), + [anon_sym_fn] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1415), + [anon_sym_const] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1415), + [anon_sym_return] = ACTIONS(1415), + [anon_sym_continue] = ACTIONS(1415), + [anon_sym_break] = ACTIONS(1415), + [anon_sym_defer] = ACTIONS(1415), + [anon_sym_assert] = ACTIONS(1415), + [anon_sym_nextcase] = ACTIONS(1415), + [anon_sym_switch] = ACTIONS(1415), + [anon_sym_AMP_AMP] = ACTIONS(1417), + [anon_sym_if] = ACTIONS(1415), + [anon_sym_for] = ACTIONS(1415), + [anon_sym_foreach] = ACTIONS(1415), + [anon_sym_foreach_r] = ACTIONS(1415), + [anon_sym_while] = ACTIONS(1415), + [anon_sym_do] = ACTIONS(1415), + [anon_sym_int] = ACTIONS(1415), + [anon_sym_PLUS] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1415), + [anon_sym_STAR] = ACTIONS(1417), + [anon_sym_asm] = ACTIONS(1415), + [anon_sym_DOLLARassert] = ACTIONS(1415), + [anon_sym_DOLLARerror] = ACTIONS(1415), + [anon_sym_DOLLARecho] = ACTIONS(1415), + [anon_sym_DOLLARif] = ACTIONS(1415), + [anon_sym_DOLLARswitch] = ACTIONS(1415), + [anon_sym_DOLLARfor] = ACTIONS(1415), + [anon_sym_DOLLARendfor] = ACTIONS(1415), + [anon_sym_DOLLARforeach] = ACTIONS(1415), + [anon_sym_DOLLARalignof] = ACTIONS(1415), + [anon_sym_DOLLARextnameof] = ACTIONS(1415), + [anon_sym_DOLLARnameof] = ACTIONS(1415), + [anon_sym_DOLLARoffsetof] = ACTIONS(1415), + [anon_sym_DOLLARqnameof] = ACTIONS(1415), + [anon_sym_DOLLARvaconst] = ACTIONS(1415), + [anon_sym_DOLLARvaarg] = ACTIONS(1415), + [anon_sym_DOLLARvaref] = ACTIONS(1415), + [anon_sym_DOLLARvaexpr] = ACTIONS(1415), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_null] = ACTIONS(1415), + [anon_sym_DOLLARvacount] = ACTIONS(1415), + [anon_sym_DOLLARappend] = ACTIONS(1415), + [anon_sym_DOLLARconcat] = ACTIONS(1415), + [anon_sym_DOLLAReval] = ACTIONS(1415), + [anon_sym_DOLLARis_const] = ACTIONS(1415), + [anon_sym_DOLLARsizeof] = ACTIONS(1415), + [anon_sym_DOLLARstringify] = ACTIONS(1415), + [anon_sym_DOLLARand] = ACTIONS(1415), + [anon_sym_DOLLARdefined] = ACTIONS(1415), + [anon_sym_DOLLARembed] = ACTIONS(1415), + [anon_sym_DOLLARor] = ACTIONS(1415), + [anon_sym_DOLLARfeature] = ACTIONS(1415), + [anon_sym_DOLLARassignable] = ACTIONS(1415), + [anon_sym_BANG] = ACTIONS(1417), + [anon_sym_TILDE] = ACTIONS(1417), + [anon_sym_PLUS_PLUS] = ACTIONS(1417), + [anon_sym_DASH_DASH] = ACTIONS(1417), + [anon_sym_typeid] = ACTIONS(1415), + [anon_sym_LBRACE_PIPE] = ACTIONS(1417), + [anon_sym_void] = ACTIONS(1415), + [anon_sym_bool] = ACTIONS(1415), + [anon_sym_char] = ACTIONS(1415), + [anon_sym_ichar] = ACTIONS(1415), + [anon_sym_short] = ACTIONS(1415), + [anon_sym_ushort] = ACTIONS(1415), + [anon_sym_uint] = ACTIONS(1415), + [anon_sym_long] = ACTIONS(1415), + [anon_sym_ulong] = ACTIONS(1415), + [anon_sym_int128] = ACTIONS(1415), + [anon_sym_uint128] = ACTIONS(1415), + [anon_sym_float] = ACTIONS(1415), + [anon_sym_double] = ACTIONS(1415), + [anon_sym_float16] = ACTIONS(1415), + [anon_sym_bfloat16] = ACTIONS(1415), + [anon_sym_float128] = ACTIONS(1415), + [anon_sym_iptr] = ACTIONS(1415), + [anon_sym_uptr] = ACTIONS(1415), + [anon_sym_isz] = ACTIONS(1415), + [anon_sym_usz] = ACTIONS(1415), + [anon_sym_anyfault] = ACTIONS(1415), + [anon_sym_any] = ACTIONS(1415), + [anon_sym_DOLLARtypeof] = ACTIONS(1415), + [anon_sym_DOLLARtypefrom] = ACTIONS(1415), + [anon_sym_DOLLARvatype] = ACTIONS(1415), + [anon_sym_DOLLARevaltype] = ACTIONS(1415), + [sym_real_literal] = ACTIONS(1417), }, [613] = { [sym_line_comment] = STATE(613), [sym_doc_comment] = STATE(613), [sym_block_comment] = STATE(613), - [sym_ident] = ACTIONS(1472), - [sym_integer_literal] = ACTIONS(1474), - [anon_sym_SQUOTE] = ACTIONS(1474), - [anon_sym_DQUOTE] = ACTIONS(1474), - [anon_sym_BQUOTE] = ACTIONS(1474), - [sym_bytes_literal] = ACTIONS(1474), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1472), - [sym_at_ident] = ACTIONS(1474), - [sym_hash_ident] = ACTIONS(1474), - [sym_type_ident] = ACTIONS(1474), - [sym_ct_type_ident] = ACTIONS(1474), - [sym_const_ident] = ACTIONS(1472), - [sym_builtin] = ACTIONS(1474), - [anon_sym_LPAREN] = ACTIONS(1474), - [anon_sym_AMP] = ACTIONS(1472), - [anon_sym_static] = ACTIONS(1472), - [anon_sym_tlocal] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1474), - [anon_sym_fn] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1472), - [anon_sym_const] = ACTIONS(1472), - [anon_sym_var] = ACTIONS(1472), - [anon_sym_return] = ACTIONS(1472), - [anon_sym_continue] = ACTIONS(1472), - [anon_sym_break] = ACTIONS(1472), - [anon_sym_defer] = ACTIONS(1472), - [anon_sym_assert] = ACTIONS(1472), - [anon_sym_nextcase] = ACTIONS(1472), - [anon_sym_switch] = ACTIONS(1472), - [anon_sym_AMP_AMP] = ACTIONS(1474), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_for] = ACTIONS(1472), - [anon_sym_foreach] = ACTIONS(1472), - [anon_sym_foreach_r] = ACTIONS(1472), - [anon_sym_while] = ACTIONS(1472), - [anon_sym_do] = ACTIONS(1472), - [anon_sym_int] = ACTIONS(1472), - [anon_sym_PLUS] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1472), - [anon_sym_STAR] = ACTIONS(1474), - [anon_sym_asm] = ACTIONS(1472), - [anon_sym_DOLLARassert] = ACTIONS(1472), - [anon_sym_DOLLARerror] = ACTIONS(1472), - [anon_sym_DOLLARecho] = ACTIONS(1472), - [anon_sym_DOLLARif] = ACTIONS(1472), - [anon_sym_DOLLARendif] = ACTIONS(1472), - [anon_sym_DOLLARelse] = ACTIONS(1472), - [anon_sym_DOLLARswitch] = ACTIONS(1472), - [anon_sym_DOLLARfor] = ACTIONS(1472), - [anon_sym_DOLLARforeach] = ACTIONS(1472), - [anon_sym_DOLLARalignof] = ACTIONS(1472), - [anon_sym_DOLLARextnameof] = ACTIONS(1472), - [anon_sym_DOLLARnameof] = ACTIONS(1472), - [anon_sym_DOLLARoffsetof] = ACTIONS(1472), - [anon_sym_DOLLARqnameof] = ACTIONS(1472), - [anon_sym_DOLLARvaconst] = ACTIONS(1472), - [anon_sym_DOLLARvaarg] = ACTIONS(1472), - [anon_sym_DOLLARvaref] = ACTIONS(1472), - [anon_sym_DOLLARvaexpr] = ACTIONS(1472), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_null] = ACTIONS(1472), - [anon_sym_DOLLARvacount] = ACTIONS(1472), - [anon_sym_DOLLARappend] = ACTIONS(1472), - [anon_sym_DOLLARconcat] = ACTIONS(1472), - [anon_sym_DOLLAReval] = ACTIONS(1472), - [anon_sym_DOLLARis_const] = ACTIONS(1472), - [anon_sym_DOLLARsizeof] = ACTIONS(1472), - [anon_sym_DOLLARstringify] = ACTIONS(1472), - [anon_sym_DOLLARand] = ACTIONS(1472), - [anon_sym_DOLLARdefined] = ACTIONS(1472), - [anon_sym_DOLLARembed] = ACTIONS(1472), - [anon_sym_DOLLARor] = ACTIONS(1472), - [anon_sym_DOLLARfeature] = ACTIONS(1472), - [anon_sym_DOLLARassignable] = ACTIONS(1472), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_TILDE] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1474), - [anon_sym_DASH_DASH] = ACTIONS(1474), - [anon_sym_typeid] = ACTIONS(1472), - [anon_sym_LBRACE_PIPE] = ACTIONS(1474), - [anon_sym_void] = ACTIONS(1472), - [anon_sym_bool] = ACTIONS(1472), - [anon_sym_char] = ACTIONS(1472), - [anon_sym_ichar] = ACTIONS(1472), - [anon_sym_short] = ACTIONS(1472), - [anon_sym_ushort] = ACTIONS(1472), - [anon_sym_uint] = ACTIONS(1472), - [anon_sym_long] = ACTIONS(1472), - [anon_sym_ulong] = ACTIONS(1472), - [anon_sym_int128] = ACTIONS(1472), - [anon_sym_uint128] = ACTIONS(1472), - [anon_sym_float] = ACTIONS(1472), - [anon_sym_double] = ACTIONS(1472), - [anon_sym_float16] = ACTIONS(1472), - [anon_sym_bfloat16] = ACTIONS(1472), - [anon_sym_float128] = ACTIONS(1472), - [anon_sym_iptr] = ACTIONS(1472), - [anon_sym_uptr] = ACTIONS(1472), - [anon_sym_isz] = ACTIONS(1472), - [anon_sym_usz] = ACTIONS(1472), - [anon_sym_anyfault] = ACTIONS(1472), - [anon_sym_any] = ACTIONS(1472), - [anon_sym_DOLLARtypeof] = ACTIONS(1472), - [anon_sym_DOLLARtypefrom] = ACTIONS(1472), - [anon_sym_DOLLARvatype] = ACTIONS(1472), - [anon_sym_DOLLARevaltype] = ACTIONS(1472), - [sym_real_literal] = ACTIONS(1474), + [sym_ident] = ACTIONS(1593), + [sym_integer_literal] = ACTIONS(1595), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_DQUOTE] = ACTIONS(1595), + [anon_sym_BQUOTE] = ACTIONS(1595), + [sym_bytes_literal] = ACTIONS(1595), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1593), + [sym_at_ident] = ACTIONS(1595), + [sym_hash_ident] = ACTIONS(1595), + [sym_type_ident] = ACTIONS(1595), + [sym_ct_type_ident] = ACTIONS(1595), + [sym_const_ident] = ACTIONS(1593), + [sym_builtin] = ACTIONS(1595), + [anon_sym_LPAREN] = ACTIONS(1595), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_static] = ACTIONS(1593), + [anon_sym_tlocal] = ACTIONS(1593), + [anon_sym_SEMI] = ACTIONS(1595), + [anon_sym_fn] = ACTIONS(1593), + [anon_sym_LBRACE] = ACTIONS(1593), + [anon_sym_const] = ACTIONS(1593), + [anon_sym_var] = ACTIONS(1593), + [anon_sym_return] = ACTIONS(1593), + [anon_sym_continue] = ACTIONS(1593), + [anon_sym_break] = ACTIONS(1593), + [anon_sym_defer] = ACTIONS(1593), + [anon_sym_assert] = ACTIONS(1593), + [anon_sym_nextcase] = ACTIONS(1593), + [anon_sym_switch] = ACTIONS(1593), + [anon_sym_AMP_AMP] = ACTIONS(1595), + [anon_sym_if] = ACTIONS(1593), + [anon_sym_for] = ACTIONS(1593), + [anon_sym_foreach] = ACTIONS(1593), + [anon_sym_foreach_r] = ACTIONS(1593), + [anon_sym_while] = ACTIONS(1593), + [anon_sym_do] = ACTIONS(1593), + [anon_sym_int] = ACTIONS(1593), + [anon_sym_PLUS] = ACTIONS(1593), + [anon_sym_DASH] = ACTIONS(1593), + [anon_sym_STAR] = ACTIONS(1595), + [anon_sym_asm] = ACTIONS(1593), + [anon_sym_DOLLARassert] = ACTIONS(1593), + [anon_sym_DOLLARerror] = ACTIONS(1593), + [anon_sym_DOLLARecho] = ACTIONS(1593), + [anon_sym_DOLLARif] = ACTIONS(1593), + [anon_sym_DOLLARswitch] = ACTIONS(1593), + [anon_sym_DOLLARfor] = ACTIONS(1593), + [anon_sym_DOLLARendfor] = ACTIONS(1593), + [anon_sym_DOLLARforeach] = ACTIONS(1593), + [anon_sym_DOLLARalignof] = ACTIONS(1593), + [anon_sym_DOLLARextnameof] = ACTIONS(1593), + [anon_sym_DOLLARnameof] = ACTIONS(1593), + [anon_sym_DOLLARoffsetof] = ACTIONS(1593), + [anon_sym_DOLLARqnameof] = ACTIONS(1593), + [anon_sym_DOLLARvaconst] = ACTIONS(1593), + [anon_sym_DOLLARvaarg] = ACTIONS(1593), + [anon_sym_DOLLARvaref] = ACTIONS(1593), + [anon_sym_DOLLARvaexpr] = ACTIONS(1593), + [anon_sym_true] = ACTIONS(1593), + [anon_sym_false] = ACTIONS(1593), + [anon_sym_null] = ACTIONS(1593), + [anon_sym_DOLLARvacount] = ACTIONS(1593), + [anon_sym_DOLLARappend] = ACTIONS(1593), + [anon_sym_DOLLARconcat] = ACTIONS(1593), + [anon_sym_DOLLAReval] = ACTIONS(1593), + [anon_sym_DOLLARis_const] = ACTIONS(1593), + [anon_sym_DOLLARsizeof] = ACTIONS(1593), + [anon_sym_DOLLARstringify] = ACTIONS(1593), + [anon_sym_DOLLARand] = ACTIONS(1593), + [anon_sym_DOLLARdefined] = ACTIONS(1593), + [anon_sym_DOLLARembed] = ACTIONS(1593), + [anon_sym_DOLLARor] = ACTIONS(1593), + [anon_sym_DOLLARfeature] = ACTIONS(1593), + [anon_sym_DOLLARassignable] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1595), + [anon_sym_TILDE] = ACTIONS(1595), + [anon_sym_PLUS_PLUS] = ACTIONS(1595), + [anon_sym_DASH_DASH] = ACTIONS(1595), + [anon_sym_typeid] = ACTIONS(1593), + [anon_sym_LBRACE_PIPE] = ACTIONS(1595), + [anon_sym_void] = ACTIONS(1593), + [anon_sym_bool] = ACTIONS(1593), + [anon_sym_char] = ACTIONS(1593), + [anon_sym_ichar] = ACTIONS(1593), + [anon_sym_short] = ACTIONS(1593), + [anon_sym_ushort] = ACTIONS(1593), + [anon_sym_uint] = ACTIONS(1593), + [anon_sym_long] = ACTIONS(1593), + [anon_sym_ulong] = ACTIONS(1593), + [anon_sym_int128] = ACTIONS(1593), + [anon_sym_uint128] = ACTIONS(1593), + [anon_sym_float] = ACTIONS(1593), + [anon_sym_double] = ACTIONS(1593), + [anon_sym_float16] = ACTIONS(1593), + [anon_sym_bfloat16] = ACTIONS(1593), + [anon_sym_float128] = ACTIONS(1593), + [anon_sym_iptr] = ACTIONS(1593), + [anon_sym_uptr] = ACTIONS(1593), + [anon_sym_isz] = ACTIONS(1593), + [anon_sym_usz] = ACTIONS(1593), + [anon_sym_anyfault] = ACTIONS(1593), + [anon_sym_any] = ACTIONS(1593), + [anon_sym_DOLLARtypeof] = ACTIONS(1593), + [anon_sym_DOLLARtypefrom] = ACTIONS(1593), + [anon_sym_DOLLARvatype] = ACTIONS(1593), + [anon_sym_DOLLARevaltype] = ACTIONS(1593), + [sym_real_literal] = ACTIONS(1595), }, [614] = { [sym_line_comment] = STATE(614), [sym_doc_comment] = STATE(614), [sym_block_comment] = STATE(614), - [sym_ident] = ACTIONS(1460), - [sym_integer_literal] = ACTIONS(1462), - [anon_sym_SQUOTE] = ACTIONS(1462), - [anon_sym_DQUOTE] = ACTIONS(1462), - [anon_sym_BQUOTE] = ACTIONS(1462), - [sym_bytes_literal] = ACTIONS(1462), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1460), - [sym_at_ident] = ACTIONS(1462), - [sym_hash_ident] = ACTIONS(1462), - [sym_type_ident] = ACTIONS(1462), - [sym_ct_type_ident] = ACTIONS(1462), - [sym_const_ident] = ACTIONS(1460), - [sym_builtin] = ACTIONS(1462), - [anon_sym_LPAREN] = ACTIONS(1462), - [anon_sym_AMP] = ACTIONS(1460), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_tlocal] = ACTIONS(1460), - [anon_sym_SEMI] = ACTIONS(1462), - [anon_sym_fn] = ACTIONS(1460), - [anon_sym_LBRACE] = ACTIONS(1460), - [anon_sym_const] = ACTIONS(1460), - [anon_sym_var] = ACTIONS(1460), - [anon_sym_return] = ACTIONS(1460), - [anon_sym_continue] = ACTIONS(1460), - [anon_sym_break] = ACTIONS(1460), - [anon_sym_defer] = ACTIONS(1460), - [anon_sym_assert] = ACTIONS(1460), - [anon_sym_nextcase] = ACTIONS(1460), - [anon_sym_switch] = ACTIONS(1460), - [anon_sym_AMP_AMP] = ACTIONS(1462), - [anon_sym_if] = ACTIONS(1460), - [anon_sym_for] = ACTIONS(1460), - [anon_sym_foreach] = ACTIONS(1460), - [anon_sym_foreach_r] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1460), - [anon_sym_do] = ACTIONS(1460), - [anon_sym_int] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1460), - [anon_sym_DASH] = ACTIONS(1460), - [anon_sym_STAR] = ACTIONS(1462), - [anon_sym_asm] = ACTIONS(1460), - [anon_sym_DOLLARassert] = ACTIONS(1460), - [anon_sym_DOLLARerror] = ACTIONS(1460), - [anon_sym_DOLLARecho] = ACTIONS(1460), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_DOLLARendif] = ACTIONS(1460), - [anon_sym_DOLLARelse] = ACTIONS(1460), - [anon_sym_DOLLARswitch] = ACTIONS(1460), - [anon_sym_DOLLARfor] = ACTIONS(1460), - [anon_sym_DOLLARforeach] = ACTIONS(1460), - [anon_sym_DOLLARalignof] = ACTIONS(1460), - [anon_sym_DOLLARextnameof] = ACTIONS(1460), - [anon_sym_DOLLARnameof] = ACTIONS(1460), - [anon_sym_DOLLARoffsetof] = ACTIONS(1460), - [anon_sym_DOLLARqnameof] = ACTIONS(1460), - [anon_sym_DOLLARvaconst] = ACTIONS(1460), - [anon_sym_DOLLARvaarg] = ACTIONS(1460), - [anon_sym_DOLLARvaref] = ACTIONS(1460), - [anon_sym_DOLLARvaexpr] = ACTIONS(1460), - [anon_sym_true] = ACTIONS(1460), - [anon_sym_false] = ACTIONS(1460), - [anon_sym_null] = ACTIONS(1460), - [anon_sym_DOLLARvacount] = ACTIONS(1460), - [anon_sym_DOLLARappend] = ACTIONS(1460), - [anon_sym_DOLLARconcat] = ACTIONS(1460), - [anon_sym_DOLLAReval] = ACTIONS(1460), - [anon_sym_DOLLARis_const] = ACTIONS(1460), - [anon_sym_DOLLARsizeof] = ACTIONS(1460), - [anon_sym_DOLLARstringify] = ACTIONS(1460), - [anon_sym_DOLLARand] = ACTIONS(1460), - [anon_sym_DOLLARdefined] = ACTIONS(1460), - [anon_sym_DOLLARembed] = ACTIONS(1460), - [anon_sym_DOLLARor] = ACTIONS(1460), - [anon_sym_DOLLARfeature] = ACTIONS(1460), - [anon_sym_DOLLARassignable] = ACTIONS(1460), - [anon_sym_BANG] = ACTIONS(1462), - [anon_sym_TILDE] = ACTIONS(1462), - [anon_sym_PLUS_PLUS] = ACTIONS(1462), - [anon_sym_DASH_DASH] = ACTIONS(1462), - [anon_sym_typeid] = ACTIONS(1460), - [anon_sym_LBRACE_PIPE] = ACTIONS(1462), - [anon_sym_void] = ACTIONS(1460), - [anon_sym_bool] = ACTIONS(1460), - [anon_sym_char] = ACTIONS(1460), - [anon_sym_ichar] = ACTIONS(1460), - [anon_sym_short] = ACTIONS(1460), - [anon_sym_ushort] = ACTIONS(1460), - [anon_sym_uint] = ACTIONS(1460), - [anon_sym_long] = ACTIONS(1460), - [anon_sym_ulong] = ACTIONS(1460), - [anon_sym_int128] = ACTIONS(1460), - [anon_sym_uint128] = ACTIONS(1460), - [anon_sym_float] = ACTIONS(1460), - [anon_sym_double] = ACTIONS(1460), - [anon_sym_float16] = ACTIONS(1460), - [anon_sym_bfloat16] = ACTIONS(1460), - [anon_sym_float128] = ACTIONS(1460), - [anon_sym_iptr] = ACTIONS(1460), - [anon_sym_uptr] = ACTIONS(1460), - [anon_sym_isz] = ACTIONS(1460), - [anon_sym_usz] = ACTIONS(1460), - [anon_sym_anyfault] = ACTIONS(1460), - [anon_sym_any] = ACTIONS(1460), - [anon_sym_DOLLARtypeof] = ACTIONS(1460), - [anon_sym_DOLLARtypefrom] = ACTIONS(1460), - [anon_sym_DOLLARvatype] = ACTIONS(1460), - [anon_sym_DOLLARevaltype] = ACTIONS(1460), - [sym_real_literal] = ACTIONS(1462), + [sym_ident] = ACTIONS(1585), + [sym_integer_literal] = ACTIONS(1587), + [anon_sym_SQUOTE] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1587), + [anon_sym_BQUOTE] = ACTIONS(1587), + [sym_bytes_literal] = ACTIONS(1587), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1585), + [sym_at_ident] = ACTIONS(1587), + [sym_hash_ident] = ACTIONS(1587), + [sym_type_ident] = ACTIONS(1587), + [sym_ct_type_ident] = ACTIONS(1587), + [sym_const_ident] = ACTIONS(1585), + [sym_builtin] = ACTIONS(1587), + [anon_sym_LPAREN] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_static] = ACTIONS(1585), + [anon_sym_tlocal] = ACTIONS(1585), + [anon_sym_SEMI] = ACTIONS(1587), + [anon_sym_fn] = ACTIONS(1585), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_const] = ACTIONS(1585), + [anon_sym_var] = ACTIONS(1585), + [anon_sym_return] = ACTIONS(1585), + [anon_sym_continue] = ACTIONS(1585), + [anon_sym_break] = ACTIONS(1585), + [anon_sym_defer] = ACTIONS(1585), + [anon_sym_assert] = ACTIONS(1585), + [anon_sym_nextcase] = ACTIONS(1585), + [anon_sym_switch] = ACTIONS(1585), + [anon_sym_AMP_AMP] = ACTIONS(1587), + [anon_sym_if] = ACTIONS(1585), + [anon_sym_for] = ACTIONS(1585), + [anon_sym_foreach] = ACTIONS(1585), + [anon_sym_foreach_r] = ACTIONS(1585), + [anon_sym_while] = ACTIONS(1585), + [anon_sym_do] = ACTIONS(1585), + [anon_sym_int] = ACTIONS(1585), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1587), + [anon_sym_asm] = ACTIONS(1585), + [anon_sym_DOLLARassert] = ACTIONS(1585), + [anon_sym_DOLLARerror] = ACTIONS(1585), + [anon_sym_DOLLARecho] = ACTIONS(1585), + [anon_sym_DOLLARif] = ACTIONS(1585), + [anon_sym_DOLLARswitch] = ACTIONS(1585), + [anon_sym_DOLLARfor] = ACTIONS(1585), + [anon_sym_DOLLARendfor] = ACTIONS(1585), + [anon_sym_DOLLARforeach] = ACTIONS(1585), + [anon_sym_DOLLARalignof] = ACTIONS(1585), + [anon_sym_DOLLARextnameof] = ACTIONS(1585), + [anon_sym_DOLLARnameof] = ACTIONS(1585), + [anon_sym_DOLLARoffsetof] = ACTIONS(1585), + [anon_sym_DOLLARqnameof] = ACTIONS(1585), + [anon_sym_DOLLARvaconst] = ACTIONS(1585), + [anon_sym_DOLLARvaarg] = ACTIONS(1585), + [anon_sym_DOLLARvaref] = ACTIONS(1585), + [anon_sym_DOLLARvaexpr] = ACTIONS(1585), + [anon_sym_true] = ACTIONS(1585), + [anon_sym_false] = ACTIONS(1585), + [anon_sym_null] = ACTIONS(1585), + [anon_sym_DOLLARvacount] = ACTIONS(1585), + [anon_sym_DOLLARappend] = ACTIONS(1585), + [anon_sym_DOLLARconcat] = ACTIONS(1585), + [anon_sym_DOLLAReval] = ACTIONS(1585), + [anon_sym_DOLLARis_const] = ACTIONS(1585), + [anon_sym_DOLLARsizeof] = ACTIONS(1585), + [anon_sym_DOLLARstringify] = ACTIONS(1585), + [anon_sym_DOLLARand] = ACTIONS(1585), + [anon_sym_DOLLARdefined] = ACTIONS(1585), + [anon_sym_DOLLARembed] = ACTIONS(1585), + [anon_sym_DOLLARor] = ACTIONS(1585), + [anon_sym_DOLLARfeature] = ACTIONS(1585), + [anon_sym_DOLLARassignable] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), + [anon_sym_typeid] = ACTIONS(1585), + [anon_sym_LBRACE_PIPE] = ACTIONS(1587), + [anon_sym_void] = ACTIONS(1585), + [anon_sym_bool] = ACTIONS(1585), + [anon_sym_char] = ACTIONS(1585), + [anon_sym_ichar] = ACTIONS(1585), + [anon_sym_short] = ACTIONS(1585), + [anon_sym_ushort] = ACTIONS(1585), + [anon_sym_uint] = ACTIONS(1585), + [anon_sym_long] = ACTIONS(1585), + [anon_sym_ulong] = ACTIONS(1585), + [anon_sym_int128] = ACTIONS(1585), + [anon_sym_uint128] = ACTIONS(1585), + [anon_sym_float] = ACTIONS(1585), + [anon_sym_double] = ACTIONS(1585), + [anon_sym_float16] = ACTIONS(1585), + [anon_sym_bfloat16] = ACTIONS(1585), + [anon_sym_float128] = ACTIONS(1585), + [anon_sym_iptr] = ACTIONS(1585), + [anon_sym_uptr] = ACTIONS(1585), + [anon_sym_isz] = ACTIONS(1585), + [anon_sym_usz] = ACTIONS(1585), + [anon_sym_anyfault] = ACTIONS(1585), + [anon_sym_any] = ACTIONS(1585), + [anon_sym_DOLLARtypeof] = ACTIONS(1585), + [anon_sym_DOLLARtypefrom] = ACTIONS(1585), + [anon_sym_DOLLARvatype] = ACTIONS(1585), + [anon_sym_DOLLARevaltype] = ACTIONS(1585), + [sym_real_literal] = ACTIONS(1587), }, [615] = { [sym_line_comment] = STATE(615), [sym_doc_comment] = STATE(615), [sym_block_comment] = STATE(615), - [sym_ident] = ACTIONS(1382), - [sym_integer_literal] = ACTIONS(1384), - [anon_sym_SQUOTE] = ACTIONS(1384), - [anon_sym_DQUOTE] = ACTIONS(1384), - [anon_sym_BQUOTE] = ACTIONS(1384), - [sym_bytes_literal] = ACTIONS(1384), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1382), - [sym_at_ident] = ACTIONS(1384), - [sym_hash_ident] = ACTIONS(1384), - [sym_type_ident] = ACTIONS(1384), - [sym_ct_type_ident] = ACTIONS(1384), - [sym_const_ident] = ACTIONS(1382), - [sym_builtin] = ACTIONS(1384), - [anon_sym_LPAREN] = ACTIONS(1384), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_static] = ACTIONS(1382), - [anon_sym_tlocal] = ACTIONS(1382), - [anon_sym_SEMI] = ACTIONS(1384), - [anon_sym_fn] = ACTIONS(1382), - [anon_sym_LBRACE] = ACTIONS(1382), - [anon_sym_const] = ACTIONS(1382), - [anon_sym_var] = ACTIONS(1382), - [anon_sym_return] = ACTIONS(1382), - [anon_sym_continue] = ACTIONS(1382), - [anon_sym_break] = ACTIONS(1382), - [anon_sym_defer] = ACTIONS(1382), - [anon_sym_assert] = ACTIONS(1382), - [anon_sym_nextcase] = ACTIONS(1382), - [anon_sym_switch] = ACTIONS(1382), - [anon_sym_AMP_AMP] = ACTIONS(1384), - [anon_sym_if] = ACTIONS(1382), - [anon_sym_else] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1382), - [anon_sym_foreach] = ACTIONS(1382), - [anon_sym_foreach_r] = ACTIONS(1382), - [anon_sym_while] = ACTIONS(1382), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_int] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_asm] = ACTIONS(1382), - [anon_sym_DOLLARassert] = ACTIONS(1382), - [anon_sym_DOLLARerror] = ACTIONS(1382), - [anon_sym_DOLLARecho] = ACTIONS(1382), - [anon_sym_DOLLARif] = ACTIONS(1382), - [anon_sym_DOLLARendif] = ACTIONS(1382), - [anon_sym_DOLLARswitch] = ACTIONS(1382), - [anon_sym_DOLLARfor] = ACTIONS(1382), - [anon_sym_DOLLARforeach] = ACTIONS(1382), - [anon_sym_DOLLARalignof] = ACTIONS(1382), - [anon_sym_DOLLARextnameof] = ACTIONS(1382), - [anon_sym_DOLLARnameof] = ACTIONS(1382), - [anon_sym_DOLLARoffsetof] = ACTIONS(1382), - [anon_sym_DOLLARqnameof] = ACTIONS(1382), - [anon_sym_DOLLARvaconst] = ACTIONS(1382), - [anon_sym_DOLLARvaarg] = ACTIONS(1382), - [anon_sym_DOLLARvaref] = ACTIONS(1382), - [anon_sym_DOLLARvaexpr] = ACTIONS(1382), - [anon_sym_true] = ACTIONS(1382), - [anon_sym_false] = ACTIONS(1382), - [anon_sym_null] = ACTIONS(1382), - [anon_sym_DOLLARvacount] = ACTIONS(1382), - [anon_sym_DOLLARappend] = ACTIONS(1382), - [anon_sym_DOLLARconcat] = ACTIONS(1382), - [anon_sym_DOLLAReval] = ACTIONS(1382), - [anon_sym_DOLLARis_const] = ACTIONS(1382), - [anon_sym_DOLLARsizeof] = ACTIONS(1382), - [anon_sym_DOLLARstringify] = ACTIONS(1382), - [anon_sym_DOLLARand] = ACTIONS(1382), - [anon_sym_DOLLARdefined] = ACTIONS(1382), - [anon_sym_DOLLARembed] = ACTIONS(1382), - [anon_sym_DOLLARor] = ACTIONS(1382), - [anon_sym_DOLLARfeature] = ACTIONS(1382), - [anon_sym_DOLLARassignable] = ACTIONS(1382), - [anon_sym_BANG] = ACTIONS(1384), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_PLUS_PLUS] = ACTIONS(1384), - [anon_sym_DASH_DASH] = ACTIONS(1384), - [anon_sym_typeid] = ACTIONS(1382), - [anon_sym_LBRACE_PIPE] = ACTIONS(1384), - [anon_sym_void] = ACTIONS(1382), - [anon_sym_bool] = ACTIONS(1382), - [anon_sym_char] = ACTIONS(1382), - [anon_sym_ichar] = ACTIONS(1382), - [anon_sym_short] = ACTIONS(1382), - [anon_sym_ushort] = ACTIONS(1382), - [anon_sym_uint] = ACTIONS(1382), - [anon_sym_long] = ACTIONS(1382), - [anon_sym_ulong] = ACTIONS(1382), - [anon_sym_int128] = ACTIONS(1382), - [anon_sym_uint128] = ACTIONS(1382), - [anon_sym_float] = ACTIONS(1382), - [anon_sym_double] = ACTIONS(1382), - [anon_sym_float16] = ACTIONS(1382), - [anon_sym_bfloat16] = ACTIONS(1382), - [anon_sym_float128] = ACTIONS(1382), - [anon_sym_iptr] = ACTIONS(1382), - [anon_sym_uptr] = ACTIONS(1382), - [anon_sym_isz] = ACTIONS(1382), - [anon_sym_usz] = ACTIONS(1382), - [anon_sym_anyfault] = ACTIONS(1382), - [anon_sym_any] = ACTIONS(1382), - [anon_sym_DOLLARtypeof] = ACTIONS(1382), - [anon_sym_DOLLARtypefrom] = ACTIONS(1382), - [anon_sym_DOLLARvatype] = ACTIONS(1382), - [anon_sym_DOLLARevaltype] = ACTIONS(1382), - [sym_real_literal] = ACTIONS(1384), + [sym_ident] = ACTIONS(1489), + [sym_integer_literal] = ACTIONS(1491), + [anon_sym_SQUOTE] = ACTIONS(1491), + [anon_sym_DQUOTE] = ACTIONS(1491), + [anon_sym_BQUOTE] = ACTIONS(1491), + [sym_bytes_literal] = ACTIONS(1491), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1489), + [sym_at_ident] = ACTIONS(1491), + [sym_hash_ident] = ACTIONS(1491), + [sym_type_ident] = ACTIONS(1491), + [sym_ct_type_ident] = ACTIONS(1491), + [sym_const_ident] = ACTIONS(1489), + [sym_builtin] = ACTIONS(1491), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_AMP] = ACTIONS(1489), + [anon_sym_static] = ACTIONS(1489), + [anon_sym_tlocal] = ACTIONS(1489), + [anon_sym_SEMI] = ACTIONS(1491), + [anon_sym_fn] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1489), + [anon_sym_const] = ACTIONS(1489), + [anon_sym_var] = ACTIONS(1489), + [anon_sym_return] = ACTIONS(1489), + [anon_sym_continue] = ACTIONS(1489), + [anon_sym_break] = ACTIONS(1489), + [anon_sym_defer] = ACTIONS(1489), + [anon_sym_assert] = ACTIONS(1489), + [anon_sym_nextcase] = ACTIONS(1489), + [anon_sym_switch] = ACTIONS(1489), + [anon_sym_AMP_AMP] = ACTIONS(1491), + [anon_sym_if] = ACTIONS(1489), + [anon_sym_for] = ACTIONS(1489), + [anon_sym_foreach] = ACTIONS(1489), + [anon_sym_foreach_r] = ACTIONS(1489), + [anon_sym_while] = ACTIONS(1489), + [anon_sym_do] = ACTIONS(1489), + [anon_sym_int] = ACTIONS(1489), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_STAR] = ACTIONS(1491), + [anon_sym_asm] = ACTIONS(1489), + [anon_sym_DOLLARassert] = ACTIONS(1489), + [anon_sym_DOLLARerror] = ACTIONS(1489), + [anon_sym_DOLLARecho] = ACTIONS(1489), + [anon_sym_DOLLARif] = ACTIONS(1489), + [anon_sym_DOLLARswitch] = ACTIONS(1489), + [anon_sym_DOLLARfor] = ACTIONS(1489), + [anon_sym_DOLLARendfor] = ACTIONS(1489), + [anon_sym_DOLLARforeach] = ACTIONS(1489), + [anon_sym_DOLLARalignof] = ACTIONS(1489), + [anon_sym_DOLLARextnameof] = ACTIONS(1489), + [anon_sym_DOLLARnameof] = ACTIONS(1489), + [anon_sym_DOLLARoffsetof] = ACTIONS(1489), + [anon_sym_DOLLARqnameof] = ACTIONS(1489), + [anon_sym_DOLLARvaconst] = ACTIONS(1489), + [anon_sym_DOLLARvaarg] = ACTIONS(1489), + [anon_sym_DOLLARvaref] = ACTIONS(1489), + [anon_sym_DOLLARvaexpr] = ACTIONS(1489), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), + [anon_sym_null] = ACTIONS(1489), + [anon_sym_DOLLARvacount] = ACTIONS(1489), + [anon_sym_DOLLARappend] = ACTIONS(1489), + [anon_sym_DOLLARconcat] = ACTIONS(1489), + [anon_sym_DOLLAReval] = ACTIONS(1489), + [anon_sym_DOLLARis_const] = ACTIONS(1489), + [anon_sym_DOLLARsizeof] = ACTIONS(1489), + [anon_sym_DOLLARstringify] = ACTIONS(1489), + [anon_sym_DOLLARand] = ACTIONS(1489), + [anon_sym_DOLLARdefined] = ACTIONS(1489), + [anon_sym_DOLLARembed] = ACTIONS(1489), + [anon_sym_DOLLARor] = ACTIONS(1489), + [anon_sym_DOLLARfeature] = ACTIONS(1489), + [anon_sym_DOLLARassignable] = ACTIONS(1489), + [anon_sym_BANG] = ACTIONS(1491), + [anon_sym_TILDE] = ACTIONS(1491), + [anon_sym_PLUS_PLUS] = ACTIONS(1491), + [anon_sym_DASH_DASH] = ACTIONS(1491), + [anon_sym_typeid] = ACTIONS(1489), + [anon_sym_LBRACE_PIPE] = ACTIONS(1491), + [anon_sym_void] = ACTIONS(1489), + [anon_sym_bool] = ACTIONS(1489), + [anon_sym_char] = ACTIONS(1489), + [anon_sym_ichar] = ACTIONS(1489), + [anon_sym_short] = ACTIONS(1489), + [anon_sym_ushort] = ACTIONS(1489), + [anon_sym_uint] = ACTIONS(1489), + [anon_sym_long] = ACTIONS(1489), + [anon_sym_ulong] = ACTIONS(1489), + [anon_sym_int128] = ACTIONS(1489), + [anon_sym_uint128] = ACTIONS(1489), + [anon_sym_float] = ACTIONS(1489), + [anon_sym_double] = ACTIONS(1489), + [anon_sym_float16] = ACTIONS(1489), + [anon_sym_bfloat16] = ACTIONS(1489), + [anon_sym_float128] = ACTIONS(1489), + [anon_sym_iptr] = ACTIONS(1489), + [anon_sym_uptr] = ACTIONS(1489), + [anon_sym_isz] = ACTIONS(1489), + [anon_sym_usz] = ACTIONS(1489), + [anon_sym_anyfault] = ACTIONS(1489), + [anon_sym_any] = ACTIONS(1489), + [anon_sym_DOLLARtypeof] = ACTIONS(1489), + [anon_sym_DOLLARtypefrom] = ACTIONS(1489), + [anon_sym_DOLLARvatype] = ACTIONS(1489), + [anon_sym_DOLLARevaltype] = ACTIONS(1489), + [sym_real_literal] = ACTIONS(1491), }, [616] = { [sym_line_comment] = STATE(616), [sym_doc_comment] = STATE(616), [sym_block_comment] = STATE(616), - [sym_ident] = ACTIONS(1382), - [sym_integer_literal] = ACTIONS(1384), - [anon_sym_SQUOTE] = ACTIONS(1384), - [anon_sym_DQUOTE] = ACTIONS(1384), - [anon_sym_BQUOTE] = ACTIONS(1384), - [sym_bytes_literal] = ACTIONS(1384), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1382), - [sym_at_ident] = ACTIONS(1384), - [sym_hash_ident] = ACTIONS(1384), - [sym_type_ident] = ACTIONS(1384), - [sym_ct_type_ident] = ACTIONS(1384), - [sym_const_ident] = ACTIONS(1382), - [sym_builtin] = ACTIONS(1384), - [anon_sym_LPAREN] = ACTIONS(1384), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_static] = ACTIONS(1382), - [anon_sym_tlocal] = ACTIONS(1382), - [anon_sym_SEMI] = ACTIONS(1384), - [anon_sym_fn] = ACTIONS(1382), - [anon_sym_LBRACE] = ACTIONS(1382), - [anon_sym_const] = ACTIONS(1382), - [anon_sym_var] = ACTIONS(1382), - [anon_sym_return] = ACTIONS(1382), - [anon_sym_continue] = ACTIONS(1382), - [anon_sym_break] = ACTIONS(1382), - [anon_sym_defer] = ACTIONS(1382), - [anon_sym_assert] = ACTIONS(1382), - [anon_sym_nextcase] = ACTIONS(1382), - [anon_sym_switch] = ACTIONS(1382), - [anon_sym_AMP_AMP] = ACTIONS(1384), - [anon_sym_if] = ACTIONS(1382), - [anon_sym_else] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1382), - [anon_sym_foreach] = ACTIONS(1382), - [anon_sym_foreach_r] = ACTIONS(1382), - [anon_sym_while] = ACTIONS(1382), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_int] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_asm] = ACTIONS(1382), - [anon_sym_DOLLARassert] = ACTIONS(1382), - [anon_sym_DOLLARerror] = ACTIONS(1382), - [anon_sym_DOLLARecho] = ACTIONS(1382), - [anon_sym_DOLLARif] = ACTIONS(1382), - [anon_sym_DOLLARswitch] = ACTIONS(1382), - [anon_sym_DOLLARfor] = ACTIONS(1382), - [anon_sym_DOLLARendfor] = ACTIONS(1382), - [anon_sym_DOLLARforeach] = ACTIONS(1382), - [anon_sym_DOLLARalignof] = ACTIONS(1382), - [anon_sym_DOLLARextnameof] = ACTIONS(1382), - [anon_sym_DOLLARnameof] = ACTIONS(1382), - [anon_sym_DOLLARoffsetof] = ACTIONS(1382), - [anon_sym_DOLLARqnameof] = ACTIONS(1382), - [anon_sym_DOLLARvaconst] = ACTIONS(1382), - [anon_sym_DOLLARvaarg] = ACTIONS(1382), - [anon_sym_DOLLARvaref] = ACTIONS(1382), - [anon_sym_DOLLARvaexpr] = ACTIONS(1382), - [anon_sym_true] = ACTIONS(1382), - [anon_sym_false] = ACTIONS(1382), - [anon_sym_null] = ACTIONS(1382), - [anon_sym_DOLLARvacount] = ACTIONS(1382), - [anon_sym_DOLLARappend] = ACTIONS(1382), - [anon_sym_DOLLARconcat] = ACTIONS(1382), - [anon_sym_DOLLAReval] = ACTIONS(1382), - [anon_sym_DOLLARis_const] = ACTIONS(1382), - [anon_sym_DOLLARsizeof] = ACTIONS(1382), - [anon_sym_DOLLARstringify] = ACTIONS(1382), - [anon_sym_DOLLARand] = ACTIONS(1382), - [anon_sym_DOLLARdefined] = ACTIONS(1382), - [anon_sym_DOLLARembed] = ACTIONS(1382), - [anon_sym_DOLLARor] = ACTIONS(1382), - [anon_sym_DOLLARfeature] = ACTIONS(1382), - [anon_sym_DOLLARassignable] = ACTIONS(1382), - [anon_sym_BANG] = ACTIONS(1384), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_PLUS_PLUS] = ACTIONS(1384), - [anon_sym_DASH_DASH] = ACTIONS(1384), - [anon_sym_typeid] = ACTIONS(1382), - [anon_sym_LBRACE_PIPE] = ACTIONS(1384), - [anon_sym_void] = ACTIONS(1382), - [anon_sym_bool] = ACTIONS(1382), - [anon_sym_char] = ACTIONS(1382), - [anon_sym_ichar] = ACTIONS(1382), - [anon_sym_short] = ACTIONS(1382), - [anon_sym_ushort] = ACTIONS(1382), - [anon_sym_uint] = ACTIONS(1382), - [anon_sym_long] = ACTIONS(1382), - [anon_sym_ulong] = ACTIONS(1382), - [anon_sym_int128] = ACTIONS(1382), - [anon_sym_uint128] = ACTIONS(1382), - [anon_sym_float] = ACTIONS(1382), - [anon_sym_double] = ACTIONS(1382), - [anon_sym_float16] = ACTIONS(1382), - [anon_sym_bfloat16] = ACTIONS(1382), - [anon_sym_float128] = ACTIONS(1382), - [anon_sym_iptr] = ACTIONS(1382), - [anon_sym_uptr] = ACTIONS(1382), - [anon_sym_isz] = ACTIONS(1382), - [anon_sym_usz] = ACTIONS(1382), - [anon_sym_anyfault] = ACTIONS(1382), - [anon_sym_any] = ACTIONS(1382), - [anon_sym_DOLLARtypeof] = ACTIONS(1382), - [anon_sym_DOLLARtypefrom] = ACTIONS(1382), - [anon_sym_DOLLARvatype] = ACTIONS(1382), - [anon_sym_DOLLARevaltype] = ACTIONS(1382), - [sym_real_literal] = ACTIONS(1384), + [sym_ident] = ACTIONS(1367), + [sym_integer_literal] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1369), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_BQUOTE] = ACTIONS(1369), + [sym_bytes_literal] = ACTIONS(1369), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1367), + [sym_at_ident] = ACTIONS(1369), + [sym_hash_ident] = ACTIONS(1369), + [sym_type_ident] = ACTIONS(1369), + [sym_ct_type_ident] = ACTIONS(1369), + [sym_const_ident] = ACTIONS(1367), + [sym_builtin] = ACTIONS(1369), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(1367), + [anon_sym_static] = ACTIONS(1367), + [anon_sym_tlocal] = ACTIONS(1367), + [anon_sym_SEMI] = ACTIONS(1369), + [anon_sym_fn] = ACTIONS(1367), + [anon_sym_LBRACE] = ACTIONS(1367), + [anon_sym_const] = ACTIONS(1367), + [anon_sym_var] = ACTIONS(1367), + [anon_sym_return] = ACTIONS(1367), + [anon_sym_continue] = ACTIONS(1367), + [anon_sym_break] = ACTIONS(1367), + [anon_sym_defer] = ACTIONS(1367), + [anon_sym_assert] = ACTIONS(1367), + [anon_sym_nextcase] = ACTIONS(1367), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_AMP_AMP] = ACTIONS(1369), + [anon_sym_if] = ACTIONS(1367), + [anon_sym_for] = ACTIONS(1367), + [anon_sym_foreach] = ACTIONS(1367), + [anon_sym_foreach_r] = ACTIONS(1367), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_do] = ACTIONS(1367), + [anon_sym_int] = ACTIONS(1367), + [anon_sym_PLUS] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_asm] = ACTIONS(1367), + [anon_sym_DOLLARassert] = ACTIONS(1367), + [anon_sym_DOLLARerror] = ACTIONS(1367), + [anon_sym_DOLLARecho] = ACTIONS(1367), + [anon_sym_DOLLARif] = ACTIONS(1367), + [anon_sym_DOLLARswitch] = ACTIONS(1367), + [anon_sym_DOLLARfor] = ACTIONS(1367), + [anon_sym_DOLLARendfor] = ACTIONS(1367), + [anon_sym_DOLLARforeach] = ACTIONS(1367), + [anon_sym_DOLLARalignof] = ACTIONS(1367), + [anon_sym_DOLLARextnameof] = ACTIONS(1367), + [anon_sym_DOLLARnameof] = ACTIONS(1367), + [anon_sym_DOLLARoffsetof] = ACTIONS(1367), + [anon_sym_DOLLARqnameof] = ACTIONS(1367), + [anon_sym_DOLLARvaconst] = ACTIONS(1367), + [anon_sym_DOLLARvaarg] = ACTIONS(1367), + [anon_sym_DOLLARvaref] = ACTIONS(1367), + [anon_sym_DOLLARvaexpr] = ACTIONS(1367), + [anon_sym_true] = ACTIONS(1367), + [anon_sym_false] = ACTIONS(1367), + [anon_sym_null] = ACTIONS(1367), + [anon_sym_DOLLARvacount] = ACTIONS(1367), + [anon_sym_DOLLARappend] = ACTIONS(1367), + [anon_sym_DOLLARconcat] = ACTIONS(1367), + [anon_sym_DOLLAReval] = ACTIONS(1367), + [anon_sym_DOLLARis_const] = ACTIONS(1367), + [anon_sym_DOLLARsizeof] = ACTIONS(1367), + [anon_sym_DOLLARstringify] = ACTIONS(1367), + [anon_sym_DOLLARand] = ACTIONS(1367), + [anon_sym_DOLLARdefined] = ACTIONS(1367), + [anon_sym_DOLLARembed] = ACTIONS(1367), + [anon_sym_DOLLARor] = ACTIONS(1367), + [anon_sym_DOLLARfeature] = ACTIONS(1367), + [anon_sym_DOLLARassignable] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(1369), + [anon_sym_PLUS_PLUS] = ACTIONS(1369), + [anon_sym_DASH_DASH] = ACTIONS(1369), + [anon_sym_typeid] = ACTIONS(1367), + [anon_sym_LBRACE_PIPE] = ACTIONS(1369), + [anon_sym_void] = ACTIONS(1367), + [anon_sym_bool] = ACTIONS(1367), + [anon_sym_char] = ACTIONS(1367), + [anon_sym_ichar] = ACTIONS(1367), + [anon_sym_short] = ACTIONS(1367), + [anon_sym_ushort] = ACTIONS(1367), + [anon_sym_uint] = ACTIONS(1367), + [anon_sym_long] = ACTIONS(1367), + [anon_sym_ulong] = ACTIONS(1367), + [anon_sym_int128] = ACTIONS(1367), + [anon_sym_uint128] = ACTIONS(1367), + [anon_sym_float] = ACTIONS(1367), + [anon_sym_double] = ACTIONS(1367), + [anon_sym_float16] = ACTIONS(1367), + [anon_sym_bfloat16] = ACTIONS(1367), + [anon_sym_float128] = ACTIONS(1367), + [anon_sym_iptr] = ACTIONS(1367), + [anon_sym_uptr] = ACTIONS(1367), + [anon_sym_isz] = ACTIONS(1367), + [anon_sym_usz] = ACTIONS(1367), + [anon_sym_anyfault] = ACTIONS(1367), + [anon_sym_any] = ACTIONS(1367), + [anon_sym_DOLLARtypeof] = ACTIONS(1367), + [anon_sym_DOLLARtypefrom] = ACTIONS(1367), + [anon_sym_DOLLARvatype] = ACTIONS(1367), + [anon_sym_DOLLARevaltype] = ACTIONS(1367), + [sym_real_literal] = ACTIONS(1369), }, [617] = { [sym_line_comment] = STATE(617), [sym_doc_comment] = STATE(617), [sym_block_comment] = STATE(617), - [sym_ident] = ACTIONS(1456), - [sym_integer_literal] = ACTIONS(1458), - [anon_sym_SQUOTE] = ACTIONS(1458), - [anon_sym_DQUOTE] = ACTIONS(1458), - [anon_sym_BQUOTE] = ACTIONS(1458), - [sym_bytes_literal] = ACTIONS(1458), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1456), - [sym_at_ident] = ACTIONS(1458), - [sym_hash_ident] = ACTIONS(1458), - [sym_type_ident] = ACTIONS(1458), - [sym_ct_type_ident] = ACTIONS(1458), - [sym_const_ident] = ACTIONS(1456), - [sym_builtin] = ACTIONS(1458), - [anon_sym_LPAREN] = ACTIONS(1458), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_static] = ACTIONS(1456), - [anon_sym_tlocal] = ACTIONS(1456), - [anon_sym_SEMI] = ACTIONS(1458), - [anon_sym_fn] = ACTIONS(1456), - [anon_sym_LBRACE] = ACTIONS(1456), - [anon_sym_const] = ACTIONS(1456), - [anon_sym_var] = ACTIONS(1456), - [anon_sym_return] = ACTIONS(1456), - [anon_sym_continue] = ACTIONS(1456), - [anon_sym_break] = ACTIONS(1456), - [anon_sym_defer] = ACTIONS(1456), - [anon_sym_assert] = ACTIONS(1456), - [anon_sym_nextcase] = ACTIONS(1456), - [anon_sym_switch] = ACTIONS(1456), - [anon_sym_AMP_AMP] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1456), - [anon_sym_for] = ACTIONS(1456), - [anon_sym_foreach] = ACTIONS(1456), - [anon_sym_foreach_r] = ACTIONS(1456), - [anon_sym_while] = ACTIONS(1456), - [anon_sym_do] = ACTIONS(1456), - [anon_sym_int] = ACTIONS(1456), - [anon_sym_PLUS] = ACTIONS(1456), - [anon_sym_DASH] = ACTIONS(1456), - [anon_sym_STAR] = ACTIONS(1458), - [anon_sym_asm] = ACTIONS(1456), - [anon_sym_DOLLARassert] = ACTIONS(1456), - [anon_sym_DOLLARerror] = ACTIONS(1456), - [anon_sym_DOLLARecho] = ACTIONS(1456), - [anon_sym_DOLLARif] = ACTIONS(1456), - [anon_sym_DOLLARendif] = ACTIONS(1456), - [anon_sym_DOLLARelse] = ACTIONS(1456), - [anon_sym_DOLLARswitch] = ACTIONS(1456), - [anon_sym_DOLLARfor] = ACTIONS(1456), - [anon_sym_DOLLARforeach] = ACTIONS(1456), - [anon_sym_DOLLARalignof] = ACTIONS(1456), - [anon_sym_DOLLARextnameof] = ACTIONS(1456), - [anon_sym_DOLLARnameof] = ACTIONS(1456), - [anon_sym_DOLLARoffsetof] = ACTIONS(1456), - [anon_sym_DOLLARqnameof] = ACTIONS(1456), - [anon_sym_DOLLARvaconst] = ACTIONS(1456), - [anon_sym_DOLLARvaarg] = ACTIONS(1456), - [anon_sym_DOLLARvaref] = ACTIONS(1456), - [anon_sym_DOLLARvaexpr] = ACTIONS(1456), - [anon_sym_true] = ACTIONS(1456), - [anon_sym_false] = ACTIONS(1456), - [anon_sym_null] = ACTIONS(1456), - [anon_sym_DOLLARvacount] = ACTIONS(1456), - [anon_sym_DOLLARappend] = ACTIONS(1456), - [anon_sym_DOLLARconcat] = ACTIONS(1456), - [anon_sym_DOLLAReval] = ACTIONS(1456), - [anon_sym_DOLLARis_const] = ACTIONS(1456), - [anon_sym_DOLLARsizeof] = ACTIONS(1456), - [anon_sym_DOLLARstringify] = ACTIONS(1456), - [anon_sym_DOLLARand] = ACTIONS(1456), - [anon_sym_DOLLARdefined] = ACTIONS(1456), - [anon_sym_DOLLARembed] = ACTIONS(1456), - [anon_sym_DOLLARor] = ACTIONS(1456), - [anon_sym_DOLLARfeature] = ACTIONS(1456), - [anon_sym_DOLLARassignable] = ACTIONS(1456), - [anon_sym_BANG] = ACTIONS(1458), - [anon_sym_TILDE] = ACTIONS(1458), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [anon_sym_typeid] = ACTIONS(1456), - [anon_sym_LBRACE_PIPE] = ACTIONS(1458), - [anon_sym_void] = ACTIONS(1456), - [anon_sym_bool] = ACTIONS(1456), - [anon_sym_char] = ACTIONS(1456), - [anon_sym_ichar] = ACTIONS(1456), - [anon_sym_short] = ACTIONS(1456), - [anon_sym_ushort] = ACTIONS(1456), - [anon_sym_uint] = ACTIONS(1456), - [anon_sym_long] = ACTIONS(1456), - [anon_sym_ulong] = ACTIONS(1456), - [anon_sym_int128] = ACTIONS(1456), - [anon_sym_uint128] = ACTIONS(1456), - [anon_sym_float] = ACTIONS(1456), - [anon_sym_double] = ACTIONS(1456), - [anon_sym_float16] = ACTIONS(1456), - [anon_sym_bfloat16] = ACTIONS(1456), - [anon_sym_float128] = ACTIONS(1456), - [anon_sym_iptr] = ACTIONS(1456), - [anon_sym_uptr] = ACTIONS(1456), - [anon_sym_isz] = ACTIONS(1456), - [anon_sym_usz] = ACTIONS(1456), - [anon_sym_anyfault] = ACTIONS(1456), - [anon_sym_any] = ACTIONS(1456), - [anon_sym_DOLLARtypeof] = ACTIONS(1456), - [anon_sym_DOLLARtypefrom] = ACTIONS(1456), - [anon_sym_DOLLARvatype] = ACTIONS(1456), - [anon_sym_DOLLARevaltype] = ACTIONS(1456), - [sym_real_literal] = ACTIONS(1458), + [sym_ident] = ACTIONS(1375), + [sym_integer_literal] = ACTIONS(1377), + [anon_sym_SQUOTE] = ACTIONS(1377), + [anon_sym_DQUOTE] = ACTIONS(1377), + [anon_sym_BQUOTE] = ACTIONS(1377), + [sym_bytes_literal] = ACTIONS(1377), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1375), + [sym_at_ident] = ACTIONS(1377), + [sym_hash_ident] = ACTIONS(1377), + [sym_type_ident] = ACTIONS(1377), + [sym_ct_type_ident] = ACTIONS(1377), + [sym_const_ident] = ACTIONS(1375), + [sym_builtin] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_static] = ACTIONS(1375), + [anon_sym_tlocal] = ACTIONS(1375), + [anon_sym_SEMI] = ACTIONS(1377), + [anon_sym_fn] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1375), + [anon_sym_const] = ACTIONS(1375), + [anon_sym_var] = ACTIONS(1375), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_continue] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1375), + [anon_sym_defer] = ACTIONS(1375), + [anon_sym_assert] = ACTIONS(1375), + [anon_sym_nextcase] = ACTIONS(1375), + [anon_sym_switch] = ACTIONS(1375), + [anon_sym_AMP_AMP] = ACTIONS(1377), + [anon_sym_if] = ACTIONS(1375), + [anon_sym_for] = ACTIONS(1375), + [anon_sym_foreach] = ACTIONS(1375), + [anon_sym_foreach_r] = ACTIONS(1375), + [anon_sym_while] = ACTIONS(1375), + [anon_sym_do] = ACTIONS(1375), + [anon_sym_int] = ACTIONS(1375), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_asm] = ACTIONS(1375), + [anon_sym_DOLLARassert] = ACTIONS(1375), + [anon_sym_DOLLARerror] = ACTIONS(1375), + [anon_sym_DOLLARecho] = ACTIONS(1375), + [anon_sym_DOLLARif] = ACTIONS(1375), + [anon_sym_DOLLARswitch] = ACTIONS(1375), + [anon_sym_DOLLARfor] = ACTIONS(1375), + [anon_sym_DOLLARendfor] = ACTIONS(1375), + [anon_sym_DOLLARforeach] = ACTIONS(1375), + [anon_sym_DOLLARalignof] = ACTIONS(1375), + [anon_sym_DOLLARextnameof] = ACTIONS(1375), + [anon_sym_DOLLARnameof] = ACTIONS(1375), + [anon_sym_DOLLARoffsetof] = ACTIONS(1375), + [anon_sym_DOLLARqnameof] = ACTIONS(1375), + [anon_sym_DOLLARvaconst] = ACTIONS(1375), + [anon_sym_DOLLARvaarg] = ACTIONS(1375), + [anon_sym_DOLLARvaref] = ACTIONS(1375), + [anon_sym_DOLLARvaexpr] = ACTIONS(1375), + [anon_sym_true] = ACTIONS(1375), + [anon_sym_false] = ACTIONS(1375), + [anon_sym_null] = ACTIONS(1375), + [anon_sym_DOLLARvacount] = ACTIONS(1375), + [anon_sym_DOLLARappend] = ACTIONS(1375), + [anon_sym_DOLLARconcat] = ACTIONS(1375), + [anon_sym_DOLLAReval] = ACTIONS(1375), + [anon_sym_DOLLARis_const] = ACTIONS(1375), + [anon_sym_DOLLARsizeof] = ACTIONS(1375), + [anon_sym_DOLLARstringify] = ACTIONS(1375), + [anon_sym_DOLLARand] = ACTIONS(1375), + [anon_sym_DOLLARdefined] = ACTIONS(1375), + [anon_sym_DOLLARembed] = ACTIONS(1375), + [anon_sym_DOLLARor] = ACTIONS(1375), + [anon_sym_DOLLARfeature] = ACTIONS(1375), + [anon_sym_DOLLARassignable] = ACTIONS(1375), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_TILDE] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_typeid] = ACTIONS(1375), + [anon_sym_LBRACE_PIPE] = ACTIONS(1377), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_bool] = ACTIONS(1375), + [anon_sym_char] = ACTIONS(1375), + [anon_sym_ichar] = ACTIONS(1375), + [anon_sym_short] = ACTIONS(1375), + [anon_sym_ushort] = ACTIONS(1375), + [anon_sym_uint] = ACTIONS(1375), + [anon_sym_long] = ACTIONS(1375), + [anon_sym_ulong] = ACTIONS(1375), + [anon_sym_int128] = ACTIONS(1375), + [anon_sym_uint128] = ACTIONS(1375), + [anon_sym_float] = ACTIONS(1375), + [anon_sym_double] = ACTIONS(1375), + [anon_sym_float16] = ACTIONS(1375), + [anon_sym_bfloat16] = ACTIONS(1375), + [anon_sym_float128] = ACTIONS(1375), + [anon_sym_iptr] = ACTIONS(1375), + [anon_sym_uptr] = ACTIONS(1375), + [anon_sym_isz] = ACTIONS(1375), + [anon_sym_usz] = ACTIONS(1375), + [anon_sym_anyfault] = ACTIONS(1375), + [anon_sym_any] = ACTIONS(1375), + [anon_sym_DOLLARtypeof] = ACTIONS(1375), + [anon_sym_DOLLARtypefrom] = ACTIONS(1375), + [anon_sym_DOLLARvatype] = ACTIONS(1375), + [anon_sym_DOLLARevaltype] = ACTIONS(1375), + [sym_real_literal] = ACTIONS(1377), }, [618] = { [sym_line_comment] = STATE(618), [sym_doc_comment] = STATE(618), [sym_block_comment] = STATE(618), - [sym_ident] = ACTIONS(1448), - [sym_integer_literal] = ACTIONS(1450), - [anon_sym_SQUOTE] = ACTIONS(1450), - [anon_sym_DQUOTE] = ACTIONS(1450), - [anon_sym_BQUOTE] = ACTIONS(1450), - [sym_bytes_literal] = ACTIONS(1450), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1448), - [sym_at_ident] = ACTIONS(1450), - [sym_hash_ident] = ACTIONS(1450), - [sym_type_ident] = ACTIONS(1450), - [sym_ct_type_ident] = ACTIONS(1450), - [sym_const_ident] = ACTIONS(1448), - [sym_builtin] = ACTIONS(1450), - [anon_sym_LPAREN] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1448), - [anon_sym_static] = ACTIONS(1448), - [anon_sym_tlocal] = ACTIONS(1448), - [anon_sym_SEMI] = ACTIONS(1450), - [anon_sym_fn] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(1448), - [anon_sym_const] = ACTIONS(1448), - [anon_sym_var] = ACTIONS(1448), - [anon_sym_return] = ACTIONS(1448), - [anon_sym_continue] = ACTIONS(1448), - [anon_sym_break] = ACTIONS(1448), - [anon_sym_defer] = ACTIONS(1448), - [anon_sym_assert] = ACTIONS(1448), - [anon_sym_nextcase] = ACTIONS(1448), - [anon_sym_switch] = ACTIONS(1448), - [anon_sym_AMP_AMP] = ACTIONS(1450), - [anon_sym_if] = ACTIONS(1448), - [anon_sym_for] = ACTIONS(1448), - [anon_sym_foreach] = ACTIONS(1448), - [anon_sym_foreach_r] = ACTIONS(1448), - [anon_sym_while] = ACTIONS(1448), - [anon_sym_do] = ACTIONS(1448), - [anon_sym_int] = ACTIONS(1448), - [anon_sym_PLUS] = ACTIONS(1448), - [anon_sym_DASH] = ACTIONS(1448), - [anon_sym_STAR] = ACTIONS(1450), - [anon_sym_asm] = ACTIONS(1448), - [anon_sym_DOLLARassert] = ACTIONS(1448), - [anon_sym_DOLLARerror] = ACTIONS(1448), - [anon_sym_DOLLARecho] = ACTIONS(1448), - [anon_sym_DOLLARif] = ACTIONS(1448), - [anon_sym_DOLLARendif] = ACTIONS(1448), - [anon_sym_DOLLARelse] = ACTIONS(1448), - [anon_sym_DOLLARswitch] = ACTIONS(1448), - [anon_sym_DOLLARfor] = ACTIONS(1448), - [anon_sym_DOLLARforeach] = ACTIONS(1448), - [anon_sym_DOLLARalignof] = ACTIONS(1448), - [anon_sym_DOLLARextnameof] = ACTIONS(1448), - [anon_sym_DOLLARnameof] = ACTIONS(1448), - [anon_sym_DOLLARoffsetof] = ACTIONS(1448), - [anon_sym_DOLLARqnameof] = ACTIONS(1448), - [anon_sym_DOLLARvaconst] = ACTIONS(1448), - [anon_sym_DOLLARvaarg] = ACTIONS(1448), - [anon_sym_DOLLARvaref] = ACTIONS(1448), - [anon_sym_DOLLARvaexpr] = ACTIONS(1448), - [anon_sym_true] = ACTIONS(1448), - [anon_sym_false] = ACTIONS(1448), - [anon_sym_null] = ACTIONS(1448), - [anon_sym_DOLLARvacount] = ACTIONS(1448), - [anon_sym_DOLLARappend] = ACTIONS(1448), - [anon_sym_DOLLARconcat] = ACTIONS(1448), - [anon_sym_DOLLAReval] = ACTIONS(1448), - [anon_sym_DOLLARis_const] = ACTIONS(1448), - [anon_sym_DOLLARsizeof] = ACTIONS(1448), - [anon_sym_DOLLARstringify] = ACTIONS(1448), - [anon_sym_DOLLARand] = ACTIONS(1448), - [anon_sym_DOLLARdefined] = ACTIONS(1448), - [anon_sym_DOLLARembed] = ACTIONS(1448), - [anon_sym_DOLLARor] = ACTIONS(1448), - [anon_sym_DOLLARfeature] = ACTIONS(1448), - [anon_sym_DOLLARassignable] = ACTIONS(1448), - [anon_sym_BANG] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1450), - [anon_sym_PLUS_PLUS] = ACTIONS(1450), - [anon_sym_DASH_DASH] = ACTIONS(1450), - [anon_sym_typeid] = ACTIONS(1448), - [anon_sym_LBRACE_PIPE] = ACTIONS(1450), - [anon_sym_void] = ACTIONS(1448), - [anon_sym_bool] = ACTIONS(1448), - [anon_sym_char] = ACTIONS(1448), - [anon_sym_ichar] = ACTIONS(1448), - [anon_sym_short] = ACTIONS(1448), - [anon_sym_ushort] = ACTIONS(1448), - [anon_sym_uint] = ACTIONS(1448), - [anon_sym_long] = ACTIONS(1448), - [anon_sym_ulong] = ACTIONS(1448), - [anon_sym_int128] = ACTIONS(1448), - [anon_sym_uint128] = ACTIONS(1448), - [anon_sym_float] = ACTIONS(1448), - [anon_sym_double] = ACTIONS(1448), - [anon_sym_float16] = ACTIONS(1448), - [anon_sym_bfloat16] = ACTIONS(1448), - [anon_sym_float128] = ACTIONS(1448), - [anon_sym_iptr] = ACTIONS(1448), - [anon_sym_uptr] = ACTIONS(1448), - [anon_sym_isz] = ACTIONS(1448), - [anon_sym_usz] = ACTIONS(1448), - [anon_sym_anyfault] = ACTIONS(1448), - [anon_sym_any] = ACTIONS(1448), - [anon_sym_DOLLARtypeof] = ACTIONS(1448), - [anon_sym_DOLLARtypefrom] = ACTIONS(1448), - [anon_sym_DOLLARvatype] = ACTIONS(1448), - [anon_sym_DOLLARevaltype] = ACTIONS(1448), - [sym_real_literal] = ACTIONS(1450), + [sym_ident] = ACTIONS(1379), + [sym_integer_literal] = ACTIONS(1381), + [anon_sym_SQUOTE] = ACTIONS(1381), + [anon_sym_DQUOTE] = ACTIONS(1381), + [anon_sym_BQUOTE] = ACTIONS(1381), + [sym_bytes_literal] = ACTIONS(1381), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1379), + [sym_at_ident] = ACTIONS(1381), + [sym_hash_ident] = ACTIONS(1381), + [sym_type_ident] = ACTIONS(1381), + [sym_ct_type_ident] = ACTIONS(1381), + [sym_const_ident] = ACTIONS(1379), + [sym_builtin] = ACTIONS(1381), + [anon_sym_LPAREN] = ACTIONS(1381), + [anon_sym_AMP] = ACTIONS(1379), + [anon_sym_static] = ACTIONS(1379), + [anon_sym_tlocal] = ACTIONS(1379), + [anon_sym_SEMI] = ACTIONS(1381), + [anon_sym_fn] = ACTIONS(1379), + [anon_sym_LBRACE] = ACTIONS(1379), + [anon_sym_const] = ACTIONS(1379), + [anon_sym_var] = ACTIONS(1379), + [anon_sym_return] = ACTIONS(1379), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_break] = ACTIONS(1379), + [anon_sym_defer] = ACTIONS(1379), + [anon_sym_assert] = ACTIONS(1379), + [anon_sym_nextcase] = ACTIONS(1379), + [anon_sym_switch] = ACTIONS(1379), + [anon_sym_AMP_AMP] = ACTIONS(1381), + [anon_sym_if] = ACTIONS(1379), + [anon_sym_for] = ACTIONS(1379), + [anon_sym_foreach] = ACTIONS(1379), + [anon_sym_foreach_r] = ACTIONS(1379), + [anon_sym_while] = ACTIONS(1379), + [anon_sym_do] = ACTIONS(1379), + [anon_sym_int] = ACTIONS(1379), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(1381), + [anon_sym_asm] = ACTIONS(1379), + [anon_sym_DOLLARassert] = ACTIONS(1379), + [anon_sym_DOLLARerror] = ACTIONS(1379), + [anon_sym_DOLLARecho] = ACTIONS(1379), + [anon_sym_DOLLARif] = ACTIONS(1379), + [anon_sym_DOLLARswitch] = ACTIONS(1379), + [anon_sym_DOLLARfor] = ACTIONS(1379), + [anon_sym_DOLLARendfor] = ACTIONS(1379), + [anon_sym_DOLLARforeach] = ACTIONS(1379), + [anon_sym_DOLLARalignof] = ACTIONS(1379), + [anon_sym_DOLLARextnameof] = ACTIONS(1379), + [anon_sym_DOLLARnameof] = ACTIONS(1379), + [anon_sym_DOLLARoffsetof] = ACTIONS(1379), + [anon_sym_DOLLARqnameof] = ACTIONS(1379), + [anon_sym_DOLLARvaconst] = ACTIONS(1379), + [anon_sym_DOLLARvaarg] = ACTIONS(1379), + [anon_sym_DOLLARvaref] = ACTIONS(1379), + [anon_sym_DOLLARvaexpr] = ACTIONS(1379), + [anon_sym_true] = ACTIONS(1379), + [anon_sym_false] = ACTIONS(1379), + [anon_sym_null] = ACTIONS(1379), + [anon_sym_DOLLARvacount] = ACTIONS(1379), + [anon_sym_DOLLARappend] = ACTIONS(1379), + [anon_sym_DOLLARconcat] = ACTIONS(1379), + [anon_sym_DOLLAReval] = ACTIONS(1379), + [anon_sym_DOLLARis_const] = ACTIONS(1379), + [anon_sym_DOLLARsizeof] = ACTIONS(1379), + [anon_sym_DOLLARstringify] = ACTIONS(1379), + [anon_sym_DOLLARand] = ACTIONS(1379), + [anon_sym_DOLLARdefined] = ACTIONS(1379), + [anon_sym_DOLLARembed] = ACTIONS(1379), + [anon_sym_DOLLARor] = ACTIONS(1379), + [anon_sym_DOLLARfeature] = ACTIONS(1379), + [anon_sym_DOLLARassignable] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_PLUS_PLUS] = ACTIONS(1381), + [anon_sym_DASH_DASH] = ACTIONS(1381), + [anon_sym_typeid] = ACTIONS(1379), + [anon_sym_LBRACE_PIPE] = ACTIONS(1381), + [anon_sym_void] = ACTIONS(1379), + [anon_sym_bool] = ACTIONS(1379), + [anon_sym_char] = ACTIONS(1379), + [anon_sym_ichar] = ACTIONS(1379), + [anon_sym_short] = ACTIONS(1379), + [anon_sym_ushort] = ACTIONS(1379), + [anon_sym_uint] = ACTIONS(1379), + [anon_sym_long] = ACTIONS(1379), + [anon_sym_ulong] = ACTIONS(1379), + [anon_sym_int128] = ACTIONS(1379), + [anon_sym_uint128] = ACTIONS(1379), + [anon_sym_float] = ACTIONS(1379), + [anon_sym_double] = ACTIONS(1379), + [anon_sym_float16] = ACTIONS(1379), + [anon_sym_bfloat16] = ACTIONS(1379), + [anon_sym_float128] = ACTIONS(1379), + [anon_sym_iptr] = ACTIONS(1379), + [anon_sym_uptr] = ACTIONS(1379), + [anon_sym_isz] = ACTIONS(1379), + [anon_sym_usz] = ACTIONS(1379), + [anon_sym_anyfault] = ACTIONS(1379), + [anon_sym_any] = ACTIONS(1379), + [anon_sym_DOLLARtypeof] = ACTIONS(1379), + [anon_sym_DOLLARtypefrom] = ACTIONS(1379), + [anon_sym_DOLLARvatype] = ACTIONS(1379), + [anon_sym_DOLLARevaltype] = ACTIONS(1379), + [sym_real_literal] = ACTIONS(1381), }, [619] = { [sym_line_comment] = STATE(619), [sym_doc_comment] = STATE(619), [sym_block_comment] = STATE(619), - [sym_ident] = ACTIONS(1444), - [sym_integer_literal] = ACTIONS(1446), - [anon_sym_SQUOTE] = ACTIONS(1446), - [anon_sym_DQUOTE] = ACTIONS(1446), - [anon_sym_BQUOTE] = ACTIONS(1446), - [sym_bytes_literal] = ACTIONS(1446), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1444), - [sym_at_ident] = ACTIONS(1446), - [sym_hash_ident] = ACTIONS(1446), - [sym_type_ident] = ACTIONS(1446), - [sym_ct_type_ident] = ACTIONS(1446), - [sym_const_ident] = ACTIONS(1444), - [sym_builtin] = ACTIONS(1446), - [anon_sym_LPAREN] = ACTIONS(1446), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_static] = ACTIONS(1444), - [anon_sym_tlocal] = ACTIONS(1444), - [anon_sym_SEMI] = ACTIONS(1446), - [anon_sym_fn] = ACTIONS(1444), - [anon_sym_LBRACE] = ACTIONS(1444), - [anon_sym_const] = ACTIONS(1444), - [anon_sym_var] = ACTIONS(1444), - [anon_sym_return] = ACTIONS(1444), - [anon_sym_continue] = ACTIONS(1444), - [anon_sym_break] = ACTIONS(1444), - [anon_sym_defer] = ACTIONS(1444), - [anon_sym_assert] = ACTIONS(1444), - [anon_sym_nextcase] = ACTIONS(1444), - [anon_sym_switch] = ACTIONS(1444), - [anon_sym_AMP_AMP] = ACTIONS(1446), - [anon_sym_if] = ACTIONS(1444), - [anon_sym_for] = ACTIONS(1444), - [anon_sym_foreach] = ACTIONS(1444), - [anon_sym_foreach_r] = ACTIONS(1444), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_do] = ACTIONS(1444), - [anon_sym_int] = ACTIONS(1444), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_asm] = ACTIONS(1444), - [anon_sym_DOLLARassert] = ACTIONS(1444), - [anon_sym_DOLLARerror] = ACTIONS(1444), - [anon_sym_DOLLARecho] = ACTIONS(1444), - [anon_sym_DOLLARif] = ACTIONS(1444), - [anon_sym_DOLLARendif] = ACTIONS(1444), - [anon_sym_DOLLARelse] = ACTIONS(1444), - [anon_sym_DOLLARswitch] = ACTIONS(1444), - [anon_sym_DOLLARfor] = ACTIONS(1444), - [anon_sym_DOLLARforeach] = ACTIONS(1444), - [anon_sym_DOLLARalignof] = ACTIONS(1444), - [anon_sym_DOLLARextnameof] = ACTIONS(1444), - [anon_sym_DOLLARnameof] = ACTIONS(1444), - [anon_sym_DOLLARoffsetof] = ACTIONS(1444), - [anon_sym_DOLLARqnameof] = ACTIONS(1444), - [anon_sym_DOLLARvaconst] = ACTIONS(1444), - [anon_sym_DOLLARvaarg] = ACTIONS(1444), - [anon_sym_DOLLARvaref] = ACTIONS(1444), - [anon_sym_DOLLARvaexpr] = ACTIONS(1444), - [anon_sym_true] = ACTIONS(1444), - [anon_sym_false] = ACTIONS(1444), - [anon_sym_null] = ACTIONS(1444), - [anon_sym_DOLLARvacount] = ACTIONS(1444), - [anon_sym_DOLLARappend] = ACTIONS(1444), - [anon_sym_DOLLARconcat] = ACTIONS(1444), - [anon_sym_DOLLAReval] = ACTIONS(1444), - [anon_sym_DOLLARis_const] = ACTIONS(1444), - [anon_sym_DOLLARsizeof] = ACTIONS(1444), - [anon_sym_DOLLARstringify] = ACTIONS(1444), - [anon_sym_DOLLARand] = ACTIONS(1444), - [anon_sym_DOLLARdefined] = ACTIONS(1444), - [anon_sym_DOLLARembed] = ACTIONS(1444), - [anon_sym_DOLLARor] = ACTIONS(1444), - [anon_sym_DOLLARfeature] = ACTIONS(1444), - [anon_sym_DOLLARassignable] = ACTIONS(1444), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_TILDE] = ACTIONS(1446), - [anon_sym_PLUS_PLUS] = ACTIONS(1446), - [anon_sym_DASH_DASH] = ACTIONS(1446), - [anon_sym_typeid] = ACTIONS(1444), - [anon_sym_LBRACE_PIPE] = ACTIONS(1446), - [anon_sym_void] = ACTIONS(1444), - [anon_sym_bool] = ACTIONS(1444), - [anon_sym_char] = ACTIONS(1444), - [anon_sym_ichar] = ACTIONS(1444), - [anon_sym_short] = ACTIONS(1444), - [anon_sym_ushort] = ACTIONS(1444), - [anon_sym_uint] = ACTIONS(1444), - [anon_sym_long] = ACTIONS(1444), - [anon_sym_ulong] = ACTIONS(1444), - [anon_sym_int128] = ACTIONS(1444), - [anon_sym_uint128] = ACTIONS(1444), - [anon_sym_float] = ACTIONS(1444), - [anon_sym_double] = ACTIONS(1444), - [anon_sym_float16] = ACTIONS(1444), - [anon_sym_bfloat16] = ACTIONS(1444), - [anon_sym_float128] = ACTIONS(1444), - [anon_sym_iptr] = ACTIONS(1444), - [anon_sym_uptr] = ACTIONS(1444), - [anon_sym_isz] = ACTIONS(1444), - [anon_sym_usz] = ACTIONS(1444), - [anon_sym_anyfault] = ACTIONS(1444), - [anon_sym_any] = ACTIONS(1444), - [anon_sym_DOLLARtypeof] = ACTIONS(1444), - [anon_sym_DOLLARtypefrom] = ACTIONS(1444), - [anon_sym_DOLLARvatype] = ACTIONS(1444), - [anon_sym_DOLLARevaltype] = ACTIONS(1444), - [sym_real_literal] = ACTIONS(1446), + [sym_ident] = ACTIONS(1383), + [sym_integer_literal] = ACTIONS(1385), + [anon_sym_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE] = ACTIONS(1385), + [anon_sym_BQUOTE] = ACTIONS(1385), + [sym_bytes_literal] = ACTIONS(1385), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1383), + [sym_at_ident] = ACTIONS(1385), + [sym_hash_ident] = ACTIONS(1385), + [sym_type_ident] = ACTIONS(1385), + [sym_ct_type_ident] = ACTIONS(1385), + [sym_const_ident] = ACTIONS(1383), + [sym_builtin] = ACTIONS(1385), + [anon_sym_LPAREN] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_static] = ACTIONS(1383), + [anon_sym_tlocal] = ACTIONS(1383), + [anon_sym_SEMI] = ACTIONS(1385), + [anon_sym_fn] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1383), + [anon_sym_const] = ACTIONS(1383), + [anon_sym_var] = ACTIONS(1383), + [anon_sym_return] = ACTIONS(1383), + [anon_sym_continue] = ACTIONS(1383), + [anon_sym_break] = ACTIONS(1383), + [anon_sym_defer] = ACTIONS(1383), + [anon_sym_assert] = ACTIONS(1383), + [anon_sym_nextcase] = ACTIONS(1383), + [anon_sym_switch] = ACTIONS(1383), + [anon_sym_AMP_AMP] = ACTIONS(1385), + [anon_sym_if] = ACTIONS(1383), + [anon_sym_for] = ACTIONS(1383), + [anon_sym_foreach] = ACTIONS(1383), + [anon_sym_foreach_r] = ACTIONS(1383), + [anon_sym_while] = ACTIONS(1383), + [anon_sym_do] = ACTIONS(1383), + [anon_sym_int] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1383), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_STAR] = ACTIONS(1385), + [anon_sym_asm] = ACTIONS(1383), + [anon_sym_DOLLARassert] = ACTIONS(1383), + [anon_sym_DOLLARerror] = ACTIONS(1383), + [anon_sym_DOLLARecho] = ACTIONS(1383), + [anon_sym_DOLLARif] = ACTIONS(1383), + [anon_sym_DOLLARswitch] = ACTIONS(1383), + [anon_sym_DOLLARfor] = ACTIONS(1383), + [anon_sym_DOLLARendfor] = ACTIONS(1383), + [anon_sym_DOLLARforeach] = ACTIONS(1383), + [anon_sym_DOLLARalignof] = ACTIONS(1383), + [anon_sym_DOLLARextnameof] = ACTIONS(1383), + [anon_sym_DOLLARnameof] = ACTIONS(1383), + [anon_sym_DOLLARoffsetof] = ACTIONS(1383), + [anon_sym_DOLLARqnameof] = ACTIONS(1383), + [anon_sym_DOLLARvaconst] = ACTIONS(1383), + [anon_sym_DOLLARvaarg] = ACTIONS(1383), + [anon_sym_DOLLARvaref] = ACTIONS(1383), + [anon_sym_DOLLARvaexpr] = ACTIONS(1383), + [anon_sym_true] = ACTIONS(1383), + [anon_sym_false] = ACTIONS(1383), + [anon_sym_null] = ACTIONS(1383), + [anon_sym_DOLLARvacount] = ACTIONS(1383), + [anon_sym_DOLLARappend] = ACTIONS(1383), + [anon_sym_DOLLARconcat] = ACTIONS(1383), + [anon_sym_DOLLAReval] = ACTIONS(1383), + [anon_sym_DOLLARis_const] = ACTIONS(1383), + [anon_sym_DOLLARsizeof] = ACTIONS(1383), + [anon_sym_DOLLARstringify] = ACTIONS(1383), + [anon_sym_DOLLARand] = ACTIONS(1383), + [anon_sym_DOLLARdefined] = ACTIONS(1383), + [anon_sym_DOLLARembed] = ACTIONS(1383), + [anon_sym_DOLLARor] = ACTIONS(1383), + [anon_sym_DOLLARfeature] = ACTIONS(1383), + [anon_sym_DOLLARassignable] = ACTIONS(1383), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_TILDE] = ACTIONS(1385), + [anon_sym_PLUS_PLUS] = ACTIONS(1385), + [anon_sym_DASH_DASH] = ACTIONS(1385), + [anon_sym_typeid] = ACTIONS(1383), + [anon_sym_LBRACE_PIPE] = ACTIONS(1385), + [anon_sym_void] = ACTIONS(1383), + [anon_sym_bool] = ACTIONS(1383), + [anon_sym_char] = ACTIONS(1383), + [anon_sym_ichar] = ACTIONS(1383), + [anon_sym_short] = ACTIONS(1383), + [anon_sym_ushort] = ACTIONS(1383), + [anon_sym_uint] = ACTIONS(1383), + [anon_sym_long] = ACTIONS(1383), + [anon_sym_ulong] = ACTIONS(1383), + [anon_sym_int128] = ACTIONS(1383), + [anon_sym_uint128] = ACTIONS(1383), + [anon_sym_float] = ACTIONS(1383), + [anon_sym_double] = ACTIONS(1383), + [anon_sym_float16] = ACTIONS(1383), + [anon_sym_bfloat16] = ACTIONS(1383), + [anon_sym_float128] = ACTIONS(1383), + [anon_sym_iptr] = ACTIONS(1383), + [anon_sym_uptr] = ACTIONS(1383), + [anon_sym_isz] = ACTIONS(1383), + [anon_sym_usz] = ACTIONS(1383), + [anon_sym_anyfault] = ACTIONS(1383), + [anon_sym_any] = ACTIONS(1383), + [anon_sym_DOLLARtypeof] = ACTIONS(1383), + [anon_sym_DOLLARtypefrom] = ACTIONS(1383), + [anon_sym_DOLLARvatype] = ACTIONS(1383), + [anon_sym_DOLLARevaltype] = ACTIONS(1383), + [sym_real_literal] = ACTIONS(1385), }, [620] = { [sym_line_comment] = STATE(620), [sym_doc_comment] = STATE(620), [sym_block_comment] = STATE(620), - [sym_ident] = ACTIONS(1428), - [sym_integer_literal] = ACTIONS(1430), - [anon_sym_SQUOTE] = ACTIONS(1430), - [anon_sym_DQUOTE] = ACTIONS(1430), - [anon_sym_BQUOTE] = ACTIONS(1430), - [sym_bytes_literal] = ACTIONS(1430), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1428), - [sym_at_ident] = ACTIONS(1430), - [sym_hash_ident] = ACTIONS(1430), - [sym_type_ident] = ACTIONS(1430), - [sym_ct_type_ident] = ACTIONS(1430), - [sym_const_ident] = ACTIONS(1428), - [sym_builtin] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1430), - [anon_sym_AMP] = ACTIONS(1428), - [anon_sym_static] = ACTIONS(1428), - [anon_sym_tlocal] = ACTIONS(1428), - [anon_sym_SEMI] = ACTIONS(1430), - [anon_sym_fn] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1428), - [anon_sym_const] = ACTIONS(1428), - [anon_sym_var] = ACTIONS(1428), - [anon_sym_return] = ACTIONS(1428), - [anon_sym_continue] = ACTIONS(1428), - [anon_sym_break] = ACTIONS(1428), - [anon_sym_defer] = ACTIONS(1428), - [anon_sym_assert] = ACTIONS(1428), - [anon_sym_nextcase] = ACTIONS(1428), - [anon_sym_switch] = ACTIONS(1428), - [anon_sym_AMP_AMP] = ACTIONS(1430), - [anon_sym_if] = ACTIONS(1428), - [anon_sym_for] = ACTIONS(1428), - [anon_sym_foreach] = ACTIONS(1428), - [anon_sym_foreach_r] = ACTIONS(1428), - [anon_sym_while] = ACTIONS(1428), - [anon_sym_do] = ACTIONS(1428), - [anon_sym_int] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1428), - [anon_sym_DASH] = ACTIONS(1428), - [anon_sym_STAR] = ACTIONS(1430), - [anon_sym_asm] = ACTIONS(1428), - [anon_sym_DOLLARassert] = ACTIONS(1428), - [anon_sym_DOLLARerror] = ACTIONS(1428), - [anon_sym_DOLLARecho] = ACTIONS(1428), - [anon_sym_DOLLARif] = ACTIONS(1428), - [anon_sym_DOLLARendif] = ACTIONS(1428), - [anon_sym_DOLLARelse] = ACTIONS(1428), - [anon_sym_DOLLARswitch] = ACTIONS(1428), - [anon_sym_DOLLARfor] = ACTIONS(1428), - [anon_sym_DOLLARforeach] = ACTIONS(1428), - [anon_sym_DOLLARalignof] = ACTIONS(1428), - [anon_sym_DOLLARextnameof] = ACTIONS(1428), - [anon_sym_DOLLARnameof] = ACTIONS(1428), - [anon_sym_DOLLARoffsetof] = ACTIONS(1428), - [anon_sym_DOLLARqnameof] = ACTIONS(1428), - [anon_sym_DOLLARvaconst] = ACTIONS(1428), - [anon_sym_DOLLARvaarg] = ACTIONS(1428), - [anon_sym_DOLLARvaref] = ACTIONS(1428), - [anon_sym_DOLLARvaexpr] = ACTIONS(1428), - [anon_sym_true] = ACTIONS(1428), - [anon_sym_false] = ACTIONS(1428), - [anon_sym_null] = ACTIONS(1428), - [anon_sym_DOLLARvacount] = ACTIONS(1428), - [anon_sym_DOLLARappend] = ACTIONS(1428), - [anon_sym_DOLLARconcat] = ACTIONS(1428), - [anon_sym_DOLLAReval] = ACTIONS(1428), - [anon_sym_DOLLARis_const] = ACTIONS(1428), - [anon_sym_DOLLARsizeof] = ACTIONS(1428), - [anon_sym_DOLLARstringify] = ACTIONS(1428), - [anon_sym_DOLLARand] = ACTIONS(1428), - [anon_sym_DOLLARdefined] = ACTIONS(1428), - [anon_sym_DOLLARembed] = ACTIONS(1428), - [anon_sym_DOLLARor] = ACTIONS(1428), - [anon_sym_DOLLARfeature] = ACTIONS(1428), - [anon_sym_DOLLARassignable] = ACTIONS(1428), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_PLUS_PLUS] = ACTIONS(1430), - [anon_sym_DASH_DASH] = ACTIONS(1430), - [anon_sym_typeid] = ACTIONS(1428), - [anon_sym_LBRACE_PIPE] = ACTIONS(1430), - [anon_sym_void] = ACTIONS(1428), - [anon_sym_bool] = ACTIONS(1428), - [anon_sym_char] = ACTIONS(1428), - [anon_sym_ichar] = ACTIONS(1428), - [anon_sym_short] = ACTIONS(1428), - [anon_sym_ushort] = ACTIONS(1428), - [anon_sym_uint] = ACTIONS(1428), - [anon_sym_long] = ACTIONS(1428), - [anon_sym_ulong] = ACTIONS(1428), - [anon_sym_int128] = ACTIONS(1428), - [anon_sym_uint128] = ACTIONS(1428), - [anon_sym_float] = ACTIONS(1428), - [anon_sym_double] = ACTIONS(1428), - [anon_sym_float16] = ACTIONS(1428), - [anon_sym_bfloat16] = ACTIONS(1428), - [anon_sym_float128] = ACTIONS(1428), - [anon_sym_iptr] = ACTIONS(1428), - [anon_sym_uptr] = ACTIONS(1428), - [anon_sym_isz] = ACTIONS(1428), - [anon_sym_usz] = ACTIONS(1428), - [anon_sym_anyfault] = ACTIONS(1428), - [anon_sym_any] = ACTIONS(1428), - [anon_sym_DOLLARtypeof] = ACTIONS(1428), - [anon_sym_DOLLARtypefrom] = ACTIONS(1428), - [anon_sym_DOLLARvatype] = ACTIONS(1428), - [anon_sym_DOLLARevaltype] = ACTIONS(1428), - [sym_real_literal] = ACTIONS(1430), + [sym_ident] = ACTIONS(1387), + [sym_integer_literal] = ACTIONS(1389), + [anon_sym_SQUOTE] = ACTIONS(1389), + [anon_sym_DQUOTE] = ACTIONS(1389), + [anon_sym_BQUOTE] = ACTIONS(1389), + [sym_bytes_literal] = ACTIONS(1389), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1387), + [sym_at_ident] = ACTIONS(1389), + [sym_hash_ident] = ACTIONS(1389), + [sym_type_ident] = ACTIONS(1389), + [sym_ct_type_ident] = ACTIONS(1389), + [sym_const_ident] = ACTIONS(1387), + [sym_builtin] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_AMP] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1387), + [anon_sym_tlocal] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1389), + [anon_sym_fn] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_defer] = ACTIONS(1387), + [anon_sym_assert] = ACTIONS(1387), + [anon_sym_nextcase] = ACTIONS(1387), + [anon_sym_switch] = ACTIONS(1387), + [anon_sym_AMP_AMP] = ACTIONS(1389), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_foreach] = ACTIONS(1387), + [anon_sym_foreach_r] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_int] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1389), + [anon_sym_asm] = ACTIONS(1387), + [anon_sym_DOLLARassert] = ACTIONS(1387), + [anon_sym_DOLLARerror] = ACTIONS(1387), + [anon_sym_DOLLARecho] = ACTIONS(1387), + [anon_sym_DOLLARif] = ACTIONS(1387), + [anon_sym_DOLLARswitch] = ACTIONS(1387), + [anon_sym_DOLLARfor] = ACTIONS(1387), + [anon_sym_DOLLARendfor] = ACTIONS(1387), + [anon_sym_DOLLARforeach] = ACTIONS(1387), + [anon_sym_DOLLARalignof] = ACTIONS(1387), + [anon_sym_DOLLARextnameof] = ACTIONS(1387), + [anon_sym_DOLLARnameof] = ACTIONS(1387), + [anon_sym_DOLLARoffsetof] = ACTIONS(1387), + [anon_sym_DOLLARqnameof] = ACTIONS(1387), + [anon_sym_DOLLARvaconst] = ACTIONS(1387), + [anon_sym_DOLLARvaarg] = ACTIONS(1387), + [anon_sym_DOLLARvaref] = ACTIONS(1387), + [anon_sym_DOLLARvaexpr] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_DOLLARvacount] = ACTIONS(1387), + [anon_sym_DOLLARappend] = ACTIONS(1387), + [anon_sym_DOLLARconcat] = ACTIONS(1387), + [anon_sym_DOLLAReval] = ACTIONS(1387), + [anon_sym_DOLLARis_const] = ACTIONS(1387), + [anon_sym_DOLLARsizeof] = ACTIONS(1387), + [anon_sym_DOLLARstringify] = ACTIONS(1387), + [anon_sym_DOLLARand] = ACTIONS(1387), + [anon_sym_DOLLARdefined] = ACTIONS(1387), + [anon_sym_DOLLARembed] = ACTIONS(1387), + [anon_sym_DOLLARor] = ACTIONS(1387), + [anon_sym_DOLLARfeature] = ACTIONS(1387), + [anon_sym_DOLLARassignable] = ACTIONS(1387), + [anon_sym_BANG] = ACTIONS(1389), + [anon_sym_TILDE] = ACTIONS(1389), + [anon_sym_PLUS_PLUS] = ACTIONS(1389), + [anon_sym_DASH_DASH] = ACTIONS(1389), + [anon_sym_typeid] = ACTIONS(1387), + [anon_sym_LBRACE_PIPE] = ACTIONS(1389), + [anon_sym_void] = ACTIONS(1387), + [anon_sym_bool] = ACTIONS(1387), + [anon_sym_char] = ACTIONS(1387), + [anon_sym_ichar] = ACTIONS(1387), + [anon_sym_short] = ACTIONS(1387), + [anon_sym_ushort] = ACTIONS(1387), + [anon_sym_uint] = ACTIONS(1387), + [anon_sym_long] = ACTIONS(1387), + [anon_sym_ulong] = ACTIONS(1387), + [anon_sym_int128] = ACTIONS(1387), + [anon_sym_uint128] = ACTIONS(1387), + [anon_sym_float] = ACTIONS(1387), + [anon_sym_double] = ACTIONS(1387), + [anon_sym_float16] = ACTIONS(1387), + [anon_sym_bfloat16] = ACTIONS(1387), + [anon_sym_float128] = ACTIONS(1387), + [anon_sym_iptr] = ACTIONS(1387), + [anon_sym_uptr] = ACTIONS(1387), + [anon_sym_isz] = ACTIONS(1387), + [anon_sym_usz] = ACTIONS(1387), + [anon_sym_anyfault] = ACTIONS(1387), + [anon_sym_any] = ACTIONS(1387), + [anon_sym_DOLLARtypeof] = ACTIONS(1387), + [anon_sym_DOLLARtypefrom] = ACTIONS(1387), + [anon_sym_DOLLARvatype] = ACTIONS(1387), + [anon_sym_DOLLARevaltype] = ACTIONS(1387), + [sym_real_literal] = ACTIONS(1389), }, [621] = { [sym_line_comment] = STATE(621), [sym_doc_comment] = STATE(621), [sym_block_comment] = STATE(621), - [sym_ident] = ACTIONS(1376), - [sym_integer_literal] = ACTIONS(1378), - [anon_sym_SQUOTE] = ACTIONS(1378), - [anon_sym_DQUOTE] = ACTIONS(1378), - [anon_sym_BQUOTE] = ACTIONS(1378), - [sym_bytes_literal] = ACTIONS(1378), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1376), - [sym_at_ident] = ACTIONS(1378), - [sym_hash_ident] = ACTIONS(1378), - [sym_type_ident] = ACTIONS(1378), - [sym_ct_type_ident] = ACTIONS(1378), - [sym_const_ident] = ACTIONS(1376), - [sym_builtin] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_AMP] = ACTIONS(1376), - [anon_sym_static] = ACTIONS(1376), - [anon_sym_tlocal] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1378), - [anon_sym_fn] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_var] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_defer] = ACTIONS(1376), - [anon_sym_assert] = ACTIONS(1376), - [anon_sym_nextcase] = ACTIONS(1376), - [anon_sym_switch] = ACTIONS(1376), - [anon_sym_AMP_AMP] = ACTIONS(1378), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_else] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_foreach] = ACTIONS(1376), - [anon_sym_foreach_r] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_int] = ACTIONS(1376), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_asm] = ACTIONS(1376), - [anon_sym_DOLLARassert] = ACTIONS(1376), - [anon_sym_DOLLARerror] = ACTIONS(1376), - [anon_sym_DOLLARecho] = ACTIONS(1376), - [anon_sym_DOLLARif] = ACTIONS(1376), - [anon_sym_DOLLARswitch] = ACTIONS(1376), - [anon_sym_DOLLARfor] = ACTIONS(1376), - [anon_sym_DOLLARforeach] = ACTIONS(1376), - [anon_sym_DOLLARendforeach] = ACTIONS(1376), - [anon_sym_DOLLARalignof] = ACTIONS(1376), - [anon_sym_DOLLARextnameof] = ACTIONS(1376), - [anon_sym_DOLLARnameof] = ACTIONS(1376), - [anon_sym_DOLLARoffsetof] = ACTIONS(1376), - [anon_sym_DOLLARqnameof] = ACTIONS(1376), - [anon_sym_DOLLARvaconst] = ACTIONS(1376), - [anon_sym_DOLLARvaarg] = ACTIONS(1376), - [anon_sym_DOLLARvaref] = ACTIONS(1376), - [anon_sym_DOLLARvaexpr] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_DOLLARvacount] = ACTIONS(1376), - [anon_sym_DOLLARappend] = ACTIONS(1376), - [anon_sym_DOLLARconcat] = ACTIONS(1376), - [anon_sym_DOLLAReval] = ACTIONS(1376), - [anon_sym_DOLLARis_const] = ACTIONS(1376), - [anon_sym_DOLLARsizeof] = ACTIONS(1376), - [anon_sym_DOLLARstringify] = ACTIONS(1376), - [anon_sym_DOLLARand] = ACTIONS(1376), - [anon_sym_DOLLARdefined] = ACTIONS(1376), - [anon_sym_DOLLARembed] = ACTIONS(1376), - [anon_sym_DOLLARor] = ACTIONS(1376), - [anon_sym_DOLLARfeature] = ACTIONS(1376), - [anon_sym_DOLLARassignable] = ACTIONS(1376), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_PLUS_PLUS] = ACTIONS(1378), - [anon_sym_DASH_DASH] = ACTIONS(1378), - [anon_sym_typeid] = ACTIONS(1376), - [anon_sym_LBRACE_PIPE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1376), - [anon_sym_bool] = ACTIONS(1376), - [anon_sym_char] = ACTIONS(1376), - [anon_sym_ichar] = ACTIONS(1376), - [anon_sym_short] = ACTIONS(1376), - [anon_sym_ushort] = ACTIONS(1376), - [anon_sym_uint] = ACTIONS(1376), - [anon_sym_long] = ACTIONS(1376), - [anon_sym_ulong] = ACTIONS(1376), - [anon_sym_int128] = ACTIONS(1376), - [anon_sym_uint128] = ACTIONS(1376), - [anon_sym_float] = ACTIONS(1376), - [anon_sym_double] = ACTIONS(1376), - [anon_sym_float16] = ACTIONS(1376), - [anon_sym_bfloat16] = ACTIONS(1376), - [anon_sym_float128] = ACTIONS(1376), - [anon_sym_iptr] = ACTIONS(1376), - [anon_sym_uptr] = ACTIONS(1376), - [anon_sym_isz] = ACTIONS(1376), - [anon_sym_usz] = ACTIONS(1376), - [anon_sym_anyfault] = ACTIONS(1376), - [anon_sym_any] = ACTIONS(1376), - [anon_sym_DOLLARtypeof] = ACTIONS(1376), - [anon_sym_DOLLARtypefrom] = ACTIONS(1376), - [anon_sym_DOLLARvatype] = ACTIONS(1376), - [anon_sym_DOLLARevaltype] = ACTIONS(1376), - [sym_real_literal] = ACTIONS(1378), + [sym_ident] = ACTIONS(1391), + [sym_integer_literal] = ACTIONS(1393), + [anon_sym_SQUOTE] = ACTIONS(1393), + [anon_sym_DQUOTE] = ACTIONS(1393), + [anon_sym_BQUOTE] = ACTIONS(1393), + [sym_bytes_literal] = ACTIONS(1393), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1391), + [sym_at_ident] = ACTIONS(1393), + [sym_hash_ident] = ACTIONS(1393), + [sym_type_ident] = ACTIONS(1393), + [sym_ct_type_ident] = ACTIONS(1393), + [sym_const_ident] = ACTIONS(1391), + [sym_builtin] = ACTIONS(1393), + [anon_sym_LPAREN] = ACTIONS(1393), + [anon_sym_AMP] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1391), + [anon_sym_tlocal] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1393), + [anon_sym_fn] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_var] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_defer] = ACTIONS(1391), + [anon_sym_assert] = ACTIONS(1391), + [anon_sym_nextcase] = ACTIONS(1391), + [anon_sym_switch] = ACTIONS(1391), + [anon_sym_AMP_AMP] = ACTIONS(1393), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_foreach] = ACTIONS(1391), + [anon_sym_foreach_r] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_int] = ACTIONS(1391), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1393), + [anon_sym_asm] = ACTIONS(1391), + [anon_sym_DOLLARassert] = ACTIONS(1391), + [anon_sym_DOLLARerror] = ACTIONS(1391), + [anon_sym_DOLLARecho] = ACTIONS(1391), + [anon_sym_DOLLARif] = ACTIONS(1391), + [anon_sym_DOLLARswitch] = ACTIONS(1391), + [anon_sym_DOLLARfor] = ACTIONS(1391), + [anon_sym_DOLLARendfor] = ACTIONS(1391), + [anon_sym_DOLLARforeach] = ACTIONS(1391), + [anon_sym_DOLLARalignof] = ACTIONS(1391), + [anon_sym_DOLLARextnameof] = ACTIONS(1391), + [anon_sym_DOLLARnameof] = ACTIONS(1391), + [anon_sym_DOLLARoffsetof] = ACTIONS(1391), + [anon_sym_DOLLARqnameof] = ACTIONS(1391), + [anon_sym_DOLLARvaconst] = ACTIONS(1391), + [anon_sym_DOLLARvaarg] = ACTIONS(1391), + [anon_sym_DOLLARvaref] = ACTIONS(1391), + [anon_sym_DOLLARvaexpr] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_DOLLARvacount] = ACTIONS(1391), + [anon_sym_DOLLARappend] = ACTIONS(1391), + [anon_sym_DOLLARconcat] = ACTIONS(1391), + [anon_sym_DOLLAReval] = ACTIONS(1391), + [anon_sym_DOLLARis_const] = ACTIONS(1391), + [anon_sym_DOLLARsizeof] = ACTIONS(1391), + [anon_sym_DOLLARstringify] = ACTIONS(1391), + [anon_sym_DOLLARand] = ACTIONS(1391), + [anon_sym_DOLLARdefined] = ACTIONS(1391), + [anon_sym_DOLLARembed] = ACTIONS(1391), + [anon_sym_DOLLARor] = ACTIONS(1391), + [anon_sym_DOLLARfeature] = ACTIONS(1391), + [anon_sym_DOLLARassignable] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1393), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_PLUS_PLUS] = ACTIONS(1393), + [anon_sym_DASH_DASH] = ACTIONS(1393), + [anon_sym_typeid] = ACTIONS(1391), + [anon_sym_LBRACE_PIPE] = ACTIONS(1393), + [anon_sym_void] = ACTIONS(1391), + [anon_sym_bool] = ACTIONS(1391), + [anon_sym_char] = ACTIONS(1391), + [anon_sym_ichar] = ACTIONS(1391), + [anon_sym_short] = ACTIONS(1391), + [anon_sym_ushort] = ACTIONS(1391), + [anon_sym_uint] = ACTIONS(1391), + [anon_sym_long] = ACTIONS(1391), + [anon_sym_ulong] = ACTIONS(1391), + [anon_sym_int128] = ACTIONS(1391), + [anon_sym_uint128] = ACTIONS(1391), + [anon_sym_float] = ACTIONS(1391), + [anon_sym_double] = ACTIONS(1391), + [anon_sym_float16] = ACTIONS(1391), + [anon_sym_bfloat16] = ACTIONS(1391), + [anon_sym_float128] = ACTIONS(1391), + [anon_sym_iptr] = ACTIONS(1391), + [anon_sym_uptr] = ACTIONS(1391), + [anon_sym_isz] = ACTIONS(1391), + [anon_sym_usz] = ACTIONS(1391), + [anon_sym_anyfault] = ACTIONS(1391), + [anon_sym_any] = ACTIONS(1391), + [anon_sym_DOLLARtypeof] = ACTIONS(1391), + [anon_sym_DOLLARtypefrom] = ACTIONS(1391), + [anon_sym_DOLLARvatype] = ACTIONS(1391), + [anon_sym_DOLLARevaltype] = ACTIONS(1391), + [sym_real_literal] = ACTIONS(1393), }, [622] = { [sym_line_comment] = STATE(622), [sym_doc_comment] = STATE(622), [sym_block_comment] = STATE(622), - [sym_ident] = ACTIONS(1418), - [sym_integer_literal] = ACTIONS(1420), - [anon_sym_SQUOTE] = ACTIONS(1420), - [anon_sym_DQUOTE] = ACTIONS(1420), - [anon_sym_BQUOTE] = ACTIONS(1420), - [sym_bytes_literal] = ACTIONS(1420), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1418), - [sym_at_ident] = ACTIONS(1420), - [sym_hash_ident] = ACTIONS(1420), - [sym_type_ident] = ACTIONS(1420), - [sym_ct_type_ident] = ACTIONS(1420), - [sym_const_ident] = ACTIONS(1418), - [sym_builtin] = ACTIONS(1420), - [anon_sym_LPAREN] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_static] = ACTIONS(1418), - [anon_sym_tlocal] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym_fn] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_const] = ACTIONS(1418), - [anon_sym_var] = ACTIONS(1418), - [anon_sym_return] = ACTIONS(1418), - [anon_sym_continue] = ACTIONS(1418), - [anon_sym_break] = ACTIONS(1418), - [anon_sym_defer] = ACTIONS(1418), - [anon_sym_assert] = ACTIONS(1418), - [anon_sym_nextcase] = ACTIONS(1418), - [anon_sym_switch] = ACTIONS(1418), - [anon_sym_AMP_AMP] = ACTIONS(1420), - [anon_sym_if] = ACTIONS(1418), - [anon_sym_for] = ACTIONS(1418), - [anon_sym_foreach] = ACTIONS(1418), - [anon_sym_foreach_r] = ACTIONS(1418), - [anon_sym_while] = ACTIONS(1418), - [anon_sym_do] = ACTIONS(1418), - [anon_sym_int] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_asm] = ACTIONS(1418), - [anon_sym_DOLLARassert] = ACTIONS(1418), - [anon_sym_DOLLARerror] = ACTIONS(1418), - [anon_sym_DOLLARecho] = ACTIONS(1418), - [anon_sym_DOLLARif] = ACTIONS(1418), - [anon_sym_DOLLARendif] = ACTIONS(1418), - [anon_sym_DOLLARelse] = ACTIONS(1418), - [anon_sym_DOLLARswitch] = ACTIONS(1418), - [anon_sym_DOLLARfor] = ACTIONS(1418), - [anon_sym_DOLLARforeach] = ACTIONS(1418), - [anon_sym_DOLLARalignof] = ACTIONS(1418), - [anon_sym_DOLLARextnameof] = ACTIONS(1418), - [anon_sym_DOLLARnameof] = ACTIONS(1418), - [anon_sym_DOLLARoffsetof] = ACTIONS(1418), - [anon_sym_DOLLARqnameof] = ACTIONS(1418), - [anon_sym_DOLLARvaconst] = ACTIONS(1418), - [anon_sym_DOLLARvaarg] = ACTIONS(1418), - [anon_sym_DOLLARvaref] = ACTIONS(1418), - [anon_sym_DOLLARvaexpr] = ACTIONS(1418), - [anon_sym_true] = ACTIONS(1418), - [anon_sym_false] = ACTIONS(1418), - [anon_sym_null] = ACTIONS(1418), - [anon_sym_DOLLARvacount] = ACTIONS(1418), - [anon_sym_DOLLARappend] = ACTIONS(1418), - [anon_sym_DOLLARconcat] = ACTIONS(1418), - [anon_sym_DOLLAReval] = ACTIONS(1418), - [anon_sym_DOLLARis_const] = ACTIONS(1418), - [anon_sym_DOLLARsizeof] = ACTIONS(1418), - [anon_sym_DOLLARstringify] = ACTIONS(1418), - [anon_sym_DOLLARand] = ACTIONS(1418), - [anon_sym_DOLLARdefined] = ACTIONS(1418), - [anon_sym_DOLLARembed] = ACTIONS(1418), - [anon_sym_DOLLARor] = ACTIONS(1418), - [anon_sym_DOLLARfeature] = ACTIONS(1418), - [anon_sym_DOLLARassignable] = ACTIONS(1418), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_TILDE] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_typeid] = ACTIONS(1418), - [anon_sym_LBRACE_PIPE] = ACTIONS(1420), - [anon_sym_void] = ACTIONS(1418), - [anon_sym_bool] = ACTIONS(1418), - [anon_sym_char] = ACTIONS(1418), - [anon_sym_ichar] = ACTIONS(1418), - [anon_sym_short] = ACTIONS(1418), - [anon_sym_ushort] = ACTIONS(1418), - [anon_sym_uint] = ACTIONS(1418), - [anon_sym_long] = ACTIONS(1418), - [anon_sym_ulong] = ACTIONS(1418), - [anon_sym_int128] = ACTIONS(1418), - [anon_sym_uint128] = ACTIONS(1418), - [anon_sym_float] = ACTIONS(1418), - [anon_sym_double] = ACTIONS(1418), - [anon_sym_float16] = ACTIONS(1418), - [anon_sym_bfloat16] = ACTIONS(1418), - [anon_sym_float128] = ACTIONS(1418), - [anon_sym_iptr] = ACTIONS(1418), - [anon_sym_uptr] = ACTIONS(1418), - [anon_sym_isz] = ACTIONS(1418), - [anon_sym_usz] = ACTIONS(1418), - [anon_sym_anyfault] = ACTIONS(1418), - [anon_sym_any] = ACTIONS(1418), - [anon_sym_DOLLARtypeof] = ACTIONS(1418), - [anon_sym_DOLLARtypefrom] = ACTIONS(1418), - [anon_sym_DOLLARvatype] = ACTIONS(1418), - [anon_sym_DOLLARevaltype] = ACTIONS(1418), - [sym_real_literal] = ACTIONS(1420), + [sym_ident] = ACTIONS(1395), + [sym_integer_literal] = ACTIONS(1397), + [anon_sym_SQUOTE] = ACTIONS(1397), + [anon_sym_DQUOTE] = ACTIONS(1397), + [anon_sym_BQUOTE] = ACTIONS(1397), + [sym_bytes_literal] = ACTIONS(1397), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1395), + [sym_at_ident] = ACTIONS(1397), + [sym_hash_ident] = ACTIONS(1397), + [sym_type_ident] = ACTIONS(1397), + [sym_ct_type_ident] = ACTIONS(1397), + [sym_const_ident] = ACTIONS(1395), + [sym_builtin] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_AMP] = ACTIONS(1395), + [anon_sym_static] = ACTIONS(1395), + [anon_sym_tlocal] = ACTIONS(1395), + [anon_sym_SEMI] = ACTIONS(1397), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_const] = ACTIONS(1395), + [anon_sym_var] = ACTIONS(1395), + [anon_sym_return] = ACTIONS(1395), + [anon_sym_continue] = ACTIONS(1395), + [anon_sym_break] = ACTIONS(1395), + [anon_sym_defer] = ACTIONS(1395), + [anon_sym_assert] = ACTIONS(1395), + [anon_sym_nextcase] = ACTIONS(1395), + [anon_sym_switch] = ACTIONS(1395), + [anon_sym_AMP_AMP] = ACTIONS(1397), + [anon_sym_if] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1395), + [anon_sym_foreach] = ACTIONS(1395), + [anon_sym_foreach_r] = ACTIONS(1395), + [anon_sym_while] = ACTIONS(1395), + [anon_sym_do] = ACTIONS(1395), + [anon_sym_int] = ACTIONS(1395), + [anon_sym_PLUS] = ACTIONS(1395), + [anon_sym_DASH] = ACTIONS(1395), + [anon_sym_STAR] = ACTIONS(1397), + [anon_sym_asm] = ACTIONS(1395), + [anon_sym_DOLLARassert] = ACTIONS(1395), + [anon_sym_DOLLARerror] = ACTIONS(1395), + [anon_sym_DOLLARecho] = ACTIONS(1395), + [anon_sym_DOLLARif] = ACTIONS(1395), + [anon_sym_DOLLARswitch] = ACTIONS(1395), + [anon_sym_DOLLARfor] = ACTIONS(1395), + [anon_sym_DOLLARendfor] = ACTIONS(1395), + [anon_sym_DOLLARforeach] = ACTIONS(1395), + [anon_sym_DOLLARalignof] = ACTIONS(1395), + [anon_sym_DOLLARextnameof] = ACTIONS(1395), + [anon_sym_DOLLARnameof] = ACTIONS(1395), + [anon_sym_DOLLARoffsetof] = ACTIONS(1395), + [anon_sym_DOLLARqnameof] = ACTIONS(1395), + [anon_sym_DOLLARvaconst] = ACTIONS(1395), + [anon_sym_DOLLARvaarg] = ACTIONS(1395), + [anon_sym_DOLLARvaref] = ACTIONS(1395), + [anon_sym_DOLLARvaexpr] = ACTIONS(1395), + [anon_sym_true] = ACTIONS(1395), + [anon_sym_false] = ACTIONS(1395), + [anon_sym_null] = ACTIONS(1395), + [anon_sym_DOLLARvacount] = ACTIONS(1395), + [anon_sym_DOLLARappend] = ACTIONS(1395), + [anon_sym_DOLLARconcat] = ACTIONS(1395), + [anon_sym_DOLLAReval] = ACTIONS(1395), + [anon_sym_DOLLARis_const] = ACTIONS(1395), + [anon_sym_DOLLARsizeof] = ACTIONS(1395), + [anon_sym_DOLLARstringify] = ACTIONS(1395), + [anon_sym_DOLLARand] = ACTIONS(1395), + [anon_sym_DOLLARdefined] = ACTIONS(1395), + [anon_sym_DOLLARembed] = ACTIONS(1395), + [anon_sym_DOLLARor] = ACTIONS(1395), + [anon_sym_DOLLARfeature] = ACTIONS(1395), + [anon_sym_DOLLARassignable] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_PLUS_PLUS] = ACTIONS(1397), + [anon_sym_DASH_DASH] = ACTIONS(1397), + [anon_sym_typeid] = ACTIONS(1395), + [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [anon_sym_void] = ACTIONS(1395), + [anon_sym_bool] = ACTIONS(1395), + [anon_sym_char] = ACTIONS(1395), + [anon_sym_ichar] = ACTIONS(1395), + [anon_sym_short] = ACTIONS(1395), + [anon_sym_ushort] = ACTIONS(1395), + [anon_sym_uint] = ACTIONS(1395), + [anon_sym_long] = ACTIONS(1395), + [anon_sym_ulong] = ACTIONS(1395), + [anon_sym_int128] = ACTIONS(1395), + [anon_sym_uint128] = ACTIONS(1395), + [anon_sym_float] = ACTIONS(1395), + [anon_sym_double] = ACTIONS(1395), + [anon_sym_float16] = ACTIONS(1395), + [anon_sym_bfloat16] = ACTIONS(1395), + [anon_sym_float128] = ACTIONS(1395), + [anon_sym_iptr] = ACTIONS(1395), + [anon_sym_uptr] = ACTIONS(1395), + [anon_sym_isz] = ACTIONS(1395), + [anon_sym_usz] = ACTIONS(1395), + [anon_sym_anyfault] = ACTIONS(1395), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_DOLLARtypeof] = ACTIONS(1395), + [anon_sym_DOLLARtypefrom] = ACTIONS(1395), + [anon_sym_DOLLARvatype] = ACTIONS(1395), + [anon_sym_DOLLARevaltype] = ACTIONS(1395), + [sym_real_literal] = ACTIONS(1397), }, [623] = { [sym_line_comment] = STATE(623), [sym_doc_comment] = STATE(623), [sym_block_comment] = STATE(623), - [sym_ident] = ACTIONS(1414), - [sym_integer_literal] = ACTIONS(1416), - [anon_sym_SQUOTE] = ACTIONS(1416), - [anon_sym_DQUOTE] = ACTIONS(1416), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_bytes_literal] = ACTIONS(1416), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1414), - [sym_at_ident] = ACTIONS(1416), - [sym_hash_ident] = ACTIONS(1416), - [sym_type_ident] = ACTIONS(1416), - [sym_ct_type_ident] = ACTIONS(1416), - [sym_const_ident] = ACTIONS(1414), - [sym_builtin] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(1416), - [anon_sym_AMP] = ACTIONS(1414), - [anon_sym_static] = ACTIONS(1414), - [anon_sym_tlocal] = ACTIONS(1414), - [anon_sym_SEMI] = ACTIONS(1416), - [anon_sym_fn] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1414), - [anon_sym_const] = ACTIONS(1414), - [anon_sym_var] = ACTIONS(1414), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_continue] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1414), - [anon_sym_defer] = ACTIONS(1414), - [anon_sym_assert] = ACTIONS(1414), - [anon_sym_nextcase] = ACTIONS(1414), - [anon_sym_switch] = ACTIONS(1414), - [anon_sym_AMP_AMP] = ACTIONS(1416), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_for] = ACTIONS(1414), - [anon_sym_foreach] = ACTIONS(1414), - [anon_sym_foreach_r] = ACTIONS(1414), - [anon_sym_while] = ACTIONS(1414), - [anon_sym_do] = ACTIONS(1414), - [anon_sym_int] = ACTIONS(1414), - [anon_sym_PLUS] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_STAR] = ACTIONS(1416), - [anon_sym_asm] = ACTIONS(1414), - [anon_sym_DOLLARassert] = ACTIONS(1414), - [anon_sym_DOLLARerror] = ACTIONS(1414), - [anon_sym_DOLLARecho] = ACTIONS(1414), - [anon_sym_DOLLARif] = ACTIONS(1414), - [anon_sym_DOLLARendif] = ACTIONS(1414), - [anon_sym_DOLLARelse] = ACTIONS(1414), - [anon_sym_DOLLARswitch] = ACTIONS(1414), - [anon_sym_DOLLARfor] = ACTIONS(1414), - [anon_sym_DOLLARforeach] = ACTIONS(1414), - [anon_sym_DOLLARalignof] = ACTIONS(1414), - [anon_sym_DOLLARextnameof] = ACTIONS(1414), - [anon_sym_DOLLARnameof] = ACTIONS(1414), - [anon_sym_DOLLARoffsetof] = ACTIONS(1414), - [anon_sym_DOLLARqnameof] = ACTIONS(1414), - [anon_sym_DOLLARvaconst] = ACTIONS(1414), - [anon_sym_DOLLARvaarg] = ACTIONS(1414), - [anon_sym_DOLLARvaref] = ACTIONS(1414), - [anon_sym_DOLLARvaexpr] = ACTIONS(1414), - [anon_sym_true] = ACTIONS(1414), - [anon_sym_false] = ACTIONS(1414), - [anon_sym_null] = ACTIONS(1414), - [anon_sym_DOLLARvacount] = ACTIONS(1414), - [anon_sym_DOLLARappend] = ACTIONS(1414), - [anon_sym_DOLLARconcat] = ACTIONS(1414), - [anon_sym_DOLLAReval] = ACTIONS(1414), - [anon_sym_DOLLARis_const] = ACTIONS(1414), - [anon_sym_DOLLARsizeof] = ACTIONS(1414), - [anon_sym_DOLLARstringify] = ACTIONS(1414), - [anon_sym_DOLLARand] = ACTIONS(1414), - [anon_sym_DOLLARdefined] = ACTIONS(1414), - [anon_sym_DOLLARembed] = ACTIONS(1414), - [anon_sym_DOLLARor] = ACTIONS(1414), - [anon_sym_DOLLARfeature] = ACTIONS(1414), - [anon_sym_DOLLARassignable] = ACTIONS(1414), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1416), - [anon_sym_DASH_DASH] = ACTIONS(1416), - [anon_sym_typeid] = ACTIONS(1414), - [anon_sym_LBRACE_PIPE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1414), - [anon_sym_bool] = ACTIONS(1414), - [anon_sym_char] = ACTIONS(1414), - [anon_sym_ichar] = ACTIONS(1414), - [anon_sym_short] = ACTIONS(1414), - [anon_sym_ushort] = ACTIONS(1414), - [anon_sym_uint] = ACTIONS(1414), - [anon_sym_long] = ACTIONS(1414), - [anon_sym_ulong] = ACTIONS(1414), - [anon_sym_int128] = ACTIONS(1414), - [anon_sym_uint128] = ACTIONS(1414), - [anon_sym_float] = ACTIONS(1414), - [anon_sym_double] = ACTIONS(1414), - [anon_sym_float16] = ACTIONS(1414), - [anon_sym_bfloat16] = ACTIONS(1414), - [anon_sym_float128] = ACTIONS(1414), - [anon_sym_iptr] = ACTIONS(1414), - [anon_sym_uptr] = ACTIONS(1414), - [anon_sym_isz] = ACTIONS(1414), - [anon_sym_usz] = ACTIONS(1414), - [anon_sym_anyfault] = ACTIONS(1414), - [anon_sym_any] = ACTIONS(1414), - [anon_sym_DOLLARtypeof] = ACTIONS(1414), - [anon_sym_DOLLARtypefrom] = ACTIONS(1414), - [anon_sym_DOLLARvatype] = ACTIONS(1414), - [anon_sym_DOLLARevaltype] = ACTIONS(1414), - [sym_real_literal] = ACTIONS(1416), + [sym_ident] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(1405), + [anon_sym_SQUOTE] = ACTIONS(1405), + [anon_sym_DQUOTE] = ACTIONS(1405), + [anon_sym_BQUOTE] = ACTIONS(1405), + [sym_bytes_literal] = ACTIONS(1405), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1403), + [sym_at_ident] = ACTIONS(1405), + [sym_hash_ident] = ACTIONS(1405), + [sym_type_ident] = ACTIONS(1405), + [sym_ct_type_ident] = ACTIONS(1405), + [sym_const_ident] = ACTIONS(1403), + [sym_builtin] = ACTIONS(1405), + [anon_sym_LPAREN] = ACTIONS(1405), + [anon_sym_AMP] = ACTIONS(1403), + [anon_sym_static] = ACTIONS(1403), + [anon_sym_tlocal] = ACTIONS(1403), + [anon_sym_SEMI] = ACTIONS(1405), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_const] = ACTIONS(1403), + [anon_sym_var] = ACTIONS(1403), + [anon_sym_return] = ACTIONS(1403), + [anon_sym_continue] = ACTIONS(1403), + [anon_sym_break] = ACTIONS(1403), + [anon_sym_defer] = ACTIONS(1403), + [anon_sym_assert] = ACTIONS(1403), + [anon_sym_nextcase] = ACTIONS(1403), + [anon_sym_switch] = ACTIONS(1403), + [anon_sym_AMP_AMP] = ACTIONS(1405), + [anon_sym_if] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1403), + [anon_sym_foreach] = ACTIONS(1403), + [anon_sym_foreach_r] = ACTIONS(1403), + [anon_sym_while] = ACTIONS(1403), + [anon_sym_do] = ACTIONS(1403), + [anon_sym_int] = ACTIONS(1403), + [anon_sym_PLUS] = ACTIONS(1403), + [anon_sym_DASH] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(1405), + [anon_sym_asm] = ACTIONS(1403), + [anon_sym_DOLLARassert] = ACTIONS(1403), + [anon_sym_DOLLARerror] = ACTIONS(1403), + [anon_sym_DOLLARecho] = ACTIONS(1403), + [anon_sym_DOLLARif] = ACTIONS(1403), + [anon_sym_DOLLARswitch] = ACTIONS(1403), + [anon_sym_DOLLARfor] = ACTIONS(1403), + [anon_sym_DOLLARendfor] = ACTIONS(1403), + [anon_sym_DOLLARforeach] = ACTIONS(1403), + [anon_sym_DOLLARalignof] = ACTIONS(1403), + [anon_sym_DOLLARextnameof] = ACTIONS(1403), + [anon_sym_DOLLARnameof] = ACTIONS(1403), + [anon_sym_DOLLARoffsetof] = ACTIONS(1403), + [anon_sym_DOLLARqnameof] = ACTIONS(1403), + [anon_sym_DOLLARvaconst] = ACTIONS(1403), + [anon_sym_DOLLARvaarg] = ACTIONS(1403), + [anon_sym_DOLLARvaref] = ACTIONS(1403), + [anon_sym_DOLLARvaexpr] = ACTIONS(1403), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), + [anon_sym_null] = ACTIONS(1403), + [anon_sym_DOLLARvacount] = ACTIONS(1403), + [anon_sym_DOLLARappend] = ACTIONS(1403), + [anon_sym_DOLLARconcat] = ACTIONS(1403), + [anon_sym_DOLLAReval] = ACTIONS(1403), + [anon_sym_DOLLARis_const] = ACTIONS(1403), + [anon_sym_DOLLARsizeof] = ACTIONS(1403), + [anon_sym_DOLLARstringify] = ACTIONS(1403), + [anon_sym_DOLLARand] = ACTIONS(1403), + [anon_sym_DOLLARdefined] = ACTIONS(1403), + [anon_sym_DOLLARembed] = ACTIONS(1403), + [anon_sym_DOLLARor] = ACTIONS(1403), + [anon_sym_DOLLARfeature] = ACTIONS(1403), + [anon_sym_DOLLARassignable] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1405), + [anon_sym_PLUS_PLUS] = ACTIONS(1405), + [anon_sym_DASH_DASH] = ACTIONS(1405), + [anon_sym_typeid] = ACTIONS(1403), + [anon_sym_LBRACE_PIPE] = ACTIONS(1405), + [anon_sym_void] = ACTIONS(1403), + [anon_sym_bool] = ACTIONS(1403), + [anon_sym_char] = ACTIONS(1403), + [anon_sym_ichar] = ACTIONS(1403), + [anon_sym_short] = ACTIONS(1403), + [anon_sym_ushort] = ACTIONS(1403), + [anon_sym_uint] = ACTIONS(1403), + [anon_sym_long] = ACTIONS(1403), + [anon_sym_ulong] = ACTIONS(1403), + [anon_sym_int128] = ACTIONS(1403), + [anon_sym_uint128] = ACTIONS(1403), + [anon_sym_float] = ACTIONS(1403), + [anon_sym_double] = ACTIONS(1403), + [anon_sym_float16] = ACTIONS(1403), + [anon_sym_bfloat16] = ACTIONS(1403), + [anon_sym_float128] = ACTIONS(1403), + [anon_sym_iptr] = ACTIONS(1403), + [anon_sym_uptr] = ACTIONS(1403), + [anon_sym_isz] = ACTIONS(1403), + [anon_sym_usz] = ACTIONS(1403), + [anon_sym_anyfault] = ACTIONS(1403), + [anon_sym_any] = ACTIONS(1403), + [anon_sym_DOLLARtypeof] = ACTIONS(1403), + [anon_sym_DOLLARtypefrom] = ACTIONS(1403), + [anon_sym_DOLLARvatype] = ACTIONS(1403), + [anon_sym_DOLLARevaltype] = ACTIONS(1403), + [sym_real_literal] = ACTIONS(1405), }, [624] = { [sym_line_comment] = STATE(624), [sym_doc_comment] = STATE(624), [sym_block_comment] = STATE(624), - [sym_ident] = ACTIONS(1402), - [sym_integer_literal] = ACTIONS(1404), - [anon_sym_SQUOTE] = ACTIONS(1404), - [anon_sym_DQUOTE] = ACTIONS(1404), - [anon_sym_BQUOTE] = ACTIONS(1404), - [sym_bytes_literal] = ACTIONS(1404), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1402), - [sym_at_ident] = ACTIONS(1404), - [sym_hash_ident] = ACTIONS(1404), - [sym_type_ident] = ACTIONS(1404), - [sym_ct_type_ident] = ACTIONS(1404), - [sym_const_ident] = ACTIONS(1402), - [sym_builtin] = ACTIONS(1404), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_AMP] = ACTIONS(1402), - [anon_sym_static] = ACTIONS(1402), - [anon_sym_tlocal] = ACTIONS(1402), - [anon_sym_SEMI] = ACTIONS(1404), - [anon_sym_fn] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1402), - [anon_sym_const] = ACTIONS(1402), - [anon_sym_var] = ACTIONS(1402), - [anon_sym_return] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [anon_sym_break] = ACTIONS(1402), - [anon_sym_defer] = ACTIONS(1402), - [anon_sym_assert] = ACTIONS(1402), - [anon_sym_nextcase] = ACTIONS(1402), - [anon_sym_switch] = ACTIONS(1402), - [anon_sym_AMP_AMP] = ACTIONS(1404), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_for] = ACTIONS(1402), - [anon_sym_foreach] = ACTIONS(1402), - [anon_sym_foreach_r] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1402), - [anon_sym_do] = ACTIONS(1402), - [anon_sym_int] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1402), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_STAR] = ACTIONS(1404), - [anon_sym_asm] = ACTIONS(1402), - [anon_sym_DOLLARassert] = ACTIONS(1402), - [anon_sym_DOLLARerror] = ACTIONS(1402), - [anon_sym_DOLLARecho] = ACTIONS(1402), - [anon_sym_DOLLARif] = ACTIONS(1402), - [anon_sym_DOLLARendif] = ACTIONS(1402), - [anon_sym_DOLLARelse] = ACTIONS(1402), - [anon_sym_DOLLARswitch] = ACTIONS(1402), - [anon_sym_DOLLARfor] = ACTIONS(1402), - [anon_sym_DOLLARforeach] = ACTIONS(1402), - [anon_sym_DOLLARalignof] = ACTIONS(1402), - [anon_sym_DOLLARextnameof] = ACTIONS(1402), - [anon_sym_DOLLARnameof] = ACTIONS(1402), - [anon_sym_DOLLARoffsetof] = ACTIONS(1402), - [anon_sym_DOLLARqnameof] = ACTIONS(1402), - [anon_sym_DOLLARvaconst] = ACTIONS(1402), - [anon_sym_DOLLARvaarg] = ACTIONS(1402), - [anon_sym_DOLLARvaref] = ACTIONS(1402), - [anon_sym_DOLLARvaexpr] = ACTIONS(1402), - [anon_sym_true] = ACTIONS(1402), - [anon_sym_false] = ACTIONS(1402), - [anon_sym_null] = ACTIONS(1402), - [anon_sym_DOLLARvacount] = ACTIONS(1402), - [anon_sym_DOLLARappend] = ACTIONS(1402), - [anon_sym_DOLLARconcat] = ACTIONS(1402), - [anon_sym_DOLLAReval] = ACTIONS(1402), - [anon_sym_DOLLARis_const] = ACTIONS(1402), - [anon_sym_DOLLARsizeof] = ACTIONS(1402), - [anon_sym_DOLLARstringify] = ACTIONS(1402), - [anon_sym_DOLLARand] = ACTIONS(1402), - [anon_sym_DOLLARdefined] = ACTIONS(1402), - [anon_sym_DOLLARembed] = ACTIONS(1402), - [anon_sym_DOLLARor] = ACTIONS(1402), - [anon_sym_DOLLARfeature] = ACTIONS(1402), - [anon_sym_DOLLARassignable] = ACTIONS(1402), - [anon_sym_BANG] = ACTIONS(1404), - [anon_sym_TILDE] = ACTIONS(1404), - [anon_sym_PLUS_PLUS] = ACTIONS(1404), - [anon_sym_DASH_DASH] = ACTIONS(1404), - [anon_sym_typeid] = ACTIONS(1402), - [anon_sym_LBRACE_PIPE] = ACTIONS(1404), - [anon_sym_void] = ACTIONS(1402), - [anon_sym_bool] = ACTIONS(1402), - [anon_sym_char] = ACTIONS(1402), - [anon_sym_ichar] = ACTIONS(1402), - [anon_sym_short] = ACTIONS(1402), - [anon_sym_ushort] = ACTIONS(1402), - [anon_sym_uint] = ACTIONS(1402), - [anon_sym_long] = ACTIONS(1402), - [anon_sym_ulong] = ACTIONS(1402), - [anon_sym_int128] = ACTIONS(1402), - [anon_sym_uint128] = ACTIONS(1402), - [anon_sym_float] = ACTIONS(1402), - [anon_sym_double] = ACTIONS(1402), - [anon_sym_float16] = ACTIONS(1402), - [anon_sym_bfloat16] = ACTIONS(1402), - [anon_sym_float128] = ACTIONS(1402), - [anon_sym_iptr] = ACTIONS(1402), - [anon_sym_uptr] = ACTIONS(1402), - [anon_sym_isz] = ACTIONS(1402), - [anon_sym_usz] = ACTIONS(1402), - [anon_sym_anyfault] = ACTIONS(1402), - [anon_sym_any] = ACTIONS(1402), - [anon_sym_DOLLARtypeof] = ACTIONS(1402), - [anon_sym_DOLLARtypefrom] = ACTIONS(1402), - [anon_sym_DOLLARvatype] = ACTIONS(1402), - [anon_sym_DOLLARevaltype] = ACTIONS(1402), - [sym_real_literal] = ACTIONS(1404), + [sym_ident] = ACTIONS(1407), + [sym_integer_literal] = ACTIONS(1409), + [anon_sym_SQUOTE] = ACTIONS(1409), + [anon_sym_DQUOTE] = ACTIONS(1409), + [anon_sym_BQUOTE] = ACTIONS(1409), + [sym_bytes_literal] = ACTIONS(1409), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1407), + [sym_at_ident] = ACTIONS(1409), + [sym_hash_ident] = ACTIONS(1409), + [sym_type_ident] = ACTIONS(1409), + [sym_ct_type_ident] = ACTIONS(1409), + [sym_const_ident] = ACTIONS(1407), + [sym_builtin] = ACTIONS(1409), + [anon_sym_LPAREN] = ACTIONS(1409), + [anon_sym_AMP] = ACTIONS(1407), + [anon_sym_static] = ACTIONS(1407), + [anon_sym_tlocal] = ACTIONS(1407), + [anon_sym_SEMI] = ACTIONS(1409), + [anon_sym_fn] = ACTIONS(1407), + [anon_sym_LBRACE] = ACTIONS(1407), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_var] = ACTIONS(1407), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_continue] = ACTIONS(1407), + [anon_sym_break] = ACTIONS(1407), + [anon_sym_defer] = ACTIONS(1407), + [anon_sym_assert] = ACTIONS(1407), + [anon_sym_nextcase] = ACTIONS(1407), + [anon_sym_switch] = ACTIONS(1407), + [anon_sym_AMP_AMP] = ACTIONS(1409), + [anon_sym_if] = ACTIONS(1407), + [anon_sym_for] = ACTIONS(1407), + [anon_sym_foreach] = ACTIONS(1407), + [anon_sym_foreach_r] = ACTIONS(1407), + [anon_sym_while] = ACTIONS(1407), + [anon_sym_do] = ACTIONS(1407), + [anon_sym_int] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1407), + [anon_sym_DASH] = ACTIONS(1407), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_asm] = ACTIONS(1407), + [anon_sym_DOLLARassert] = ACTIONS(1407), + [anon_sym_DOLLARerror] = ACTIONS(1407), + [anon_sym_DOLLARecho] = ACTIONS(1407), + [anon_sym_DOLLARif] = ACTIONS(1407), + [anon_sym_DOLLARswitch] = ACTIONS(1407), + [anon_sym_DOLLARfor] = ACTIONS(1407), + [anon_sym_DOLLARendfor] = ACTIONS(1407), + [anon_sym_DOLLARforeach] = ACTIONS(1407), + [anon_sym_DOLLARalignof] = ACTIONS(1407), + [anon_sym_DOLLARextnameof] = ACTIONS(1407), + [anon_sym_DOLLARnameof] = ACTIONS(1407), + [anon_sym_DOLLARoffsetof] = ACTIONS(1407), + [anon_sym_DOLLARqnameof] = ACTIONS(1407), + [anon_sym_DOLLARvaconst] = ACTIONS(1407), + [anon_sym_DOLLARvaarg] = ACTIONS(1407), + [anon_sym_DOLLARvaref] = ACTIONS(1407), + [anon_sym_DOLLARvaexpr] = ACTIONS(1407), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_null] = ACTIONS(1407), + [anon_sym_DOLLARvacount] = ACTIONS(1407), + [anon_sym_DOLLARappend] = ACTIONS(1407), + [anon_sym_DOLLARconcat] = ACTIONS(1407), + [anon_sym_DOLLAReval] = ACTIONS(1407), + [anon_sym_DOLLARis_const] = ACTIONS(1407), + [anon_sym_DOLLARsizeof] = ACTIONS(1407), + [anon_sym_DOLLARstringify] = ACTIONS(1407), + [anon_sym_DOLLARand] = ACTIONS(1407), + [anon_sym_DOLLARdefined] = ACTIONS(1407), + [anon_sym_DOLLARembed] = ACTIONS(1407), + [anon_sym_DOLLARor] = ACTIONS(1407), + [anon_sym_DOLLARfeature] = ACTIONS(1407), + [anon_sym_DOLLARassignable] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1409), + [anon_sym_TILDE] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1409), + [anon_sym_DASH_DASH] = ACTIONS(1409), + [anon_sym_typeid] = ACTIONS(1407), + [anon_sym_LBRACE_PIPE] = ACTIONS(1409), + [anon_sym_void] = ACTIONS(1407), + [anon_sym_bool] = ACTIONS(1407), + [anon_sym_char] = ACTIONS(1407), + [anon_sym_ichar] = ACTIONS(1407), + [anon_sym_short] = ACTIONS(1407), + [anon_sym_ushort] = ACTIONS(1407), + [anon_sym_uint] = ACTIONS(1407), + [anon_sym_long] = ACTIONS(1407), + [anon_sym_ulong] = ACTIONS(1407), + [anon_sym_int128] = ACTIONS(1407), + [anon_sym_uint128] = ACTIONS(1407), + [anon_sym_float] = ACTIONS(1407), + [anon_sym_double] = ACTIONS(1407), + [anon_sym_float16] = ACTIONS(1407), + [anon_sym_bfloat16] = ACTIONS(1407), + [anon_sym_float128] = ACTIONS(1407), + [anon_sym_iptr] = ACTIONS(1407), + [anon_sym_uptr] = ACTIONS(1407), + [anon_sym_isz] = ACTIONS(1407), + [anon_sym_usz] = ACTIONS(1407), + [anon_sym_anyfault] = ACTIONS(1407), + [anon_sym_any] = ACTIONS(1407), + [anon_sym_DOLLARtypeof] = ACTIONS(1407), + [anon_sym_DOLLARtypefrom] = ACTIONS(1407), + [anon_sym_DOLLARvatype] = ACTIONS(1407), + [anon_sym_DOLLARevaltype] = ACTIONS(1407), + [sym_real_literal] = ACTIONS(1409), }, [625] = { [sym_line_comment] = STATE(625), [sym_doc_comment] = STATE(625), [sym_block_comment] = STATE(625), - [sym_ident] = ACTIONS(1464), - [sym_integer_literal] = ACTIONS(1466), - [anon_sym_SQUOTE] = ACTIONS(1466), - [anon_sym_DQUOTE] = ACTIONS(1466), - [anon_sym_BQUOTE] = ACTIONS(1466), - [sym_bytes_literal] = ACTIONS(1466), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1464), - [sym_at_ident] = ACTIONS(1466), - [sym_hash_ident] = ACTIONS(1466), - [sym_type_ident] = ACTIONS(1466), - [sym_ct_type_ident] = ACTIONS(1466), - [sym_const_ident] = ACTIONS(1464), - [sym_builtin] = ACTIONS(1466), - [anon_sym_LPAREN] = ACTIONS(1466), - [anon_sym_AMP] = ACTIONS(1464), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_tlocal] = ACTIONS(1464), - [anon_sym_SEMI] = ACTIONS(1466), - [anon_sym_fn] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1464), - [anon_sym_const] = ACTIONS(1464), - [anon_sym_var] = ACTIONS(1464), - [anon_sym_return] = ACTIONS(1464), - [anon_sym_continue] = ACTIONS(1464), - [anon_sym_break] = ACTIONS(1464), - [anon_sym_defer] = ACTIONS(1464), - [anon_sym_assert] = ACTIONS(1464), - [anon_sym_nextcase] = ACTIONS(1464), - [anon_sym_switch] = ACTIONS(1464), - [anon_sym_AMP_AMP] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1464), - [anon_sym_for] = ACTIONS(1464), - [anon_sym_foreach] = ACTIONS(1464), - [anon_sym_foreach_r] = ACTIONS(1464), - [anon_sym_while] = ACTIONS(1464), - [anon_sym_do] = ACTIONS(1464), - [anon_sym_int] = ACTIONS(1464), - [anon_sym_PLUS] = ACTIONS(1464), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1466), - [anon_sym_asm] = ACTIONS(1464), - [anon_sym_DOLLARassert] = ACTIONS(1464), - [anon_sym_DOLLARerror] = ACTIONS(1464), - [anon_sym_DOLLARecho] = ACTIONS(1464), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_DOLLARswitch] = ACTIONS(1464), - [anon_sym_DOLLARfor] = ACTIONS(1464), - [anon_sym_DOLLARforeach] = ACTIONS(1464), - [anon_sym_DOLLARendforeach] = ACTIONS(1464), - [anon_sym_DOLLARalignof] = ACTIONS(1464), - [anon_sym_DOLLARextnameof] = ACTIONS(1464), - [anon_sym_DOLLARnameof] = ACTIONS(1464), - [anon_sym_DOLLARoffsetof] = ACTIONS(1464), - [anon_sym_DOLLARqnameof] = ACTIONS(1464), - [anon_sym_DOLLARvaconst] = ACTIONS(1464), - [anon_sym_DOLLARvaarg] = ACTIONS(1464), - [anon_sym_DOLLARvaref] = ACTIONS(1464), - [anon_sym_DOLLARvaexpr] = ACTIONS(1464), - [anon_sym_true] = ACTIONS(1464), - [anon_sym_false] = ACTIONS(1464), - [anon_sym_null] = ACTIONS(1464), - [anon_sym_DOLLARvacount] = ACTIONS(1464), - [anon_sym_DOLLARappend] = ACTIONS(1464), - [anon_sym_DOLLARconcat] = ACTIONS(1464), - [anon_sym_DOLLAReval] = ACTIONS(1464), - [anon_sym_DOLLARis_const] = ACTIONS(1464), - [anon_sym_DOLLARsizeof] = ACTIONS(1464), - [anon_sym_DOLLARstringify] = ACTIONS(1464), - [anon_sym_DOLLARand] = ACTIONS(1464), - [anon_sym_DOLLARdefined] = ACTIONS(1464), - [anon_sym_DOLLARembed] = ACTIONS(1464), - [anon_sym_DOLLARor] = ACTIONS(1464), - [anon_sym_DOLLARfeature] = ACTIONS(1464), - [anon_sym_DOLLARassignable] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_TILDE] = ACTIONS(1466), - [anon_sym_PLUS_PLUS] = ACTIONS(1466), - [anon_sym_DASH_DASH] = ACTIONS(1466), - [anon_sym_typeid] = ACTIONS(1464), - [anon_sym_LBRACE_PIPE] = ACTIONS(1466), - [anon_sym_void] = ACTIONS(1464), - [anon_sym_bool] = ACTIONS(1464), - [anon_sym_char] = ACTIONS(1464), - [anon_sym_ichar] = ACTIONS(1464), - [anon_sym_short] = ACTIONS(1464), - [anon_sym_ushort] = ACTIONS(1464), - [anon_sym_uint] = ACTIONS(1464), - [anon_sym_long] = ACTIONS(1464), - [anon_sym_ulong] = ACTIONS(1464), - [anon_sym_int128] = ACTIONS(1464), - [anon_sym_uint128] = ACTIONS(1464), - [anon_sym_float] = ACTIONS(1464), - [anon_sym_double] = ACTIONS(1464), - [anon_sym_float16] = ACTIONS(1464), - [anon_sym_bfloat16] = ACTIONS(1464), - [anon_sym_float128] = ACTIONS(1464), - [anon_sym_iptr] = ACTIONS(1464), - [anon_sym_uptr] = ACTIONS(1464), - [anon_sym_isz] = ACTIONS(1464), - [anon_sym_usz] = ACTIONS(1464), - [anon_sym_anyfault] = ACTIONS(1464), - [anon_sym_any] = ACTIONS(1464), - [anon_sym_DOLLARtypeof] = ACTIONS(1464), - [anon_sym_DOLLARtypefrom] = ACTIONS(1464), - [anon_sym_DOLLARvatype] = ACTIONS(1464), - [anon_sym_DOLLARevaltype] = ACTIONS(1464), - [sym_real_literal] = ACTIONS(1466), + [sym_ident] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1413), + [anon_sym_SQUOTE] = ACTIONS(1413), + [anon_sym_DQUOTE] = ACTIONS(1413), + [anon_sym_BQUOTE] = ACTIONS(1413), + [sym_bytes_literal] = ACTIONS(1413), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1411), + [sym_at_ident] = ACTIONS(1413), + [sym_hash_ident] = ACTIONS(1413), + [sym_type_ident] = ACTIONS(1413), + [sym_ct_type_ident] = ACTIONS(1413), + [sym_const_ident] = ACTIONS(1411), + [sym_builtin] = ACTIONS(1413), + [anon_sym_LPAREN] = ACTIONS(1413), + [anon_sym_AMP] = ACTIONS(1411), + [anon_sym_static] = ACTIONS(1411), + [anon_sym_tlocal] = ACTIONS(1411), + [anon_sym_SEMI] = ACTIONS(1413), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_LBRACE] = ACTIONS(1411), + [anon_sym_const] = ACTIONS(1411), + [anon_sym_var] = ACTIONS(1411), + [anon_sym_return] = ACTIONS(1411), + [anon_sym_continue] = ACTIONS(1411), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_defer] = ACTIONS(1411), + [anon_sym_assert] = ACTIONS(1411), + [anon_sym_nextcase] = ACTIONS(1411), + [anon_sym_switch] = ACTIONS(1411), + [anon_sym_AMP_AMP] = ACTIONS(1413), + [anon_sym_if] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1411), + [anon_sym_foreach] = ACTIONS(1411), + [anon_sym_foreach_r] = ACTIONS(1411), + [anon_sym_while] = ACTIONS(1411), + [anon_sym_do] = ACTIONS(1411), + [anon_sym_int] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_STAR] = ACTIONS(1413), + [anon_sym_asm] = ACTIONS(1411), + [anon_sym_DOLLARassert] = ACTIONS(1411), + [anon_sym_DOLLARerror] = ACTIONS(1411), + [anon_sym_DOLLARecho] = ACTIONS(1411), + [anon_sym_DOLLARif] = ACTIONS(1411), + [anon_sym_DOLLARswitch] = ACTIONS(1411), + [anon_sym_DOLLARfor] = ACTIONS(1411), + [anon_sym_DOLLARendfor] = ACTIONS(1411), + [anon_sym_DOLLARforeach] = ACTIONS(1411), + [anon_sym_DOLLARalignof] = ACTIONS(1411), + [anon_sym_DOLLARextnameof] = ACTIONS(1411), + [anon_sym_DOLLARnameof] = ACTIONS(1411), + [anon_sym_DOLLARoffsetof] = ACTIONS(1411), + [anon_sym_DOLLARqnameof] = ACTIONS(1411), + [anon_sym_DOLLARvaconst] = ACTIONS(1411), + [anon_sym_DOLLARvaarg] = ACTIONS(1411), + [anon_sym_DOLLARvaref] = ACTIONS(1411), + [anon_sym_DOLLARvaexpr] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1411), + [anon_sym_false] = ACTIONS(1411), + [anon_sym_null] = ACTIONS(1411), + [anon_sym_DOLLARvacount] = ACTIONS(1411), + [anon_sym_DOLLARappend] = ACTIONS(1411), + [anon_sym_DOLLARconcat] = ACTIONS(1411), + [anon_sym_DOLLAReval] = ACTIONS(1411), + [anon_sym_DOLLARis_const] = ACTIONS(1411), + [anon_sym_DOLLARsizeof] = ACTIONS(1411), + [anon_sym_DOLLARstringify] = ACTIONS(1411), + [anon_sym_DOLLARand] = ACTIONS(1411), + [anon_sym_DOLLARdefined] = ACTIONS(1411), + [anon_sym_DOLLARembed] = ACTIONS(1411), + [anon_sym_DOLLARor] = ACTIONS(1411), + [anon_sym_DOLLARfeature] = ACTIONS(1411), + [anon_sym_DOLLARassignable] = ACTIONS(1411), + [anon_sym_BANG] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_typeid] = ACTIONS(1411), + [anon_sym_LBRACE_PIPE] = ACTIONS(1413), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_bool] = ACTIONS(1411), + [anon_sym_char] = ACTIONS(1411), + [anon_sym_ichar] = ACTIONS(1411), + [anon_sym_short] = ACTIONS(1411), + [anon_sym_ushort] = ACTIONS(1411), + [anon_sym_uint] = ACTIONS(1411), + [anon_sym_long] = ACTIONS(1411), + [anon_sym_ulong] = ACTIONS(1411), + [anon_sym_int128] = ACTIONS(1411), + [anon_sym_uint128] = ACTIONS(1411), + [anon_sym_float] = ACTIONS(1411), + [anon_sym_double] = ACTIONS(1411), + [anon_sym_float16] = ACTIONS(1411), + [anon_sym_bfloat16] = ACTIONS(1411), + [anon_sym_float128] = ACTIONS(1411), + [anon_sym_iptr] = ACTIONS(1411), + [anon_sym_uptr] = ACTIONS(1411), + [anon_sym_isz] = ACTIONS(1411), + [anon_sym_usz] = ACTIONS(1411), + [anon_sym_anyfault] = ACTIONS(1411), + [anon_sym_any] = ACTIONS(1411), + [anon_sym_DOLLARtypeof] = ACTIONS(1411), + [anon_sym_DOLLARtypefrom] = ACTIONS(1411), + [anon_sym_DOLLARvatype] = ACTIONS(1411), + [anon_sym_DOLLARevaltype] = ACTIONS(1411), + [sym_real_literal] = ACTIONS(1413), }, [626] = { [sym_line_comment] = STATE(626), [sym_doc_comment] = STATE(626), [sym_block_comment] = STATE(626), - [sym_ident] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(1658), - [anon_sym_SQUOTE] = ACTIONS(1658), - [anon_sym_DQUOTE] = ACTIONS(1658), - [anon_sym_BQUOTE] = ACTIONS(1658), - [sym_bytes_literal] = ACTIONS(1658), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1656), - [sym_at_ident] = ACTIONS(1658), - [sym_hash_ident] = ACTIONS(1658), - [sym_type_ident] = ACTIONS(1658), - [sym_ct_type_ident] = ACTIONS(1658), - [sym_const_ident] = ACTIONS(1656), - [sym_builtin] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_static] = ACTIONS(1656), - [anon_sym_tlocal] = ACTIONS(1656), - [anon_sym_SEMI] = ACTIONS(1658), - [anon_sym_fn] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_const] = ACTIONS(1656), - [anon_sym_var] = ACTIONS(1656), - [anon_sym_return] = ACTIONS(1656), - [anon_sym_continue] = ACTIONS(1656), - [anon_sym_break] = ACTIONS(1656), - [anon_sym_defer] = ACTIONS(1656), - [anon_sym_assert] = ACTIONS(1656), - [anon_sym_nextcase] = ACTIONS(1656), - [anon_sym_switch] = ACTIONS(1656), - [anon_sym_AMP_AMP] = ACTIONS(1658), - [anon_sym_if] = ACTIONS(1656), - [anon_sym_for] = ACTIONS(1656), - [anon_sym_foreach] = ACTIONS(1656), - [anon_sym_foreach_r] = ACTIONS(1656), - [anon_sym_while] = ACTIONS(1656), - [anon_sym_do] = ACTIONS(1656), - [anon_sym_int] = ACTIONS(1656), - [anon_sym_PLUS] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1656), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_asm] = ACTIONS(1656), - [anon_sym_DOLLARassert] = ACTIONS(1656), - [anon_sym_DOLLARerror] = ACTIONS(1656), - [anon_sym_DOLLARecho] = ACTIONS(1656), - [anon_sym_DOLLARif] = ACTIONS(1656), - [anon_sym_DOLLARswitch] = ACTIONS(1656), - [anon_sym_DOLLARfor] = ACTIONS(1656), - [anon_sym_DOLLARendfor] = ACTIONS(1656), - [anon_sym_DOLLARforeach] = ACTIONS(1656), - [anon_sym_DOLLARalignof] = ACTIONS(1656), - [anon_sym_DOLLARextnameof] = ACTIONS(1656), - [anon_sym_DOLLARnameof] = ACTIONS(1656), - [anon_sym_DOLLARoffsetof] = ACTIONS(1656), - [anon_sym_DOLLARqnameof] = ACTIONS(1656), - [anon_sym_DOLLARvaconst] = ACTIONS(1656), - [anon_sym_DOLLARvaarg] = ACTIONS(1656), - [anon_sym_DOLLARvaref] = ACTIONS(1656), - [anon_sym_DOLLARvaexpr] = ACTIONS(1656), - [anon_sym_true] = ACTIONS(1656), - [anon_sym_false] = ACTIONS(1656), - [anon_sym_null] = ACTIONS(1656), - [anon_sym_DOLLARvacount] = ACTIONS(1656), - [anon_sym_DOLLARappend] = ACTIONS(1656), - [anon_sym_DOLLARconcat] = ACTIONS(1656), - [anon_sym_DOLLAReval] = ACTIONS(1656), - [anon_sym_DOLLARis_const] = ACTIONS(1656), - [anon_sym_DOLLARsizeof] = ACTIONS(1656), - [anon_sym_DOLLARstringify] = ACTIONS(1656), - [anon_sym_DOLLARand] = ACTIONS(1656), - [anon_sym_DOLLARdefined] = ACTIONS(1656), - [anon_sym_DOLLARembed] = ACTIONS(1656), - [anon_sym_DOLLARor] = ACTIONS(1656), - [anon_sym_DOLLARfeature] = ACTIONS(1656), - [anon_sym_DOLLARassignable] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(1658), - [anon_sym_TILDE] = ACTIONS(1658), - [anon_sym_PLUS_PLUS] = ACTIONS(1658), - [anon_sym_DASH_DASH] = ACTIONS(1658), - [anon_sym_typeid] = ACTIONS(1656), - [anon_sym_LBRACE_PIPE] = ACTIONS(1658), - [anon_sym_void] = ACTIONS(1656), - [anon_sym_bool] = ACTIONS(1656), - [anon_sym_char] = ACTIONS(1656), - [anon_sym_ichar] = ACTIONS(1656), - [anon_sym_short] = ACTIONS(1656), - [anon_sym_ushort] = ACTIONS(1656), - [anon_sym_uint] = ACTIONS(1656), - [anon_sym_long] = ACTIONS(1656), - [anon_sym_ulong] = ACTIONS(1656), - [anon_sym_int128] = ACTIONS(1656), - [anon_sym_uint128] = ACTIONS(1656), - [anon_sym_float] = ACTIONS(1656), - [anon_sym_double] = ACTIONS(1656), - [anon_sym_float16] = ACTIONS(1656), - [anon_sym_bfloat16] = ACTIONS(1656), - [anon_sym_float128] = ACTIONS(1656), - [anon_sym_iptr] = ACTIONS(1656), - [anon_sym_uptr] = ACTIONS(1656), - [anon_sym_isz] = ACTIONS(1656), - [anon_sym_usz] = ACTIONS(1656), - [anon_sym_anyfault] = ACTIONS(1656), - [anon_sym_any] = ACTIONS(1656), - [anon_sym_DOLLARtypeof] = ACTIONS(1656), - [anon_sym_DOLLARtypefrom] = ACTIONS(1656), - [anon_sym_DOLLARvatype] = ACTIONS(1656), - [anon_sym_DOLLARevaltype] = ACTIONS(1656), - [sym_real_literal] = ACTIONS(1658), + [sym_ident] = ACTIONS(1427), + [sym_integer_literal] = ACTIONS(1429), + [anon_sym_SQUOTE] = ACTIONS(1429), + [anon_sym_DQUOTE] = ACTIONS(1429), + [anon_sym_BQUOTE] = ACTIONS(1429), + [sym_bytes_literal] = ACTIONS(1429), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1427), + [sym_at_ident] = ACTIONS(1429), + [sym_hash_ident] = ACTIONS(1429), + [sym_type_ident] = ACTIONS(1429), + [sym_ct_type_ident] = ACTIONS(1429), + [sym_const_ident] = ACTIONS(1427), + [sym_builtin] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1429), + [anon_sym_AMP] = ACTIONS(1427), + [anon_sym_static] = ACTIONS(1427), + [anon_sym_tlocal] = ACTIONS(1427), + [anon_sym_SEMI] = ACTIONS(1429), + [anon_sym_fn] = ACTIONS(1427), + [anon_sym_LBRACE] = ACTIONS(1427), + [anon_sym_const] = ACTIONS(1427), + [anon_sym_var] = ACTIONS(1427), + [anon_sym_return] = ACTIONS(1427), + [anon_sym_continue] = ACTIONS(1427), + [anon_sym_break] = ACTIONS(1427), + [anon_sym_defer] = ACTIONS(1427), + [anon_sym_assert] = ACTIONS(1427), + [anon_sym_nextcase] = ACTIONS(1427), + [anon_sym_switch] = ACTIONS(1427), + [anon_sym_AMP_AMP] = ACTIONS(1429), + [anon_sym_if] = ACTIONS(1427), + [anon_sym_for] = ACTIONS(1427), + [anon_sym_foreach] = ACTIONS(1427), + [anon_sym_foreach_r] = ACTIONS(1427), + [anon_sym_while] = ACTIONS(1427), + [anon_sym_do] = ACTIONS(1427), + [anon_sym_int] = ACTIONS(1427), + [anon_sym_PLUS] = ACTIONS(1427), + [anon_sym_DASH] = ACTIONS(1427), + [anon_sym_STAR] = ACTIONS(1429), + [anon_sym_asm] = ACTIONS(1427), + [anon_sym_DOLLARassert] = ACTIONS(1427), + [anon_sym_DOLLARerror] = ACTIONS(1427), + [anon_sym_DOLLARecho] = ACTIONS(1427), + [anon_sym_DOLLARif] = ACTIONS(1427), + [anon_sym_DOLLARswitch] = ACTIONS(1427), + [anon_sym_DOLLARfor] = ACTIONS(1427), + [anon_sym_DOLLARendfor] = ACTIONS(1427), + [anon_sym_DOLLARforeach] = ACTIONS(1427), + [anon_sym_DOLLARalignof] = ACTIONS(1427), + [anon_sym_DOLLARextnameof] = ACTIONS(1427), + [anon_sym_DOLLARnameof] = ACTIONS(1427), + [anon_sym_DOLLARoffsetof] = ACTIONS(1427), + [anon_sym_DOLLARqnameof] = ACTIONS(1427), + [anon_sym_DOLLARvaconst] = ACTIONS(1427), + [anon_sym_DOLLARvaarg] = ACTIONS(1427), + [anon_sym_DOLLARvaref] = ACTIONS(1427), + [anon_sym_DOLLARvaexpr] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1427), + [anon_sym_false] = ACTIONS(1427), + [anon_sym_null] = ACTIONS(1427), + [anon_sym_DOLLARvacount] = ACTIONS(1427), + [anon_sym_DOLLARappend] = ACTIONS(1427), + [anon_sym_DOLLARconcat] = ACTIONS(1427), + [anon_sym_DOLLAReval] = ACTIONS(1427), + [anon_sym_DOLLARis_const] = ACTIONS(1427), + [anon_sym_DOLLARsizeof] = ACTIONS(1427), + [anon_sym_DOLLARstringify] = ACTIONS(1427), + [anon_sym_DOLLARand] = ACTIONS(1427), + [anon_sym_DOLLARdefined] = ACTIONS(1427), + [anon_sym_DOLLARembed] = ACTIONS(1427), + [anon_sym_DOLLARor] = ACTIONS(1427), + [anon_sym_DOLLARfeature] = ACTIONS(1427), + [anon_sym_DOLLARassignable] = ACTIONS(1427), + [anon_sym_BANG] = ACTIONS(1429), + [anon_sym_TILDE] = ACTIONS(1429), + [anon_sym_PLUS_PLUS] = ACTIONS(1429), + [anon_sym_DASH_DASH] = ACTIONS(1429), + [anon_sym_typeid] = ACTIONS(1427), + [anon_sym_LBRACE_PIPE] = ACTIONS(1429), + [anon_sym_void] = ACTIONS(1427), + [anon_sym_bool] = ACTIONS(1427), + [anon_sym_char] = ACTIONS(1427), + [anon_sym_ichar] = ACTIONS(1427), + [anon_sym_short] = ACTIONS(1427), + [anon_sym_ushort] = ACTIONS(1427), + [anon_sym_uint] = ACTIONS(1427), + [anon_sym_long] = ACTIONS(1427), + [anon_sym_ulong] = ACTIONS(1427), + [anon_sym_int128] = ACTIONS(1427), + [anon_sym_uint128] = ACTIONS(1427), + [anon_sym_float] = ACTIONS(1427), + [anon_sym_double] = ACTIONS(1427), + [anon_sym_float16] = ACTIONS(1427), + [anon_sym_bfloat16] = ACTIONS(1427), + [anon_sym_float128] = ACTIONS(1427), + [anon_sym_iptr] = ACTIONS(1427), + [anon_sym_uptr] = ACTIONS(1427), + [anon_sym_isz] = ACTIONS(1427), + [anon_sym_usz] = ACTIONS(1427), + [anon_sym_anyfault] = ACTIONS(1427), + [anon_sym_any] = ACTIONS(1427), + [anon_sym_DOLLARtypeof] = ACTIONS(1427), + [anon_sym_DOLLARtypefrom] = ACTIONS(1427), + [anon_sym_DOLLARvatype] = ACTIONS(1427), + [anon_sym_DOLLARevaltype] = ACTIONS(1427), + [sym_real_literal] = ACTIONS(1429), }, [627] = { [sym_line_comment] = STATE(627), [sym_doc_comment] = STATE(627), [sym_block_comment] = STATE(627), - [sym_ident] = ACTIONS(1394), - [sym_integer_literal] = ACTIONS(1396), - [anon_sym_SQUOTE] = ACTIONS(1396), - [anon_sym_DQUOTE] = ACTIONS(1396), - [anon_sym_BQUOTE] = ACTIONS(1396), - [sym_bytes_literal] = ACTIONS(1396), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1394), - [sym_at_ident] = ACTIONS(1396), - [sym_hash_ident] = ACTIONS(1396), - [sym_type_ident] = ACTIONS(1396), - [sym_ct_type_ident] = ACTIONS(1396), - [sym_const_ident] = ACTIONS(1394), - [sym_builtin] = ACTIONS(1396), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_AMP] = ACTIONS(1394), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_tlocal] = ACTIONS(1394), - [anon_sym_SEMI] = ACTIONS(1396), - [anon_sym_fn] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1394), - [anon_sym_const] = ACTIONS(1394), - [anon_sym_var] = ACTIONS(1394), - [anon_sym_return] = ACTIONS(1394), - [anon_sym_continue] = ACTIONS(1394), - [anon_sym_break] = ACTIONS(1394), - [anon_sym_defer] = ACTIONS(1394), - [anon_sym_assert] = ACTIONS(1394), - [anon_sym_nextcase] = ACTIONS(1394), - [anon_sym_switch] = ACTIONS(1394), - [anon_sym_AMP_AMP] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1394), - [anon_sym_for] = ACTIONS(1394), - [anon_sym_foreach] = ACTIONS(1394), - [anon_sym_foreach_r] = ACTIONS(1394), - [anon_sym_while] = ACTIONS(1394), - [anon_sym_do] = ACTIONS(1394), - [anon_sym_int] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1394), - [anon_sym_DASH] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(1396), - [anon_sym_asm] = ACTIONS(1394), - [anon_sym_DOLLARassert] = ACTIONS(1394), - [anon_sym_DOLLARerror] = ACTIONS(1394), - [anon_sym_DOLLARecho] = ACTIONS(1394), - [anon_sym_DOLLARif] = ACTIONS(1394), - [anon_sym_DOLLARswitch] = ACTIONS(1394), - [anon_sym_DOLLARfor] = ACTIONS(1394), - [anon_sym_DOLLARforeach] = ACTIONS(1394), - [anon_sym_DOLLARendforeach] = ACTIONS(1394), - [anon_sym_DOLLARalignof] = ACTIONS(1394), - [anon_sym_DOLLARextnameof] = ACTIONS(1394), - [anon_sym_DOLLARnameof] = ACTIONS(1394), - [anon_sym_DOLLARoffsetof] = ACTIONS(1394), - [anon_sym_DOLLARqnameof] = ACTIONS(1394), - [anon_sym_DOLLARvaconst] = ACTIONS(1394), - [anon_sym_DOLLARvaarg] = ACTIONS(1394), - [anon_sym_DOLLARvaref] = ACTIONS(1394), - [anon_sym_DOLLARvaexpr] = ACTIONS(1394), - [anon_sym_true] = ACTIONS(1394), - [anon_sym_false] = ACTIONS(1394), - [anon_sym_null] = ACTIONS(1394), - [anon_sym_DOLLARvacount] = ACTIONS(1394), - [anon_sym_DOLLARappend] = ACTIONS(1394), - [anon_sym_DOLLARconcat] = ACTIONS(1394), - [anon_sym_DOLLAReval] = ACTIONS(1394), - [anon_sym_DOLLARis_const] = ACTIONS(1394), - [anon_sym_DOLLARsizeof] = ACTIONS(1394), - [anon_sym_DOLLARstringify] = ACTIONS(1394), - [anon_sym_DOLLARand] = ACTIONS(1394), - [anon_sym_DOLLARdefined] = ACTIONS(1394), - [anon_sym_DOLLARembed] = ACTIONS(1394), - [anon_sym_DOLLARor] = ACTIONS(1394), - [anon_sym_DOLLARfeature] = ACTIONS(1394), - [anon_sym_DOLLARassignable] = ACTIONS(1394), - [anon_sym_BANG] = ACTIONS(1396), - [anon_sym_TILDE] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1396), - [anon_sym_DASH_DASH] = ACTIONS(1396), - [anon_sym_typeid] = ACTIONS(1394), - [anon_sym_LBRACE_PIPE] = ACTIONS(1396), - [anon_sym_void] = ACTIONS(1394), - [anon_sym_bool] = ACTIONS(1394), - [anon_sym_char] = ACTIONS(1394), - [anon_sym_ichar] = ACTIONS(1394), - [anon_sym_short] = ACTIONS(1394), - [anon_sym_ushort] = ACTIONS(1394), - [anon_sym_uint] = ACTIONS(1394), - [anon_sym_long] = ACTIONS(1394), - [anon_sym_ulong] = ACTIONS(1394), - [anon_sym_int128] = ACTIONS(1394), - [anon_sym_uint128] = ACTIONS(1394), - [anon_sym_float] = ACTIONS(1394), - [anon_sym_double] = ACTIONS(1394), - [anon_sym_float16] = ACTIONS(1394), - [anon_sym_bfloat16] = ACTIONS(1394), - [anon_sym_float128] = ACTIONS(1394), - [anon_sym_iptr] = ACTIONS(1394), - [anon_sym_uptr] = ACTIONS(1394), - [anon_sym_isz] = ACTIONS(1394), - [anon_sym_usz] = ACTIONS(1394), - [anon_sym_anyfault] = ACTIONS(1394), - [anon_sym_any] = ACTIONS(1394), - [anon_sym_DOLLARtypeof] = ACTIONS(1394), - [anon_sym_DOLLARtypefrom] = ACTIONS(1394), - [anon_sym_DOLLARvatype] = ACTIONS(1394), - [anon_sym_DOLLARevaltype] = ACTIONS(1394), - [sym_real_literal] = ACTIONS(1396), + [sym_ident] = ACTIONS(1431), + [sym_integer_literal] = ACTIONS(1433), + [anon_sym_SQUOTE] = ACTIONS(1433), + [anon_sym_DQUOTE] = ACTIONS(1433), + [anon_sym_BQUOTE] = ACTIONS(1433), + [sym_bytes_literal] = ACTIONS(1433), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1431), + [sym_at_ident] = ACTIONS(1433), + [sym_hash_ident] = ACTIONS(1433), + [sym_type_ident] = ACTIONS(1433), + [sym_ct_type_ident] = ACTIONS(1433), + [sym_const_ident] = ACTIONS(1431), + [sym_builtin] = ACTIONS(1433), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_AMP] = ACTIONS(1431), + [anon_sym_static] = ACTIONS(1431), + [anon_sym_tlocal] = ACTIONS(1431), + [anon_sym_SEMI] = ACTIONS(1433), + [anon_sym_fn] = ACTIONS(1431), + [anon_sym_LBRACE] = ACTIONS(1431), + [anon_sym_const] = ACTIONS(1431), + [anon_sym_var] = ACTIONS(1431), + [anon_sym_return] = ACTIONS(1431), + [anon_sym_continue] = ACTIONS(1431), + [anon_sym_break] = ACTIONS(1431), + [anon_sym_defer] = ACTIONS(1431), + [anon_sym_assert] = ACTIONS(1431), + [anon_sym_nextcase] = ACTIONS(1431), + [anon_sym_switch] = ACTIONS(1431), + [anon_sym_AMP_AMP] = ACTIONS(1433), + [anon_sym_if] = ACTIONS(1431), + [anon_sym_for] = ACTIONS(1431), + [anon_sym_foreach] = ACTIONS(1431), + [anon_sym_foreach_r] = ACTIONS(1431), + [anon_sym_while] = ACTIONS(1431), + [anon_sym_do] = ACTIONS(1431), + [anon_sym_int] = ACTIONS(1431), + [anon_sym_PLUS] = ACTIONS(1431), + [anon_sym_DASH] = ACTIONS(1431), + [anon_sym_STAR] = ACTIONS(1433), + [anon_sym_asm] = ACTIONS(1431), + [anon_sym_DOLLARassert] = ACTIONS(1431), + [anon_sym_DOLLARerror] = ACTIONS(1431), + [anon_sym_DOLLARecho] = ACTIONS(1431), + [anon_sym_DOLLARif] = ACTIONS(1431), + [anon_sym_DOLLARswitch] = ACTIONS(1431), + [anon_sym_DOLLARfor] = ACTIONS(1431), + [anon_sym_DOLLARendfor] = ACTIONS(1431), + [anon_sym_DOLLARforeach] = ACTIONS(1431), + [anon_sym_DOLLARalignof] = ACTIONS(1431), + [anon_sym_DOLLARextnameof] = ACTIONS(1431), + [anon_sym_DOLLARnameof] = ACTIONS(1431), + [anon_sym_DOLLARoffsetof] = ACTIONS(1431), + [anon_sym_DOLLARqnameof] = ACTIONS(1431), + [anon_sym_DOLLARvaconst] = ACTIONS(1431), + [anon_sym_DOLLARvaarg] = ACTIONS(1431), + [anon_sym_DOLLARvaref] = ACTIONS(1431), + [anon_sym_DOLLARvaexpr] = ACTIONS(1431), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_null] = ACTIONS(1431), + [anon_sym_DOLLARvacount] = ACTIONS(1431), + [anon_sym_DOLLARappend] = ACTIONS(1431), + [anon_sym_DOLLARconcat] = ACTIONS(1431), + [anon_sym_DOLLAReval] = ACTIONS(1431), + [anon_sym_DOLLARis_const] = ACTIONS(1431), + [anon_sym_DOLLARsizeof] = ACTIONS(1431), + [anon_sym_DOLLARstringify] = ACTIONS(1431), + [anon_sym_DOLLARand] = ACTIONS(1431), + [anon_sym_DOLLARdefined] = ACTIONS(1431), + [anon_sym_DOLLARembed] = ACTIONS(1431), + [anon_sym_DOLLARor] = ACTIONS(1431), + [anon_sym_DOLLARfeature] = ACTIONS(1431), + [anon_sym_DOLLARassignable] = ACTIONS(1431), + [anon_sym_BANG] = ACTIONS(1433), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_PLUS_PLUS] = ACTIONS(1433), + [anon_sym_DASH_DASH] = ACTIONS(1433), + [anon_sym_typeid] = ACTIONS(1431), + [anon_sym_LBRACE_PIPE] = ACTIONS(1433), + [anon_sym_void] = ACTIONS(1431), + [anon_sym_bool] = ACTIONS(1431), + [anon_sym_char] = ACTIONS(1431), + [anon_sym_ichar] = ACTIONS(1431), + [anon_sym_short] = ACTIONS(1431), + [anon_sym_ushort] = ACTIONS(1431), + [anon_sym_uint] = ACTIONS(1431), + [anon_sym_long] = ACTIONS(1431), + [anon_sym_ulong] = ACTIONS(1431), + [anon_sym_int128] = ACTIONS(1431), + [anon_sym_uint128] = ACTIONS(1431), + [anon_sym_float] = ACTIONS(1431), + [anon_sym_double] = ACTIONS(1431), + [anon_sym_float16] = ACTIONS(1431), + [anon_sym_bfloat16] = ACTIONS(1431), + [anon_sym_float128] = ACTIONS(1431), + [anon_sym_iptr] = ACTIONS(1431), + [anon_sym_uptr] = ACTIONS(1431), + [anon_sym_isz] = ACTIONS(1431), + [anon_sym_usz] = ACTIONS(1431), + [anon_sym_anyfault] = ACTIONS(1431), + [anon_sym_any] = ACTIONS(1431), + [anon_sym_DOLLARtypeof] = ACTIONS(1431), + [anon_sym_DOLLARtypefrom] = ACTIONS(1431), + [anon_sym_DOLLARvatype] = ACTIONS(1431), + [anon_sym_DOLLARevaltype] = ACTIONS(1431), + [sym_real_literal] = ACTIONS(1433), }, [628] = { [sym_line_comment] = STATE(628), [sym_doc_comment] = STATE(628), [sym_block_comment] = STATE(628), - [sym_ident] = ACTIONS(1398), - [sym_integer_literal] = ACTIONS(1400), - [anon_sym_SQUOTE] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [anon_sym_BQUOTE] = ACTIONS(1400), - [sym_bytes_literal] = ACTIONS(1400), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1398), - [sym_at_ident] = ACTIONS(1400), - [sym_hash_ident] = ACTIONS(1400), - [sym_type_ident] = ACTIONS(1400), - [sym_ct_type_ident] = ACTIONS(1400), - [sym_const_ident] = ACTIONS(1398), - [sym_builtin] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1400), - [anon_sym_AMP] = ACTIONS(1398), - [anon_sym_static] = ACTIONS(1398), - [anon_sym_tlocal] = ACTIONS(1398), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym_fn] = ACTIONS(1398), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_const] = ACTIONS(1398), - [anon_sym_var] = ACTIONS(1398), - [anon_sym_return] = ACTIONS(1398), - [anon_sym_continue] = ACTIONS(1398), - [anon_sym_break] = ACTIONS(1398), - [anon_sym_defer] = ACTIONS(1398), - [anon_sym_assert] = ACTIONS(1398), - [anon_sym_nextcase] = ACTIONS(1398), - [anon_sym_switch] = ACTIONS(1398), - [anon_sym_AMP_AMP] = ACTIONS(1400), - [anon_sym_if] = ACTIONS(1398), - [anon_sym_for] = ACTIONS(1398), - [anon_sym_foreach] = ACTIONS(1398), - [anon_sym_foreach_r] = ACTIONS(1398), - [anon_sym_while] = ACTIONS(1398), - [anon_sym_do] = ACTIONS(1398), - [anon_sym_int] = ACTIONS(1398), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_asm] = ACTIONS(1398), - [anon_sym_DOLLARassert] = ACTIONS(1398), - [anon_sym_DOLLARerror] = ACTIONS(1398), - [anon_sym_DOLLARecho] = ACTIONS(1398), - [anon_sym_DOLLARif] = ACTIONS(1398), - [anon_sym_DOLLARswitch] = ACTIONS(1398), - [anon_sym_DOLLARfor] = ACTIONS(1398), - [anon_sym_DOLLARforeach] = ACTIONS(1398), - [anon_sym_DOLLARendforeach] = ACTIONS(1398), - [anon_sym_DOLLARalignof] = ACTIONS(1398), - [anon_sym_DOLLARextnameof] = ACTIONS(1398), - [anon_sym_DOLLARnameof] = ACTIONS(1398), - [anon_sym_DOLLARoffsetof] = ACTIONS(1398), - [anon_sym_DOLLARqnameof] = ACTIONS(1398), - [anon_sym_DOLLARvaconst] = ACTIONS(1398), - [anon_sym_DOLLARvaarg] = ACTIONS(1398), - [anon_sym_DOLLARvaref] = ACTIONS(1398), - [anon_sym_DOLLARvaexpr] = ACTIONS(1398), - [anon_sym_true] = ACTIONS(1398), - [anon_sym_false] = ACTIONS(1398), - [anon_sym_null] = ACTIONS(1398), - [anon_sym_DOLLARvacount] = ACTIONS(1398), - [anon_sym_DOLLARappend] = ACTIONS(1398), - [anon_sym_DOLLARconcat] = ACTIONS(1398), - [anon_sym_DOLLAReval] = ACTIONS(1398), - [anon_sym_DOLLARis_const] = ACTIONS(1398), - [anon_sym_DOLLARsizeof] = ACTIONS(1398), - [anon_sym_DOLLARstringify] = ACTIONS(1398), - [anon_sym_DOLLARand] = ACTIONS(1398), - [anon_sym_DOLLARdefined] = ACTIONS(1398), - [anon_sym_DOLLARembed] = ACTIONS(1398), - [anon_sym_DOLLARor] = ACTIONS(1398), - [anon_sym_DOLLARfeature] = ACTIONS(1398), - [anon_sym_DOLLARassignable] = ACTIONS(1398), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [anon_sym_typeid] = ACTIONS(1398), - [anon_sym_LBRACE_PIPE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1398), - [anon_sym_bool] = ACTIONS(1398), - [anon_sym_char] = ACTIONS(1398), - [anon_sym_ichar] = ACTIONS(1398), - [anon_sym_short] = ACTIONS(1398), - [anon_sym_ushort] = ACTIONS(1398), - [anon_sym_uint] = ACTIONS(1398), - [anon_sym_long] = ACTIONS(1398), - [anon_sym_ulong] = ACTIONS(1398), - [anon_sym_int128] = ACTIONS(1398), - [anon_sym_uint128] = ACTIONS(1398), - [anon_sym_float] = ACTIONS(1398), - [anon_sym_double] = ACTIONS(1398), - [anon_sym_float16] = ACTIONS(1398), - [anon_sym_bfloat16] = ACTIONS(1398), - [anon_sym_float128] = ACTIONS(1398), - [anon_sym_iptr] = ACTIONS(1398), - [anon_sym_uptr] = ACTIONS(1398), - [anon_sym_isz] = ACTIONS(1398), - [anon_sym_usz] = ACTIONS(1398), - [anon_sym_anyfault] = ACTIONS(1398), - [anon_sym_any] = ACTIONS(1398), - [anon_sym_DOLLARtypeof] = ACTIONS(1398), - [anon_sym_DOLLARtypefrom] = ACTIONS(1398), - [anon_sym_DOLLARvatype] = ACTIONS(1398), - [anon_sym_DOLLARevaltype] = ACTIONS(1398), - [sym_real_literal] = ACTIONS(1400), + [sym_ident] = ACTIONS(1437), + [sym_integer_literal] = ACTIONS(1439), + [anon_sym_SQUOTE] = ACTIONS(1439), + [anon_sym_DQUOTE] = ACTIONS(1439), + [anon_sym_BQUOTE] = ACTIONS(1439), + [sym_bytes_literal] = ACTIONS(1439), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1437), + [sym_at_ident] = ACTIONS(1439), + [sym_hash_ident] = ACTIONS(1439), + [sym_type_ident] = ACTIONS(1439), + [sym_ct_type_ident] = ACTIONS(1439), + [sym_const_ident] = ACTIONS(1437), + [sym_builtin] = ACTIONS(1439), + [anon_sym_LPAREN] = ACTIONS(1439), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_static] = ACTIONS(1437), + [anon_sym_tlocal] = ACTIONS(1437), + [anon_sym_SEMI] = ACTIONS(1439), + [anon_sym_fn] = ACTIONS(1437), + [anon_sym_LBRACE] = ACTIONS(1437), + [anon_sym_const] = ACTIONS(1437), + [anon_sym_var] = ACTIONS(1437), + [anon_sym_return] = ACTIONS(1437), + [anon_sym_continue] = ACTIONS(1437), + [anon_sym_break] = ACTIONS(1437), + [anon_sym_defer] = ACTIONS(1437), + [anon_sym_assert] = ACTIONS(1437), + [anon_sym_nextcase] = ACTIONS(1437), + [anon_sym_switch] = ACTIONS(1437), + [anon_sym_AMP_AMP] = ACTIONS(1439), + [anon_sym_if] = ACTIONS(1437), + [anon_sym_for] = ACTIONS(1437), + [anon_sym_foreach] = ACTIONS(1437), + [anon_sym_foreach_r] = ACTIONS(1437), + [anon_sym_while] = ACTIONS(1437), + [anon_sym_do] = ACTIONS(1437), + [anon_sym_int] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_STAR] = ACTIONS(1439), + [anon_sym_asm] = ACTIONS(1437), + [anon_sym_DOLLARassert] = ACTIONS(1437), + [anon_sym_DOLLARerror] = ACTIONS(1437), + [anon_sym_DOLLARecho] = ACTIONS(1437), + [anon_sym_DOLLARif] = ACTIONS(1437), + [anon_sym_DOLLARswitch] = ACTIONS(1437), + [anon_sym_DOLLARfor] = ACTIONS(1437), + [anon_sym_DOLLARendfor] = ACTIONS(1437), + [anon_sym_DOLLARforeach] = ACTIONS(1437), + [anon_sym_DOLLARalignof] = ACTIONS(1437), + [anon_sym_DOLLARextnameof] = ACTIONS(1437), + [anon_sym_DOLLARnameof] = ACTIONS(1437), + [anon_sym_DOLLARoffsetof] = ACTIONS(1437), + [anon_sym_DOLLARqnameof] = ACTIONS(1437), + [anon_sym_DOLLARvaconst] = ACTIONS(1437), + [anon_sym_DOLLARvaarg] = ACTIONS(1437), + [anon_sym_DOLLARvaref] = ACTIONS(1437), + [anon_sym_DOLLARvaexpr] = ACTIONS(1437), + [anon_sym_true] = ACTIONS(1437), + [anon_sym_false] = ACTIONS(1437), + [anon_sym_null] = ACTIONS(1437), + [anon_sym_DOLLARvacount] = ACTIONS(1437), + [anon_sym_DOLLARappend] = ACTIONS(1437), + [anon_sym_DOLLARconcat] = ACTIONS(1437), + [anon_sym_DOLLAReval] = ACTIONS(1437), + [anon_sym_DOLLARis_const] = ACTIONS(1437), + [anon_sym_DOLLARsizeof] = ACTIONS(1437), + [anon_sym_DOLLARstringify] = ACTIONS(1437), + [anon_sym_DOLLARand] = ACTIONS(1437), + [anon_sym_DOLLARdefined] = ACTIONS(1437), + [anon_sym_DOLLARembed] = ACTIONS(1437), + [anon_sym_DOLLARor] = ACTIONS(1437), + [anon_sym_DOLLARfeature] = ACTIONS(1437), + [anon_sym_DOLLARassignable] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1439), + [anon_sym_TILDE] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_typeid] = ACTIONS(1437), + [anon_sym_LBRACE_PIPE] = ACTIONS(1439), + [anon_sym_void] = ACTIONS(1437), + [anon_sym_bool] = ACTIONS(1437), + [anon_sym_char] = ACTIONS(1437), + [anon_sym_ichar] = ACTIONS(1437), + [anon_sym_short] = ACTIONS(1437), + [anon_sym_ushort] = ACTIONS(1437), + [anon_sym_uint] = ACTIONS(1437), + [anon_sym_long] = ACTIONS(1437), + [anon_sym_ulong] = ACTIONS(1437), + [anon_sym_int128] = ACTIONS(1437), + [anon_sym_uint128] = ACTIONS(1437), + [anon_sym_float] = ACTIONS(1437), + [anon_sym_double] = ACTIONS(1437), + [anon_sym_float16] = ACTIONS(1437), + [anon_sym_bfloat16] = ACTIONS(1437), + [anon_sym_float128] = ACTIONS(1437), + [anon_sym_iptr] = ACTIONS(1437), + [anon_sym_uptr] = ACTIONS(1437), + [anon_sym_isz] = ACTIONS(1437), + [anon_sym_usz] = ACTIONS(1437), + [anon_sym_anyfault] = ACTIONS(1437), + [anon_sym_any] = ACTIONS(1437), + [anon_sym_DOLLARtypeof] = ACTIONS(1437), + [anon_sym_DOLLARtypefrom] = ACTIONS(1437), + [anon_sym_DOLLARvatype] = ACTIONS(1437), + [anon_sym_DOLLARevaltype] = ACTIONS(1437), + [sym_real_literal] = ACTIONS(1439), }, [629] = { [sym_line_comment] = STATE(629), [sym_doc_comment] = STATE(629), [sym_block_comment] = STATE(629), - [sym_ident] = ACTIONS(1468), - [sym_integer_literal] = ACTIONS(1470), - [anon_sym_SQUOTE] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [anon_sym_BQUOTE] = ACTIONS(1470), - [sym_bytes_literal] = ACTIONS(1470), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1468), - [sym_at_ident] = ACTIONS(1470), - [sym_hash_ident] = ACTIONS(1470), - [sym_type_ident] = ACTIONS(1470), - [sym_ct_type_ident] = ACTIONS(1470), - [sym_const_ident] = ACTIONS(1468), - [sym_builtin] = ACTIONS(1470), - [anon_sym_LPAREN] = ACTIONS(1470), - [anon_sym_AMP] = ACTIONS(1468), - [anon_sym_static] = ACTIONS(1468), - [anon_sym_tlocal] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1470), - [anon_sym_fn] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1468), - [anon_sym_const] = ACTIONS(1468), - [anon_sym_var] = ACTIONS(1468), - [anon_sym_return] = ACTIONS(1468), - [anon_sym_continue] = ACTIONS(1468), - [anon_sym_break] = ACTIONS(1468), - [anon_sym_defer] = ACTIONS(1468), - [anon_sym_assert] = ACTIONS(1468), - [anon_sym_nextcase] = ACTIONS(1468), - [anon_sym_switch] = ACTIONS(1468), - [anon_sym_AMP_AMP] = ACTIONS(1470), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_for] = ACTIONS(1468), - [anon_sym_foreach] = ACTIONS(1468), - [anon_sym_foreach_r] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1468), - [anon_sym_do] = ACTIONS(1468), - [anon_sym_int] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1468), - [anon_sym_DASH] = ACTIONS(1468), - [anon_sym_STAR] = ACTIONS(1470), - [anon_sym_asm] = ACTIONS(1468), - [anon_sym_DOLLARassert] = ACTIONS(1468), - [anon_sym_DOLLARerror] = ACTIONS(1468), - [anon_sym_DOLLARecho] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1468), - [anon_sym_DOLLARswitch] = ACTIONS(1468), - [anon_sym_DOLLARfor] = ACTIONS(1468), - [anon_sym_DOLLARforeach] = ACTIONS(1468), - [anon_sym_DOLLARendforeach] = ACTIONS(1468), - [anon_sym_DOLLARalignof] = ACTIONS(1468), - [anon_sym_DOLLARextnameof] = ACTIONS(1468), - [anon_sym_DOLLARnameof] = ACTIONS(1468), - [anon_sym_DOLLARoffsetof] = ACTIONS(1468), - [anon_sym_DOLLARqnameof] = ACTIONS(1468), - [anon_sym_DOLLARvaconst] = ACTIONS(1468), - [anon_sym_DOLLARvaarg] = ACTIONS(1468), - [anon_sym_DOLLARvaref] = ACTIONS(1468), - [anon_sym_DOLLARvaexpr] = ACTIONS(1468), - [anon_sym_true] = ACTIONS(1468), - [anon_sym_false] = ACTIONS(1468), - [anon_sym_null] = ACTIONS(1468), - [anon_sym_DOLLARvacount] = ACTIONS(1468), - [anon_sym_DOLLARappend] = ACTIONS(1468), - [anon_sym_DOLLARconcat] = ACTIONS(1468), - [anon_sym_DOLLAReval] = ACTIONS(1468), - [anon_sym_DOLLARis_const] = ACTIONS(1468), - [anon_sym_DOLLARsizeof] = ACTIONS(1468), - [anon_sym_DOLLARstringify] = ACTIONS(1468), - [anon_sym_DOLLARand] = ACTIONS(1468), - [anon_sym_DOLLARdefined] = ACTIONS(1468), - [anon_sym_DOLLARembed] = ACTIONS(1468), - [anon_sym_DOLLARor] = ACTIONS(1468), - [anon_sym_DOLLARfeature] = ACTIONS(1468), - [anon_sym_DOLLARassignable] = ACTIONS(1468), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1470), - [anon_sym_DASH_DASH] = ACTIONS(1470), - [anon_sym_typeid] = ACTIONS(1468), - [anon_sym_LBRACE_PIPE] = ACTIONS(1470), - [anon_sym_void] = ACTIONS(1468), - [anon_sym_bool] = ACTIONS(1468), - [anon_sym_char] = ACTIONS(1468), - [anon_sym_ichar] = ACTIONS(1468), - [anon_sym_short] = ACTIONS(1468), - [anon_sym_ushort] = ACTIONS(1468), - [anon_sym_uint] = ACTIONS(1468), - [anon_sym_long] = ACTIONS(1468), - [anon_sym_ulong] = ACTIONS(1468), - [anon_sym_int128] = ACTIONS(1468), - [anon_sym_uint128] = ACTIONS(1468), - [anon_sym_float] = ACTIONS(1468), - [anon_sym_double] = ACTIONS(1468), - [anon_sym_float16] = ACTIONS(1468), - [anon_sym_bfloat16] = ACTIONS(1468), - [anon_sym_float128] = ACTIONS(1468), - [anon_sym_iptr] = ACTIONS(1468), - [anon_sym_uptr] = ACTIONS(1468), - [anon_sym_isz] = ACTIONS(1468), - [anon_sym_usz] = ACTIONS(1468), - [anon_sym_anyfault] = ACTIONS(1468), - [anon_sym_any] = ACTIONS(1468), - [anon_sym_DOLLARtypeof] = ACTIONS(1468), - [anon_sym_DOLLARtypefrom] = ACTIONS(1468), - [anon_sym_DOLLARvatype] = ACTIONS(1468), - [anon_sym_DOLLARevaltype] = ACTIONS(1468), - [sym_real_literal] = ACTIONS(1470), + [sym_ident] = ACTIONS(1473), + [sym_integer_literal] = ACTIONS(1475), + [anon_sym_SQUOTE] = ACTIONS(1475), + [anon_sym_DQUOTE] = ACTIONS(1475), + [anon_sym_BQUOTE] = ACTIONS(1475), + [sym_bytes_literal] = ACTIONS(1475), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1473), + [sym_at_ident] = ACTIONS(1475), + [sym_hash_ident] = ACTIONS(1475), + [sym_type_ident] = ACTIONS(1475), + [sym_ct_type_ident] = ACTIONS(1475), + [sym_const_ident] = ACTIONS(1473), + [sym_builtin] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1475), + [anon_sym_AMP] = ACTIONS(1473), + [anon_sym_static] = ACTIONS(1473), + [anon_sym_tlocal] = ACTIONS(1473), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_fn] = ACTIONS(1473), + [anon_sym_LBRACE] = ACTIONS(1473), + [anon_sym_const] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(1473), + [anon_sym_return] = ACTIONS(1473), + [anon_sym_continue] = ACTIONS(1473), + [anon_sym_break] = ACTIONS(1473), + [anon_sym_defer] = ACTIONS(1473), + [anon_sym_assert] = ACTIONS(1473), + [anon_sym_nextcase] = ACTIONS(1473), + [anon_sym_switch] = ACTIONS(1473), + [anon_sym_AMP_AMP] = ACTIONS(1475), + [anon_sym_if] = ACTIONS(1473), + [anon_sym_for] = ACTIONS(1473), + [anon_sym_foreach] = ACTIONS(1473), + [anon_sym_foreach_r] = ACTIONS(1473), + [anon_sym_while] = ACTIONS(1473), + [anon_sym_do] = ACTIONS(1473), + [anon_sym_int] = ACTIONS(1473), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1475), + [anon_sym_asm] = ACTIONS(1473), + [anon_sym_DOLLARassert] = ACTIONS(1473), + [anon_sym_DOLLARerror] = ACTIONS(1473), + [anon_sym_DOLLARecho] = ACTIONS(1473), + [anon_sym_DOLLARif] = ACTIONS(1473), + [anon_sym_DOLLARswitch] = ACTIONS(1473), + [anon_sym_DOLLARfor] = ACTIONS(1473), + [anon_sym_DOLLARendfor] = ACTIONS(1473), + [anon_sym_DOLLARforeach] = ACTIONS(1473), + [anon_sym_DOLLARalignof] = ACTIONS(1473), + [anon_sym_DOLLARextnameof] = ACTIONS(1473), + [anon_sym_DOLLARnameof] = ACTIONS(1473), + [anon_sym_DOLLARoffsetof] = ACTIONS(1473), + [anon_sym_DOLLARqnameof] = ACTIONS(1473), + [anon_sym_DOLLARvaconst] = ACTIONS(1473), + [anon_sym_DOLLARvaarg] = ACTIONS(1473), + [anon_sym_DOLLARvaref] = ACTIONS(1473), + [anon_sym_DOLLARvaexpr] = ACTIONS(1473), + [anon_sym_true] = ACTIONS(1473), + [anon_sym_false] = ACTIONS(1473), + [anon_sym_null] = ACTIONS(1473), + [anon_sym_DOLLARvacount] = ACTIONS(1473), + [anon_sym_DOLLARappend] = ACTIONS(1473), + [anon_sym_DOLLARconcat] = ACTIONS(1473), + [anon_sym_DOLLAReval] = ACTIONS(1473), + [anon_sym_DOLLARis_const] = ACTIONS(1473), + [anon_sym_DOLLARsizeof] = ACTIONS(1473), + [anon_sym_DOLLARstringify] = ACTIONS(1473), + [anon_sym_DOLLARand] = ACTIONS(1473), + [anon_sym_DOLLARdefined] = ACTIONS(1473), + [anon_sym_DOLLARembed] = ACTIONS(1473), + [anon_sym_DOLLARor] = ACTIONS(1473), + [anon_sym_DOLLARfeature] = ACTIONS(1473), + [anon_sym_DOLLARassignable] = ACTIONS(1473), + [anon_sym_BANG] = ACTIONS(1475), + [anon_sym_TILDE] = ACTIONS(1475), + [anon_sym_PLUS_PLUS] = ACTIONS(1475), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_typeid] = ACTIONS(1473), + [anon_sym_LBRACE_PIPE] = ACTIONS(1475), + [anon_sym_void] = ACTIONS(1473), + [anon_sym_bool] = ACTIONS(1473), + [anon_sym_char] = ACTIONS(1473), + [anon_sym_ichar] = ACTIONS(1473), + [anon_sym_short] = ACTIONS(1473), + [anon_sym_ushort] = ACTIONS(1473), + [anon_sym_uint] = ACTIONS(1473), + [anon_sym_long] = ACTIONS(1473), + [anon_sym_ulong] = ACTIONS(1473), + [anon_sym_int128] = ACTIONS(1473), + [anon_sym_uint128] = ACTIONS(1473), + [anon_sym_float] = ACTIONS(1473), + [anon_sym_double] = ACTIONS(1473), + [anon_sym_float16] = ACTIONS(1473), + [anon_sym_bfloat16] = ACTIONS(1473), + [anon_sym_float128] = ACTIONS(1473), + [anon_sym_iptr] = ACTIONS(1473), + [anon_sym_uptr] = ACTIONS(1473), + [anon_sym_isz] = ACTIONS(1473), + [anon_sym_usz] = ACTIONS(1473), + [anon_sym_anyfault] = ACTIONS(1473), + [anon_sym_any] = ACTIONS(1473), + [anon_sym_DOLLARtypeof] = ACTIONS(1473), + [anon_sym_DOLLARtypefrom] = ACTIONS(1473), + [anon_sym_DOLLARvatype] = ACTIONS(1473), + [anon_sym_DOLLARevaltype] = ACTIONS(1473), + [sym_real_literal] = ACTIONS(1475), }, [630] = { [sym_line_comment] = STATE(630), [sym_doc_comment] = STATE(630), [sym_block_comment] = STATE(630), - [sym_ident] = ACTIONS(1504), - [sym_integer_literal] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1506), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_BQUOTE] = ACTIONS(1506), - [sym_bytes_literal] = ACTIONS(1506), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1504), - [sym_at_ident] = ACTIONS(1506), - [sym_hash_ident] = ACTIONS(1506), - [sym_type_ident] = ACTIONS(1506), - [sym_ct_type_ident] = ACTIONS(1506), - [sym_const_ident] = ACTIONS(1504), - [sym_builtin] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_AMP] = ACTIONS(1504), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_tlocal] = ACTIONS(1504), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym_fn] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(1504), - [anon_sym_var] = ACTIONS(1504), - [anon_sym_return] = ACTIONS(1504), - [anon_sym_continue] = ACTIONS(1504), - [anon_sym_break] = ACTIONS(1504), - [anon_sym_defer] = ACTIONS(1504), - [anon_sym_assert] = ACTIONS(1504), - [anon_sym_nextcase] = ACTIONS(1504), - [anon_sym_switch] = ACTIONS(1504), - [anon_sym_AMP_AMP] = ACTIONS(1506), - [anon_sym_if] = ACTIONS(1504), - [anon_sym_for] = ACTIONS(1504), - [anon_sym_foreach] = ACTIONS(1504), - [anon_sym_foreach_r] = ACTIONS(1504), - [anon_sym_while] = ACTIONS(1504), - [anon_sym_do] = ACTIONS(1504), - [anon_sym_int] = ACTIONS(1504), - [anon_sym_PLUS] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1504), - [anon_sym_STAR] = ACTIONS(1506), - [anon_sym_asm] = ACTIONS(1504), - [anon_sym_DOLLARassert] = ACTIONS(1504), - [anon_sym_DOLLARerror] = ACTIONS(1504), - [anon_sym_DOLLARecho] = ACTIONS(1504), - [anon_sym_DOLLARif] = ACTIONS(1504), - [anon_sym_DOLLARswitch] = ACTIONS(1504), - [anon_sym_DOLLARfor] = ACTIONS(1504), - [anon_sym_DOLLARforeach] = ACTIONS(1504), - [anon_sym_DOLLARendforeach] = ACTIONS(1504), - [anon_sym_DOLLARalignof] = ACTIONS(1504), - [anon_sym_DOLLARextnameof] = ACTIONS(1504), - [anon_sym_DOLLARnameof] = ACTIONS(1504), - [anon_sym_DOLLARoffsetof] = ACTIONS(1504), - [anon_sym_DOLLARqnameof] = ACTIONS(1504), - [anon_sym_DOLLARvaconst] = ACTIONS(1504), - [anon_sym_DOLLARvaarg] = ACTIONS(1504), - [anon_sym_DOLLARvaref] = ACTIONS(1504), - [anon_sym_DOLLARvaexpr] = ACTIONS(1504), - [anon_sym_true] = ACTIONS(1504), - [anon_sym_false] = ACTIONS(1504), - [anon_sym_null] = ACTIONS(1504), - [anon_sym_DOLLARvacount] = ACTIONS(1504), - [anon_sym_DOLLARappend] = ACTIONS(1504), - [anon_sym_DOLLARconcat] = ACTIONS(1504), - [anon_sym_DOLLAReval] = ACTIONS(1504), - [anon_sym_DOLLARis_const] = ACTIONS(1504), - [anon_sym_DOLLARsizeof] = ACTIONS(1504), - [anon_sym_DOLLARstringify] = ACTIONS(1504), - [anon_sym_DOLLARand] = ACTIONS(1504), - [anon_sym_DOLLARdefined] = ACTIONS(1504), - [anon_sym_DOLLARembed] = ACTIONS(1504), - [anon_sym_DOLLARor] = ACTIONS(1504), - [anon_sym_DOLLARfeature] = ACTIONS(1504), - [anon_sym_DOLLARassignable] = ACTIONS(1504), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1506), - [anon_sym_typeid] = ACTIONS(1504), - [anon_sym_LBRACE_PIPE] = ACTIONS(1506), - [anon_sym_void] = ACTIONS(1504), - [anon_sym_bool] = ACTIONS(1504), - [anon_sym_char] = ACTIONS(1504), - [anon_sym_ichar] = ACTIONS(1504), - [anon_sym_short] = ACTIONS(1504), - [anon_sym_ushort] = ACTIONS(1504), - [anon_sym_uint] = ACTIONS(1504), - [anon_sym_long] = ACTIONS(1504), - [anon_sym_ulong] = ACTIONS(1504), - [anon_sym_int128] = ACTIONS(1504), - [anon_sym_uint128] = ACTIONS(1504), - [anon_sym_float] = ACTIONS(1504), - [anon_sym_double] = ACTIONS(1504), - [anon_sym_float16] = ACTIONS(1504), - [anon_sym_bfloat16] = ACTIONS(1504), - [anon_sym_float128] = ACTIONS(1504), - [anon_sym_iptr] = ACTIONS(1504), - [anon_sym_uptr] = ACTIONS(1504), - [anon_sym_isz] = ACTIONS(1504), - [anon_sym_usz] = ACTIONS(1504), - [anon_sym_anyfault] = ACTIONS(1504), - [anon_sym_any] = ACTIONS(1504), - [anon_sym_DOLLARtypeof] = ACTIONS(1504), - [anon_sym_DOLLARtypefrom] = ACTIONS(1504), - [anon_sym_DOLLARvatype] = ACTIONS(1504), - [anon_sym_DOLLARevaltype] = ACTIONS(1504), - [sym_real_literal] = ACTIONS(1506), + [sym_ident] = ACTIONS(1477), + [sym_integer_literal] = ACTIONS(1479), + [anon_sym_SQUOTE] = ACTIONS(1479), + [anon_sym_DQUOTE] = ACTIONS(1479), + [anon_sym_BQUOTE] = ACTIONS(1479), + [sym_bytes_literal] = ACTIONS(1479), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1477), + [sym_at_ident] = ACTIONS(1479), + [sym_hash_ident] = ACTIONS(1479), + [sym_type_ident] = ACTIONS(1479), + [sym_ct_type_ident] = ACTIONS(1479), + [sym_const_ident] = ACTIONS(1477), + [sym_builtin] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1479), + [anon_sym_AMP] = ACTIONS(1477), + [anon_sym_static] = ACTIONS(1477), + [anon_sym_tlocal] = ACTIONS(1477), + [anon_sym_SEMI] = ACTIONS(1479), + [anon_sym_fn] = ACTIONS(1477), + [anon_sym_LBRACE] = ACTIONS(1477), + [anon_sym_const] = ACTIONS(1477), + [anon_sym_var] = ACTIONS(1477), + [anon_sym_return] = ACTIONS(1477), + [anon_sym_continue] = ACTIONS(1477), + [anon_sym_break] = ACTIONS(1477), + [anon_sym_defer] = ACTIONS(1477), + [anon_sym_assert] = ACTIONS(1477), + [anon_sym_nextcase] = ACTIONS(1477), + [anon_sym_switch] = ACTIONS(1477), + [anon_sym_AMP_AMP] = ACTIONS(1479), + [anon_sym_if] = ACTIONS(1477), + [anon_sym_for] = ACTIONS(1477), + [anon_sym_foreach] = ACTIONS(1477), + [anon_sym_foreach_r] = ACTIONS(1477), + [anon_sym_while] = ACTIONS(1477), + [anon_sym_do] = ACTIONS(1477), + [anon_sym_int] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1477), + [anon_sym_DASH] = ACTIONS(1477), + [anon_sym_STAR] = ACTIONS(1479), + [anon_sym_asm] = ACTIONS(1477), + [anon_sym_DOLLARassert] = ACTIONS(1477), + [anon_sym_DOLLARerror] = ACTIONS(1477), + [anon_sym_DOLLARecho] = ACTIONS(1477), + [anon_sym_DOLLARif] = ACTIONS(1477), + [anon_sym_DOLLARswitch] = ACTIONS(1477), + [anon_sym_DOLLARfor] = ACTIONS(1477), + [anon_sym_DOLLARendfor] = ACTIONS(1477), + [anon_sym_DOLLARforeach] = ACTIONS(1477), + [anon_sym_DOLLARalignof] = ACTIONS(1477), + [anon_sym_DOLLARextnameof] = ACTIONS(1477), + [anon_sym_DOLLARnameof] = ACTIONS(1477), + [anon_sym_DOLLARoffsetof] = ACTIONS(1477), + [anon_sym_DOLLARqnameof] = ACTIONS(1477), + [anon_sym_DOLLARvaconst] = ACTIONS(1477), + [anon_sym_DOLLARvaarg] = ACTIONS(1477), + [anon_sym_DOLLARvaref] = ACTIONS(1477), + [anon_sym_DOLLARvaexpr] = ACTIONS(1477), + [anon_sym_true] = ACTIONS(1477), + [anon_sym_false] = ACTIONS(1477), + [anon_sym_null] = ACTIONS(1477), + [anon_sym_DOLLARvacount] = ACTIONS(1477), + [anon_sym_DOLLARappend] = ACTIONS(1477), + [anon_sym_DOLLARconcat] = ACTIONS(1477), + [anon_sym_DOLLAReval] = ACTIONS(1477), + [anon_sym_DOLLARis_const] = ACTIONS(1477), + [anon_sym_DOLLARsizeof] = ACTIONS(1477), + [anon_sym_DOLLARstringify] = ACTIONS(1477), + [anon_sym_DOLLARand] = ACTIONS(1477), + [anon_sym_DOLLARdefined] = ACTIONS(1477), + [anon_sym_DOLLARembed] = ACTIONS(1477), + [anon_sym_DOLLARor] = ACTIONS(1477), + [anon_sym_DOLLARfeature] = ACTIONS(1477), + [anon_sym_DOLLARassignable] = ACTIONS(1477), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_TILDE] = ACTIONS(1479), + [anon_sym_PLUS_PLUS] = ACTIONS(1479), + [anon_sym_DASH_DASH] = ACTIONS(1479), + [anon_sym_typeid] = ACTIONS(1477), + [anon_sym_LBRACE_PIPE] = ACTIONS(1479), + [anon_sym_void] = ACTIONS(1477), + [anon_sym_bool] = ACTIONS(1477), + [anon_sym_char] = ACTIONS(1477), + [anon_sym_ichar] = ACTIONS(1477), + [anon_sym_short] = ACTIONS(1477), + [anon_sym_ushort] = ACTIONS(1477), + [anon_sym_uint] = ACTIONS(1477), + [anon_sym_long] = ACTIONS(1477), + [anon_sym_ulong] = ACTIONS(1477), + [anon_sym_int128] = ACTIONS(1477), + [anon_sym_uint128] = ACTIONS(1477), + [anon_sym_float] = ACTIONS(1477), + [anon_sym_double] = ACTIONS(1477), + [anon_sym_float16] = ACTIONS(1477), + [anon_sym_bfloat16] = ACTIONS(1477), + [anon_sym_float128] = ACTIONS(1477), + [anon_sym_iptr] = ACTIONS(1477), + [anon_sym_uptr] = ACTIONS(1477), + [anon_sym_isz] = ACTIONS(1477), + [anon_sym_usz] = ACTIONS(1477), + [anon_sym_anyfault] = ACTIONS(1477), + [anon_sym_any] = ACTIONS(1477), + [anon_sym_DOLLARtypeof] = ACTIONS(1477), + [anon_sym_DOLLARtypefrom] = ACTIONS(1477), + [anon_sym_DOLLARvatype] = ACTIONS(1477), + [anon_sym_DOLLARevaltype] = ACTIONS(1477), + [sym_real_literal] = ACTIONS(1479), }, [631] = { [sym_line_comment] = STATE(631), [sym_doc_comment] = STATE(631), [sym_block_comment] = STATE(631), - [sym_ident] = ACTIONS(1524), - [sym_integer_literal] = ACTIONS(1526), - [anon_sym_SQUOTE] = ACTIONS(1526), - [anon_sym_DQUOTE] = ACTIONS(1526), - [anon_sym_BQUOTE] = ACTIONS(1526), - [sym_bytes_literal] = ACTIONS(1526), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1524), - [sym_at_ident] = ACTIONS(1526), - [sym_hash_ident] = ACTIONS(1526), - [sym_type_ident] = ACTIONS(1526), - [sym_ct_type_ident] = ACTIONS(1526), - [sym_const_ident] = ACTIONS(1524), - [sym_builtin] = ACTIONS(1526), - [anon_sym_LPAREN] = ACTIONS(1526), - [anon_sym_AMP] = ACTIONS(1524), - [anon_sym_static] = ACTIONS(1524), - [anon_sym_tlocal] = ACTIONS(1524), - [anon_sym_SEMI] = ACTIONS(1526), - [anon_sym_fn] = ACTIONS(1524), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_const] = ACTIONS(1524), - [anon_sym_var] = ACTIONS(1524), - [anon_sym_return] = ACTIONS(1524), - [anon_sym_continue] = ACTIONS(1524), - [anon_sym_break] = ACTIONS(1524), - [anon_sym_defer] = ACTIONS(1524), - [anon_sym_assert] = ACTIONS(1524), - [anon_sym_nextcase] = ACTIONS(1524), - [anon_sym_switch] = ACTIONS(1524), - [anon_sym_AMP_AMP] = ACTIONS(1526), - [anon_sym_if] = ACTIONS(1524), - [anon_sym_for] = ACTIONS(1524), - [anon_sym_foreach] = ACTIONS(1524), - [anon_sym_foreach_r] = ACTIONS(1524), - [anon_sym_while] = ACTIONS(1524), - [anon_sym_do] = ACTIONS(1524), - [anon_sym_int] = ACTIONS(1524), - [anon_sym_PLUS] = ACTIONS(1524), - [anon_sym_DASH] = ACTIONS(1524), - [anon_sym_STAR] = ACTIONS(1526), - [anon_sym_asm] = ACTIONS(1524), - [anon_sym_DOLLARassert] = ACTIONS(1524), - [anon_sym_DOLLARerror] = ACTIONS(1524), - [anon_sym_DOLLARecho] = ACTIONS(1524), - [anon_sym_DOLLARif] = ACTIONS(1524), - [anon_sym_DOLLARswitch] = ACTIONS(1524), - [anon_sym_DOLLARfor] = ACTIONS(1524), - [anon_sym_DOLLARforeach] = ACTIONS(1524), - [anon_sym_DOLLARendforeach] = ACTIONS(1524), - [anon_sym_DOLLARalignof] = ACTIONS(1524), - [anon_sym_DOLLARextnameof] = ACTIONS(1524), - [anon_sym_DOLLARnameof] = ACTIONS(1524), - [anon_sym_DOLLARoffsetof] = ACTIONS(1524), - [anon_sym_DOLLARqnameof] = ACTIONS(1524), - [anon_sym_DOLLARvaconst] = ACTIONS(1524), - [anon_sym_DOLLARvaarg] = ACTIONS(1524), - [anon_sym_DOLLARvaref] = ACTIONS(1524), - [anon_sym_DOLLARvaexpr] = ACTIONS(1524), - [anon_sym_true] = ACTIONS(1524), - [anon_sym_false] = ACTIONS(1524), - [anon_sym_null] = ACTIONS(1524), - [anon_sym_DOLLARvacount] = ACTIONS(1524), - [anon_sym_DOLLARappend] = ACTIONS(1524), - [anon_sym_DOLLARconcat] = ACTIONS(1524), - [anon_sym_DOLLAReval] = ACTIONS(1524), - [anon_sym_DOLLARis_const] = ACTIONS(1524), - [anon_sym_DOLLARsizeof] = ACTIONS(1524), - [anon_sym_DOLLARstringify] = ACTIONS(1524), - [anon_sym_DOLLARand] = ACTIONS(1524), - [anon_sym_DOLLARdefined] = ACTIONS(1524), - [anon_sym_DOLLARembed] = ACTIONS(1524), - [anon_sym_DOLLARor] = ACTIONS(1524), - [anon_sym_DOLLARfeature] = ACTIONS(1524), - [anon_sym_DOLLARassignable] = ACTIONS(1524), - [anon_sym_BANG] = ACTIONS(1526), - [anon_sym_TILDE] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1526), - [anon_sym_DASH_DASH] = ACTIONS(1526), - [anon_sym_typeid] = ACTIONS(1524), - [anon_sym_LBRACE_PIPE] = ACTIONS(1526), - [anon_sym_void] = ACTIONS(1524), - [anon_sym_bool] = ACTIONS(1524), - [anon_sym_char] = ACTIONS(1524), - [anon_sym_ichar] = ACTIONS(1524), - [anon_sym_short] = ACTIONS(1524), - [anon_sym_ushort] = ACTIONS(1524), - [anon_sym_uint] = ACTIONS(1524), - [anon_sym_long] = ACTIONS(1524), - [anon_sym_ulong] = ACTIONS(1524), - [anon_sym_int128] = ACTIONS(1524), - [anon_sym_uint128] = ACTIONS(1524), - [anon_sym_float] = ACTIONS(1524), - [anon_sym_double] = ACTIONS(1524), - [anon_sym_float16] = ACTIONS(1524), - [anon_sym_bfloat16] = ACTIONS(1524), - [anon_sym_float128] = ACTIONS(1524), - [anon_sym_iptr] = ACTIONS(1524), - [anon_sym_uptr] = ACTIONS(1524), - [anon_sym_isz] = ACTIONS(1524), - [anon_sym_usz] = ACTIONS(1524), - [anon_sym_anyfault] = ACTIONS(1524), - [anon_sym_any] = ACTIONS(1524), - [anon_sym_DOLLARtypeof] = ACTIONS(1524), - [anon_sym_DOLLARtypefrom] = ACTIONS(1524), - [anon_sym_DOLLARvatype] = ACTIONS(1524), - [anon_sym_DOLLARevaltype] = ACTIONS(1524), - [sym_real_literal] = ACTIONS(1526), + [sym_ident] = ACTIONS(1493), + [sym_integer_literal] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1495), + [anon_sym_DQUOTE] = ACTIONS(1495), + [anon_sym_BQUOTE] = ACTIONS(1495), + [sym_bytes_literal] = ACTIONS(1495), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1493), + [sym_at_ident] = ACTIONS(1495), + [sym_hash_ident] = ACTIONS(1495), + [sym_type_ident] = ACTIONS(1495), + [sym_ct_type_ident] = ACTIONS(1495), + [sym_const_ident] = ACTIONS(1493), + [sym_builtin] = ACTIONS(1495), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1493), + [anon_sym_static] = ACTIONS(1493), + [anon_sym_tlocal] = ACTIONS(1493), + [anon_sym_SEMI] = ACTIONS(1495), + [anon_sym_fn] = ACTIONS(1493), + [anon_sym_LBRACE] = ACTIONS(1493), + [anon_sym_const] = ACTIONS(1493), + [anon_sym_var] = ACTIONS(1493), + [anon_sym_return] = ACTIONS(1493), + [anon_sym_continue] = ACTIONS(1493), + [anon_sym_break] = ACTIONS(1493), + [anon_sym_defer] = ACTIONS(1493), + [anon_sym_assert] = ACTIONS(1493), + [anon_sym_nextcase] = ACTIONS(1493), + [anon_sym_switch] = ACTIONS(1493), + [anon_sym_AMP_AMP] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1493), + [anon_sym_for] = ACTIONS(1493), + [anon_sym_foreach] = ACTIONS(1493), + [anon_sym_foreach_r] = ACTIONS(1493), + [anon_sym_while] = ACTIONS(1493), + [anon_sym_do] = ACTIONS(1493), + [anon_sym_int] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1493), + [anon_sym_DASH] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1495), + [anon_sym_asm] = ACTIONS(1493), + [anon_sym_DOLLARassert] = ACTIONS(1493), + [anon_sym_DOLLARerror] = ACTIONS(1493), + [anon_sym_DOLLARecho] = ACTIONS(1493), + [anon_sym_DOLLARif] = ACTIONS(1493), + [anon_sym_DOLLARswitch] = ACTIONS(1493), + [anon_sym_DOLLARfor] = ACTIONS(1493), + [anon_sym_DOLLARendfor] = ACTIONS(1493), + [anon_sym_DOLLARforeach] = ACTIONS(1493), + [anon_sym_DOLLARalignof] = ACTIONS(1493), + [anon_sym_DOLLARextnameof] = ACTIONS(1493), + [anon_sym_DOLLARnameof] = ACTIONS(1493), + [anon_sym_DOLLARoffsetof] = ACTIONS(1493), + [anon_sym_DOLLARqnameof] = ACTIONS(1493), + [anon_sym_DOLLARvaconst] = ACTIONS(1493), + [anon_sym_DOLLARvaarg] = ACTIONS(1493), + [anon_sym_DOLLARvaref] = ACTIONS(1493), + [anon_sym_DOLLARvaexpr] = ACTIONS(1493), + [anon_sym_true] = ACTIONS(1493), + [anon_sym_false] = ACTIONS(1493), + [anon_sym_null] = ACTIONS(1493), + [anon_sym_DOLLARvacount] = ACTIONS(1493), + [anon_sym_DOLLARappend] = ACTIONS(1493), + [anon_sym_DOLLARconcat] = ACTIONS(1493), + [anon_sym_DOLLAReval] = ACTIONS(1493), + [anon_sym_DOLLARis_const] = ACTIONS(1493), + [anon_sym_DOLLARsizeof] = ACTIONS(1493), + [anon_sym_DOLLARstringify] = ACTIONS(1493), + [anon_sym_DOLLARand] = ACTIONS(1493), + [anon_sym_DOLLARdefined] = ACTIONS(1493), + [anon_sym_DOLLARembed] = ACTIONS(1493), + [anon_sym_DOLLARor] = ACTIONS(1493), + [anon_sym_DOLLARfeature] = ACTIONS(1493), + [anon_sym_DOLLARassignable] = ACTIONS(1493), + [anon_sym_BANG] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(1495), + [anon_sym_PLUS_PLUS] = ACTIONS(1495), + [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_typeid] = ACTIONS(1493), + [anon_sym_LBRACE_PIPE] = ACTIONS(1495), + [anon_sym_void] = ACTIONS(1493), + [anon_sym_bool] = ACTIONS(1493), + [anon_sym_char] = ACTIONS(1493), + [anon_sym_ichar] = ACTIONS(1493), + [anon_sym_short] = ACTIONS(1493), + [anon_sym_ushort] = ACTIONS(1493), + [anon_sym_uint] = ACTIONS(1493), + [anon_sym_long] = ACTIONS(1493), + [anon_sym_ulong] = ACTIONS(1493), + [anon_sym_int128] = ACTIONS(1493), + [anon_sym_uint128] = ACTIONS(1493), + [anon_sym_float] = ACTIONS(1493), + [anon_sym_double] = ACTIONS(1493), + [anon_sym_float16] = ACTIONS(1493), + [anon_sym_bfloat16] = ACTIONS(1493), + [anon_sym_float128] = ACTIONS(1493), + [anon_sym_iptr] = ACTIONS(1493), + [anon_sym_uptr] = ACTIONS(1493), + [anon_sym_isz] = ACTIONS(1493), + [anon_sym_usz] = ACTIONS(1493), + [anon_sym_anyfault] = ACTIONS(1493), + [anon_sym_any] = ACTIONS(1493), + [anon_sym_DOLLARtypeof] = ACTIONS(1493), + [anon_sym_DOLLARtypefrom] = ACTIONS(1493), + [anon_sym_DOLLARvatype] = ACTIONS(1493), + [anon_sym_DOLLARevaltype] = ACTIONS(1493), + [sym_real_literal] = ACTIONS(1495), }, [632] = { [sym_line_comment] = STATE(632), [sym_doc_comment] = STATE(632), [sym_block_comment] = STATE(632), - [sym_ident] = ACTIONS(1608), - [sym_integer_literal] = ACTIONS(1610), - [anon_sym_SQUOTE] = ACTIONS(1610), - [anon_sym_DQUOTE] = ACTIONS(1610), - [anon_sym_BQUOTE] = ACTIONS(1610), - [sym_bytes_literal] = ACTIONS(1610), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1608), - [sym_at_ident] = ACTIONS(1610), - [sym_hash_ident] = ACTIONS(1610), - [sym_type_ident] = ACTIONS(1610), - [sym_ct_type_ident] = ACTIONS(1610), - [sym_const_ident] = ACTIONS(1608), - [sym_builtin] = ACTIONS(1610), - [anon_sym_LPAREN] = ACTIONS(1610), - [anon_sym_AMP] = ACTIONS(1608), - [anon_sym_static] = ACTIONS(1608), - [anon_sym_tlocal] = ACTIONS(1608), - [anon_sym_SEMI] = ACTIONS(1610), - [anon_sym_fn] = ACTIONS(1608), - [anon_sym_LBRACE] = ACTIONS(1608), - [anon_sym_const] = ACTIONS(1608), - [anon_sym_var] = ACTIONS(1608), - [anon_sym_return] = ACTIONS(1608), - [anon_sym_continue] = ACTIONS(1608), - [anon_sym_break] = ACTIONS(1608), - [anon_sym_defer] = ACTIONS(1608), - [anon_sym_assert] = ACTIONS(1608), - [anon_sym_nextcase] = ACTIONS(1608), - [anon_sym_switch] = ACTIONS(1608), - [anon_sym_AMP_AMP] = ACTIONS(1610), - [anon_sym_if] = ACTIONS(1608), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_foreach] = ACTIONS(1608), - [anon_sym_foreach_r] = ACTIONS(1608), - [anon_sym_while] = ACTIONS(1608), - [anon_sym_do] = ACTIONS(1608), - [anon_sym_int] = ACTIONS(1608), - [anon_sym_PLUS] = ACTIONS(1608), - [anon_sym_DASH] = ACTIONS(1608), - [anon_sym_STAR] = ACTIONS(1610), - [anon_sym_asm] = ACTIONS(1608), - [anon_sym_DOLLARassert] = ACTIONS(1608), - [anon_sym_DOLLARerror] = ACTIONS(1608), - [anon_sym_DOLLARecho] = ACTIONS(1608), - [anon_sym_DOLLARif] = ACTIONS(1608), - [anon_sym_DOLLARswitch] = ACTIONS(1608), - [anon_sym_DOLLARfor] = ACTIONS(1608), - [anon_sym_DOLLARforeach] = ACTIONS(1608), - [anon_sym_DOLLARendforeach] = ACTIONS(1608), - [anon_sym_DOLLARalignof] = ACTIONS(1608), - [anon_sym_DOLLARextnameof] = ACTIONS(1608), - [anon_sym_DOLLARnameof] = ACTIONS(1608), - [anon_sym_DOLLARoffsetof] = ACTIONS(1608), - [anon_sym_DOLLARqnameof] = ACTIONS(1608), - [anon_sym_DOLLARvaconst] = ACTIONS(1608), - [anon_sym_DOLLARvaarg] = ACTIONS(1608), - [anon_sym_DOLLARvaref] = ACTIONS(1608), - [anon_sym_DOLLARvaexpr] = ACTIONS(1608), - [anon_sym_true] = ACTIONS(1608), - [anon_sym_false] = ACTIONS(1608), - [anon_sym_null] = ACTIONS(1608), - [anon_sym_DOLLARvacount] = ACTIONS(1608), - [anon_sym_DOLLARappend] = ACTIONS(1608), - [anon_sym_DOLLARconcat] = ACTIONS(1608), - [anon_sym_DOLLAReval] = ACTIONS(1608), - [anon_sym_DOLLARis_const] = ACTIONS(1608), - [anon_sym_DOLLARsizeof] = ACTIONS(1608), - [anon_sym_DOLLARstringify] = ACTIONS(1608), - [anon_sym_DOLLARand] = ACTIONS(1608), - [anon_sym_DOLLARdefined] = ACTIONS(1608), - [anon_sym_DOLLARembed] = ACTIONS(1608), - [anon_sym_DOLLARor] = ACTIONS(1608), - [anon_sym_DOLLARfeature] = ACTIONS(1608), - [anon_sym_DOLLARassignable] = ACTIONS(1608), - [anon_sym_BANG] = ACTIONS(1610), - [anon_sym_TILDE] = ACTIONS(1610), - [anon_sym_PLUS_PLUS] = ACTIONS(1610), - [anon_sym_DASH_DASH] = ACTIONS(1610), - [anon_sym_typeid] = ACTIONS(1608), - [anon_sym_LBRACE_PIPE] = ACTIONS(1610), - [anon_sym_void] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_ichar] = ACTIONS(1608), - [anon_sym_short] = ACTIONS(1608), - [anon_sym_ushort] = ACTIONS(1608), - [anon_sym_uint] = ACTIONS(1608), - [anon_sym_long] = ACTIONS(1608), - [anon_sym_ulong] = ACTIONS(1608), - [anon_sym_int128] = ACTIONS(1608), - [anon_sym_uint128] = ACTIONS(1608), - [anon_sym_float] = ACTIONS(1608), - [anon_sym_double] = ACTIONS(1608), - [anon_sym_float16] = ACTIONS(1608), - [anon_sym_bfloat16] = ACTIONS(1608), - [anon_sym_float128] = ACTIONS(1608), - [anon_sym_iptr] = ACTIONS(1608), - [anon_sym_uptr] = ACTIONS(1608), - [anon_sym_isz] = ACTIONS(1608), - [anon_sym_usz] = ACTIONS(1608), - [anon_sym_anyfault] = ACTIONS(1608), - [anon_sym_any] = ACTIONS(1608), - [anon_sym_DOLLARtypeof] = ACTIONS(1608), - [anon_sym_DOLLARtypefrom] = ACTIONS(1608), - [anon_sym_DOLLARvatype] = ACTIONS(1608), - [anon_sym_DOLLARevaltype] = ACTIONS(1608), - [sym_real_literal] = ACTIONS(1610), + [sym_ident] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1515), + [anon_sym_SQUOTE] = ACTIONS(1515), + [anon_sym_DQUOTE] = ACTIONS(1515), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_bytes_literal] = ACTIONS(1515), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1513), + [sym_at_ident] = ACTIONS(1515), + [sym_hash_ident] = ACTIONS(1515), + [sym_type_ident] = ACTIONS(1515), + [sym_ct_type_ident] = ACTIONS(1515), + [sym_const_ident] = ACTIONS(1513), + [sym_builtin] = ACTIONS(1515), + [anon_sym_LPAREN] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1513), + [anon_sym_static] = ACTIONS(1513), + [anon_sym_tlocal] = ACTIONS(1513), + [anon_sym_SEMI] = ACTIONS(1515), + [anon_sym_fn] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1513), + [anon_sym_const] = ACTIONS(1513), + [anon_sym_var] = ACTIONS(1513), + [anon_sym_return] = ACTIONS(1513), + [anon_sym_continue] = ACTIONS(1513), + [anon_sym_break] = ACTIONS(1513), + [anon_sym_defer] = ACTIONS(1513), + [anon_sym_assert] = ACTIONS(1513), + [anon_sym_nextcase] = ACTIONS(1513), + [anon_sym_switch] = ACTIONS(1513), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [anon_sym_if] = ACTIONS(1513), + [anon_sym_for] = ACTIONS(1513), + [anon_sym_foreach] = ACTIONS(1513), + [anon_sym_foreach_r] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1513), + [anon_sym_do] = ACTIONS(1513), + [anon_sym_int] = ACTIONS(1513), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(1515), + [anon_sym_asm] = ACTIONS(1513), + [anon_sym_DOLLARassert] = ACTIONS(1513), + [anon_sym_DOLLARerror] = ACTIONS(1513), + [anon_sym_DOLLARecho] = ACTIONS(1513), + [anon_sym_DOLLARif] = ACTIONS(1513), + [anon_sym_DOLLARswitch] = ACTIONS(1513), + [anon_sym_DOLLARfor] = ACTIONS(1513), + [anon_sym_DOLLARendfor] = ACTIONS(1513), + [anon_sym_DOLLARforeach] = ACTIONS(1513), + [anon_sym_DOLLARalignof] = ACTIONS(1513), + [anon_sym_DOLLARextnameof] = ACTIONS(1513), + [anon_sym_DOLLARnameof] = ACTIONS(1513), + [anon_sym_DOLLARoffsetof] = ACTIONS(1513), + [anon_sym_DOLLARqnameof] = ACTIONS(1513), + [anon_sym_DOLLARvaconst] = ACTIONS(1513), + [anon_sym_DOLLARvaarg] = ACTIONS(1513), + [anon_sym_DOLLARvaref] = ACTIONS(1513), + [anon_sym_DOLLARvaexpr] = ACTIONS(1513), + [anon_sym_true] = ACTIONS(1513), + [anon_sym_false] = ACTIONS(1513), + [anon_sym_null] = ACTIONS(1513), + [anon_sym_DOLLARvacount] = ACTIONS(1513), + [anon_sym_DOLLARappend] = ACTIONS(1513), + [anon_sym_DOLLARconcat] = ACTIONS(1513), + [anon_sym_DOLLAReval] = ACTIONS(1513), + [anon_sym_DOLLARis_const] = ACTIONS(1513), + [anon_sym_DOLLARsizeof] = ACTIONS(1513), + [anon_sym_DOLLARstringify] = ACTIONS(1513), + [anon_sym_DOLLARand] = ACTIONS(1513), + [anon_sym_DOLLARdefined] = ACTIONS(1513), + [anon_sym_DOLLARembed] = ACTIONS(1513), + [anon_sym_DOLLARor] = ACTIONS(1513), + [anon_sym_DOLLARfeature] = ACTIONS(1513), + [anon_sym_DOLLARassignable] = ACTIONS(1513), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_typeid] = ACTIONS(1513), + [anon_sym_LBRACE_PIPE] = ACTIONS(1515), + [anon_sym_void] = ACTIONS(1513), + [anon_sym_bool] = ACTIONS(1513), + [anon_sym_char] = ACTIONS(1513), + [anon_sym_ichar] = ACTIONS(1513), + [anon_sym_short] = ACTIONS(1513), + [anon_sym_ushort] = ACTIONS(1513), + [anon_sym_uint] = ACTIONS(1513), + [anon_sym_long] = ACTIONS(1513), + [anon_sym_ulong] = ACTIONS(1513), + [anon_sym_int128] = ACTIONS(1513), + [anon_sym_uint128] = ACTIONS(1513), + [anon_sym_float] = ACTIONS(1513), + [anon_sym_double] = ACTIONS(1513), + [anon_sym_float16] = ACTIONS(1513), + [anon_sym_bfloat16] = ACTIONS(1513), + [anon_sym_float128] = ACTIONS(1513), + [anon_sym_iptr] = ACTIONS(1513), + [anon_sym_uptr] = ACTIONS(1513), + [anon_sym_isz] = ACTIONS(1513), + [anon_sym_usz] = ACTIONS(1513), + [anon_sym_anyfault] = ACTIONS(1513), + [anon_sym_any] = ACTIONS(1513), + [anon_sym_DOLLARtypeof] = ACTIONS(1513), + [anon_sym_DOLLARtypefrom] = ACTIONS(1513), + [anon_sym_DOLLARvatype] = ACTIONS(1513), + [anon_sym_DOLLARevaltype] = ACTIONS(1513), + [sym_real_literal] = ACTIONS(1515), }, [633] = { [sym_line_comment] = STATE(633), [sym_doc_comment] = STATE(633), [sym_block_comment] = STATE(633), - [sym_ident] = ACTIONS(1664), - [sym_integer_literal] = ACTIONS(1666), - [anon_sym_SQUOTE] = ACTIONS(1666), - [anon_sym_DQUOTE] = ACTIONS(1666), - [anon_sym_BQUOTE] = ACTIONS(1666), - [sym_bytes_literal] = ACTIONS(1666), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1664), - [sym_at_ident] = ACTIONS(1666), - [sym_hash_ident] = ACTIONS(1666), - [sym_type_ident] = ACTIONS(1666), - [sym_ct_type_ident] = ACTIONS(1666), - [sym_const_ident] = ACTIONS(1664), - [sym_builtin] = ACTIONS(1666), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_static] = ACTIONS(1664), - [anon_sym_tlocal] = ACTIONS(1664), - [anon_sym_SEMI] = ACTIONS(1666), - [anon_sym_fn] = ACTIONS(1664), - [anon_sym_LBRACE] = ACTIONS(1664), - [anon_sym_const] = ACTIONS(1664), - [anon_sym_var] = ACTIONS(1664), - [anon_sym_return] = ACTIONS(1664), - [anon_sym_continue] = ACTIONS(1664), - [anon_sym_break] = ACTIONS(1664), - [anon_sym_defer] = ACTIONS(1664), - [anon_sym_assert] = ACTIONS(1664), - [anon_sym_nextcase] = ACTIONS(1664), - [anon_sym_switch] = ACTIONS(1664), - [anon_sym_AMP_AMP] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_for] = ACTIONS(1664), - [anon_sym_foreach] = ACTIONS(1664), - [anon_sym_foreach_r] = ACTIONS(1664), - [anon_sym_while] = ACTIONS(1664), - [anon_sym_do] = ACTIONS(1664), - [anon_sym_int] = ACTIONS(1664), - [anon_sym_PLUS] = ACTIONS(1664), - [anon_sym_DASH] = ACTIONS(1664), - [anon_sym_STAR] = ACTIONS(1666), - [anon_sym_asm] = ACTIONS(1664), - [anon_sym_DOLLARassert] = ACTIONS(1664), - [anon_sym_DOLLARerror] = ACTIONS(1664), - [anon_sym_DOLLARecho] = ACTIONS(1664), - [anon_sym_DOLLARif] = ACTIONS(1664), - [anon_sym_DOLLARswitch] = ACTIONS(1664), - [anon_sym_DOLLARfor] = ACTIONS(1664), - [anon_sym_DOLLARforeach] = ACTIONS(1664), - [anon_sym_DOLLARendforeach] = ACTIONS(1664), - [anon_sym_DOLLARalignof] = ACTIONS(1664), - [anon_sym_DOLLARextnameof] = ACTIONS(1664), - [anon_sym_DOLLARnameof] = ACTIONS(1664), - [anon_sym_DOLLARoffsetof] = ACTIONS(1664), - [anon_sym_DOLLARqnameof] = ACTIONS(1664), - [anon_sym_DOLLARvaconst] = ACTIONS(1664), - [anon_sym_DOLLARvaarg] = ACTIONS(1664), - [anon_sym_DOLLARvaref] = ACTIONS(1664), - [anon_sym_DOLLARvaexpr] = ACTIONS(1664), - [anon_sym_true] = ACTIONS(1664), - [anon_sym_false] = ACTIONS(1664), - [anon_sym_null] = ACTIONS(1664), - [anon_sym_DOLLARvacount] = ACTIONS(1664), - [anon_sym_DOLLARappend] = ACTIONS(1664), - [anon_sym_DOLLARconcat] = ACTIONS(1664), - [anon_sym_DOLLAReval] = ACTIONS(1664), - [anon_sym_DOLLARis_const] = ACTIONS(1664), - [anon_sym_DOLLARsizeof] = ACTIONS(1664), - [anon_sym_DOLLARstringify] = ACTIONS(1664), - [anon_sym_DOLLARand] = ACTIONS(1664), - [anon_sym_DOLLARdefined] = ACTIONS(1664), - [anon_sym_DOLLARembed] = ACTIONS(1664), - [anon_sym_DOLLARor] = ACTIONS(1664), - [anon_sym_DOLLARfeature] = ACTIONS(1664), - [anon_sym_DOLLARassignable] = ACTIONS(1664), - [anon_sym_BANG] = ACTIONS(1666), - [anon_sym_TILDE] = ACTIONS(1666), - [anon_sym_PLUS_PLUS] = ACTIONS(1666), - [anon_sym_DASH_DASH] = ACTIONS(1666), - [anon_sym_typeid] = ACTIONS(1664), - [anon_sym_LBRACE_PIPE] = ACTIONS(1666), - [anon_sym_void] = ACTIONS(1664), - [anon_sym_bool] = ACTIONS(1664), - [anon_sym_char] = ACTIONS(1664), - [anon_sym_ichar] = ACTIONS(1664), - [anon_sym_short] = ACTIONS(1664), - [anon_sym_ushort] = ACTIONS(1664), - [anon_sym_uint] = ACTIONS(1664), - [anon_sym_long] = ACTIONS(1664), - [anon_sym_ulong] = ACTIONS(1664), - [anon_sym_int128] = ACTIONS(1664), - [anon_sym_uint128] = ACTIONS(1664), - [anon_sym_float] = ACTIONS(1664), - [anon_sym_double] = ACTIONS(1664), - [anon_sym_float16] = ACTIONS(1664), - [anon_sym_bfloat16] = ACTIONS(1664), - [anon_sym_float128] = ACTIONS(1664), - [anon_sym_iptr] = ACTIONS(1664), - [anon_sym_uptr] = ACTIONS(1664), - [anon_sym_isz] = ACTIONS(1664), - [anon_sym_usz] = ACTIONS(1664), - [anon_sym_anyfault] = ACTIONS(1664), - [anon_sym_any] = ACTIONS(1664), - [anon_sym_DOLLARtypeof] = ACTIONS(1664), - [anon_sym_DOLLARtypefrom] = ACTIONS(1664), - [anon_sym_DOLLARvatype] = ACTIONS(1664), - [anon_sym_DOLLARevaltype] = ACTIONS(1664), - [sym_real_literal] = ACTIONS(1666), + [sym_ident] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1523), + [anon_sym_SQUOTE] = ACTIONS(1523), + [anon_sym_DQUOTE] = ACTIONS(1523), + [anon_sym_BQUOTE] = ACTIONS(1523), + [sym_bytes_literal] = ACTIONS(1523), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1521), + [sym_at_ident] = ACTIONS(1523), + [sym_hash_ident] = ACTIONS(1523), + [sym_type_ident] = ACTIONS(1523), + [sym_ct_type_ident] = ACTIONS(1523), + [sym_const_ident] = ACTIONS(1521), + [sym_builtin] = ACTIONS(1523), + [anon_sym_LPAREN] = ACTIONS(1523), + [anon_sym_AMP] = ACTIONS(1521), + [anon_sym_static] = ACTIONS(1521), + [anon_sym_tlocal] = ACTIONS(1521), + [anon_sym_SEMI] = ACTIONS(1523), + [anon_sym_fn] = ACTIONS(1521), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_const] = ACTIONS(1521), + [anon_sym_var] = ACTIONS(1521), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_continue] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1521), + [anon_sym_defer] = ACTIONS(1521), + [anon_sym_assert] = ACTIONS(1521), + [anon_sym_nextcase] = ACTIONS(1521), + [anon_sym_switch] = ACTIONS(1521), + [anon_sym_AMP_AMP] = ACTIONS(1523), + [anon_sym_if] = ACTIONS(1521), + [anon_sym_for] = ACTIONS(1521), + [anon_sym_foreach] = ACTIONS(1521), + [anon_sym_foreach_r] = ACTIONS(1521), + [anon_sym_while] = ACTIONS(1521), + [anon_sym_do] = ACTIONS(1521), + [anon_sym_int] = ACTIONS(1521), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), + [anon_sym_asm] = ACTIONS(1521), + [anon_sym_DOLLARassert] = ACTIONS(1521), + [anon_sym_DOLLARerror] = ACTIONS(1521), + [anon_sym_DOLLARecho] = ACTIONS(1521), + [anon_sym_DOLLARif] = ACTIONS(1521), + [anon_sym_DOLLARswitch] = ACTIONS(1521), + [anon_sym_DOLLARfor] = ACTIONS(1521), + [anon_sym_DOLLARendfor] = ACTIONS(1521), + [anon_sym_DOLLARforeach] = ACTIONS(1521), + [anon_sym_DOLLARalignof] = ACTIONS(1521), + [anon_sym_DOLLARextnameof] = ACTIONS(1521), + [anon_sym_DOLLARnameof] = ACTIONS(1521), + [anon_sym_DOLLARoffsetof] = ACTIONS(1521), + [anon_sym_DOLLARqnameof] = ACTIONS(1521), + [anon_sym_DOLLARvaconst] = ACTIONS(1521), + [anon_sym_DOLLARvaarg] = ACTIONS(1521), + [anon_sym_DOLLARvaref] = ACTIONS(1521), + [anon_sym_DOLLARvaexpr] = ACTIONS(1521), + [anon_sym_true] = ACTIONS(1521), + [anon_sym_false] = ACTIONS(1521), + [anon_sym_null] = ACTIONS(1521), + [anon_sym_DOLLARvacount] = ACTIONS(1521), + [anon_sym_DOLLARappend] = ACTIONS(1521), + [anon_sym_DOLLARconcat] = ACTIONS(1521), + [anon_sym_DOLLAReval] = ACTIONS(1521), + [anon_sym_DOLLARis_const] = ACTIONS(1521), + [anon_sym_DOLLARsizeof] = ACTIONS(1521), + [anon_sym_DOLLARstringify] = ACTIONS(1521), + [anon_sym_DOLLARand] = ACTIONS(1521), + [anon_sym_DOLLARdefined] = ACTIONS(1521), + [anon_sym_DOLLARembed] = ACTIONS(1521), + [anon_sym_DOLLARor] = ACTIONS(1521), + [anon_sym_DOLLARfeature] = ACTIONS(1521), + [anon_sym_DOLLARassignable] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1523), + [anon_sym_TILDE] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_typeid] = ACTIONS(1521), + [anon_sym_LBRACE_PIPE] = ACTIONS(1523), + [anon_sym_void] = ACTIONS(1521), + [anon_sym_bool] = ACTIONS(1521), + [anon_sym_char] = ACTIONS(1521), + [anon_sym_ichar] = ACTIONS(1521), + [anon_sym_short] = ACTIONS(1521), + [anon_sym_ushort] = ACTIONS(1521), + [anon_sym_uint] = ACTIONS(1521), + [anon_sym_long] = ACTIONS(1521), + [anon_sym_ulong] = ACTIONS(1521), + [anon_sym_int128] = ACTIONS(1521), + [anon_sym_uint128] = ACTIONS(1521), + [anon_sym_float] = ACTIONS(1521), + [anon_sym_double] = ACTIONS(1521), + [anon_sym_float16] = ACTIONS(1521), + [anon_sym_bfloat16] = ACTIONS(1521), + [anon_sym_float128] = ACTIONS(1521), + [anon_sym_iptr] = ACTIONS(1521), + [anon_sym_uptr] = ACTIONS(1521), + [anon_sym_isz] = ACTIONS(1521), + [anon_sym_usz] = ACTIONS(1521), + [anon_sym_anyfault] = ACTIONS(1521), + [anon_sym_any] = ACTIONS(1521), + [anon_sym_DOLLARtypeof] = ACTIONS(1521), + [anon_sym_DOLLARtypefrom] = ACTIONS(1521), + [anon_sym_DOLLARvatype] = ACTIONS(1521), + [anon_sym_DOLLARevaltype] = ACTIONS(1521), + [sym_real_literal] = ACTIONS(1523), }, [634] = { [sym_line_comment] = STATE(634), [sym_doc_comment] = STATE(634), [sym_block_comment] = STATE(634), - [sym_ident] = ACTIONS(1660), - [sym_integer_literal] = ACTIONS(1662), - [anon_sym_SQUOTE] = ACTIONS(1662), - [anon_sym_DQUOTE] = ACTIONS(1662), - [anon_sym_BQUOTE] = ACTIONS(1662), - [sym_bytes_literal] = ACTIONS(1662), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1660), - [sym_at_ident] = ACTIONS(1662), - [sym_hash_ident] = ACTIONS(1662), - [sym_type_ident] = ACTIONS(1662), - [sym_ct_type_ident] = ACTIONS(1662), - [sym_const_ident] = ACTIONS(1660), - [sym_builtin] = ACTIONS(1662), - [anon_sym_LPAREN] = ACTIONS(1662), - [anon_sym_AMP] = ACTIONS(1660), - [anon_sym_static] = ACTIONS(1660), - [anon_sym_tlocal] = ACTIONS(1660), - [anon_sym_SEMI] = ACTIONS(1662), - [anon_sym_fn] = ACTIONS(1660), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_const] = ACTIONS(1660), - [anon_sym_var] = ACTIONS(1660), - [anon_sym_return] = ACTIONS(1660), - [anon_sym_continue] = ACTIONS(1660), - [anon_sym_break] = ACTIONS(1660), - [anon_sym_defer] = ACTIONS(1660), - [anon_sym_assert] = ACTIONS(1660), - [anon_sym_nextcase] = ACTIONS(1660), - [anon_sym_switch] = ACTIONS(1660), - [anon_sym_AMP_AMP] = ACTIONS(1662), - [anon_sym_if] = ACTIONS(1660), - [anon_sym_for] = ACTIONS(1660), - [anon_sym_foreach] = ACTIONS(1660), - [anon_sym_foreach_r] = ACTIONS(1660), - [anon_sym_while] = ACTIONS(1660), - [anon_sym_do] = ACTIONS(1660), - [anon_sym_int] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1660), - [anon_sym_DASH] = ACTIONS(1660), - [anon_sym_STAR] = ACTIONS(1662), - [anon_sym_asm] = ACTIONS(1660), - [anon_sym_DOLLARassert] = ACTIONS(1660), - [anon_sym_DOLLARerror] = ACTIONS(1660), - [anon_sym_DOLLARecho] = ACTIONS(1660), - [anon_sym_DOLLARif] = ACTIONS(1660), - [anon_sym_DOLLARswitch] = ACTIONS(1660), - [anon_sym_DOLLARfor] = ACTIONS(1660), - [anon_sym_DOLLARforeach] = ACTIONS(1660), - [anon_sym_DOLLARendforeach] = ACTIONS(1660), - [anon_sym_DOLLARalignof] = ACTIONS(1660), - [anon_sym_DOLLARextnameof] = ACTIONS(1660), - [anon_sym_DOLLARnameof] = ACTIONS(1660), - [anon_sym_DOLLARoffsetof] = ACTIONS(1660), - [anon_sym_DOLLARqnameof] = ACTIONS(1660), - [anon_sym_DOLLARvaconst] = ACTIONS(1660), - [anon_sym_DOLLARvaarg] = ACTIONS(1660), - [anon_sym_DOLLARvaref] = ACTIONS(1660), - [anon_sym_DOLLARvaexpr] = ACTIONS(1660), - [anon_sym_true] = ACTIONS(1660), - [anon_sym_false] = ACTIONS(1660), - [anon_sym_null] = ACTIONS(1660), - [anon_sym_DOLLARvacount] = ACTIONS(1660), - [anon_sym_DOLLARappend] = ACTIONS(1660), - [anon_sym_DOLLARconcat] = ACTIONS(1660), - [anon_sym_DOLLAReval] = ACTIONS(1660), - [anon_sym_DOLLARis_const] = ACTIONS(1660), - [anon_sym_DOLLARsizeof] = ACTIONS(1660), - [anon_sym_DOLLARstringify] = ACTIONS(1660), - [anon_sym_DOLLARand] = ACTIONS(1660), - [anon_sym_DOLLARdefined] = ACTIONS(1660), - [anon_sym_DOLLARembed] = ACTIONS(1660), - [anon_sym_DOLLARor] = ACTIONS(1660), - [anon_sym_DOLLARfeature] = ACTIONS(1660), - [anon_sym_DOLLARassignable] = ACTIONS(1660), - [anon_sym_BANG] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1662), - [anon_sym_PLUS_PLUS] = ACTIONS(1662), - [anon_sym_DASH_DASH] = ACTIONS(1662), - [anon_sym_typeid] = ACTIONS(1660), - [anon_sym_LBRACE_PIPE] = ACTIONS(1662), - [anon_sym_void] = ACTIONS(1660), - [anon_sym_bool] = ACTIONS(1660), - [anon_sym_char] = ACTIONS(1660), - [anon_sym_ichar] = ACTIONS(1660), - [anon_sym_short] = ACTIONS(1660), - [anon_sym_ushort] = ACTIONS(1660), - [anon_sym_uint] = ACTIONS(1660), - [anon_sym_long] = ACTIONS(1660), - [anon_sym_ulong] = ACTIONS(1660), - [anon_sym_int128] = ACTIONS(1660), - [anon_sym_uint128] = ACTIONS(1660), - [anon_sym_float] = ACTIONS(1660), - [anon_sym_double] = ACTIONS(1660), - [anon_sym_float16] = ACTIONS(1660), - [anon_sym_bfloat16] = ACTIONS(1660), - [anon_sym_float128] = ACTIONS(1660), - [anon_sym_iptr] = ACTIONS(1660), - [anon_sym_uptr] = ACTIONS(1660), - [anon_sym_isz] = ACTIONS(1660), - [anon_sym_usz] = ACTIONS(1660), - [anon_sym_anyfault] = ACTIONS(1660), - [anon_sym_any] = ACTIONS(1660), - [anon_sym_DOLLARtypeof] = ACTIONS(1660), - [anon_sym_DOLLARtypefrom] = ACTIONS(1660), - [anon_sym_DOLLARvatype] = ACTIONS(1660), - [anon_sym_DOLLARevaltype] = ACTIONS(1660), - [sym_real_literal] = ACTIONS(1662), + [sym_ident] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1527), + [anon_sym_SQUOTE] = ACTIONS(1527), + [anon_sym_DQUOTE] = ACTIONS(1527), + [anon_sym_BQUOTE] = ACTIONS(1527), + [sym_bytes_literal] = ACTIONS(1527), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1525), + [sym_at_ident] = ACTIONS(1527), + [sym_hash_ident] = ACTIONS(1527), + [sym_type_ident] = ACTIONS(1527), + [sym_ct_type_ident] = ACTIONS(1527), + [sym_const_ident] = ACTIONS(1525), + [sym_builtin] = ACTIONS(1527), + [anon_sym_LPAREN] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_static] = ACTIONS(1525), + [anon_sym_tlocal] = ACTIONS(1525), + [anon_sym_SEMI] = ACTIONS(1527), + [anon_sym_fn] = ACTIONS(1525), + [anon_sym_LBRACE] = ACTIONS(1525), + [anon_sym_const] = ACTIONS(1525), + [anon_sym_var] = ACTIONS(1525), + [anon_sym_return] = ACTIONS(1525), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_break] = ACTIONS(1525), + [anon_sym_defer] = ACTIONS(1525), + [anon_sym_assert] = ACTIONS(1525), + [anon_sym_nextcase] = ACTIONS(1525), + [anon_sym_switch] = ACTIONS(1525), + [anon_sym_AMP_AMP] = ACTIONS(1527), + [anon_sym_if] = ACTIONS(1525), + [anon_sym_for] = ACTIONS(1525), + [anon_sym_foreach] = ACTIONS(1525), + [anon_sym_foreach_r] = ACTIONS(1525), + [anon_sym_while] = ACTIONS(1525), + [anon_sym_do] = ACTIONS(1525), + [anon_sym_int] = ACTIONS(1525), + [anon_sym_PLUS] = ACTIONS(1525), + [anon_sym_DASH] = ACTIONS(1525), + [anon_sym_STAR] = ACTIONS(1527), + [anon_sym_asm] = ACTIONS(1525), + [anon_sym_DOLLARassert] = ACTIONS(1525), + [anon_sym_DOLLARerror] = ACTIONS(1525), + [anon_sym_DOLLARecho] = ACTIONS(1525), + [anon_sym_DOLLARif] = ACTIONS(1525), + [anon_sym_DOLLARswitch] = ACTIONS(1525), + [anon_sym_DOLLARfor] = ACTIONS(1525), + [anon_sym_DOLLARendfor] = ACTIONS(1525), + [anon_sym_DOLLARforeach] = ACTIONS(1525), + [anon_sym_DOLLARalignof] = ACTIONS(1525), + [anon_sym_DOLLARextnameof] = ACTIONS(1525), + [anon_sym_DOLLARnameof] = ACTIONS(1525), + [anon_sym_DOLLARoffsetof] = ACTIONS(1525), + [anon_sym_DOLLARqnameof] = ACTIONS(1525), + [anon_sym_DOLLARvaconst] = ACTIONS(1525), + [anon_sym_DOLLARvaarg] = ACTIONS(1525), + [anon_sym_DOLLARvaref] = ACTIONS(1525), + [anon_sym_DOLLARvaexpr] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(1525), + [anon_sym_false] = ACTIONS(1525), + [anon_sym_null] = ACTIONS(1525), + [anon_sym_DOLLARvacount] = ACTIONS(1525), + [anon_sym_DOLLARappend] = ACTIONS(1525), + [anon_sym_DOLLARconcat] = ACTIONS(1525), + [anon_sym_DOLLAReval] = ACTIONS(1525), + [anon_sym_DOLLARis_const] = ACTIONS(1525), + [anon_sym_DOLLARsizeof] = ACTIONS(1525), + [anon_sym_DOLLARstringify] = ACTIONS(1525), + [anon_sym_DOLLARand] = ACTIONS(1525), + [anon_sym_DOLLARdefined] = ACTIONS(1525), + [anon_sym_DOLLARembed] = ACTIONS(1525), + [anon_sym_DOLLARor] = ACTIONS(1525), + [anon_sym_DOLLARfeature] = ACTIONS(1525), + [anon_sym_DOLLARassignable] = ACTIONS(1525), + [anon_sym_BANG] = ACTIONS(1527), + [anon_sym_TILDE] = ACTIONS(1527), + [anon_sym_PLUS_PLUS] = ACTIONS(1527), + [anon_sym_DASH_DASH] = ACTIONS(1527), + [anon_sym_typeid] = ACTIONS(1525), + [anon_sym_LBRACE_PIPE] = ACTIONS(1527), + [anon_sym_void] = ACTIONS(1525), + [anon_sym_bool] = ACTIONS(1525), + [anon_sym_char] = ACTIONS(1525), + [anon_sym_ichar] = ACTIONS(1525), + [anon_sym_short] = ACTIONS(1525), + [anon_sym_ushort] = ACTIONS(1525), + [anon_sym_uint] = ACTIONS(1525), + [anon_sym_long] = ACTIONS(1525), + [anon_sym_ulong] = ACTIONS(1525), + [anon_sym_int128] = ACTIONS(1525), + [anon_sym_uint128] = ACTIONS(1525), + [anon_sym_float] = ACTIONS(1525), + [anon_sym_double] = ACTIONS(1525), + [anon_sym_float16] = ACTIONS(1525), + [anon_sym_bfloat16] = ACTIONS(1525), + [anon_sym_float128] = ACTIONS(1525), + [anon_sym_iptr] = ACTIONS(1525), + [anon_sym_uptr] = ACTIONS(1525), + [anon_sym_isz] = ACTIONS(1525), + [anon_sym_usz] = ACTIONS(1525), + [anon_sym_anyfault] = ACTIONS(1525), + [anon_sym_any] = ACTIONS(1525), + [anon_sym_DOLLARtypeof] = ACTIONS(1525), + [anon_sym_DOLLARtypefrom] = ACTIONS(1525), + [anon_sym_DOLLARvatype] = ACTIONS(1525), + [anon_sym_DOLLARevaltype] = ACTIONS(1525), + [sym_real_literal] = ACTIONS(1527), }, [635] = { [sym_line_comment] = STATE(635), [sym_doc_comment] = STATE(635), [sym_block_comment] = STATE(635), - [sym_ident] = ACTIONS(1678), - [sym_integer_literal] = ACTIONS(1680), - [anon_sym_SQUOTE] = ACTIONS(1680), - [anon_sym_DQUOTE] = ACTIONS(1680), - [anon_sym_BQUOTE] = ACTIONS(1680), - [sym_bytes_literal] = ACTIONS(1680), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1678), - [sym_at_ident] = ACTIONS(1680), - [sym_hash_ident] = ACTIONS(1680), - [sym_type_ident] = ACTIONS(1680), - [sym_ct_type_ident] = ACTIONS(1680), - [sym_const_ident] = ACTIONS(1678), - [sym_builtin] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1680), - [anon_sym_AMP] = ACTIONS(1678), - [anon_sym_static] = ACTIONS(1678), - [anon_sym_tlocal] = ACTIONS(1678), - [anon_sym_SEMI] = ACTIONS(1680), - [anon_sym_fn] = ACTIONS(1678), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_const] = ACTIONS(1678), - [anon_sym_var] = ACTIONS(1678), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_continue] = ACTIONS(1678), - [anon_sym_break] = ACTIONS(1678), - [anon_sym_defer] = ACTIONS(1678), - [anon_sym_assert] = ACTIONS(1678), - [anon_sym_nextcase] = ACTIONS(1678), - [anon_sym_switch] = ACTIONS(1678), - [anon_sym_AMP_AMP] = ACTIONS(1680), - [anon_sym_if] = ACTIONS(1678), - [anon_sym_for] = ACTIONS(1678), - [anon_sym_foreach] = ACTIONS(1678), - [anon_sym_foreach_r] = ACTIONS(1678), - [anon_sym_while] = ACTIONS(1678), - [anon_sym_do] = ACTIONS(1678), - [anon_sym_int] = ACTIONS(1678), - [anon_sym_PLUS] = ACTIONS(1678), - [anon_sym_DASH] = ACTIONS(1678), - [anon_sym_STAR] = ACTIONS(1680), - [anon_sym_asm] = ACTIONS(1678), - [anon_sym_DOLLARassert] = ACTIONS(1678), - [anon_sym_DOLLARerror] = ACTIONS(1678), - [anon_sym_DOLLARecho] = ACTIONS(1678), - [anon_sym_DOLLARif] = ACTIONS(1678), - [anon_sym_DOLLARswitch] = ACTIONS(1678), - [anon_sym_DOLLARfor] = ACTIONS(1678), - [anon_sym_DOLLARforeach] = ACTIONS(1678), - [anon_sym_DOLLARendforeach] = ACTIONS(1678), - [anon_sym_DOLLARalignof] = ACTIONS(1678), - [anon_sym_DOLLARextnameof] = ACTIONS(1678), - [anon_sym_DOLLARnameof] = ACTIONS(1678), - [anon_sym_DOLLARoffsetof] = ACTIONS(1678), - [anon_sym_DOLLARqnameof] = ACTIONS(1678), - [anon_sym_DOLLARvaconst] = ACTIONS(1678), - [anon_sym_DOLLARvaarg] = ACTIONS(1678), - [anon_sym_DOLLARvaref] = ACTIONS(1678), - [anon_sym_DOLLARvaexpr] = ACTIONS(1678), - [anon_sym_true] = ACTIONS(1678), - [anon_sym_false] = ACTIONS(1678), - [anon_sym_null] = ACTIONS(1678), - [anon_sym_DOLLARvacount] = ACTIONS(1678), - [anon_sym_DOLLARappend] = ACTIONS(1678), - [anon_sym_DOLLARconcat] = ACTIONS(1678), - [anon_sym_DOLLAReval] = ACTIONS(1678), - [anon_sym_DOLLARis_const] = ACTIONS(1678), - [anon_sym_DOLLARsizeof] = ACTIONS(1678), - [anon_sym_DOLLARstringify] = ACTIONS(1678), - [anon_sym_DOLLARand] = ACTIONS(1678), - [anon_sym_DOLLARdefined] = ACTIONS(1678), - [anon_sym_DOLLARembed] = ACTIONS(1678), - [anon_sym_DOLLARor] = ACTIONS(1678), - [anon_sym_DOLLARfeature] = ACTIONS(1678), - [anon_sym_DOLLARassignable] = ACTIONS(1678), - [anon_sym_BANG] = ACTIONS(1680), - [anon_sym_TILDE] = ACTIONS(1680), - [anon_sym_PLUS_PLUS] = ACTIONS(1680), - [anon_sym_DASH_DASH] = ACTIONS(1680), - [anon_sym_typeid] = ACTIONS(1678), - [anon_sym_LBRACE_PIPE] = ACTIONS(1680), - [anon_sym_void] = ACTIONS(1678), - [anon_sym_bool] = ACTIONS(1678), - [anon_sym_char] = ACTIONS(1678), - [anon_sym_ichar] = ACTIONS(1678), - [anon_sym_short] = ACTIONS(1678), - [anon_sym_ushort] = ACTIONS(1678), - [anon_sym_uint] = ACTIONS(1678), - [anon_sym_long] = ACTIONS(1678), - [anon_sym_ulong] = ACTIONS(1678), - [anon_sym_int128] = ACTIONS(1678), - [anon_sym_uint128] = ACTIONS(1678), - [anon_sym_float] = ACTIONS(1678), - [anon_sym_double] = ACTIONS(1678), - [anon_sym_float16] = ACTIONS(1678), - [anon_sym_bfloat16] = ACTIONS(1678), - [anon_sym_float128] = ACTIONS(1678), - [anon_sym_iptr] = ACTIONS(1678), - [anon_sym_uptr] = ACTIONS(1678), - [anon_sym_isz] = ACTIONS(1678), - [anon_sym_usz] = ACTIONS(1678), - [anon_sym_anyfault] = ACTIONS(1678), - [anon_sym_any] = ACTIONS(1678), - [anon_sym_DOLLARtypeof] = ACTIONS(1678), - [anon_sym_DOLLARtypefrom] = ACTIONS(1678), - [anon_sym_DOLLARvatype] = ACTIONS(1678), - [anon_sym_DOLLARevaltype] = ACTIONS(1678), - [sym_real_literal] = ACTIONS(1680), + [sym_ident] = ACTIONS(1529), + [sym_integer_literal] = ACTIONS(1531), + [anon_sym_SQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [anon_sym_BQUOTE] = ACTIONS(1531), + [sym_bytes_literal] = ACTIONS(1531), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1529), + [sym_at_ident] = ACTIONS(1531), + [sym_hash_ident] = ACTIONS(1531), + [sym_type_ident] = ACTIONS(1531), + [sym_ct_type_ident] = ACTIONS(1531), + [sym_const_ident] = ACTIONS(1529), + [sym_builtin] = ACTIONS(1531), + [anon_sym_LPAREN] = ACTIONS(1531), + [anon_sym_AMP] = ACTIONS(1529), + [anon_sym_static] = ACTIONS(1529), + [anon_sym_tlocal] = ACTIONS(1529), + [anon_sym_SEMI] = ACTIONS(1531), + [anon_sym_fn] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1529), + [anon_sym_const] = ACTIONS(1529), + [anon_sym_var] = ACTIONS(1529), + [anon_sym_return] = ACTIONS(1529), + [anon_sym_continue] = ACTIONS(1529), + [anon_sym_break] = ACTIONS(1529), + [anon_sym_defer] = ACTIONS(1529), + [anon_sym_assert] = ACTIONS(1529), + [anon_sym_nextcase] = ACTIONS(1529), + [anon_sym_switch] = ACTIONS(1529), + [anon_sym_AMP_AMP] = ACTIONS(1531), + [anon_sym_if] = ACTIONS(1529), + [anon_sym_for] = ACTIONS(1529), + [anon_sym_foreach] = ACTIONS(1529), + [anon_sym_foreach_r] = ACTIONS(1529), + [anon_sym_while] = ACTIONS(1529), + [anon_sym_do] = ACTIONS(1529), + [anon_sym_int] = ACTIONS(1529), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_STAR] = ACTIONS(1531), + [anon_sym_asm] = ACTIONS(1529), + [anon_sym_DOLLARassert] = ACTIONS(1529), + [anon_sym_DOLLARerror] = ACTIONS(1529), + [anon_sym_DOLLARecho] = ACTIONS(1529), + [anon_sym_DOLLARif] = ACTIONS(1529), + [anon_sym_DOLLARswitch] = ACTIONS(1529), + [anon_sym_DOLLARfor] = ACTIONS(1529), + [anon_sym_DOLLARendfor] = ACTIONS(1529), + [anon_sym_DOLLARforeach] = ACTIONS(1529), + [anon_sym_DOLLARalignof] = ACTIONS(1529), + [anon_sym_DOLLARextnameof] = ACTIONS(1529), + [anon_sym_DOLLARnameof] = ACTIONS(1529), + [anon_sym_DOLLARoffsetof] = ACTIONS(1529), + [anon_sym_DOLLARqnameof] = ACTIONS(1529), + [anon_sym_DOLLARvaconst] = ACTIONS(1529), + [anon_sym_DOLLARvaarg] = ACTIONS(1529), + [anon_sym_DOLLARvaref] = ACTIONS(1529), + [anon_sym_DOLLARvaexpr] = ACTIONS(1529), + [anon_sym_true] = ACTIONS(1529), + [anon_sym_false] = ACTIONS(1529), + [anon_sym_null] = ACTIONS(1529), + [anon_sym_DOLLARvacount] = ACTIONS(1529), + [anon_sym_DOLLARappend] = ACTIONS(1529), + [anon_sym_DOLLARconcat] = ACTIONS(1529), + [anon_sym_DOLLAReval] = ACTIONS(1529), + [anon_sym_DOLLARis_const] = ACTIONS(1529), + [anon_sym_DOLLARsizeof] = ACTIONS(1529), + [anon_sym_DOLLARstringify] = ACTIONS(1529), + [anon_sym_DOLLARand] = ACTIONS(1529), + [anon_sym_DOLLARdefined] = ACTIONS(1529), + [anon_sym_DOLLARembed] = ACTIONS(1529), + [anon_sym_DOLLARor] = ACTIONS(1529), + [anon_sym_DOLLARfeature] = ACTIONS(1529), + [anon_sym_DOLLARassignable] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1531), + [anon_sym_TILDE] = ACTIONS(1531), + [anon_sym_PLUS_PLUS] = ACTIONS(1531), + [anon_sym_DASH_DASH] = ACTIONS(1531), + [anon_sym_typeid] = ACTIONS(1529), + [anon_sym_LBRACE_PIPE] = ACTIONS(1531), + [anon_sym_void] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_ichar] = ACTIONS(1529), + [anon_sym_short] = ACTIONS(1529), + [anon_sym_ushort] = ACTIONS(1529), + [anon_sym_uint] = ACTIONS(1529), + [anon_sym_long] = ACTIONS(1529), + [anon_sym_ulong] = ACTIONS(1529), + [anon_sym_int128] = ACTIONS(1529), + [anon_sym_uint128] = ACTIONS(1529), + [anon_sym_float] = ACTIONS(1529), + [anon_sym_double] = ACTIONS(1529), + [anon_sym_float16] = ACTIONS(1529), + [anon_sym_bfloat16] = ACTIONS(1529), + [anon_sym_float128] = ACTIONS(1529), + [anon_sym_iptr] = ACTIONS(1529), + [anon_sym_uptr] = ACTIONS(1529), + [anon_sym_isz] = ACTIONS(1529), + [anon_sym_usz] = ACTIONS(1529), + [anon_sym_anyfault] = ACTIONS(1529), + [anon_sym_any] = ACTIONS(1529), + [anon_sym_DOLLARtypeof] = ACTIONS(1529), + [anon_sym_DOLLARtypefrom] = ACTIONS(1529), + [anon_sym_DOLLARvatype] = ACTIONS(1529), + [anon_sym_DOLLARevaltype] = ACTIONS(1529), + [sym_real_literal] = ACTIONS(1531), }, [636] = { [sym_line_comment] = STATE(636), [sym_doc_comment] = STATE(636), [sym_block_comment] = STATE(636), - [sym_ident] = ACTIONS(1648), - [sym_integer_literal] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1650), - [anon_sym_BQUOTE] = ACTIONS(1650), - [sym_bytes_literal] = ACTIONS(1650), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1648), - [sym_at_ident] = ACTIONS(1650), - [sym_hash_ident] = ACTIONS(1650), - [sym_type_ident] = ACTIONS(1650), - [sym_ct_type_ident] = ACTIONS(1650), - [sym_const_ident] = ACTIONS(1648), - [sym_builtin] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_AMP] = ACTIONS(1648), - [anon_sym_static] = ACTIONS(1648), - [anon_sym_tlocal] = ACTIONS(1648), - [anon_sym_SEMI] = ACTIONS(1650), - [anon_sym_fn] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_const] = ACTIONS(1648), - [anon_sym_var] = ACTIONS(1648), - [anon_sym_return] = ACTIONS(1648), - [anon_sym_continue] = ACTIONS(1648), - [anon_sym_break] = ACTIONS(1648), - [anon_sym_defer] = ACTIONS(1648), - [anon_sym_assert] = ACTIONS(1648), - [anon_sym_nextcase] = ACTIONS(1648), - [anon_sym_switch] = ACTIONS(1648), - [anon_sym_AMP_AMP] = ACTIONS(1650), - [anon_sym_if] = ACTIONS(1648), - [anon_sym_for] = ACTIONS(1648), - [anon_sym_foreach] = ACTIONS(1648), - [anon_sym_foreach_r] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1648), - [anon_sym_do] = ACTIONS(1648), - [anon_sym_int] = ACTIONS(1648), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_STAR] = ACTIONS(1650), - [anon_sym_asm] = ACTIONS(1648), - [anon_sym_DOLLARassert] = ACTIONS(1648), - [anon_sym_DOLLARerror] = ACTIONS(1648), - [anon_sym_DOLLARecho] = ACTIONS(1648), - [anon_sym_DOLLARif] = ACTIONS(1648), - [anon_sym_DOLLARswitch] = ACTIONS(1648), - [anon_sym_DOLLARfor] = ACTIONS(1648), - [anon_sym_DOLLARforeach] = ACTIONS(1648), - [anon_sym_DOLLARendforeach] = ACTIONS(1648), - [anon_sym_DOLLARalignof] = ACTIONS(1648), - [anon_sym_DOLLARextnameof] = ACTIONS(1648), - [anon_sym_DOLLARnameof] = ACTIONS(1648), - [anon_sym_DOLLARoffsetof] = ACTIONS(1648), - [anon_sym_DOLLARqnameof] = ACTIONS(1648), - [anon_sym_DOLLARvaconst] = ACTIONS(1648), - [anon_sym_DOLLARvaarg] = ACTIONS(1648), - [anon_sym_DOLLARvaref] = ACTIONS(1648), - [anon_sym_DOLLARvaexpr] = ACTIONS(1648), - [anon_sym_true] = ACTIONS(1648), - [anon_sym_false] = ACTIONS(1648), - [anon_sym_null] = ACTIONS(1648), - [anon_sym_DOLLARvacount] = ACTIONS(1648), - [anon_sym_DOLLARappend] = ACTIONS(1648), - [anon_sym_DOLLARconcat] = ACTIONS(1648), - [anon_sym_DOLLAReval] = ACTIONS(1648), - [anon_sym_DOLLARis_const] = ACTIONS(1648), - [anon_sym_DOLLARsizeof] = ACTIONS(1648), - [anon_sym_DOLLARstringify] = ACTIONS(1648), - [anon_sym_DOLLARand] = ACTIONS(1648), - [anon_sym_DOLLARdefined] = ACTIONS(1648), - [anon_sym_DOLLARembed] = ACTIONS(1648), - [anon_sym_DOLLARor] = ACTIONS(1648), - [anon_sym_DOLLARfeature] = ACTIONS(1648), - [anon_sym_DOLLARassignable] = ACTIONS(1648), - [anon_sym_BANG] = ACTIONS(1650), - [anon_sym_TILDE] = ACTIONS(1650), - [anon_sym_PLUS_PLUS] = ACTIONS(1650), - [anon_sym_DASH_DASH] = ACTIONS(1650), - [anon_sym_typeid] = ACTIONS(1648), - [anon_sym_LBRACE_PIPE] = ACTIONS(1650), - [anon_sym_void] = ACTIONS(1648), - [anon_sym_bool] = ACTIONS(1648), - [anon_sym_char] = ACTIONS(1648), - [anon_sym_ichar] = ACTIONS(1648), - [anon_sym_short] = ACTIONS(1648), - [anon_sym_ushort] = ACTIONS(1648), - [anon_sym_uint] = ACTIONS(1648), - [anon_sym_long] = ACTIONS(1648), - [anon_sym_ulong] = ACTIONS(1648), - [anon_sym_int128] = ACTIONS(1648), - [anon_sym_uint128] = ACTIONS(1648), - [anon_sym_float] = ACTIONS(1648), - [anon_sym_double] = ACTIONS(1648), - [anon_sym_float16] = ACTIONS(1648), - [anon_sym_bfloat16] = ACTIONS(1648), - [anon_sym_float128] = ACTIONS(1648), - [anon_sym_iptr] = ACTIONS(1648), - [anon_sym_uptr] = ACTIONS(1648), - [anon_sym_isz] = ACTIONS(1648), - [anon_sym_usz] = ACTIONS(1648), - [anon_sym_anyfault] = ACTIONS(1648), - [anon_sym_any] = ACTIONS(1648), - [anon_sym_DOLLARtypeof] = ACTIONS(1648), - [anon_sym_DOLLARtypefrom] = ACTIONS(1648), - [anon_sym_DOLLARvatype] = ACTIONS(1648), - [anon_sym_DOLLARevaltype] = ACTIONS(1648), - [sym_real_literal] = ACTIONS(1650), + [sym_ident] = ACTIONS(1565), + [sym_integer_literal] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_DQUOTE] = ACTIONS(1567), + [anon_sym_BQUOTE] = ACTIONS(1567), + [sym_bytes_literal] = ACTIONS(1567), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1565), + [sym_at_ident] = ACTIONS(1567), + [sym_hash_ident] = ACTIONS(1567), + [sym_type_ident] = ACTIONS(1567), + [sym_ct_type_ident] = ACTIONS(1567), + [sym_const_ident] = ACTIONS(1565), + [sym_builtin] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_static] = ACTIONS(1565), + [anon_sym_tlocal] = ACTIONS(1565), + [anon_sym_SEMI] = ACTIONS(1567), + [anon_sym_fn] = ACTIONS(1565), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_const] = ACTIONS(1565), + [anon_sym_var] = ACTIONS(1565), + [anon_sym_return] = ACTIONS(1565), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_break] = ACTIONS(1565), + [anon_sym_defer] = ACTIONS(1565), + [anon_sym_assert] = ACTIONS(1565), + [anon_sym_nextcase] = ACTIONS(1565), + [anon_sym_switch] = ACTIONS(1565), + [anon_sym_AMP_AMP] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(1565), + [anon_sym_for] = ACTIONS(1565), + [anon_sym_foreach] = ACTIONS(1565), + [anon_sym_foreach_r] = ACTIONS(1565), + [anon_sym_while] = ACTIONS(1565), + [anon_sym_do] = ACTIONS(1565), + [anon_sym_int] = ACTIONS(1565), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_STAR] = ACTIONS(1567), + [anon_sym_asm] = ACTIONS(1565), + [anon_sym_DOLLARassert] = ACTIONS(1565), + [anon_sym_DOLLARerror] = ACTIONS(1565), + [anon_sym_DOLLARecho] = ACTIONS(1565), + [anon_sym_DOLLARif] = ACTIONS(1565), + [anon_sym_DOLLARswitch] = ACTIONS(1565), + [anon_sym_DOLLARfor] = ACTIONS(1565), + [anon_sym_DOLLARendfor] = ACTIONS(1565), + [anon_sym_DOLLARforeach] = ACTIONS(1565), + [anon_sym_DOLLARalignof] = ACTIONS(1565), + [anon_sym_DOLLARextnameof] = ACTIONS(1565), + [anon_sym_DOLLARnameof] = ACTIONS(1565), + [anon_sym_DOLLARoffsetof] = ACTIONS(1565), + [anon_sym_DOLLARqnameof] = ACTIONS(1565), + [anon_sym_DOLLARvaconst] = ACTIONS(1565), + [anon_sym_DOLLARvaarg] = ACTIONS(1565), + [anon_sym_DOLLARvaref] = ACTIONS(1565), + [anon_sym_DOLLARvaexpr] = ACTIONS(1565), + [anon_sym_true] = ACTIONS(1565), + [anon_sym_false] = ACTIONS(1565), + [anon_sym_null] = ACTIONS(1565), + [anon_sym_DOLLARvacount] = ACTIONS(1565), + [anon_sym_DOLLARappend] = ACTIONS(1565), + [anon_sym_DOLLARconcat] = ACTIONS(1565), + [anon_sym_DOLLAReval] = ACTIONS(1565), + [anon_sym_DOLLARis_const] = ACTIONS(1565), + [anon_sym_DOLLARsizeof] = ACTIONS(1565), + [anon_sym_DOLLARstringify] = ACTIONS(1565), + [anon_sym_DOLLARand] = ACTIONS(1565), + [anon_sym_DOLLARdefined] = ACTIONS(1565), + [anon_sym_DOLLARembed] = ACTIONS(1565), + [anon_sym_DOLLARor] = ACTIONS(1565), + [anon_sym_DOLLARfeature] = ACTIONS(1565), + [anon_sym_DOLLARassignable] = ACTIONS(1565), + [anon_sym_BANG] = ACTIONS(1567), + [anon_sym_TILDE] = ACTIONS(1567), + [anon_sym_PLUS_PLUS] = ACTIONS(1567), + [anon_sym_DASH_DASH] = ACTIONS(1567), + [anon_sym_typeid] = ACTIONS(1565), + [anon_sym_LBRACE_PIPE] = ACTIONS(1567), + [anon_sym_void] = ACTIONS(1565), + [anon_sym_bool] = ACTIONS(1565), + [anon_sym_char] = ACTIONS(1565), + [anon_sym_ichar] = ACTIONS(1565), + [anon_sym_short] = ACTIONS(1565), + [anon_sym_ushort] = ACTIONS(1565), + [anon_sym_uint] = ACTIONS(1565), + [anon_sym_long] = ACTIONS(1565), + [anon_sym_ulong] = ACTIONS(1565), + [anon_sym_int128] = ACTIONS(1565), + [anon_sym_uint128] = ACTIONS(1565), + [anon_sym_float] = ACTIONS(1565), + [anon_sym_double] = ACTIONS(1565), + [anon_sym_float16] = ACTIONS(1565), + [anon_sym_bfloat16] = ACTIONS(1565), + [anon_sym_float128] = ACTIONS(1565), + [anon_sym_iptr] = ACTIONS(1565), + [anon_sym_uptr] = ACTIONS(1565), + [anon_sym_isz] = ACTIONS(1565), + [anon_sym_usz] = ACTIONS(1565), + [anon_sym_anyfault] = ACTIONS(1565), + [anon_sym_any] = ACTIONS(1565), + [anon_sym_DOLLARtypeof] = ACTIONS(1565), + [anon_sym_DOLLARtypefrom] = ACTIONS(1565), + [anon_sym_DOLLARvatype] = ACTIONS(1565), + [anon_sym_DOLLARevaltype] = ACTIONS(1565), + [sym_real_literal] = ACTIONS(1567), }, [637] = { [sym_line_comment] = STATE(637), [sym_doc_comment] = STATE(637), [sym_block_comment] = STATE(637), - [sym_ident] = ACTIONS(1628), - [sym_integer_literal] = ACTIONS(1630), - [anon_sym_SQUOTE] = ACTIONS(1630), - [anon_sym_DQUOTE] = ACTIONS(1630), - [anon_sym_BQUOTE] = ACTIONS(1630), - [sym_bytes_literal] = ACTIONS(1630), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1628), - [sym_at_ident] = ACTIONS(1630), - [sym_hash_ident] = ACTIONS(1630), - [sym_type_ident] = ACTIONS(1630), - [sym_ct_type_ident] = ACTIONS(1630), - [sym_const_ident] = ACTIONS(1628), - [sym_builtin] = ACTIONS(1630), - [anon_sym_LPAREN] = ACTIONS(1630), - [anon_sym_AMP] = ACTIONS(1628), - [anon_sym_static] = ACTIONS(1628), - [anon_sym_tlocal] = ACTIONS(1628), - [anon_sym_SEMI] = ACTIONS(1630), - [anon_sym_fn] = ACTIONS(1628), - [anon_sym_LBRACE] = ACTIONS(1628), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_var] = ACTIONS(1628), - [anon_sym_return] = ACTIONS(1628), - [anon_sym_continue] = ACTIONS(1628), - [anon_sym_break] = ACTIONS(1628), - [anon_sym_defer] = ACTIONS(1628), - [anon_sym_assert] = ACTIONS(1628), - [anon_sym_nextcase] = ACTIONS(1628), - [anon_sym_switch] = ACTIONS(1628), - [anon_sym_AMP_AMP] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1628), - [anon_sym_for] = ACTIONS(1628), - [anon_sym_foreach] = ACTIONS(1628), - [anon_sym_foreach_r] = ACTIONS(1628), - [anon_sym_while] = ACTIONS(1628), - [anon_sym_do] = ACTIONS(1628), - [anon_sym_int] = ACTIONS(1628), - [anon_sym_PLUS] = ACTIONS(1628), - [anon_sym_DASH] = ACTIONS(1628), - [anon_sym_STAR] = ACTIONS(1630), - [anon_sym_asm] = ACTIONS(1628), - [anon_sym_DOLLARassert] = ACTIONS(1628), - [anon_sym_DOLLARerror] = ACTIONS(1628), - [anon_sym_DOLLARecho] = ACTIONS(1628), - [anon_sym_DOLLARif] = ACTIONS(1628), - [anon_sym_DOLLARswitch] = ACTIONS(1628), - [anon_sym_DOLLARfor] = ACTIONS(1628), - [anon_sym_DOLLARforeach] = ACTIONS(1628), - [anon_sym_DOLLARendforeach] = ACTIONS(1628), - [anon_sym_DOLLARalignof] = ACTIONS(1628), - [anon_sym_DOLLARextnameof] = ACTIONS(1628), - [anon_sym_DOLLARnameof] = ACTIONS(1628), - [anon_sym_DOLLARoffsetof] = ACTIONS(1628), - [anon_sym_DOLLARqnameof] = ACTIONS(1628), - [anon_sym_DOLLARvaconst] = ACTIONS(1628), - [anon_sym_DOLLARvaarg] = ACTIONS(1628), - [anon_sym_DOLLARvaref] = ACTIONS(1628), - [anon_sym_DOLLARvaexpr] = ACTIONS(1628), - [anon_sym_true] = ACTIONS(1628), - [anon_sym_false] = ACTIONS(1628), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_DOLLARvacount] = ACTIONS(1628), - [anon_sym_DOLLARappend] = ACTIONS(1628), - [anon_sym_DOLLARconcat] = ACTIONS(1628), - [anon_sym_DOLLAReval] = ACTIONS(1628), - [anon_sym_DOLLARis_const] = ACTIONS(1628), - [anon_sym_DOLLARsizeof] = ACTIONS(1628), - [anon_sym_DOLLARstringify] = ACTIONS(1628), - [anon_sym_DOLLARand] = ACTIONS(1628), - [anon_sym_DOLLARdefined] = ACTIONS(1628), - [anon_sym_DOLLARembed] = ACTIONS(1628), - [anon_sym_DOLLARor] = ACTIONS(1628), - [anon_sym_DOLLARfeature] = ACTIONS(1628), - [anon_sym_DOLLARassignable] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1630), - [anon_sym_TILDE] = ACTIONS(1630), - [anon_sym_PLUS_PLUS] = ACTIONS(1630), - [anon_sym_DASH_DASH] = ACTIONS(1630), - [anon_sym_typeid] = ACTIONS(1628), - [anon_sym_LBRACE_PIPE] = ACTIONS(1630), - [anon_sym_void] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_ichar] = ACTIONS(1628), - [anon_sym_short] = ACTIONS(1628), - [anon_sym_ushort] = ACTIONS(1628), - [anon_sym_uint] = ACTIONS(1628), - [anon_sym_long] = ACTIONS(1628), - [anon_sym_ulong] = ACTIONS(1628), - [anon_sym_int128] = ACTIONS(1628), - [anon_sym_uint128] = ACTIONS(1628), - [anon_sym_float] = ACTIONS(1628), - [anon_sym_double] = ACTIONS(1628), - [anon_sym_float16] = ACTIONS(1628), - [anon_sym_bfloat16] = ACTIONS(1628), - [anon_sym_float128] = ACTIONS(1628), - [anon_sym_iptr] = ACTIONS(1628), - [anon_sym_uptr] = ACTIONS(1628), - [anon_sym_isz] = ACTIONS(1628), - [anon_sym_usz] = ACTIONS(1628), - [anon_sym_anyfault] = ACTIONS(1628), - [anon_sym_any] = ACTIONS(1628), - [anon_sym_DOLLARtypeof] = ACTIONS(1628), - [anon_sym_DOLLARtypefrom] = ACTIONS(1628), - [anon_sym_DOLLARvatype] = ACTIONS(1628), - [anon_sym_DOLLARevaltype] = ACTIONS(1628), - [sym_real_literal] = ACTIONS(1630), + [sym_ident] = ACTIONS(1601), + [sym_integer_literal] = ACTIONS(1603), + [anon_sym_SQUOTE] = ACTIONS(1603), + [anon_sym_DQUOTE] = ACTIONS(1603), + [anon_sym_BQUOTE] = ACTIONS(1603), + [sym_bytes_literal] = ACTIONS(1603), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1601), + [sym_at_ident] = ACTIONS(1603), + [sym_hash_ident] = ACTIONS(1603), + [sym_type_ident] = ACTIONS(1603), + [sym_ct_type_ident] = ACTIONS(1603), + [sym_const_ident] = ACTIONS(1601), + [sym_builtin] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_static] = ACTIONS(1601), + [anon_sym_tlocal] = ACTIONS(1601), + [anon_sym_SEMI] = ACTIONS(1603), + [anon_sym_fn] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(1601), + [anon_sym_const] = ACTIONS(1601), + [anon_sym_var] = ACTIONS(1601), + [anon_sym_return] = ACTIONS(1601), + [anon_sym_continue] = ACTIONS(1601), + [anon_sym_break] = ACTIONS(1601), + [anon_sym_defer] = ACTIONS(1601), + [anon_sym_assert] = ACTIONS(1601), + [anon_sym_nextcase] = ACTIONS(1601), + [anon_sym_switch] = ACTIONS(1601), + [anon_sym_AMP_AMP] = ACTIONS(1603), + [anon_sym_if] = ACTIONS(1601), + [anon_sym_for] = ACTIONS(1601), + [anon_sym_foreach] = ACTIONS(1601), + [anon_sym_foreach_r] = ACTIONS(1601), + [anon_sym_while] = ACTIONS(1601), + [anon_sym_do] = ACTIONS(1601), + [anon_sym_int] = ACTIONS(1601), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_asm] = ACTIONS(1601), + [anon_sym_DOLLARassert] = ACTIONS(1601), + [anon_sym_DOLLARerror] = ACTIONS(1601), + [anon_sym_DOLLARecho] = ACTIONS(1601), + [anon_sym_DOLLARif] = ACTIONS(1601), + [anon_sym_DOLLARswitch] = ACTIONS(1601), + [anon_sym_DOLLARfor] = ACTIONS(1601), + [anon_sym_DOLLARendfor] = ACTIONS(1601), + [anon_sym_DOLLARforeach] = ACTIONS(1601), + [anon_sym_DOLLARalignof] = ACTIONS(1601), + [anon_sym_DOLLARextnameof] = ACTIONS(1601), + [anon_sym_DOLLARnameof] = ACTIONS(1601), + [anon_sym_DOLLARoffsetof] = ACTIONS(1601), + [anon_sym_DOLLARqnameof] = ACTIONS(1601), + [anon_sym_DOLLARvaconst] = ACTIONS(1601), + [anon_sym_DOLLARvaarg] = ACTIONS(1601), + [anon_sym_DOLLARvaref] = ACTIONS(1601), + [anon_sym_DOLLARvaexpr] = ACTIONS(1601), + [anon_sym_true] = ACTIONS(1601), + [anon_sym_false] = ACTIONS(1601), + [anon_sym_null] = ACTIONS(1601), + [anon_sym_DOLLARvacount] = ACTIONS(1601), + [anon_sym_DOLLARappend] = ACTIONS(1601), + [anon_sym_DOLLARconcat] = ACTIONS(1601), + [anon_sym_DOLLAReval] = ACTIONS(1601), + [anon_sym_DOLLARis_const] = ACTIONS(1601), + [anon_sym_DOLLARsizeof] = ACTIONS(1601), + [anon_sym_DOLLARstringify] = ACTIONS(1601), + [anon_sym_DOLLARand] = ACTIONS(1601), + [anon_sym_DOLLARdefined] = ACTIONS(1601), + [anon_sym_DOLLARembed] = ACTIONS(1601), + [anon_sym_DOLLARor] = ACTIONS(1601), + [anon_sym_DOLLARfeature] = ACTIONS(1601), + [anon_sym_DOLLARassignable] = ACTIONS(1601), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1603), + [anon_sym_DASH_DASH] = ACTIONS(1603), + [anon_sym_typeid] = ACTIONS(1601), + [anon_sym_LBRACE_PIPE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1601), + [anon_sym_bool] = ACTIONS(1601), + [anon_sym_char] = ACTIONS(1601), + [anon_sym_ichar] = ACTIONS(1601), + [anon_sym_short] = ACTIONS(1601), + [anon_sym_ushort] = ACTIONS(1601), + [anon_sym_uint] = ACTIONS(1601), + [anon_sym_long] = ACTIONS(1601), + [anon_sym_ulong] = ACTIONS(1601), + [anon_sym_int128] = ACTIONS(1601), + [anon_sym_uint128] = ACTIONS(1601), + [anon_sym_float] = ACTIONS(1601), + [anon_sym_double] = ACTIONS(1601), + [anon_sym_float16] = ACTIONS(1601), + [anon_sym_bfloat16] = ACTIONS(1601), + [anon_sym_float128] = ACTIONS(1601), + [anon_sym_iptr] = ACTIONS(1601), + [anon_sym_uptr] = ACTIONS(1601), + [anon_sym_isz] = ACTIONS(1601), + [anon_sym_usz] = ACTIONS(1601), + [anon_sym_anyfault] = ACTIONS(1601), + [anon_sym_any] = ACTIONS(1601), + [anon_sym_DOLLARtypeof] = ACTIONS(1601), + [anon_sym_DOLLARtypefrom] = ACTIONS(1601), + [anon_sym_DOLLARvatype] = ACTIONS(1601), + [anon_sym_DOLLARevaltype] = ACTIONS(1601), + [sym_real_literal] = ACTIONS(1603), }, [638] = { [sym_line_comment] = STATE(638), [sym_doc_comment] = STATE(638), [sym_block_comment] = STATE(638), - [sym_ident] = ACTIONS(1682), - [sym_integer_literal] = ACTIONS(1684), - [anon_sym_SQUOTE] = ACTIONS(1684), - [anon_sym_DQUOTE] = ACTIONS(1684), - [anon_sym_BQUOTE] = ACTIONS(1684), - [sym_bytes_literal] = ACTIONS(1684), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1682), - [sym_at_ident] = ACTIONS(1684), - [sym_hash_ident] = ACTIONS(1684), - [sym_type_ident] = ACTIONS(1684), - [sym_ct_type_ident] = ACTIONS(1684), - [sym_const_ident] = ACTIONS(1682), - [sym_builtin] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1684), - [anon_sym_AMP] = ACTIONS(1682), - [anon_sym_static] = ACTIONS(1682), - [anon_sym_tlocal] = ACTIONS(1682), - [anon_sym_SEMI] = ACTIONS(1684), - [anon_sym_fn] = ACTIONS(1682), - [anon_sym_LBRACE] = ACTIONS(1682), - [anon_sym_const] = ACTIONS(1682), - [anon_sym_var] = ACTIONS(1682), - [anon_sym_return] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(1682), - [anon_sym_break] = ACTIONS(1682), - [anon_sym_defer] = ACTIONS(1682), - [anon_sym_assert] = ACTIONS(1682), - [anon_sym_nextcase] = ACTIONS(1682), - [anon_sym_switch] = ACTIONS(1682), - [anon_sym_AMP_AMP] = ACTIONS(1684), - [anon_sym_if] = ACTIONS(1682), - [anon_sym_for] = ACTIONS(1682), - [anon_sym_foreach] = ACTIONS(1682), - [anon_sym_foreach_r] = ACTIONS(1682), - [anon_sym_while] = ACTIONS(1682), - [anon_sym_do] = ACTIONS(1682), - [anon_sym_int] = ACTIONS(1682), - [anon_sym_PLUS] = ACTIONS(1682), - [anon_sym_DASH] = ACTIONS(1682), - [anon_sym_STAR] = ACTIONS(1684), - [anon_sym_asm] = ACTIONS(1682), - [anon_sym_DOLLARassert] = ACTIONS(1682), - [anon_sym_DOLLARerror] = ACTIONS(1682), - [anon_sym_DOLLARecho] = ACTIONS(1682), - [anon_sym_DOLLARif] = ACTIONS(1682), - [anon_sym_DOLLARswitch] = ACTIONS(1682), - [anon_sym_DOLLARfor] = ACTIONS(1682), - [anon_sym_DOLLARforeach] = ACTIONS(1682), - [anon_sym_DOLLARendforeach] = ACTIONS(1682), - [anon_sym_DOLLARalignof] = ACTIONS(1682), - [anon_sym_DOLLARextnameof] = ACTIONS(1682), - [anon_sym_DOLLARnameof] = ACTIONS(1682), - [anon_sym_DOLLARoffsetof] = ACTIONS(1682), - [anon_sym_DOLLARqnameof] = ACTIONS(1682), - [anon_sym_DOLLARvaconst] = ACTIONS(1682), - [anon_sym_DOLLARvaarg] = ACTIONS(1682), - [anon_sym_DOLLARvaref] = ACTIONS(1682), - [anon_sym_DOLLARvaexpr] = ACTIONS(1682), - [anon_sym_true] = ACTIONS(1682), - [anon_sym_false] = ACTIONS(1682), - [anon_sym_null] = ACTIONS(1682), - [anon_sym_DOLLARvacount] = ACTIONS(1682), - [anon_sym_DOLLARappend] = ACTIONS(1682), - [anon_sym_DOLLARconcat] = ACTIONS(1682), - [anon_sym_DOLLAReval] = ACTIONS(1682), - [anon_sym_DOLLARis_const] = ACTIONS(1682), - [anon_sym_DOLLARsizeof] = ACTIONS(1682), - [anon_sym_DOLLARstringify] = ACTIONS(1682), - [anon_sym_DOLLARand] = ACTIONS(1682), - [anon_sym_DOLLARdefined] = ACTIONS(1682), - [anon_sym_DOLLARembed] = ACTIONS(1682), - [anon_sym_DOLLARor] = ACTIONS(1682), - [anon_sym_DOLLARfeature] = ACTIONS(1682), - [anon_sym_DOLLARassignable] = ACTIONS(1682), - [anon_sym_BANG] = ACTIONS(1684), - [anon_sym_TILDE] = ACTIONS(1684), - [anon_sym_PLUS_PLUS] = ACTIONS(1684), - [anon_sym_DASH_DASH] = ACTIONS(1684), - [anon_sym_typeid] = ACTIONS(1682), - [anon_sym_LBRACE_PIPE] = ACTIONS(1684), - [anon_sym_void] = ACTIONS(1682), - [anon_sym_bool] = ACTIONS(1682), - [anon_sym_char] = ACTIONS(1682), - [anon_sym_ichar] = ACTIONS(1682), - [anon_sym_short] = ACTIONS(1682), - [anon_sym_ushort] = ACTIONS(1682), - [anon_sym_uint] = ACTIONS(1682), - [anon_sym_long] = ACTIONS(1682), - [anon_sym_ulong] = ACTIONS(1682), - [anon_sym_int128] = ACTIONS(1682), - [anon_sym_uint128] = ACTIONS(1682), - [anon_sym_float] = ACTIONS(1682), - [anon_sym_double] = ACTIONS(1682), - [anon_sym_float16] = ACTIONS(1682), - [anon_sym_bfloat16] = ACTIONS(1682), - [anon_sym_float128] = ACTIONS(1682), - [anon_sym_iptr] = ACTIONS(1682), - [anon_sym_uptr] = ACTIONS(1682), - [anon_sym_isz] = ACTIONS(1682), - [anon_sym_usz] = ACTIONS(1682), - [anon_sym_anyfault] = ACTIONS(1682), - [anon_sym_any] = ACTIONS(1682), - [anon_sym_DOLLARtypeof] = ACTIONS(1682), - [anon_sym_DOLLARtypefrom] = ACTIONS(1682), - [anon_sym_DOLLARvatype] = ACTIONS(1682), - [anon_sym_DOLLARevaltype] = ACTIONS(1682), - [sym_real_literal] = ACTIONS(1684), + [sym_ident] = ACTIONS(1613), + [sym_integer_literal] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(1615), + [anon_sym_DQUOTE] = ACTIONS(1615), + [anon_sym_BQUOTE] = ACTIONS(1615), + [sym_bytes_literal] = ACTIONS(1615), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1613), + [sym_at_ident] = ACTIONS(1615), + [sym_hash_ident] = ACTIONS(1615), + [sym_type_ident] = ACTIONS(1615), + [sym_ct_type_ident] = ACTIONS(1615), + [sym_const_ident] = ACTIONS(1613), + [sym_builtin] = ACTIONS(1615), + [anon_sym_LPAREN] = ACTIONS(1615), + [anon_sym_AMP] = ACTIONS(1613), + [anon_sym_static] = ACTIONS(1613), + [anon_sym_tlocal] = ACTIONS(1613), + [anon_sym_SEMI] = ACTIONS(1615), + [anon_sym_fn] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(1613), + [anon_sym_const] = ACTIONS(1613), + [anon_sym_var] = ACTIONS(1613), + [anon_sym_return] = ACTIONS(1613), + [anon_sym_continue] = ACTIONS(1613), + [anon_sym_break] = ACTIONS(1613), + [anon_sym_defer] = ACTIONS(1613), + [anon_sym_assert] = ACTIONS(1613), + [anon_sym_nextcase] = ACTIONS(1613), + [anon_sym_switch] = ACTIONS(1613), + [anon_sym_AMP_AMP] = ACTIONS(1615), + [anon_sym_if] = ACTIONS(1613), + [anon_sym_for] = ACTIONS(1613), + [anon_sym_foreach] = ACTIONS(1613), + [anon_sym_foreach_r] = ACTIONS(1613), + [anon_sym_while] = ACTIONS(1613), + [anon_sym_do] = ACTIONS(1613), + [anon_sym_int] = ACTIONS(1613), + [anon_sym_PLUS] = ACTIONS(1613), + [anon_sym_DASH] = ACTIONS(1613), + [anon_sym_STAR] = ACTIONS(1615), + [anon_sym_asm] = ACTIONS(1613), + [anon_sym_DOLLARassert] = ACTIONS(1613), + [anon_sym_DOLLARerror] = ACTIONS(1613), + [anon_sym_DOLLARecho] = ACTIONS(1613), + [anon_sym_DOLLARif] = ACTIONS(1613), + [anon_sym_DOLLARswitch] = ACTIONS(1613), + [anon_sym_DOLLARfor] = ACTIONS(1613), + [anon_sym_DOLLARendfor] = ACTIONS(1613), + [anon_sym_DOLLARforeach] = ACTIONS(1613), + [anon_sym_DOLLARalignof] = ACTIONS(1613), + [anon_sym_DOLLARextnameof] = ACTIONS(1613), + [anon_sym_DOLLARnameof] = ACTIONS(1613), + [anon_sym_DOLLARoffsetof] = ACTIONS(1613), + [anon_sym_DOLLARqnameof] = ACTIONS(1613), + [anon_sym_DOLLARvaconst] = ACTIONS(1613), + [anon_sym_DOLLARvaarg] = ACTIONS(1613), + [anon_sym_DOLLARvaref] = ACTIONS(1613), + [anon_sym_DOLLARvaexpr] = ACTIONS(1613), + [anon_sym_true] = ACTIONS(1613), + [anon_sym_false] = ACTIONS(1613), + [anon_sym_null] = ACTIONS(1613), + [anon_sym_DOLLARvacount] = ACTIONS(1613), + [anon_sym_DOLLARappend] = ACTIONS(1613), + [anon_sym_DOLLARconcat] = ACTIONS(1613), + [anon_sym_DOLLAReval] = ACTIONS(1613), + [anon_sym_DOLLARis_const] = ACTIONS(1613), + [anon_sym_DOLLARsizeof] = ACTIONS(1613), + [anon_sym_DOLLARstringify] = ACTIONS(1613), + [anon_sym_DOLLARand] = ACTIONS(1613), + [anon_sym_DOLLARdefined] = ACTIONS(1613), + [anon_sym_DOLLARembed] = ACTIONS(1613), + [anon_sym_DOLLARor] = ACTIONS(1613), + [anon_sym_DOLLARfeature] = ACTIONS(1613), + [anon_sym_DOLLARassignable] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1615), + [anon_sym_TILDE] = ACTIONS(1615), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), + [anon_sym_typeid] = ACTIONS(1613), + [anon_sym_LBRACE_PIPE] = ACTIONS(1615), + [anon_sym_void] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_ichar] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [anon_sym_ushort] = ACTIONS(1613), + [anon_sym_uint] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_ulong] = ACTIONS(1613), + [anon_sym_int128] = ACTIONS(1613), + [anon_sym_uint128] = ACTIONS(1613), + [anon_sym_float] = ACTIONS(1613), + [anon_sym_double] = ACTIONS(1613), + [anon_sym_float16] = ACTIONS(1613), + [anon_sym_bfloat16] = ACTIONS(1613), + [anon_sym_float128] = ACTIONS(1613), + [anon_sym_iptr] = ACTIONS(1613), + [anon_sym_uptr] = ACTIONS(1613), + [anon_sym_isz] = ACTIONS(1613), + [anon_sym_usz] = ACTIONS(1613), + [anon_sym_anyfault] = ACTIONS(1613), + [anon_sym_any] = ACTIONS(1613), + [anon_sym_DOLLARtypeof] = ACTIONS(1613), + [anon_sym_DOLLARtypefrom] = ACTIONS(1613), + [anon_sym_DOLLARvatype] = ACTIONS(1613), + [anon_sym_DOLLARevaltype] = ACTIONS(1613), + [sym_real_literal] = ACTIONS(1615), }, [639] = { [sym_line_comment] = STATE(639), [sym_doc_comment] = STATE(639), [sym_block_comment] = STATE(639), - [sym_ident] = ACTIONS(1390), - [sym_integer_literal] = ACTIONS(1392), - [anon_sym_SQUOTE] = ACTIONS(1392), - [anon_sym_DQUOTE] = ACTIONS(1392), - [anon_sym_BQUOTE] = ACTIONS(1392), - [sym_bytes_literal] = ACTIONS(1392), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1390), - [sym_at_ident] = ACTIONS(1392), - [sym_hash_ident] = ACTIONS(1392), - [sym_type_ident] = ACTIONS(1392), - [sym_ct_type_ident] = ACTIONS(1392), - [sym_const_ident] = ACTIONS(1390), - [sym_builtin] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1392), - [anon_sym_AMP] = ACTIONS(1390), - [anon_sym_static] = ACTIONS(1390), - [anon_sym_tlocal] = ACTIONS(1390), - [anon_sym_SEMI] = ACTIONS(1392), - [anon_sym_fn] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1390), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_var] = ACTIONS(1390), - [anon_sym_return] = ACTIONS(1390), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_break] = ACTIONS(1390), - [anon_sym_defer] = ACTIONS(1390), - [anon_sym_assert] = ACTIONS(1390), - [anon_sym_nextcase] = ACTIONS(1390), - [anon_sym_switch] = ACTIONS(1390), - [anon_sym_AMP_AMP] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1390), - [anon_sym_for] = ACTIONS(1390), - [anon_sym_foreach] = ACTIONS(1390), - [anon_sym_foreach_r] = ACTIONS(1390), - [anon_sym_while] = ACTIONS(1390), - [anon_sym_do] = ACTIONS(1390), - [anon_sym_int] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1390), - [anon_sym_DASH] = ACTIONS(1390), - [anon_sym_STAR] = ACTIONS(1392), - [anon_sym_asm] = ACTIONS(1390), - [anon_sym_DOLLARassert] = ACTIONS(1390), - [anon_sym_DOLLARerror] = ACTIONS(1390), - [anon_sym_DOLLARecho] = ACTIONS(1390), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_DOLLARendif] = ACTIONS(1390), - [anon_sym_DOLLARswitch] = ACTIONS(1390), - [anon_sym_DOLLARfor] = ACTIONS(1390), - [anon_sym_DOLLARforeach] = ACTIONS(1390), - [anon_sym_DOLLARalignof] = ACTIONS(1390), - [anon_sym_DOLLARextnameof] = ACTIONS(1390), - [anon_sym_DOLLARnameof] = ACTIONS(1390), - [anon_sym_DOLLARoffsetof] = ACTIONS(1390), - [anon_sym_DOLLARqnameof] = ACTIONS(1390), - [anon_sym_DOLLARvaconst] = ACTIONS(1390), - [anon_sym_DOLLARvaarg] = ACTIONS(1390), - [anon_sym_DOLLARvaref] = ACTIONS(1390), - [anon_sym_DOLLARvaexpr] = ACTIONS(1390), - [anon_sym_true] = ACTIONS(1390), - [anon_sym_false] = ACTIONS(1390), - [anon_sym_null] = ACTIONS(1390), - [anon_sym_DOLLARvacount] = ACTIONS(1390), - [anon_sym_DOLLARappend] = ACTIONS(1390), - [anon_sym_DOLLARconcat] = ACTIONS(1390), - [anon_sym_DOLLAReval] = ACTIONS(1390), - [anon_sym_DOLLARis_const] = ACTIONS(1390), - [anon_sym_DOLLARsizeof] = ACTIONS(1390), - [anon_sym_DOLLARstringify] = ACTIONS(1390), - [anon_sym_DOLLARand] = ACTIONS(1390), - [anon_sym_DOLLARdefined] = ACTIONS(1390), - [anon_sym_DOLLARembed] = ACTIONS(1390), - [anon_sym_DOLLARor] = ACTIONS(1390), - [anon_sym_DOLLARfeature] = ACTIONS(1390), - [anon_sym_DOLLARassignable] = ACTIONS(1390), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_PLUS_PLUS] = ACTIONS(1392), - [anon_sym_DASH_DASH] = ACTIONS(1392), - [anon_sym_typeid] = ACTIONS(1390), - [anon_sym_LBRACE_PIPE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1390), - [anon_sym_bool] = ACTIONS(1390), - [anon_sym_char] = ACTIONS(1390), - [anon_sym_ichar] = ACTIONS(1390), - [anon_sym_short] = ACTIONS(1390), - [anon_sym_ushort] = ACTIONS(1390), - [anon_sym_uint] = ACTIONS(1390), - [anon_sym_long] = ACTIONS(1390), - [anon_sym_ulong] = ACTIONS(1390), - [anon_sym_int128] = ACTIONS(1390), - [anon_sym_uint128] = ACTIONS(1390), - [anon_sym_float] = ACTIONS(1390), - [anon_sym_double] = ACTIONS(1390), - [anon_sym_float16] = ACTIONS(1390), - [anon_sym_bfloat16] = ACTIONS(1390), - [anon_sym_float128] = ACTIONS(1390), - [anon_sym_iptr] = ACTIONS(1390), - [anon_sym_uptr] = ACTIONS(1390), - [anon_sym_isz] = ACTIONS(1390), - [anon_sym_usz] = ACTIONS(1390), - [anon_sym_anyfault] = ACTIONS(1390), - [anon_sym_any] = ACTIONS(1390), - [anon_sym_DOLLARtypeof] = ACTIONS(1390), - [anon_sym_DOLLARtypefrom] = ACTIONS(1390), - [anon_sym_DOLLARvatype] = ACTIONS(1390), - [anon_sym_DOLLARevaltype] = ACTIONS(1390), - [sym_real_literal] = ACTIONS(1392), + [sym_ident] = ACTIONS(1617), + [sym_integer_literal] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1619), + [anon_sym_BQUOTE] = ACTIONS(1619), + [sym_bytes_literal] = ACTIONS(1619), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1617), + [sym_at_ident] = ACTIONS(1619), + [sym_hash_ident] = ACTIONS(1619), + [sym_type_ident] = ACTIONS(1619), + [sym_ct_type_ident] = ACTIONS(1619), + [sym_const_ident] = ACTIONS(1617), + [sym_builtin] = ACTIONS(1619), + [anon_sym_LPAREN] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1617), + [anon_sym_static] = ACTIONS(1617), + [anon_sym_tlocal] = ACTIONS(1617), + [anon_sym_SEMI] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1617), + [anon_sym_LBRACE] = ACTIONS(1617), + [anon_sym_const] = ACTIONS(1617), + [anon_sym_var] = ACTIONS(1617), + [anon_sym_return] = ACTIONS(1617), + [anon_sym_continue] = ACTIONS(1617), + [anon_sym_break] = ACTIONS(1617), + [anon_sym_defer] = ACTIONS(1617), + [anon_sym_assert] = ACTIONS(1617), + [anon_sym_nextcase] = ACTIONS(1617), + [anon_sym_switch] = ACTIONS(1617), + [anon_sym_AMP_AMP] = ACTIONS(1619), + [anon_sym_if] = ACTIONS(1617), + [anon_sym_for] = ACTIONS(1617), + [anon_sym_foreach] = ACTIONS(1617), + [anon_sym_foreach_r] = ACTIONS(1617), + [anon_sym_while] = ACTIONS(1617), + [anon_sym_do] = ACTIONS(1617), + [anon_sym_int] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_asm] = ACTIONS(1617), + [anon_sym_DOLLARassert] = ACTIONS(1617), + [anon_sym_DOLLARerror] = ACTIONS(1617), + [anon_sym_DOLLARecho] = ACTIONS(1617), + [anon_sym_DOLLARif] = ACTIONS(1617), + [anon_sym_DOLLARswitch] = ACTIONS(1617), + [anon_sym_DOLLARfor] = ACTIONS(1617), + [anon_sym_DOLLARendfor] = ACTIONS(1617), + [anon_sym_DOLLARforeach] = ACTIONS(1617), + [anon_sym_DOLLARalignof] = ACTIONS(1617), + [anon_sym_DOLLARextnameof] = ACTIONS(1617), + [anon_sym_DOLLARnameof] = ACTIONS(1617), + [anon_sym_DOLLARoffsetof] = ACTIONS(1617), + [anon_sym_DOLLARqnameof] = ACTIONS(1617), + [anon_sym_DOLLARvaconst] = ACTIONS(1617), + [anon_sym_DOLLARvaarg] = ACTIONS(1617), + [anon_sym_DOLLARvaref] = ACTIONS(1617), + [anon_sym_DOLLARvaexpr] = ACTIONS(1617), + [anon_sym_true] = ACTIONS(1617), + [anon_sym_false] = ACTIONS(1617), + [anon_sym_null] = ACTIONS(1617), + [anon_sym_DOLLARvacount] = ACTIONS(1617), + [anon_sym_DOLLARappend] = ACTIONS(1617), + [anon_sym_DOLLARconcat] = ACTIONS(1617), + [anon_sym_DOLLAReval] = ACTIONS(1617), + [anon_sym_DOLLARis_const] = ACTIONS(1617), + [anon_sym_DOLLARsizeof] = ACTIONS(1617), + [anon_sym_DOLLARstringify] = ACTIONS(1617), + [anon_sym_DOLLARand] = ACTIONS(1617), + [anon_sym_DOLLARdefined] = ACTIONS(1617), + [anon_sym_DOLLARembed] = ACTIONS(1617), + [anon_sym_DOLLARor] = ACTIONS(1617), + [anon_sym_DOLLARfeature] = ACTIONS(1617), + [anon_sym_DOLLARassignable] = ACTIONS(1617), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_typeid] = ACTIONS(1617), + [anon_sym_LBRACE_PIPE] = ACTIONS(1619), + [anon_sym_void] = ACTIONS(1617), + [anon_sym_bool] = ACTIONS(1617), + [anon_sym_char] = ACTIONS(1617), + [anon_sym_ichar] = ACTIONS(1617), + [anon_sym_short] = ACTIONS(1617), + [anon_sym_ushort] = ACTIONS(1617), + [anon_sym_uint] = ACTIONS(1617), + [anon_sym_long] = ACTIONS(1617), + [anon_sym_ulong] = ACTIONS(1617), + [anon_sym_int128] = ACTIONS(1617), + [anon_sym_uint128] = ACTIONS(1617), + [anon_sym_float] = ACTIONS(1617), + [anon_sym_double] = ACTIONS(1617), + [anon_sym_float16] = ACTIONS(1617), + [anon_sym_bfloat16] = ACTIONS(1617), + [anon_sym_float128] = ACTIONS(1617), + [anon_sym_iptr] = ACTIONS(1617), + [anon_sym_uptr] = ACTIONS(1617), + [anon_sym_isz] = ACTIONS(1617), + [anon_sym_usz] = ACTIONS(1617), + [anon_sym_anyfault] = ACTIONS(1617), + [anon_sym_any] = ACTIONS(1617), + [anon_sym_DOLLARtypeof] = ACTIONS(1617), + [anon_sym_DOLLARtypefrom] = ACTIONS(1617), + [anon_sym_DOLLARvatype] = ACTIONS(1617), + [anon_sym_DOLLARevaltype] = ACTIONS(1617), + [sym_real_literal] = ACTIONS(1619), }, [640] = { [sym_line_comment] = STATE(640), [sym_doc_comment] = STATE(640), [sym_block_comment] = STATE(640), - [sym_ident] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(1606), - [anon_sym_SQUOTE] = ACTIONS(1606), - [anon_sym_DQUOTE] = ACTIONS(1606), - [anon_sym_BQUOTE] = ACTIONS(1606), - [sym_bytes_literal] = ACTIONS(1606), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1604), - [sym_at_ident] = ACTIONS(1606), - [sym_hash_ident] = ACTIONS(1606), - [sym_type_ident] = ACTIONS(1606), - [sym_ct_type_ident] = ACTIONS(1606), - [sym_const_ident] = ACTIONS(1604), - [sym_builtin] = ACTIONS(1606), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_AMP] = ACTIONS(1604), - [anon_sym_static] = ACTIONS(1604), - [anon_sym_tlocal] = ACTIONS(1604), - [anon_sym_SEMI] = ACTIONS(1606), - [anon_sym_fn] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(1604), - [anon_sym_const] = ACTIONS(1604), - [anon_sym_var] = ACTIONS(1604), - [anon_sym_return] = ACTIONS(1604), - [anon_sym_continue] = ACTIONS(1604), - [anon_sym_break] = ACTIONS(1604), - [anon_sym_defer] = ACTIONS(1604), - [anon_sym_assert] = ACTIONS(1604), - [anon_sym_nextcase] = ACTIONS(1604), - [anon_sym_switch] = ACTIONS(1604), - [anon_sym_AMP_AMP] = ACTIONS(1606), - [anon_sym_if] = ACTIONS(1604), - [anon_sym_for] = ACTIONS(1604), - [anon_sym_foreach] = ACTIONS(1604), - [anon_sym_foreach_r] = ACTIONS(1604), - [anon_sym_while] = ACTIONS(1604), - [anon_sym_do] = ACTIONS(1604), - [anon_sym_int] = ACTIONS(1604), - [anon_sym_PLUS] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1606), - [anon_sym_asm] = ACTIONS(1604), - [anon_sym_DOLLARassert] = ACTIONS(1604), - [anon_sym_DOLLARerror] = ACTIONS(1604), - [anon_sym_DOLLARecho] = ACTIONS(1604), - [anon_sym_DOLLARif] = ACTIONS(1604), - [anon_sym_DOLLARendif] = ACTIONS(1604), - [anon_sym_DOLLARswitch] = ACTIONS(1604), - [anon_sym_DOLLARfor] = ACTIONS(1604), - [anon_sym_DOLLARforeach] = ACTIONS(1604), - [anon_sym_DOLLARalignof] = ACTIONS(1604), - [anon_sym_DOLLARextnameof] = ACTIONS(1604), - [anon_sym_DOLLARnameof] = ACTIONS(1604), - [anon_sym_DOLLARoffsetof] = ACTIONS(1604), - [anon_sym_DOLLARqnameof] = ACTIONS(1604), - [anon_sym_DOLLARvaconst] = ACTIONS(1604), - [anon_sym_DOLLARvaarg] = ACTIONS(1604), - [anon_sym_DOLLARvaref] = ACTIONS(1604), - [anon_sym_DOLLARvaexpr] = ACTIONS(1604), - [anon_sym_true] = ACTIONS(1604), - [anon_sym_false] = ACTIONS(1604), - [anon_sym_null] = ACTIONS(1604), - [anon_sym_DOLLARvacount] = ACTIONS(1604), - [anon_sym_DOLLARappend] = ACTIONS(1604), - [anon_sym_DOLLARconcat] = ACTIONS(1604), - [anon_sym_DOLLAReval] = ACTIONS(1604), - [anon_sym_DOLLARis_const] = ACTIONS(1604), - [anon_sym_DOLLARsizeof] = ACTIONS(1604), - [anon_sym_DOLLARstringify] = ACTIONS(1604), - [anon_sym_DOLLARand] = ACTIONS(1604), - [anon_sym_DOLLARdefined] = ACTIONS(1604), - [anon_sym_DOLLARembed] = ACTIONS(1604), - [anon_sym_DOLLARor] = ACTIONS(1604), - [anon_sym_DOLLARfeature] = ACTIONS(1604), - [anon_sym_DOLLARassignable] = ACTIONS(1604), - [anon_sym_BANG] = ACTIONS(1606), - [anon_sym_TILDE] = ACTIONS(1606), - [anon_sym_PLUS_PLUS] = ACTIONS(1606), - [anon_sym_DASH_DASH] = ACTIONS(1606), - [anon_sym_typeid] = ACTIONS(1604), - [anon_sym_LBRACE_PIPE] = ACTIONS(1606), - [anon_sym_void] = ACTIONS(1604), - [anon_sym_bool] = ACTIONS(1604), - [anon_sym_char] = ACTIONS(1604), - [anon_sym_ichar] = ACTIONS(1604), - [anon_sym_short] = ACTIONS(1604), - [anon_sym_ushort] = ACTIONS(1604), - [anon_sym_uint] = ACTIONS(1604), - [anon_sym_long] = ACTIONS(1604), - [anon_sym_ulong] = ACTIONS(1604), - [anon_sym_int128] = ACTIONS(1604), - [anon_sym_uint128] = ACTIONS(1604), - [anon_sym_float] = ACTIONS(1604), - [anon_sym_double] = ACTIONS(1604), - [anon_sym_float16] = ACTIONS(1604), - [anon_sym_bfloat16] = ACTIONS(1604), - [anon_sym_float128] = ACTIONS(1604), - [anon_sym_iptr] = ACTIONS(1604), - [anon_sym_uptr] = ACTIONS(1604), - [anon_sym_isz] = ACTIONS(1604), - [anon_sym_usz] = ACTIONS(1604), - [anon_sym_anyfault] = ACTIONS(1604), - [anon_sym_any] = ACTIONS(1604), - [anon_sym_DOLLARtypeof] = ACTIONS(1604), - [anon_sym_DOLLARtypefrom] = ACTIONS(1604), - [anon_sym_DOLLARvatype] = ACTIONS(1604), - [anon_sym_DOLLARevaltype] = ACTIONS(1604), - [sym_real_literal] = ACTIONS(1606), + [sym_ident] = ACTIONS(1537), + [sym_integer_literal] = ACTIONS(1539), + [anon_sym_SQUOTE] = ACTIONS(1539), + [anon_sym_DQUOTE] = ACTIONS(1539), + [anon_sym_BQUOTE] = ACTIONS(1539), + [sym_bytes_literal] = ACTIONS(1539), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1537), + [sym_at_ident] = ACTIONS(1539), + [sym_hash_ident] = ACTIONS(1539), + [sym_type_ident] = ACTIONS(1539), + [sym_ct_type_ident] = ACTIONS(1539), + [sym_const_ident] = ACTIONS(1537), + [sym_builtin] = ACTIONS(1539), + [anon_sym_LPAREN] = ACTIONS(1539), + [anon_sym_AMP] = ACTIONS(1537), + [anon_sym_static] = ACTIONS(1537), + [anon_sym_tlocal] = ACTIONS(1537), + [anon_sym_SEMI] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1537), + [anon_sym_LBRACE] = ACTIONS(1537), + [anon_sym_const] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(1537), + [anon_sym_return] = ACTIONS(1537), + [anon_sym_continue] = ACTIONS(1537), + [anon_sym_break] = ACTIONS(1537), + [anon_sym_defer] = ACTIONS(1537), + [anon_sym_assert] = ACTIONS(1537), + [anon_sym_nextcase] = ACTIONS(1537), + [anon_sym_switch] = ACTIONS(1537), + [anon_sym_AMP_AMP] = ACTIONS(1539), + [anon_sym_if] = ACTIONS(1537), + [anon_sym_for] = ACTIONS(1537), + [anon_sym_foreach] = ACTIONS(1537), + [anon_sym_foreach_r] = ACTIONS(1537), + [anon_sym_while] = ACTIONS(1537), + [anon_sym_do] = ACTIONS(1537), + [anon_sym_int] = ACTIONS(1537), + [anon_sym_PLUS] = ACTIONS(1537), + [anon_sym_DASH] = ACTIONS(1537), + [anon_sym_STAR] = ACTIONS(1539), + [anon_sym_asm] = ACTIONS(1537), + [anon_sym_DOLLARassert] = ACTIONS(1537), + [anon_sym_DOLLARerror] = ACTIONS(1537), + [anon_sym_DOLLARecho] = ACTIONS(1537), + [anon_sym_DOLLARif] = ACTIONS(1537), + [anon_sym_DOLLARswitch] = ACTIONS(1537), + [anon_sym_DOLLARfor] = ACTIONS(1537), + [anon_sym_DOLLARendfor] = ACTIONS(1537), + [anon_sym_DOLLARforeach] = ACTIONS(1537), + [anon_sym_DOLLARalignof] = ACTIONS(1537), + [anon_sym_DOLLARextnameof] = ACTIONS(1537), + [anon_sym_DOLLARnameof] = ACTIONS(1537), + [anon_sym_DOLLARoffsetof] = ACTIONS(1537), + [anon_sym_DOLLARqnameof] = ACTIONS(1537), + [anon_sym_DOLLARvaconst] = ACTIONS(1537), + [anon_sym_DOLLARvaarg] = ACTIONS(1537), + [anon_sym_DOLLARvaref] = ACTIONS(1537), + [anon_sym_DOLLARvaexpr] = ACTIONS(1537), + [anon_sym_true] = ACTIONS(1537), + [anon_sym_false] = ACTIONS(1537), + [anon_sym_null] = ACTIONS(1537), + [anon_sym_DOLLARvacount] = ACTIONS(1537), + [anon_sym_DOLLARappend] = ACTIONS(1537), + [anon_sym_DOLLARconcat] = ACTIONS(1537), + [anon_sym_DOLLAReval] = ACTIONS(1537), + [anon_sym_DOLLARis_const] = ACTIONS(1537), + [anon_sym_DOLLARsizeof] = ACTIONS(1537), + [anon_sym_DOLLARstringify] = ACTIONS(1537), + [anon_sym_DOLLARand] = ACTIONS(1537), + [anon_sym_DOLLARdefined] = ACTIONS(1537), + [anon_sym_DOLLARembed] = ACTIONS(1537), + [anon_sym_DOLLARor] = ACTIONS(1537), + [anon_sym_DOLLARfeature] = ACTIONS(1537), + [anon_sym_DOLLARassignable] = ACTIONS(1537), + [anon_sym_BANG] = ACTIONS(1539), + [anon_sym_TILDE] = ACTIONS(1539), + [anon_sym_PLUS_PLUS] = ACTIONS(1539), + [anon_sym_DASH_DASH] = ACTIONS(1539), + [anon_sym_typeid] = ACTIONS(1537), + [anon_sym_LBRACE_PIPE] = ACTIONS(1539), + [anon_sym_void] = ACTIONS(1537), + [anon_sym_bool] = ACTIONS(1537), + [anon_sym_char] = ACTIONS(1537), + [anon_sym_ichar] = ACTIONS(1537), + [anon_sym_short] = ACTIONS(1537), + [anon_sym_ushort] = ACTIONS(1537), + [anon_sym_uint] = ACTIONS(1537), + [anon_sym_long] = ACTIONS(1537), + [anon_sym_ulong] = ACTIONS(1537), + [anon_sym_int128] = ACTIONS(1537), + [anon_sym_uint128] = ACTIONS(1537), + [anon_sym_float] = ACTIONS(1537), + [anon_sym_double] = ACTIONS(1537), + [anon_sym_float16] = ACTIONS(1537), + [anon_sym_bfloat16] = ACTIONS(1537), + [anon_sym_float128] = ACTIONS(1537), + [anon_sym_iptr] = ACTIONS(1537), + [anon_sym_uptr] = ACTIONS(1537), + [anon_sym_isz] = ACTIONS(1537), + [anon_sym_usz] = ACTIONS(1537), + [anon_sym_anyfault] = ACTIONS(1537), + [anon_sym_any] = ACTIONS(1537), + [anon_sym_DOLLARtypeof] = ACTIONS(1537), + [anon_sym_DOLLARtypefrom] = ACTIONS(1537), + [anon_sym_DOLLARvatype] = ACTIONS(1537), + [anon_sym_DOLLARevaltype] = ACTIONS(1537), + [sym_real_literal] = ACTIONS(1539), }, [641] = { [sym_line_comment] = STATE(641), [sym_doc_comment] = STATE(641), [sym_block_comment] = STATE(641), - [sym_ident] = ACTIONS(1564), - [sym_integer_literal] = ACTIONS(1566), - [anon_sym_SQUOTE] = ACTIONS(1566), - [anon_sym_DQUOTE] = ACTIONS(1566), - [anon_sym_BQUOTE] = ACTIONS(1566), - [sym_bytes_literal] = ACTIONS(1566), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1564), - [sym_at_ident] = ACTIONS(1566), - [sym_hash_ident] = ACTIONS(1566), - [sym_type_ident] = ACTIONS(1566), - [sym_ct_type_ident] = ACTIONS(1566), - [sym_const_ident] = ACTIONS(1564), - [sym_builtin] = ACTIONS(1566), - [anon_sym_LPAREN] = ACTIONS(1566), - [anon_sym_AMP] = ACTIONS(1564), - [anon_sym_static] = ACTIONS(1564), - [anon_sym_tlocal] = ACTIONS(1564), - [anon_sym_SEMI] = ACTIONS(1566), - [anon_sym_fn] = ACTIONS(1564), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_const] = ACTIONS(1564), - [anon_sym_var] = ACTIONS(1564), - [anon_sym_return] = ACTIONS(1564), - [anon_sym_continue] = ACTIONS(1564), - [anon_sym_break] = ACTIONS(1564), - [anon_sym_defer] = ACTIONS(1564), - [anon_sym_assert] = ACTIONS(1564), - [anon_sym_nextcase] = ACTIONS(1564), - [anon_sym_switch] = ACTIONS(1564), - [anon_sym_AMP_AMP] = ACTIONS(1566), - [anon_sym_if] = ACTIONS(1564), - [anon_sym_for] = ACTIONS(1564), - [anon_sym_foreach] = ACTIONS(1564), - [anon_sym_foreach_r] = ACTIONS(1564), - [anon_sym_while] = ACTIONS(1564), - [anon_sym_do] = ACTIONS(1564), - [anon_sym_int] = ACTIONS(1564), - [anon_sym_PLUS] = ACTIONS(1564), - [anon_sym_DASH] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1566), - [anon_sym_asm] = ACTIONS(1564), - [anon_sym_DOLLARassert] = ACTIONS(1564), - [anon_sym_DOLLARerror] = ACTIONS(1564), - [anon_sym_DOLLARecho] = ACTIONS(1564), - [anon_sym_DOLLARif] = ACTIONS(1564), - [anon_sym_DOLLARswitch] = ACTIONS(1564), - [anon_sym_DOLLARfor] = ACTIONS(1564), - [anon_sym_DOLLARforeach] = ACTIONS(1564), - [anon_sym_DOLLARendforeach] = ACTIONS(1564), - [anon_sym_DOLLARalignof] = ACTIONS(1564), - [anon_sym_DOLLARextnameof] = ACTIONS(1564), - [anon_sym_DOLLARnameof] = ACTIONS(1564), - [anon_sym_DOLLARoffsetof] = ACTIONS(1564), - [anon_sym_DOLLARqnameof] = ACTIONS(1564), - [anon_sym_DOLLARvaconst] = ACTIONS(1564), - [anon_sym_DOLLARvaarg] = ACTIONS(1564), - [anon_sym_DOLLARvaref] = ACTIONS(1564), - [anon_sym_DOLLARvaexpr] = ACTIONS(1564), - [anon_sym_true] = ACTIONS(1564), - [anon_sym_false] = ACTIONS(1564), - [anon_sym_null] = ACTIONS(1564), - [anon_sym_DOLLARvacount] = ACTIONS(1564), - [anon_sym_DOLLARappend] = ACTIONS(1564), - [anon_sym_DOLLARconcat] = ACTIONS(1564), - [anon_sym_DOLLAReval] = ACTIONS(1564), - [anon_sym_DOLLARis_const] = ACTIONS(1564), - [anon_sym_DOLLARsizeof] = ACTIONS(1564), - [anon_sym_DOLLARstringify] = ACTIONS(1564), - [anon_sym_DOLLARand] = ACTIONS(1564), - [anon_sym_DOLLARdefined] = ACTIONS(1564), - [anon_sym_DOLLARembed] = ACTIONS(1564), - [anon_sym_DOLLARor] = ACTIONS(1564), - [anon_sym_DOLLARfeature] = ACTIONS(1564), - [anon_sym_DOLLARassignable] = ACTIONS(1564), - [anon_sym_BANG] = ACTIONS(1566), - [anon_sym_TILDE] = ACTIONS(1566), - [anon_sym_PLUS_PLUS] = ACTIONS(1566), - [anon_sym_DASH_DASH] = ACTIONS(1566), - [anon_sym_typeid] = ACTIONS(1564), - [anon_sym_LBRACE_PIPE] = ACTIONS(1566), - [anon_sym_void] = ACTIONS(1564), - [anon_sym_bool] = ACTIONS(1564), - [anon_sym_char] = ACTIONS(1564), - [anon_sym_ichar] = ACTIONS(1564), - [anon_sym_short] = ACTIONS(1564), - [anon_sym_ushort] = ACTIONS(1564), - [anon_sym_uint] = ACTIONS(1564), - [anon_sym_long] = ACTIONS(1564), - [anon_sym_ulong] = ACTIONS(1564), - [anon_sym_int128] = ACTIONS(1564), - [anon_sym_uint128] = ACTIONS(1564), - [anon_sym_float] = ACTIONS(1564), - [anon_sym_double] = ACTIONS(1564), - [anon_sym_float16] = ACTIONS(1564), - [anon_sym_bfloat16] = ACTIONS(1564), - [anon_sym_float128] = ACTIONS(1564), - [anon_sym_iptr] = ACTIONS(1564), - [anon_sym_uptr] = ACTIONS(1564), - [anon_sym_isz] = ACTIONS(1564), - [anon_sym_usz] = ACTIONS(1564), - [anon_sym_anyfault] = ACTIONS(1564), - [anon_sym_any] = ACTIONS(1564), - [anon_sym_DOLLARtypeof] = ACTIONS(1564), - [anon_sym_DOLLARtypefrom] = ACTIONS(1564), - [anon_sym_DOLLARvatype] = ACTIONS(1564), - [anon_sym_DOLLARevaltype] = ACTIONS(1564), - [sym_real_literal] = ACTIONS(1566), + [sym_ident] = ACTIONS(1581), + [sym_integer_literal] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1583), + [anon_sym_DQUOTE] = ACTIONS(1583), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_bytes_literal] = ACTIONS(1583), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1581), + [sym_at_ident] = ACTIONS(1583), + [sym_hash_ident] = ACTIONS(1583), + [sym_type_ident] = ACTIONS(1583), + [sym_ct_type_ident] = ACTIONS(1583), + [sym_const_ident] = ACTIONS(1581), + [sym_builtin] = ACTIONS(1583), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_AMP] = ACTIONS(1581), + [anon_sym_static] = ACTIONS(1581), + [anon_sym_tlocal] = ACTIONS(1581), + [anon_sym_SEMI] = ACTIONS(1583), + [anon_sym_fn] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_const] = ACTIONS(1581), + [anon_sym_var] = ACTIONS(1581), + [anon_sym_return] = ACTIONS(1581), + [anon_sym_continue] = ACTIONS(1581), + [anon_sym_break] = ACTIONS(1581), + [anon_sym_defer] = ACTIONS(1581), + [anon_sym_assert] = ACTIONS(1581), + [anon_sym_nextcase] = ACTIONS(1581), + [anon_sym_switch] = ACTIONS(1581), + [anon_sym_AMP_AMP] = ACTIONS(1583), + [anon_sym_if] = ACTIONS(1581), + [anon_sym_for] = ACTIONS(1581), + [anon_sym_foreach] = ACTIONS(1581), + [anon_sym_foreach_r] = ACTIONS(1581), + [anon_sym_while] = ACTIONS(1581), + [anon_sym_do] = ACTIONS(1581), + [anon_sym_int] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1581), + [anon_sym_DASH] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1583), + [anon_sym_asm] = ACTIONS(1581), + [anon_sym_DOLLARassert] = ACTIONS(1581), + [anon_sym_DOLLARerror] = ACTIONS(1581), + [anon_sym_DOLLARecho] = ACTIONS(1581), + [anon_sym_DOLLARif] = ACTIONS(1581), + [anon_sym_DOLLARswitch] = ACTIONS(1581), + [anon_sym_DOLLARfor] = ACTIONS(1581), + [anon_sym_DOLLARforeach] = ACTIONS(1581), + [anon_sym_DOLLARendforeach] = ACTIONS(1581), + [anon_sym_DOLLARalignof] = ACTIONS(1581), + [anon_sym_DOLLARextnameof] = ACTIONS(1581), + [anon_sym_DOLLARnameof] = ACTIONS(1581), + [anon_sym_DOLLARoffsetof] = ACTIONS(1581), + [anon_sym_DOLLARqnameof] = ACTIONS(1581), + [anon_sym_DOLLARvaconst] = ACTIONS(1581), + [anon_sym_DOLLARvaarg] = ACTIONS(1581), + [anon_sym_DOLLARvaref] = ACTIONS(1581), + [anon_sym_DOLLARvaexpr] = ACTIONS(1581), + [anon_sym_true] = ACTIONS(1581), + [anon_sym_false] = ACTIONS(1581), + [anon_sym_null] = ACTIONS(1581), + [anon_sym_DOLLARvacount] = ACTIONS(1581), + [anon_sym_DOLLARappend] = ACTIONS(1581), + [anon_sym_DOLLARconcat] = ACTIONS(1581), + [anon_sym_DOLLAReval] = ACTIONS(1581), + [anon_sym_DOLLARis_const] = ACTIONS(1581), + [anon_sym_DOLLARsizeof] = ACTIONS(1581), + [anon_sym_DOLLARstringify] = ACTIONS(1581), + [anon_sym_DOLLARand] = ACTIONS(1581), + [anon_sym_DOLLARdefined] = ACTIONS(1581), + [anon_sym_DOLLARembed] = ACTIONS(1581), + [anon_sym_DOLLARor] = ACTIONS(1581), + [anon_sym_DOLLARfeature] = ACTIONS(1581), + [anon_sym_DOLLARassignable] = ACTIONS(1581), + [anon_sym_BANG] = ACTIONS(1583), + [anon_sym_TILDE] = ACTIONS(1583), + [anon_sym_PLUS_PLUS] = ACTIONS(1583), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [anon_sym_typeid] = ACTIONS(1581), + [anon_sym_LBRACE_PIPE] = ACTIONS(1583), + [anon_sym_void] = ACTIONS(1581), + [anon_sym_bool] = ACTIONS(1581), + [anon_sym_char] = ACTIONS(1581), + [anon_sym_ichar] = ACTIONS(1581), + [anon_sym_short] = ACTIONS(1581), + [anon_sym_ushort] = ACTIONS(1581), + [anon_sym_uint] = ACTIONS(1581), + [anon_sym_long] = ACTIONS(1581), + [anon_sym_ulong] = ACTIONS(1581), + [anon_sym_int128] = ACTIONS(1581), + [anon_sym_uint128] = ACTIONS(1581), + [anon_sym_float] = ACTIONS(1581), + [anon_sym_double] = ACTIONS(1581), + [anon_sym_float16] = ACTIONS(1581), + [anon_sym_bfloat16] = ACTIONS(1581), + [anon_sym_float128] = ACTIONS(1581), + [anon_sym_iptr] = ACTIONS(1581), + [anon_sym_uptr] = ACTIONS(1581), + [anon_sym_isz] = ACTIONS(1581), + [anon_sym_usz] = ACTIONS(1581), + [anon_sym_anyfault] = ACTIONS(1581), + [anon_sym_any] = ACTIONS(1581), + [anon_sym_DOLLARtypeof] = ACTIONS(1581), + [anon_sym_DOLLARtypefrom] = ACTIONS(1581), + [anon_sym_DOLLARvatype] = ACTIONS(1581), + [anon_sym_DOLLARevaltype] = ACTIONS(1581), + [sym_real_literal] = ACTIONS(1583), }, [642] = { [sym_line_comment] = STATE(642), [sym_doc_comment] = STATE(642), [sym_block_comment] = STATE(642), - [sym_ident] = ACTIONS(1560), - [sym_integer_literal] = ACTIONS(1562), - [anon_sym_SQUOTE] = ACTIONS(1562), - [anon_sym_DQUOTE] = ACTIONS(1562), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_bytes_literal] = ACTIONS(1562), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1560), - [sym_at_ident] = ACTIONS(1562), - [sym_hash_ident] = ACTIONS(1562), - [sym_type_ident] = ACTIONS(1562), - [sym_ct_type_ident] = ACTIONS(1562), - [sym_const_ident] = ACTIONS(1560), - [sym_builtin] = ACTIONS(1562), - [anon_sym_LPAREN] = ACTIONS(1562), - [anon_sym_AMP] = ACTIONS(1560), - [anon_sym_static] = ACTIONS(1560), - [anon_sym_tlocal] = ACTIONS(1560), - [anon_sym_SEMI] = ACTIONS(1562), - [anon_sym_fn] = ACTIONS(1560), - [anon_sym_LBRACE] = ACTIONS(1560), - [anon_sym_const] = ACTIONS(1560), - [anon_sym_var] = ACTIONS(1560), - [anon_sym_return] = ACTIONS(1560), - [anon_sym_continue] = ACTIONS(1560), - [anon_sym_break] = ACTIONS(1560), - [anon_sym_defer] = ACTIONS(1560), - [anon_sym_assert] = ACTIONS(1560), - [anon_sym_nextcase] = ACTIONS(1560), - [anon_sym_switch] = ACTIONS(1560), - [anon_sym_AMP_AMP] = ACTIONS(1562), - [anon_sym_if] = ACTIONS(1560), - [anon_sym_for] = ACTIONS(1560), - [anon_sym_foreach] = ACTIONS(1560), - [anon_sym_foreach_r] = ACTIONS(1560), - [anon_sym_while] = ACTIONS(1560), - [anon_sym_do] = ACTIONS(1560), - [anon_sym_int] = ACTIONS(1560), - [anon_sym_PLUS] = ACTIONS(1560), - [anon_sym_DASH] = ACTIONS(1560), - [anon_sym_STAR] = ACTIONS(1562), - [anon_sym_asm] = ACTIONS(1560), - [anon_sym_DOLLARassert] = ACTIONS(1560), - [anon_sym_DOLLARerror] = ACTIONS(1560), - [anon_sym_DOLLARecho] = ACTIONS(1560), - [anon_sym_DOLLARif] = ACTIONS(1560), - [anon_sym_DOLLARswitch] = ACTIONS(1560), - [anon_sym_DOLLARfor] = ACTIONS(1560), - [anon_sym_DOLLARforeach] = ACTIONS(1560), - [anon_sym_DOLLARendforeach] = ACTIONS(1560), - [anon_sym_DOLLARalignof] = ACTIONS(1560), - [anon_sym_DOLLARextnameof] = ACTIONS(1560), - [anon_sym_DOLLARnameof] = ACTIONS(1560), - [anon_sym_DOLLARoffsetof] = ACTIONS(1560), - [anon_sym_DOLLARqnameof] = ACTIONS(1560), - [anon_sym_DOLLARvaconst] = ACTIONS(1560), - [anon_sym_DOLLARvaarg] = ACTIONS(1560), - [anon_sym_DOLLARvaref] = ACTIONS(1560), - [anon_sym_DOLLARvaexpr] = ACTIONS(1560), - [anon_sym_true] = ACTIONS(1560), - [anon_sym_false] = ACTIONS(1560), - [anon_sym_null] = ACTIONS(1560), - [anon_sym_DOLLARvacount] = ACTIONS(1560), - [anon_sym_DOLLARappend] = ACTIONS(1560), - [anon_sym_DOLLARconcat] = ACTIONS(1560), - [anon_sym_DOLLAReval] = ACTIONS(1560), - [anon_sym_DOLLARis_const] = ACTIONS(1560), - [anon_sym_DOLLARsizeof] = ACTIONS(1560), - [anon_sym_DOLLARstringify] = ACTIONS(1560), - [anon_sym_DOLLARand] = ACTIONS(1560), - [anon_sym_DOLLARdefined] = ACTIONS(1560), - [anon_sym_DOLLARembed] = ACTIONS(1560), - [anon_sym_DOLLARor] = ACTIONS(1560), - [anon_sym_DOLLARfeature] = ACTIONS(1560), - [anon_sym_DOLLARassignable] = ACTIONS(1560), - [anon_sym_BANG] = ACTIONS(1562), - [anon_sym_TILDE] = ACTIONS(1562), - [anon_sym_PLUS_PLUS] = ACTIONS(1562), - [anon_sym_DASH_DASH] = ACTIONS(1562), - [anon_sym_typeid] = ACTIONS(1560), - [anon_sym_LBRACE_PIPE] = ACTIONS(1562), - [anon_sym_void] = ACTIONS(1560), - [anon_sym_bool] = ACTIONS(1560), - [anon_sym_char] = ACTIONS(1560), - [anon_sym_ichar] = ACTIONS(1560), - [anon_sym_short] = ACTIONS(1560), - [anon_sym_ushort] = ACTIONS(1560), - [anon_sym_uint] = ACTIONS(1560), - [anon_sym_long] = ACTIONS(1560), - [anon_sym_ulong] = ACTIONS(1560), - [anon_sym_int128] = ACTIONS(1560), - [anon_sym_uint128] = ACTIONS(1560), - [anon_sym_float] = ACTIONS(1560), - [anon_sym_double] = ACTIONS(1560), - [anon_sym_float16] = ACTIONS(1560), - [anon_sym_bfloat16] = ACTIONS(1560), - [anon_sym_float128] = ACTIONS(1560), - [anon_sym_iptr] = ACTIONS(1560), - [anon_sym_uptr] = ACTIONS(1560), - [anon_sym_isz] = ACTIONS(1560), - [anon_sym_usz] = ACTIONS(1560), - [anon_sym_anyfault] = ACTIONS(1560), - [anon_sym_any] = ACTIONS(1560), - [anon_sym_DOLLARtypeof] = ACTIONS(1560), - [anon_sym_DOLLARtypefrom] = ACTIONS(1560), - [anon_sym_DOLLARvatype] = ACTIONS(1560), - [anon_sym_DOLLARevaltype] = ACTIONS(1560), - [sym_real_literal] = ACTIONS(1562), + [sym_ident] = ACTIONS(1465), + [sym_integer_literal] = ACTIONS(1467), + [anon_sym_SQUOTE] = ACTIONS(1467), + [anon_sym_DQUOTE] = ACTIONS(1467), + [anon_sym_BQUOTE] = ACTIONS(1467), + [sym_bytes_literal] = ACTIONS(1467), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1465), + [sym_at_ident] = ACTIONS(1467), + [sym_hash_ident] = ACTIONS(1467), + [sym_type_ident] = ACTIONS(1467), + [sym_ct_type_ident] = ACTIONS(1467), + [sym_const_ident] = ACTIONS(1465), + [sym_builtin] = ACTIONS(1467), + [anon_sym_LPAREN] = ACTIONS(1467), + [anon_sym_AMP] = ACTIONS(1465), + [anon_sym_static] = ACTIONS(1465), + [anon_sym_tlocal] = ACTIONS(1465), + [anon_sym_SEMI] = ACTIONS(1467), + [anon_sym_fn] = ACTIONS(1465), + [anon_sym_LBRACE] = ACTIONS(1465), + [anon_sym_const] = ACTIONS(1465), + [anon_sym_var] = ACTIONS(1465), + [anon_sym_return] = ACTIONS(1465), + [anon_sym_continue] = ACTIONS(1465), + [anon_sym_break] = ACTIONS(1465), + [anon_sym_defer] = ACTIONS(1465), + [anon_sym_assert] = ACTIONS(1465), + [anon_sym_nextcase] = ACTIONS(1465), + [anon_sym_switch] = ACTIONS(1465), + [anon_sym_AMP_AMP] = ACTIONS(1467), + [anon_sym_if] = ACTIONS(1465), + [anon_sym_for] = ACTIONS(1465), + [anon_sym_foreach] = ACTIONS(1465), + [anon_sym_foreach_r] = ACTIONS(1465), + [anon_sym_while] = ACTIONS(1465), + [anon_sym_do] = ACTIONS(1465), + [anon_sym_int] = ACTIONS(1465), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_STAR] = ACTIONS(1467), + [anon_sym_asm] = ACTIONS(1465), + [anon_sym_DOLLARassert] = ACTIONS(1465), + [anon_sym_DOLLARerror] = ACTIONS(1465), + [anon_sym_DOLLARecho] = ACTIONS(1465), + [anon_sym_DOLLARif] = ACTIONS(1465), + [anon_sym_DOLLARswitch] = ACTIONS(1465), + [anon_sym_DOLLARfor] = ACTIONS(1465), + [anon_sym_DOLLARforeach] = ACTIONS(1465), + [anon_sym_DOLLARendforeach] = ACTIONS(1465), + [anon_sym_DOLLARalignof] = ACTIONS(1465), + [anon_sym_DOLLARextnameof] = ACTIONS(1465), + [anon_sym_DOLLARnameof] = ACTIONS(1465), + [anon_sym_DOLLARoffsetof] = ACTIONS(1465), + [anon_sym_DOLLARqnameof] = ACTIONS(1465), + [anon_sym_DOLLARvaconst] = ACTIONS(1465), + [anon_sym_DOLLARvaarg] = ACTIONS(1465), + [anon_sym_DOLLARvaref] = ACTIONS(1465), + [anon_sym_DOLLARvaexpr] = ACTIONS(1465), + [anon_sym_true] = ACTIONS(1465), + [anon_sym_false] = ACTIONS(1465), + [anon_sym_null] = ACTIONS(1465), + [anon_sym_DOLLARvacount] = ACTIONS(1465), + [anon_sym_DOLLARappend] = ACTIONS(1465), + [anon_sym_DOLLARconcat] = ACTIONS(1465), + [anon_sym_DOLLAReval] = ACTIONS(1465), + [anon_sym_DOLLARis_const] = ACTIONS(1465), + [anon_sym_DOLLARsizeof] = ACTIONS(1465), + [anon_sym_DOLLARstringify] = ACTIONS(1465), + [anon_sym_DOLLARand] = ACTIONS(1465), + [anon_sym_DOLLARdefined] = ACTIONS(1465), + [anon_sym_DOLLARembed] = ACTIONS(1465), + [anon_sym_DOLLARor] = ACTIONS(1465), + [anon_sym_DOLLARfeature] = ACTIONS(1465), + [anon_sym_DOLLARassignable] = ACTIONS(1465), + [anon_sym_BANG] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1467), + [anon_sym_PLUS_PLUS] = ACTIONS(1467), + [anon_sym_DASH_DASH] = ACTIONS(1467), + [anon_sym_typeid] = ACTIONS(1465), + [anon_sym_LBRACE_PIPE] = ACTIONS(1467), + [anon_sym_void] = ACTIONS(1465), + [anon_sym_bool] = ACTIONS(1465), + [anon_sym_char] = ACTIONS(1465), + [anon_sym_ichar] = ACTIONS(1465), + [anon_sym_short] = ACTIONS(1465), + [anon_sym_ushort] = ACTIONS(1465), + [anon_sym_uint] = ACTIONS(1465), + [anon_sym_long] = ACTIONS(1465), + [anon_sym_ulong] = ACTIONS(1465), + [anon_sym_int128] = ACTIONS(1465), + [anon_sym_uint128] = ACTIONS(1465), + [anon_sym_float] = ACTIONS(1465), + [anon_sym_double] = ACTIONS(1465), + [anon_sym_float16] = ACTIONS(1465), + [anon_sym_bfloat16] = ACTIONS(1465), + [anon_sym_float128] = ACTIONS(1465), + [anon_sym_iptr] = ACTIONS(1465), + [anon_sym_uptr] = ACTIONS(1465), + [anon_sym_isz] = ACTIONS(1465), + [anon_sym_usz] = ACTIONS(1465), + [anon_sym_anyfault] = ACTIONS(1465), + [anon_sym_any] = ACTIONS(1465), + [anon_sym_DOLLARtypeof] = ACTIONS(1465), + [anon_sym_DOLLARtypefrom] = ACTIONS(1465), + [anon_sym_DOLLARvatype] = ACTIONS(1465), + [anon_sym_DOLLARevaltype] = ACTIONS(1465), + [sym_real_literal] = ACTIONS(1467), }, [643] = { [sym_line_comment] = STATE(643), [sym_doc_comment] = STATE(643), [sym_block_comment] = STATE(643), - [sym_ident] = ACTIONS(1496), - [sym_integer_literal] = ACTIONS(1498), - [anon_sym_SQUOTE] = ACTIONS(1498), - [anon_sym_DQUOTE] = ACTIONS(1498), - [anon_sym_BQUOTE] = ACTIONS(1498), - [sym_bytes_literal] = ACTIONS(1498), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1496), - [sym_at_ident] = ACTIONS(1498), - [sym_hash_ident] = ACTIONS(1498), - [sym_type_ident] = ACTIONS(1498), - [sym_ct_type_ident] = ACTIONS(1498), - [sym_const_ident] = ACTIONS(1496), - [sym_builtin] = ACTIONS(1498), - [anon_sym_LPAREN] = ACTIONS(1498), - [anon_sym_AMP] = ACTIONS(1496), - [anon_sym_static] = ACTIONS(1496), - [anon_sym_tlocal] = ACTIONS(1496), - [anon_sym_SEMI] = ACTIONS(1498), - [anon_sym_fn] = ACTIONS(1496), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_const] = ACTIONS(1496), - [anon_sym_var] = ACTIONS(1496), - [anon_sym_return] = ACTIONS(1496), - [anon_sym_continue] = ACTIONS(1496), - [anon_sym_break] = ACTIONS(1496), - [anon_sym_defer] = ACTIONS(1496), - [anon_sym_assert] = ACTIONS(1496), - [anon_sym_nextcase] = ACTIONS(1496), - [anon_sym_switch] = ACTIONS(1496), - [anon_sym_AMP_AMP] = ACTIONS(1498), - [anon_sym_if] = ACTIONS(1496), - [anon_sym_for] = ACTIONS(1496), - [anon_sym_foreach] = ACTIONS(1496), - [anon_sym_foreach_r] = ACTIONS(1496), - [anon_sym_while] = ACTIONS(1496), - [anon_sym_do] = ACTIONS(1496), - [anon_sym_int] = ACTIONS(1496), - [anon_sym_PLUS] = ACTIONS(1496), - [anon_sym_DASH] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(1498), - [anon_sym_asm] = ACTIONS(1496), - [anon_sym_DOLLARassert] = ACTIONS(1496), - [anon_sym_DOLLARerror] = ACTIONS(1496), - [anon_sym_DOLLARecho] = ACTIONS(1496), - [anon_sym_DOLLARif] = ACTIONS(1496), - [anon_sym_DOLLARendif] = ACTIONS(1496), - [anon_sym_DOLLARswitch] = ACTIONS(1496), - [anon_sym_DOLLARfor] = ACTIONS(1496), - [anon_sym_DOLLARforeach] = ACTIONS(1496), - [anon_sym_DOLLARalignof] = ACTIONS(1496), - [anon_sym_DOLLARextnameof] = ACTIONS(1496), - [anon_sym_DOLLARnameof] = ACTIONS(1496), - [anon_sym_DOLLARoffsetof] = ACTIONS(1496), - [anon_sym_DOLLARqnameof] = ACTIONS(1496), - [anon_sym_DOLLARvaconst] = ACTIONS(1496), - [anon_sym_DOLLARvaarg] = ACTIONS(1496), - [anon_sym_DOLLARvaref] = ACTIONS(1496), - [anon_sym_DOLLARvaexpr] = ACTIONS(1496), - [anon_sym_true] = ACTIONS(1496), - [anon_sym_false] = ACTIONS(1496), - [anon_sym_null] = ACTIONS(1496), - [anon_sym_DOLLARvacount] = ACTIONS(1496), - [anon_sym_DOLLARappend] = ACTIONS(1496), - [anon_sym_DOLLARconcat] = ACTIONS(1496), - [anon_sym_DOLLAReval] = ACTIONS(1496), - [anon_sym_DOLLARis_const] = ACTIONS(1496), - [anon_sym_DOLLARsizeof] = ACTIONS(1496), - [anon_sym_DOLLARstringify] = ACTIONS(1496), - [anon_sym_DOLLARand] = ACTIONS(1496), - [anon_sym_DOLLARdefined] = ACTIONS(1496), - [anon_sym_DOLLARembed] = ACTIONS(1496), - [anon_sym_DOLLARor] = ACTIONS(1496), - [anon_sym_DOLLARfeature] = ACTIONS(1496), - [anon_sym_DOLLARassignable] = ACTIONS(1496), - [anon_sym_BANG] = ACTIONS(1498), - [anon_sym_TILDE] = ACTIONS(1498), - [anon_sym_PLUS_PLUS] = ACTIONS(1498), - [anon_sym_DASH_DASH] = ACTIONS(1498), - [anon_sym_typeid] = ACTIONS(1496), - [anon_sym_LBRACE_PIPE] = ACTIONS(1498), - [anon_sym_void] = ACTIONS(1496), - [anon_sym_bool] = ACTIONS(1496), - [anon_sym_char] = ACTIONS(1496), - [anon_sym_ichar] = ACTIONS(1496), - [anon_sym_short] = ACTIONS(1496), - [anon_sym_ushort] = ACTIONS(1496), - [anon_sym_uint] = ACTIONS(1496), - [anon_sym_long] = ACTIONS(1496), - [anon_sym_ulong] = ACTIONS(1496), - [anon_sym_int128] = ACTIONS(1496), - [anon_sym_uint128] = ACTIONS(1496), - [anon_sym_float] = ACTIONS(1496), - [anon_sym_double] = ACTIONS(1496), - [anon_sym_float16] = ACTIONS(1496), - [anon_sym_bfloat16] = ACTIONS(1496), - [anon_sym_float128] = ACTIONS(1496), - [anon_sym_iptr] = ACTIONS(1496), - [anon_sym_uptr] = ACTIONS(1496), - [anon_sym_isz] = ACTIONS(1496), - [anon_sym_usz] = ACTIONS(1496), - [anon_sym_anyfault] = ACTIONS(1496), - [anon_sym_any] = ACTIONS(1496), - [anon_sym_DOLLARtypeof] = ACTIONS(1496), - [anon_sym_DOLLARtypefrom] = ACTIONS(1496), - [anon_sym_DOLLARvatype] = ACTIONS(1496), - [anon_sym_DOLLARevaltype] = ACTIONS(1496), - [sym_real_literal] = ACTIONS(1498), + [sym_ident] = ACTIONS(1561), + [sym_integer_literal] = ACTIONS(1563), + [anon_sym_SQUOTE] = ACTIONS(1563), + [anon_sym_DQUOTE] = ACTIONS(1563), + [anon_sym_BQUOTE] = ACTIONS(1563), + [sym_bytes_literal] = ACTIONS(1563), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1561), + [sym_at_ident] = ACTIONS(1563), + [sym_hash_ident] = ACTIONS(1563), + [sym_type_ident] = ACTIONS(1563), + [sym_ct_type_ident] = ACTIONS(1563), + [sym_const_ident] = ACTIONS(1561), + [sym_builtin] = ACTIONS(1563), + [anon_sym_LPAREN] = ACTIONS(1563), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_static] = ACTIONS(1561), + [anon_sym_tlocal] = ACTIONS(1561), + [anon_sym_SEMI] = ACTIONS(1563), + [anon_sym_fn] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_const] = ACTIONS(1561), + [anon_sym_var] = ACTIONS(1561), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_continue] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1561), + [anon_sym_defer] = ACTIONS(1561), + [anon_sym_assert] = ACTIONS(1561), + [anon_sym_nextcase] = ACTIONS(1561), + [anon_sym_switch] = ACTIONS(1561), + [anon_sym_AMP_AMP] = ACTIONS(1563), + [anon_sym_if] = ACTIONS(1561), + [anon_sym_for] = ACTIONS(1561), + [anon_sym_foreach] = ACTIONS(1561), + [anon_sym_foreach_r] = ACTIONS(1561), + [anon_sym_while] = ACTIONS(1561), + [anon_sym_do] = ACTIONS(1561), + [anon_sym_int] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1561), + [anon_sym_STAR] = ACTIONS(1563), + [anon_sym_asm] = ACTIONS(1561), + [anon_sym_DOLLARassert] = ACTIONS(1561), + [anon_sym_DOLLARerror] = ACTIONS(1561), + [anon_sym_DOLLARecho] = ACTIONS(1561), + [anon_sym_DOLLARif] = ACTIONS(1561), + [anon_sym_DOLLARswitch] = ACTIONS(1561), + [anon_sym_DOLLARfor] = ACTIONS(1561), + [anon_sym_DOLLARendfor] = ACTIONS(1561), + [anon_sym_DOLLARforeach] = ACTIONS(1561), + [anon_sym_DOLLARalignof] = ACTIONS(1561), + [anon_sym_DOLLARextnameof] = ACTIONS(1561), + [anon_sym_DOLLARnameof] = ACTIONS(1561), + [anon_sym_DOLLARoffsetof] = ACTIONS(1561), + [anon_sym_DOLLARqnameof] = ACTIONS(1561), + [anon_sym_DOLLARvaconst] = ACTIONS(1561), + [anon_sym_DOLLARvaarg] = ACTIONS(1561), + [anon_sym_DOLLARvaref] = ACTIONS(1561), + [anon_sym_DOLLARvaexpr] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1561), + [anon_sym_false] = ACTIONS(1561), + [anon_sym_null] = ACTIONS(1561), + [anon_sym_DOLLARvacount] = ACTIONS(1561), + [anon_sym_DOLLARappend] = ACTIONS(1561), + [anon_sym_DOLLARconcat] = ACTIONS(1561), + [anon_sym_DOLLAReval] = ACTIONS(1561), + [anon_sym_DOLLARis_const] = ACTIONS(1561), + [anon_sym_DOLLARsizeof] = ACTIONS(1561), + [anon_sym_DOLLARstringify] = ACTIONS(1561), + [anon_sym_DOLLARand] = ACTIONS(1561), + [anon_sym_DOLLARdefined] = ACTIONS(1561), + [anon_sym_DOLLARembed] = ACTIONS(1561), + [anon_sym_DOLLARor] = ACTIONS(1561), + [anon_sym_DOLLARfeature] = ACTIONS(1561), + [anon_sym_DOLLARassignable] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1563), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_PLUS_PLUS] = ACTIONS(1563), + [anon_sym_DASH_DASH] = ACTIONS(1563), + [anon_sym_typeid] = ACTIONS(1561), + [anon_sym_LBRACE_PIPE] = ACTIONS(1563), + [anon_sym_void] = ACTIONS(1561), + [anon_sym_bool] = ACTIONS(1561), + [anon_sym_char] = ACTIONS(1561), + [anon_sym_ichar] = ACTIONS(1561), + [anon_sym_short] = ACTIONS(1561), + [anon_sym_ushort] = ACTIONS(1561), + [anon_sym_uint] = ACTIONS(1561), + [anon_sym_long] = ACTIONS(1561), + [anon_sym_ulong] = ACTIONS(1561), + [anon_sym_int128] = ACTIONS(1561), + [anon_sym_uint128] = ACTIONS(1561), + [anon_sym_float] = ACTIONS(1561), + [anon_sym_double] = ACTIONS(1561), + [anon_sym_float16] = ACTIONS(1561), + [anon_sym_bfloat16] = ACTIONS(1561), + [anon_sym_float128] = ACTIONS(1561), + [anon_sym_iptr] = ACTIONS(1561), + [anon_sym_uptr] = ACTIONS(1561), + [anon_sym_isz] = ACTIONS(1561), + [anon_sym_usz] = ACTIONS(1561), + [anon_sym_anyfault] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1561), + [anon_sym_DOLLARtypeof] = ACTIONS(1561), + [anon_sym_DOLLARtypefrom] = ACTIONS(1561), + [anon_sym_DOLLARvatype] = ACTIONS(1561), + [anon_sym_DOLLARevaltype] = ACTIONS(1561), + [sym_real_literal] = ACTIONS(1563), }, [644] = { [sym_line_comment] = STATE(644), [sym_doc_comment] = STATE(644), [sym_block_comment] = STATE(644), - [sym_ident] = ACTIONS(1536), - [sym_integer_literal] = ACTIONS(1538), - [anon_sym_SQUOTE] = ACTIONS(1538), - [anon_sym_DQUOTE] = ACTIONS(1538), - [anon_sym_BQUOTE] = ACTIONS(1538), - [sym_bytes_literal] = ACTIONS(1538), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1536), - [sym_at_ident] = ACTIONS(1538), - [sym_hash_ident] = ACTIONS(1538), - [sym_type_ident] = ACTIONS(1538), - [sym_ct_type_ident] = ACTIONS(1538), - [sym_const_ident] = ACTIONS(1536), - [sym_builtin] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1538), - [anon_sym_AMP] = ACTIONS(1536), - [anon_sym_static] = ACTIONS(1536), - [anon_sym_tlocal] = ACTIONS(1536), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_fn] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(1536), - [anon_sym_const] = ACTIONS(1536), - [anon_sym_var] = ACTIONS(1536), - [anon_sym_return] = ACTIONS(1536), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_break] = ACTIONS(1536), - [anon_sym_defer] = ACTIONS(1536), - [anon_sym_assert] = ACTIONS(1536), - [anon_sym_nextcase] = ACTIONS(1536), - [anon_sym_switch] = ACTIONS(1536), - [anon_sym_AMP_AMP] = ACTIONS(1538), - [anon_sym_if] = ACTIONS(1536), - [anon_sym_for] = ACTIONS(1536), - [anon_sym_foreach] = ACTIONS(1536), - [anon_sym_foreach_r] = ACTIONS(1536), - [anon_sym_while] = ACTIONS(1536), - [anon_sym_do] = ACTIONS(1536), - [anon_sym_int] = ACTIONS(1536), - [anon_sym_PLUS] = ACTIONS(1536), - [anon_sym_DASH] = ACTIONS(1536), - [anon_sym_STAR] = ACTIONS(1538), - [anon_sym_asm] = ACTIONS(1536), - [anon_sym_DOLLARassert] = ACTIONS(1536), - [anon_sym_DOLLARerror] = ACTIONS(1536), - [anon_sym_DOLLARecho] = ACTIONS(1536), - [anon_sym_DOLLARif] = ACTIONS(1536), - [anon_sym_DOLLARswitch] = ACTIONS(1536), - [anon_sym_DOLLARfor] = ACTIONS(1536), - [anon_sym_DOLLARforeach] = ACTIONS(1536), - [anon_sym_DOLLARendforeach] = ACTIONS(1536), - [anon_sym_DOLLARalignof] = ACTIONS(1536), - [anon_sym_DOLLARextnameof] = ACTIONS(1536), - [anon_sym_DOLLARnameof] = ACTIONS(1536), - [anon_sym_DOLLARoffsetof] = ACTIONS(1536), - [anon_sym_DOLLARqnameof] = ACTIONS(1536), - [anon_sym_DOLLARvaconst] = ACTIONS(1536), - [anon_sym_DOLLARvaarg] = ACTIONS(1536), - [anon_sym_DOLLARvaref] = ACTIONS(1536), - [anon_sym_DOLLARvaexpr] = ACTIONS(1536), - [anon_sym_true] = ACTIONS(1536), - [anon_sym_false] = ACTIONS(1536), - [anon_sym_null] = ACTIONS(1536), - [anon_sym_DOLLARvacount] = ACTIONS(1536), - [anon_sym_DOLLARappend] = ACTIONS(1536), - [anon_sym_DOLLARconcat] = ACTIONS(1536), - [anon_sym_DOLLAReval] = ACTIONS(1536), - [anon_sym_DOLLARis_const] = ACTIONS(1536), - [anon_sym_DOLLARsizeof] = ACTIONS(1536), - [anon_sym_DOLLARstringify] = ACTIONS(1536), - [anon_sym_DOLLARand] = ACTIONS(1536), - [anon_sym_DOLLARdefined] = ACTIONS(1536), - [anon_sym_DOLLARembed] = ACTIONS(1536), - [anon_sym_DOLLARor] = ACTIONS(1536), - [anon_sym_DOLLARfeature] = ACTIONS(1536), - [anon_sym_DOLLARassignable] = ACTIONS(1536), - [anon_sym_BANG] = ACTIONS(1538), - [anon_sym_TILDE] = ACTIONS(1538), - [anon_sym_PLUS_PLUS] = ACTIONS(1538), - [anon_sym_DASH_DASH] = ACTIONS(1538), - [anon_sym_typeid] = ACTIONS(1536), - [anon_sym_LBRACE_PIPE] = ACTIONS(1538), - [anon_sym_void] = ACTIONS(1536), - [anon_sym_bool] = ACTIONS(1536), - [anon_sym_char] = ACTIONS(1536), - [anon_sym_ichar] = ACTIONS(1536), - [anon_sym_short] = ACTIONS(1536), - [anon_sym_ushort] = ACTIONS(1536), - [anon_sym_uint] = ACTIONS(1536), - [anon_sym_long] = ACTIONS(1536), - [anon_sym_ulong] = ACTIONS(1536), - [anon_sym_int128] = ACTIONS(1536), - [anon_sym_uint128] = ACTIONS(1536), - [anon_sym_float] = ACTIONS(1536), - [anon_sym_double] = ACTIONS(1536), - [anon_sym_float16] = ACTIONS(1536), - [anon_sym_bfloat16] = ACTIONS(1536), - [anon_sym_float128] = ACTIONS(1536), - [anon_sym_iptr] = ACTIONS(1536), - [anon_sym_uptr] = ACTIONS(1536), - [anon_sym_isz] = ACTIONS(1536), - [anon_sym_usz] = ACTIONS(1536), - [anon_sym_anyfault] = ACTIONS(1536), - [anon_sym_any] = ACTIONS(1536), - [anon_sym_DOLLARtypeof] = ACTIONS(1536), - [anon_sym_DOLLARtypefrom] = ACTIONS(1536), - [anon_sym_DOLLARvatype] = ACTIONS(1536), - [anon_sym_DOLLARevaltype] = ACTIONS(1536), - [sym_real_literal] = ACTIONS(1538), + [sym_ident] = ACTIONS(1561), + [sym_integer_literal] = ACTIONS(1563), + [anon_sym_SQUOTE] = ACTIONS(1563), + [anon_sym_DQUOTE] = ACTIONS(1563), + [anon_sym_BQUOTE] = ACTIONS(1563), + [sym_bytes_literal] = ACTIONS(1563), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1561), + [sym_at_ident] = ACTIONS(1563), + [sym_hash_ident] = ACTIONS(1563), + [sym_type_ident] = ACTIONS(1563), + [sym_ct_type_ident] = ACTIONS(1563), + [sym_const_ident] = ACTIONS(1561), + [sym_builtin] = ACTIONS(1563), + [anon_sym_LPAREN] = ACTIONS(1563), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_static] = ACTIONS(1561), + [anon_sym_tlocal] = ACTIONS(1561), + [anon_sym_SEMI] = ACTIONS(1563), + [anon_sym_fn] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_const] = ACTIONS(1561), + [anon_sym_var] = ACTIONS(1561), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_continue] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1561), + [anon_sym_defer] = ACTIONS(1561), + [anon_sym_assert] = ACTIONS(1561), + [anon_sym_nextcase] = ACTIONS(1561), + [anon_sym_switch] = ACTIONS(1561), + [anon_sym_AMP_AMP] = ACTIONS(1563), + [anon_sym_if] = ACTIONS(1561), + [anon_sym_for] = ACTIONS(1561), + [anon_sym_foreach] = ACTIONS(1561), + [anon_sym_foreach_r] = ACTIONS(1561), + [anon_sym_while] = ACTIONS(1561), + [anon_sym_do] = ACTIONS(1561), + [anon_sym_int] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1561), + [anon_sym_STAR] = ACTIONS(1563), + [anon_sym_asm] = ACTIONS(1561), + [anon_sym_DOLLARassert] = ACTIONS(1561), + [anon_sym_DOLLARerror] = ACTIONS(1561), + [anon_sym_DOLLARecho] = ACTIONS(1561), + [anon_sym_DOLLARif] = ACTIONS(1561), + [anon_sym_DOLLARswitch] = ACTIONS(1561), + [anon_sym_DOLLARfor] = ACTIONS(1561), + [anon_sym_DOLLARendfor] = ACTIONS(1561), + [anon_sym_DOLLARforeach] = ACTIONS(1561), + [anon_sym_DOLLARalignof] = ACTIONS(1561), + [anon_sym_DOLLARextnameof] = ACTIONS(1561), + [anon_sym_DOLLARnameof] = ACTIONS(1561), + [anon_sym_DOLLARoffsetof] = ACTIONS(1561), + [anon_sym_DOLLARqnameof] = ACTIONS(1561), + [anon_sym_DOLLARvaconst] = ACTIONS(1561), + [anon_sym_DOLLARvaarg] = ACTIONS(1561), + [anon_sym_DOLLARvaref] = ACTIONS(1561), + [anon_sym_DOLLARvaexpr] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1561), + [anon_sym_false] = ACTIONS(1561), + [anon_sym_null] = ACTIONS(1561), + [anon_sym_DOLLARvacount] = ACTIONS(1561), + [anon_sym_DOLLARappend] = ACTIONS(1561), + [anon_sym_DOLLARconcat] = ACTIONS(1561), + [anon_sym_DOLLAReval] = ACTIONS(1561), + [anon_sym_DOLLARis_const] = ACTIONS(1561), + [anon_sym_DOLLARsizeof] = ACTIONS(1561), + [anon_sym_DOLLARstringify] = ACTIONS(1561), + [anon_sym_DOLLARand] = ACTIONS(1561), + [anon_sym_DOLLARdefined] = ACTIONS(1561), + [anon_sym_DOLLARembed] = ACTIONS(1561), + [anon_sym_DOLLARor] = ACTIONS(1561), + [anon_sym_DOLLARfeature] = ACTIONS(1561), + [anon_sym_DOLLARassignable] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1563), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_PLUS_PLUS] = ACTIONS(1563), + [anon_sym_DASH_DASH] = ACTIONS(1563), + [anon_sym_typeid] = ACTIONS(1561), + [anon_sym_LBRACE_PIPE] = ACTIONS(1563), + [anon_sym_void] = ACTIONS(1561), + [anon_sym_bool] = ACTIONS(1561), + [anon_sym_char] = ACTIONS(1561), + [anon_sym_ichar] = ACTIONS(1561), + [anon_sym_short] = ACTIONS(1561), + [anon_sym_ushort] = ACTIONS(1561), + [anon_sym_uint] = ACTIONS(1561), + [anon_sym_long] = ACTIONS(1561), + [anon_sym_ulong] = ACTIONS(1561), + [anon_sym_int128] = ACTIONS(1561), + [anon_sym_uint128] = ACTIONS(1561), + [anon_sym_float] = ACTIONS(1561), + [anon_sym_double] = ACTIONS(1561), + [anon_sym_float16] = ACTIONS(1561), + [anon_sym_bfloat16] = ACTIONS(1561), + [anon_sym_float128] = ACTIONS(1561), + [anon_sym_iptr] = ACTIONS(1561), + [anon_sym_uptr] = ACTIONS(1561), + [anon_sym_isz] = ACTIONS(1561), + [anon_sym_usz] = ACTIONS(1561), + [anon_sym_anyfault] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1561), + [anon_sym_DOLLARtypeof] = ACTIONS(1561), + [anon_sym_DOLLARtypefrom] = ACTIONS(1561), + [anon_sym_DOLLARvatype] = ACTIONS(1561), + [anon_sym_DOLLARevaltype] = ACTIONS(1561), + [sym_real_literal] = ACTIONS(1563), }, [645] = { [sym_line_comment] = STATE(645), [sym_doc_comment] = STATE(645), [sym_block_comment] = STATE(645), - [sym_ident] = ACTIONS(1532), - [sym_integer_literal] = ACTIONS(1534), - [anon_sym_SQUOTE] = ACTIONS(1534), - [anon_sym_DQUOTE] = ACTIONS(1534), - [anon_sym_BQUOTE] = ACTIONS(1534), - [sym_bytes_literal] = ACTIONS(1534), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1532), - [sym_at_ident] = ACTIONS(1534), - [sym_hash_ident] = ACTIONS(1534), - [sym_type_ident] = ACTIONS(1534), - [sym_ct_type_ident] = ACTIONS(1534), - [sym_const_ident] = ACTIONS(1532), - [sym_builtin] = ACTIONS(1534), - [anon_sym_LPAREN] = ACTIONS(1534), - [anon_sym_AMP] = ACTIONS(1532), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_tlocal] = ACTIONS(1532), - [anon_sym_SEMI] = ACTIONS(1534), - [anon_sym_fn] = ACTIONS(1532), - [anon_sym_LBRACE] = ACTIONS(1532), - [anon_sym_const] = ACTIONS(1532), - [anon_sym_var] = ACTIONS(1532), - [anon_sym_return] = ACTIONS(1532), - [anon_sym_continue] = ACTIONS(1532), - [anon_sym_break] = ACTIONS(1532), - [anon_sym_defer] = ACTIONS(1532), - [anon_sym_assert] = ACTIONS(1532), - [anon_sym_nextcase] = ACTIONS(1532), - [anon_sym_switch] = ACTIONS(1532), - [anon_sym_AMP_AMP] = ACTIONS(1534), - [anon_sym_if] = ACTIONS(1532), - [anon_sym_for] = ACTIONS(1532), - [anon_sym_foreach] = ACTIONS(1532), - [anon_sym_foreach_r] = ACTIONS(1532), - [anon_sym_while] = ACTIONS(1532), - [anon_sym_do] = ACTIONS(1532), - [anon_sym_int] = ACTIONS(1532), - [anon_sym_PLUS] = ACTIONS(1532), - [anon_sym_DASH] = ACTIONS(1532), - [anon_sym_STAR] = ACTIONS(1534), - [anon_sym_asm] = ACTIONS(1532), - [anon_sym_DOLLARassert] = ACTIONS(1532), - [anon_sym_DOLLARerror] = ACTIONS(1532), - [anon_sym_DOLLARecho] = ACTIONS(1532), - [anon_sym_DOLLARif] = ACTIONS(1532), - [anon_sym_DOLLARswitch] = ACTIONS(1532), - [anon_sym_DOLLARfor] = ACTIONS(1532), - [anon_sym_DOLLARforeach] = ACTIONS(1532), - [anon_sym_DOLLARendforeach] = ACTIONS(1532), - [anon_sym_DOLLARalignof] = ACTIONS(1532), - [anon_sym_DOLLARextnameof] = ACTIONS(1532), - [anon_sym_DOLLARnameof] = ACTIONS(1532), - [anon_sym_DOLLARoffsetof] = ACTIONS(1532), - [anon_sym_DOLLARqnameof] = ACTIONS(1532), - [anon_sym_DOLLARvaconst] = ACTIONS(1532), - [anon_sym_DOLLARvaarg] = ACTIONS(1532), - [anon_sym_DOLLARvaref] = ACTIONS(1532), - [anon_sym_DOLLARvaexpr] = ACTIONS(1532), - [anon_sym_true] = ACTIONS(1532), - [anon_sym_false] = ACTIONS(1532), - [anon_sym_null] = ACTIONS(1532), - [anon_sym_DOLLARvacount] = ACTIONS(1532), - [anon_sym_DOLLARappend] = ACTIONS(1532), - [anon_sym_DOLLARconcat] = ACTIONS(1532), - [anon_sym_DOLLAReval] = ACTIONS(1532), - [anon_sym_DOLLARis_const] = ACTIONS(1532), - [anon_sym_DOLLARsizeof] = ACTIONS(1532), - [anon_sym_DOLLARstringify] = ACTIONS(1532), - [anon_sym_DOLLARand] = ACTIONS(1532), - [anon_sym_DOLLARdefined] = ACTIONS(1532), - [anon_sym_DOLLARembed] = ACTIONS(1532), - [anon_sym_DOLLARor] = ACTIONS(1532), - [anon_sym_DOLLARfeature] = ACTIONS(1532), - [anon_sym_DOLLARassignable] = ACTIONS(1532), - [anon_sym_BANG] = ACTIONS(1534), - [anon_sym_TILDE] = ACTIONS(1534), - [anon_sym_PLUS_PLUS] = ACTIONS(1534), - [anon_sym_DASH_DASH] = ACTIONS(1534), - [anon_sym_typeid] = ACTIONS(1532), - [anon_sym_LBRACE_PIPE] = ACTIONS(1534), - [anon_sym_void] = ACTIONS(1532), - [anon_sym_bool] = ACTIONS(1532), - [anon_sym_char] = ACTIONS(1532), - [anon_sym_ichar] = ACTIONS(1532), - [anon_sym_short] = ACTIONS(1532), - [anon_sym_ushort] = ACTIONS(1532), - [anon_sym_uint] = ACTIONS(1532), - [anon_sym_long] = ACTIONS(1532), - [anon_sym_ulong] = ACTIONS(1532), - [anon_sym_int128] = ACTIONS(1532), - [anon_sym_uint128] = ACTIONS(1532), - [anon_sym_float] = ACTIONS(1532), - [anon_sym_double] = ACTIONS(1532), - [anon_sym_float16] = ACTIONS(1532), - [anon_sym_bfloat16] = ACTIONS(1532), - [anon_sym_float128] = ACTIONS(1532), - [anon_sym_iptr] = ACTIONS(1532), - [anon_sym_uptr] = ACTIONS(1532), - [anon_sym_isz] = ACTIONS(1532), - [anon_sym_usz] = ACTIONS(1532), - [anon_sym_anyfault] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_DOLLARtypeof] = ACTIONS(1532), - [anon_sym_DOLLARtypefrom] = ACTIONS(1532), - [anon_sym_DOLLARvatype] = ACTIONS(1532), - [anon_sym_DOLLARevaltype] = ACTIONS(1532), - [sym_real_literal] = ACTIONS(1534), + [sym_ident] = ACTIONS(1633), + [sym_integer_literal] = ACTIONS(1635), + [anon_sym_SQUOTE] = ACTIONS(1635), + [anon_sym_DQUOTE] = ACTIONS(1635), + [anon_sym_BQUOTE] = ACTIONS(1635), + [sym_bytes_literal] = ACTIONS(1635), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1633), + [sym_at_ident] = ACTIONS(1635), + [sym_hash_ident] = ACTIONS(1635), + [sym_type_ident] = ACTIONS(1635), + [sym_ct_type_ident] = ACTIONS(1635), + [sym_const_ident] = ACTIONS(1633), + [sym_builtin] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1633), + [anon_sym_static] = ACTIONS(1633), + [anon_sym_tlocal] = ACTIONS(1633), + [anon_sym_SEMI] = ACTIONS(1635), + [anon_sym_fn] = ACTIONS(1633), + [anon_sym_LBRACE] = ACTIONS(1633), + [anon_sym_const] = ACTIONS(1633), + [anon_sym_var] = ACTIONS(1633), + [anon_sym_return] = ACTIONS(1633), + [anon_sym_continue] = ACTIONS(1633), + [anon_sym_break] = ACTIONS(1633), + [anon_sym_defer] = ACTIONS(1633), + [anon_sym_assert] = ACTIONS(1633), + [anon_sym_nextcase] = ACTIONS(1633), + [anon_sym_switch] = ACTIONS(1633), + [anon_sym_AMP_AMP] = ACTIONS(1635), + [anon_sym_if] = ACTIONS(1633), + [anon_sym_for] = ACTIONS(1633), + [anon_sym_foreach] = ACTIONS(1633), + [anon_sym_foreach_r] = ACTIONS(1633), + [anon_sym_while] = ACTIONS(1633), + [anon_sym_do] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_PLUS] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1633), + [anon_sym_STAR] = ACTIONS(1635), + [anon_sym_asm] = ACTIONS(1633), + [anon_sym_DOLLARassert] = ACTIONS(1633), + [anon_sym_DOLLARerror] = ACTIONS(1633), + [anon_sym_DOLLARecho] = ACTIONS(1633), + [anon_sym_DOLLARif] = ACTIONS(1633), + [anon_sym_DOLLARswitch] = ACTIONS(1633), + [anon_sym_DOLLARfor] = ACTIONS(1633), + [anon_sym_DOLLARendfor] = ACTIONS(1633), + [anon_sym_DOLLARforeach] = ACTIONS(1633), + [anon_sym_DOLLARalignof] = ACTIONS(1633), + [anon_sym_DOLLARextnameof] = ACTIONS(1633), + [anon_sym_DOLLARnameof] = ACTIONS(1633), + [anon_sym_DOLLARoffsetof] = ACTIONS(1633), + [anon_sym_DOLLARqnameof] = ACTIONS(1633), + [anon_sym_DOLLARvaconst] = ACTIONS(1633), + [anon_sym_DOLLARvaarg] = ACTIONS(1633), + [anon_sym_DOLLARvaref] = ACTIONS(1633), + [anon_sym_DOLLARvaexpr] = ACTIONS(1633), + [anon_sym_true] = ACTIONS(1633), + [anon_sym_false] = ACTIONS(1633), + [anon_sym_null] = ACTIONS(1633), + [anon_sym_DOLLARvacount] = ACTIONS(1633), + [anon_sym_DOLLARappend] = ACTIONS(1633), + [anon_sym_DOLLARconcat] = ACTIONS(1633), + [anon_sym_DOLLAReval] = ACTIONS(1633), + [anon_sym_DOLLARis_const] = ACTIONS(1633), + [anon_sym_DOLLARsizeof] = ACTIONS(1633), + [anon_sym_DOLLARstringify] = ACTIONS(1633), + [anon_sym_DOLLARand] = ACTIONS(1633), + [anon_sym_DOLLARdefined] = ACTIONS(1633), + [anon_sym_DOLLARembed] = ACTIONS(1633), + [anon_sym_DOLLARor] = ACTIONS(1633), + [anon_sym_DOLLARfeature] = ACTIONS(1633), + [anon_sym_DOLLARassignable] = ACTIONS(1633), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1635), + [anon_sym_DASH_DASH] = ACTIONS(1635), + [anon_sym_typeid] = ACTIONS(1633), + [anon_sym_LBRACE_PIPE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_char] = ACTIONS(1633), + [anon_sym_ichar] = ACTIONS(1633), + [anon_sym_short] = ACTIONS(1633), + [anon_sym_ushort] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_long] = ACTIONS(1633), + [anon_sym_ulong] = ACTIONS(1633), + [anon_sym_int128] = ACTIONS(1633), + [anon_sym_uint128] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_double] = ACTIONS(1633), + [anon_sym_float16] = ACTIONS(1633), + [anon_sym_bfloat16] = ACTIONS(1633), + [anon_sym_float128] = ACTIONS(1633), + [anon_sym_iptr] = ACTIONS(1633), + [anon_sym_uptr] = ACTIONS(1633), + [anon_sym_isz] = ACTIONS(1633), + [anon_sym_usz] = ACTIONS(1633), + [anon_sym_anyfault] = ACTIONS(1633), + [anon_sym_any] = ACTIONS(1633), + [anon_sym_DOLLARtypeof] = ACTIONS(1633), + [anon_sym_DOLLARtypefrom] = ACTIONS(1633), + [anon_sym_DOLLARvatype] = ACTIONS(1633), + [anon_sym_DOLLARevaltype] = ACTIONS(1633), + [sym_real_literal] = ACTIONS(1635), }, [646] = { [sym_line_comment] = STATE(646), [sym_doc_comment] = STATE(646), [sym_block_comment] = STATE(646), - [sym_ident] = ACTIONS(1492), - [sym_integer_literal] = ACTIONS(1494), - [anon_sym_SQUOTE] = ACTIONS(1494), - [anon_sym_DQUOTE] = ACTIONS(1494), - [anon_sym_BQUOTE] = ACTIONS(1494), - [sym_bytes_literal] = ACTIONS(1494), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1492), - [sym_at_ident] = ACTIONS(1494), - [sym_hash_ident] = ACTIONS(1494), - [sym_type_ident] = ACTIONS(1494), - [sym_ct_type_ident] = ACTIONS(1494), - [sym_const_ident] = ACTIONS(1492), - [sym_builtin] = ACTIONS(1494), - [anon_sym_LPAREN] = ACTIONS(1494), - [anon_sym_AMP] = ACTIONS(1492), - [anon_sym_static] = ACTIONS(1492), - [anon_sym_tlocal] = ACTIONS(1492), - [anon_sym_SEMI] = ACTIONS(1494), - [anon_sym_fn] = ACTIONS(1492), - [anon_sym_LBRACE] = ACTIONS(1492), - [anon_sym_const] = ACTIONS(1492), - [anon_sym_var] = ACTIONS(1492), - [anon_sym_return] = ACTIONS(1492), - [anon_sym_continue] = ACTIONS(1492), - [anon_sym_break] = ACTIONS(1492), - [anon_sym_defer] = ACTIONS(1492), - [anon_sym_assert] = ACTIONS(1492), - [anon_sym_nextcase] = ACTIONS(1492), - [anon_sym_switch] = ACTIONS(1492), - [anon_sym_AMP_AMP] = ACTIONS(1494), - [anon_sym_if] = ACTIONS(1492), - [anon_sym_for] = ACTIONS(1492), - [anon_sym_foreach] = ACTIONS(1492), - [anon_sym_foreach_r] = ACTIONS(1492), - [anon_sym_while] = ACTIONS(1492), - [anon_sym_do] = ACTIONS(1492), - [anon_sym_int] = ACTIONS(1492), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1492), - [anon_sym_STAR] = ACTIONS(1494), - [anon_sym_asm] = ACTIONS(1492), - [anon_sym_DOLLARassert] = ACTIONS(1492), - [anon_sym_DOLLARerror] = ACTIONS(1492), - [anon_sym_DOLLARecho] = ACTIONS(1492), - [anon_sym_DOLLARif] = ACTIONS(1492), - [anon_sym_DOLLARendif] = ACTIONS(1492), - [anon_sym_DOLLARswitch] = ACTIONS(1492), - [anon_sym_DOLLARfor] = ACTIONS(1492), - [anon_sym_DOLLARforeach] = ACTIONS(1492), - [anon_sym_DOLLARalignof] = ACTIONS(1492), - [anon_sym_DOLLARextnameof] = ACTIONS(1492), - [anon_sym_DOLLARnameof] = ACTIONS(1492), - [anon_sym_DOLLARoffsetof] = ACTIONS(1492), - [anon_sym_DOLLARqnameof] = ACTIONS(1492), - [anon_sym_DOLLARvaconst] = ACTIONS(1492), - [anon_sym_DOLLARvaarg] = ACTIONS(1492), - [anon_sym_DOLLARvaref] = ACTIONS(1492), - [anon_sym_DOLLARvaexpr] = ACTIONS(1492), - [anon_sym_true] = ACTIONS(1492), - [anon_sym_false] = ACTIONS(1492), - [anon_sym_null] = ACTIONS(1492), - [anon_sym_DOLLARvacount] = ACTIONS(1492), - [anon_sym_DOLLARappend] = ACTIONS(1492), - [anon_sym_DOLLARconcat] = ACTIONS(1492), - [anon_sym_DOLLAReval] = ACTIONS(1492), - [anon_sym_DOLLARis_const] = ACTIONS(1492), - [anon_sym_DOLLARsizeof] = ACTIONS(1492), - [anon_sym_DOLLARstringify] = ACTIONS(1492), - [anon_sym_DOLLARand] = ACTIONS(1492), - [anon_sym_DOLLARdefined] = ACTIONS(1492), - [anon_sym_DOLLARembed] = ACTIONS(1492), - [anon_sym_DOLLARor] = ACTIONS(1492), - [anon_sym_DOLLARfeature] = ACTIONS(1492), - [anon_sym_DOLLARassignable] = ACTIONS(1492), - [anon_sym_BANG] = ACTIONS(1494), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_DASH_DASH] = ACTIONS(1494), - [anon_sym_typeid] = ACTIONS(1492), - [anon_sym_LBRACE_PIPE] = ACTIONS(1494), - [anon_sym_void] = ACTIONS(1492), - [anon_sym_bool] = ACTIONS(1492), - [anon_sym_char] = ACTIONS(1492), - [anon_sym_ichar] = ACTIONS(1492), - [anon_sym_short] = ACTIONS(1492), - [anon_sym_ushort] = ACTIONS(1492), - [anon_sym_uint] = ACTIONS(1492), - [anon_sym_long] = ACTIONS(1492), - [anon_sym_ulong] = ACTIONS(1492), - [anon_sym_int128] = ACTIONS(1492), - [anon_sym_uint128] = ACTIONS(1492), - [anon_sym_float] = ACTIONS(1492), - [anon_sym_double] = ACTIONS(1492), - [anon_sym_float16] = ACTIONS(1492), - [anon_sym_bfloat16] = ACTIONS(1492), - [anon_sym_float128] = ACTIONS(1492), - [anon_sym_iptr] = ACTIONS(1492), - [anon_sym_uptr] = ACTIONS(1492), - [anon_sym_isz] = ACTIONS(1492), - [anon_sym_usz] = ACTIONS(1492), - [anon_sym_anyfault] = ACTIONS(1492), - [anon_sym_any] = ACTIONS(1492), - [anon_sym_DOLLARtypeof] = ACTIONS(1492), - [anon_sym_DOLLARtypefrom] = ACTIONS(1492), - [anon_sym_DOLLARvatype] = ACTIONS(1492), - [anon_sym_DOLLARevaltype] = ACTIONS(1492), - [sym_real_literal] = ACTIONS(1494), + [sym_ident] = ACTIONS(1549), + [sym_integer_literal] = ACTIONS(1551), + [anon_sym_SQUOTE] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [anon_sym_BQUOTE] = ACTIONS(1551), + [sym_bytes_literal] = ACTIONS(1551), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1549), + [sym_at_ident] = ACTIONS(1551), + [sym_hash_ident] = ACTIONS(1551), + [sym_type_ident] = ACTIONS(1551), + [sym_ct_type_ident] = ACTIONS(1551), + [sym_const_ident] = ACTIONS(1549), + [sym_builtin] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_AMP] = ACTIONS(1549), + [anon_sym_static] = ACTIONS(1549), + [anon_sym_tlocal] = ACTIONS(1549), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_fn] = ACTIONS(1549), + [anon_sym_LBRACE] = ACTIONS(1549), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_var] = ACTIONS(1549), + [anon_sym_return] = ACTIONS(1549), + [anon_sym_continue] = ACTIONS(1549), + [anon_sym_break] = ACTIONS(1549), + [anon_sym_defer] = ACTIONS(1549), + [anon_sym_assert] = ACTIONS(1549), + [anon_sym_nextcase] = ACTIONS(1549), + [anon_sym_switch] = ACTIONS(1549), + [anon_sym_AMP_AMP] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1549), + [anon_sym_for] = ACTIONS(1549), + [anon_sym_foreach] = ACTIONS(1549), + [anon_sym_foreach_r] = ACTIONS(1549), + [anon_sym_while] = ACTIONS(1549), + [anon_sym_do] = ACTIONS(1549), + [anon_sym_int] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1551), + [anon_sym_asm] = ACTIONS(1549), + [anon_sym_DOLLARassert] = ACTIONS(1549), + [anon_sym_DOLLARerror] = ACTIONS(1549), + [anon_sym_DOLLARecho] = ACTIONS(1549), + [anon_sym_DOLLARif] = ACTIONS(1549), + [anon_sym_DOLLARswitch] = ACTIONS(1549), + [anon_sym_DOLLARfor] = ACTIONS(1549), + [anon_sym_DOLLARendfor] = ACTIONS(1549), + [anon_sym_DOLLARforeach] = ACTIONS(1549), + [anon_sym_DOLLARalignof] = ACTIONS(1549), + [anon_sym_DOLLARextnameof] = ACTIONS(1549), + [anon_sym_DOLLARnameof] = ACTIONS(1549), + [anon_sym_DOLLARoffsetof] = ACTIONS(1549), + [anon_sym_DOLLARqnameof] = ACTIONS(1549), + [anon_sym_DOLLARvaconst] = ACTIONS(1549), + [anon_sym_DOLLARvaarg] = ACTIONS(1549), + [anon_sym_DOLLARvaref] = ACTIONS(1549), + [anon_sym_DOLLARvaexpr] = ACTIONS(1549), + [anon_sym_true] = ACTIONS(1549), + [anon_sym_false] = ACTIONS(1549), + [anon_sym_null] = ACTIONS(1549), + [anon_sym_DOLLARvacount] = ACTIONS(1549), + [anon_sym_DOLLARappend] = ACTIONS(1549), + [anon_sym_DOLLARconcat] = ACTIONS(1549), + [anon_sym_DOLLAReval] = ACTIONS(1549), + [anon_sym_DOLLARis_const] = ACTIONS(1549), + [anon_sym_DOLLARsizeof] = ACTIONS(1549), + [anon_sym_DOLLARstringify] = ACTIONS(1549), + [anon_sym_DOLLARand] = ACTIONS(1549), + [anon_sym_DOLLARdefined] = ACTIONS(1549), + [anon_sym_DOLLARembed] = ACTIONS(1549), + [anon_sym_DOLLARor] = ACTIONS(1549), + [anon_sym_DOLLARfeature] = ACTIONS(1549), + [anon_sym_DOLLARassignable] = ACTIONS(1549), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_PLUS_PLUS] = ACTIONS(1551), + [anon_sym_DASH_DASH] = ACTIONS(1551), + [anon_sym_typeid] = ACTIONS(1549), + [anon_sym_LBRACE_PIPE] = ACTIONS(1551), + [anon_sym_void] = ACTIONS(1549), + [anon_sym_bool] = ACTIONS(1549), + [anon_sym_char] = ACTIONS(1549), + [anon_sym_ichar] = ACTIONS(1549), + [anon_sym_short] = ACTIONS(1549), + [anon_sym_ushort] = ACTIONS(1549), + [anon_sym_uint] = ACTIONS(1549), + [anon_sym_long] = ACTIONS(1549), + [anon_sym_ulong] = ACTIONS(1549), + [anon_sym_int128] = ACTIONS(1549), + [anon_sym_uint128] = ACTIONS(1549), + [anon_sym_float] = ACTIONS(1549), + [anon_sym_double] = ACTIONS(1549), + [anon_sym_float16] = ACTIONS(1549), + [anon_sym_bfloat16] = ACTIONS(1549), + [anon_sym_float128] = ACTIONS(1549), + [anon_sym_iptr] = ACTIONS(1549), + [anon_sym_uptr] = ACTIONS(1549), + [anon_sym_isz] = ACTIONS(1549), + [anon_sym_usz] = ACTIONS(1549), + [anon_sym_anyfault] = ACTIONS(1549), + [anon_sym_any] = ACTIONS(1549), + [anon_sym_DOLLARtypeof] = ACTIONS(1549), + [anon_sym_DOLLARtypefrom] = ACTIONS(1549), + [anon_sym_DOLLARvatype] = ACTIONS(1549), + [anon_sym_DOLLARevaltype] = ACTIONS(1549), + [sym_real_literal] = ACTIONS(1551), }, [647] = { [sym_line_comment] = STATE(647), [sym_doc_comment] = STATE(647), [sym_block_comment] = STATE(647), - [sym_ident] = ACTIONS(1520), - [sym_integer_literal] = ACTIONS(1522), - [anon_sym_SQUOTE] = ACTIONS(1522), - [anon_sym_DQUOTE] = ACTIONS(1522), - [anon_sym_BQUOTE] = ACTIONS(1522), - [sym_bytes_literal] = ACTIONS(1522), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1520), - [sym_at_ident] = ACTIONS(1522), - [sym_hash_ident] = ACTIONS(1522), - [sym_type_ident] = ACTIONS(1522), - [sym_ct_type_ident] = ACTIONS(1522), - [sym_const_ident] = ACTIONS(1520), - [sym_builtin] = ACTIONS(1522), - [anon_sym_LPAREN] = ACTIONS(1522), - [anon_sym_AMP] = ACTIONS(1520), - [anon_sym_static] = ACTIONS(1520), - [anon_sym_tlocal] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1522), - [anon_sym_fn] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1520), - [anon_sym_const] = ACTIONS(1520), - [anon_sym_var] = ACTIONS(1520), - [anon_sym_return] = ACTIONS(1520), - [anon_sym_continue] = ACTIONS(1520), - [anon_sym_break] = ACTIONS(1520), - [anon_sym_defer] = ACTIONS(1520), - [anon_sym_assert] = ACTIONS(1520), - [anon_sym_nextcase] = ACTIONS(1520), - [anon_sym_switch] = ACTIONS(1520), - [anon_sym_AMP_AMP] = ACTIONS(1522), - [anon_sym_if] = ACTIONS(1520), - [anon_sym_for] = ACTIONS(1520), - [anon_sym_foreach] = ACTIONS(1520), - [anon_sym_foreach_r] = ACTIONS(1520), - [anon_sym_while] = ACTIONS(1520), - [anon_sym_do] = ACTIONS(1520), - [anon_sym_int] = ACTIONS(1520), - [anon_sym_PLUS] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1520), - [anon_sym_STAR] = ACTIONS(1522), - [anon_sym_asm] = ACTIONS(1520), - [anon_sym_DOLLARassert] = ACTIONS(1520), - [anon_sym_DOLLARerror] = ACTIONS(1520), - [anon_sym_DOLLARecho] = ACTIONS(1520), - [anon_sym_DOLLARif] = ACTIONS(1520), - [anon_sym_DOLLARswitch] = ACTIONS(1520), - [anon_sym_DOLLARfor] = ACTIONS(1520), - [anon_sym_DOLLARforeach] = ACTIONS(1520), - [anon_sym_DOLLARendforeach] = ACTIONS(1520), - [anon_sym_DOLLARalignof] = ACTIONS(1520), - [anon_sym_DOLLARextnameof] = ACTIONS(1520), - [anon_sym_DOLLARnameof] = ACTIONS(1520), - [anon_sym_DOLLARoffsetof] = ACTIONS(1520), - [anon_sym_DOLLARqnameof] = ACTIONS(1520), - [anon_sym_DOLLARvaconst] = ACTIONS(1520), - [anon_sym_DOLLARvaarg] = ACTIONS(1520), - [anon_sym_DOLLARvaref] = ACTIONS(1520), - [anon_sym_DOLLARvaexpr] = ACTIONS(1520), - [anon_sym_true] = ACTIONS(1520), - [anon_sym_false] = ACTIONS(1520), - [anon_sym_null] = ACTIONS(1520), - [anon_sym_DOLLARvacount] = ACTIONS(1520), - [anon_sym_DOLLARappend] = ACTIONS(1520), - [anon_sym_DOLLARconcat] = ACTIONS(1520), - [anon_sym_DOLLAReval] = ACTIONS(1520), - [anon_sym_DOLLARis_const] = ACTIONS(1520), - [anon_sym_DOLLARsizeof] = ACTIONS(1520), - [anon_sym_DOLLARstringify] = ACTIONS(1520), - [anon_sym_DOLLARand] = ACTIONS(1520), - [anon_sym_DOLLARdefined] = ACTIONS(1520), - [anon_sym_DOLLARembed] = ACTIONS(1520), - [anon_sym_DOLLARor] = ACTIONS(1520), - [anon_sym_DOLLARfeature] = ACTIONS(1520), - [anon_sym_DOLLARassignable] = ACTIONS(1520), - [anon_sym_BANG] = ACTIONS(1522), - [anon_sym_TILDE] = ACTIONS(1522), - [anon_sym_PLUS_PLUS] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1522), - [anon_sym_typeid] = ACTIONS(1520), - [anon_sym_LBRACE_PIPE] = ACTIONS(1522), - [anon_sym_void] = ACTIONS(1520), - [anon_sym_bool] = ACTIONS(1520), - [anon_sym_char] = ACTIONS(1520), - [anon_sym_ichar] = ACTIONS(1520), - [anon_sym_short] = ACTIONS(1520), - [anon_sym_ushort] = ACTIONS(1520), - [anon_sym_uint] = ACTIONS(1520), - [anon_sym_long] = ACTIONS(1520), - [anon_sym_ulong] = ACTIONS(1520), - [anon_sym_int128] = ACTIONS(1520), - [anon_sym_uint128] = ACTIONS(1520), - [anon_sym_float] = ACTIONS(1520), - [anon_sym_double] = ACTIONS(1520), - [anon_sym_float16] = ACTIONS(1520), - [anon_sym_bfloat16] = ACTIONS(1520), - [anon_sym_float128] = ACTIONS(1520), - [anon_sym_iptr] = ACTIONS(1520), - [anon_sym_uptr] = ACTIONS(1520), - [anon_sym_isz] = ACTIONS(1520), - [anon_sym_usz] = ACTIONS(1520), - [anon_sym_anyfault] = ACTIONS(1520), - [anon_sym_any] = ACTIONS(1520), - [anon_sym_DOLLARtypeof] = ACTIONS(1520), - [anon_sym_DOLLARtypefrom] = ACTIONS(1520), - [anon_sym_DOLLARvatype] = ACTIONS(1520), - [anon_sym_DOLLARevaltype] = ACTIONS(1520), - [sym_real_literal] = ACTIONS(1522), + [sym_ident] = ACTIONS(1569), + [sym_integer_literal] = ACTIONS(1571), + [anon_sym_SQUOTE] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1571), + [anon_sym_BQUOTE] = ACTIONS(1571), + [sym_bytes_literal] = ACTIONS(1571), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1569), + [sym_at_ident] = ACTIONS(1571), + [sym_hash_ident] = ACTIONS(1571), + [sym_type_ident] = ACTIONS(1571), + [sym_ct_type_ident] = ACTIONS(1571), + [sym_const_ident] = ACTIONS(1569), + [sym_builtin] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1571), + [anon_sym_AMP] = ACTIONS(1569), + [anon_sym_static] = ACTIONS(1569), + [anon_sym_tlocal] = ACTIONS(1569), + [anon_sym_SEMI] = ACTIONS(1571), + [anon_sym_fn] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1569), + [anon_sym_const] = ACTIONS(1569), + [anon_sym_var] = ACTIONS(1569), + [anon_sym_return] = ACTIONS(1569), + [anon_sym_continue] = ACTIONS(1569), + [anon_sym_break] = ACTIONS(1569), + [anon_sym_defer] = ACTIONS(1569), + [anon_sym_assert] = ACTIONS(1569), + [anon_sym_nextcase] = ACTIONS(1569), + [anon_sym_switch] = ACTIONS(1569), + [anon_sym_AMP_AMP] = ACTIONS(1571), + [anon_sym_if] = ACTIONS(1569), + [anon_sym_for] = ACTIONS(1569), + [anon_sym_foreach] = ACTIONS(1569), + [anon_sym_foreach_r] = ACTIONS(1569), + [anon_sym_while] = ACTIONS(1569), + [anon_sym_do] = ACTIONS(1569), + [anon_sym_int] = ACTIONS(1569), + [anon_sym_PLUS] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_STAR] = ACTIONS(1571), + [anon_sym_asm] = ACTIONS(1569), + [anon_sym_DOLLARassert] = ACTIONS(1569), + [anon_sym_DOLLARerror] = ACTIONS(1569), + [anon_sym_DOLLARecho] = ACTIONS(1569), + [anon_sym_DOLLARif] = ACTIONS(1569), + [anon_sym_DOLLARswitch] = ACTIONS(1569), + [anon_sym_DOLLARfor] = ACTIONS(1569), + [anon_sym_DOLLARendfor] = ACTIONS(1569), + [anon_sym_DOLLARforeach] = ACTIONS(1569), + [anon_sym_DOLLARalignof] = ACTIONS(1569), + [anon_sym_DOLLARextnameof] = ACTIONS(1569), + [anon_sym_DOLLARnameof] = ACTIONS(1569), + [anon_sym_DOLLARoffsetof] = ACTIONS(1569), + [anon_sym_DOLLARqnameof] = ACTIONS(1569), + [anon_sym_DOLLARvaconst] = ACTIONS(1569), + [anon_sym_DOLLARvaarg] = ACTIONS(1569), + [anon_sym_DOLLARvaref] = ACTIONS(1569), + [anon_sym_DOLLARvaexpr] = ACTIONS(1569), + [anon_sym_true] = ACTIONS(1569), + [anon_sym_false] = ACTIONS(1569), + [anon_sym_null] = ACTIONS(1569), + [anon_sym_DOLLARvacount] = ACTIONS(1569), + [anon_sym_DOLLARappend] = ACTIONS(1569), + [anon_sym_DOLLARconcat] = ACTIONS(1569), + [anon_sym_DOLLAReval] = ACTIONS(1569), + [anon_sym_DOLLARis_const] = ACTIONS(1569), + [anon_sym_DOLLARsizeof] = ACTIONS(1569), + [anon_sym_DOLLARstringify] = ACTIONS(1569), + [anon_sym_DOLLARand] = ACTIONS(1569), + [anon_sym_DOLLARdefined] = ACTIONS(1569), + [anon_sym_DOLLARembed] = ACTIONS(1569), + [anon_sym_DOLLARor] = ACTIONS(1569), + [anon_sym_DOLLARfeature] = ACTIONS(1569), + [anon_sym_DOLLARassignable] = ACTIONS(1569), + [anon_sym_BANG] = ACTIONS(1571), + [anon_sym_TILDE] = ACTIONS(1571), + [anon_sym_PLUS_PLUS] = ACTIONS(1571), + [anon_sym_DASH_DASH] = ACTIONS(1571), + [anon_sym_typeid] = ACTIONS(1569), + [anon_sym_LBRACE_PIPE] = ACTIONS(1571), + [anon_sym_void] = ACTIONS(1569), + [anon_sym_bool] = ACTIONS(1569), + [anon_sym_char] = ACTIONS(1569), + [anon_sym_ichar] = ACTIONS(1569), + [anon_sym_short] = ACTIONS(1569), + [anon_sym_ushort] = ACTIONS(1569), + [anon_sym_uint] = ACTIONS(1569), + [anon_sym_long] = ACTIONS(1569), + [anon_sym_ulong] = ACTIONS(1569), + [anon_sym_int128] = ACTIONS(1569), + [anon_sym_uint128] = ACTIONS(1569), + [anon_sym_float] = ACTIONS(1569), + [anon_sym_double] = ACTIONS(1569), + [anon_sym_float16] = ACTIONS(1569), + [anon_sym_bfloat16] = ACTIONS(1569), + [anon_sym_float128] = ACTIONS(1569), + [anon_sym_iptr] = ACTIONS(1569), + [anon_sym_uptr] = ACTIONS(1569), + [anon_sym_isz] = ACTIONS(1569), + [anon_sym_usz] = ACTIONS(1569), + [anon_sym_anyfault] = ACTIONS(1569), + [anon_sym_any] = ACTIONS(1569), + [anon_sym_DOLLARtypeof] = ACTIONS(1569), + [anon_sym_DOLLARtypefrom] = ACTIONS(1569), + [anon_sym_DOLLARvatype] = ACTIONS(1569), + [anon_sym_DOLLARevaltype] = ACTIONS(1569), + [sym_real_literal] = ACTIONS(1571), }, [648] = { [sym_line_comment] = STATE(648), [sym_doc_comment] = STATE(648), [sym_block_comment] = STATE(648), - [sym_ident] = ACTIONS(1572), - [sym_integer_literal] = ACTIONS(1574), - [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_DQUOTE] = ACTIONS(1574), - [anon_sym_BQUOTE] = ACTIONS(1574), - [sym_bytes_literal] = ACTIONS(1574), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1572), - [sym_at_ident] = ACTIONS(1574), - [sym_hash_ident] = ACTIONS(1574), - [sym_type_ident] = ACTIONS(1574), - [sym_ct_type_ident] = ACTIONS(1574), - [sym_const_ident] = ACTIONS(1572), - [sym_builtin] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1574), - [anon_sym_AMP] = ACTIONS(1572), - [anon_sym_static] = ACTIONS(1572), - [anon_sym_tlocal] = ACTIONS(1572), - [anon_sym_SEMI] = ACTIONS(1574), - [anon_sym_fn] = ACTIONS(1572), - [anon_sym_LBRACE] = ACTIONS(1572), - [anon_sym_const] = ACTIONS(1572), - [anon_sym_var] = ACTIONS(1572), - [anon_sym_return] = ACTIONS(1572), - [anon_sym_continue] = ACTIONS(1572), - [anon_sym_break] = ACTIONS(1572), - [anon_sym_defer] = ACTIONS(1572), - [anon_sym_assert] = ACTIONS(1572), - [anon_sym_nextcase] = ACTIONS(1572), - [anon_sym_switch] = ACTIONS(1572), - [anon_sym_AMP_AMP] = ACTIONS(1574), - [anon_sym_if] = ACTIONS(1572), - [anon_sym_for] = ACTIONS(1572), - [anon_sym_foreach] = ACTIONS(1572), - [anon_sym_foreach_r] = ACTIONS(1572), - [anon_sym_while] = ACTIONS(1572), - [anon_sym_do] = ACTIONS(1572), - [anon_sym_int] = ACTIONS(1572), - [anon_sym_PLUS] = ACTIONS(1572), - [anon_sym_DASH] = ACTIONS(1572), - [anon_sym_STAR] = ACTIONS(1574), - [anon_sym_asm] = ACTIONS(1572), - [anon_sym_DOLLARassert] = ACTIONS(1572), - [anon_sym_DOLLARerror] = ACTIONS(1572), - [anon_sym_DOLLARecho] = ACTIONS(1572), - [anon_sym_DOLLARif] = ACTIONS(1572), - [anon_sym_DOLLARendif] = ACTIONS(1572), - [anon_sym_DOLLARswitch] = ACTIONS(1572), - [anon_sym_DOLLARfor] = ACTIONS(1572), - [anon_sym_DOLLARforeach] = ACTIONS(1572), - [anon_sym_DOLLARalignof] = ACTIONS(1572), - [anon_sym_DOLLARextnameof] = ACTIONS(1572), - [anon_sym_DOLLARnameof] = ACTIONS(1572), - [anon_sym_DOLLARoffsetof] = ACTIONS(1572), - [anon_sym_DOLLARqnameof] = ACTIONS(1572), - [anon_sym_DOLLARvaconst] = ACTIONS(1572), - [anon_sym_DOLLARvaarg] = ACTIONS(1572), - [anon_sym_DOLLARvaref] = ACTIONS(1572), - [anon_sym_DOLLARvaexpr] = ACTIONS(1572), - [anon_sym_true] = ACTIONS(1572), - [anon_sym_false] = ACTIONS(1572), - [anon_sym_null] = ACTIONS(1572), - [anon_sym_DOLLARvacount] = ACTIONS(1572), - [anon_sym_DOLLARappend] = ACTIONS(1572), - [anon_sym_DOLLARconcat] = ACTIONS(1572), - [anon_sym_DOLLAReval] = ACTIONS(1572), - [anon_sym_DOLLARis_const] = ACTIONS(1572), - [anon_sym_DOLLARsizeof] = ACTIONS(1572), - [anon_sym_DOLLARstringify] = ACTIONS(1572), - [anon_sym_DOLLARand] = ACTIONS(1572), - [anon_sym_DOLLARdefined] = ACTIONS(1572), - [anon_sym_DOLLARembed] = ACTIONS(1572), - [anon_sym_DOLLARor] = ACTIONS(1572), - [anon_sym_DOLLARfeature] = ACTIONS(1572), - [anon_sym_DOLLARassignable] = ACTIONS(1572), - [anon_sym_BANG] = ACTIONS(1574), - [anon_sym_TILDE] = ACTIONS(1574), - [anon_sym_PLUS_PLUS] = ACTIONS(1574), - [anon_sym_DASH_DASH] = ACTIONS(1574), - [anon_sym_typeid] = ACTIONS(1572), - [anon_sym_LBRACE_PIPE] = ACTIONS(1574), - [anon_sym_void] = ACTIONS(1572), - [anon_sym_bool] = ACTIONS(1572), - [anon_sym_char] = ACTIONS(1572), - [anon_sym_ichar] = ACTIONS(1572), - [anon_sym_short] = ACTIONS(1572), - [anon_sym_ushort] = ACTIONS(1572), - [anon_sym_uint] = ACTIONS(1572), - [anon_sym_long] = ACTIONS(1572), - [anon_sym_ulong] = ACTIONS(1572), - [anon_sym_int128] = ACTIONS(1572), - [anon_sym_uint128] = ACTIONS(1572), - [anon_sym_float] = ACTIONS(1572), - [anon_sym_double] = ACTIONS(1572), - [anon_sym_float16] = ACTIONS(1572), - [anon_sym_bfloat16] = ACTIONS(1572), - [anon_sym_float128] = ACTIONS(1572), - [anon_sym_iptr] = ACTIONS(1572), - [anon_sym_uptr] = ACTIONS(1572), - [anon_sym_isz] = ACTIONS(1572), - [anon_sym_usz] = ACTIONS(1572), - [anon_sym_anyfault] = ACTIONS(1572), - [anon_sym_any] = ACTIONS(1572), - [anon_sym_DOLLARtypeof] = ACTIONS(1572), - [anon_sym_DOLLARtypefrom] = ACTIONS(1572), - [anon_sym_DOLLARvatype] = ACTIONS(1572), - [anon_sym_DOLLARevaltype] = ACTIONS(1572), - [sym_real_literal] = ACTIONS(1574), + [sym_ident] = ACTIONS(1637), + [sym_integer_literal] = ACTIONS(1639), + [anon_sym_SQUOTE] = ACTIONS(1639), + [anon_sym_DQUOTE] = ACTIONS(1639), + [anon_sym_BQUOTE] = ACTIONS(1639), + [sym_bytes_literal] = ACTIONS(1639), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1637), + [sym_at_ident] = ACTIONS(1639), + [sym_hash_ident] = ACTIONS(1639), + [sym_type_ident] = ACTIONS(1639), + [sym_ct_type_ident] = ACTIONS(1639), + [sym_const_ident] = ACTIONS(1637), + [sym_builtin] = ACTIONS(1639), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_AMP] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1637), + [anon_sym_tlocal] = ACTIONS(1637), + [anon_sym_SEMI] = ACTIONS(1639), + [anon_sym_fn] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(1637), + [anon_sym_const] = ACTIONS(1637), + [anon_sym_var] = ACTIONS(1637), + [anon_sym_return] = ACTIONS(1637), + [anon_sym_continue] = ACTIONS(1637), + [anon_sym_break] = ACTIONS(1637), + [anon_sym_defer] = ACTIONS(1637), + [anon_sym_assert] = ACTIONS(1637), + [anon_sym_nextcase] = ACTIONS(1637), + [anon_sym_switch] = ACTIONS(1637), + [anon_sym_AMP_AMP] = ACTIONS(1639), + [anon_sym_if] = ACTIONS(1637), + [anon_sym_for] = ACTIONS(1637), + [anon_sym_foreach] = ACTIONS(1637), + [anon_sym_foreach_r] = ACTIONS(1637), + [anon_sym_while] = ACTIONS(1637), + [anon_sym_do] = ACTIONS(1637), + [anon_sym_int] = ACTIONS(1637), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1639), + [anon_sym_asm] = ACTIONS(1637), + [anon_sym_DOLLARassert] = ACTIONS(1637), + [anon_sym_DOLLARerror] = ACTIONS(1637), + [anon_sym_DOLLARecho] = ACTIONS(1637), + [anon_sym_DOLLARif] = ACTIONS(1637), + [anon_sym_DOLLARswitch] = ACTIONS(1637), + [anon_sym_DOLLARfor] = ACTIONS(1637), + [anon_sym_DOLLARendfor] = ACTIONS(1637), + [anon_sym_DOLLARforeach] = ACTIONS(1637), + [anon_sym_DOLLARalignof] = ACTIONS(1637), + [anon_sym_DOLLARextnameof] = ACTIONS(1637), + [anon_sym_DOLLARnameof] = ACTIONS(1637), + [anon_sym_DOLLARoffsetof] = ACTIONS(1637), + [anon_sym_DOLLARqnameof] = ACTIONS(1637), + [anon_sym_DOLLARvaconst] = ACTIONS(1637), + [anon_sym_DOLLARvaarg] = ACTIONS(1637), + [anon_sym_DOLLARvaref] = ACTIONS(1637), + [anon_sym_DOLLARvaexpr] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1637), + [anon_sym_false] = ACTIONS(1637), + [anon_sym_null] = ACTIONS(1637), + [anon_sym_DOLLARvacount] = ACTIONS(1637), + [anon_sym_DOLLARappend] = ACTIONS(1637), + [anon_sym_DOLLARconcat] = ACTIONS(1637), + [anon_sym_DOLLAReval] = ACTIONS(1637), + [anon_sym_DOLLARis_const] = ACTIONS(1637), + [anon_sym_DOLLARsizeof] = ACTIONS(1637), + [anon_sym_DOLLARstringify] = ACTIONS(1637), + [anon_sym_DOLLARand] = ACTIONS(1637), + [anon_sym_DOLLARdefined] = ACTIONS(1637), + [anon_sym_DOLLARembed] = ACTIONS(1637), + [anon_sym_DOLLARor] = ACTIONS(1637), + [anon_sym_DOLLARfeature] = ACTIONS(1637), + [anon_sym_DOLLARassignable] = ACTIONS(1637), + [anon_sym_BANG] = ACTIONS(1639), + [anon_sym_TILDE] = ACTIONS(1639), + [anon_sym_PLUS_PLUS] = ACTIONS(1639), + [anon_sym_DASH_DASH] = ACTIONS(1639), + [anon_sym_typeid] = ACTIONS(1637), + [anon_sym_LBRACE_PIPE] = ACTIONS(1639), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_bool] = ACTIONS(1637), + [anon_sym_char] = ACTIONS(1637), + [anon_sym_ichar] = ACTIONS(1637), + [anon_sym_short] = ACTIONS(1637), + [anon_sym_ushort] = ACTIONS(1637), + [anon_sym_uint] = ACTIONS(1637), + [anon_sym_long] = ACTIONS(1637), + [anon_sym_ulong] = ACTIONS(1637), + [anon_sym_int128] = ACTIONS(1637), + [anon_sym_uint128] = ACTIONS(1637), + [anon_sym_float] = ACTIONS(1637), + [anon_sym_double] = ACTIONS(1637), + [anon_sym_float16] = ACTIONS(1637), + [anon_sym_bfloat16] = ACTIONS(1637), + [anon_sym_float128] = ACTIONS(1637), + [anon_sym_iptr] = ACTIONS(1637), + [anon_sym_uptr] = ACTIONS(1637), + [anon_sym_isz] = ACTIONS(1637), + [anon_sym_usz] = ACTIONS(1637), + [anon_sym_anyfault] = ACTIONS(1637), + [anon_sym_any] = ACTIONS(1637), + [anon_sym_DOLLARtypeof] = ACTIONS(1637), + [anon_sym_DOLLARtypefrom] = ACTIONS(1637), + [anon_sym_DOLLARvatype] = ACTIONS(1637), + [anon_sym_DOLLARevaltype] = ACTIONS(1637), + [sym_real_literal] = ACTIONS(1639), }, [649] = { [sym_line_comment] = STATE(649), [sym_doc_comment] = STATE(649), [sym_block_comment] = STATE(649), - [sym_ident] = ACTIONS(1390), - [sym_integer_literal] = ACTIONS(1392), - [anon_sym_SQUOTE] = ACTIONS(1392), - [anon_sym_DQUOTE] = ACTIONS(1392), - [anon_sym_BQUOTE] = ACTIONS(1392), - [sym_bytes_literal] = ACTIONS(1392), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1390), - [sym_at_ident] = ACTIONS(1392), - [sym_hash_ident] = ACTIONS(1392), - [sym_type_ident] = ACTIONS(1392), - [sym_ct_type_ident] = ACTIONS(1392), - [sym_const_ident] = ACTIONS(1390), - [sym_builtin] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1392), - [anon_sym_AMP] = ACTIONS(1390), - [anon_sym_static] = ACTIONS(1390), - [anon_sym_tlocal] = ACTIONS(1390), - [anon_sym_SEMI] = ACTIONS(1392), - [anon_sym_fn] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1390), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_var] = ACTIONS(1390), - [anon_sym_return] = ACTIONS(1390), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_break] = ACTIONS(1390), - [anon_sym_defer] = ACTIONS(1390), - [anon_sym_assert] = ACTIONS(1390), - [anon_sym_nextcase] = ACTIONS(1390), - [anon_sym_switch] = ACTIONS(1390), - [anon_sym_AMP_AMP] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1390), - [anon_sym_for] = ACTIONS(1390), - [anon_sym_foreach] = ACTIONS(1390), - [anon_sym_foreach_r] = ACTIONS(1390), - [anon_sym_while] = ACTIONS(1390), - [anon_sym_do] = ACTIONS(1390), - [anon_sym_int] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1390), - [anon_sym_DASH] = ACTIONS(1390), - [anon_sym_STAR] = ACTIONS(1392), - [anon_sym_asm] = ACTIONS(1390), - [anon_sym_DOLLARassert] = ACTIONS(1390), - [anon_sym_DOLLARerror] = ACTIONS(1390), - [anon_sym_DOLLARecho] = ACTIONS(1390), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_DOLLARswitch] = ACTIONS(1390), - [anon_sym_DOLLARfor] = ACTIONS(1390), - [anon_sym_DOLLARendfor] = ACTIONS(1390), - [anon_sym_DOLLARforeach] = ACTIONS(1390), - [anon_sym_DOLLARalignof] = ACTIONS(1390), - [anon_sym_DOLLARextnameof] = ACTIONS(1390), - [anon_sym_DOLLARnameof] = ACTIONS(1390), - [anon_sym_DOLLARoffsetof] = ACTIONS(1390), - [anon_sym_DOLLARqnameof] = ACTIONS(1390), - [anon_sym_DOLLARvaconst] = ACTIONS(1390), - [anon_sym_DOLLARvaarg] = ACTIONS(1390), - [anon_sym_DOLLARvaref] = ACTIONS(1390), - [anon_sym_DOLLARvaexpr] = ACTIONS(1390), - [anon_sym_true] = ACTIONS(1390), - [anon_sym_false] = ACTIONS(1390), - [anon_sym_null] = ACTIONS(1390), - [anon_sym_DOLLARvacount] = ACTIONS(1390), - [anon_sym_DOLLARappend] = ACTIONS(1390), - [anon_sym_DOLLARconcat] = ACTIONS(1390), - [anon_sym_DOLLAReval] = ACTIONS(1390), - [anon_sym_DOLLARis_const] = ACTIONS(1390), - [anon_sym_DOLLARsizeof] = ACTIONS(1390), - [anon_sym_DOLLARstringify] = ACTIONS(1390), - [anon_sym_DOLLARand] = ACTIONS(1390), - [anon_sym_DOLLARdefined] = ACTIONS(1390), - [anon_sym_DOLLARembed] = ACTIONS(1390), - [anon_sym_DOLLARor] = ACTIONS(1390), - [anon_sym_DOLLARfeature] = ACTIONS(1390), - [anon_sym_DOLLARassignable] = ACTIONS(1390), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_PLUS_PLUS] = ACTIONS(1392), - [anon_sym_DASH_DASH] = ACTIONS(1392), - [anon_sym_typeid] = ACTIONS(1390), - [anon_sym_LBRACE_PIPE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1390), - [anon_sym_bool] = ACTIONS(1390), - [anon_sym_char] = ACTIONS(1390), - [anon_sym_ichar] = ACTIONS(1390), - [anon_sym_short] = ACTIONS(1390), - [anon_sym_ushort] = ACTIONS(1390), - [anon_sym_uint] = ACTIONS(1390), - [anon_sym_long] = ACTIONS(1390), - [anon_sym_ulong] = ACTIONS(1390), - [anon_sym_int128] = ACTIONS(1390), - [anon_sym_uint128] = ACTIONS(1390), - [anon_sym_float] = ACTIONS(1390), - [anon_sym_double] = ACTIONS(1390), - [anon_sym_float16] = ACTIONS(1390), - [anon_sym_bfloat16] = ACTIONS(1390), - [anon_sym_float128] = ACTIONS(1390), - [anon_sym_iptr] = ACTIONS(1390), - [anon_sym_uptr] = ACTIONS(1390), - [anon_sym_isz] = ACTIONS(1390), - [anon_sym_usz] = ACTIONS(1390), - [anon_sym_anyfault] = ACTIONS(1390), - [anon_sym_any] = ACTIONS(1390), - [anon_sym_DOLLARtypeof] = ACTIONS(1390), - [anon_sym_DOLLARtypefrom] = ACTIONS(1390), - [anon_sym_DOLLARvatype] = ACTIONS(1390), - [anon_sym_DOLLARevaltype] = ACTIONS(1390), - [sym_real_literal] = ACTIONS(1392), + [sym_ident] = ACTIONS(1533), + [sym_integer_literal] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(1535), + [anon_sym_DQUOTE] = ACTIONS(1535), + [anon_sym_BQUOTE] = ACTIONS(1535), + [sym_bytes_literal] = ACTIONS(1535), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1533), + [sym_at_ident] = ACTIONS(1535), + [sym_hash_ident] = ACTIONS(1535), + [sym_type_ident] = ACTIONS(1535), + [sym_ct_type_ident] = ACTIONS(1535), + [sym_const_ident] = ACTIONS(1533), + [sym_builtin] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_AMP] = ACTIONS(1533), + [anon_sym_static] = ACTIONS(1533), + [anon_sym_tlocal] = ACTIONS(1533), + [anon_sym_SEMI] = ACTIONS(1535), + [anon_sym_fn] = ACTIONS(1533), + [anon_sym_LBRACE] = ACTIONS(1533), + [anon_sym_const] = ACTIONS(1533), + [anon_sym_var] = ACTIONS(1533), + [anon_sym_return] = ACTIONS(1533), + [anon_sym_continue] = ACTIONS(1533), + [anon_sym_break] = ACTIONS(1533), + [anon_sym_defer] = ACTIONS(1533), + [anon_sym_assert] = ACTIONS(1533), + [anon_sym_nextcase] = ACTIONS(1533), + [anon_sym_switch] = ACTIONS(1533), + [anon_sym_AMP_AMP] = ACTIONS(1535), + [anon_sym_if] = ACTIONS(1533), + [anon_sym_for] = ACTIONS(1533), + [anon_sym_foreach] = ACTIONS(1533), + [anon_sym_foreach_r] = ACTIONS(1533), + [anon_sym_while] = ACTIONS(1533), + [anon_sym_do] = ACTIONS(1533), + [anon_sym_int] = ACTIONS(1533), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_STAR] = ACTIONS(1535), + [anon_sym_asm] = ACTIONS(1533), + [anon_sym_DOLLARassert] = ACTIONS(1533), + [anon_sym_DOLLARerror] = ACTIONS(1533), + [anon_sym_DOLLARecho] = ACTIONS(1533), + [anon_sym_DOLLARif] = ACTIONS(1533), + [anon_sym_DOLLARswitch] = ACTIONS(1533), + [anon_sym_DOLLARfor] = ACTIONS(1533), + [anon_sym_DOLLARforeach] = ACTIONS(1533), + [anon_sym_DOLLARendforeach] = ACTIONS(1533), + [anon_sym_DOLLARalignof] = ACTIONS(1533), + [anon_sym_DOLLARextnameof] = ACTIONS(1533), + [anon_sym_DOLLARnameof] = ACTIONS(1533), + [anon_sym_DOLLARoffsetof] = ACTIONS(1533), + [anon_sym_DOLLARqnameof] = ACTIONS(1533), + [anon_sym_DOLLARvaconst] = ACTIONS(1533), + [anon_sym_DOLLARvaarg] = ACTIONS(1533), + [anon_sym_DOLLARvaref] = ACTIONS(1533), + [anon_sym_DOLLARvaexpr] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(1533), + [anon_sym_false] = ACTIONS(1533), + [anon_sym_null] = ACTIONS(1533), + [anon_sym_DOLLARvacount] = ACTIONS(1533), + [anon_sym_DOLLARappend] = ACTIONS(1533), + [anon_sym_DOLLARconcat] = ACTIONS(1533), + [anon_sym_DOLLAReval] = ACTIONS(1533), + [anon_sym_DOLLARis_const] = ACTIONS(1533), + [anon_sym_DOLLARsizeof] = ACTIONS(1533), + [anon_sym_DOLLARstringify] = ACTIONS(1533), + [anon_sym_DOLLARand] = ACTIONS(1533), + [anon_sym_DOLLARdefined] = ACTIONS(1533), + [anon_sym_DOLLARembed] = ACTIONS(1533), + [anon_sym_DOLLARor] = ACTIONS(1533), + [anon_sym_DOLLARfeature] = ACTIONS(1533), + [anon_sym_DOLLARassignable] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1535), + [anon_sym_TILDE] = ACTIONS(1535), + [anon_sym_PLUS_PLUS] = ACTIONS(1535), + [anon_sym_DASH_DASH] = ACTIONS(1535), + [anon_sym_typeid] = ACTIONS(1533), + [anon_sym_LBRACE_PIPE] = ACTIONS(1535), + [anon_sym_void] = ACTIONS(1533), + [anon_sym_bool] = ACTIONS(1533), + [anon_sym_char] = ACTIONS(1533), + [anon_sym_ichar] = ACTIONS(1533), + [anon_sym_short] = ACTIONS(1533), + [anon_sym_ushort] = ACTIONS(1533), + [anon_sym_uint] = ACTIONS(1533), + [anon_sym_long] = ACTIONS(1533), + [anon_sym_ulong] = ACTIONS(1533), + [anon_sym_int128] = ACTIONS(1533), + [anon_sym_uint128] = ACTIONS(1533), + [anon_sym_float] = ACTIONS(1533), + [anon_sym_double] = ACTIONS(1533), + [anon_sym_float16] = ACTIONS(1533), + [anon_sym_bfloat16] = ACTIONS(1533), + [anon_sym_float128] = ACTIONS(1533), + [anon_sym_iptr] = ACTIONS(1533), + [anon_sym_uptr] = ACTIONS(1533), + [anon_sym_isz] = ACTIONS(1533), + [anon_sym_usz] = ACTIONS(1533), + [anon_sym_anyfault] = ACTIONS(1533), + [anon_sym_any] = ACTIONS(1533), + [anon_sym_DOLLARtypeof] = ACTIONS(1533), + [anon_sym_DOLLARtypefrom] = ACTIONS(1533), + [anon_sym_DOLLARvatype] = ACTIONS(1533), + [anon_sym_DOLLARevaltype] = ACTIONS(1533), + [sym_real_literal] = ACTIONS(1535), }, [650] = { [sym_line_comment] = STATE(650), [sym_doc_comment] = STATE(650), [sym_block_comment] = STATE(650), - [sym_ident] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(1606), - [anon_sym_SQUOTE] = ACTIONS(1606), - [anon_sym_DQUOTE] = ACTIONS(1606), - [anon_sym_BQUOTE] = ACTIONS(1606), - [sym_bytes_literal] = ACTIONS(1606), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1604), - [sym_at_ident] = ACTIONS(1606), - [sym_hash_ident] = ACTIONS(1606), - [sym_type_ident] = ACTIONS(1606), - [sym_ct_type_ident] = ACTIONS(1606), - [sym_const_ident] = ACTIONS(1604), - [sym_builtin] = ACTIONS(1606), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_AMP] = ACTIONS(1604), - [anon_sym_static] = ACTIONS(1604), - [anon_sym_tlocal] = ACTIONS(1604), - [anon_sym_SEMI] = ACTIONS(1606), - [anon_sym_fn] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(1604), - [anon_sym_const] = ACTIONS(1604), - [anon_sym_var] = ACTIONS(1604), - [anon_sym_return] = ACTIONS(1604), - [anon_sym_continue] = ACTIONS(1604), - [anon_sym_break] = ACTIONS(1604), - [anon_sym_defer] = ACTIONS(1604), - [anon_sym_assert] = ACTIONS(1604), - [anon_sym_nextcase] = ACTIONS(1604), - [anon_sym_switch] = ACTIONS(1604), - [anon_sym_AMP_AMP] = ACTIONS(1606), - [anon_sym_if] = ACTIONS(1604), - [anon_sym_for] = ACTIONS(1604), - [anon_sym_foreach] = ACTIONS(1604), - [anon_sym_foreach_r] = ACTIONS(1604), - [anon_sym_while] = ACTIONS(1604), - [anon_sym_do] = ACTIONS(1604), - [anon_sym_int] = ACTIONS(1604), - [anon_sym_PLUS] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1606), - [anon_sym_asm] = ACTIONS(1604), - [anon_sym_DOLLARassert] = ACTIONS(1604), - [anon_sym_DOLLARerror] = ACTIONS(1604), - [anon_sym_DOLLARecho] = ACTIONS(1604), - [anon_sym_DOLLARif] = ACTIONS(1604), - [anon_sym_DOLLARswitch] = ACTIONS(1604), - [anon_sym_DOLLARfor] = ACTIONS(1604), - [anon_sym_DOLLARendfor] = ACTIONS(1604), - [anon_sym_DOLLARforeach] = ACTIONS(1604), - [anon_sym_DOLLARalignof] = ACTIONS(1604), - [anon_sym_DOLLARextnameof] = ACTIONS(1604), - [anon_sym_DOLLARnameof] = ACTIONS(1604), - [anon_sym_DOLLARoffsetof] = ACTIONS(1604), - [anon_sym_DOLLARqnameof] = ACTIONS(1604), - [anon_sym_DOLLARvaconst] = ACTIONS(1604), - [anon_sym_DOLLARvaarg] = ACTIONS(1604), - [anon_sym_DOLLARvaref] = ACTIONS(1604), - [anon_sym_DOLLARvaexpr] = ACTIONS(1604), - [anon_sym_true] = ACTIONS(1604), - [anon_sym_false] = ACTIONS(1604), - [anon_sym_null] = ACTIONS(1604), - [anon_sym_DOLLARvacount] = ACTIONS(1604), - [anon_sym_DOLLARappend] = ACTIONS(1604), - [anon_sym_DOLLARconcat] = ACTIONS(1604), - [anon_sym_DOLLAReval] = ACTIONS(1604), - [anon_sym_DOLLARis_const] = ACTIONS(1604), - [anon_sym_DOLLARsizeof] = ACTIONS(1604), - [anon_sym_DOLLARstringify] = ACTIONS(1604), - [anon_sym_DOLLARand] = ACTIONS(1604), - [anon_sym_DOLLARdefined] = ACTIONS(1604), - [anon_sym_DOLLARembed] = ACTIONS(1604), - [anon_sym_DOLLARor] = ACTIONS(1604), - [anon_sym_DOLLARfeature] = ACTIONS(1604), - [anon_sym_DOLLARassignable] = ACTIONS(1604), - [anon_sym_BANG] = ACTIONS(1606), - [anon_sym_TILDE] = ACTIONS(1606), - [anon_sym_PLUS_PLUS] = ACTIONS(1606), - [anon_sym_DASH_DASH] = ACTIONS(1606), - [anon_sym_typeid] = ACTIONS(1604), - [anon_sym_LBRACE_PIPE] = ACTIONS(1606), - [anon_sym_void] = ACTIONS(1604), - [anon_sym_bool] = ACTIONS(1604), - [anon_sym_char] = ACTIONS(1604), - [anon_sym_ichar] = ACTIONS(1604), - [anon_sym_short] = ACTIONS(1604), - [anon_sym_ushort] = ACTIONS(1604), - [anon_sym_uint] = ACTIONS(1604), - [anon_sym_long] = ACTIONS(1604), - [anon_sym_ulong] = ACTIONS(1604), - [anon_sym_int128] = ACTIONS(1604), - [anon_sym_uint128] = ACTIONS(1604), - [anon_sym_float] = ACTIONS(1604), - [anon_sym_double] = ACTIONS(1604), - [anon_sym_float16] = ACTIONS(1604), - [anon_sym_bfloat16] = ACTIONS(1604), - [anon_sym_float128] = ACTIONS(1604), - [anon_sym_iptr] = ACTIONS(1604), - [anon_sym_uptr] = ACTIONS(1604), - [anon_sym_isz] = ACTIONS(1604), - [anon_sym_usz] = ACTIONS(1604), - [anon_sym_anyfault] = ACTIONS(1604), - [anon_sym_any] = ACTIONS(1604), - [anon_sym_DOLLARtypeof] = ACTIONS(1604), - [anon_sym_DOLLARtypefrom] = ACTIONS(1604), - [anon_sym_DOLLARvatype] = ACTIONS(1604), - [anon_sym_DOLLARevaltype] = ACTIONS(1604), - [sym_real_literal] = ACTIONS(1606), + [sym_ident] = ACTIONS(1509), + [sym_integer_literal] = ACTIONS(1511), + [anon_sym_SQUOTE] = ACTIONS(1511), + [anon_sym_DQUOTE] = ACTIONS(1511), + [anon_sym_BQUOTE] = ACTIONS(1511), + [sym_bytes_literal] = ACTIONS(1511), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1509), + [sym_at_ident] = ACTIONS(1511), + [sym_hash_ident] = ACTIONS(1511), + [sym_type_ident] = ACTIONS(1511), + [sym_ct_type_ident] = ACTIONS(1511), + [sym_const_ident] = ACTIONS(1509), + [sym_builtin] = ACTIONS(1511), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_tlocal] = ACTIONS(1509), + [anon_sym_SEMI] = ACTIONS(1511), + [anon_sym_fn] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1509), + [anon_sym_const] = ACTIONS(1509), + [anon_sym_var] = ACTIONS(1509), + [anon_sym_return] = ACTIONS(1509), + [anon_sym_continue] = ACTIONS(1509), + [anon_sym_break] = ACTIONS(1509), + [anon_sym_defer] = ACTIONS(1509), + [anon_sym_assert] = ACTIONS(1509), + [anon_sym_nextcase] = ACTIONS(1509), + [anon_sym_switch] = ACTIONS(1509), + [anon_sym_AMP_AMP] = ACTIONS(1511), + [anon_sym_if] = ACTIONS(1509), + [anon_sym_for] = ACTIONS(1509), + [anon_sym_foreach] = ACTIONS(1509), + [anon_sym_foreach_r] = ACTIONS(1509), + [anon_sym_while] = ACTIONS(1509), + [anon_sym_do] = ACTIONS(1509), + [anon_sym_int] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(1511), + [anon_sym_asm] = ACTIONS(1509), + [anon_sym_DOLLARassert] = ACTIONS(1509), + [anon_sym_DOLLARerror] = ACTIONS(1509), + [anon_sym_DOLLARecho] = ACTIONS(1509), + [anon_sym_DOLLARif] = ACTIONS(1509), + [anon_sym_DOLLARswitch] = ACTIONS(1509), + [anon_sym_DOLLARfor] = ACTIONS(1509), + [anon_sym_DOLLARforeach] = ACTIONS(1509), + [anon_sym_DOLLARendforeach] = ACTIONS(1509), + [anon_sym_DOLLARalignof] = ACTIONS(1509), + [anon_sym_DOLLARextnameof] = ACTIONS(1509), + [anon_sym_DOLLARnameof] = ACTIONS(1509), + [anon_sym_DOLLARoffsetof] = ACTIONS(1509), + [anon_sym_DOLLARqnameof] = ACTIONS(1509), + [anon_sym_DOLLARvaconst] = ACTIONS(1509), + [anon_sym_DOLLARvaarg] = ACTIONS(1509), + [anon_sym_DOLLARvaref] = ACTIONS(1509), + [anon_sym_DOLLARvaexpr] = ACTIONS(1509), + [anon_sym_true] = ACTIONS(1509), + [anon_sym_false] = ACTIONS(1509), + [anon_sym_null] = ACTIONS(1509), + [anon_sym_DOLLARvacount] = ACTIONS(1509), + [anon_sym_DOLLARappend] = ACTIONS(1509), + [anon_sym_DOLLARconcat] = ACTIONS(1509), + [anon_sym_DOLLAReval] = ACTIONS(1509), + [anon_sym_DOLLARis_const] = ACTIONS(1509), + [anon_sym_DOLLARsizeof] = ACTIONS(1509), + [anon_sym_DOLLARstringify] = ACTIONS(1509), + [anon_sym_DOLLARand] = ACTIONS(1509), + [anon_sym_DOLLARdefined] = ACTIONS(1509), + [anon_sym_DOLLARembed] = ACTIONS(1509), + [anon_sym_DOLLARor] = ACTIONS(1509), + [anon_sym_DOLLARfeature] = ACTIONS(1509), + [anon_sym_DOLLARassignable] = ACTIONS(1509), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_PLUS_PLUS] = ACTIONS(1511), + [anon_sym_DASH_DASH] = ACTIONS(1511), + [anon_sym_typeid] = ACTIONS(1509), + [anon_sym_LBRACE_PIPE] = ACTIONS(1511), + [anon_sym_void] = ACTIONS(1509), + [anon_sym_bool] = ACTIONS(1509), + [anon_sym_char] = ACTIONS(1509), + [anon_sym_ichar] = ACTIONS(1509), + [anon_sym_short] = ACTIONS(1509), + [anon_sym_ushort] = ACTIONS(1509), + [anon_sym_uint] = ACTIONS(1509), + [anon_sym_long] = ACTIONS(1509), + [anon_sym_ulong] = ACTIONS(1509), + [anon_sym_int128] = ACTIONS(1509), + [anon_sym_uint128] = ACTIONS(1509), + [anon_sym_float] = ACTIONS(1509), + [anon_sym_double] = ACTIONS(1509), + [anon_sym_float16] = ACTIONS(1509), + [anon_sym_bfloat16] = ACTIONS(1509), + [anon_sym_float128] = ACTIONS(1509), + [anon_sym_iptr] = ACTIONS(1509), + [anon_sym_uptr] = ACTIONS(1509), + [anon_sym_isz] = ACTIONS(1509), + [anon_sym_usz] = ACTIONS(1509), + [anon_sym_anyfault] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_DOLLARtypeof] = ACTIONS(1509), + [anon_sym_DOLLARtypefrom] = ACTIONS(1509), + [anon_sym_DOLLARvatype] = ACTIONS(1509), + [anon_sym_DOLLARevaltype] = ACTIONS(1509), + [sym_real_literal] = ACTIONS(1511), }, [651] = { [sym_line_comment] = STATE(651), [sym_doc_comment] = STATE(651), [sym_block_comment] = STATE(651), - [sym_ident] = ACTIONS(1186), - [sym_integer_literal] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym_DQUOTE] = ACTIONS(1188), - [anon_sym_BQUOTE] = ACTIONS(1188), - [sym_bytes_literal] = ACTIONS(1188), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1186), - [sym_at_ident] = ACTIONS(1188), - [sym_hash_ident] = ACTIONS(1188), - [sym_type_ident] = ACTIONS(1188), - [sym_ct_type_ident] = ACTIONS(1188), - [sym_const_ident] = ACTIONS(1186), - [sym_builtin] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(1188), - [anon_sym_AMP] = ACTIONS(1186), - [anon_sym_static] = ACTIONS(1186), - [anon_sym_tlocal] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1188), - [anon_sym_fn] = ACTIONS(1186), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_const] = ACTIONS(1186), - [anon_sym_var] = ACTIONS(1186), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1186), - [anon_sym_defer] = ACTIONS(1186), - [anon_sym_assert] = ACTIONS(1186), - [anon_sym_nextcase] = ACTIONS(1186), - [anon_sym_switch] = ACTIONS(1186), - [anon_sym_AMP_AMP] = ACTIONS(1188), - [anon_sym_if] = ACTIONS(1186), - [anon_sym_for] = ACTIONS(1186), - [anon_sym_foreach] = ACTIONS(1186), - [anon_sym_foreach_r] = ACTIONS(1186), - [anon_sym_while] = ACTIONS(1186), - [anon_sym_do] = ACTIONS(1186), - [anon_sym_int] = ACTIONS(1186), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1188), - [anon_sym_asm] = ACTIONS(1186), - [anon_sym_DOLLARassert] = ACTIONS(1186), - [anon_sym_DOLLARerror] = ACTIONS(1186), - [anon_sym_DOLLARecho] = ACTIONS(1186), - [anon_sym_DOLLARif] = ACTIONS(1186), - [anon_sym_DOLLARendif] = ACTIONS(1186), - [anon_sym_DOLLARswitch] = ACTIONS(1186), - [anon_sym_DOLLARfor] = ACTIONS(1186), - [anon_sym_DOLLARforeach] = ACTIONS(1186), - [anon_sym_DOLLARalignof] = ACTIONS(1186), - [anon_sym_DOLLARextnameof] = ACTIONS(1186), - [anon_sym_DOLLARnameof] = ACTIONS(1186), - [anon_sym_DOLLARoffsetof] = ACTIONS(1186), - [anon_sym_DOLLARqnameof] = ACTIONS(1186), - [anon_sym_DOLLARvaconst] = ACTIONS(1186), - [anon_sym_DOLLARvaarg] = ACTIONS(1186), - [anon_sym_DOLLARvaref] = ACTIONS(1186), - [anon_sym_DOLLARvaexpr] = ACTIONS(1186), - [anon_sym_true] = ACTIONS(1186), - [anon_sym_false] = ACTIONS(1186), - [anon_sym_null] = ACTIONS(1186), - [anon_sym_DOLLARvacount] = ACTIONS(1186), - [anon_sym_DOLLARappend] = ACTIONS(1186), - [anon_sym_DOLLARconcat] = ACTIONS(1186), - [anon_sym_DOLLAReval] = ACTIONS(1186), - [anon_sym_DOLLARis_const] = ACTIONS(1186), - [anon_sym_DOLLARsizeof] = ACTIONS(1186), - [anon_sym_DOLLARstringify] = ACTIONS(1186), - [anon_sym_DOLLARand] = ACTIONS(1186), - [anon_sym_DOLLARdefined] = ACTIONS(1186), - [anon_sym_DOLLARembed] = ACTIONS(1186), - [anon_sym_DOLLARor] = ACTIONS(1186), - [anon_sym_DOLLARfeature] = ACTIONS(1186), - [anon_sym_DOLLARassignable] = ACTIONS(1186), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_PLUS_PLUS] = ACTIONS(1188), - [anon_sym_DASH_DASH] = ACTIONS(1188), - [anon_sym_typeid] = ACTIONS(1186), - [anon_sym_LBRACE_PIPE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1186), - [anon_sym_bool] = ACTIONS(1186), - [anon_sym_char] = ACTIONS(1186), - [anon_sym_ichar] = ACTIONS(1186), - [anon_sym_short] = ACTIONS(1186), - [anon_sym_ushort] = ACTIONS(1186), - [anon_sym_uint] = ACTIONS(1186), - [anon_sym_long] = ACTIONS(1186), - [anon_sym_ulong] = ACTIONS(1186), - [anon_sym_int128] = ACTIONS(1186), - [anon_sym_uint128] = ACTIONS(1186), - [anon_sym_float] = ACTIONS(1186), - [anon_sym_double] = ACTIONS(1186), - [anon_sym_float16] = ACTIONS(1186), - [anon_sym_bfloat16] = ACTIONS(1186), - [anon_sym_float128] = ACTIONS(1186), - [anon_sym_iptr] = ACTIONS(1186), - [anon_sym_uptr] = ACTIONS(1186), - [anon_sym_isz] = ACTIONS(1186), - [anon_sym_usz] = ACTIONS(1186), - [anon_sym_anyfault] = ACTIONS(1186), - [anon_sym_any] = ACTIONS(1186), - [anon_sym_DOLLARtypeof] = ACTIONS(1186), - [anon_sym_DOLLARtypefrom] = ACTIONS(1186), - [anon_sym_DOLLARvatype] = ACTIONS(1186), - [anon_sym_DOLLARevaltype] = ACTIONS(1186), - [sym_real_literal] = ACTIONS(1188), + [sym_ident] = ACTIONS(1343), + [sym_integer_literal] = ACTIONS(1345), + [anon_sym_SQUOTE] = ACTIONS(1345), + [anon_sym_DQUOTE] = ACTIONS(1345), + [anon_sym_BQUOTE] = ACTIONS(1345), + [sym_bytes_literal] = ACTIONS(1345), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1343), + [sym_at_ident] = ACTIONS(1345), + [sym_hash_ident] = ACTIONS(1345), + [sym_type_ident] = ACTIONS(1345), + [sym_ct_type_ident] = ACTIONS(1345), + [sym_const_ident] = ACTIONS(1343), + [sym_builtin] = ACTIONS(1345), + [anon_sym_LPAREN] = ACTIONS(1345), + [anon_sym_AMP] = ACTIONS(1343), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_tlocal] = ACTIONS(1343), + [anon_sym_SEMI] = ACTIONS(1345), + [anon_sym_fn] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1343), + [anon_sym_const] = ACTIONS(1343), + [anon_sym_var] = ACTIONS(1343), + [anon_sym_return] = ACTIONS(1343), + [anon_sym_continue] = ACTIONS(1343), + [anon_sym_break] = ACTIONS(1343), + [anon_sym_defer] = ACTIONS(1343), + [anon_sym_assert] = ACTIONS(1343), + [anon_sym_nextcase] = ACTIONS(1343), + [anon_sym_switch] = ACTIONS(1343), + [anon_sym_AMP_AMP] = ACTIONS(1345), + [anon_sym_if] = ACTIONS(1343), + [anon_sym_for] = ACTIONS(1343), + [anon_sym_foreach] = ACTIONS(1343), + [anon_sym_foreach_r] = ACTIONS(1343), + [anon_sym_while] = ACTIONS(1343), + [anon_sym_do] = ACTIONS(1343), + [anon_sym_int] = ACTIONS(1343), + [anon_sym_PLUS] = ACTIONS(1343), + [anon_sym_DASH] = ACTIONS(1343), + [anon_sym_STAR] = ACTIONS(1345), + [anon_sym_asm] = ACTIONS(1343), + [anon_sym_DOLLARassert] = ACTIONS(1343), + [anon_sym_DOLLARerror] = ACTIONS(1343), + [anon_sym_DOLLARecho] = ACTIONS(1343), + [anon_sym_DOLLARif] = ACTIONS(1343), + [anon_sym_DOLLARswitch] = ACTIONS(1343), + [anon_sym_DOLLARfor] = ACTIONS(1343), + [anon_sym_DOLLARforeach] = ACTIONS(1343), + [anon_sym_DOLLARendforeach] = ACTIONS(1343), + [anon_sym_DOLLARalignof] = ACTIONS(1343), + [anon_sym_DOLLARextnameof] = ACTIONS(1343), + [anon_sym_DOLLARnameof] = ACTIONS(1343), + [anon_sym_DOLLARoffsetof] = ACTIONS(1343), + [anon_sym_DOLLARqnameof] = ACTIONS(1343), + [anon_sym_DOLLARvaconst] = ACTIONS(1343), + [anon_sym_DOLLARvaarg] = ACTIONS(1343), + [anon_sym_DOLLARvaref] = ACTIONS(1343), + [anon_sym_DOLLARvaexpr] = ACTIONS(1343), + [anon_sym_true] = ACTIONS(1343), + [anon_sym_false] = ACTIONS(1343), + [anon_sym_null] = ACTIONS(1343), + [anon_sym_DOLLARvacount] = ACTIONS(1343), + [anon_sym_DOLLARappend] = ACTIONS(1343), + [anon_sym_DOLLARconcat] = ACTIONS(1343), + [anon_sym_DOLLAReval] = ACTIONS(1343), + [anon_sym_DOLLARis_const] = ACTIONS(1343), + [anon_sym_DOLLARsizeof] = ACTIONS(1343), + [anon_sym_DOLLARstringify] = ACTIONS(1343), + [anon_sym_DOLLARand] = ACTIONS(1343), + [anon_sym_DOLLARdefined] = ACTIONS(1343), + [anon_sym_DOLLARembed] = ACTIONS(1343), + [anon_sym_DOLLARor] = ACTIONS(1343), + [anon_sym_DOLLARfeature] = ACTIONS(1343), + [anon_sym_DOLLARassignable] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(1345), + [anon_sym_TILDE] = ACTIONS(1345), + [anon_sym_PLUS_PLUS] = ACTIONS(1345), + [anon_sym_DASH_DASH] = ACTIONS(1345), + [anon_sym_typeid] = ACTIONS(1343), + [anon_sym_LBRACE_PIPE] = ACTIONS(1345), + [anon_sym_void] = ACTIONS(1343), + [anon_sym_bool] = ACTIONS(1343), + [anon_sym_char] = ACTIONS(1343), + [anon_sym_ichar] = ACTIONS(1343), + [anon_sym_short] = ACTIONS(1343), + [anon_sym_ushort] = ACTIONS(1343), + [anon_sym_uint] = ACTIONS(1343), + [anon_sym_long] = ACTIONS(1343), + [anon_sym_ulong] = ACTIONS(1343), + [anon_sym_int128] = ACTIONS(1343), + [anon_sym_uint128] = ACTIONS(1343), + [anon_sym_float] = ACTIONS(1343), + [anon_sym_double] = ACTIONS(1343), + [anon_sym_float16] = ACTIONS(1343), + [anon_sym_bfloat16] = ACTIONS(1343), + [anon_sym_float128] = ACTIONS(1343), + [anon_sym_iptr] = ACTIONS(1343), + [anon_sym_uptr] = ACTIONS(1343), + [anon_sym_isz] = ACTIONS(1343), + [anon_sym_usz] = ACTIONS(1343), + [anon_sym_anyfault] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_DOLLARtypeof] = ACTIONS(1343), + [anon_sym_DOLLARtypefrom] = ACTIONS(1343), + [anon_sym_DOLLARvatype] = ACTIONS(1343), + [anon_sym_DOLLARevaltype] = ACTIONS(1343), + [sym_real_literal] = ACTIONS(1345), }, [652] = { [sym_line_comment] = STATE(652), [sym_doc_comment] = STATE(652), [sym_block_comment] = STATE(652), - [sym_ident] = ACTIONS(1480), - [sym_integer_literal] = ACTIONS(1482), - [anon_sym_SQUOTE] = ACTIONS(1482), - [anon_sym_DQUOTE] = ACTIONS(1482), - [anon_sym_BQUOTE] = ACTIONS(1482), - [sym_bytes_literal] = ACTIONS(1482), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1480), - [sym_at_ident] = ACTIONS(1482), - [sym_hash_ident] = ACTIONS(1482), - [sym_type_ident] = ACTIONS(1482), - [sym_ct_type_ident] = ACTIONS(1482), - [sym_const_ident] = ACTIONS(1480), - [sym_builtin] = ACTIONS(1482), - [anon_sym_LPAREN] = ACTIONS(1482), - [anon_sym_AMP] = ACTIONS(1480), - [anon_sym_static] = ACTIONS(1480), - [anon_sym_tlocal] = ACTIONS(1480), - [anon_sym_SEMI] = ACTIONS(1482), - [anon_sym_fn] = ACTIONS(1480), - [anon_sym_LBRACE] = ACTIONS(1480), - [anon_sym_const] = ACTIONS(1480), - [anon_sym_var] = ACTIONS(1480), - [anon_sym_return] = ACTIONS(1480), - [anon_sym_continue] = ACTIONS(1480), - [anon_sym_break] = ACTIONS(1480), - [anon_sym_defer] = ACTIONS(1480), - [anon_sym_assert] = ACTIONS(1480), - [anon_sym_nextcase] = ACTIONS(1480), - [anon_sym_switch] = ACTIONS(1480), - [anon_sym_AMP_AMP] = ACTIONS(1482), - [anon_sym_if] = ACTIONS(1480), - [anon_sym_for] = ACTIONS(1480), - [anon_sym_foreach] = ACTIONS(1480), - [anon_sym_foreach_r] = ACTIONS(1480), - [anon_sym_while] = ACTIONS(1480), - [anon_sym_do] = ACTIONS(1480), - [anon_sym_int] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1480), - [anon_sym_DASH] = ACTIONS(1480), - [anon_sym_STAR] = ACTIONS(1482), - [anon_sym_asm] = ACTIONS(1480), - [anon_sym_DOLLARassert] = ACTIONS(1480), - [anon_sym_DOLLARerror] = ACTIONS(1480), - [anon_sym_DOLLARecho] = ACTIONS(1480), - [anon_sym_DOLLARif] = ACTIONS(1480), - [anon_sym_DOLLARswitch] = ACTIONS(1480), - [anon_sym_DOLLARfor] = ACTIONS(1480), - [anon_sym_DOLLARforeach] = ACTIONS(1480), - [anon_sym_DOLLARendforeach] = ACTIONS(1480), - [anon_sym_DOLLARalignof] = ACTIONS(1480), - [anon_sym_DOLLARextnameof] = ACTIONS(1480), - [anon_sym_DOLLARnameof] = ACTIONS(1480), - [anon_sym_DOLLARoffsetof] = ACTIONS(1480), - [anon_sym_DOLLARqnameof] = ACTIONS(1480), - [anon_sym_DOLLARvaconst] = ACTIONS(1480), - [anon_sym_DOLLARvaarg] = ACTIONS(1480), - [anon_sym_DOLLARvaref] = ACTIONS(1480), - [anon_sym_DOLLARvaexpr] = ACTIONS(1480), - [anon_sym_true] = ACTIONS(1480), - [anon_sym_false] = ACTIONS(1480), - [anon_sym_null] = ACTIONS(1480), - [anon_sym_DOLLARvacount] = ACTIONS(1480), - [anon_sym_DOLLARappend] = ACTIONS(1480), - [anon_sym_DOLLARconcat] = ACTIONS(1480), - [anon_sym_DOLLAReval] = ACTIONS(1480), - [anon_sym_DOLLARis_const] = ACTIONS(1480), - [anon_sym_DOLLARsizeof] = ACTIONS(1480), - [anon_sym_DOLLARstringify] = ACTIONS(1480), - [anon_sym_DOLLARand] = ACTIONS(1480), - [anon_sym_DOLLARdefined] = ACTIONS(1480), - [anon_sym_DOLLARembed] = ACTIONS(1480), - [anon_sym_DOLLARor] = ACTIONS(1480), - [anon_sym_DOLLARfeature] = ACTIONS(1480), - [anon_sym_DOLLARassignable] = ACTIONS(1480), - [anon_sym_BANG] = ACTIONS(1482), - [anon_sym_TILDE] = ACTIONS(1482), - [anon_sym_PLUS_PLUS] = ACTIONS(1482), - [anon_sym_DASH_DASH] = ACTIONS(1482), - [anon_sym_typeid] = ACTIONS(1480), - [anon_sym_LBRACE_PIPE] = ACTIONS(1482), - [anon_sym_void] = ACTIONS(1480), - [anon_sym_bool] = ACTIONS(1480), - [anon_sym_char] = ACTIONS(1480), - [anon_sym_ichar] = ACTIONS(1480), - [anon_sym_short] = ACTIONS(1480), - [anon_sym_ushort] = ACTIONS(1480), - [anon_sym_uint] = ACTIONS(1480), - [anon_sym_long] = ACTIONS(1480), - [anon_sym_ulong] = ACTIONS(1480), - [anon_sym_int128] = ACTIONS(1480), - [anon_sym_uint128] = ACTIONS(1480), - [anon_sym_float] = ACTIONS(1480), - [anon_sym_double] = ACTIONS(1480), - [anon_sym_float16] = ACTIONS(1480), - [anon_sym_bfloat16] = ACTIONS(1480), - [anon_sym_float128] = ACTIONS(1480), - [anon_sym_iptr] = ACTIONS(1480), - [anon_sym_uptr] = ACTIONS(1480), - [anon_sym_isz] = ACTIONS(1480), - [anon_sym_usz] = ACTIONS(1480), - [anon_sym_anyfault] = ACTIONS(1480), - [anon_sym_any] = ACTIONS(1480), - [anon_sym_DOLLARtypeof] = ACTIONS(1480), - [anon_sym_DOLLARtypefrom] = ACTIONS(1480), - [anon_sym_DOLLARvatype] = ACTIONS(1480), - [anon_sym_DOLLARevaltype] = ACTIONS(1480), - [sym_real_literal] = ACTIONS(1482), + [sym_ident] = ACTIONS(1497), + [sym_integer_literal] = ACTIONS(1499), + [anon_sym_SQUOTE] = ACTIONS(1499), + [anon_sym_DQUOTE] = ACTIONS(1499), + [anon_sym_BQUOTE] = ACTIONS(1499), + [sym_bytes_literal] = ACTIONS(1499), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1497), + [sym_at_ident] = ACTIONS(1499), + [sym_hash_ident] = ACTIONS(1499), + [sym_type_ident] = ACTIONS(1499), + [sym_ct_type_ident] = ACTIONS(1499), + [sym_const_ident] = ACTIONS(1497), + [sym_builtin] = ACTIONS(1499), + [anon_sym_LPAREN] = ACTIONS(1499), + [anon_sym_AMP] = ACTIONS(1497), + [anon_sym_static] = ACTIONS(1497), + [anon_sym_tlocal] = ACTIONS(1497), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_fn] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_const] = ACTIONS(1497), + [anon_sym_var] = ACTIONS(1497), + [anon_sym_return] = ACTIONS(1497), + [anon_sym_continue] = ACTIONS(1497), + [anon_sym_break] = ACTIONS(1497), + [anon_sym_defer] = ACTIONS(1497), + [anon_sym_assert] = ACTIONS(1497), + [anon_sym_nextcase] = ACTIONS(1497), + [anon_sym_switch] = ACTIONS(1497), + [anon_sym_AMP_AMP] = ACTIONS(1499), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_for] = ACTIONS(1497), + [anon_sym_foreach] = ACTIONS(1497), + [anon_sym_foreach_r] = ACTIONS(1497), + [anon_sym_while] = ACTIONS(1497), + [anon_sym_do] = ACTIONS(1497), + [anon_sym_int] = ACTIONS(1497), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_asm] = ACTIONS(1497), + [anon_sym_DOLLARassert] = ACTIONS(1497), + [anon_sym_DOLLARerror] = ACTIONS(1497), + [anon_sym_DOLLARecho] = ACTIONS(1497), + [anon_sym_DOLLARif] = ACTIONS(1497), + [anon_sym_DOLLARswitch] = ACTIONS(1497), + [anon_sym_DOLLARfor] = ACTIONS(1497), + [anon_sym_DOLLARforeach] = ACTIONS(1497), + [anon_sym_DOLLARendforeach] = ACTIONS(1497), + [anon_sym_DOLLARalignof] = ACTIONS(1497), + [anon_sym_DOLLARextnameof] = ACTIONS(1497), + [anon_sym_DOLLARnameof] = ACTIONS(1497), + [anon_sym_DOLLARoffsetof] = ACTIONS(1497), + [anon_sym_DOLLARqnameof] = ACTIONS(1497), + [anon_sym_DOLLARvaconst] = ACTIONS(1497), + [anon_sym_DOLLARvaarg] = ACTIONS(1497), + [anon_sym_DOLLARvaref] = ACTIONS(1497), + [anon_sym_DOLLARvaexpr] = ACTIONS(1497), + [anon_sym_true] = ACTIONS(1497), + [anon_sym_false] = ACTIONS(1497), + [anon_sym_null] = ACTIONS(1497), + [anon_sym_DOLLARvacount] = ACTIONS(1497), + [anon_sym_DOLLARappend] = ACTIONS(1497), + [anon_sym_DOLLARconcat] = ACTIONS(1497), + [anon_sym_DOLLAReval] = ACTIONS(1497), + [anon_sym_DOLLARis_const] = ACTIONS(1497), + [anon_sym_DOLLARsizeof] = ACTIONS(1497), + [anon_sym_DOLLARstringify] = ACTIONS(1497), + [anon_sym_DOLLARand] = ACTIONS(1497), + [anon_sym_DOLLARdefined] = ACTIONS(1497), + [anon_sym_DOLLARembed] = ACTIONS(1497), + [anon_sym_DOLLARor] = ACTIONS(1497), + [anon_sym_DOLLARfeature] = ACTIONS(1497), + [anon_sym_DOLLARassignable] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_TILDE] = ACTIONS(1499), + [anon_sym_PLUS_PLUS] = ACTIONS(1499), + [anon_sym_DASH_DASH] = ACTIONS(1499), + [anon_sym_typeid] = ACTIONS(1497), + [anon_sym_LBRACE_PIPE] = ACTIONS(1499), + [anon_sym_void] = ACTIONS(1497), + [anon_sym_bool] = ACTIONS(1497), + [anon_sym_char] = ACTIONS(1497), + [anon_sym_ichar] = ACTIONS(1497), + [anon_sym_short] = ACTIONS(1497), + [anon_sym_ushort] = ACTIONS(1497), + [anon_sym_uint] = ACTIONS(1497), + [anon_sym_long] = ACTIONS(1497), + [anon_sym_ulong] = ACTIONS(1497), + [anon_sym_int128] = ACTIONS(1497), + [anon_sym_uint128] = ACTIONS(1497), + [anon_sym_float] = ACTIONS(1497), + [anon_sym_double] = ACTIONS(1497), + [anon_sym_float16] = ACTIONS(1497), + [anon_sym_bfloat16] = ACTIONS(1497), + [anon_sym_float128] = ACTIONS(1497), + [anon_sym_iptr] = ACTIONS(1497), + [anon_sym_uptr] = ACTIONS(1497), + [anon_sym_isz] = ACTIONS(1497), + [anon_sym_usz] = ACTIONS(1497), + [anon_sym_anyfault] = ACTIONS(1497), + [anon_sym_any] = ACTIONS(1497), + [anon_sym_DOLLARtypeof] = ACTIONS(1497), + [anon_sym_DOLLARtypefrom] = ACTIONS(1497), + [anon_sym_DOLLARvatype] = ACTIONS(1497), + [anon_sym_DOLLARevaltype] = ACTIONS(1497), + [sym_real_literal] = ACTIONS(1499), }, [653] = { [sym_line_comment] = STATE(653), [sym_doc_comment] = STATE(653), [sym_block_comment] = STATE(653), - [sym_ident] = ACTIONS(1476), - [sym_integer_literal] = ACTIONS(1478), - [anon_sym_SQUOTE] = ACTIONS(1478), - [anon_sym_DQUOTE] = ACTIONS(1478), - [anon_sym_BQUOTE] = ACTIONS(1478), - [sym_bytes_literal] = ACTIONS(1478), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1476), - [sym_at_ident] = ACTIONS(1478), - [sym_hash_ident] = ACTIONS(1478), - [sym_type_ident] = ACTIONS(1478), - [sym_ct_type_ident] = ACTIONS(1478), - [sym_const_ident] = ACTIONS(1476), - [sym_builtin] = ACTIONS(1478), - [anon_sym_LPAREN] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_static] = ACTIONS(1476), - [anon_sym_tlocal] = ACTIONS(1476), - [anon_sym_SEMI] = ACTIONS(1478), - [anon_sym_fn] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1476), - [anon_sym_const] = ACTIONS(1476), - [anon_sym_var] = ACTIONS(1476), - [anon_sym_return] = ACTIONS(1476), - [anon_sym_continue] = ACTIONS(1476), - [anon_sym_break] = ACTIONS(1476), - [anon_sym_defer] = ACTIONS(1476), - [anon_sym_assert] = ACTIONS(1476), - [anon_sym_nextcase] = ACTIONS(1476), - [anon_sym_switch] = ACTIONS(1476), - [anon_sym_AMP_AMP] = ACTIONS(1478), - [anon_sym_if] = ACTIONS(1476), - [anon_sym_for] = ACTIONS(1476), - [anon_sym_foreach] = ACTIONS(1476), - [anon_sym_foreach_r] = ACTIONS(1476), - [anon_sym_while] = ACTIONS(1476), - [anon_sym_do] = ACTIONS(1476), - [anon_sym_int] = ACTIONS(1476), - [anon_sym_PLUS] = ACTIONS(1476), - [anon_sym_DASH] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_asm] = ACTIONS(1476), - [anon_sym_DOLLARassert] = ACTIONS(1476), - [anon_sym_DOLLARerror] = ACTIONS(1476), - [anon_sym_DOLLARecho] = ACTIONS(1476), - [anon_sym_DOLLARif] = ACTIONS(1476), - [anon_sym_DOLLARswitch] = ACTIONS(1476), - [anon_sym_DOLLARfor] = ACTIONS(1476), - [anon_sym_DOLLARforeach] = ACTIONS(1476), - [anon_sym_DOLLARendforeach] = ACTIONS(1476), - [anon_sym_DOLLARalignof] = ACTIONS(1476), - [anon_sym_DOLLARextnameof] = ACTIONS(1476), - [anon_sym_DOLLARnameof] = ACTIONS(1476), - [anon_sym_DOLLARoffsetof] = ACTIONS(1476), - [anon_sym_DOLLARqnameof] = ACTIONS(1476), - [anon_sym_DOLLARvaconst] = ACTIONS(1476), - [anon_sym_DOLLARvaarg] = ACTIONS(1476), - [anon_sym_DOLLARvaref] = ACTIONS(1476), - [anon_sym_DOLLARvaexpr] = ACTIONS(1476), - [anon_sym_true] = ACTIONS(1476), - [anon_sym_false] = ACTIONS(1476), - [anon_sym_null] = ACTIONS(1476), - [anon_sym_DOLLARvacount] = ACTIONS(1476), - [anon_sym_DOLLARappend] = ACTIONS(1476), - [anon_sym_DOLLARconcat] = ACTIONS(1476), - [anon_sym_DOLLAReval] = ACTIONS(1476), - [anon_sym_DOLLARis_const] = ACTIONS(1476), - [anon_sym_DOLLARsizeof] = ACTIONS(1476), - [anon_sym_DOLLARstringify] = ACTIONS(1476), - [anon_sym_DOLLARand] = ACTIONS(1476), - [anon_sym_DOLLARdefined] = ACTIONS(1476), - [anon_sym_DOLLARembed] = ACTIONS(1476), - [anon_sym_DOLLARor] = ACTIONS(1476), - [anon_sym_DOLLARfeature] = ACTIONS(1476), - [anon_sym_DOLLARassignable] = ACTIONS(1476), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_TILDE] = ACTIONS(1478), - [anon_sym_PLUS_PLUS] = ACTIONS(1478), - [anon_sym_DASH_DASH] = ACTIONS(1478), - [anon_sym_typeid] = ACTIONS(1476), - [anon_sym_LBRACE_PIPE] = ACTIONS(1478), - [anon_sym_void] = ACTIONS(1476), - [anon_sym_bool] = ACTIONS(1476), - [anon_sym_char] = ACTIONS(1476), - [anon_sym_ichar] = ACTIONS(1476), - [anon_sym_short] = ACTIONS(1476), - [anon_sym_ushort] = ACTIONS(1476), - [anon_sym_uint] = ACTIONS(1476), - [anon_sym_long] = ACTIONS(1476), - [anon_sym_ulong] = ACTIONS(1476), - [anon_sym_int128] = ACTIONS(1476), - [anon_sym_uint128] = ACTIONS(1476), - [anon_sym_float] = ACTIONS(1476), - [anon_sym_double] = ACTIONS(1476), - [anon_sym_float16] = ACTIONS(1476), - [anon_sym_bfloat16] = ACTIONS(1476), - [anon_sym_float128] = ACTIONS(1476), - [anon_sym_iptr] = ACTIONS(1476), - [anon_sym_uptr] = ACTIONS(1476), - [anon_sym_isz] = ACTIONS(1476), - [anon_sym_usz] = ACTIONS(1476), - [anon_sym_anyfault] = ACTIONS(1476), - [anon_sym_any] = ACTIONS(1476), - [anon_sym_DOLLARtypeof] = ACTIONS(1476), - [anon_sym_DOLLARtypefrom] = ACTIONS(1476), - [anon_sym_DOLLARvatype] = ACTIONS(1476), - [anon_sym_DOLLARevaltype] = ACTIONS(1476), - [sym_real_literal] = ACTIONS(1478), + [sym_ident] = ACTIONS(1485), + [sym_integer_literal] = ACTIONS(1487), + [anon_sym_SQUOTE] = ACTIONS(1487), + [anon_sym_DQUOTE] = ACTIONS(1487), + [anon_sym_BQUOTE] = ACTIONS(1487), + [sym_bytes_literal] = ACTIONS(1487), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1485), + [sym_at_ident] = ACTIONS(1487), + [sym_hash_ident] = ACTIONS(1487), + [sym_type_ident] = ACTIONS(1487), + [sym_ct_type_ident] = ACTIONS(1487), + [sym_const_ident] = ACTIONS(1485), + [sym_builtin] = ACTIONS(1487), + [anon_sym_LPAREN] = ACTIONS(1487), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_static] = ACTIONS(1485), + [anon_sym_tlocal] = ACTIONS(1485), + [anon_sym_SEMI] = ACTIONS(1487), + [anon_sym_fn] = ACTIONS(1485), + [anon_sym_LBRACE] = ACTIONS(1485), + [anon_sym_const] = ACTIONS(1485), + [anon_sym_var] = ACTIONS(1485), + [anon_sym_return] = ACTIONS(1485), + [anon_sym_continue] = ACTIONS(1485), + [anon_sym_break] = ACTIONS(1485), + [anon_sym_defer] = ACTIONS(1485), + [anon_sym_assert] = ACTIONS(1485), + [anon_sym_nextcase] = ACTIONS(1485), + [anon_sym_switch] = ACTIONS(1485), + [anon_sym_AMP_AMP] = ACTIONS(1487), + [anon_sym_if] = ACTIONS(1485), + [anon_sym_for] = ACTIONS(1485), + [anon_sym_foreach] = ACTIONS(1485), + [anon_sym_foreach_r] = ACTIONS(1485), + [anon_sym_while] = ACTIONS(1485), + [anon_sym_do] = ACTIONS(1485), + [anon_sym_int] = ACTIONS(1485), + [anon_sym_PLUS] = ACTIONS(1485), + [anon_sym_DASH] = ACTIONS(1485), + [anon_sym_STAR] = ACTIONS(1487), + [anon_sym_asm] = ACTIONS(1485), + [anon_sym_DOLLARassert] = ACTIONS(1485), + [anon_sym_DOLLARerror] = ACTIONS(1485), + [anon_sym_DOLLARecho] = ACTIONS(1485), + [anon_sym_DOLLARif] = ACTIONS(1485), + [anon_sym_DOLLARswitch] = ACTIONS(1485), + [anon_sym_DOLLARfor] = ACTIONS(1485), + [anon_sym_DOLLARforeach] = ACTIONS(1485), + [anon_sym_DOLLARendforeach] = ACTIONS(1485), + [anon_sym_DOLLARalignof] = ACTIONS(1485), + [anon_sym_DOLLARextnameof] = ACTIONS(1485), + [anon_sym_DOLLARnameof] = ACTIONS(1485), + [anon_sym_DOLLARoffsetof] = ACTIONS(1485), + [anon_sym_DOLLARqnameof] = ACTIONS(1485), + [anon_sym_DOLLARvaconst] = ACTIONS(1485), + [anon_sym_DOLLARvaarg] = ACTIONS(1485), + [anon_sym_DOLLARvaref] = ACTIONS(1485), + [anon_sym_DOLLARvaexpr] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(1485), + [anon_sym_false] = ACTIONS(1485), + [anon_sym_null] = ACTIONS(1485), + [anon_sym_DOLLARvacount] = ACTIONS(1485), + [anon_sym_DOLLARappend] = ACTIONS(1485), + [anon_sym_DOLLARconcat] = ACTIONS(1485), + [anon_sym_DOLLAReval] = ACTIONS(1485), + [anon_sym_DOLLARis_const] = ACTIONS(1485), + [anon_sym_DOLLARsizeof] = ACTIONS(1485), + [anon_sym_DOLLARstringify] = ACTIONS(1485), + [anon_sym_DOLLARand] = ACTIONS(1485), + [anon_sym_DOLLARdefined] = ACTIONS(1485), + [anon_sym_DOLLARembed] = ACTIONS(1485), + [anon_sym_DOLLARor] = ACTIONS(1485), + [anon_sym_DOLLARfeature] = ACTIONS(1485), + [anon_sym_DOLLARassignable] = ACTIONS(1485), + [anon_sym_BANG] = ACTIONS(1487), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1487), + [anon_sym_DASH_DASH] = ACTIONS(1487), + [anon_sym_typeid] = ACTIONS(1485), + [anon_sym_LBRACE_PIPE] = ACTIONS(1487), + [anon_sym_void] = ACTIONS(1485), + [anon_sym_bool] = ACTIONS(1485), + [anon_sym_char] = ACTIONS(1485), + [anon_sym_ichar] = ACTIONS(1485), + [anon_sym_short] = ACTIONS(1485), + [anon_sym_ushort] = ACTIONS(1485), + [anon_sym_uint] = ACTIONS(1485), + [anon_sym_long] = ACTIONS(1485), + [anon_sym_ulong] = ACTIONS(1485), + [anon_sym_int128] = ACTIONS(1485), + [anon_sym_uint128] = ACTIONS(1485), + [anon_sym_float] = ACTIONS(1485), + [anon_sym_double] = ACTIONS(1485), + [anon_sym_float16] = ACTIONS(1485), + [anon_sym_bfloat16] = ACTIONS(1485), + [anon_sym_float128] = ACTIONS(1485), + [anon_sym_iptr] = ACTIONS(1485), + [anon_sym_uptr] = ACTIONS(1485), + [anon_sym_isz] = ACTIONS(1485), + [anon_sym_usz] = ACTIONS(1485), + [anon_sym_anyfault] = ACTIONS(1485), + [anon_sym_any] = ACTIONS(1485), + [anon_sym_DOLLARtypeof] = ACTIONS(1485), + [anon_sym_DOLLARtypefrom] = ACTIONS(1485), + [anon_sym_DOLLARvatype] = ACTIONS(1485), + [anon_sym_DOLLARevaltype] = ACTIONS(1485), + [sym_real_literal] = ACTIONS(1487), }, [654] = { [sym_line_comment] = STATE(654), [sym_doc_comment] = STATE(654), [sym_block_comment] = STATE(654), - [sym_ident] = ACTIONS(1472), - [sym_integer_literal] = ACTIONS(1474), - [anon_sym_SQUOTE] = ACTIONS(1474), - [anon_sym_DQUOTE] = ACTIONS(1474), - [anon_sym_BQUOTE] = ACTIONS(1474), - [sym_bytes_literal] = ACTIONS(1474), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1472), - [sym_at_ident] = ACTIONS(1474), - [sym_hash_ident] = ACTIONS(1474), - [sym_type_ident] = ACTIONS(1474), - [sym_ct_type_ident] = ACTIONS(1474), - [sym_const_ident] = ACTIONS(1472), - [sym_builtin] = ACTIONS(1474), - [anon_sym_LPAREN] = ACTIONS(1474), - [anon_sym_AMP] = ACTIONS(1472), - [anon_sym_static] = ACTIONS(1472), - [anon_sym_tlocal] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1474), - [anon_sym_fn] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1472), - [anon_sym_const] = ACTIONS(1472), - [anon_sym_var] = ACTIONS(1472), - [anon_sym_return] = ACTIONS(1472), - [anon_sym_continue] = ACTIONS(1472), - [anon_sym_break] = ACTIONS(1472), - [anon_sym_defer] = ACTIONS(1472), - [anon_sym_assert] = ACTIONS(1472), - [anon_sym_nextcase] = ACTIONS(1472), - [anon_sym_switch] = ACTIONS(1472), - [anon_sym_AMP_AMP] = ACTIONS(1474), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_for] = ACTIONS(1472), - [anon_sym_foreach] = ACTIONS(1472), - [anon_sym_foreach_r] = ACTIONS(1472), - [anon_sym_while] = ACTIONS(1472), - [anon_sym_do] = ACTIONS(1472), - [anon_sym_int] = ACTIONS(1472), - [anon_sym_PLUS] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1472), - [anon_sym_STAR] = ACTIONS(1474), - [anon_sym_asm] = ACTIONS(1472), - [anon_sym_DOLLARassert] = ACTIONS(1472), - [anon_sym_DOLLARerror] = ACTIONS(1472), - [anon_sym_DOLLARecho] = ACTIONS(1472), - [anon_sym_DOLLARif] = ACTIONS(1472), - [anon_sym_DOLLARswitch] = ACTIONS(1472), - [anon_sym_DOLLARfor] = ACTIONS(1472), - [anon_sym_DOLLARforeach] = ACTIONS(1472), - [anon_sym_DOLLARendforeach] = ACTIONS(1472), - [anon_sym_DOLLARalignof] = ACTIONS(1472), - [anon_sym_DOLLARextnameof] = ACTIONS(1472), - [anon_sym_DOLLARnameof] = ACTIONS(1472), - [anon_sym_DOLLARoffsetof] = ACTIONS(1472), - [anon_sym_DOLLARqnameof] = ACTIONS(1472), - [anon_sym_DOLLARvaconst] = ACTIONS(1472), - [anon_sym_DOLLARvaarg] = ACTIONS(1472), - [anon_sym_DOLLARvaref] = ACTIONS(1472), - [anon_sym_DOLLARvaexpr] = ACTIONS(1472), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_null] = ACTIONS(1472), - [anon_sym_DOLLARvacount] = ACTIONS(1472), - [anon_sym_DOLLARappend] = ACTIONS(1472), - [anon_sym_DOLLARconcat] = ACTIONS(1472), - [anon_sym_DOLLAReval] = ACTIONS(1472), - [anon_sym_DOLLARis_const] = ACTIONS(1472), - [anon_sym_DOLLARsizeof] = ACTIONS(1472), - [anon_sym_DOLLARstringify] = ACTIONS(1472), - [anon_sym_DOLLARand] = ACTIONS(1472), - [anon_sym_DOLLARdefined] = ACTIONS(1472), - [anon_sym_DOLLARembed] = ACTIONS(1472), - [anon_sym_DOLLARor] = ACTIONS(1472), - [anon_sym_DOLLARfeature] = ACTIONS(1472), - [anon_sym_DOLLARassignable] = ACTIONS(1472), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_TILDE] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1474), - [anon_sym_DASH_DASH] = ACTIONS(1474), - [anon_sym_typeid] = ACTIONS(1472), - [anon_sym_LBRACE_PIPE] = ACTIONS(1474), - [anon_sym_void] = ACTIONS(1472), - [anon_sym_bool] = ACTIONS(1472), - [anon_sym_char] = ACTIONS(1472), - [anon_sym_ichar] = ACTIONS(1472), - [anon_sym_short] = ACTIONS(1472), - [anon_sym_ushort] = ACTIONS(1472), - [anon_sym_uint] = ACTIONS(1472), - [anon_sym_long] = ACTIONS(1472), - [anon_sym_ulong] = ACTIONS(1472), - [anon_sym_int128] = ACTIONS(1472), - [anon_sym_uint128] = ACTIONS(1472), - [anon_sym_float] = ACTIONS(1472), - [anon_sym_double] = ACTIONS(1472), - [anon_sym_float16] = ACTIONS(1472), - [anon_sym_bfloat16] = ACTIONS(1472), - [anon_sym_float128] = ACTIONS(1472), - [anon_sym_iptr] = ACTIONS(1472), - [anon_sym_uptr] = ACTIONS(1472), - [anon_sym_isz] = ACTIONS(1472), - [anon_sym_usz] = ACTIONS(1472), - [anon_sym_anyfault] = ACTIONS(1472), - [anon_sym_any] = ACTIONS(1472), - [anon_sym_DOLLARtypeof] = ACTIONS(1472), - [anon_sym_DOLLARtypefrom] = ACTIONS(1472), - [anon_sym_DOLLARvatype] = ACTIONS(1472), - [anon_sym_DOLLARevaltype] = ACTIONS(1472), - [sym_real_literal] = ACTIONS(1474), + [sym_ident] = ACTIONS(1449), + [sym_integer_literal] = ACTIONS(1451), + [anon_sym_SQUOTE] = ACTIONS(1451), + [anon_sym_DQUOTE] = ACTIONS(1451), + [anon_sym_BQUOTE] = ACTIONS(1451), + [sym_bytes_literal] = ACTIONS(1451), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1449), + [sym_at_ident] = ACTIONS(1451), + [sym_hash_ident] = ACTIONS(1451), + [sym_type_ident] = ACTIONS(1451), + [sym_ct_type_ident] = ACTIONS(1451), + [sym_const_ident] = ACTIONS(1449), + [sym_builtin] = ACTIONS(1451), + [anon_sym_LPAREN] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_static] = ACTIONS(1449), + [anon_sym_tlocal] = ACTIONS(1449), + [anon_sym_SEMI] = ACTIONS(1451), + [anon_sym_fn] = ACTIONS(1449), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_const] = ACTIONS(1449), + [anon_sym_var] = ACTIONS(1449), + [anon_sym_return] = ACTIONS(1449), + [anon_sym_continue] = ACTIONS(1449), + [anon_sym_break] = ACTIONS(1449), + [anon_sym_defer] = ACTIONS(1449), + [anon_sym_assert] = ACTIONS(1449), + [anon_sym_nextcase] = ACTIONS(1449), + [anon_sym_switch] = ACTIONS(1449), + [anon_sym_AMP_AMP] = ACTIONS(1451), + [anon_sym_if] = ACTIONS(1449), + [anon_sym_for] = ACTIONS(1449), + [anon_sym_foreach] = ACTIONS(1449), + [anon_sym_foreach_r] = ACTIONS(1449), + [anon_sym_while] = ACTIONS(1449), + [anon_sym_do] = ACTIONS(1449), + [anon_sym_int] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1449), + [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_STAR] = ACTIONS(1451), + [anon_sym_asm] = ACTIONS(1449), + [anon_sym_DOLLARassert] = ACTIONS(1449), + [anon_sym_DOLLARerror] = ACTIONS(1449), + [anon_sym_DOLLARecho] = ACTIONS(1449), + [anon_sym_DOLLARif] = ACTIONS(1449), + [anon_sym_DOLLARswitch] = ACTIONS(1449), + [anon_sym_DOLLARfor] = ACTIONS(1449), + [anon_sym_DOLLARforeach] = ACTIONS(1449), + [anon_sym_DOLLARendforeach] = ACTIONS(1449), + [anon_sym_DOLLARalignof] = ACTIONS(1449), + [anon_sym_DOLLARextnameof] = ACTIONS(1449), + [anon_sym_DOLLARnameof] = ACTIONS(1449), + [anon_sym_DOLLARoffsetof] = ACTIONS(1449), + [anon_sym_DOLLARqnameof] = ACTIONS(1449), + [anon_sym_DOLLARvaconst] = ACTIONS(1449), + [anon_sym_DOLLARvaarg] = ACTIONS(1449), + [anon_sym_DOLLARvaref] = ACTIONS(1449), + [anon_sym_DOLLARvaexpr] = ACTIONS(1449), + [anon_sym_true] = ACTIONS(1449), + [anon_sym_false] = ACTIONS(1449), + [anon_sym_null] = ACTIONS(1449), + [anon_sym_DOLLARvacount] = ACTIONS(1449), + [anon_sym_DOLLARappend] = ACTIONS(1449), + [anon_sym_DOLLARconcat] = ACTIONS(1449), + [anon_sym_DOLLAReval] = ACTIONS(1449), + [anon_sym_DOLLARis_const] = ACTIONS(1449), + [anon_sym_DOLLARsizeof] = ACTIONS(1449), + [anon_sym_DOLLARstringify] = ACTIONS(1449), + [anon_sym_DOLLARand] = ACTIONS(1449), + [anon_sym_DOLLARdefined] = ACTIONS(1449), + [anon_sym_DOLLARembed] = ACTIONS(1449), + [anon_sym_DOLLARor] = ACTIONS(1449), + [anon_sym_DOLLARfeature] = ACTIONS(1449), + [anon_sym_DOLLARassignable] = ACTIONS(1449), + [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_TILDE] = ACTIONS(1451), + [anon_sym_PLUS_PLUS] = ACTIONS(1451), + [anon_sym_DASH_DASH] = ACTIONS(1451), + [anon_sym_typeid] = ACTIONS(1449), + [anon_sym_LBRACE_PIPE] = ACTIONS(1451), + [anon_sym_void] = ACTIONS(1449), + [anon_sym_bool] = ACTIONS(1449), + [anon_sym_char] = ACTIONS(1449), + [anon_sym_ichar] = ACTIONS(1449), + [anon_sym_short] = ACTIONS(1449), + [anon_sym_ushort] = ACTIONS(1449), + [anon_sym_uint] = ACTIONS(1449), + [anon_sym_long] = ACTIONS(1449), + [anon_sym_ulong] = ACTIONS(1449), + [anon_sym_int128] = ACTIONS(1449), + [anon_sym_uint128] = ACTIONS(1449), + [anon_sym_float] = ACTIONS(1449), + [anon_sym_double] = ACTIONS(1449), + [anon_sym_float16] = ACTIONS(1449), + [anon_sym_bfloat16] = ACTIONS(1449), + [anon_sym_float128] = ACTIONS(1449), + [anon_sym_iptr] = ACTIONS(1449), + [anon_sym_uptr] = ACTIONS(1449), + [anon_sym_isz] = ACTIONS(1449), + [anon_sym_usz] = ACTIONS(1449), + [anon_sym_anyfault] = ACTIONS(1449), + [anon_sym_any] = ACTIONS(1449), + [anon_sym_DOLLARtypeof] = ACTIONS(1449), + [anon_sym_DOLLARtypefrom] = ACTIONS(1449), + [anon_sym_DOLLARvatype] = ACTIONS(1449), + [anon_sym_DOLLARevaltype] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1451), }, [655] = { [sym_line_comment] = STATE(655), [sym_doc_comment] = STATE(655), [sym_block_comment] = STATE(655), - [sym_ident] = ACTIONS(1460), - [sym_integer_literal] = ACTIONS(1462), - [anon_sym_SQUOTE] = ACTIONS(1462), - [anon_sym_DQUOTE] = ACTIONS(1462), - [anon_sym_BQUOTE] = ACTIONS(1462), - [sym_bytes_literal] = ACTIONS(1462), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1460), - [sym_at_ident] = ACTIONS(1462), - [sym_hash_ident] = ACTIONS(1462), - [sym_type_ident] = ACTIONS(1462), - [sym_ct_type_ident] = ACTIONS(1462), - [sym_const_ident] = ACTIONS(1460), - [sym_builtin] = ACTIONS(1462), - [anon_sym_LPAREN] = ACTIONS(1462), - [anon_sym_AMP] = ACTIONS(1460), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_tlocal] = ACTIONS(1460), - [anon_sym_SEMI] = ACTIONS(1462), - [anon_sym_fn] = ACTIONS(1460), - [anon_sym_LBRACE] = ACTIONS(1460), - [anon_sym_const] = ACTIONS(1460), - [anon_sym_var] = ACTIONS(1460), - [anon_sym_return] = ACTIONS(1460), - [anon_sym_continue] = ACTIONS(1460), - [anon_sym_break] = ACTIONS(1460), - [anon_sym_defer] = ACTIONS(1460), - [anon_sym_assert] = ACTIONS(1460), - [anon_sym_nextcase] = ACTIONS(1460), - [anon_sym_switch] = ACTIONS(1460), - [anon_sym_AMP_AMP] = ACTIONS(1462), - [anon_sym_if] = ACTIONS(1460), - [anon_sym_for] = ACTIONS(1460), - [anon_sym_foreach] = ACTIONS(1460), - [anon_sym_foreach_r] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1460), - [anon_sym_do] = ACTIONS(1460), - [anon_sym_int] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1460), - [anon_sym_DASH] = ACTIONS(1460), - [anon_sym_STAR] = ACTIONS(1462), - [anon_sym_asm] = ACTIONS(1460), - [anon_sym_DOLLARassert] = ACTIONS(1460), - [anon_sym_DOLLARerror] = ACTIONS(1460), - [anon_sym_DOLLARecho] = ACTIONS(1460), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_DOLLARswitch] = ACTIONS(1460), - [anon_sym_DOLLARfor] = ACTIONS(1460), - [anon_sym_DOLLARforeach] = ACTIONS(1460), - [anon_sym_DOLLARendforeach] = ACTIONS(1460), - [anon_sym_DOLLARalignof] = ACTIONS(1460), - [anon_sym_DOLLARextnameof] = ACTIONS(1460), - [anon_sym_DOLLARnameof] = ACTIONS(1460), - [anon_sym_DOLLARoffsetof] = ACTIONS(1460), - [anon_sym_DOLLARqnameof] = ACTIONS(1460), - [anon_sym_DOLLARvaconst] = ACTIONS(1460), - [anon_sym_DOLLARvaarg] = ACTIONS(1460), - [anon_sym_DOLLARvaref] = ACTIONS(1460), - [anon_sym_DOLLARvaexpr] = ACTIONS(1460), - [anon_sym_true] = ACTIONS(1460), - [anon_sym_false] = ACTIONS(1460), - [anon_sym_null] = ACTIONS(1460), - [anon_sym_DOLLARvacount] = ACTIONS(1460), - [anon_sym_DOLLARappend] = ACTIONS(1460), - [anon_sym_DOLLARconcat] = ACTIONS(1460), - [anon_sym_DOLLAReval] = ACTIONS(1460), - [anon_sym_DOLLARis_const] = ACTIONS(1460), - [anon_sym_DOLLARsizeof] = ACTIONS(1460), - [anon_sym_DOLLARstringify] = ACTIONS(1460), - [anon_sym_DOLLARand] = ACTIONS(1460), - [anon_sym_DOLLARdefined] = ACTIONS(1460), - [anon_sym_DOLLARembed] = ACTIONS(1460), - [anon_sym_DOLLARor] = ACTIONS(1460), - [anon_sym_DOLLARfeature] = ACTIONS(1460), - [anon_sym_DOLLARassignable] = ACTIONS(1460), - [anon_sym_BANG] = ACTIONS(1462), - [anon_sym_TILDE] = ACTIONS(1462), - [anon_sym_PLUS_PLUS] = ACTIONS(1462), - [anon_sym_DASH_DASH] = ACTIONS(1462), - [anon_sym_typeid] = ACTIONS(1460), - [anon_sym_LBRACE_PIPE] = ACTIONS(1462), - [anon_sym_void] = ACTIONS(1460), - [anon_sym_bool] = ACTIONS(1460), - [anon_sym_char] = ACTIONS(1460), - [anon_sym_ichar] = ACTIONS(1460), - [anon_sym_short] = ACTIONS(1460), - [anon_sym_ushort] = ACTIONS(1460), - [anon_sym_uint] = ACTIONS(1460), - [anon_sym_long] = ACTIONS(1460), - [anon_sym_ulong] = ACTIONS(1460), - [anon_sym_int128] = ACTIONS(1460), - [anon_sym_uint128] = ACTIONS(1460), - [anon_sym_float] = ACTIONS(1460), - [anon_sym_double] = ACTIONS(1460), - [anon_sym_float16] = ACTIONS(1460), - [anon_sym_bfloat16] = ACTIONS(1460), - [anon_sym_float128] = ACTIONS(1460), - [anon_sym_iptr] = ACTIONS(1460), - [anon_sym_uptr] = ACTIONS(1460), - [anon_sym_isz] = ACTIONS(1460), - [anon_sym_usz] = ACTIONS(1460), - [anon_sym_anyfault] = ACTIONS(1460), - [anon_sym_any] = ACTIONS(1460), - [anon_sym_DOLLARtypeof] = ACTIONS(1460), - [anon_sym_DOLLARtypefrom] = ACTIONS(1460), - [anon_sym_DOLLARvatype] = ACTIONS(1460), - [anon_sym_DOLLARevaltype] = ACTIONS(1460), - [sym_real_literal] = ACTIONS(1462), + [sym_ident] = ACTIONS(1441), + [sym_integer_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1443), + [anon_sym_DQUOTE] = ACTIONS(1443), + [anon_sym_BQUOTE] = ACTIONS(1443), + [sym_bytes_literal] = ACTIONS(1443), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1441), + [sym_at_ident] = ACTIONS(1443), + [sym_hash_ident] = ACTIONS(1443), + [sym_type_ident] = ACTIONS(1443), + [sym_ct_type_ident] = ACTIONS(1443), + [sym_const_ident] = ACTIONS(1441), + [sym_builtin] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_tlocal] = ACTIONS(1441), + [anon_sym_SEMI] = ACTIONS(1443), + [anon_sym_fn] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1441), + [anon_sym_const] = ACTIONS(1441), + [anon_sym_var] = ACTIONS(1441), + [anon_sym_return] = ACTIONS(1441), + [anon_sym_continue] = ACTIONS(1441), + [anon_sym_break] = ACTIONS(1441), + [anon_sym_defer] = ACTIONS(1441), + [anon_sym_assert] = ACTIONS(1441), + [anon_sym_nextcase] = ACTIONS(1441), + [anon_sym_switch] = ACTIONS(1441), + [anon_sym_AMP_AMP] = ACTIONS(1443), + [anon_sym_if] = ACTIONS(1441), + [anon_sym_for] = ACTIONS(1441), + [anon_sym_foreach] = ACTIONS(1441), + [anon_sym_foreach_r] = ACTIONS(1441), + [anon_sym_while] = ACTIONS(1441), + [anon_sym_do] = ACTIONS(1441), + [anon_sym_int] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1441), + [anon_sym_DASH] = ACTIONS(1441), + [anon_sym_STAR] = ACTIONS(1443), + [anon_sym_asm] = ACTIONS(1441), + [anon_sym_DOLLARassert] = ACTIONS(1441), + [anon_sym_DOLLARerror] = ACTIONS(1441), + [anon_sym_DOLLARecho] = ACTIONS(1441), + [anon_sym_DOLLARif] = ACTIONS(1441), + [anon_sym_DOLLARswitch] = ACTIONS(1441), + [anon_sym_DOLLARfor] = ACTIONS(1441), + [anon_sym_DOLLARforeach] = ACTIONS(1441), + [anon_sym_DOLLARendforeach] = ACTIONS(1441), + [anon_sym_DOLLARalignof] = ACTIONS(1441), + [anon_sym_DOLLARextnameof] = ACTIONS(1441), + [anon_sym_DOLLARnameof] = ACTIONS(1441), + [anon_sym_DOLLARoffsetof] = ACTIONS(1441), + [anon_sym_DOLLARqnameof] = ACTIONS(1441), + [anon_sym_DOLLARvaconst] = ACTIONS(1441), + [anon_sym_DOLLARvaarg] = ACTIONS(1441), + [anon_sym_DOLLARvaref] = ACTIONS(1441), + [anon_sym_DOLLARvaexpr] = ACTIONS(1441), + [anon_sym_true] = ACTIONS(1441), + [anon_sym_false] = ACTIONS(1441), + [anon_sym_null] = ACTIONS(1441), + [anon_sym_DOLLARvacount] = ACTIONS(1441), + [anon_sym_DOLLARappend] = ACTIONS(1441), + [anon_sym_DOLLARconcat] = ACTIONS(1441), + [anon_sym_DOLLAReval] = ACTIONS(1441), + [anon_sym_DOLLARis_const] = ACTIONS(1441), + [anon_sym_DOLLARsizeof] = ACTIONS(1441), + [anon_sym_DOLLARstringify] = ACTIONS(1441), + [anon_sym_DOLLARand] = ACTIONS(1441), + [anon_sym_DOLLARdefined] = ACTIONS(1441), + [anon_sym_DOLLARembed] = ACTIONS(1441), + [anon_sym_DOLLARor] = ACTIONS(1441), + [anon_sym_DOLLARfeature] = ACTIONS(1441), + [anon_sym_DOLLARassignable] = ACTIONS(1441), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_TILDE] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(1443), + [anon_sym_DASH_DASH] = ACTIONS(1443), + [anon_sym_typeid] = ACTIONS(1441), + [anon_sym_LBRACE_PIPE] = ACTIONS(1443), + [anon_sym_void] = ACTIONS(1441), + [anon_sym_bool] = ACTIONS(1441), + [anon_sym_char] = ACTIONS(1441), + [anon_sym_ichar] = ACTIONS(1441), + [anon_sym_short] = ACTIONS(1441), + [anon_sym_ushort] = ACTIONS(1441), + [anon_sym_uint] = ACTIONS(1441), + [anon_sym_long] = ACTIONS(1441), + [anon_sym_ulong] = ACTIONS(1441), + [anon_sym_int128] = ACTIONS(1441), + [anon_sym_uint128] = ACTIONS(1441), + [anon_sym_float] = ACTIONS(1441), + [anon_sym_double] = ACTIONS(1441), + [anon_sym_float16] = ACTIONS(1441), + [anon_sym_bfloat16] = ACTIONS(1441), + [anon_sym_float128] = ACTIONS(1441), + [anon_sym_iptr] = ACTIONS(1441), + [anon_sym_uptr] = ACTIONS(1441), + [anon_sym_isz] = ACTIONS(1441), + [anon_sym_usz] = ACTIONS(1441), + [anon_sym_anyfault] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_DOLLARtypeof] = ACTIONS(1441), + [anon_sym_DOLLARtypefrom] = ACTIONS(1441), + [anon_sym_DOLLARvatype] = ACTIONS(1441), + [anon_sym_DOLLARevaltype] = ACTIONS(1441), + [sym_real_literal] = ACTIONS(1443), }, [656] = { [sym_line_comment] = STATE(656), [sym_doc_comment] = STATE(656), [sym_block_comment] = STATE(656), - [sym_ident] = ACTIONS(1386), - [sym_integer_literal] = ACTIONS(1388), - [anon_sym_SQUOTE] = ACTIONS(1388), - [anon_sym_DQUOTE] = ACTIONS(1388), - [anon_sym_BQUOTE] = ACTIONS(1388), - [sym_bytes_literal] = ACTIONS(1388), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1386), - [sym_at_ident] = ACTIONS(1388), - [sym_hash_ident] = ACTIONS(1388), - [sym_type_ident] = ACTIONS(1388), - [sym_ct_type_ident] = ACTIONS(1388), - [sym_const_ident] = ACTIONS(1386), - [sym_builtin] = ACTIONS(1388), - [anon_sym_LPAREN] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1386), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_tlocal] = ACTIONS(1386), - [anon_sym_SEMI] = ACTIONS(1388), - [anon_sym_fn] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_const] = ACTIONS(1386), - [anon_sym_var] = ACTIONS(1386), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_continue] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1386), - [anon_sym_defer] = ACTIONS(1386), - [anon_sym_assert] = ACTIONS(1386), - [anon_sym_nextcase] = ACTIONS(1386), - [anon_sym_switch] = ACTIONS(1386), - [anon_sym_AMP_AMP] = ACTIONS(1388), - [anon_sym_if] = ACTIONS(1386), - [anon_sym_for] = ACTIONS(1386), - [anon_sym_foreach] = ACTIONS(1386), - [anon_sym_foreach_r] = ACTIONS(1386), - [anon_sym_while] = ACTIONS(1386), - [anon_sym_do] = ACTIONS(1386), - [anon_sym_int] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_asm] = ACTIONS(1386), - [anon_sym_DOLLARassert] = ACTIONS(1386), - [anon_sym_DOLLARerror] = ACTIONS(1386), - [anon_sym_DOLLARecho] = ACTIONS(1386), - [anon_sym_DOLLARif] = ACTIONS(1386), - [anon_sym_DOLLARendif] = ACTIONS(1386), - [anon_sym_DOLLARswitch] = ACTIONS(1386), - [anon_sym_DOLLARfor] = ACTIONS(1386), - [anon_sym_DOLLARforeach] = ACTIONS(1386), - [anon_sym_DOLLARalignof] = ACTIONS(1386), - [anon_sym_DOLLARextnameof] = ACTIONS(1386), - [anon_sym_DOLLARnameof] = ACTIONS(1386), - [anon_sym_DOLLARoffsetof] = ACTIONS(1386), - [anon_sym_DOLLARqnameof] = ACTIONS(1386), - [anon_sym_DOLLARvaconst] = ACTIONS(1386), - [anon_sym_DOLLARvaarg] = ACTIONS(1386), - [anon_sym_DOLLARvaref] = ACTIONS(1386), - [anon_sym_DOLLARvaexpr] = ACTIONS(1386), - [anon_sym_true] = ACTIONS(1386), - [anon_sym_false] = ACTIONS(1386), - [anon_sym_null] = ACTIONS(1386), - [anon_sym_DOLLARvacount] = ACTIONS(1386), - [anon_sym_DOLLARappend] = ACTIONS(1386), - [anon_sym_DOLLARconcat] = ACTIONS(1386), - [anon_sym_DOLLAReval] = ACTIONS(1386), - [anon_sym_DOLLARis_const] = ACTIONS(1386), - [anon_sym_DOLLARsizeof] = ACTIONS(1386), - [anon_sym_DOLLARstringify] = ACTIONS(1386), - [anon_sym_DOLLARand] = ACTIONS(1386), - [anon_sym_DOLLARdefined] = ACTIONS(1386), - [anon_sym_DOLLARembed] = ACTIONS(1386), - [anon_sym_DOLLARor] = ACTIONS(1386), - [anon_sym_DOLLARfeature] = ACTIONS(1386), - [anon_sym_DOLLARassignable] = ACTIONS(1386), - [anon_sym_BANG] = ACTIONS(1388), - [anon_sym_TILDE] = ACTIONS(1388), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [anon_sym_typeid] = ACTIONS(1386), - [anon_sym_LBRACE_PIPE] = ACTIONS(1388), - [anon_sym_void] = ACTIONS(1386), - [anon_sym_bool] = ACTIONS(1386), - [anon_sym_char] = ACTIONS(1386), - [anon_sym_ichar] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_ushort] = ACTIONS(1386), - [anon_sym_uint] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1386), - [anon_sym_ulong] = ACTIONS(1386), - [anon_sym_int128] = ACTIONS(1386), - [anon_sym_uint128] = ACTIONS(1386), - [anon_sym_float] = ACTIONS(1386), - [anon_sym_double] = ACTIONS(1386), - [anon_sym_float16] = ACTIONS(1386), - [anon_sym_bfloat16] = ACTIONS(1386), - [anon_sym_float128] = ACTIONS(1386), - [anon_sym_iptr] = ACTIONS(1386), - [anon_sym_uptr] = ACTIONS(1386), - [anon_sym_isz] = ACTIONS(1386), - [anon_sym_usz] = ACTIONS(1386), - [anon_sym_anyfault] = ACTIONS(1386), - [anon_sym_any] = ACTIONS(1386), - [anon_sym_DOLLARtypeof] = ACTIONS(1386), - [anon_sym_DOLLARtypefrom] = ACTIONS(1386), - [anon_sym_DOLLARvatype] = ACTIONS(1386), - [anon_sym_DOLLARevaltype] = ACTIONS(1386), - [sym_real_literal] = ACTIONS(1388), + [sym_ident] = ACTIONS(1423), + [sym_integer_literal] = ACTIONS(1425), + [anon_sym_SQUOTE] = ACTIONS(1425), + [anon_sym_DQUOTE] = ACTIONS(1425), + [anon_sym_BQUOTE] = ACTIONS(1425), + [sym_bytes_literal] = ACTIONS(1425), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1423), + [sym_at_ident] = ACTIONS(1425), + [sym_hash_ident] = ACTIONS(1425), + [sym_type_ident] = ACTIONS(1425), + [sym_ct_type_ident] = ACTIONS(1425), + [sym_const_ident] = ACTIONS(1423), + [sym_builtin] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1423), + [anon_sym_static] = ACTIONS(1423), + [anon_sym_tlocal] = ACTIONS(1423), + [anon_sym_SEMI] = ACTIONS(1425), + [anon_sym_fn] = ACTIONS(1423), + [anon_sym_LBRACE] = ACTIONS(1423), + [anon_sym_const] = ACTIONS(1423), + [anon_sym_var] = ACTIONS(1423), + [anon_sym_return] = ACTIONS(1423), + [anon_sym_continue] = ACTIONS(1423), + [anon_sym_break] = ACTIONS(1423), + [anon_sym_defer] = ACTIONS(1423), + [anon_sym_assert] = ACTIONS(1423), + [anon_sym_nextcase] = ACTIONS(1423), + [anon_sym_switch] = ACTIONS(1423), + [anon_sym_AMP_AMP] = ACTIONS(1425), + [anon_sym_if] = ACTIONS(1423), + [anon_sym_for] = ACTIONS(1423), + [anon_sym_foreach] = ACTIONS(1423), + [anon_sym_foreach_r] = ACTIONS(1423), + [anon_sym_while] = ACTIONS(1423), + [anon_sym_do] = ACTIONS(1423), + [anon_sym_int] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_asm] = ACTIONS(1423), + [anon_sym_DOLLARassert] = ACTIONS(1423), + [anon_sym_DOLLARerror] = ACTIONS(1423), + [anon_sym_DOLLARecho] = ACTIONS(1423), + [anon_sym_DOLLARif] = ACTIONS(1423), + [anon_sym_DOLLARswitch] = ACTIONS(1423), + [anon_sym_DOLLARfor] = ACTIONS(1423), + [anon_sym_DOLLARforeach] = ACTIONS(1423), + [anon_sym_DOLLARendforeach] = ACTIONS(1423), + [anon_sym_DOLLARalignof] = ACTIONS(1423), + [anon_sym_DOLLARextnameof] = ACTIONS(1423), + [anon_sym_DOLLARnameof] = ACTIONS(1423), + [anon_sym_DOLLARoffsetof] = ACTIONS(1423), + [anon_sym_DOLLARqnameof] = ACTIONS(1423), + [anon_sym_DOLLARvaconst] = ACTIONS(1423), + [anon_sym_DOLLARvaarg] = ACTIONS(1423), + [anon_sym_DOLLARvaref] = ACTIONS(1423), + [anon_sym_DOLLARvaexpr] = ACTIONS(1423), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_null] = ACTIONS(1423), + [anon_sym_DOLLARvacount] = ACTIONS(1423), + [anon_sym_DOLLARappend] = ACTIONS(1423), + [anon_sym_DOLLARconcat] = ACTIONS(1423), + [anon_sym_DOLLAReval] = ACTIONS(1423), + [anon_sym_DOLLARis_const] = ACTIONS(1423), + [anon_sym_DOLLARsizeof] = ACTIONS(1423), + [anon_sym_DOLLARstringify] = ACTIONS(1423), + [anon_sym_DOLLARand] = ACTIONS(1423), + [anon_sym_DOLLARdefined] = ACTIONS(1423), + [anon_sym_DOLLARembed] = ACTIONS(1423), + [anon_sym_DOLLARor] = ACTIONS(1423), + [anon_sym_DOLLARfeature] = ACTIONS(1423), + [anon_sym_DOLLARassignable] = ACTIONS(1423), + [anon_sym_BANG] = ACTIONS(1425), + [anon_sym_TILDE] = ACTIONS(1425), + [anon_sym_PLUS_PLUS] = ACTIONS(1425), + [anon_sym_DASH_DASH] = ACTIONS(1425), + [anon_sym_typeid] = ACTIONS(1423), + [anon_sym_LBRACE_PIPE] = ACTIONS(1425), + [anon_sym_void] = ACTIONS(1423), + [anon_sym_bool] = ACTIONS(1423), + [anon_sym_char] = ACTIONS(1423), + [anon_sym_ichar] = ACTIONS(1423), + [anon_sym_short] = ACTIONS(1423), + [anon_sym_ushort] = ACTIONS(1423), + [anon_sym_uint] = ACTIONS(1423), + [anon_sym_long] = ACTIONS(1423), + [anon_sym_ulong] = ACTIONS(1423), + [anon_sym_int128] = ACTIONS(1423), + [anon_sym_uint128] = ACTIONS(1423), + [anon_sym_float] = ACTIONS(1423), + [anon_sym_double] = ACTIONS(1423), + [anon_sym_float16] = ACTIONS(1423), + [anon_sym_bfloat16] = ACTIONS(1423), + [anon_sym_float128] = ACTIONS(1423), + [anon_sym_iptr] = ACTIONS(1423), + [anon_sym_uptr] = ACTIONS(1423), + [anon_sym_isz] = ACTIONS(1423), + [anon_sym_usz] = ACTIONS(1423), + [anon_sym_anyfault] = ACTIONS(1423), + [anon_sym_any] = ACTIONS(1423), + [anon_sym_DOLLARtypeof] = ACTIONS(1423), + [anon_sym_DOLLARtypefrom] = ACTIONS(1423), + [anon_sym_DOLLARvatype] = ACTIONS(1423), + [anon_sym_DOLLARevaltype] = ACTIONS(1423), + [sym_real_literal] = ACTIONS(1425), }, [657] = { [sym_line_comment] = STATE(657), [sym_doc_comment] = STATE(657), [sym_block_comment] = STATE(657), - [sym_ident] = ACTIONS(1456), - [sym_integer_literal] = ACTIONS(1458), - [anon_sym_SQUOTE] = ACTIONS(1458), - [anon_sym_DQUOTE] = ACTIONS(1458), - [anon_sym_BQUOTE] = ACTIONS(1458), - [sym_bytes_literal] = ACTIONS(1458), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1456), - [sym_at_ident] = ACTIONS(1458), - [sym_hash_ident] = ACTIONS(1458), - [sym_type_ident] = ACTIONS(1458), - [sym_ct_type_ident] = ACTIONS(1458), - [sym_const_ident] = ACTIONS(1456), - [sym_builtin] = ACTIONS(1458), - [anon_sym_LPAREN] = ACTIONS(1458), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_static] = ACTIONS(1456), - [anon_sym_tlocal] = ACTIONS(1456), - [anon_sym_SEMI] = ACTIONS(1458), - [anon_sym_fn] = ACTIONS(1456), - [anon_sym_LBRACE] = ACTIONS(1456), - [anon_sym_const] = ACTIONS(1456), - [anon_sym_var] = ACTIONS(1456), - [anon_sym_return] = ACTIONS(1456), - [anon_sym_continue] = ACTIONS(1456), - [anon_sym_break] = ACTIONS(1456), - [anon_sym_defer] = ACTIONS(1456), - [anon_sym_assert] = ACTIONS(1456), - [anon_sym_nextcase] = ACTIONS(1456), - [anon_sym_switch] = ACTIONS(1456), - [anon_sym_AMP_AMP] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1456), - [anon_sym_for] = ACTIONS(1456), - [anon_sym_foreach] = ACTIONS(1456), - [anon_sym_foreach_r] = ACTIONS(1456), - [anon_sym_while] = ACTIONS(1456), - [anon_sym_do] = ACTIONS(1456), - [anon_sym_int] = ACTIONS(1456), - [anon_sym_PLUS] = ACTIONS(1456), - [anon_sym_DASH] = ACTIONS(1456), - [anon_sym_STAR] = ACTIONS(1458), - [anon_sym_asm] = ACTIONS(1456), - [anon_sym_DOLLARassert] = ACTIONS(1456), - [anon_sym_DOLLARerror] = ACTIONS(1456), - [anon_sym_DOLLARecho] = ACTIONS(1456), - [anon_sym_DOLLARif] = ACTIONS(1456), - [anon_sym_DOLLARswitch] = ACTIONS(1456), - [anon_sym_DOLLARfor] = ACTIONS(1456), - [anon_sym_DOLLARforeach] = ACTIONS(1456), - [anon_sym_DOLLARendforeach] = ACTIONS(1456), - [anon_sym_DOLLARalignof] = ACTIONS(1456), - [anon_sym_DOLLARextnameof] = ACTIONS(1456), - [anon_sym_DOLLARnameof] = ACTIONS(1456), - [anon_sym_DOLLARoffsetof] = ACTIONS(1456), - [anon_sym_DOLLARqnameof] = ACTIONS(1456), - [anon_sym_DOLLARvaconst] = ACTIONS(1456), - [anon_sym_DOLLARvaarg] = ACTIONS(1456), - [anon_sym_DOLLARvaref] = ACTIONS(1456), - [anon_sym_DOLLARvaexpr] = ACTIONS(1456), - [anon_sym_true] = ACTIONS(1456), - [anon_sym_false] = ACTIONS(1456), - [anon_sym_null] = ACTIONS(1456), - [anon_sym_DOLLARvacount] = ACTIONS(1456), - [anon_sym_DOLLARappend] = ACTIONS(1456), - [anon_sym_DOLLARconcat] = ACTIONS(1456), - [anon_sym_DOLLAReval] = ACTIONS(1456), - [anon_sym_DOLLARis_const] = ACTIONS(1456), - [anon_sym_DOLLARsizeof] = ACTIONS(1456), - [anon_sym_DOLLARstringify] = ACTIONS(1456), - [anon_sym_DOLLARand] = ACTIONS(1456), - [anon_sym_DOLLARdefined] = ACTIONS(1456), - [anon_sym_DOLLARembed] = ACTIONS(1456), - [anon_sym_DOLLARor] = ACTIONS(1456), - [anon_sym_DOLLARfeature] = ACTIONS(1456), - [anon_sym_DOLLARassignable] = ACTIONS(1456), - [anon_sym_BANG] = ACTIONS(1458), - [anon_sym_TILDE] = ACTIONS(1458), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [anon_sym_typeid] = ACTIONS(1456), - [anon_sym_LBRACE_PIPE] = ACTIONS(1458), - [anon_sym_void] = ACTIONS(1456), - [anon_sym_bool] = ACTIONS(1456), - [anon_sym_char] = ACTIONS(1456), - [anon_sym_ichar] = ACTIONS(1456), - [anon_sym_short] = ACTIONS(1456), - [anon_sym_ushort] = ACTIONS(1456), - [anon_sym_uint] = ACTIONS(1456), - [anon_sym_long] = ACTIONS(1456), - [anon_sym_ulong] = ACTIONS(1456), - [anon_sym_int128] = ACTIONS(1456), - [anon_sym_uint128] = ACTIONS(1456), - [anon_sym_float] = ACTIONS(1456), - [anon_sym_double] = ACTIONS(1456), - [anon_sym_float16] = ACTIONS(1456), - [anon_sym_bfloat16] = ACTIONS(1456), - [anon_sym_float128] = ACTIONS(1456), - [anon_sym_iptr] = ACTIONS(1456), - [anon_sym_uptr] = ACTIONS(1456), - [anon_sym_isz] = ACTIONS(1456), - [anon_sym_usz] = ACTIONS(1456), - [anon_sym_anyfault] = ACTIONS(1456), - [anon_sym_any] = ACTIONS(1456), - [anon_sym_DOLLARtypeof] = ACTIONS(1456), - [anon_sym_DOLLARtypefrom] = ACTIONS(1456), - [anon_sym_DOLLARvatype] = ACTIONS(1456), - [anon_sym_DOLLARevaltype] = ACTIONS(1456), - [sym_real_literal] = ACTIONS(1458), + [sym_ident] = ACTIONS(1179), + [sym_integer_literal] = ACTIONS(1181), + [anon_sym_SQUOTE] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1181), + [anon_sym_BQUOTE] = ACTIONS(1181), + [sym_bytes_literal] = ACTIONS(1181), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1179), + [sym_at_ident] = ACTIONS(1181), + [sym_hash_ident] = ACTIONS(1181), + [sym_type_ident] = ACTIONS(1181), + [sym_ct_type_ident] = ACTIONS(1181), + [sym_const_ident] = ACTIONS(1179), + [sym_builtin] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1181), + [anon_sym_AMP] = ACTIONS(1179), + [anon_sym_static] = ACTIONS(1179), + [anon_sym_tlocal] = ACTIONS(1179), + [anon_sym_SEMI] = ACTIONS(1181), + [anon_sym_fn] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [anon_sym_var] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_defer] = ACTIONS(1179), + [anon_sym_assert] = ACTIONS(1179), + [anon_sym_nextcase] = ACTIONS(1179), + [anon_sym_switch] = ACTIONS(1179), + [anon_sym_AMP_AMP] = ACTIONS(1181), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_foreach] = ACTIONS(1179), + [anon_sym_foreach_r] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_int] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1181), + [anon_sym_asm] = ACTIONS(1179), + [anon_sym_DOLLARassert] = ACTIONS(1179), + [anon_sym_DOLLARerror] = ACTIONS(1179), + [anon_sym_DOLLARecho] = ACTIONS(1179), + [anon_sym_DOLLARif] = ACTIONS(1179), + [anon_sym_DOLLARswitch] = ACTIONS(1179), + [anon_sym_DOLLARfor] = ACTIONS(1179), + [anon_sym_DOLLARendfor] = ACTIONS(1179), + [anon_sym_DOLLARforeach] = ACTIONS(1179), + [anon_sym_DOLLARalignof] = ACTIONS(1179), + [anon_sym_DOLLARextnameof] = ACTIONS(1179), + [anon_sym_DOLLARnameof] = ACTIONS(1179), + [anon_sym_DOLLARoffsetof] = ACTIONS(1179), + [anon_sym_DOLLARqnameof] = ACTIONS(1179), + [anon_sym_DOLLARvaconst] = ACTIONS(1179), + [anon_sym_DOLLARvaarg] = ACTIONS(1179), + [anon_sym_DOLLARvaref] = ACTIONS(1179), + [anon_sym_DOLLARvaexpr] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_DOLLARvacount] = ACTIONS(1179), + [anon_sym_DOLLARappend] = ACTIONS(1179), + [anon_sym_DOLLARconcat] = ACTIONS(1179), + [anon_sym_DOLLAReval] = ACTIONS(1179), + [anon_sym_DOLLARis_const] = ACTIONS(1179), + [anon_sym_DOLLARsizeof] = ACTIONS(1179), + [anon_sym_DOLLARstringify] = ACTIONS(1179), + [anon_sym_DOLLARand] = ACTIONS(1179), + [anon_sym_DOLLARdefined] = ACTIONS(1179), + [anon_sym_DOLLARembed] = ACTIONS(1179), + [anon_sym_DOLLARor] = ACTIONS(1179), + [anon_sym_DOLLARfeature] = ACTIONS(1179), + [anon_sym_DOLLARassignable] = ACTIONS(1179), + [anon_sym_BANG] = ACTIONS(1181), + [anon_sym_TILDE] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(1181), + [anon_sym_DASH_DASH] = ACTIONS(1181), + [anon_sym_typeid] = ACTIONS(1179), + [anon_sym_LBRACE_PIPE] = ACTIONS(1181), + [anon_sym_void] = ACTIONS(1179), + [anon_sym_bool] = ACTIONS(1179), + [anon_sym_char] = ACTIONS(1179), + [anon_sym_ichar] = ACTIONS(1179), + [anon_sym_short] = ACTIONS(1179), + [anon_sym_ushort] = ACTIONS(1179), + [anon_sym_uint] = ACTIONS(1179), + [anon_sym_long] = ACTIONS(1179), + [anon_sym_ulong] = ACTIONS(1179), + [anon_sym_int128] = ACTIONS(1179), + [anon_sym_uint128] = ACTIONS(1179), + [anon_sym_float] = ACTIONS(1179), + [anon_sym_double] = ACTIONS(1179), + [anon_sym_float16] = ACTIONS(1179), + [anon_sym_bfloat16] = ACTIONS(1179), + [anon_sym_float128] = ACTIONS(1179), + [anon_sym_iptr] = ACTIONS(1179), + [anon_sym_uptr] = ACTIONS(1179), + [anon_sym_isz] = ACTIONS(1179), + [anon_sym_usz] = ACTIONS(1179), + [anon_sym_anyfault] = ACTIONS(1179), + [anon_sym_any] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1179), + [anon_sym_DOLLARtypefrom] = ACTIONS(1179), + [anon_sym_DOLLARvatype] = ACTIONS(1179), + [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [sym_real_literal] = ACTIONS(1181), }, [658] = { [sym_line_comment] = STATE(658), [sym_doc_comment] = STATE(658), [sym_block_comment] = STATE(658), - [sym_ident] = ACTIONS(1448), - [sym_integer_literal] = ACTIONS(1450), - [anon_sym_SQUOTE] = ACTIONS(1450), - [anon_sym_DQUOTE] = ACTIONS(1450), - [anon_sym_BQUOTE] = ACTIONS(1450), - [sym_bytes_literal] = ACTIONS(1450), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1448), - [sym_at_ident] = ACTIONS(1450), - [sym_hash_ident] = ACTIONS(1450), - [sym_type_ident] = ACTIONS(1450), - [sym_ct_type_ident] = ACTIONS(1450), - [sym_const_ident] = ACTIONS(1448), - [sym_builtin] = ACTIONS(1450), - [anon_sym_LPAREN] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1448), - [anon_sym_static] = ACTIONS(1448), - [anon_sym_tlocal] = ACTIONS(1448), - [anon_sym_SEMI] = ACTIONS(1450), - [anon_sym_fn] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(1448), - [anon_sym_const] = ACTIONS(1448), - [anon_sym_var] = ACTIONS(1448), - [anon_sym_return] = ACTIONS(1448), - [anon_sym_continue] = ACTIONS(1448), - [anon_sym_break] = ACTIONS(1448), - [anon_sym_defer] = ACTIONS(1448), - [anon_sym_assert] = ACTIONS(1448), - [anon_sym_nextcase] = ACTIONS(1448), - [anon_sym_switch] = ACTIONS(1448), - [anon_sym_AMP_AMP] = ACTIONS(1450), - [anon_sym_if] = ACTIONS(1448), - [anon_sym_for] = ACTIONS(1448), - [anon_sym_foreach] = ACTIONS(1448), - [anon_sym_foreach_r] = ACTIONS(1448), - [anon_sym_while] = ACTIONS(1448), - [anon_sym_do] = ACTIONS(1448), - [anon_sym_int] = ACTIONS(1448), - [anon_sym_PLUS] = ACTIONS(1448), - [anon_sym_DASH] = ACTIONS(1448), - [anon_sym_STAR] = ACTIONS(1450), - [anon_sym_asm] = ACTIONS(1448), - [anon_sym_DOLLARassert] = ACTIONS(1448), - [anon_sym_DOLLARerror] = ACTIONS(1448), - [anon_sym_DOLLARecho] = ACTIONS(1448), - [anon_sym_DOLLARif] = ACTIONS(1448), - [anon_sym_DOLLARswitch] = ACTIONS(1448), - [anon_sym_DOLLARfor] = ACTIONS(1448), - [anon_sym_DOLLARforeach] = ACTIONS(1448), - [anon_sym_DOLLARendforeach] = ACTIONS(1448), - [anon_sym_DOLLARalignof] = ACTIONS(1448), - [anon_sym_DOLLARextnameof] = ACTIONS(1448), - [anon_sym_DOLLARnameof] = ACTIONS(1448), - [anon_sym_DOLLARoffsetof] = ACTIONS(1448), - [anon_sym_DOLLARqnameof] = ACTIONS(1448), - [anon_sym_DOLLARvaconst] = ACTIONS(1448), - [anon_sym_DOLLARvaarg] = ACTIONS(1448), - [anon_sym_DOLLARvaref] = ACTIONS(1448), - [anon_sym_DOLLARvaexpr] = ACTIONS(1448), - [anon_sym_true] = ACTIONS(1448), - [anon_sym_false] = ACTIONS(1448), - [anon_sym_null] = ACTIONS(1448), - [anon_sym_DOLLARvacount] = ACTIONS(1448), - [anon_sym_DOLLARappend] = ACTIONS(1448), - [anon_sym_DOLLARconcat] = ACTIONS(1448), - [anon_sym_DOLLAReval] = ACTIONS(1448), - [anon_sym_DOLLARis_const] = ACTIONS(1448), - [anon_sym_DOLLARsizeof] = ACTIONS(1448), - [anon_sym_DOLLARstringify] = ACTIONS(1448), - [anon_sym_DOLLARand] = ACTIONS(1448), - [anon_sym_DOLLARdefined] = ACTIONS(1448), - [anon_sym_DOLLARembed] = ACTIONS(1448), - [anon_sym_DOLLARor] = ACTIONS(1448), - [anon_sym_DOLLARfeature] = ACTIONS(1448), - [anon_sym_DOLLARassignable] = ACTIONS(1448), - [anon_sym_BANG] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1450), - [anon_sym_PLUS_PLUS] = ACTIONS(1450), - [anon_sym_DASH_DASH] = ACTIONS(1450), - [anon_sym_typeid] = ACTIONS(1448), - [anon_sym_LBRACE_PIPE] = ACTIONS(1450), - [anon_sym_void] = ACTIONS(1448), - [anon_sym_bool] = ACTIONS(1448), - [anon_sym_char] = ACTIONS(1448), - [anon_sym_ichar] = ACTIONS(1448), - [anon_sym_short] = ACTIONS(1448), - [anon_sym_ushort] = ACTIONS(1448), - [anon_sym_uint] = ACTIONS(1448), - [anon_sym_long] = ACTIONS(1448), - [anon_sym_ulong] = ACTIONS(1448), - [anon_sym_int128] = ACTIONS(1448), - [anon_sym_uint128] = ACTIONS(1448), - [anon_sym_float] = ACTIONS(1448), - [anon_sym_double] = ACTIONS(1448), - [anon_sym_float16] = ACTIONS(1448), - [anon_sym_bfloat16] = ACTIONS(1448), - [anon_sym_float128] = ACTIONS(1448), - [anon_sym_iptr] = ACTIONS(1448), - [anon_sym_uptr] = ACTIONS(1448), - [anon_sym_isz] = ACTIONS(1448), - [anon_sym_usz] = ACTIONS(1448), - [anon_sym_anyfault] = ACTIONS(1448), - [anon_sym_any] = ACTIONS(1448), - [anon_sym_DOLLARtypeof] = ACTIONS(1448), - [anon_sym_DOLLARtypefrom] = ACTIONS(1448), - [anon_sym_DOLLARvatype] = ACTIONS(1448), - [anon_sym_DOLLARevaltype] = ACTIONS(1448), - [sym_real_literal] = ACTIONS(1450), + [sym_ident] = ACTIONS(1481), + [sym_integer_literal] = ACTIONS(1483), + [anon_sym_SQUOTE] = ACTIONS(1483), + [anon_sym_DQUOTE] = ACTIONS(1483), + [anon_sym_BQUOTE] = ACTIONS(1483), + [sym_bytes_literal] = ACTIONS(1483), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1481), + [sym_at_ident] = ACTIONS(1483), + [sym_hash_ident] = ACTIONS(1483), + [sym_type_ident] = ACTIONS(1483), + [sym_ct_type_ident] = ACTIONS(1483), + [sym_const_ident] = ACTIONS(1481), + [sym_builtin] = ACTIONS(1483), + [anon_sym_LPAREN] = ACTIONS(1483), + [anon_sym_AMP] = ACTIONS(1481), + [anon_sym_static] = ACTIONS(1481), + [anon_sym_tlocal] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1483), + [anon_sym_fn] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_const] = ACTIONS(1481), + [anon_sym_var] = ACTIONS(1481), + [anon_sym_return] = ACTIONS(1481), + [anon_sym_continue] = ACTIONS(1481), + [anon_sym_break] = ACTIONS(1481), + [anon_sym_defer] = ACTIONS(1481), + [anon_sym_assert] = ACTIONS(1481), + [anon_sym_nextcase] = ACTIONS(1481), + [anon_sym_switch] = ACTIONS(1481), + [anon_sym_AMP_AMP] = ACTIONS(1483), + [anon_sym_if] = ACTIONS(1481), + [anon_sym_for] = ACTIONS(1481), + [anon_sym_foreach] = ACTIONS(1481), + [anon_sym_foreach_r] = ACTIONS(1481), + [anon_sym_while] = ACTIONS(1481), + [anon_sym_do] = ACTIONS(1481), + [anon_sym_int] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_STAR] = ACTIONS(1483), + [anon_sym_asm] = ACTIONS(1481), + [anon_sym_DOLLARassert] = ACTIONS(1481), + [anon_sym_DOLLARerror] = ACTIONS(1481), + [anon_sym_DOLLARecho] = ACTIONS(1481), + [anon_sym_DOLLARif] = ACTIONS(1481), + [anon_sym_DOLLARswitch] = ACTIONS(1481), + [anon_sym_DOLLARfor] = ACTIONS(1481), + [anon_sym_DOLLARendfor] = ACTIONS(1481), + [anon_sym_DOLLARforeach] = ACTIONS(1481), + [anon_sym_DOLLARalignof] = ACTIONS(1481), + [anon_sym_DOLLARextnameof] = ACTIONS(1481), + [anon_sym_DOLLARnameof] = ACTIONS(1481), + [anon_sym_DOLLARoffsetof] = ACTIONS(1481), + [anon_sym_DOLLARqnameof] = ACTIONS(1481), + [anon_sym_DOLLARvaconst] = ACTIONS(1481), + [anon_sym_DOLLARvaarg] = ACTIONS(1481), + [anon_sym_DOLLARvaref] = ACTIONS(1481), + [anon_sym_DOLLARvaexpr] = ACTIONS(1481), + [anon_sym_true] = ACTIONS(1481), + [anon_sym_false] = ACTIONS(1481), + [anon_sym_null] = ACTIONS(1481), + [anon_sym_DOLLARvacount] = ACTIONS(1481), + [anon_sym_DOLLARappend] = ACTIONS(1481), + [anon_sym_DOLLARconcat] = ACTIONS(1481), + [anon_sym_DOLLAReval] = ACTIONS(1481), + [anon_sym_DOLLARis_const] = ACTIONS(1481), + [anon_sym_DOLLARsizeof] = ACTIONS(1481), + [anon_sym_DOLLARstringify] = ACTIONS(1481), + [anon_sym_DOLLARand] = ACTIONS(1481), + [anon_sym_DOLLARdefined] = ACTIONS(1481), + [anon_sym_DOLLARembed] = ACTIONS(1481), + [anon_sym_DOLLARor] = ACTIONS(1481), + [anon_sym_DOLLARfeature] = ACTIONS(1481), + [anon_sym_DOLLARassignable] = ACTIONS(1481), + [anon_sym_BANG] = ACTIONS(1483), + [anon_sym_TILDE] = ACTIONS(1483), + [anon_sym_PLUS_PLUS] = ACTIONS(1483), + [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_typeid] = ACTIONS(1481), + [anon_sym_LBRACE_PIPE] = ACTIONS(1483), + [anon_sym_void] = ACTIONS(1481), + [anon_sym_bool] = ACTIONS(1481), + [anon_sym_char] = ACTIONS(1481), + [anon_sym_ichar] = ACTIONS(1481), + [anon_sym_short] = ACTIONS(1481), + [anon_sym_ushort] = ACTIONS(1481), + [anon_sym_uint] = ACTIONS(1481), + [anon_sym_long] = ACTIONS(1481), + [anon_sym_ulong] = ACTIONS(1481), + [anon_sym_int128] = ACTIONS(1481), + [anon_sym_uint128] = ACTIONS(1481), + [anon_sym_float] = ACTIONS(1481), + [anon_sym_double] = ACTIONS(1481), + [anon_sym_float16] = ACTIONS(1481), + [anon_sym_bfloat16] = ACTIONS(1481), + [anon_sym_float128] = ACTIONS(1481), + [anon_sym_iptr] = ACTIONS(1481), + [anon_sym_uptr] = ACTIONS(1481), + [anon_sym_isz] = ACTIONS(1481), + [anon_sym_usz] = ACTIONS(1481), + [anon_sym_anyfault] = ACTIONS(1481), + [anon_sym_any] = ACTIONS(1481), + [anon_sym_DOLLARtypeof] = ACTIONS(1481), + [anon_sym_DOLLARtypefrom] = ACTIONS(1481), + [anon_sym_DOLLARvatype] = ACTIONS(1481), + [anon_sym_DOLLARevaltype] = ACTIONS(1481), + [sym_real_literal] = ACTIONS(1483), }, [659] = { [sym_line_comment] = STATE(659), [sym_doc_comment] = STATE(659), [sym_block_comment] = STATE(659), - [sym_ident] = ACTIONS(1440), - [sym_integer_literal] = ACTIONS(1442), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_DQUOTE] = ACTIONS(1442), - [anon_sym_BQUOTE] = ACTIONS(1442), - [sym_bytes_literal] = ACTIONS(1442), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1440), - [sym_at_ident] = ACTIONS(1442), - [sym_hash_ident] = ACTIONS(1442), - [sym_type_ident] = ACTIONS(1442), - [sym_ct_type_ident] = ACTIONS(1442), - [sym_const_ident] = ACTIONS(1440), - [sym_builtin] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1440), - [anon_sym_static] = ACTIONS(1440), - [anon_sym_tlocal] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1442), - [anon_sym_fn] = ACTIONS(1440), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_const] = ACTIONS(1440), - [anon_sym_var] = ACTIONS(1440), - [anon_sym_return] = ACTIONS(1440), - [anon_sym_continue] = ACTIONS(1440), - [anon_sym_break] = ACTIONS(1440), - [anon_sym_defer] = ACTIONS(1440), - [anon_sym_assert] = ACTIONS(1440), - [anon_sym_nextcase] = ACTIONS(1440), - [anon_sym_switch] = ACTIONS(1440), - [anon_sym_AMP_AMP] = ACTIONS(1442), - [anon_sym_if] = ACTIONS(1440), - [anon_sym_for] = ACTIONS(1440), - [anon_sym_foreach] = ACTIONS(1440), - [anon_sym_foreach_r] = ACTIONS(1440), - [anon_sym_while] = ACTIONS(1440), - [anon_sym_do] = ACTIONS(1440), - [anon_sym_int] = ACTIONS(1440), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_STAR] = ACTIONS(1442), - [anon_sym_asm] = ACTIONS(1440), - [anon_sym_DOLLARassert] = ACTIONS(1440), - [anon_sym_DOLLARerror] = ACTIONS(1440), - [anon_sym_DOLLARecho] = ACTIONS(1440), - [anon_sym_DOLLARif] = ACTIONS(1440), - [anon_sym_DOLLARendif] = ACTIONS(1440), - [anon_sym_DOLLARswitch] = ACTIONS(1440), - [anon_sym_DOLLARfor] = ACTIONS(1440), - [anon_sym_DOLLARforeach] = ACTIONS(1440), - [anon_sym_DOLLARalignof] = ACTIONS(1440), - [anon_sym_DOLLARextnameof] = ACTIONS(1440), - [anon_sym_DOLLARnameof] = ACTIONS(1440), - [anon_sym_DOLLARoffsetof] = ACTIONS(1440), - [anon_sym_DOLLARqnameof] = ACTIONS(1440), - [anon_sym_DOLLARvaconst] = ACTIONS(1440), - [anon_sym_DOLLARvaarg] = ACTIONS(1440), - [anon_sym_DOLLARvaref] = ACTIONS(1440), - [anon_sym_DOLLARvaexpr] = ACTIONS(1440), - [anon_sym_true] = ACTIONS(1440), - [anon_sym_false] = ACTIONS(1440), - [anon_sym_null] = ACTIONS(1440), - [anon_sym_DOLLARvacount] = ACTIONS(1440), - [anon_sym_DOLLARappend] = ACTIONS(1440), - [anon_sym_DOLLARconcat] = ACTIONS(1440), - [anon_sym_DOLLAReval] = ACTIONS(1440), - [anon_sym_DOLLARis_const] = ACTIONS(1440), - [anon_sym_DOLLARsizeof] = ACTIONS(1440), - [anon_sym_DOLLARstringify] = ACTIONS(1440), - [anon_sym_DOLLARand] = ACTIONS(1440), - [anon_sym_DOLLARdefined] = ACTIONS(1440), - [anon_sym_DOLLARembed] = ACTIONS(1440), - [anon_sym_DOLLARor] = ACTIONS(1440), - [anon_sym_DOLLARfeature] = ACTIONS(1440), - [anon_sym_DOLLARassignable] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_typeid] = ACTIONS(1440), - [anon_sym_LBRACE_PIPE] = ACTIONS(1442), - [anon_sym_void] = ACTIONS(1440), - [anon_sym_bool] = ACTIONS(1440), - [anon_sym_char] = ACTIONS(1440), - [anon_sym_ichar] = ACTIONS(1440), - [anon_sym_short] = ACTIONS(1440), - [anon_sym_ushort] = ACTIONS(1440), - [anon_sym_uint] = ACTIONS(1440), - [anon_sym_long] = ACTIONS(1440), - [anon_sym_ulong] = ACTIONS(1440), - [anon_sym_int128] = ACTIONS(1440), - [anon_sym_uint128] = ACTIONS(1440), - [anon_sym_float] = ACTIONS(1440), - [anon_sym_double] = ACTIONS(1440), - [anon_sym_float16] = ACTIONS(1440), - [anon_sym_bfloat16] = ACTIONS(1440), - [anon_sym_float128] = ACTIONS(1440), - [anon_sym_iptr] = ACTIONS(1440), - [anon_sym_uptr] = ACTIONS(1440), - [anon_sym_isz] = ACTIONS(1440), - [anon_sym_usz] = ACTIONS(1440), - [anon_sym_anyfault] = ACTIONS(1440), - [anon_sym_any] = ACTIONS(1440), - [anon_sym_DOLLARtypeof] = ACTIONS(1440), - [anon_sym_DOLLARtypefrom] = ACTIONS(1440), - [anon_sym_DOLLARvatype] = ACTIONS(1440), - [anon_sym_DOLLARevaltype] = ACTIONS(1440), - [sym_real_literal] = ACTIONS(1442), + [sym_ident] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1459), + [anon_sym_SQUOTE] = ACTIONS(1459), + [anon_sym_DQUOTE] = ACTIONS(1459), + [anon_sym_BQUOTE] = ACTIONS(1459), + [sym_bytes_literal] = ACTIONS(1459), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1457), + [sym_at_ident] = ACTIONS(1459), + [sym_hash_ident] = ACTIONS(1459), + [sym_type_ident] = ACTIONS(1459), + [sym_ct_type_ident] = ACTIONS(1459), + [sym_const_ident] = ACTIONS(1457), + [sym_builtin] = ACTIONS(1459), + [anon_sym_LPAREN] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_tlocal] = ACTIONS(1457), + [anon_sym_SEMI] = ACTIONS(1459), + [anon_sym_fn] = ACTIONS(1457), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_const] = ACTIONS(1457), + [anon_sym_var] = ACTIONS(1457), + [anon_sym_return] = ACTIONS(1457), + [anon_sym_continue] = ACTIONS(1457), + [anon_sym_break] = ACTIONS(1457), + [anon_sym_defer] = ACTIONS(1457), + [anon_sym_assert] = ACTIONS(1457), + [anon_sym_nextcase] = ACTIONS(1457), + [anon_sym_switch] = ACTIONS(1457), + [anon_sym_AMP_AMP] = ACTIONS(1459), + [anon_sym_if] = ACTIONS(1457), + [anon_sym_for] = ACTIONS(1457), + [anon_sym_foreach] = ACTIONS(1457), + [anon_sym_foreach_r] = ACTIONS(1457), + [anon_sym_while] = ACTIONS(1457), + [anon_sym_do] = ACTIONS(1457), + [anon_sym_int] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_asm] = ACTIONS(1457), + [anon_sym_DOLLARassert] = ACTIONS(1457), + [anon_sym_DOLLARerror] = ACTIONS(1457), + [anon_sym_DOLLARecho] = ACTIONS(1457), + [anon_sym_DOLLARif] = ACTIONS(1457), + [anon_sym_DOLLARswitch] = ACTIONS(1457), + [anon_sym_DOLLARfor] = ACTIONS(1457), + [anon_sym_DOLLARendfor] = ACTIONS(1457), + [anon_sym_DOLLARforeach] = ACTIONS(1457), + [anon_sym_DOLLARalignof] = ACTIONS(1457), + [anon_sym_DOLLARextnameof] = ACTIONS(1457), + [anon_sym_DOLLARnameof] = ACTIONS(1457), + [anon_sym_DOLLARoffsetof] = ACTIONS(1457), + [anon_sym_DOLLARqnameof] = ACTIONS(1457), + [anon_sym_DOLLARvaconst] = ACTIONS(1457), + [anon_sym_DOLLARvaarg] = ACTIONS(1457), + [anon_sym_DOLLARvaref] = ACTIONS(1457), + [anon_sym_DOLLARvaexpr] = ACTIONS(1457), + [anon_sym_true] = ACTIONS(1457), + [anon_sym_false] = ACTIONS(1457), + [anon_sym_null] = ACTIONS(1457), + [anon_sym_DOLLARvacount] = ACTIONS(1457), + [anon_sym_DOLLARappend] = ACTIONS(1457), + [anon_sym_DOLLARconcat] = ACTIONS(1457), + [anon_sym_DOLLAReval] = ACTIONS(1457), + [anon_sym_DOLLARis_const] = ACTIONS(1457), + [anon_sym_DOLLARsizeof] = ACTIONS(1457), + [anon_sym_DOLLARstringify] = ACTIONS(1457), + [anon_sym_DOLLARand] = ACTIONS(1457), + [anon_sym_DOLLARdefined] = ACTIONS(1457), + [anon_sym_DOLLARembed] = ACTIONS(1457), + [anon_sym_DOLLARor] = ACTIONS(1457), + [anon_sym_DOLLARfeature] = ACTIONS(1457), + [anon_sym_DOLLARassignable] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_TILDE] = ACTIONS(1459), + [anon_sym_PLUS_PLUS] = ACTIONS(1459), + [anon_sym_DASH_DASH] = ACTIONS(1459), + [anon_sym_typeid] = ACTIONS(1457), + [anon_sym_LBRACE_PIPE] = ACTIONS(1459), + [anon_sym_void] = ACTIONS(1457), + [anon_sym_bool] = ACTIONS(1457), + [anon_sym_char] = ACTIONS(1457), + [anon_sym_ichar] = ACTIONS(1457), + [anon_sym_short] = ACTIONS(1457), + [anon_sym_ushort] = ACTIONS(1457), + [anon_sym_uint] = ACTIONS(1457), + [anon_sym_long] = ACTIONS(1457), + [anon_sym_ulong] = ACTIONS(1457), + [anon_sym_int128] = ACTIONS(1457), + [anon_sym_uint128] = ACTIONS(1457), + [anon_sym_float] = ACTIONS(1457), + [anon_sym_double] = ACTIONS(1457), + [anon_sym_float16] = ACTIONS(1457), + [anon_sym_bfloat16] = ACTIONS(1457), + [anon_sym_float128] = ACTIONS(1457), + [anon_sym_iptr] = ACTIONS(1457), + [anon_sym_uptr] = ACTIONS(1457), + [anon_sym_isz] = ACTIONS(1457), + [anon_sym_usz] = ACTIONS(1457), + [anon_sym_anyfault] = ACTIONS(1457), + [anon_sym_any] = ACTIONS(1457), + [anon_sym_DOLLARtypeof] = ACTIONS(1457), + [anon_sym_DOLLARtypefrom] = ACTIONS(1457), + [anon_sym_DOLLARvatype] = ACTIONS(1457), + [anon_sym_DOLLARevaltype] = ACTIONS(1457), + [sym_real_literal] = ACTIONS(1459), }, [660] = { [sym_line_comment] = STATE(660), [sym_doc_comment] = STATE(660), [sym_block_comment] = STATE(660), - [sym_ident] = ACTIONS(1444), - [sym_integer_literal] = ACTIONS(1446), - [anon_sym_SQUOTE] = ACTIONS(1446), - [anon_sym_DQUOTE] = ACTIONS(1446), - [anon_sym_BQUOTE] = ACTIONS(1446), - [sym_bytes_literal] = ACTIONS(1446), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1444), - [sym_at_ident] = ACTIONS(1446), - [sym_hash_ident] = ACTIONS(1446), - [sym_type_ident] = ACTIONS(1446), - [sym_ct_type_ident] = ACTIONS(1446), - [sym_const_ident] = ACTIONS(1444), - [sym_builtin] = ACTIONS(1446), - [anon_sym_LPAREN] = ACTIONS(1446), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_static] = ACTIONS(1444), - [anon_sym_tlocal] = ACTIONS(1444), - [anon_sym_SEMI] = ACTIONS(1446), - [anon_sym_fn] = ACTIONS(1444), - [anon_sym_LBRACE] = ACTIONS(1444), - [anon_sym_const] = ACTIONS(1444), - [anon_sym_var] = ACTIONS(1444), - [anon_sym_return] = ACTIONS(1444), - [anon_sym_continue] = ACTIONS(1444), - [anon_sym_break] = ACTIONS(1444), - [anon_sym_defer] = ACTIONS(1444), - [anon_sym_assert] = ACTIONS(1444), - [anon_sym_nextcase] = ACTIONS(1444), - [anon_sym_switch] = ACTIONS(1444), - [anon_sym_AMP_AMP] = ACTIONS(1446), - [anon_sym_if] = ACTIONS(1444), - [anon_sym_for] = ACTIONS(1444), - [anon_sym_foreach] = ACTIONS(1444), - [anon_sym_foreach_r] = ACTIONS(1444), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_do] = ACTIONS(1444), - [anon_sym_int] = ACTIONS(1444), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_asm] = ACTIONS(1444), - [anon_sym_DOLLARassert] = ACTIONS(1444), - [anon_sym_DOLLARerror] = ACTIONS(1444), - [anon_sym_DOLLARecho] = ACTIONS(1444), - [anon_sym_DOLLARif] = ACTIONS(1444), - [anon_sym_DOLLARswitch] = ACTIONS(1444), - [anon_sym_DOLLARfor] = ACTIONS(1444), - [anon_sym_DOLLARforeach] = ACTIONS(1444), - [anon_sym_DOLLARendforeach] = ACTIONS(1444), - [anon_sym_DOLLARalignof] = ACTIONS(1444), - [anon_sym_DOLLARextnameof] = ACTIONS(1444), - [anon_sym_DOLLARnameof] = ACTIONS(1444), - [anon_sym_DOLLARoffsetof] = ACTIONS(1444), - [anon_sym_DOLLARqnameof] = ACTIONS(1444), - [anon_sym_DOLLARvaconst] = ACTIONS(1444), - [anon_sym_DOLLARvaarg] = ACTIONS(1444), - [anon_sym_DOLLARvaref] = ACTIONS(1444), - [anon_sym_DOLLARvaexpr] = ACTIONS(1444), - [anon_sym_true] = ACTIONS(1444), - [anon_sym_false] = ACTIONS(1444), - [anon_sym_null] = ACTIONS(1444), - [anon_sym_DOLLARvacount] = ACTIONS(1444), - [anon_sym_DOLLARappend] = ACTIONS(1444), - [anon_sym_DOLLARconcat] = ACTIONS(1444), - [anon_sym_DOLLAReval] = ACTIONS(1444), - [anon_sym_DOLLARis_const] = ACTIONS(1444), - [anon_sym_DOLLARsizeof] = ACTIONS(1444), - [anon_sym_DOLLARstringify] = ACTIONS(1444), - [anon_sym_DOLLARand] = ACTIONS(1444), - [anon_sym_DOLLARdefined] = ACTIONS(1444), - [anon_sym_DOLLARembed] = ACTIONS(1444), - [anon_sym_DOLLARor] = ACTIONS(1444), - [anon_sym_DOLLARfeature] = ACTIONS(1444), - [anon_sym_DOLLARassignable] = ACTIONS(1444), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_TILDE] = ACTIONS(1446), - [anon_sym_PLUS_PLUS] = ACTIONS(1446), - [anon_sym_DASH_DASH] = ACTIONS(1446), - [anon_sym_typeid] = ACTIONS(1444), - [anon_sym_LBRACE_PIPE] = ACTIONS(1446), - [anon_sym_void] = ACTIONS(1444), - [anon_sym_bool] = ACTIONS(1444), - [anon_sym_char] = ACTIONS(1444), - [anon_sym_ichar] = ACTIONS(1444), - [anon_sym_short] = ACTIONS(1444), - [anon_sym_ushort] = ACTIONS(1444), - [anon_sym_uint] = ACTIONS(1444), - [anon_sym_long] = ACTIONS(1444), - [anon_sym_ulong] = ACTIONS(1444), - [anon_sym_int128] = ACTIONS(1444), - [anon_sym_uint128] = ACTIONS(1444), - [anon_sym_float] = ACTIONS(1444), - [anon_sym_double] = ACTIONS(1444), - [anon_sym_float16] = ACTIONS(1444), - [anon_sym_bfloat16] = ACTIONS(1444), - [anon_sym_float128] = ACTIONS(1444), - [anon_sym_iptr] = ACTIONS(1444), - [anon_sym_uptr] = ACTIONS(1444), - [anon_sym_isz] = ACTIONS(1444), - [anon_sym_usz] = ACTIONS(1444), - [anon_sym_anyfault] = ACTIONS(1444), - [anon_sym_any] = ACTIONS(1444), - [anon_sym_DOLLARtypeof] = ACTIONS(1444), - [anon_sym_DOLLARtypefrom] = ACTIONS(1444), - [anon_sym_DOLLARvatype] = ACTIONS(1444), - [anon_sym_DOLLARevaltype] = ACTIONS(1444), - [sym_real_literal] = ACTIONS(1446), + [sym_ident] = ACTIONS(1453), + [sym_integer_literal] = ACTIONS(1455), + [anon_sym_SQUOTE] = ACTIONS(1455), + [anon_sym_DQUOTE] = ACTIONS(1455), + [anon_sym_BQUOTE] = ACTIONS(1455), + [sym_bytes_literal] = ACTIONS(1455), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1453), + [sym_at_ident] = ACTIONS(1455), + [sym_hash_ident] = ACTIONS(1455), + [sym_type_ident] = ACTIONS(1455), + [sym_ct_type_ident] = ACTIONS(1455), + [sym_const_ident] = ACTIONS(1453), + [sym_builtin] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_AMP] = ACTIONS(1453), + [anon_sym_static] = ACTIONS(1453), + [anon_sym_tlocal] = ACTIONS(1453), + [anon_sym_SEMI] = ACTIONS(1455), + [anon_sym_fn] = ACTIONS(1453), + [anon_sym_LBRACE] = ACTIONS(1453), + [anon_sym_const] = ACTIONS(1453), + [anon_sym_var] = ACTIONS(1453), + [anon_sym_return] = ACTIONS(1453), + [anon_sym_continue] = ACTIONS(1453), + [anon_sym_break] = ACTIONS(1453), + [anon_sym_defer] = ACTIONS(1453), + [anon_sym_assert] = ACTIONS(1453), + [anon_sym_nextcase] = ACTIONS(1453), + [anon_sym_switch] = ACTIONS(1453), + [anon_sym_AMP_AMP] = ACTIONS(1455), + [anon_sym_if] = ACTIONS(1453), + [anon_sym_for] = ACTIONS(1453), + [anon_sym_foreach] = ACTIONS(1453), + [anon_sym_foreach_r] = ACTIONS(1453), + [anon_sym_while] = ACTIONS(1453), + [anon_sym_do] = ACTIONS(1453), + [anon_sym_int] = ACTIONS(1453), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_STAR] = ACTIONS(1455), + [anon_sym_asm] = ACTIONS(1453), + [anon_sym_DOLLARassert] = ACTIONS(1453), + [anon_sym_DOLLARerror] = ACTIONS(1453), + [anon_sym_DOLLARecho] = ACTIONS(1453), + [anon_sym_DOLLARif] = ACTIONS(1453), + [anon_sym_DOLLARswitch] = ACTIONS(1453), + [anon_sym_DOLLARfor] = ACTIONS(1453), + [anon_sym_DOLLARendfor] = ACTIONS(1453), + [anon_sym_DOLLARforeach] = ACTIONS(1453), + [anon_sym_DOLLARalignof] = ACTIONS(1453), + [anon_sym_DOLLARextnameof] = ACTIONS(1453), + [anon_sym_DOLLARnameof] = ACTIONS(1453), + [anon_sym_DOLLARoffsetof] = ACTIONS(1453), + [anon_sym_DOLLARqnameof] = ACTIONS(1453), + [anon_sym_DOLLARvaconst] = ACTIONS(1453), + [anon_sym_DOLLARvaarg] = ACTIONS(1453), + [anon_sym_DOLLARvaref] = ACTIONS(1453), + [anon_sym_DOLLARvaexpr] = ACTIONS(1453), + [anon_sym_true] = ACTIONS(1453), + [anon_sym_false] = ACTIONS(1453), + [anon_sym_null] = ACTIONS(1453), + [anon_sym_DOLLARvacount] = ACTIONS(1453), + [anon_sym_DOLLARappend] = ACTIONS(1453), + [anon_sym_DOLLARconcat] = ACTIONS(1453), + [anon_sym_DOLLAReval] = ACTIONS(1453), + [anon_sym_DOLLARis_const] = ACTIONS(1453), + [anon_sym_DOLLARsizeof] = ACTIONS(1453), + [anon_sym_DOLLARstringify] = ACTIONS(1453), + [anon_sym_DOLLARand] = ACTIONS(1453), + [anon_sym_DOLLARdefined] = ACTIONS(1453), + [anon_sym_DOLLARembed] = ACTIONS(1453), + [anon_sym_DOLLARor] = ACTIONS(1453), + [anon_sym_DOLLARfeature] = ACTIONS(1453), + [anon_sym_DOLLARassignable] = ACTIONS(1453), + [anon_sym_BANG] = ACTIONS(1455), + [anon_sym_TILDE] = ACTIONS(1455), + [anon_sym_PLUS_PLUS] = ACTIONS(1455), + [anon_sym_DASH_DASH] = ACTIONS(1455), + [anon_sym_typeid] = ACTIONS(1453), + [anon_sym_LBRACE_PIPE] = ACTIONS(1455), + [anon_sym_void] = ACTIONS(1453), + [anon_sym_bool] = ACTIONS(1453), + [anon_sym_char] = ACTIONS(1453), + [anon_sym_ichar] = ACTIONS(1453), + [anon_sym_short] = ACTIONS(1453), + [anon_sym_ushort] = ACTIONS(1453), + [anon_sym_uint] = ACTIONS(1453), + [anon_sym_long] = ACTIONS(1453), + [anon_sym_ulong] = ACTIONS(1453), + [anon_sym_int128] = ACTIONS(1453), + [anon_sym_uint128] = ACTIONS(1453), + [anon_sym_float] = ACTIONS(1453), + [anon_sym_double] = ACTIONS(1453), + [anon_sym_float16] = ACTIONS(1453), + [anon_sym_bfloat16] = ACTIONS(1453), + [anon_sym_float128] = ACTIONS(1453), + [anon_sym_iptr] = ACTIONS(1453), + [anon_sym_uptr] = ACTIONS(1453), + [anon_sym_isz] = ACTIONS(1453), + [anon_sym_usz] = ACTIONS(1453), + [anon_sym_anyfault] = ACTIONS(1453), + [anon_sym_any] = ACTIONS(1453), + [anon_sym_DOLLARtypeof] = ACTIONS(1453), + [anon_sym_DOLLARtypefrom] = ACTIONS(1453), + [anon_sym_DOLLARvatype] = ACTIONS(1453), + [anon_sym_DOLLARevaltype] = ACTIONS(1453), + [sym_real_literal] = ACTIONS(1455), }, [661] = { [sym_line_comment] = STATE(661), [sym_doc_comment] = STATE(661), [sym_block_comment] = STATE(661), - [sym_ident] = ACTIONS(1428), - [sym_integer_literal] = ACTIONS(1430), - [anon_sym_SQUOTE] = ACTIONS(1430), - [anon_sym_DQUOTE] = ACTIONS(1430), - [anon_sym_BQUOTE] = ACTIONS(1430), - [sym_bytes_literal] = ACTIONS(1430), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1428), - [sym_at_ident] = ACTIONS(1430), - [sym_hash_ident] = ACTIONS(1430), - [sym_type_ident] = ACTIONS(1430), - [sym_ct_type_ident] = ACTIONS(1430), - [sym_const_ident] = ACTIONS(1428), - [sym_builtin] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1430), - [anon_sym_AMP] = ACTIONS(1428), - [anon_sym_static] = ACTIONS(1428), - [anon_sym_tlocal] = ACTIONS(1428), - [anon_sym_SEMI] = ACTIONS(1430), - [anon_sym_fn] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1428), - [anon_sym_const] = ACTIONS(1428), - [anon_sym_var] = ACTIONS(1428), - [anon_sym_return] = ACTIONS(1428), - [anon_sym_continue] = ACTIONS(1428), - [anon_sym_break] = ACTIONS(1428), - [anon_sym_defer] = ACTIONS(1428), - [anon_sym_assert] = ACTIONS(1428), - [anon_sym_nextcase] = ACTIONS(1428), - [anon_sym_switch] = ACTIONS(1428), - [anon_sym_AMP_AMP] = ACTIONS(1430), - [anon_sym_if] = ACTIONS(1428), - [anon_sym_for] = ACTIONS(1428), - [anon_sym_foreach] = ACTIONS(1428), - [anon_sym_foreach_r] = ACTIONS(1428), - [anon_sym_while] = ACTIONS(1428), - [anon_sym_do] = ACTIONS(1428), - [anon_sym_int] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1428), - [anon_sym_DASH] = ACTIONS(1428), - [anon_sym_STAR] = ACTIONS(1430), - [anon_sym_asm] = ACTIONS(1428), - [anon_sym_DOLLARassert] = ACTIONS(1428), - [anon_sym_DOLLARerror] = ACTIONS(1428), - [anon_sym_DOLLARecho] = ACTIONS(1428), - [anon_sym_DOLLARif] = ACTIONS(1428), - [anon_sym_DOLLARswitch] = ACTIONS(1428), - [anon_sym_DOLLARfor] = ACTIONS(1428), - [anon_sym_DOLLARforeach] = ACTIONS(1428), - [anon_sym_DOLLARendforeach] = ACTIONS(1428), - [anon_sym_DOLLARalignof] = ACTIONS(1428), - [anon_sym_DOLLARextnameof] = ACTIONS(1428), - [anon_sym_DOLLARnameof] = ACTIONS(1428), - [anon_sym_DOLLARoffsetof] = ACTIONS(1428), - [anon_sym_DOLLARqnameof] = ACTIONS(1428), - [anon_sym_DOLLARvaconst] = ACTIONS(1428), - [anon_sym_DOLLARvaarg] = ACTIONS(1428), - [anon_sym_DOLLARvaref] = ACTIONS(1428), - [anon_sym_DOLLARvaexpr] = ACTIONS(1428), - [anon_sym_true] = ACTIONS(1428), - [anon_sym_false] = ACTIONS(1428), - [anon_sym_null] = ACTIONS(1428), - [anon_sym_DOLLARvacount] = ACTIONS(1428), - [anon_sym_DOLLARappend] = ACTIONS(1428), - [anon_sym_DOLLARconcat] = ACTIONS(1428), - [anon_sym_DOLLAReval] = ACTIONS(1428), - [anon_sym_DOLLARis_const] = ACTIONS(1428), - [anon_sym_DOLLARsizeof] = ACTIONS(1428), - [anon_sym_DOLLARstringify] = ACTIONS(1428), - [anon_sym_DOLLARand] = ACTIONS(1428), - [anon_sym_DOLLARdefined] = ACTIONS(1428), - [anon_sym_DOLLARembed] = ACTIONS(1428), - [anon_sym_DOLLARor] = ACTIONS(1428), - [anon_sym_DOLLARfeature] = ACTIONS(1428), - [anon_sym_DOLLARassignable] = ACTIONS(1428), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_PLUS_PLUS] = ACTIONS(1430), - [anon_sym_DASH_DASH] = ACTIONS(1430), - [anon_sym_typeid] = ACTIONS(1428), - [anon_sym_LBRACE_PIPE] = ACTIONS(1430), - [anon_sym_void] = ACTIONS(1428), - [anon_sym_bool] = ACTIONS(1428), - [anon_sym_char] = ACTIONS(1428), - [anon_sym_ichar] = ACTIONS(1428), - [anon_sym_short] = ACTIONS(1428), - [anon_sym_ushort] = ACTIONS(1428), - [anon_sym_uint] = ACTIONS(1428), - [anon_sym_long] = ACTIONS(1428), - [anon_sym_ulong] = ACTIONS(1428), - [anon_sym_int128] = ACTIONS(1428), - [anon_sym_uint128] = ACTIONS(1428), - [anon_sym_float] = ACTIONS(1428), - [anon_sym_double] = ACTIONS(1428), - [anon_sym_float16] = ACTIONS(1428), - [anon_sym_bfloat16] = ACTIONS(1428), - [anon_sym_float128] = ACTIONS(1428), - [anon_sym_iptr] = ACTIONS(1428), - [anon_sym_uptr] = ACTIONS(1428), - [anon_sym_isz] = ACTIONS(1428), - [anon_sym_usz] = ACTIONS(1428), - [anon_sym_anyfault] = ACTIONS(1428), - [anon_sym_any] = ACTIONS(1428), - [anon_sym_DOLLARtypeof] = ACTIONS(1428), - [anon_sym_DOLLARtypefrom] = ACTIONS(1428), - [anon_sym_DOLLARvatype] = ACTIONS(1428), - [anon_sym_DOLLARevaltype] = ACTIONS(1428), - [sym_real_literal] = ACTIONS(1430), + [sym_ident] = ACTIONS(1545), + [sym_integer_literal] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1547), + [anon_sym_DQUOTE] = ACTIONS(1547), + [anon_sym_BQUOTE] = ACTIONS(1547), + [sym_bytes_literal] = ACTIONS(1547), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1545), + [sym_at_ident] = ACTIONS(1547), + [sym_hash_ident] = ACTIONS(1547), + [sym_type_ident] = ACTIONS(1547), + [sym_ct_type_ident] = ACTIONS(1547), + [sym_const_ident] = ACTIONS(1545), + [sym_builtin] = ACTIONS(1547), + [anon_sym_LPAREN] = ACTIONS(1547), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_static] = ACTIONS(1545), + [anon_sym_tlocal] = ACTIONS(1545), + [anon_sym_SEMI] = ACTIONS(1547), + [anon_sym_fn] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(1545), + [anon_sym_const] = ACTIONS(1545), + [anon_sym_var] = ACTIONS(1545), + [anon_sym_return] = ACTIONS(1545), + [anon_sym_continue] = ACTIONS(1545), + [anon_sym_break] = ACTIONS(1545), + [anon_sym_defer] = ACTIONS(1545), + [anon_sym_assert] = ACTIONS(1545), + [anon_sym_nextcase] = ACTIONS(1545), + [anon_sym_switch] = ACTIONS(1545), + [anon_sym_AMP_AMP] = ACTIONS(1547), + [anon_sym_if] = ACTIONS(1545), + [anon_sym_for] = ACTIONS(1545), + [anon_sym_foreach] = ACTIONS(1545), + [anon_sym_foreach_r] = ACTIONS(1545), + [anon_sym_while] = ACTIONS(1545), + [anon_sym_do] = ACTIONS(1545), + [anon_sym_int] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_STAR] = ACTIONS(1547), + [anon_sym_asm] = ACTIONS(1545), + [anon_sym_DOLLARassert] = ACTIONS(1545), + [anon_sym_DOLLARerror] = ACTIONS(1545), + [anon_sym_DOLLARecho] = ACTIONS(1545), + [anon_sym_DOLLARif] = ACTIONS(1545), + [anon_sym_DOLLARswitch] = ACTIONS(1545), + [anon_sym_DOLLARfor] = ACTIONS(1545), + [anon_sym_DOLLARforeach] = ACTIONS(1545), + [anon_sym_DOLLARendforeach] = ACTIONS(1545), + [anon_sym_DOLLARalignof] = ACTIONS(1545), + [anon_sym_DOLLARextnameof] = ACTIONS(1545), + [anon_sym_DOLLARnameof] = ACTIONS(1545), + [anon_sym_DOLLARoffsetof] = ACTIONS(1545), + [anon_sym_DOLLARqnameof] = ACTIONS(1545), + [anon_sym_DOLLARvaconst] = ACTIONS(1545), + [anon_sym_DOLLARvaarg] = ACTIONS(1545), + [anon_sym_DOLLARvaref] = ACTIONS(1545), + [anon_sym_DOLLARvaexpr] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(1545), + [anon_sym_false] = ACTIONS(1545), + [anon_sym_null] = ACTIONS(1545), + [anon_sym_DOLLARvacount] = ACTIONS(1545), + [anon_sym_DOLLARappend] = ACTIONS(1545), + [anon_sym_DOLLARconcat] = ACTIONS(1545), + [anon_sym_DOLLAReval] = ACTIONS(1545), + [anon_sym_DOLLARis_const] = ACTIONS(1545), + [anon_sym_DOLLARsizeof] = ACTIONS(1545), + [anon_sym_DOLLARstringify] = ACTIONS(1545), + [anon_sym_DOLLARand] = ACTIONS(1545), + [anon_sym_DOLLARdefined] = ACTIONS(1545), + [anon_sym_DOLLARembed] = ACTIONS(1545), + [anon_sym_DOLLARor] = ACTIONS(1545), + [anon_sym_DOLLARfeature] = ACTIONS(1545), + [anon_sym_DOLLARassignable] = ACTIONS(1545), + [anon_sym_BANG] = ACTIONS(1547), + [anon_sym_TILDE] = ACTIONS(1547), + [anon_sym_PLUS_PLUS] = ACTIONS(1547), + [anon_sym_DASH_DASH] = ACTIONS(1547), + [anon_sym_typeid] = ACTIONS(1545), + [anon_sym_LBRACE_PIPE] = ACTIONS(1547), + [anon_sym_void] = ACTIONS(1545), + [anon_sym_bool] = ACTIONS(1545), + [anon_sym_char] = ACTIONS(1545), + [anon_sym_ichar] = ACTIONS(1545), + [anon_sym_short] = ACTIONS(1545), + [anon_sym_ushort] = ACTIONS(1545), + [anon_sym_uint] = ACTIONS(1545), + [anon_sym_long] = ACTIONS(1545), + [anon_sym_ulong] = ACTIONS(1545), + [anon_sym_int128] = ACTIONS(1545), + [anon_sym_uint128] = ACTIONS(1545), + [anon_sym_float] = ACTIONS(1545), + [anon_sym_double] = ACTIONS(1545), + [anon_sym_float16] = ACTIONS(1545), + [anon_sym_bfloat16] = ACTIONS(1545), + [anon_sym_float128] = ACTIONS(1545), + [anon_sym_iptr] = ACTIONS(1545), + [anon_sym_uptr] = ACTIONS(1545), + [anon_sym_isz] = ACTIONS(1545), + [anon_sym_usz] = ACTIONS(1545), + [anon_sym_anyfault] = ACTIONS(1545), + [anon_sym_any] = ACTIONS(1545), + [anon_sym_DOLLARtypeof] = ACTIONS(1545), + [anon_sym_DOLLARtypefrom] = ACTIONS(1545), + [anon_sym_DOLLARvatype] = ACTIONS(1545), + [anon_sym_DOLLARevaltype] = ACTIONS(1545), + [sym_real_literal] = ACTIONS(1547), }, [662] = { [sym_line_comment] = STATE(662), [sym_doc_comment] = STATE(662), [sym_block_comment] = STATE(662), - [sym_ident] = ACTIONS(1418), - [sym_integer_literal] = ACTIONS(1420), - [anon_sym_SQUOTE] = ACTIONS(1420), - [anon_sym_DQUOTE] = ACTIONS(1420), - [anon_sym_BQUOTE] = ACTIONS(1420), - [sym_bytes_literal] = ACTIONS(1420), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1418), - [sym_at_ident] = ACTIONS(1420), - [sym_hash_ident] = ACTIONS(1420), - [sym_type_ident] = ACTIONS(1420), - [sym_ct_type_ident] = ACTIONS(1420), - [sym_const_ident] = ACTIONS(1418), - [sym_builtin] = ACTIONS(1420), - [anon_sym_LPAREN] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_static] = ACTIONS(1418), - [anon_sym_tlocal] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym_fn] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_const] = ACTIONS(1418), - [anon_sym_var] = ACTIONS(1418), - [anon_sym_return] = ACTIONS(1418), - [anon_sym_continue] = ACTIONS(1418), - [anon_sym_break] = ACTIONS(1418), - [anon_sym_defer] = ACTIONS(1418), - [anon_sym_assert] = ACTIONS(1418), - [anon_sym_nextcase] = ACTIONS(1418), - [anon_sym_switch] = ACTIONS(1418), - [anon_sym_AMP_AMP] = ACTIONS(1420), - [anon_sym_if] = ACTIONS(1418), - [anon_sym_for] = ACTIONS(1418), - [anon_sym_foreach] = ACTIONS(1418), - [anon_sym_foreach_r] = ACTIONS(1418), - [anon_sym_while] = ACTIONS(1418), - [anon_sym_do] = ACTIONS(1418), - [anon_sym_int] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_asm] = ACTIONS(1418), - [anon_sym_DOLLARassert] = ACTIONS(1418), - [anon_sym_DOLLARerror] = ACTIONS(1418), - [anon_sym_DOLLARecho] = ACTIONS(1418), - [anon_sym_DOLLARif] = ACTIONS(1418), - [anon_sym_DOLLARswitch] = ACTIONS(1418), - [anon_sym_DOLLARfor] = ACTIONS(1418), - [anon_sym_DOLLARforeach] = ACTIONS(1418), - [anon_sym_DOLLARendforeach] = ACTIONS(1418), - [anon_sym_DOLLARalignof] = ACTIONS(1418), - [anon_sym_DOLLARextnameof] = ACTIONS(1418), - [anon_sym_DOLLARnameof] = ACTIONS(1418), - [anon_sym_DOLLARoffsetof] = ACTIONS(1418), - [anon_sym_DOLLARqnameof] = ACTIONS(1418), - [anon_sym_DOLLARvaconst] = ACTIONS(1418), - [anon_sym_DOLLARvaarg] = ACTIONS(1418), - [anon_sym_DOLLARvaref] = ACTIONS(1418), - [anon_sym_DOLLARvaexpr] = ACTIONS(1418), - [anon_sym_true] = ACTIONS(1418), - [anon_sym_false] = ACTIONS(1418), - [anon_sym_null] = ACTIONS(1418), - [anon_sym_DOLLARvacount] = ACTIONS(1418), - [anon_sym_DOLLARappend] = ACTIONS(1418), - [anon_sym_DOLLARconcat] = ACTIONS(1418), - [anon_sym_DOLLAReval] = ACTIONS(1418), - [anon_sym_DOLLARis_const] = ACTIONS(1418), - [anon_sym_DOLLARsizeof] = ACTIONS(1418), - [anon_sym_DOLLARstringify] = ACTIONS(1418), - [anon_sym_DOLLARand] = ACTIONS(1418), - [anon_sym_DOLLARdefined] = ACTIONS(1418), - [anon_sym_DOLLARembed] = ACTIONS(1418), - [anon_sym_DOLLARor] = ACTIONS(1418), - [anon_sym_DOLLARfeature] = ACTIONS(1418), - [anon_sym_DOLLARassignable] = ACTIONS(1418), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_TILDE] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_typeid] = ACTIONS(1418), - [anon_sym_LBRACE_PIPE] = ACTIONS(1420), - [anon_sym_void] = ACTIONS(1418), - [anon_sym_bool] = ACTIONS(1418), - [anon_sym_char] = ACTIONS(1418), - [anon_sym_ichar] = ACTIONS(1418), - [anon_sym_short] = ACTIONS(1418), - [anon_sym_ushort] = ACTIONS(1418), - [anon_sym_uint] = ACTIONS(1418), - [anon_sym_long] = ACTIONS(1418), - [anon_sym_ulong] = ACTIONS(1418), - [anon_sym_int128] = ACTIONS(1418), - [anon_sym_uint128] = ACTIONS(1418), - [anon_sym_float] = ACTIONS(1418), - [anon_sym_double] = ACTIONS(1418), - [anon_sym_float16] = ACTIONS(1418), - [anon_sym_bfloat16] = ACTIONS(1418), - [anon_sym_float128] = ACTIONS(1418), - [anon_sym_iptr] = ACTIONS(1418), - [anon_sym_uptr] = ACTIONS(1418), - [anon_sym_isz] = ACTIONS(1418), - [anon_sym_usz] = ACTIONS(1418), - [anon_sym_anyfault] = ACTIONS(1418), - [anon_sym_any] = ACTIONS(1418), - [anon_sym_DOLLARtypeof] = ACTIONS(1418), - [anon_sym_DOLLARtypefrom] = ACTIONS(1418), - [anon_sym_DOLLARvatype] = ACTIONS(1418), - [anon_sym_DOLLARevaltype] = ACTIONS(1418), - [sym_real_literal] = ACTIONS(1420), + [sym_ident] = ACTIONS(1621), + [sym_integer_literal] = ACTIONS(1623), + [anon_sym_SQUOTE] = ACTIONS(1623), + [anon_sym_DQUOTE] = ACTIONS(1623), + [anon_sym_BQUOTE] = ACTIONS(1623), + [sym_bytes_literal] = ACTIONS(1623), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1621), + [sym_at_ident] = ACTIONS(1623), + [sym_hash_ident] = ACTIONS(1623), + [sym_type_ident] = ACTIONS(1623), + [sym_ct_type_ident] = ACTIONS(1623), + [sym_const_ident] = ACTIONS(1621), + [sym_builtin] = ACTIONS(1623), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_AMP] = ACTIONS(1621), + [anon_sym_static] = ACTIONS(1621), + [anon_sym_tlocal] = ACTIONS(1621), + [anon_sym_SEMI] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_LBRACE] = ACTIONS(1621), + [anon_sym_const] = ACTIONS(1621), + [anon_sym_var] = ACTIONS(1621), + [anon_sym_return] = ACTIONS(1621), + [anon_sym_continue] = ACTIONS(1621), + [anon_sym_break] = ACTIONS(1621), + [anon_sym_defer] = ACTIONS(1621), + [anon_sym_assert] = ACTIONS(1621), + [anon_sym_nextcase] = ACTIONS(1621), + [anon_sym_switch] = ACTIONS(1621), + [anon_sym_AMP_AMP] = ACTIONS(1623), + [anon_sym_if] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1621), + [anon_sym_foreach] = ACTIONS(1621), + [anon_sym_foreach_r] = ACTIONS(1621), + [anon_sym_while] = ACTIONS(1621), + [anon_sym_do] = ACTIONS(1621), + [anon_sym_int] = ACTIONS(1621), + [anon_sym_PLUS] = ACTIONS(1621), + [anon_sym_DASH] = ACTIONS(1621), + [anon_sym_STAR] = ACTIONS(1623), + [anon_sym_asm] = ACTIONS(1621), + [anon_sym_DOLLARassert] = ACTIONS(1621), + [anon_sym_DOLLARerror] = ACTIONS(1621), + [anon_sym_DOLLARecho] = ACTIONS(1621), + [anon_sym_DOLLARif] = ACTIONS(1621), + [anon_sym_DOLLARswitch] = ACTIONS(1621), + [anon_sym_DOLLARfor] = ACTIONS(1621), + [anon_sym_DOLLARforeach] = ACTIONS(1621), + [anon_sym_DOLLARendforeach] = ACTIONS(1621), + [anon_sym_DOLLARalignof] = ACTIONS(1621), + [anon_sym_DOLLARextnameof] = ACTIONS(1621), + [anon_sym_DOLLARnameof] = ACTIONS(1621), + [anon_sym_DOLLARoffsetof] = ACTIONS(1621), + [anon_sym_DOLLARqnameof] = ACTIONS(1621), + [anon_sym_DOLLARvaconst] = ACTIONS(1621), + [anon_sym_DOLLARvaarg] = ACTIONS(1621), + [anon_sym_DOLLARvaref] = ACTIONS(1621), + [anon_sym_DOLLARvaexpr] = ACTIONS(1621), + [anon_sym_true] = ACTIONS(1621), + [anon_sym_false] = ACTIONS(1621), + [anon_sym_null] = ACTIONS(1621), + [anon_sym_DOLLARvacount] = ACTIONS(1621), + [anon_sym_DOLLARappend] = ACTIONS(1621), + [anon_sym_DOLLARconcat] = ACTIONS(1621), + [anon_sym_DOLLAReval] = ACTIONS(1621), + [anon_sym_DOLLARis_const] = ACTIONS(1621), + [anon_sym_DOLLARsizeof] = ACTIONS(1621), + [anon_sym_DOLLARstringify] = ACTIONS(1621), + [anon_sym_DOLLARand] = ACTIONS(1621), + [anon_sym_DOLLARdefined] = ACTIONS(1621), + [anon_sym_DOLLARembed] = ACTIONS(1621), + [anon_sym_DOLLARor] = ACTIONS(1621), + [anon_sym_DOLLARfeature] = ACTIONS(1621), + [anon_sym_DOLLARassignable] = ACTIONS(1621), + [anon_sym_BANG] = ACTIONS(1623), + [anon_sym_TILDE] = ACTIONS(1623), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_typeid] = ACTIONS(1621), + [anon_sym_LBRACE_PIPE] = ACTIONS(1623), + [anon_sym_void] = ACTIONS(1621), + [anon_sym_bool] = ACTIONS(1621), + [anon_sym_char] = ACTIONS(1621), + [anon_sym_ichar] = ACTIONS(1621), + [anon_sym_short] = ACTIONS(1621), + [anon_sym_ushort] = ACTIONS(1621), + [anon_sym_uint] = ACTIONS(1621), + [anon_sym_long] = ACTIONS(1621), + [anon_sym_ulong] = ACTIONS(1621), + [anon_sym_int128] = ACTIONS(1621), + [anon_sym_uint128] = ACTIONS(1621), + [anon_sym_float] = ACTIONS(1621), + [anon_sym_double] = ACTIONS(1621), + [anon_sym_float16] = ACTIONS(1621), + [anon_sym_bfloat16] = ACTIONS(1621), + [anon_sym_float128] = ACTIONS(1621), + [anon_sym_iptr] = ACTIONS(1621), + [anon_sym_uptr] = ACTIONS(1621), + [anon_sym_isz] = ACTIONS(1621), + [anon_sym_usz] = ACTIONS(1621), + [anon_sym_anyfault] = ACTIONS(1621), + [anon_sym_any] = ACTIONS(1621), + [anon_sym_DOLLARtypeof] = ACTIONS(1621), + [anon_sym_DOLLARtypefrom] = ACTIONS(1621), + [anon_sym_DOLLARvatype] = ACTIONS(1621), + [anon_sym_DOLLARevaltype] = ACTIONS(1621), + [sym_real_literal] = ACTIONS(1623), }, [663] = { [sym_line_comment] = STATE(663), [sym_doc_comment] = STATE(663), [sym_block_comment] = STATE(663), - [sym_ident] = ACTIONS(1414), - [sym_integer_literal] = ACTIONS(1416), - [anon_sym_SQUOTE] = ACTIONS(1416), - [anon_sym_DQUOTE] = ACTIONS(1416), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_bytes_literal] = ACTIONS(1416), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1414), - [sym_at_ident] = ACTIONS(1416), - [sym_hash_ident] = ACTIONS(1416), - [sym_type_ident] = ACTIONS(1416), - [sym_ct_type_ident] = ACTIONS(1416), - [sym_const_ident] = ACTIONS(1414), - [sym_builtin] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(1416), - [anon_sym_AMP] = ACTIONS(1414), - [anon_sym_static] = ACTIONS(1414), - [anon_sym_tlocal] = ACTIONS(1414), - [anon_sym_SEMI] = ACTIONS(1416), - [anon_sym_fn] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1414), - [anon_sym_const] = ACTIONS(1414), - [anon_sym_var] = ACTIONS(1414), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_continue] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1414), - [anon_sym_defer] = ACTIONS(1414), - [anon_sym_assert] = ACTIONS(1414), - [anon_sym_nextcase] = ACTIONS(1414), - [anon_sym_switch] = ACTIONS(1414), - [anon_sym_AMP_AMP] = ACTIONS(1416), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_for] = ACTIONS(1414), - [anon_sym_foreach] = ACTIONS(1414), - [anon_sym_foreach_r] = ACTIONS(1414), - [anon_sym_while] = ACTIONS(1414), - [anon_sym_do] = ACTIONS(1414), - [anon_sym_int] = ACTIONS(1414), - [anon_sym_PLUS] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_STAR] = ACTIONS(1416), - [anon_sym_asm] = ACTIONS(1414), - [anon_sym_DOLLARassert] = ACTIONS(1414), - [anon_sym_DOLLARerror] = ACTIONS(1414), - [anon_sym_DOLLARecho] = ACTIONS(1414), - [anon_sym_DOLLARif] = ACTIONS(1414), - [anon_sym_DOLLARswitch] = ACTIONS(1414), - [anon_sym_DOLLARfor] = ACTIONS(1414), - [anon_sym_DOLLARforeach] = ACTIONS(1414), - [anon_sym_DOLLARendforeach] = ACTIONS(1414), - [anon_sym_DOLLARalignof] = ACTIONS(1414), - [anon_sym_DOLLARextnameof] = ACTIONS(1414), - [anon_sym_DOLLARnameof] = ACTIONS(1414), - [anon_sym_DOLLARoffsetof] = ACTIONS(1414), - [anon_sym_DOLLARqnameof] = ACTIONS(1414), - [anon_sym_DOLLARvaconst] = ACTIONS(1414), - [anon_sym_DOLLARvaarg] = ACTIONS(1414), - [anon_sym_DOLLARvaref] = ACTIONS(1414), - [anon_sym_DOLLARvaexpr] = ACTIONS(1414), - [anon_sym_true] = ACTIONS(1414), - [anon_sym_false] = ACTIONS(1414), - [anon_sym_null] = ACTIONS(1414), - [anon_sym_DOLLARvacount] = ACTIONS(1414), - [anon_sym_DOLLARappend] = ACTIONS(1414), - [anon_sym_DOLLARconcat] = ACTIONS(1414), - [anon_sym_DOLLAReval] = ACTIONS(1414), - [anon_sym_DOLLARis_const] = ACTIONS(1414), - [anon_sym_DOLLARsizeof] = ACTIONS(1414), - [anon_sym_DOLLARstringify] = ACTIONS(1414), - [anon_sym_DOLLARand] = ACTIONS(1414), - [anon_sym_DOLLARdefined] = ACTIONS(1414), - [anon_sym_DOLLARembed] = ACTIONS(1414), - [anon_sym_DOLLARor] = ACTIONS(1414), - [anon_sym_DOLLARfeature] = ACTIONS(1414), - [anon_sym_DOLLARassignable] = ACTIONS(1414), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1416), - [anon_sym_DASH_DASH] = ACTIONS(1416), - [anon_sym_typeid] = ACTIONS(1414), - [anon_sym_LBRACE_PIPE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1414), - [anon_sym_bool] = ACTIONS(1414), - [anon_sym_char] = ACTIONS(1414), - [anon_sym_ichar] = ACTIONS(1414), - [anon_sym_short] = ACTIONS(1414), - [anon_sym_ushort] = ACTIONS(1414), - [anon_sym_uint] = ACTIONS(1414), - [anon_sym_long] = ACTIONS(1414), - [anon_sym_ulong] = ACTIONS(1414), - [anon_sym_int128] = ACTIONS(1414), - [anon_sym_uint128] = ACTIONS(1414), - [anon_sym_float] = ACTIONS(1414), - [anon_sym_double] = ACTIONS(1414), - [anon_sym_float16] = ACTIONS(1414), - [anon_sym_bfloat16] = ACTIONS(1414), - [anon_sym_float128] = ACTIONS(1414), - [anon_sym_iptr] = ACTIONS(1414), - [anon_sym_uptr] = ACTIONS(1414), - [anon_sym_isz] = ACTIONS(1414), - [anon_sym_usz] = ACTIONS(1414), - [anon_sym_anyfault] = ACTIONS(1414), - [anon_sym_any] = ACTIONS(1414), - [anon_sym_DOLLARtypeof] = ACTIONS(1414), - [anon_sym_DOLLARtypefrom] = ACTIONS(1414), - [anon_sym_DOLLARvatype] = ACTIONS(1414), - [anon_sym_DOLLARevaltype] = ACTIONS(1414), - [sym_real_literal] = ACTIONS(1416), + [sym_ident] = ACTIONS(1577), + [sym_integer_literal] = ACTIONS(1579), + [anon_sym_SQUOTE] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1579), + [sym_bytes_literal] = ACTIONS(1579), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1577), + [sym_at_ident] = ACTIONS(1579), + [sym_hash_ident] = ACTIONS(1579), + [sym_type_ident] = ACTIONS(1579), + [sym_ct_type_ident] = ACTIONS(1579), + [sym_const_ident] = ACTIONS(1577), + [sym_builtin] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_AMP] = ACTIONS(1577), + [anon_sym_static] = ACTIONS(1577), + [anon_sym_tlocal] = ACTIONS(1577), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_fn] = ACTIONS(1577), + [anon_sym_LBRACE] = ACTIONS(1577), + [anon_sym_const] = ACTIONS(1577), + [anon_sym_var] = ACTIONS(1577), + [anon_sym_return] = ACTIONS(1577), + [anon_sym_continue] = ACTIONS(1577), + [anon_sym_break] = ACTIONS(1577), + [anon_sym_defer] = ACTIONS(1577), + [anon_sym_assert] = ACTIONS(1577), + [anon_sym_nextcase] = ACTIONS(1577), + [anon_sym_switch] = ACTIONS(1577), + [anon_sym_AMP_AMP] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1577), + [anon_sym_for] = ACTIONS(1577), + [anon_sym_foreach] = ACTIONS(1577), + [anon_sym_foreach_r] = ACTIONS(1577), + [anon_sym_while] = ACTIONS(1577), + [anon_sym_do] = ACTIONS(1577), + [anon_sym_int] = ACTIONS(1577), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_asm] = ACTIONS(1577), + [anon_sym_DOLLARassert] = ACTIONS(1577), + [anon_sym_DOLLARerror] = ACTIONS(1577), + [anon_sym_DOLLARecho] = ACTIONS(1577), + [anon_sym_DOLLARif] = ACTIONS(1577), + [anon_sym_DOLLARswitch] = ACTIONS(1577), + [anon_sym_DOLLARfor] = ACTIONS(1577), + [anon_sym_DOLLARforeach] = ACTIONS(1577), + [anon_sym_DOLLARendforeach] = ACTIONS(1577), + [anon_sym_DOLLARalignof] = ACTIONS(1577), + [anon_sym_DOLLARextnameof] = ACTIONS(1577), + [anon_sym_DOLLARnameof] = ACTIONS(1577), + [anon_sym_DOLLARoffsetof] = ACTIONS(1577), + [anon_sym_DOLLARqnameof] = ACTIONS(1577), + [anon_sym_DOLLARvaconst] = ACTIONS(1577), + [anon_sym_DOLLARvaarg] = ACTIONS(1577), + [anon_sym_DOLLARvaref] = ACTIONS(1577), + [anon_sym_DOLLARvaexpr] = ACTIONS(1577), + [anon_sym_true] = ACTIONS(1577), + [anon_sym_false] = ACTIONS(1577), + [anon_sym_null] = ACTIONS(1577), + [anon_sym_DOLLARvacount] = ACTIONS(1577), + [anon_sym_DOLLARappend] = ACTIONS(1577), + [anon_sym_DOLLARconcat] = ACTIONS(1577), + [anon_sym_DOLLAReval] = ACTIONS(1577), + [anon_sym_DOLLARis_const] = ACTIONS(1577), + [anon_sym_DOLLARsizeof] = ACTIONS(1577), + [anon_sym_DOLLARstringify] = ACTIONS(1577), + [anon_sym_DOLLARand] = ACTIONS(1577), + [anon_sym_DOLLARdefined] = ACTIONS(1577), + [anon_sym_DOLLARembed] = ACTIONS(1577), + [anon_sym_DOLLARor] = ACTIONS(1577), + [anon_sym_DOLLARfeature] = ACTIONS(1577), + [anon_sym_DOLLARassignable] = ACTIONS(1577), + [anon_sym_BANG] = ACTIONS(1579), + [anon_sym_TILDE] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_DASH_DASH] = ACTIONS(1579), + [anon_sym_typeid] = ACTIONS(1577), + [anon_sym_LBRACE_PIPE] = ACTIONS(1579), + [anon_sym_void] = ACTIONS(1577), + [anon_sym_bool] = ACTIONS(1577), + [anon_sym_char] = ACTIONS(1577), + [anon_sym_ichar] = ACTIONS(1577), + [anon_sym_short] = ACTIONS(1577), + [anon_sym_ushort] = ACTIONS(1577), + [anon_sym_uint] = ACTIONS(1577), + [anon_sym_long] = ACTIONS(1577), + [anon_sym_ulong] = ACTIONS(1577), + [anon_sym_int128] = ACTIONS(1577), + [anon_sym_uint128] = ACTIONS(1577), + [anon_sym_float] = ACTIONS(1577), + [anon_sym_double] = ACTIONS(1577), + [anon_sym_float16] = ACTIONS(1577), + [anon_sym_bfloat16] = ACTIONS(1577), + [anon_sym_float128] = ACTIONS(1577), + [anon_sym_iptr] = ACTIONS(1577), + [anon_sym_uptr] = ACTIONS(1577), + [anon_sym_isz] = ACTIONS(1577), + [anon_sym_usz] = ACTIONS(1577), + [anon_sym_anyfault] = ACTIONS(1577), + [anon_sym_any] = ACTIONS(1577), + [anon_sym_DOLLARtypeof] = ACTIONS(1577), + [anon_sym_DOLLARtypefrom] = ACTIONS(1577), + [anon_sym_DOLLARvatype] = ACTIONS(1577), + [anon_sym_DOLLARevaltype] = ACTIONS(1577), + [sym_real_literal] = ACTIONS(1579), }, [664] = { [sym_line_comment] = STATE(664), [sym_doc_comment] = STATE(664), [sym_block_comment] = STATE(664), - [sym_ident] = ACTIONS(1452), - [sym_integer_literal] = ACTIONS(1454), - [anon_sym_SQUOTE] = ACTIONS(1454), - [anon_sym_DQUOTE] = ACTIONS(1454), - [anon_sym_BQUOTE] = ACTIONS(1454), - [sym_bytes_literal] = ACTIONS(1454), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1452), - [sym_at_ident] = ACTIONS(1454), - [sym_hash_ident] = ACTIONS(1454), - [sym_type_ident] = ACTIONS(1454), - [sym_ct_type_ident] = ACTIONS(1454), - [sym_const_ident] = ACTIONS(1452), - [sym_builtin] = ACTIONS(1454), - [anon_sym_LPAREN] = ACTIONS(1454), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_tlocal] = ACTIONS(1452), - [anon_sym_SEMI] = ACTIONS(1454), - [anon_sym_fn] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1452), - [anon_sym_const] = ACTIONS(1452), - [anon_sym_var] = ACTIONS(1452), - [anon_sym_return] = ACTIONS(1452), - [anon_sym_continue] = ACTIONS(1452), - [anon_sym_break] = ACTIONS(1452), - [anon_sym_defer] = ACTIONS(1452), - [anon_sym_assert] = ACTIONS(1452), - [anon_sym_nextcase] = ACTIONS(1452), - [anon_sym_switch] = ACTIONS(1452), - [anon_sym_AMP_AMP] = ACTIONS(1454), - [anon_sym_if] = ACTIONS(1452), - [anon_sym_for] = ACTIONS(1452), - [anon_sym_foreach] = ACTIONS(1452), - [anon_sym_foreach_r] = ACTIONS(1452), - [anon_sym_while] = ACTIONS(1452), - [anon_sym_do] = ACTIONS(1452), - [anon_sym_int] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1452), - [anon_sym_DASH] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1454), - [anon_sym_asm] = ACTIONS(1452), - [anon_sym_DOLLARassert] = ACTIONS(1452), - [anon_sym_DOLLARerror] = ACTIONS(1452), - [anon_sym_DOLLARecho] = ACTIONS(1452), - [anon_sym_DOLLARif] = ACTIONS(1452), - [anon_sym_DOLLARendif] = ACTIONS(1452), - [anon_sym_DOLLARswitch] = ACTIONS(1452), - [anon_sym_DOLLARfor] = ACTIONS(1452), - [anon_sym_DOLLARforeach] = ACTIONS(1452), - [anon_sym_DOLLARalignof] = ACTIONS(1452), - [anon_sym_DOLLARextnameof] = ACTIONS(1452), - [anon_sym_DOLLARnameof] = ACTIONS(1452), - [anon_sym_DOLLARoffsetof] = ACTIONS(1452), - [anon_sym_DOLLARqnameof] = ACTIONS(1452), - [anon_sym_DOLLARvaconst] = ACTIONS(1452), - [anon_sym_DOLLARvaarg] = ACTIONS(1452), - [anon_sym_DOLLARvaref] = ACTIONS(1452), - [anon_sym_DOLLARvaexpr] = ACTIONS(1452), - [anon_sym_true] = ACTIONS(1452), - [anon_sym_false] = ACTIONS(1452), - [anon_sym_null] = ACTIONS(1452), - [anon_sym_DOLLARvacount] = ACTIONS(1452), - [anon_sym_DOLLARappend] = ACTIONS(1452), - [anon_sym_DOLLARconcat] = ACTIONS(1452), - [anon_sym_DOLLAReval] = ACTIONS(1452), - [anon_sym_DOLLARis_const] = ACTIONS(1452), - [anon_sym_DOLLARsizeof] = ACTIONS(1452), - [anon_sym_DOLLARstringify] = ACTIONS(1452), - [anon_sym_DOLLARand] = ACTIONS(1452), - [anon_sym_DOLLARdefined] = ACTIONS(1452), - [anon_sym_DOLLARembed] = ACTIONS(1452), - [anon_sym_DOLLARor] = ACTIONS(1452), - [anon_sym_DOLLARfeature] = ACTIONS(1452), - [anon_sym_DOLLARassignable] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1454), - [anon_sym_PLUS_PLUS] = ACTIONS(1454), - [anon_sym_DASH_DASH] = ACTIONS(1454), - [anon_sym_typeid] = ACTIONS(1452), - [anon_sym_LBRACE_PIPE] = ACTIONS(1454), - [anon_sym_void] = ACTIONS(1452), - [anon_sym_bool] = ACTIONS(1452), - [anon_sym_char] = ACTIONS(1452), - [anon_sym_ichar] = ACTIONS(1452), - [anon_sym_short] = ACTIONS(1452), - [anon_sym_ushort] = ACTIONS(1452), - [anon_sym_uint] = ACTIONS(1452), - [anon_sym_long] = ACTIONS(1452), - [anon_sym_ulong] = ACTIONS(1452), - [anon_sym_int128] = ACTIONS(1452), - [anon_sym_uint128] = ACTIONS(1452), - [anon_sym_float] = ACTIONS(1452), - [anon_sym_double] = ACTIONS(1452), - [anon_sym_float16] = ACTIONS(1452), - [anon_sym_bfloat16] = ACTIONS(1452), - [anon_sym_float128] = ACTIONS(1452), - [anon_sym_iptr] = ACTIONS(1452), - [anon_sym_uptr] = ACTIONS(1452), - [anon_sym_isz] = ACTIONS(1452), - [anon_sym_usz] = ACTIONS(1452), - [anon_sym_anyfault] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_DOLLARtypeof] = ACTIONS(1452), - [anon_sym_DOLLARtypefrom] = ACTIONS(1452), - [anon_sym_DOLLARvatype] = ACTIONS(1452), - [anon_sym_DOLLARevaltype] = ACTIONS(1452), - [sym_real_literal] = ACTIONS(1454), + [sym_ident] = ACTIONS(1363), + [sym_integer_literal] = ACTIONS(1365), + [anon_sym_SQUOTE] = ACTIONS(1365), + [anon_sym_DQUOTE] = ACTIONS(1365), + [anon_sym_BQUOTE] = ACTIONS(1365), + [sym_bytes_literal] = ACTIONS(1365), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1363), + [sym_at_ident] = ACTIONS(1365), + [sym_hash_ident] = ACTIONS(1365), + [sym_type_ident] = ACTIONS(1365), + [sym_ct_type_ident] = ACTIONS(1365), + [sym_const_ident] = ACTIONS(1363), + [sym_builtin] = ACTIONS(1365), + [anon_sym_LPAREN] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1363), + [anon_sym_static] = ACTIONS(1363), + [anon_sym_tlocal] = ACTIONS(1363), + [anon_sym_SEMI] = ACTIONS(1365), + [anon_sym_fn] = ACTIONS(1363), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_const] = ACTIONS(1363), + [anon_sym_var] = ACTIONS(1363), + [anon_sym_return] = ACTIONS(1363), + [anon_sym_continue] = ACTIONS(1363), + [anon_sym_break] = ACTIONS(1363), + [anon_sym_defer] = ACTIONS(1363), + [anon_sym_assert] = ACTIONS(1363), + [anon_sym_nextcase] = ACTIONS(1363), + [anon_sym_switch] = ACTIONS(1363), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_if] = ACTIONS(1363), + [anon_sym_for] = ACTIONS(1363), + [anon_sym_foreach] = ACTIONS(1363), + [anon_sym_foreach_r] = ACTIONS(1363), + [anon_sym_while] = ACTIONS(1363), + [anon_sym_do] = ACTIONS(1363), + [anon_sym_int] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_asm] = ACTIONS(1363), + [anon_sym_DOLLARassert] = ACTIONS(1363), + [anon_sym_DOLLARerror] = ACTIONS(1363), + [anon_sym_DOLLARecho] = ACTIONS(1363), + [anon_sym_DOLLARif] = ACTIONS(1363), + [anon_sym_DOLLARswitch] = ACTIONS(1363), + [anon_sym_DOLLARfor] = ACTIONS(1363), + [anon_sym_DOLLARforeach] = ACTIONS(1363), + [anon_sym_DOLLARendforeach] = ACTIONS(1363), + [anon_sym_DOLLARalignof] = ACTIONS(1363), + [anon_sym_DOLLARextnameof] = ACTIONS(1363), + [anon_sym_DOLLARnameof] = ACTIONS(1363), + [anon_sym_DOLLARoffsetof] = ACTIONS(1363), + [anon_sym_DOLLARqnameof] = ACTIONS(1363), + [anon_sym_DOLLARvaconst] = ACTIONS(1363), + [anon_sym_DOLLARvaarg] = ACTIONS(1363), + [anon_sym_DOLLARvaref] = ACTIONS(1363), + [anon_sym_DOLLARvaexpr] = ACTIONS(1363), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_null] = ACTIONS(1363), + [anon_sym_DOLLARvacount] = ACTIONS(1363), + [anon_sym_DOLLARappend] = ACTIONS(1363), + [anon_sym_DOLLARconcat] = ACTIONS(1363), + [anon_sym_DOLLAReval] = ACTIONS(1363), + [anon_sym_DOLLARis_const] = ACTIONS(1363), + [anon_sym_DOLLARsizeof] = ACTIONS(1363), + [anon_sym_DOLLARstringify] = ACTIONS(1363), + [anon_sym_DOLLARand] = ACTIONS(1363), + [anon_sym_DOLLARdefined] = ACTIONS(1363), + [anon_sym_DOLLARembed] = ACTIONS(1363), + [anon_sym_DOLLARor] = ACTIONS(1363), + [anon_sym_DOLLARfeature] = ACTIONS(1363), + [anon_sym_DOLLARassignable] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1365), + [anon_sym_TILDE] = ACTIONS(1365), + [anon_sym_PLUS_PLUS] = ACTIONS(1365), + [anon_sym_DASH_DASH] = ACTIONS(1365), + [anon_sym_typeid] = ACTIONS(1363), + [anon_sym_LBRACE_PIPE] = ACTIONS(1365), + [anon_sym_void] = ACTIONS(1363), + [anon_sym_bool] = ACTIONS(1363), + [anon_sym_char] = ACTIONS(1363), + [anon_sym_ichar] = ACTIONS(1363), + [anon_sym_short] = ACTIONS(1363), + [anon_sym_ushort] = ACTIONS(1363), + [anon_sym_uint] = ACTIONS(1363), + [anon_sym_long] = ACTIONS(1363), + [anon_sym_ulong] = ACTIONS(1363), + [anon_sym_int128] = ACTIONS(1363), + [anon_sym_uint128] = ACTIONS(1363), + [anon_sym_float] = ACTIONS(1363), + [anon_sym_double] = ACTIONS(1363), + [anon_sym_float16] = ACTIONS(1363), + [anon_sym_bfloat16] = ACTIONS(1363), + [anon_sym_float128] = ACTIONS(1363), + [anon_sym_iptr] = ACTIONS(1363), + [anon_sym_uptr] = ACTIONS(1363), + [anon_sym_isz] = ACTIONS(1363), + [anon_sym_usz] = ACTIONS(1363), + [anon_sym_anyfault] = ACTIONS(1363), + [anon_sym_any] = ACTIONS(1363), + [anon_sym_DOLLARtypeof] = ACTIONS(1363), + [anon_sym_DOLLARtypefrom] = ACTIONS(1363), + [anon_sym_DOLLARvatype] = ACTIONS(1363), + [anon_sym_DOLLARevaltype] = ACTIONS(1363), + [sym_real_literal] = ACTIONS(1365), }, [665] = { [sym_line_comment] = STATE(665), [sym_doc_comment] = STATE(665), [sym_block_comment] = STATE(665), - [sym_ident] = ACTIONS(1402), - [sym_integer_literal] = ACTIONS(1404), - [anon_sym_SQUOTE] = ACTIONS(1404), - [anon_sym_DQUOTE] = ACTIONS(1404), - [anon_sym_BQUOTE] = ACTIONS(1404), - [sym_bytes_literal] = ACTIONS(1404), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1402), - [sym_at_ident] = ACTIONS(1404), - [sym_hash_ident] = ACTIONS(1404), - [sym_type_ident] = ACTIONS(1404), - [sym_ct_type_ident] = ACTIONS(1404), - [sym_const_ident] = ACTIONS(1402), - [sym_builtin] = ACTIONS(1404), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_AMP] = ACTIONS(1402), - [anon_sym_static] = ACTIONS(1402), - [anon_sym_tlocal] = ACTIONS(1402), - [anon_sym_SEMI] = ACTIONS(1404), - [anon_sym_fn] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1402), - [anon_sym_const] = ACTIONS(1402), - [anon_sym_var] = ACTIONS(1402), - [anon_sym_return] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [anon_sym_break] = ACTIONS(1402), - [anon_sym_defer] = ACTIONS(1402), - [anon_sym_assert] = ACTIONS(1402), - [anon_sym_nextcase] = ACTIONS(1402), - [anon_sym_switch] = ACTIONS(1402), - [anon_sym_AMP_AMP] = ACTIONS(1404), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_for] = ACTIONS(1402), - [anon_sym_foreach] = ACTIONS(1402), - [anon_sym_foreach_r] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1402), - [anon_sym_do] = ACTIONS(1402), - [anon_sym_int] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1402), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_STAR] = ACTIONS(1404), - [anon_sym_asm] = ACTIONS(1402), - [anon_sym_DOLLARassert] = ACTIONS(1402), - [anon_sym_DOLLARerror] = ACTIONS(1402), - [anon_sym_DOLLARecho] = ACTIONS(1402), - [anon_sym_DOLLARif] = ACTIONS(1402), - [anon_sym_DOLLARswitch] = ACTIONS(1402), - [anon_sym_DOLLARfor] = ACTIONS(1402), - [anon_sym_DOLLARforeach] = ACTIONS(1402), - [anon_sym_DOLLARendforeach] = ACTIONS(1402), - [anon_sym_DOLLARalignof] = ACTIONS(1402), - [anon_sym_DOLLARextnameof] = ACTIONS(1402), - [anon_sym_DOLLARnameof] = ACTIONS(1402), - [anon_sym_DOLLARoffsetof] = ACTIONS(1402), - [anon_sym_DOLLARqnameof] = ACTIONS(1402), - [anon_sym_DOLLARvaconst] = ACTIONS(1402), - [anon_sym_DOLLARvaarg] = ACTIONS(1402), - [anon_sym_DOLLARvaref] = ACTIONS(1402), - [anon_sym_DOLLARvaexpr] = ACTIONS(1402), - [anon_sym_true] = ACTIONS(1402), - [anon_sym_false] = ACTIONS(1402), - [anon_sym_null] = ACTIONS(1402), - [anon_sym_DOLLARvacount] = ACTIONS(1402), - [anon_sym_DOLLARappend] = ACTIONS(1402), - [anon_sym_DOLLARconcat] = ACTIONS(1402), - [anon_sym_DOLLAReval] = ACTIONS(1402), - [anon_sym_DOLLARis_const] = ACTIONS(1402), - [anon_sym_DOLLARsizeof] = ACTIONS(1402), - [anon_sym_DOLLARstringify] = ACTIONS(1402), - [anon_sym_DOLLARand] = ACTIONS(1402), - [anon_sym_DOLLARdefined] = ACTIONS(1402), - [anon_sym_DOLLARembed] = ACTIONS(1402), - [anon_sym_DOLLARor] = ACTIONS(1402), - [anon_sym_DOLLARfeature] = ACTIONS(1402), - [anon_sym_DOLLARassignable] = ACTIONS(1402), - [anon_sym_BANG] = ACTIONS(1404), - [anon_sym_TILDE] = ACTIONS(1404), - [anon_sym_PLUS_PLUS] = ACTIONS(1404), - [anon_sym_DASH_DASH] = ACTIONS(1404), - [anon_sym_typeid] = ACTIONS(1402), - [anon_sym_LBRACE_PIPE] = ACTIONS(1404), - [anon_sym_void] = ACTIONS(1402), - [anon_sym_bool] = ACTIONS(1402), - [anon_sym_char] = ACTIONS(1402), - [anon_sym_ichar] = ACTIONS(1402), - [anon_sym_short] = ACTIONS(1402), - [anon_sym_ushort] = ACTIONS(1402), - [anon_sym_uint] = ACTIONS(1402), - [anon_sym_long] = ACTIONS(1402), - [anon_sym_ulong] = ACTIONS(1402), - [anon_sym_int128] = ACTIONS(1402), - [anon_sym_uint128] = ACTIONS(1402), - [anon_sym_float] = ACTIONS(1402), - [anon_sym_double] = ACTIONS(1402), - [anon_sym_float16] = ACTIONS(1402), - [anon_sym_bfloat16] = ACTIONS(1402), - [anon_sym_float128] = ACTIONS(1402), - [anon_sym_iptr] = ACTIONS(1402), - [anon_sym_uptr] = ACTIONS(1402), - [anon_sym_isz] = ACTIONS(1402), - [anon_sym_usz] = ACTIONS(1402), - [anon_sym_anyfault] = ACTIONS(1402), - [anon_sym_any] = ACTIONS(1402), - [anon_sym_DOLLARtypeof] = ACTIONS(1402), - [anon_sym_DOLLARtypefrom] = ACTIONS(1402), - [anon_sym_DOLLARvatype] = ACTIONS(1402), - [anon_sym_DOLLARevaltype] = ACTIONS(1402), - [sym_real_literal] = ACTIONS(1404), + [sym_ident] = ACTIONS(1625), + [sym_integer_literal] = ACTIONS(1627), + [anon_sym_SQUOTE] = ACTIONS(1627), + [anon_sym_DQUOTE] = ACTIONS(1627), + [anon_sym_BQUOTE] = ACTIONS(1627), + [sym_bytes_literal] = ACTIONS(1627), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1625), + [sym_at_ident] = ACTIONS(1627), + [sym_hash_ident] = ACTIONS(1627), + [sym_type_ident] = ACTIONS(1627), + [sym_ct_type_ident] = ACTIONS(1627), + [sym_const_ident] = ACTIONS(1625), + [sym_builtin] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1627), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_static] = ACTIONS(1625), + [anon_sym_tlocal] = ACTIONS(1625), + [anon_sym_SEMI] = ACTIONS(1627), + [anon_sym_fn] = ACTIONS(1625), + [anon_sym_LBRACE] = ACTIONS(1625), + [anon_sym_const] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1625), + [anon_sym_return] = ACTIONS(1625), + [anon_sym_continue] = ACTIONS(1625), + [anon_sym_break] = ACTIONS(1625), + [anon_sym_defer] = ACTIONS(1625), + [anon_sym_assert] = ACTIONS(1625), + [anon_sym_nextcase] = ACTIONS(1625), + [anon_sym_switch] = ACTIONS(1625), + [anon_sym_AMP_AMP] = ACTIONS(1627), + [anon_sym_if] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1625), + [anon_sym_foreach] = ACTIONS(1625), + [anon_sym_foreach_r] = ACTIONS(1625), + [anon_sym_while] = ACTIONS(1625), + [anon_sym_do] = ACTIONS(1625), + [anon_sym_int] = ACTIONS(1625), + [anon_sym_PLUS] = ACTIONS(1625), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(1627), + [anon_sym_asm] = ACTIONS(1625), + [anon_sym_DOLLARassert] = ACTIONS(1625), + [anon_sym_DOLLARerror] = ACTIONS(1625), + [anon_sym_DOLLARecho] = ACTIONS(1625), + [anon_sym_DOLLARif] = ACTIONS(1625), + [anon_sym_DOLLARswitch] = ACTIONS(1625), + [anon_sym_DOLLARfor] = ACTIONS(1625), + [anon_sym_DOLLARforeach] = ACTIONS(1625), + [anon_sym_DOLLARendforeach] = ACTIONS(1625), + [anon_sym_DOLLARalignof] = ACTIONS(1625), + [anon_sym_DOLLARextnameof] = ACTIONS(1625), + [anon_sym_DOLLARnameof] = ACTIONS(1625), + [anon_sym_DOLLARoffsetof] = ACTIONS(1625), + [anon_sym_DOLLARqnameof] = ACTIONS(1625), + [anon_sym_DOLLARvaconst] = ACTIONS(1625), + [anon_sym_DOLLARvaarg] = ACTIONS(1625), + [anon_sym_DOLLARvaref] = ACTIONS(1625), + [anon_sym_DOLLARvaexpr] = ACTIONS(1625), + [anon_sym_true] = ACTIONS(1625), + [anon_sym_false] = ACTIONS(1625), + [anon_sym_null] = ACTIONS(1625), + [anon_sym_DOLLARvacount] = ACTIONS(1625), + [anon_sym_DOLLARappend] = ACTIONS(1625), + [anon_sym_DOLLARconcat] = ACTIONS(1625), + [anon_sym_DOLLAReval] = ACTIONS(1625), + [anon_sym_DOLLARis_const] = ACTIONS(1625), + [anon_sym_DOLLARsizeof] = ACTIONS(1625), + [anon_sym_DOLLARstringify] = ACTIONS(1625), + [anon_sym_DOLLARand] = ACTIONS(1625), + [anon_sym_DOLLARdefined] = ACTIONS(1625), + [anon_sym_DOLLARembed] = ACTIONS(1625), + [anon_sym_DOLLARor] = ACTIONS(1625), + [anon_sym_DOLLARfeature] = ACTIONS(1625), + [anon_sym_DOLLARassignable] = ACTIONS(1625), + [anon_sym_BANG] = ACTIONS(1627), + [anon_sym_TILDE] = ACTIONS(1627), + [anon_sym_PLUS_PLUS] = ACTIONS(1627), + [anon_sym_DASH_DASH] = ACTIONS(1627), + [anon_sym_typeid] = ACTIONS(1625), + [anon_sym_LBRACE_PIPE] = ACTIONS(1627), + [anon_sym_void] = ACTIONS(1625), + [anon_sym_bool] = ACTIONS(1625), + [anon_sym_char] = ACTIONS(1625), + [anon_sym_ichar] = ACTIONS(1625), + [anon_sym_short] = ACTIONS(1625), + [anon_sym_ushort] = ACTIONS(1625), + [anon_sym_uint] = ACTIONS(1625), + [anon_sym_long] = ACTIONS(1625), + [anon_sym_ulong] = ACTIONS(1625), + [anon_sym_int128] = ACTIONS(1625), + [anon_sym_uint128] = ACTIONS(1625), + [anon_sym_float] = ACTIONS(1625), + [anon_sym_double] = ACTIONS(1625), + [anon_sym_float16] = ACTIONS(1625), + [anon_sym_bfloat16] = ACTIONS(1625), + [anon_sym_float128] = ACTIONS(1625), + [anon_sym_iptr] = ACTIONS(1625), + [anon_sym_uptr] = ACTIONS(1625), + [anon_sym_isz] = ACTIONS(1625), + [anon_sym_usz] = ACTIONS(1625), + [anon_sym_anyfault] = ACTIONS(1625), + [anon_sym_any] = ACTIONS(1625), + [anon_sym_DOLLARtypeof] = ACTIONS(1625), + [anon_sym_DOLLARtypefrom] = ACTIONS(1625), + [anon_sym_DOLLARvatype] = ACTIONS(1625), + [anon_sym_DOLLARevaltype] = ACTIONS(1625), + [sym_real_literal] = ACTIONS(1627), }, [666] = { [sym_line_comment] = STATE(666), [sym_doc_comment] = STATE(666), [sym_block_comment] = STATE(666), - [sym_ident] = ACTIONS(1186), - [sym_integer_literal] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym_DQUOTE] = ACTIONS(1188), - [anon_sym_BQUOTE] = ACTIONS(1188), - [sym_bytes_literal] = ACTIONS(1188), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1186), - [sym_at_ident] = ACTIONS(1188), - [sym_hash_ident] = ACTIONS(1188), - [sym_type_ident] = ACTIONS(1188), - [sym_ct_type_ident] = ACTIONS(1188), - [sym_const_ident] = ACTIONS(1186), - [sym_builtin] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(1188), - [anon_sym_AMP] = ACTIONS(1186), - [anon_sym_static] = ACTIONS(1186), - [anon_sym_tlocal] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1188), - [anon_sym_fn] = ACTIONS(1186), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_const] = ACTIONS(1186), - [anon_sym_var] = ACTIONS(1186), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1186), - [anon_sym_defer] = ACTIONS(1186), - [anon_sym_assert] = ACTIONS(1186), - [anon_sym_nextcase] = ACTIONS(1186), - [anon_sym_switch] = ACTIONS(1186), - [anon_sym_AMP_AMP] = ACTIONS(1188), - [anon_sym_if] = ACTIONS(1186), - [anon_sym_for] = ACTIONS(1186), - [anon_sym_foreach] = ACTIONS(1186), - [anon_sym_foreach_r] = ACTIONS(1186), - [anon_sym_while] = ACTIONS(1186), - [anon_sym_do] = ACTIONS(1186), - [anon_sym_int] = ACTIONS(1186), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1188), - [anon_sym_asm] = ACTIONS(1186), - [anon_sym_DOLLARassert] = ACTIONS(1186), - [anon_sym_DOLLARerror] = ACTIONS(1186), - [anon_sym_DOLLARecho] = ACTIONS(1186), - [anon_sym_DOLLARif] = ACTIONS(1186), - [anon_sym_DOLLARswitch] = ACTIONS(1186), - [anon_sym_DOLLARfor] = ACTIONS(1186), - [anon_sym_DOLLARforeach] = ACTIONS(1186), - [anon_sym_DOLLARendforeach] = ACTIONS(1186), - [anon_sym_DOLLARalignof] = ACTIONS(1186), - [anon_sym_DOLLARextnameof] = ACTIONS(1186), - [anon_sym_DOLLARnameof] = ACTIONS(1186), - [anon_sym_DOLLARoffsetof] = ACTIONS(1186), - [anon_sym_DOLLARqnameof] = ACTIONS(1186), - [anon_sym_DOLLARvaconst] = ACTIONS(1186), - [anon_sym_DOLLARvaarg] = ACTIONS(1186), - [anon_sym_DOLLARvaref] = ACTIONS(1186), - [anon_sym_DOLLARvaexpr] = ACTIONS(1186), - [anon_sym_true] = ACTIONS(1186), - [anon_sym_false] = ACTIONS(1186), - [anon_sym_null] = ACTIONS(1186), - [anon_sym_DOLLARvacount] = ACTIONS(1186), - [anon_sym_DOLLARappend] = ACTIONS(1186), - [anon_sym_DOLLARconcat] = ACTIONS(1186), - [anon_sym_DOLLAReval] = ACTIONS(1186), - [anon_sym_DOLLARis_const] = ACTIONS(1186), - [anon_sym_DOLLARsizeof] = ACTIONS(1186), - [anon_sym_DOLLARstringify] = ACTIONS(1186), - [anon_sym_DOLLARand] = ACTIONS(1186), - [anon_sym_DOLLARdefined] = ACTIONS(1186), - [anon_sym_DOLLARembed] = ACTIONS(1186), - [anon_sym_DOLLARor] = ACTIONS(1186), - [anon_sym_DOLLARfeature] = ACTIONS(1186), - [anon_sym_DOLLARassignable] = ACTIONS(1186), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_PLUS_PLUS] = ACTIONS(1188), - [anon_sym_DASH_DASH] = ACTIONS(1188), - [anon_sym_typeid] = ACTIONS(1186), - [anon_sym_LBRACE_PIPE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1186), - [anon_sym_bool] = ACTIONS(1186), - [anon_sym_char] = ACTIONS(1186), - [anon_sym_ichar] = ACTIONS(1186), - [anon_sym_short] = ACTIONS(1186), - [anon_sym_ushort] = ACTIONS(1186), - [anon_sym_uint] = ACTIONS(1186), - [anon_sym_long] = ACTIONS(1186), - [anon_sym_ulong] = ACTIONS(1186), - [anon_sym_int128] = ACTIONS(1186), - [anon_sym_uint128] = ACTIONS(1186), - [anon_sym_float] = ACTIONS(1186), - [anon_sym_double] = ACTIONS(1186), - [anon_sym_float16] = ACTIONS(1186), - [anon_sym_bfloat16] = ACTIONS(1186), - [anon_sym_float128] = ACTIONS(1186), - [anon_sym_iptr] = ACTIONS(1186), - [anon_sym_uptr] = ACTIONS(1186), - [anon_sym_isz] = ACTIONS(1186), - [anon_sym_usz] = ACTIONS(1186), - [anon_sym_anyfault] = ACTIONS(1186), - [anon_sym_any] = ACTIONS(1186), - [anon_sym_DOLLARtypeof] = ACTIONS(1186), - [anon_sym_DOLLARtypefrom] = ACTIONS(1186), - [anon_sym_DOLLARvatype] = ACTIONS(1186), - [anon_sym_DOLLARevaltype] = ACTIONS(1186), - [sym_real_literal] = ACTIONS(1188), + [sym_ident] = ACTIONS(1359), + [sym_integer_literal] = ACTIONS(1361), + [anon_sym_SQUOTE] = ACTIONS(1361), + [anon_sym_DQUOTE] = ACTIONS(1361), + [anon_sym_BQUOTE] = ACTIONS(1361), + [sym_bytes_literal] = ACTIONS(1361), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1359), + [sym_at_ident] = ACTIONS(1361), + [sym_hash_ident] = ACTIONS(1361), + [sym_type_ident] = ACTIONS(1361), + [sym_ct_type_ident] = ACTIONS(1361), + [sym_const_ident] = ACTIONS(1359), + [sym_builtin] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(1361), + [anon_sym_AMP] = ACTIONS(1359), + [anon_sym_static] = ACTIONS(1359), + [anon_sym_tlocal] = ACTIONS(1359), + [anon_sym_SEMI] = ACTIONS(1361), + [anon_sym_fn] = ACTIONS(1359), + [anon_sym_LBRACE] = ACTIONS(1359), + [anon_sym_const] = ACTIONS(1359), + [anon_sym_var] = ACTIONS(1359), + [anon_sym_return] = ACTIONS(1359), + [anon_sym_continue] = ACTIONS(1359), + [anon_sym_break] = ACTIONS(1359), + [anon_sym_defer] = ACTIONS(1359), + [anon_sym_assert] = ACTIONS(1359), + [anon_sym_nextcase] = ACTIONS(1359), + [anon_sym_switch] = ACTIONS(1359), + [anon_sym_AMP_AMP] = ACTIONS(1361), + [anon_sym_if] = ACTIONS(1359), + [anon_sym_for] = ACTIONS(1359), + [anon_sym_foreach] = ACTIONS(1359), + [anon_sym_foreach_r] = ACTIONS(1359), + [anon_sym_while] = ACTIONS(1359), + [anon_sym_do] = ACTIONS(1359), + [anon_sym_int] = ACTIONS(1359), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_asm] = ACTIONS(1359), + [anon_sym_DOLLARassert] = ACTIONS(1359), + [anon_sym_DOLLARerror] = ACTIONS(1359), + [anon_sym_DOLLARecho] = ACTIONS(1359), + [anon_sym_DOLLARif] = ACTIONS(1359), + [anon_sym_DOLLARswitch] = ACTIONS(1359), + [anon_sym_DOLLARfor] = ACTIONS(1359), + [anon_sym_DOLLARforeach] = ACTIONS(1359), + [anon_sym_DOLLARendforeach] = ACTIONS(1359), + [anon_sym_DOLLARalignof] = ACTIONS(1359), + [anon_sym_DOLLARextnameof] = ACTIONS(1359), + [anon_sym_DOLLARnameof] = ACTIONS(1359), + [anon_sym_DOLLARoffsetof] = ACTIONS(1359), + [anon_sym_DOLLARqnameof] = ACTIONS(1359), + [anon_sym_DOLLARvaconst] = ACTIONS(1359), + [anon_sym_DOLLARvaarg] = ACTIONS(1359), + [anon_sym_DOLLARvaref] = ACTIONS(1359), + [anon_sym_DOLLARvaexpr] = ACTIONS(1359), + [anon_sym_true] = ACTIONS(1359), + [anon_sym_false] = ACTIONS(1359), + [anon_sym_null] = ACTIONS(1359), + [anon_sym_DOLLARvacount] = ACTIONS(1359), + [anon_sym_DOLLARappend] = ACTIONS(1359), + [anon_sym_DOLLARconcat] = ACTIONS(1359), + [anon_sym_DOLLAReval] = ACTIONS(1359), + [anon_sym_DOLLARis_const] = ACTIONS(1359), + [anon_sym_DOLLARsizeof] = ACTIONS(1359), + [anon_sym_DOLLARstringify] = ACTIONS(1359), + [anon_sym_DOLLARand] = ACTIONS(1359), + [anon_sym_DOLLARdefined] = ACTIONS(1359), + [anon_sym_DOLLARembed] = ACTIONS(1359), + [anon_sym_DOLLARor] = ACTIONS(1359), + [anon_sym_DOLLARfeature] = ACTIONS(1359), + [anon_sym_DOLLARassignable] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1361), + [anon_sym_TILDE] = ACTIONS(1361), + [anon_sym_PLUS_PLUS] = ACTIONS(1361), + [anon_sym_DASH_DASH] = ACTIONS(1361), + [anon_sym_typeid] = ACTIONS(1359), + [anon_sym_LBRACE_PIPE] = ACTIONS(1361), + [anon_sym_void] = ACTIONS(1359), + [anon_sym_bool] = ACTIONS(1359), + [anon_sym_char] = ACTIONS(1359), + [anon_sym_ichar] = ACTIONS(1359), + [anon_sym_short] = ACTIONS(1359), + [anon_sym_ushort] = ACTIONS(1359), + [anon_sym_uint] = ACTIONS(1359), + [anon_sym_long] = ACTIONS(1359), + [anon_sym_ulong] = ACTIONS(1359), + [anon_sym_int128] = ACTIONS(1359), + [anon_sym_uint128] = ACTIONS(1359), + [anon_sym_float] = ACTIONS(1359), + [anon_sym_double] = ACTIONS(1359), + [anon_sym_float16] = ACTIONS(1359), + [anon_sym_bfloat16] = ACTIONS(1359), + [anon_sym_float128] = ACTIONS(1359), + [anon_sym_iptr] = ACTIONS(1359), + [anon_sym_uptr] = ACTIONS(1359), + [anon_sym_isz] = ACTIONS(1359), + [anon_sym_usz] = ACTIONS(1359), + [anon_sym_anyfault] = ACTIONS(1359), + [anon_sym_any] = ACTIONS(1359), + [anon_sym_DOLLARtypeof] = ACTIONS(1359), + [anon_sym_DOLLARtypefrom] = ACTIONS(1359), + [anon_sym_DOLLARvatype] = ACTIONS(1359), + [anon_sym_DOLLARevaltype] = ACTIONS(1359), + [sym_real_literal] = ACTIONS(1361), }, [667] = { [sym_line_comment] = STATE(667), [sym_doc_comment] = STATE(667), [sym_block_comment] = STATE(667), - [sym_ident] = ACTIONS(1370), - [sym_integer_literal] = ACTIONS(1372), - [anon_sym_SQUOTE] = ACTIONS(1372), - [anon_sym_DQUOTE] = ACTIONS(1372), - [anon_sym_BQUOTE] = ACTIONS(1372), - [sym_bytes_literal] = ACTIONS(1372), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1370), - [sym_at_ident] = ACTIONS(1372), - [sym_hash_ident] = ACTIONS(1372), - [sym_type_ident] = ACTIONS(1372), - [sym_ct_type_ident] = ACTIONS(1372), - [sym_const_ident] = ACTIONS(1370), - [sym_builtin] = ACTIONS(1372), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_AMP] = ACTIONS(1370), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_tlocal] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_const] = ACTIONS(1370), - [anon_sym_var] = ACTIONS(1370), - [anon_sym_return] = ACTIONS(1370), - [anon_sym_continue] = ACTIONS(1370), - [anon_sym_break] = ACTIONS(1370), - [anon_sym_defer] = ACTIONS(1370), - [anon_sym_assert] = ACTIONS(1370), - [anon_sym_nextcase] = ACTIONS(1370), - [anon_sym_switch] = ACTIONS(1370), - [anon_sym_AMP_AMP] = ACTIONS(1372), - [anon_sym_if] = ACTIONS(1370), - [anon_sym_for] = ACTIONS(1370), - [anon_sym_foreach] = ACTIONS(1370), - [anon_sym_foreach_r] = ACTIONS(1370), - [anon_sym_while] = ACTIONS(1370), - [anon_sym_do] = ACTIONS(1370), - [anon_sym_int] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_asm] = ACTIONS(1370), - [anon_sym_DOLLARassert] = ACTIONS(1370), - [anon_sym_DOLLARerror] = ACTIONS(1370), - [anon_sym_DOLLARecho] = ACTIONS(1370), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_DOLLARswitch] = ACTIONS(1370), - [anon_sym_DOLLARfor] = ACTIONS(1370), - [anon_sym_DOLLARforeach] = ACTIONS(1370), - [anon_sym_DOLLARendforeach] = ACTIONS(1370), - [anon_sym_DOLLARalignof] = ACTIONS(1370), - [anon_sym_DOLLARextnameof] = ACTIONS(1370), - [anon_sym_DOLLARnameof] = ACTIONS(1370), - [anon_sym_DOLLARoffsetof] = ACTIONS(1370), - [anon_sym_DOLLARqnameof] = ACTIONS(1370), - [anon_sym_DOLLARvaconst] = ACTIONS(1370), - [anon_sym_DOLLARvaarg] = ACTIONS(1370), - [anon_sym_DOLLARvaref] = ACTIONS(1370), - [anon_sym_DOLLARvaexpr] = ACTIONS(1370), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [anon_sym_null] = ACTIONS(1370), - [anon_sym_DOLLARvacount] = ACTIONS(1370), - [anon_sym_DOLLARappend] = ACTIONS(1370), - [anon_sym_DOLLARconcat] = ACTIONS(1370), - [anon_sym_DOLLAReval] = ACTIONS(1370), - [anon_sym_DOLLARis_const] = ACTIONS(1370), - [anon_sym_DOLLARsizeof] = ACTIONS(1370), - [anon_sym_DOLLARstringify] = ACTIONS(1370), - [anon_sym_DOLLARand] = ACTIONS(1370), - [anon_sym_DOLLARdefined] = ACTIONS(1370), - [anon_sym_DOLLARembed] = ACTIONS(1370), - [anon_sym_DOLLARor] = ACTIONS(1370), - [anon_sym_DOLLARfeature] = ACTIONS(1370), - [anon_sym_DOLLARassignable] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_TILDE] = ACTIONS(1372), - [anon_sym_PLUS_PLUS] = ACTIONS(1372), - [anon_sym_DASH_DASH] = ACTIONS(1372), - [anon_sym_typeid] = ACTIONS(1370), - [anon_sym_LBRACE_PIPE] = ACTIONS(1372), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_bool] = ACTIONS(1370), - [anon_sym_char] = ACTIONS(1370), - [anon_sym_ichar] = ACTIONS(1370), - [anon_sym_short] = ACTIONS(1370), - [anon_sym_ushort] = ACTIONS(1370), - [anon_sym_uint] = ACTIONS(1370), - [anon_sym_long] = ACTIONS(1370), - [anon_sym_ulong] = ACTIONS(1370), - [anon_sym_int128] = ACTIONS(1370), - [anon_sym_uint128] = ACTIONS(1370), - [anon_sym_float] = ACTIONS(1370), - [anon_sym_double] = ACTIONS(1370), - [anon_sym_float16] = ACTIONS(1370), - [anon_sym_bfloat16] = ACTIONS(1370), - [anon_sym_float128] = ACTIONS(1370), - [anon_sym_iptr] = ACTIONS(1370), - [anon_sym_uptr] = ACTIONS(1370), - [anon_sym_isz] = ACTIONS(1370), - [anon_sym_usz] = ACTIONS(1370), - [anon_sym_anyfault] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_DOLLARtypeof] = ACTIONS(1370), - [anon_sym_DOLLARtypefrom] = ACTIONS(1370), - [anon_sym_DOLLARvatype] = ACTIONS(1370), - [anon_sym_DOLLARevaltype] = ACTIONS(1370), - [sym_real_literal] = ACTIONS(1372), + [sym_ident] = ACTIONS(1629), + [sym_integer_literal] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1631), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_BQUOTE] = ACTIONS(1631), + [sym_bytes_literal] = ACTIONS(1631), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1629), + [sym_at_ident] = ACTIONS(1631), + [sym_hash_ident] = ACTIONS(1631), + [sym_type_ident] = ACTIONS(1631), + [sym_ct_type_ident] = ACTIONS(1631), + [sym_const_ident] = ACTIONS(1629), + [sym_builtin] = ACTIONS(1631), + [anon_sym_LPAREN] = ACTIONS(1631), + [anon_sym_AMP] = ACTIONS(1629), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_tlocal] = ACTIONS(1629), + [anon_sym_SEMI] = ACTIONS(1631), + [anon_sym_fn] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1629), + [anon_sym_const] = ACTIONS(1629), + [anon_sym_var] = ACTIONS(1629), + [anon_sym_return] = ACTIONS(1629), + [anon_sym_continue] = ACTIONS(1629), + [anon_sym_break] = ACTIONS(1629), + [anon_sym_defer] = ACTIONS(1629), + [anon_sym_assert] = ACTIONS(1629), + [anon_sym_nextcase] = ACTIONS(1629), + [anon_sym_switch] = ACTIONS(1629), + [anon_sym_AMP_AMP] = ACTIONS(1631), + [anon_sym_if] = ACTIONS(1629), + [anon_sym_for] = ACTIONS(1629), + [anon_sym_foreach] = ACTIONS(1629), + [anon_sym_foreach_r] = ACTIONS(1629), + [anon_sym_while] = ACTIONS(1629), + [anon_sym_do] = ACTIONS(1629), + [anon_sym_int] = ACTIONS(1629), + [anon_sym_PLUS] = ACTIONS(1629), + [anon_sym_DASH] = ACTIONS(1629), + [anon_sym_STAR] = ACTIONS(1631), + [anon_sym_asm] = ACTIONS(1629), + [anon_sym_DOLLARassert] = ACTIONS(1629), + [anon_sym_DOLLARerror] = ACTIONS(1629), + [anon_sym_DOLLARecho] = ACTIONS(1629), + [anon_sym_DOLLARif] = ACTIONS(1629), + [anon_sym_DOLLARswitch] = ACTIONS(1629), + [anon_sym_DOLLARfor] = ACTIONS(1629), + [anon_sym_DOLLARforeach] = ACTIONS(1629), + [anon_sym_DOLLARendforeach] = ACTIONS(1629), + [anon_sym_DOLLARalignof] = ACTIONS(1629), + [anon_sym_DOLLARextnameof] = ACTIONS(1629), + [anon_sym_DOLLARnameof] = ACTIONS(1629), + [anon_sym_DOLLARoffsetof] = ACTIONS(1629), + [anon_sym_DOLLARqnameof] = ACTIONS(1629), + [anon_sym_DOLLARvaconst] = ACTIONS(1629), + [anon_sym_DOLLARvaarg] = ACTIONS(1629), + [anon_sym_DOLLARvaref] = ACTIONS(1629), + [anon_sym_DOLLARvaexpr] = ACTIONS(1629), + [anon_sym_true] = ACTIONS(1629), + [anon_sym_false] = ACTIONS(1629), + [anon_sym_null] = ACTIONS(1629), + [anon_sym_DOLLARvacount] = ACTIONS(1629), + [anon_sym_DOLLARappend] = ACTIONS(1629), + [anon_sym_DOLLARconcat] = ACTIONS(1629), + [anon_sym_DOLLAReval] = ACTIONS(1629), + [anon_sym_DOLLARis_const] = ACTIONS(1629), + [anon_sym_DOLLARsizeof] = ACTIONS(1629), + [anon_sym_DOLLARstringify] = ACTIONS(1629), + [anon_sym_DOLLARand] = ACTIONS(1629), + [anon_sym_DOLLARdefined] = ACTIONS(1629), + [anon_sym_DOLLARembed] = ACTIONS(1629), + [anon_sym_DOLLARor] = ACTIONS(1629), + [anon_sym_DOLLARfeature] = ACTIONS(1629), + [anon_sym_DOLLARassignable] = ACTIONS(1629), + [anon_sym_BANG] = ACTIONS(1631), + [anon_sym_TILDE] = ACTIONS(1631), + [anon_sym_PLUS_PLUS] = ACTIONS(1631), + [anon_sym_DASH_DASH] = ACTIONS(1631), + [anon_sym_typeid] = ACTIONS(1629), + [anon_sym_LBRACE_PIPE] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1629), + [anon_sym_bool] = ACTIONS(1629), + [anon_sym_char] = ACTIONS(1629), + [anon_sym_ichar] = ACTIONS(1629), + [anon_sym_short] = ACTIONS(1629), + [anon_sym_ushort] = ACTIONS(1629), + [anon_sym_uint] = ACTIONS(1629), + [anon_sym_long] = ACTIONS(1629), + [anon_sym_ulong] = ACTIONS(1629), + [anon_sym_int128] = ACTIONS(1629), + [anon_sym_uint128] = ACTIONS(1629), + [anon_sym_float] = ACTIONS(1629), + [anon_sym_double] = ACTIONS(1629), + [anon_sym_float16] = ACTIONS(1629), + [anon_sym_bfloat16] = ACTIONS(1629), + [anon_sym_float128] = ACTIONS(1629), + [anon_sym_iptr] = ACTIONS(1629), + [anon_sym_uptr] = ACTIONS(1629), + [anon_sym_isz] = ACTIONS(1629), + [anon_sym_usz] = ACTIONS(1629), + [anon_sym_anyfault] = ACTIONS(1629), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_DOLLARtypeof] = ACTIONS(1629), + [anon_sym_DOLLARtypefrom] = ACTIONS(1629), + [anon_sym_DOLLARvatype] = ACTIONS(1629), + [anon_sym_DOLLARevaltype] = ACTIONS(1629), + [sym_real_literal] = ACTIONS(1631), }, [668] = { [sym_line_comment] = STATE(668), [sym_doc_comment] = STATE(668), [sym_block_comment] = STATE(668), - [sym_ident] = ACTIONS(1516), - [sym_integer_literal] = ACTIONS(1518), - [anon_sym_SQUOTE] = ACTIONS(1518), - [anon_sym_DQUOTE] = ACTIONS(1518), - [anon_sym_BQUOTE] = ACTIONS(1518), - [sym_bytes_literal] = ACTIONS(1518), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1516), - [sym_at_ident] = ACTIONS(1518), - [sym_hash_ident] = ACTIONS(1518), - [sym_type_ident] = ACTIONS(1518), - [sym_ct_type_ident] = ACTIONS(1518), - [sym_const_ident] = ACTIONS(1516), - [sym_builtin] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1518), - [anon_sym_AMP] = ACTIONS(1516), - [anon_sym_static] = ACTIONS(1516), - [anon_sym_tlocal] = ACTIONS(1516), - [anon_sym_SEMI] = ACTIONS(1518), - [anon_sym_fn] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1516), - [anon_sym_const] = ACTIONS(1516), - [anon_sym_var] = ACTIONS(1516), - [anon_sym_return] = ACTIONS(1516), - [anon_sym_continue] = ACTIONS(1516), - [anon_sym_break] = ACTIONS(1516), - [anon_sym_defer] = ACTIONS(1516), - [anon_sym_assert] = ACTIONS(1516), - [anon_sym_nextcase] = ACTIONS(1516), - [anon_sym_switch] = ACTIONS(1516), - [anon_sym_AMP_AMP] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1516), - [anon_sym_for] = ACTIONS(1516), - [anon_sym_foreach] = ACTIONS(1516), - [anon_sym_foreach_r] = ACTIONS(1516), - [anon_sym_while] = ACTIONS(1516), - [anon_sym_do] = ACTIONS(1516), - [anon_sym_int] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1516), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_STAR] = ACTIONS(1518), - [anon_sym_asm] = ACTIONS(1516), - [anon_sym_DOLLARassert] = ACTIONS(1516), - [anon_sym_DOLLARerror] = ACTIONS(1516), - [anon_sym_DOLLARecho] = ACTIONS(1516), - [anon_sym_DOLLARif] = ACTIONS(1516), - [anon_sym_DOLLARswitch] = ACTIONS(1516), - [anon_sym_DOLLARfor] = ACTIONS(1516), - [anon_sym_DOLLARforeach] = ACTIONS(1516), - [anon_sym_DOLLARendforeach] = ACTIONS(1516), - [anon_sym_DOLLARalignof] = ACTIONS(1516), - [anon_sym_DOLLARextnameof] = ACTIONS(1516), - [anon_sym_DOLLARnameof] = ACTIONS(1516), - [anon_sym_DOLLARoffsetof] = ACTIONS(1516), - [anon_sym_DOLLARqnameof] = ACTIONS(1516), - [anon_sym_DOLLARvaconst] = ACTIONS(1516), - [anon_sym_DOLLARvaarg] = ACTIONS(1516), - [anon_sym_DOLLARvaref] = ACTIONS(1516), - [anon_sym_DOLLARvaexpr] = ACTIONS(1516), - [anon_sym_true] = ACTIONS(1516), - [anon_sym_false] = ACTIONS(1516), - [anon_sym_null] = ACTIONS(1516), - [anon_sym_DOLLARvacount] = ACTIONS(1516), - [anon_sym_DOLLARappend] = ACTIONS(1516), - [anon_sym_DOLLARconcat] = ACTIONS(1516), - [anon_sym_DOLLAReval] = ACTIONS(1516), - [anon_sym_DOLLARis_const] = ACTIONS(1516), - [anon_sym_DOLLARsizeof] = ACTIONS(1516), - [anon_sym_DOLLARstringify] = ACTIONS(1516), - [anon_sym_DOLLARand] = ACTIONS(1516), - [anon_sym_DOLLARdefined] = ACTIONS(1516), - [anon_sym_DOLLARembed] = ACTIONS(1516), - [anon_sym_DOLLARor] = ACTIONS(1516), - [anon_sym_DOLLARfeature] = ACTIONS(1516), - [anon_sym_DOLLARassignable] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1518), - [anon_sym_TILDE] = ACTIONS(1518), - [anon_sym_PLUS_PLUS] = ACTIONS(1518), - [anon_sym_DASH_DASH] = ACTIONS(1518), - [anon_sym_typeid] = ACTIONS(1516), - [anon_sym_LBRACE_PIPE] = ACTIONS(1518), - [anon_sym_void] = ACTIONS(1516), - [anon_sym_bool] = ACTIONS(1516), - [anon_sym_char] = ACTIONS(1516), - [anon_sym_ichar] = ACTIONS(1516), - [anon_sym_short] = ACTIONS(1516), - [anon_sym_ushort] = ACTIONS(1516), - [anon_sym_uint] = ACTIONS(1516), - [anon_sym_long] = ACTIONS(1516), - [anon_sym_ulong] = ACTIONS(1516), - [anon_sym_int128] = ACTIONS(1516), - [anon_sym_uint128] = ACTIONS(1516), - [anon_sym_float] = ACTIONS(1516), - [anon_sym_double] = ACTIONS(1516), - [anon_sym_float16] = ACTIONS(1516), - [anon_sym_bfloat16] = ACTIONS(1516), - [anon_sym_float128] = ACTIONS(1516), - [anon_sym_iptr] = ACTIONS(1516), - [anon_sym_uptr] = ACTIONS(1516), - [anon_sym_isz] = ACTIONS(1516), - [anon_sym_usz] = ACTIONS(1516), - [anon_sym_anyfault] = ACTIONS(1516), - [anon_sym_any] = ACTIONS(1516), - [anon_sym_DOLLARtypeof] = ACTIONS(1516), - [anon_sym_DOLLARtypefrom] = ACTIONS(1516), - [anon_sym_DOLLARvatype] = ACTIONS(1516), - [anon_sym_DOLLARevaltype] = ACTIONS(1516), - [sym_real_literal] = ACTIONS(1518), + [sym_ident] = ACTIONS(1609), + [sym_integer_literal] = ACTIONS(1611), + [anon_sym_SQUOTE] = ACTIONS(1611), + [anon_sym_DQUOTE] = ACTIONS(1611), + [anon_sym_BQUOTE] = ACTIONS(1611), + [sym_bytes_literal] = ACTIONS(1611), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1609), + [sym_at_ident] = ACTIONS(1611), + [sym_hash_ident] = ACTIONS(1611), + [sym_type_ident] = ACTIONS(1611), + [sym_ct_type_ident] = ACTIONS(1611), + [sym_const_ident] = ACTIONS(1609), + [sym_builtin] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1611), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_static] = ACTIONS(1609), + [anon_sym_tlocal] = ACTIONS(1609), + [anon_sym_SEMI] = ACTIONS(1611), + [anon_sym_fn] = ACTIONS(1609), + [anon_sym_LBRACE] = ACTIONS(1609), + [anon_sym_const] = ACTIONS(1609), + [anon_sym_var] = ACTIONS(1609), + [anon_sym_return] = ACTIONS(1609), + [anon_sym_continue] = ACTIONS(1609), + [anon_sym_break] = ACTIONS(1609), + [anon_sym_defer] = ACTIONS(1609), + [anon_sym_assert] = ACTIONS(1609), + [anon_sym_nextcase] = ACTIONS(1609), + [anon_sym_switch] = ACTIONS(1609), + [anon_sym_AMP_AMP] = ACTIONS(1611), + [anon_sym_if] = ACTIONS(1609), + [anon_sym_for] = ACTIONS(1609), + [anon_sym_foreach] = ACTIONS(1609), + [anon_sym_foreach_r] = ACTIONS(1609), + [anon_sym_while] = ACTIONS(1609), + [anon_sym_do] = ACTIONS(1609), + [anon_sym_int] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1609), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(1611), + [anon_sym_asm] = ACTIONS(1609), + [anon_sym_DOLLARassert] = ACTIONS(1609), + [anon_sym_DOLLARerror] = ACTIONS(1609), + [anon_sym_DOLLARecho] = ACTIONS(1609), + [anon_sym_DOLLARif] = ACTIONS(1609), + [anon_sym_DOLLARswitch] = ACTIONS(1609), + [anon_sym_DOLLARfor] = ACTIONS(1609), + [anon_sym_DOLLARforeach] = ACTIONS(1609), + [anon_sym_DOLLARendforeach] = ACTIONS(1609), + [anon_sym_DOLLARalignof] = ACTIONS(1609), + [anon_sym_DOLLARextnameof] = ACTIONS(1609), + [anon_sym_DOLLARnameof] = ACTIONS(1609), + [anon_sym_DOLLARoffsetof] = ACTIONS(1609), + [anon_sym_DOLLARqnameof] = ACTIONS(1609), + [anon_sym_DOLLARvaconst] = ACTIONS(1609), + [anon_sym_DOLLARvaarg] = ACTIONS(1609), + [anon_sym_DOLLARvaref] = ACTIONS(1609), + [anon_sym_DOLLARvaexpr] = ACTIONS(1609), + [anon_sym_true] = ACTIONS(1609), + [anon_sym_false] = ACTIONS(1609), + [anon_sym_null] = ACTIONS(1609), + [anon_sym_DOLLARvacount] = ACTIONS(1609), + [anon_sym_DOLLARappend] = ACTIONS(1609), + [anon_sym_DOLLARconcat] = ACTIONS(1609), + [anon_sym_DOLLAReval] = ACTIONS(1609), + [anon_sym_DOLLARis_const] = ACTIONS(1609), + [anon_sym_DOLLARsizeof] = ACTIONS(1609), + [anon_sym_DOLLARstringify] = ACTIONS(1609), + [anon_sym_DOLLARand] = ACTIONS(1609), + [anon_sym_DOLLARdefined] = ACTIONS(1609), + [anon_sym_DOLLARembed] = ACTIONS(1609), + [anon_sym_DOLLARor] = ACTIONS(1609), + [anon_sym_DOLLARfeature] = ACTIONS(1609), + [anon_sym_DOLLARassignable] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1611), + [anon_sym_TILDE] = ACTIONS(1611), + [anon_sym_PLUS_PLUS] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_typeid] = ACTIONS(1609), + [anon_sym_LBRACE_PIPE] = ACTIONS(1611), + [anon_sym_void] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_ichar] = ACTIONS(1609), + [anon_sym_short] = ACTIONS(1609), + [anon_sym_ushort] = ACTIONS(1609), + [anon_sym_uint] = ACTIONS(1609), + [anon_sym_long] = ACTIONS(1609), + [anon_sym_ulong] = ACTIONS(1609), + [anon_sym_int128] = ACTIONS(1609), + [anon_sym_uint128] = ACTIONS(1609), + [anon_sym_float] = ACTIONS(1609), + [anon_sym_double] = ACTIONS(1609), + [anon_sym_float16] = ACTIONS(1609), + [anon_sym_bfloat16] = ACTIONS(1609), + [anon_sym_float128] = ACTIONS(1609), + [anon_sym_iptr] = ACTIONS(1609), + [anon_sym_uptr] = ACTIONS(1609), + [anon_sym_isz] = ACTIONS(1609), + [anon_sym_usz] = ACTIONS(1609), + [anon_sym_anyfault] = ACTIONS(1609), + [anon_sym_any] = ACTIONS(1609), + [anon_sym_DOLLARtypeof] = ACTIONS(1609), + [anon_sym_DOLLARtypefrom] = ACTIONS(1609), + [anon_sym_DOLLARvatype] = ACTIONS(1609), + [anon_sym_DOLLARevaltype] = ACTIONS(1609), + [sym_real_literal] = ACTIONS(1611), }, [669] = { [sym_line_comment] = STATE(669), [sym_doc_comment] = STATE(669), [sym_block_comment] = STATE(669), - [sym_ident] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(1618), - [anon_sym_SQUOTE] = ACTIONS(1618), - [anon_sym_DQUOTE] = ACTIONS(1618), - [anon_sym_BQUOTE] = ACTIONS(1618), - [sym_bytes_literal] = ACTIONS(1618), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1616), - [sym_at_ident] = ACTIONS(1618), - [sym_hash_ident] = ACTIONS(1618), - [sym_type_ident] = ACTIONS(1618), - [sym_ct_type_ident] = ACTIONS(1618), - [sym_const_ident] = ACTIONS(1616), - [sym_builtin] = ACTIONS(1618), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_static] = ACTIONS(1616), - [anon_sym_tlocal] = ACTIONS(1616), - [anon_sym_SEMI] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1616), - [anon_sym_LBRACE] = ACTIONS(1616), - [anon_sym_const] = ACTIONS(1616), - [anon_sym_var] = ACTIONS(1616), - [anon_sym_return] = ACTIONS(1616), - [anon_sym_continue] = ACTIONS(1616), - [anon_sym_break] = ACTIONS(1616), - [anon_sym_defer] = ACTIONS(1616), - [anon_sym_assert] = ACTIONS(1616), - [anon_sym_nextcase] = ACTIONS(1616), - [anon_sym_switch] = ACTIONS(1616), - [anon_sym_AMP_AMP] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1616), - [anon_sym_for] = ACTIONS(1616), - [anon_sym_foreach] = ACTIONS(1616), - [anon_sym_foreach_r] = ACTIONS(1616), - [anon_sym_while] = ACTIONS(1616), - [anon_sym_do] = ACTIONS(1616), - [anon_sym_int] = ACTIONS(1616), - [anon_sym_PLUS] = ACTIONS(1616), - [anon_sym_DASH] = ACTIONS(1616), - [anon_sym_STAR] = ACTIONS(1618), - [anon_sym_asm] = ACTIONS(1616), - [anon_sym_DOLLARassert] = ACTIONS(1616), - [anon_sym_DOLLARerror] = ACTIONS(1616), - [anon_sym_DOLLARecho] = ACTIONS(1616), - [anon_sym_DOLLARif] = ACTIONS(1616), - [anon_sym_DOLLARswitch] = ACTIONS(1616), - [anon_sym_DOLLARfor] = ACTIONS(1616), - [anon_sym_DOLLARforeach] = ACTIONS(1616), - [anon_sym_DOLLARendforeach] = ACTIONS(1616), - [anon_sym_DOLLARalignof] = ACTIONS(1616), - [anon_sym_DOLLARextnameof] = ACTIONS(1616), - [anon_sym_DOLLARnameof] = ACTIONS(1616), - [anon_sym_DOLLARoffsetof] = ACTIONS(1616), - [anon_sym_DOLLARqnameof] = ACTIONS(1616), - [anon_sym_DOLLARvaconst] = ACTIONS(1616), - [anon_sym_DOLLARvaarg] = ACTIONS(1616), - [anon_sym_DOLLARvaref] = ACTIONS(1616), - [anon_sym_DOLLARvaexpr] = ACTIONS(1616), - [anon_sym_true] = ACTIONS(1616), - [anon_sym_false] = ACTIONS(1616), - [anon_sym_null] = ACTIONS(1616), - [anon_sym_DOLLARvacount] = ACTIONS(1616), - [anon_sym_DOLLARappend] = ACTIONS(1616), - [anon_sym_DOLLARconcat] = ACTIONS(1616), - [anon_sym_DOLLAReval] = ACTIONS(1616), - [anon_sym_DOLLARis_const] = ACTIONS(1616), - [anon_sym_DOLLARsizeof] = ACTIONS(1616), - [anon_sym_DOLLARstringify] = ACTIONS(1616), - [anon_sym_DOLLARand] = ACTIONS(1616), - [anon_sym_DOLLARdefined] = ACTIONS(1616), - [anon_sym_DOLLARembed] = ACTIONS(1616), - [anon_sym_DOLLARor] = ACTIONS(1616), - [anon_sym_DOLLARfeature] = ACTIONS(1616), - [anon_sym_DOLLARassignable] = ACTIONS(1616), - [anon_sym_BANG] = ACTIONS(1618), - [anon_sym_TILDE] = ACTIONS(1618), - [anon_sym_PLUS_PLUS] = ACTIONS(1618), - [anon_sym_DASH_DASH] = ACTIONS(1618), - [anon_sym_typeid] = ACTIONS(1616), - [anon_sym_LBRACE_PIPE] = ACTIONS(1618), - [anon_sym_void] = ACTIONS(1616), - [anon_sym_bool] = ACTIONS(1616), - [anon_sym_char] = ACTIONS(1616), - [anon_sym_ichar] = ACTIONS(1616), - [anon_sym_short] = ACTIONS(1616), - [anon_sym_ushort] = ACTIONS(1616), - [anon_sym_uint] = ACTIONS(1616), - [anon_sym_long] = ACTIONS(1616), - [anon_sym_ulong] = ACTIONS(1616), - [anon_sym_int128] = ACTIONS(1616), - [anon_sym_uint128] = ACTIONS(1616), - [anon_sym_float] = ACTIONS(1616), - [anon_sym_double] = ACTIONS(1616), - [anon_sym_float16] = ACTIONS(1616), - [anon_sym_bfloat16] = ACTIONS(1616), - [anon_sym_float128] = ACTIONS(1616), - [anon_sym_iptr] = ACTIONS(1616), - [anon_sym_uptr] = ACTIONS(1616), - [anon_sym_isz] = ACTIONS(1616), - [anon_sym_usz] = ACTIONS(1616), - [anon_sym_anyfault] = ACTIONS(1616), - [anon_sym_any] = ACTIONS(1616), - [anon_sym_DOLLARtypeof] = ACTIONS(1616), - [anon_sym_DOLLARtypefrom] = ACTIONS(1616), - [anon_sym_DOLLARvatype] = ACTIONS(1616), - [anon_sym_DOLLARevaltype] = ACTIONS(1616), - [sym_real_literal] = ACTIONS(1618), + [sym_ident] = ACTIONS(1605), + [sym_integer_literal] = ACTIONS(1607), + [anon_sym_SQUOTE] = ACTIONS(1607), + [anon_sym_DQUOTE] = ACTIONS(1607), + [anon_sym_BQUOTE] = ACTIONS(1607), + [sym_bytes_literal] = ACTIONS(1607), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1605), + [sym_at_ident] = ACTIONS(1607), + [sym_hash_ident] = ACTIONS(1607), + [sym_type_ident] = ACTIONS(1607), + [sym_ct_type_ident] = ACTIONS(1607), + [sym_const_ident] = ACTIONS(1605), + [sym_builtin] = ACTIONS(1607), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_static] = ACTIONS(1605), + [anon_sym_tlocal] = ACTIONS(1605), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_fn] = ACTIONS(1605), + [anon_sym_LBRACE] = ACTIONS(1605), + [anon_sym_const] = ACTIONS(1605), + [anon_sym_var] = ACTIONS(1605), + [anon_sym_return] = ACTIONS(1605), + [anon_sym_continue] = ACTIONS(1605), + [anon_sym_break] = ACTIONS(1605), + [anon_sym_defer] = ACTIONS(1605), + [anon_sym_assert] = ACTIONS(1605), + [anon_sym_nextcase] = ACTIONS(1605), + [anon_sym_switch] = ACTIONS(1605), + [anon_sym_AMP_AMP] = ACTIONS(1607), + [anon_sym_if] = ACTIONS(1605), + [anon_sym_for] = ACTIONS(1605), + [anon_sym_foreach] = ACTIONS(1605), + [anon_sym_foreach_r] = ACTIONS(1605), + [anon_sym_while] = ACTIONS(1605), + [anon_sym_do] = ACTIONS(1605), + [anon_sym_int] = ACTIONS(1605), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_asm] = ACTIONS(1605), + [anon_sym_DOLLARassert] = ACTIONS(1605), + [anon_sym_DOLLARerror] = ACTIONS(1605), + [anon_sym_DOLLARecho] = ACTIONS(1605), + [anon_sym_DOLLARif] = ACTIONS(1605), + [anon_sym_DOLLARswitch] = ACTIONS(1605), + [anon_sym_DOLLARfor] = ACTIONS(1605), + [anon_sym_DOLLARforeach] = ACTIONS(1605), + [anon_sym_DOLLARendforeach] = ACTIONS(1605), + [anon_sym_DOLLARalignof] = ACTIONS(1605), + [anon_sym_DOLLARextnameof] = ACTIONS(1605), + [anon_sym_DOLLARnameof] = ACTIONS(1605), + [anon_sym_DOLLARoffsetof] = ACTIONS(1605), + [anon_sym_DOLLARqnameof] = ACTIONS(1605), + [anon_sym_DOLLARvaconst] = ACTIONS(1605), + [anon_sym_DOLLARvaarg] = ACTIONS(1605), + [anon_sym_DOLLARvaref] = ACTIONS(1605), + [anon_sym_DOLLARvaexpr] = ACTIONS(1605), + [anon_sym_true] = ACTIONS(1605), + [anon_sym_false] = ACTIONS(1605), + [anon_sym_null] = ACTIONS(1605), + [anon_sym_DOLLARvacount] = ACTIONS(1605), + [anon_sym_DOLLARappend] = ACTIONS(1605), + [anon_sym_DOLLARconcat] = ACTIONS(1605), + [anon_sym_DOLLAReval] = ACTIONS(1605), + [anon_sym_DOLLARis_const] = ACTIONS(1605), + [anon_sym_DOLLARsizeof] = ACTIONS(1605), + [anon_sym_DOLLARstringify] = ACTIONS(1605), + [anon_sym_DOLLARand] = ACTIONS(1605), + [anon_sym_DOLLARdefined] = ACTIONS(1605), + [anon_sym_DOLLARembed] = ACTIONS(1605), + [anon_sym_DOLLARor] = ACTIONS(1605), + [anon_sym_DOLLARfeature] = ACTIONS(1605), + [anon_sym_DOLLARassignable] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [anon_sym_TILDE] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1607), + [anon_sym_DASH_DASH] = ACTIONS(1607), + [anon_sym_typeid] = ACTIONS(1605), + [anon_sym_LBRACE_PIPE] = ACTIONS(1607), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_bool] = ACTIONS(1605), + [anon_sym_char] = ACTIONS(1605), + [anon_sym_ichar] = ACTIONS(1605), + [anon_sym_short] = ACTIONS(1605), + [anon_sym_ushort] = ACTIONS(1605), + [anon_sym_uint] = ACTIONS(1605), + [anon_sym_long] = ACTIONS(1605), + [anon_sym_ulong] = ACTIONS(1605), + [anon_sym_int128] = ACTIONS(1605), + [anon_sym_uint128] = ACTIONS(1605), + [anon_sym_float] = ACTIONS(1605), + [anon_sym_double] = ACTIONS(1605), + [anon_sym_float16] = ACTIONS(1605), + [anon_sym_bfloat16] = ACTIONS(1605), + [anon_sym_float128] = ACTIONS(1605), + [anon_sym_iptr] = ACTIONS(1605), + [anon_sym_uptr] = ACTIONS(1605), + [anon_sym_isz] = ACTIONS(1605), + [anon_sym_usz] = ACTIONS(1605), + [anon_sym_anyfault] = ACTIONS(1605), + [anon_sym_any] = ACTIONS(1605), + [anon_sym_DOLLARtypeof] = ACTIONS(1605), + [anon_sym_DOLLARtypefrom] = ACTIONS(1605), + [anon_sym_DOLLARvatype] = ACTIONS(1605), + [anon_sym_DOLLARevaltype] = ACTIONS(1605), + [sym_real_literal] = ACTIONS(1607), }, [670] = { [sym_line_comment] = STATE(670), [sym_doc_comment] = STATE(670), [sym_block_comment] = STATE(670), - [sym_ident] = ACTIONS(1500), - [sym_integer_literal] = ACTIONS(1502), - [anon_sym_SQUOTE] = ACTIONS(1502), - [anon_sym_DQUOTE] = ACTIONS(1502), - [anon_sym_BQUOTE] = ACTIONS(1502), - [sym_bytes_literal] = ACTIONS(1502), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1500), - [sym_at_ident] = ACTIONS(1502), - [sym_hash_ident] = ACTIONS(1502), - [sym_type_ident] = ACTIONS(1502), - [sym_ct_type_ident] = ACTIONS(1502), - [sym_const_ident] = ACTIONS(1500), - [sym_builtin] = ACTIONS(1502), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_AMP] = ACTIONS(1500), - [anon_sym_static] = ACTIONS(1500), - [anon_sym_tlocal] = ACTIONS(1500), - [anon_sym_SEMI] = ACTIONS(1502), - [anon_sym_fn] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_const] = ACTIONS(1500), - [anon_sym_var] = ACTIONS(1500), - [anon_sym_return] = ACTIONS(1500), - [anon_sym_continue] = ACTIONS(1500), - [anon_sym_break] = ACTIONS(1500), - [anon_sym_defer] = ACTIONS(1500), - [anon_sym_assert] = ACTIONS(1500), - [anon_sym_nextcase] = ACTIONS(1500), - [anon_sym_switch] = ACTIONS(1500), - [anon_sym_AMP_AMP] = ACTIONS(1502), - [anon_sym_if] = ACTIONS(1500), - [anon_sym_for] = ACTIONS(1500), - [anon_sym_foreach] = ACTIONS(1500), - [anon_sym_foreach_r] = ACTIONS(1500), - [anon_sym_while] = ACTIONS(1500), - [anon_sym_do] = ACTIONS(1500), - [anon_sym_int] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1500), - [anon_sym_DASH] = ACTIONS(1500), - [anon_sym_STAR] = ACTIONS(1502), - [anon_sym_asm] = ACTIONS(1500), - [anon_sym_DOLLARassert] = ACTIONS(1500), - [anon_sym_DOLLARerror] = ACTIONS(1500), - [anon_sym_DOLLARecho] = ACTIONS(1500), - [anon_sym_DOLLARif] = ACTIONS(1500), - [anon_sym_DOLLARswitch] = ACTIONS(1500), - [anon_sym_DOLLARfor] = ACTIONS(1500), - [anon_sym_DOLLARforeach] = ACTIONS(1500), - [anon_sym_DOLLARendforeach] = ACTIONS(1500), - [anon_sym_DOLLARalignof] = ACTIONS(1500), - [anon_sym_DOLLARextnameof] = ACTIONS(1500), - [anon_sym_DOLLARnameof] = ACTIONS(1500), - [anon_sym_DOLLARoffsetof] = ACTIONS(1500), - [anon_sym_DOLLARqnameof] = ACTIONS(1500), - [anon_sym_DOLLARvaconst] = ACTIONS(1500), - [anon_sym_DOLLARvaarg] = ACTIONS(1500), - [anon_sym_DOLLARvaref] = ACTIONS(1500), - [anon_sym_DOLLARvaexpr] = ACTIONS(1500), - [anon_sym_true] = ACTIONS(1500), - [anon_sym_false] = ACTIONS(1500), - [anon_sym_null] = ACTIONS(1500), - [anon_sym_DOLLARvacount] = ACTIONS(1500), - [anon_sym_DOLLARappend] = ACTIONS(1500), - [anon_sym_DOLLARconcat] = ACTIONS(1500), - [anon_sym_DOLLAReval] = ACTIONS(1500), - [anon_sym_DOLLARis_const] = ACTIONS(1500), - [anon_sym_DOLLARsizeof] = ACTIONS(1500), - [anon_sym_DOLLARstringify] = ACTIONS(1500), - [anon_sym_DOLLARand] = ACTIONS(1500), - [anon_sym_DOLLARdefined] = ACTIONS(1500), - [anon_sym_DOLLARembed] = ACTIONS(1500), - [anon_sym_DOLLARor] = ACTIONS(1500), - [anon_sym_DOLLARfeature] = ACTIONS(1500), - [anon_sym_DOLLARassignable] = ACTIONS(1500), - [anon_sym_BANG] = ACTIONS(1502), - [anon_sym_TILDE] = ACTIONS(1502), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), - [anon_sym_DASH_DASH] = ACTIONS(1502), - [anon_sym_typeid] = ACTIONS(1500), - [anon_sym_LBRACE_PIPE] = ACTIONS(1502), - [anon_sym_void] = ACTIONS(1500), - [anon_sym_bool] = ACTIONS(1500), - [anon_sym_char] = ACTIONS(1500), - [anon_sym_ichar] = ACTIONS(1500), - [anon_sym_short] = ACTIONS(1500), - [anon_sym_ushort] = ACTIONS(1500), - [anon_sym_uint] = ACTIONS(1500), - [anon_sym_long] = ACTIONS(1500), - [anon_sym_ulong] = ACTIONS(1500), - [anon_sym_int128] = ACTIONS(1500), - [anon_sym_uint128] = ACTIONS(1500), - [anon_sym_float] = ACTIONS(1500), - [anon_sym_double] = ACTIONS(1500), - [anon_sym_float16] = ACTIONS(1500), - [anon_sym_bfloat16] = ACTIONS(1500), - [anon_sym_float128] = ACTIONS(1500), - [anon_sym_iptr] = ACTIONS(1500), - [anon_sym_uptr] = ACTIONS(1500), - [anon_sym_isz] = ACTIONS(1500), - [anon_sym_usz] = ACTIONS(1500), - [anon_sym_anyfault] = ACTIONS(1500), - [anon_sym_any] = ACTIONS(1500), - [anon_sym_DOLLARtypeof] = ACTIONS(1500), - [anon_sym_DOLLARtypefrom] = ACTIONS(1500), - [anon_sym_DOLLARvatype] = ACTIONS(1500), - [anon_sym_DOLLARevaltype] = ACTIONS(1500), - [sym_real_literal] = ACTIONS(1502), + [sym_ident] = ACTIONS(1597), + [sym_integer_literal] = ACTIONS(1599), + [anon_sym_SQUOTE] = ACTIONS(1599), + [anon_sym_DQUOTE] = ACTIONS(1599), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_bytes_literal] = ACTIONS(1599), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1597), + [sym_at_ident] = ACTIONS(1599), + [sym_hash_ident] = ACTIONS(1599), + [sym_type_ident] = ACTIONS(1599), + [sym_ct_type_ident] = ACTIONS(1599), + [sym_const_ident] = ACTIONS(1597), + [sym_builtin] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_AMP] = ACTIONS(1597), + [anon_sym_static] = ACTIONS(1597), + [anon_sym_tlocal] = ACTIONS(1597), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_fn] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1597), + [anon_sym_const] = ACTIONS(1597), + [anon_sym_var] = ACTIONS(1597), + [anon_sym_return] = ACTIONS(1597), + [anon_sym_continue] = ACTIONS(1597), + [anon_sym_break] = ACTIONS(1597), + [anon_sym_defer] = ACTIONS(1597), + [anon_sym_assert] = ACTIONS(1597), + [anon_sym_nextcase] = ACTIONS(1597), + [anon_sym_switch] = ACTIONS(1597), + [anon_sym_AMP_AMP] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(1597), + [anon_sym_for] = ACTIONS(1597), + [anon_sym_foreach] = ACTIONS(1597), + [anon_sym_foreach_r] = ACTIONS(1597), + [anon_sym_while] = ACTIONS(1597), + [anon_sym_do] = ACTIONS(1597), + [anon_sym_int] = ACTIONS(1597), + [anon_sym_PLUS] = ACTIONS(1597), + [anon_sym_DASH] = ACTIONS(1597), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_asm] = ACTIONS(1597), + [anon_sym_DOLLARassert] = ACTIONS(1597), + [anon_sym_DOLLARerror] = ACTIONS(1597), + [anon_sym_DOLLARecho] = ACTIONS(1597), + [anon_sym_DOLLARif] = ACTIONS(1597), + [anon_sym_DOLLARswitch] = ACTIONS(1597), + [anon_sym_DOLLARfor] = ACTIONS(1597), + [anon_sym_DOLLARforeach] = ACTIONS(1597), + [anon_sym_DOLLARendforeach] = ACTIONS(1597), + [anon_sym_DOLLARalignof] = ACTIONS(1597), + [anon_sym_DOLLARextnameof] = ACTIONS(1597), + [anon_sym_DOLLARnameof] = ACTIONS(1597), + [anon_sym_DOLLARoffsetof] = ACTIONS(1597), + [anon_sym_DOLLARqnameof] = ACTIONS(1597), + [anon_sym_DOLLARvaconst] = ACTIONS(1597), + [anon_sym_DOLLARvaarg] = ACTIONS(1597), + [anon_sym_DOLLARvaref] = ACTIONS(1597), + [anon_sym_DOLLARvaexpr] = ACTIONS(1597), + [anon_sym_true] = ACTIONS(1597), + [anon_sym_false] = ACTIONS(1597), + [anon_sym_null] = ACTIONS(1597), + [anon_sym_DOLLARvacount] = ACTIONS(1597), + [anon_sym_DOLLARappend] = ACTIONS(1597), + [anon_sym_DOLLARconcat] = ACTIONS(1597), + [anon_sym_DOLLAReval] = ACTIONS(1597), + [anon_sym_DOLLARis_const] = ACTIONS(1597), + [anon_sym_DOLLARsizeof] = ACTIONS(1597), + [anon_sym_DOLLARstringify] = ACTIONS(1597), + [anon_sym_DOLLARand] = ACTIONS(1597), + [anon_sym_DOLLARdefined] = ACTIONS(1597), + [anon_sym_DOLLARembed] = ACTIONS(1597), + [anon_sym_DOLLARor] = ACTIONS(1597), + [anon_sym_DOLLARfeature] = ACTIONS(1597), + [anon_sym_DOLLARassignable] = ACTIONS(1597), + [anon_sym_BANG] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_DASH_DASH] = ACTIONS(1599), + [anon_sym_typeid] = ACTIONS(1597), + [anon_sym_LBRACE_PIPE] = ACTIONS(1599), + [anon_sym_void] = ACTIONS(1597), + [anon_sym_bool] = ACTIONS(1597), + [anon_sym_char] = ACTIONS(1597), + [anon_sym_ichar] = ACTIONS(1597), + [anon_sym_short] = ACTIONS(1597), + [anon_sym_ushort] = ACTIONS(1597), + [anon_sym_uint] = ACTIONS(1597), + [anon_sym_long] = ACTIONS(1597), + [anon_sym_ulong] = ACTIONS(1597), + [anon_sym_int128] = ACTIONS(1597), + [anon_sym_uint128] = ACTIONS(1597), + [anon_sym_float] = ACTIONS(1597), + [anon_sym_double] = ACTIONS(1597), + [anon_sym_float16] = ACTIONS(1597), + [anon_sym_bfloat16] = ACTIONS(1597), + [anon_sym_float128] = ACTIONS(1597), + [anon_sym_iptr] = ACTIONS(1597), + [anon_sym_uptr] = ACTIONS(1597), + [anon_sym_isz] = ACTIONS(1597), + [anon_sym_usz] = ACTIONS(1597), + [anon_sym_anyfault] = ACTIONS(1597), + [anon_sym_any] = ACTIONS(1597), + [anon_sym_DOLLARtypeof] = ACTIONS(1597), + [anon_sym_DOLLARtypefrom] = ACTIONS(1597), + [anon_sym_DOLLARvatype] = ACTIONS(1597), + [anon_sym_DOLLARevaltype] = ACTIONS(1597), + [sym_real_literal] = ACTIONS(1599), }, [671] = { [sym_line_comment] = STATE(671), [sym_doc_comment] = STATE(671), [sym_block_comment] = STATE(671), - [sym_ident] = ACTIONS(1528), - [sym_integer_literal] = ACTIONS(1530), - [anon_sym_SQUOTE] = ACTIONS(1530), - [anon_sym_DQUOTE] = ACTIONS(1530), - [anon_sym_BQUOTE] = ACTIONS(1530), - [sym_bytes_literal] = ACTIONS(1530), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1528), - [sym_at_ident] = ACTIONS(1530), - [sym_hash_ident] = ACTIONS(1530), - [sym_type_ident] = ACTIONS(1530), - [sym_ct_type_ident] = ACTIONS(1530), - [sym_const_ident] = ACTIONS(1528), - [sym_builtin] = ACTIONS(1530), - [anon_sym_LPAREN] = ACTIONS(1530), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_static] = ACTIONS(1528), - [anon_sym_tlocal] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(1530), - [anon_sym_fn] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_var] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(1528), - [anon_sym_continue] = ACTIONS(1528), - [anon_sym_break] = ACTIONS(1528), - [anon_sym_defer] = ACTIONS(1528), - [anon_sym_assert] = ACTIONS(1528), - [anon_sym_nextcase] = ACTIONS(1528), - [anon_sym_switch] = ACTIONS(1528), - [anon_sym_AMP_AMP] = ACTIONS(1530), - [anon_sym_if] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1528), - [anon_sym_foreach] = ACTIONS(1528), - [anon_sym_foreach_r] = ACTIONS(1528), - [anon_sym_while] = ACTIONS(1528), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_int] = ACTIONS(1528), - [anon_sym_PLUS] = ACTIONS(1528), - [anon_sym_DASH] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1530), - [anon_sym_asm] = ACTIONS(1528), - [anon_sym_DOLLARassert] = ACTIONS(1528), - [anon_sym_DOLLARerror] = ACTIONS(1528), - [anon_sym_DOLLARecho] = ACTIONS(1528), - [anon_sym_DOLLARif] = ACTIONS(1528), - [anon_sym_DOLLARswitch] = ACTIONS(1528), - [anon_sym_DOLLARfor] = ACTIONS(1528), - [anon_sym_DOLLARforeach] = ACTIONS(1528), - [anon_sym_DOLLARendforeach] = ACTIONS(1528), - [anon_sym_DOLLARalignof] = ACTIONS(1528), - [anon_sym_DOLLARextnameof] = ACTIONS(1528), - [anon_sym_DOLLARnameof] = ACTIONS(1528), - [anon_sym_DOLLARoffsetof] = ACTIONS(1528), - [anon_sym_DOLLARqnameof] = ACTIONS(1528), - [anon_sym_DOLLARvaconst] = ACTIONS(1528), - [anon_sym_DOLLARvaarg] = ACTIONS(1528), - [anon_sym_DOLLARvaref] = ACTIONS(1528), - [anon_sym_DOLLARvaexpr] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [anon_sym_null] = ACTIONS(1528), - [anon_sym_DOLLARvacount] = ACTIONS(1528), - [anon_sym_DOLLARappend] = ACTIONS(1528), - [anon_sym_DOLLARconcat] = ACTIONS(1528), - [anon_sym_DOLLAReval] = ACTIONS(1528), - [anon_sym_DOLLARis_const] = ACTIONS(1528), - [anon_sym_DOLLARsizeof] = ACTIONS(1528), - [anon_sym_DOLLARstringify] = ACTIONS(1528), - [anon_sym_DOLLARand] = ACTIONS(1528), - [anon_sym_DOLLARdefined] = ACTIONS(1528), - [anon_sym_DOLLARembed] = ACTIONS(1528), - [anon_sym_DOLLARor] = ACTIONS(1528), - [anon_sym_DOLLARfeature] = ACTIONS(1528), - [anon_sym_DOLLARassignable] = ACTIONS(1528), - [anon_sym_BANG] = ACTIONS(1530), - [anon_sym_TILDE] = ACTIONS(1530), - [anon_sym_PLUS_PLUS] = ACTIONS(1530), - [anon_sym_DASH_DASH] = ACTIONS(1530), - [anon_sym_typeid] = ACTIONS(1528), - [anon_sym_LBRACE_PIPE] = ACTIONS(1530), - [anon_sym_void] = ACTIONS(1528), - [anon_sym_bool] = ACTIONS(1528), - [anon_sym_char] = ACTIONS(1528), - [anon_sym_ichar] = ACTIONS(1528), - [anon_sym_short] = ACTIONS(1528), - [anon_sym_ushort] = ACTIONS(1528), - [anon_sym_uint] = ACTIONS(1528), - [anon_sym_long] = ACTIONS(1528), - [anon_sym_ulong] = ACTIONS(1528), - [anon_sym_int128] = ACTIONS(1528), - [anon_sym_uint128] = ACTIONS(1528), - [anon_sym_float] = ACTIONS(1528), - [anon_sym_double] = ACTIONS(1528), - [anon_sym_float16] = ACTIONS(1528), - [anon_sym_bfloat16] = ACTIONS(1528), - [anon_sym_float128] = ACTIONS(1528), - [anon_sym_iptr] = ACTIONS(1528), - [anon_sym_uptr] = ACTIONS(1528), - [anon_sym_isz] = ACTIONS(1528), - [anon_sym_usz] = ACTIONS(1528), - [anon_sym_anyfault] = ACTIONS(1528), - [anon_sym_any] = ACTIONS(1528), - [anon_sym_DOLLARtypeof] = ACTIONS(1528), - [anon_sym_DOLLARtypefrom] = ACTIONS(1528), - [anon_sym_DOLLARvatype] = ACTIONS(1528), - [anon_sym_DOLLARevaltype] = ACTIONS(1528), - [sym_real_literal] = ACTIONS(1530), + [sym_ident] = ACTIONS(1597), + [sym_integer_literal] = ACTIONS(1599), + [anon_sym_SQUOTE] = ACTIONS(1599), + [anon_sym_DQUOTE] = ACTIONS(1599), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_bytes_literal] = ACTIONS(1599), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1597), + [sym_at_ident] = ACTIONS(1599), + [sym_hash_ident] = ACTIONS(1599), + [sym_type_ident] = ACTIONS(1599), + [sym_ct_type_ident] = ACTIONS(1599), + [sym_const_ident] = ACTIONS(1597), + [sym_builtin] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_AMP] = ACTIONS(1597), + [anon_sym_static] = ACTIONS(1597), + [anon_sym_tlocal] = ACTIONS(1597), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_fn] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1597), + [anon_sym_const] = ACTIONS(1597), + [anon_sym_var] = ACTIONS(1597), + [anon_sym_return] = ACTIONS(1597), + [anon_sym_continue] = ACTIONS(1597), + [anon_sym_break] = ACTIONS(1597), + [anon_sym_defer] = ACTIONS(1597), + [anon_sym_assert] = ACTIONS(1597), + [anon_sym_nextcase] = ACTIONS(1597), + [anon_sym_switch] = ACTIONS(1597), + [anon_sym_AMP_AMP] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(1597), + [anon_sym_for] = ACTIONS(1597), + [anon_sym_foreach] = ACTIONS(1597), + [anon_sym_foreach_r] = ACTIONS(1597), + [anon_sym_while] = ACTIONS(1597), + [anon_sym_do] = ACTIONS(1597), + [anon_sym_int] = ACTIONS(1597), + [anon_sym_PLUS] = ACTIONS(1597), + [anon_sym_DASH] = ACTIONS(1597), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_asm] = ACTIONS(1597), + [anon_sym_DOLLARassert] = ACTIONS(1597), + [anon_sym_DOLLARerror] = ACTIONS(1597), + [anon_sym_DOLLARecho] = ACTIONS(1597), + [anon_sym_DOLLARif] = ACTIONS(1597), + [anon_sym_DOLLARendif] = ACTIONS(1597), + [anon_sym_DOLLARswitch] = ACTIONS(1597), + [anon_sym_DOLLARfor] = ACTIONS(1597), + [anon_sym_DOLLARforeach] = ACTIONS(1597), + [anon_sym_DOLLARalignof] = ACTIONS(1597), + [anon_sym_DOLLARextnameof] = ACTIONS(1597), + [anon_sym_DOLLARnameof] = ACTIONS(1597), + [anon_sym_DOLLARoffsetof] = ACTIONS(1597), + [anon_sym_DOLLARqnameof] = ACTIONS(1597), + [anon_sym_DOLLARvaconst] = ACTIONS(1597), + [anon_sym_DOLLARvaarg] = ACTIONS(1597), + [anon_sym_DOLLARvaref] = ACTIONS(1597), + [anon_sym_DOLLARvaexpr] = ACTIONS(1597), + [anon_sym_true] = ACTIONS(1597), + [anon_sym_false] = ACTIONS(1597), + [anon_sym_null] = ACTIONS(1597), + [anon_sym_DOLLARvacount] = ACTIONS(1597), + [anon_sym_DOLLARappend] = ACTIONS(1597), + [anon_sym_DOLLARconcat] = ACTIONS(1597), + [anon_sym_DOLLAReval] = ACTIONS(1597), + [anon_sym_DOLLARis_const] = ACTIONS(1597), + [anon_sym_DOLLARsizeof] = ACTIONS(1597), + [anon_sym_DOLLARstringify] = ACTIONS(1597), + [anon_sym_DOLLARand] = ACTIONS(1597), + [anon_sym_DOLLARdefined] = ACTIONS(1597), + [anon_sym_DOLLARembed] = ACTIONS(1597), + [anon_sym_DOLLARor] = ACTIONS(1597), + [anon_sym_DOLLARfeature] = ACTIONS(1597), + [anon_sym_DOLLARassignable] = ACTIONS(1597), + [anon_sym_BANG] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_DASH_DASH] = ACTIONS(1599), + [anon_sym_typeid] = ACTIONS(1597), + [anon_sym_LBRACE_PIPE] = ACTIONS(1599), + [anon_sym_void] = ACTIONS(1597), + [anon_sym_bool] = ACTIONS(1597), + [anon_sym_char] = ACTIONS(1597), + [anon_sym_ichar] = ACTIONS(1597), + [anon_sym_short] = ACTIONS(1597), + [anon_sym_ushort] = ACTIONS(1597), + [anon_sym_uint] = ACTIONS(1597), + [anon_sym_long] = ACTIONS(1597), + [anon_sym_ulong] = ACTIONS(1597), + [anon_sym_int128] = ACTIONS(1597), + [anon_sym_uint128] = ACTIONS(1597), + [anon_sym_float] = ACTIONS(1597), + [anon_sym_double] = ACTIONS(1597), + [anon_sym_float16] = ACTIONS(1597), + [anon_sym_bfloat16] = ACTIONS(1597), + [anon_sym_float128] = ACTIONS(1597), + [anon_sym_iptr] = ACTIONS(1597), + [anon_sym_uptr] = ACTIONS(1597), + [anon_sym_isz] = ACTIONS(1597), + [anon_sym_usz] = ACTIONS(1597), + [anon_sym_anyfault] = ACTIONS(1597), + [anon_sym_any] = ACTIONS(1597), + [anon_sym_DOLLARtypeof] = ACTIONS(1597), + [anon_sym_DOLLARtypefrom] = ACTIONS(1597), + [anon_sym_DOLLARvatype] = ACTIONS(1597), + [anon_sym_DOLLARevaltype] = ACTIONS(1597), + [sym_real_literal] = ACTIONS(1599), }, [672] = { [sym_line_comment] = STATE(672), [sym_doc_comment] = STATE(672), [sym_block_comment] = STATE(672), - [sym_ident] = ACTIONS(1576), - [sym_integer_literal] = ACTIONS(1578), - [anon_sym_SQUOTE] = ACTIONS(1578), - [anon_sym_DQUOTE] = ACTIONS(1578), - [anon_sym_BQUOTE] = ACTIONS(1578), - [sym_bytes_literal] = ACTIONS(1578), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1576), - [sym_at_ident] = ACTIONS(1578), - [sym_hash_ident] = ACTIONS(1578), - [sym_type_ident] = ACTIONS(1578), - [sym_ct_type_ident] = ACTIONS(1578), - [sym_const_ident] = ACTIONS(1576), - [sym_builtin] = ACTIONS(1578), - [anon_sym_LPAREN] = ACTIONS(1578), - [anon_sym_AMP] = ACTIONS(1576), - [anon_sym_static] = ACTIONS(1576), - [anon_sym_tlocal] = ACTIONS(1576), - [anon_sym_SEMI] = ACTIONS(1578), - [anon_sym_fn] = ACTIONS(1576), - [anon_sym_LBRACE] = ACTIONS(1576), - [anon_sym_const] = ACTIONS(1576), - [anon_sym_var] = ACTIONS(1576), - [anon_sym_return] = ACTIONS(1576), - [anon_sym_continue] = ACTIONS(1576), - [anon_sym_break] = ACTIONS(1576), - [anon_sym_defer] = ACTIONS(1576), - [anon_sym_assert] = ACTIONS(1576), - [anon_sym_nextcase] = ACTIONS(1576), - [anon_sym_switch] = ACTIONS(1576), - [anon_sym_AMP_AMP] = ACTIONS(1578), - [anon_sym_if] = ACTIONS(1576), - [anon_sym_for] = ACTIONS(1576), - [anon_sym_foreach] = ACTIONS(1576), - [anon_sym_foreach_r] = ACTIONS(1576), - [anon_sym_while] = ACTIONS(1576), - [anon_sym_do] = ACTIONS(1576), - [anon_sym_int] = ACTIONS(1576), - [anon_sym_PLUS] = ACTIONS(1576), - [anon_sym_DASH] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(1578), - [anon_sym_asm] = ACTIONS(1576), - [anon_sym_DOLLARassert] = ACTIONS(1576), - [anon_sym_DOLLARerror] = ACTIONS(1576), - [anon_sym_DOLLARecho] = ACTIONS(1576), - [anon_sym_DOLLARif] = ACTIONS(1576), - [anon_sym_DOLLARswitch] = ACTIONS(1576), - [anon_sym_DOLLARfor] = ACTIONS(1576), - [anon_sym_DOLLARforeach] = ACTIONS(1576), - [anon_sym_DOLLARendforeach] = ACTIONS(1576), - [anon_sym_DOLLARalignof] = ACTIONS(1576), - [anon_sym_DOLLARextnameof] = ACTIONS(1576), - [anon_sym_DOLLARnameof] = ACTIONS(1576), - [anon_sym_DOLLARoffsetof] = ACTIONS(1576), - [anon_sym_DOLLARqnameof] = ACTIONS(1576), - [anon_sym_DOLLARvaconst] = ACTIONS(1576), - [anon_sym_DOLLARvaarg] = ACTIONS(1576), - [anon_sym_DOLLARvaref] = ACTIONS(1576), - [anon_sym_DOLLARvaexpr] = ACTIONS(1576), - [anon_sym_true] = ACTIONS(1576), - [anon_sym_false] = ACTIONS(1576), - [anon_sym_null] = ACTIONS(1576), - [anon_sym_DOLLARvacount] = ACTIONS(1576), - [anon_sym_DOLLARappend] = ACTIONS(1576), - [anon_sym_DOLLARconcat] = ACTIONS(1576), - [anon_sym_DOLLAReval] = ACTIONS(1576), - [anon_sym_DOLLARis_const] = ACTIONS(1576), - [anon_sym_DOLLARsizeof] = ACTIONS(1576), - [anon_sym_DOLLARstringify] = ACTIONS(1576), - [anon_sym_DOLLARand] = ACTIONS(1576), - [anon_sym_DOLLARdefined] = ACTIONS(1576), - [anon_sym_DOLLARembed] = ACTIONS(1576), - [anon_sym_DOLLARor] = ACTIONS(1576), - [anon_sym_DOLLARfeature] = ACTIONS(1576), - [anon_sym_DOLLARassignable] = ACTIONS(1576), - [anon_sym_BANG] = ACTIONS(1578), - [anon_sym_TILDE] = ACTIONS(1578), - [anon_sym_PLUS_PLUS] = ACTIONS(1578), - [anon_sym_DASH_DASH] = ACTIONS(1578), - [anon_sym_typeid] = ACTIONS(1576), - [anon_sym_LBRACE_PIPE] = ACTIONS(1578), - [anon_sym_void] = ACTIONS(1576), - [anon_sym_bool] = ACTIONS(1576), - [anon_sym_char] = ACTIONS(1576), - [anon_sym_ichar] = ACTIONS(1576), - [anon_sym_short] = ACTIONS(1576), - [anon_sym_ushort] = ACTIONS(1576), - [anon_sym_uint] = ACTIONS(1576), - [anon_sym_long] = ACTIONS(1576), - [anon_sym_ulong] = ACTIONS(1576), - [anon_sym_int128] = ACTIONS(1576), - [anon_sym_uint128] = ACTIONS(1576), - [anon_sym_float] = ACTIONS(1576), - [anon_sym_double] = ACTIONS(1576), - [anon_sym_float16] = ACTIONS(1576), - [anon_sym_bfloat16] = ACTIONS(1576), - [anon_sym_float128] = ACTIONS(1576), - [anon_sym_iptr] = ACTIONS(1576), - [anon_sym_uptr] = ACTIONS(1576), - [anon_sym_isz] = ACTIONS(1576), - [anon_sym_usz] = ACTIONS(1576), - [anon_sym_anyfault] = ACTIONS(1576), - [anon_sym_any] = ACTIONS(1576), - [anon_sym_DOLLARtypeof] = ACTIONS(1576), - [anon_sym_DOLLARtypefrom] = ACTIONS(1576), - [anon_sym_DOLLARvatype] = ACTIONS(1576), - [anon_sym_DOLLARevaltype] = ACTIONS(1576), - [sym_real_literal] = ACTIONS(1578), + [sym_ident] = ACTIONS(1589), + [sym_integer_literal] = ACTIONS(1591), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1591), + [anon_sym_BQUOTE] = ACTIONS(1591), + [sym_bytes_literal] = ACTIONS(1591), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1589), + [sym_at_ident] = ACTIONS(1591), + [sym_hash_ident] = ACTIONS(1591), + [sym_type_ident] = ACTIONS(1591), + [sym_ct_type_ident] = ACTIONS(1591), + [sym_const_ident] = ACTIONS(1589), + [sym_builtin] = ACTIONS(1591), + [anon_sym_LPAREN] = ACTIONS(1591), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_static] = ACTIONS(1589), + [anon_sym_tlocal] = ACTIONS(1589), + [anon_sym_SEMI] = ACTIONS(1591), + [anon_sym_fn] = ACTIONS(1589), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_const] = ACTIONS(1589), + [anon_sym_var] = ACTIONS(1589), + [anon_sym_return] = ACTIONS(1589), + [anon_sym_continue] = ACTIONS(1589), + [anon_sym_break] = ACTIONS(1589), + [anon_sym_defer] = ACTIONS(1589), + [anon_sym_assert] = ACTIONS(1589), + [anon_sym_nextcase] = ACTIONS(1589), + [anon_sym_switch] = ACTIONS(1589), + [anon_sym_AMP_AMP] = ACTIONS(1591), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_for] = ACTIONS(1589), + [anon_sym_foreach] = ACTIONS(1589), + [anon_sym_foreach_r] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1589), + [anon_sym_do] = ACTIONS(1589), + [anon_sym_int] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1589), + [anon_sym_STAR] = ACTIONS(1591), + [anon_sym_asm] = ACTIONS(1589), + [anon_sym_DOLLARassert] = ACTIONS(1589), + [anon_sym_DOLLARerror] = ACTIONS(1589), + [anon_sym_DOLLARecho] = ACTIONS(1589), + [anon_sym_DOLLARif] = ACTIONS(1589), + [anon_sym_DOLLARswitch] = ACTIONS(1589), + [anon_sym_DOLLARfor] = ACTIONS(1589), + [anon_sym_DOLLARforeach] = ACTIONS(1589), + [anon_sym_DOLLARendforeach] = ACTIONS(1589), + [anon_sym_DOLLARalignof] = ACTIONS(1589), + [anon_sym_DOLLARextnameof] = ACTIONS(1589), + [anon_sym_DOLLARnameof] = ACTIONS(1589), + [anon_sym_DOLLARoffsetof] = ACTIONS(1589), + [anon_sym_DOLLARqnameof] = ACTIONS(1589), + [anon_sym_DOLLARvaconst] = ACTIONS(1589), + [anon_sym_DOLLARvaarg] = ACTIONS(1589), + [anon_sym_DOLLARvaref] = ACTIONS(1589), + [anon_sym_DOLLARvaexpr] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1589), + [anon_sym_false] = ACTIONS(1589), + [anon_sym_null] = ACTIONS(1589), + [anon_sym_DOLLARvacount] = ACTIONS(1589), + [anon_sym_DOLLARappend] = ACTIONS(1589), + [anon_sym_DOLLARconcat] = ACTIONS(1589), + [anon_sym_DOLLAReval] = ACTIONS(1589), + [anon_sym_DOLLARis_const] = ACTIONS(1589), + [anon_sym_DOLLARsizeof] = ACTIONS(1589), + [anon_sym_DOLLARstringify] = ACTIONS(1589), + [anon_sym_DOLLARand] = ACTIONS(1589), + [anon_sym_DOLLARdefined] = ACTIONS(1589), + [anon_sym_DOLLARembed] = ACTIONS(1589), + [anon_sym_DOLLARor] = ACTIONS(1589), + [anon_sym_DOLLARfeature] = ACTIONS(1589), + [anon_sym_DOLLARassignable] = ACTIONS(1589), + [anon_sym_BANG] = ACTIONS(1591), + [anon_sym_TILDE] = ACTIONS(1591), + [anon_sym_PLUS_PLUS] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1591), + [anon_sym_typeid] = ACTIONS(1589), + [anon_sym_LBRACE_PIPE] = ACTIONS(1591), + [anon_sym_void] = ACTIONS(1589), + [anon_sym_bool] = ACTIONS(1589), + [anon_sym_char] = ACTIONS(1589), + [anon_sym_ichar] = ACTIONS(1589), + [anon_sym_short] = ACTIONS(1589), + [anon_sym_ushort] = ACTIONS(1589), + [anon_sym_uint] = ACTIONS(1589), + [anon_sym_long] = ACTIONS(1589), + [anon_sym_ulong] = ACTIONS(1589), + [anon_sym_int128] = ACTIONS(1589), + [anon_sym_uint128] = ACTIONS(1589), + [anon_sym_float] = ACTIONS(1589), + [anon_sym_double] = ACTIONS(1589), + [anon_sym_float16] = ACTIONS(1589), + [anon_sym_bfloat16] = ACTIONS(1589), + [anon_sym_float128] = ACTIONS(1589), + [anon_sym_iptr] = ACTIONS(1589), + [anon_sym_uptr] = ACTIONS(1589), + [anon_sym_isz] = ACTIONS(1589), + [anon_sym_usz] = ACTIONS(1589), + [anon_sym_anyfault] = ACTIONS(1589), + [anon_sym_any] = ACTIONS(1589), + [anon_sym_DOLLARtypeof] = ACTIONS(1589), + [anon_sym_DOLLARtypefrom] = ACTIONS(1589), + [anon_sym_DOLLARvatype] = ACTIONS(1589), + [anon_sym_DOLLARevaltype] = ACTIONS(1589), + [sym_real_literal] = ACTIONS(1591), }, [673] = { [sym_line_comment] = STATE(673), [sym_doc_comment] = STATE(673), [sym_block_comment] = STATE(673), - [sym_ident] = ACTIONS(1636), - [sym_integer_literal] = ACTIONS(1638), - [anon_sym_SQUOTE] = ACTIONS(1638), - [anon_sym_DQUOTE] = ACTIONS(1638), - [anon_sym_BQUOTE] = ACTIONS(1638), - [sym_bytes_literal] = ACTIONS(1638), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1636), - [sym_at_ident] = ACTIONS(1638), - [sym_hash_ident] = ACTIONS(1638), - [sym_type_ident] = ACTIONS(1638), - [sym_ct_type_ident] = ACTIONS(1638), - [sym_const_ident] = ACTIONS(1636), - [sym_builtin] = ACTIONS(1638), - [anon_sym_LPAREN] = ACTIONS(1638), - [anon_sym_AMP] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(1636), - [anon_sym_tlocal] = ACTIONS(1636), - [anon_sym_SEMI] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1636), - [anon_sym_LBRACE] = ACTIONS(1636), - [anon_sym_const] = ACTIONS(1636), - [anon_sym_var] = ACTIONS(1636), - [anon_sym_return] = ACTIONS(1636), - [anon_sym_continue] = ACTIONS(1636), - [anon_sym_break] = ACTIONS(1636), - [anon_sym_defer] = ACTIONS(1636), - [anon_sym_assert] = ACTIONS(1636), - [anon_sym_nextcase] = ACTIONS(1636), - [anon_sym_switch] = ACTIONS(1636), - [anon_sym_AMP_AMP] = ACTIONS(1638), - [anon_sym_if] = ACTIONS(1636), - [anon_sym_for] = ACTIONS(1636), - [anon_sym_foreach] = ACTIONS(1636), - [anon_sym_foreach_r] = ACTIONS(1636), - [anon_sym_while] = ACTIONS(1636), - [anon_sym_do] = ACTIONS(1636), - [anon_sym_int] = ACTIONS(1636), - [anon_sym_PLUS] = ACTIONS(1636), - [anon_sym_DASH] = ACTIONS(1636), - [anon_sym_STAR] = ACTIONS(1638), - [anon_sym_asm] = ACTIONS(1636), - [anon_sym_DOLLARassert] = ACTIONS(1636), - [anon_sym_DOLLARerror] = ACTIONS(1636), - [anon_sym_DOLLARecho] = ACTIONS(1636), - [anon_sym_DOLLARif] = ACTIONS(1636), - [anon_sym_DOLLARswitch] = ACTIONS(1636), - [anon_sym_DOLLARfor] = ACTIONS(1636), - [anon_sym_DOLLARforeach] = ACTIONS(1636), - [anon_sym_DOLLARendforeach] = ACTIONS(1636), - [anon_sym_DOLLARalignof] = ACTIONS(1636), - [anon_sym_DOLLARextnameof] = ACTIONS(1636), - [anon_sym_DOLLARnameof] = ACTIONS(1636), - [anon_sym_DOLLARoffsetof] = ACTIONS(1636), - [anon_sym_DOLLARqnameof] = ACTIONS(1636), - [anon_sym_DOLLARvaconst] = ACTIONS(1636), - [anon_sym_DOLLARvaarg] = ACTIONS(1636), - [anon_sym_DOLLARvaref] = ACTIONS(1636), - [anon_sym_DOLLARvaexpr] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1636), - [anon_sym_false] = ACTIONS(1636), - [anon_sym_null] = ACTIONS(1636), - [anon_sym_DOLLARvacount] = ACTIONS(1636), - [anon_sym_DOLLARappend] = ACTIONS(1636), - [anon_sym_DOLLARconcat] = ACTIONS(1636), - [anon_sym_DOLLAReval] = ACTIONS(1636), - [anon_sym_DOLLARis_const] = ACTIONS(1636), - [anon_sym_DOLLARsizeof] = ACTIONS(1636), - [anon_sym_DOLLARstringify] = ACTIONS(1636), - [anon_sym_DOLLARand] = ACTIONS(1636), - [anon_sym_DOLLARdefined] = ACTIONS(1636), - [anon_sym_DOLLARembed] = ACTIONS(1636), - [anon_sym_DOLLARor] = ACTIONS(1636), - [anon_sym_DOLLARfeature] = ACTIONS(1636), - [anon_sym_DOLLARassignable] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1638), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_PLUS_PLUS] = ACTIONS(1638), - [anon_sym_DASH_DASH] = ACTIONS(1638), - [anon_sym_typeid] = ACTIONS(1636), - [anon_sym_LBRACE_PIPE] = ACTIONS(1638), - [anon_sym_void] = ACTIONS(1636), - [anon_sym_bool] = ACTIONS(1636), - [anon_sym_char] = ACTIONS(1636), - [anon_sym_ichar] = ACTIONS(1636), - [anon_sym_short] = ACTIONS(1636), - [anon_sym_ushort] = ACTIONS(1636), - [anon_sym_uint] = ACTIONS(1636), - [anon_sym_long] = ACTIONS(1636), - [anon_sym_ulong] = ACTIONS(1636), - [anon_sym_int128] = ACTIONS(1636), - [anon_sym_uint128] = ACTIONS(1636), - [anon_sym_float] = ACTIONS(1636), - [anon_sym_double] = ACTIONS(1636), - [anon_sym_float16] = ACTIONS(1636), - [anon_sym_bfloat16] = ACTIONS(1636), - [anon_sym_float128] = ACTIONS(1636), - [anon_sym_iptr] = ACTIONS(1636), - [anon_sym_uptr] = ACTIONS(1636), - [anon_sym_isz] = ACTIONS(1636), - [anon_sym_usz] = ACTIONS(1636), - [anon_sym_anyfault] = ACTIONS(1636), - [anon_sym_any] = ACTIONS(1636), - [anon_sym_DOLLARtypeof] = ACTIONS(1636), - [anon_sym_DOLLARtypefrom] = ACTIONS(1636), - [anon_sym_DOLLARvatype] = ACTIONS(1636), - [anon_sym_DOLLARevaltype] = ACTIONS(1636), - [sym_real_literal] = ACTIONS(1638), + [sym_ident] = ACTIONS(1573), + [sym_integer_literal] = ACTIONS(1575), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_DQUOTE] = ACTIONS(1575), + [anon_sym_BQUOTE] = ACTIONS(1575), + [sym_bytes_literal] = ACTIONS(1575), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1573), + [sym_at_ident] = ACTIONS(1575), + [sym_hash_ident] = ACTIONS(1575), + [sym_type_ident] = ACTIONS(1575), + [sym_ct_type_ident] = ACTIONS(1575), + [sym_const_ident] = ACTIONS(1573), + [sym_builtin] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(1575), + [anon_sym_AMP] = ACTIONS(1573), + [anon_sym_static] = ACTIONS(1573), + [anon_sym_tlocal] = ACTIONS(1573), + [anon_sym_SEMI] = ACTIONS(1575), + [anon_sym_fn] = ACTIONS(1573), + [anon_sym_LBRACE] = ACTIONS(1573), + [anon_sym_const] = ACTIONS(1573), + [anon_sym_var] = ACTIONS(1573), + [anon_sym_return] = ACTIONS(1573), + [anon_sym_continue] = ACTIONS(1573), + [anon_sym_break] = ACTIONS(1573), + [anon_sym_defer] = ACTIONS(1573), + [anon_sym_assert] = ACTIONS(1573), + [anon_sym_nextcase] = ACTIONS(1573), + [anon_sym_switch] = ACTIONS(1573), + [anon_sym_AMP_AMP] = ACTIONS(1575), + [anon_sym_if] = ACTIONS(1573), + [anon_sym_for] = ACTIONS(1573), + [anon_sym_foreach] = ACTIONS(1573), + [anon_sym_foreach_r] = ACTIONS(1573), + [anon_sym_while] = ACTIONS(1573), + [anon_sym_do] = ACTIONS(1573), + [anon_sym_int] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1573), + [anon_sym_DASH] = ACTIONS(1573), + [anon_sym_STAR] = ACTIONS(1575), + [anon_sym_asm] = ACTIONS(1573), + [anon_sym_DOLLARassert] = ACTIONS(1573), + [anon_sym_DOLLARerror] = ACTIONS(1573), + [anon_sym_DOLLARecho] = ACTIONS(1573), + [anon_sym_DOLLARif] = ACTIONS(1573), + [anon_sym_DOLLARswitch] = ACTIONS(1573), + [anon_sym_DOLLARfor] = ACTIONS(1573), + [anon_sym_DOLLARforeach] = ACTIONS(1573), + [anon_sym_DOLLARendforeach] = ACTIONS(1573), + [anon_sym_DOLLARalignof] = ACTIONS(1573), + [anon_sym_DOLLARextnameof] = ACTIONS(1573), + [anon_sym_DOLLARnameof] = ACTIONS(1573), + [anon_sym_DOLLARoffsetof] = ACTIONS(1573), + [anon_sym_DOLLARqnameof] = ACTIONS(1573), + [anon_sym_DOLLARvaconst] = ACTIONS(1573), + [anon_sym_DOLLARvaarg] = ACTIONS(1573), + [anon_sym_DOLLARvaref] = ACTIONS(1573), + [anon_sym_DOLLARvaexpr] = ACTIONS(1573), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [anon_sym_null] = ACTIONS(1573), + [anon_sym_DOLLARvacount] = ACTIONS(1573), + [anon_sym_DOLLARappend] = ACTIONS(1573), + [anon_sym_DOLLARconcat] = ACTIONS(1573), + [anon_sym_DOLLAReval] = ACTIONS(1573), + [anon_sym_DOLLARis_const] = ACTIONS(1573), + [anon_sym_DOLLARsizeof] = ACTIONS(1573), + [anon_sym_DOLLARstringify] = ACTIONS(1573), + [anon_sym_DOLLARand] = ACTIONS(1573), + [anon_sym_DOLLARdefined] = ACTIONS(1573), + [anon_sym_DOLLARembed] = ACTIONS(1573), + [anon_sym_DOLLARor] = ACTIONS(1573), + [anon_sym_DOLLARfeature] = ACTIONS(1573), + [anon_sym_DOLLARassignable] = ACTIONS(1573), + [anon_sym_BANG] = ACTIONS(1575), + [anon_sym_TILDE] = ACTIONS(1575), + [anon_sym_PLUS_PLUS] = ACTIONS(1575), + [anon_sym_DASH_DASH] = ACTIONS(1575), + [anon_sym_typeid] = ACTIONS(1573), + [anon_sym_LBRACE_PIPE] = ACTIONS(1575), + [anon_sym_void] = ACTIONS(1573), + [anon_sym_bool] = ACTIONS(1573), + [anon_sym_char] = ACTIONS(1573), + [anon_sym_ichar] = ACTIONS(1573), + [anon_sym_short] = ACTIONS(1573), + [anon_sym_ushort] = ACTIONS(1573), + [anon_sym_uint] = ACTIONS(1573), + [anon_sym_long] = ACTIONS(1573), + [anon_sym_ulong] = ACTIONS(1573), + [anon_sym_int128] = ACTIONS(1573), + [anon_sym_uint128] = ACTIONS(1573), + [anon_sym_float] = ACTIONS(1573), + [anon_sym_double] = ACTIONS(1573), + [anon_sym_float16] = ACTIONS(1573), + [anon_sym_bfloat16] = ACTIONS(1573), + [anon_sym_float128] = ACTIONS(1573), + [anon_sym_iptr] = ACTIONS(1573), + [anon_sym_uptr] = ACTIONS(1573), + [anon_sym_isz] = ACTIONS(1573), + [anon_sym_usz] = ACTIONS(1573), + [anon_sym_anyfault] = ACTIONS(1573), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_DOLLARtypeof] = ACTIONS(1573), + [anon_sym_DOLLARtypefrom] = ACTIONS(1573), + [anon_sym_DOLLARvatype] = ACTIONS(1573), + [anon_sym_DOLLARevaltype] = ACTIONS(1573), + [sym_real_literal] = ACTIONS(1575), }, [674] = { [sym_line_comment] = STATE(674), [sym_doc_comment] = STATE(674), [sym_block_comment] = STATE(674), - [sym_ident] = ACTIONS(1600), - [sym_integer_literal] = ACTIONS(1602), - [anon_sym_SQUOTE] = ACTIONS(1602), - [anon_sym_DQUOTE] = ACTIONS(1602), - [anon_sym_BQUOTE] = ACTIONS(1602), - [sym_bytes_literal] = ACTIONS(1602), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1600), - [sym_at_ident] = ACTIONS(1602), - [sym_hash_ident] = ACTIONS(1602), - [sym_type_ident] = ACTIONS(1602), - [sym_ct_type_ident] = ACTIONS(1602), - [sym_const_ident] = ACTIONS(1600), - [sym_builtin] = ACTIONS(1602), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_AMP] = ACTIONS(1600), - [anon_sym_static] = ACTIONS(1600), - [anon_sym_tlocal] = ACTIONS(1600), - [anon_sym_SEMI] = ACTIONS(1602), - [anon_sym_fn] = ACTIONS(1600), - [anon_sym_LBRACE] = ACTIONS(1600), - [anon_sym_const] = ACTIONS(1600), - [anon_sym_var] = ACTIONS(1600), - [anon_sym_return] = ACTIONS(1600), - [anon_sym_continue] = ACTIONS(1600), - [anon_sym_break] = ACTIONS(1600), - [anon_sym_defer] = ACTIONS(1600), - [anon_sym_assert] = ACTIONS(1600), - [anon_sym_nextcase] = ACTIONS(1600), - [anon_sym_switch] = ACTIONS(1600), - [anon_sym_AMP_AMP] = ACTIONS(1602), - [anon_sym_if] = ACTIONS(1600), - [anon_sym_for] = ACTIONS(1600), - [anon_sym_foreach] = ACTIONS(1600), - [anon_sym_foreach_r] = ACTIONS(1600), - [anon_sym_while] = ACTIONS(1600), - [anon_sym_do] = ACTIONS(1600), - [anon_sym_int] = ACTIONS(1600), - [anon_sym_PLUS] = ACTIONS(1600), - [anon_sym_DASH] = ACTIONS(1600), - [anon_sym_STAR] = ACTIONS(1602), - [anon_sym_asm] = ACTIONS(1600), - [anon_sym_DOLLARassert] = ACTIONS(1600), - [anon_sym_DOLLARerror] = ACTIONS(1600), - [anon_sym_DOLLARecho] = ACTIONS(1600), - [anon_sym_DOLLARif] = ACTIONS(1600), - [anon_sym_DOLLARswitch] = ACTIONS(1600), - [anon_sym_DOLLARfor] = ACTIONS(1600), - [anon_sym_DOLLARforeach] = ACTIONS(1600), - [anon_sym_DOLLARendforeach] = ACTIONS(1600), - [anon_sym_DOLLARalignof] = ACTIONS(1600), - [anon_sym_DOLLARextnameof] = ACTIONS(1600), - [anon_sym_DOLLARnameof] = ACTIONS(1600), - [anon_sym_DOLLARoffsetof] = ACTIONS(1600), - [anon_sym_DOLLARqnameof] = ACTIONS(1600), - [anon_sym_DOLLARvaconst] = ACTIONS(1600), - [anon_sym_DOLLARvaarg] = ACTIONS(1600), - [anon_sym_DOLLARvaref] = ACTIONS(1600), - [anon_sym_DOLLARvaexpr] = ACTIONS(1600), - [anon_sym_true] = ACTIONS(1600), - [anon_sym_false] = ACTIONS(1600), - [anon_sym_null] = ACTIONS(1600), - [anon_sym_DOLLARvacount] = ACTIONS(1600), - [anon_sym_DOLLARappend] = ACTIONS(1600), - [anon_sym_DOLLARconcat] = ACTIONS(1600), - [anon_sym_DOLLAReval] = ACTIONS(1600), - [anon_sym_DOLLARis_const] = ACTIONS(1600), - [anon_sym_DOLLARsizeof] = ACTIONS(1600), - [anon_sym_DOLLARstringify] = ACTIONS(1600), - [anon_sym_DOLLARand] = ACTIONS(1600), - [anon_sym_DOLLARdefined] = ACTIONS(1600), - [anon_sym_DOLLARembed] = ACTIONS(1600), - [anon_sym_DOLLARor] = ACTIONS(1600), - [anon_sym_DOLLARfeature] = ACTIONS(1600), - [anon_sym_DOLLARassignable] = ACTIONS(1600), - [anon_sym_BANG] = ACTIONS(1602), - [anon_sym_TILDE] = ACTIONS(1602), - [anon_sym_PLUS_PLUS] = ACTIONS(1602), - [anon_sym_DASH_DASH] = ACTIONS(1602), - [anon_sym_typeid] = ACTIONS(1600), - [anon_sym_LBRACE_PIPE] = ACTIONS(1602), - [anon_sym_void] = ACTIONS(1600), - [anon_sym_bool] = ACTIONS(1600), - [anon_sym_char] = ACTIONS(1600), - [anon_sym_ichar] = ACTIONS(1600), - [anon_sym_short] = ACTIONS(1600), - [anon_sym_ushort] = ACTIONS(1600), - [anon_sym_uint] = ACTIONS(1600), - [anon_sym_long] = ACTIONS(1600), - [anon_sym_ulong] = ACTIONS(1600), - [anon_sym_int128] = ACTIONS(1600), - [anon_sym_uint128] = ACTIONS(1600), - [anon_sym_float] = ACTIONS(1600), - [anon_sym_double] = ACTIONS(1600), - [anon_sym_float16] = ACTIONS(1600), - [anon_sym_bfloat16] = ACTIONS(1600), - [anon_sym_float128] = ACTIONS(1600), - [anon_sym_iptr] = ACTIONS(1600), - [anon_sym_uptr] = ACTIONS(1600), - [anon_sym_isz] = ACTIONS(1600), - [anon_sym_usz] = ACTIONS(1600), - [anon_sym_anyfault] = ACTIONS(1600), - [anon_sym_any] = ACTIONS(1600), - [anon_sym_DOLLARtypeof] = ACTIONS(1600), - [anon_sym_DOLLARtypefrom] = ACTIONS(1600), - [anon_sym_DOLLARvatype] = ACTIONS(1600), - [anon_sym_DOLLARevaltype] = ACTIONS(1600), - [sym_real_literal] = ACTIONS(1602), + [sym_ident] = ACTIONS(1557), + [sym_integer_literal] = ACTIONS(1559), + [anon_sym_SQUOTE] = ACTIONS(1559), + [anon_sym_DQUOTE] = ACTIONS(1559), + [anon_sym_BQUOTE] = ACTIONS(1559), + [sym_bytes_literal] = ACTIONS(1559), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1557), + [sym_at_ident] = ACTIONS(1559), + [sym_hash_ident] = ACTIONS(1559), + [sym_type_ident] = ACTIONS(1559), + [sym_ct_type_ident] = ACTIONS(1559), + [sym_const_ident] = ACTIONS(1557), + [sym_builtin] = ACTIONS(1559), + [anon_sym_LPAREN] = ACTIONS(1559), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_static] = ACTIONS(1557), + [anon_sym_tlocal] = ACTIONS(1557), + [anon_sym_SEMI] = ACTIONS(1559), + [anon_sym_fn] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1557), + [anon_sym_const] = ACTIONS(1557), + [anon_sym_var] = ACTIONS(1557), + [anon_sym_return] = ACTIONS(1557), + [anon_sym_continue] = ACTIONS(1557), + [anon_sym_break] = ACTIONS(1557), + [anon_sym_defer] = ACTIONS(1557), + [anon_sym_assert] = ACTIONS(1557), + [anon_sym_nextcase] = ACTIONS(1557), + [anon_sym_switch] = ACTIONS(1557), + [anon_sym_AMP_AMP] = ACTIONS(1559), + [anon_sym_if] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(1557), + [anon_sym_foreach] = ACTIONS(1557), + [anon_sym_foreach_r] = ACTIONS(1557), + [anon_sym_while] = ACTIONS(1557), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_int] = ACTIONS(1557), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_STAR] = ACTIONS(1559), + [anon_sym_asm] = ACTIONS(1557), + [anon_sym_DOLLARassert] = ACTIONS(1557), + [anon_sym_DOLLARerror] = ACTIONS(1557), + [anon_sym_DOLLARecho] = ACTIONS(1557), + [anon_sym_DOLLARif] = ACTIONS(1557), + [anon_sym_DOLLARswitch] = ACTIONS(1557), + [anon_sym_DOLLARfor] = ACTIONS(1557), + [anon_sym_DOLLARforeach] = ACTIONS(1557), + [anon_sym_DOLLARendforeach] = ACTIONS(1557), + [anon_sym_DOLLARalignof] = ACTIONS(1557), + [anon_sym_DOLLARextnameof] = ACTIONS(1557), + [anon_sym_DOLLARnameof] = ACTIONS(1557), + [anon_sym_DOLLARoffsetof] = ACTIONS(1557), + [anon_sym_DOLLARqnameof] = ACTIONS(1557), + [anon_sym_DOLLARvaconst] = ACTIONS(1557), + [anon_sym_DOLLARvaarg] = ACTIONS(1557), + [anon_sym_DOLLARvaref] = ACTIONS(1557), + [anon_sym_DOLLARvaexpr] = ACTIONS(1557), + [anon_sym_true] = ACTIONS(1557), + [anon_sym_false] = ACTIONS(1557), + [anon_sym_null] = ACTIONS(1557), + [anon_sym_DOLLARvacount] = ACTIONS(1557), + [anon_sym_DOLLARappend] = ACTIONS(1557), + [anon_sym_DOLLARconcat] = ACTIONS(1557), + [anon_sym_DOLLAReval] = ACTIONS(1557), + [anon_sym_DOLLARis_const] = ACTIONS(1557), + [anon_sym_DOLLARsizeof] = ACTIONS(1557), + [anon_sym_DOLLARstringify] = ACTIONS(1557), + [anon_sym_DOLLARand] = ACTIONS(1557), + [anon_sym_DOLLARdefined] = ACTIONS(1557), + [anon_sym_DOLLARembed] = ACTIONS(1557), + [anon_sym_DOLLARor] = ACTIONS(1557), + [anon_sym_DOLLARfeature] = ACTIONS(1557), + [anon_sym_DOLLARassignable] = ACTIONS(1557), + [anon_sym_BANG] = ACTIONS(1559), + [anon_sym_TILDE] = ACTIONS(1559), + [anon_sym_PLUS_PLUS] = ACTIONS(1559), + [anon_sym_DASH_DASH] = ACTIONS(1559), + [anon_sym_typeid] = ACTIONS(1557), + [anon_sym_LBRACE_PIPE] = ACTIONS(1559), + [anon_sym_void] = ACTIONS(1557), + [anon_sym_bool] = ACTIONS(1557), + [anon_sym_char] = ACTIONS(1557), + [anon_sym_ichar] = ACTIONS(1557), + [anon_sym_short] = ACTIONS(1557), + [anon_sym_ushort] = ACTIONS(1557), + [anon_sym_uint] = ACTIONS(1557), + [anon_sym_long] = ACTIONS(1557), + [anon_sym_ulong] = ACTIONS(1557), + [anon_sym_int128] = ACTIONS(1557), + [anon_sym_uint128] = ACTIONS(1557), + [anon_sym_float] = ACTIONS(1557), + [anon_sym_double] = ACTIONS(1557), + [anon_sym_float16] = ACTIONS(1557), + [anon_sym_bfloat16] = ACTIONS(1557), + [anon_sym_float128] = ACTIONS(1557), + [anon_sym_iptr] = ACTIONS(1557), + [anon_sym_uptr] = ACTIONS(1557), + [anon_sym_isz] = ACTIONS(1557), + [anon_sym_usz] = ACTIONS(1557), + [anon_sym_anyfault] = ACTIONS(1557), + [anon_sym_any] = ACTIONS(1557), + [anon_sym_DOLLARtypeof] = ACTIONS(1557), + [anon_sym_DOLLARtypefrom] = ACTIONS(1557), + [anon_sym_DOLLARvatype] = ACTIONS(1557), + [anon_sym_DOLLARevaltype] = ACTIONS(1557), + [sym_real_literal] = ACTIONS(1559), }, [675] = { [sym_line_comment] = STATE(675), [sym_doc_comment] = STATE(675), [sym_block_comment] = STATE(675), - [sym_ident] = ACTIONS(1410), - [sym_integer_literal] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1412), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_BQUOTE] = ACTIONS(1412), - [sym_bytes_literal] = ACTIONS(1412), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1410), - [sym_at_ident] = ACTIONS(1412), - [sym_hash_ident] = ACTIONS(1412), - [sym_type_ident] = ACTIONS(1412), - [sym_ct_type_ident] = ACTIONS(1412), - [sym_const_ident] = ACTIONS(1410), - [sym_builtin] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1410), - [anon_sym_static] = ACTIONS(1410), - [anon_sym_tlocal] = ACTIONS(1410), - [anon_sym_SEMI] = ACTIONS(1412), - [anon_sym_fn] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_var] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_defer] = ACTIONS(1410), - [anon_sym_assert] = ACTIONS(1410), - [anon_sym_nextcase] = ACTIONS(1410), - [anon_sym_switch] = ACTIONS(1410), - [anon_sym_AMP_AMP] = ACTIONS(1412), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_foreach] = ACTIONS(1410), - [anon_sym_foreach_r] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [anon_sym_do] = ACTIONS(1410), - [anon_sym_int] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1412), - [anon_sym_asm] = ACTIONS(1410), - [anon_sym_DOLLARassert] = ACTIONS(1410), - [anon_sym_DOLLARerror] = ACTIONS(1410), - [anon_sym_DOLLARecho] = ACTIONS(1410), - [anon_sym_DOLLARif] = ACTIONS(1410), - [anon_sym_DOLLARendif] = ACTIONS(1410), - [anon_sym_DOLLARswitch] = ACTIONS(1410), - [anon_sym_DOLLARfor] = ACTIONS(1410), - [anon_sym_DOLLARforeach] = ACTIONS(1410), - [anon_sym_DOLLARalignof] = ACTIONS(1410), - [anon_sym_DOLLARextnameof] = ACTIONS(1410), - [anon_sym_DOLLARnameof] = ACTIONS(1410), - [anon_sym_DOLLARoffsetof] = ACTIONS(1410), - [anon_sym_DOLLARqnameof] = ACTIONS(1410), - [anon_sym_DOLLARvaconst] = ACTIONS(1410), - [anon_sym_DOLLARvaarg] = ACTIONS(1410), - [anon_sym_DOLLARvaref] = ACTIONS(1410), - [anon_sym_DOLLARvaexpr] = ACTIONS(1410), - [anon_sym_true] = ACTIONS(1410), - [anon_sym_false] = ACTIONS(1410), - [anon_sym_null] = ACTIONS(1410), - [anon_sym_DOLLARvacount] = ACTIONS(1410), - [anon_sym_DOLLARappend] = ACTIONS(1410), - [anon_sym_DOLLARconcat] = ACTIONS(1410), - [anon_sym_DOLLAReval] = ACTIONS(1410), - [anon_sym_DOLLARis_const] = ACTIONS(1410), - [anon_sym_DOLLARsizeof] = ACTIONS(1410), - [anon_sym_DOLLARstringify] = ACTIONS(1410), - [anon_sym_DOLLARand] = ACTIONS(1410), - [anon_sym_DOLLARdefined] = ACTIONS(1410), - [anon_sym_DOLLARembed] = ACTIONS(1410), - [anon_sym_DOLLARor] = ACTIONS(1410), - [anon_sym_DOLLARfeature] = ACTIONS(1410), - [anon_sym_DOLLARassignable] = ACTIONS(1410), - [anon_sym_BANG] = ACTIONS(1412), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_PLUS_PLUS] = ACTIONS(1412), - [anon_sym_DASH_DASH] = ACTIONS(1412), - [anon_sym_typeid] = ACTIONS(1410), - [anon_sym_LBRACE_PIPE] = ACTIONS(1412), - [anon_sym_void] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_ichar] = ACTIONS(1410), - [anon_sym_short] = ACTIONS(1410), - [anon_sym_ushort] = ACTIONS(1410), - [anon_sym_uint] = ACTIONS(1410), - [anon_sym_long] = ACTIONS(1410), - [anon_sym_ulong] = ACTIONS(1410), - [anon_sym_int128] = ACTIONS(1410), - [anon_sym_uint128] = ACTIONS(1410), - [anon_sym_float] = ACTIONS(1410), - [anon_sym_double] = ACTIONS(1410), - [anon_sym_float16] = ACTIONS(1410), - [anon_sym_bfloat16] = ACTIONS(1410), - [anon_sym_float128] = ACTIONS(1410), - [anon_sym_iptr] = ACTIONS(1410), - [anon_sym_uptr] = ACTIONS(1410), - [anon_sym_isz] = ACTIONS(1410), - [anon_sym_usz] = ACTIONS(1410), - [anon_sym_anyfault] = ACTIONS(1410), - [anon_sym_any] = ACTIONS(1410), - [anon_sym_DOLLARtypeof] = ACTIONS(1410), - [anon_sym_DOLLARtypefrom] = ACTIONS(1410), - [anon_sym_DOLLARvatype] = ACTIONS(1410), - [anon_sym_DOLLARevaltype] = ACTIONS(1410), - [sym_real_literal] = ACTIONS(1412), + [sym_ident] = ACTIONS(1553), + [sym_integer_literal] = ACTIONS(1555), + [anon_sym_SQUOTE] = ACTIONS(1555), + [anon_sym_DQUOTE] = ACTIONS(1555), + [anon_sym_BQUOTE] = ACTIONS(1555), + [sym_bytes_literal] = ACTIONS(1555), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1553), + [sym_at_ident] = ACTIONS(1555), + [sym_hash_ident] = ACTIONS(1555), + [sym_type_ident] = ACTIONS(1555), + [sym_ct_type_ident] = ACTIONS(1555), + [sym_const_ident] = ACTIONS(1553), + [sym_builtin] = ACTIONS(1555), + [anon_sym_LPAREN] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1553), + [anon_sym_static] = ACTIONS(1553), + [anon_sym_tlocal] = ACTIONS(1553), + [anon_sym_SEMI] = ACTIONS(1555), + [anon_sym_fn] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1553), + [anon_sym_const] = ACTIONS(1553), + [anon_sym_var] = ACTIONS(1553), + [anon_sym_return] = ACTIONS(1553), + [anon_sym_continue] = ACTIONS(1553), + [anon_sym_break] = ACTIONS(1553), + [anon_sym_defer] = ACTIONS(1553), + [anon_sym_assert] = ACTIONS(1553), + [anon_sym_nextcase] = ACTIONS(1553), + [anon_sym_switch] = ACTIONS(1553), + [anon_sym_AMP_AMP] = ACTIONS(1555), + [anon_sym_if] = ACTIONS(1553), + [anon_sym_for] = ACTIONS(1553), + [anon_sym_foreach] = ACTIONS(1553), + [anon_sym_foreach_r] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1553), + [anon_sym_do] = ACTIONS(1553), + [anon_sym_int] = ACTIONS(1553), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1555), + [anon_sym_asm] = ACTIONS(1553), + [anon_sym_DOLLARassert] = ACTIONS(1553), + [anon_sym_DOLLARerror] = ACTIONS(1553), + [anon_sym_DOLLARecho] = ACTIONS(1553), + [anon_sym_DOLLARif] = ACTIONS(1553), + [anon_sym_DOLLARswitch] = ACTIONS(1553), + [anon_sym_DOLLARfor] = ACTIONS(1553), + [anon_sym_DOLLARforeach] = ACTIONS(1553), + [anon_sym_DOLLARendforeach] = ACTIONS(1553), + [anon_sym_DOLLARalignof] = ACTIONS(1553), + [anon_sym_DOLLARextnameof] = ACTIONS(1553), + [anon_sym_DOLLARnameof] = ACTIONS(1553), + [anon_sym_DOLLARoffsetof] = ACTIONS(1553), + [anon_sym_DOLLARqnameof] = ACTIONS(1553), + [anon_sym_DOLLARvaconst] = ACTIONS(1553), + [anon_sym_DOLLARvaarg] = ACTIONS(1553), + [anon_sym_DOLLARvaref] = ACTIONS(1553), + [anon_sym_DOLLARvaexpr] = ACTIONS(1553), + [anon_sym_true] = ACTIONS(1553), + [anon_sym_false] = ACTIONS(1553), + [anon_sym_null] = ACTIONS(1553), + [anon_sym_DOLLARvacount] = ACTIONS(1553), + [anon_sym_DOLLARappend] = ACTIONS(1553), + [anon_sym_DOLLARconcat] = ACTIONS(1553), + [anon_sym_DOLLAReval] = ACTIONS(1553), + [anon_sym_DOLLARis_const] = ACTIONS(1553), + [anon_sym_DOLLARsizeof] = ACTIONS(1553), + [anon_sym_DOLLARstringify] = ACTIONS(1553), + [anon_sym_DOLLARand] = ACTIONS(1553), + [anon_sym_DOLLARdefined] = ACTIONS(1553), + [anon_sym_DOLLARembed] = ACTIONS(1553), + [anon_sym_DOLLARor] = ACTIONS(1553), + [anon_sym_DOLLARfeature] = ACTIONS(1553), + [anon_sym_DOLLARassignable] = ACTIONS(1553), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_TILDE] = ACTIONS(1555), + [anon_sym_PLUS_PLUS] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(1555), + [anon_sym_typeid] = ACTIONS(1553), + [anon_sym_LBRACE_PIPE] = ACTIONS(1555), + [anon_sym_void] = ACTIONS(1553), + [anon_sym_bool] = ACTIONS(1553), + [anon_sym_char] = ACTIONS(1553), + [anon_sym_ichar] = ACTIONS(1553), + [anon_sym_short] = ACTIONS(1553), + [anon_sym_ushort] = ACTIONS(1553), + [anon_sym_uint] = ACTIONS(1553), + [anon_sym_long] = ACTIONS(1553), + [anon_sym_ulong] = ACTIONS(1553), + [anon_sym_int128] = ACTIONS(1553), + [anon_sym_uint128] = ACTIONS(1553), + [anon_sym_float] = ACTIONS(1553), + [anon_sym_double] = ACTIONS(1553), + [anon_sym_float16] = ACTIONS(1553), + [anon_sym_bfloat16] = ACTIONS(1553), + [anon_sym_float128] = ACTIONS(1553), + [anon_sym_iptr] = ACTIONS(1553), + [anon_sym_uptr] = ACTIONS(1553), + [anon_sym_isz] = ACTIONS(1553), + [anon_sym_usz] = ACTIONS(1553), + [anon_sym_anyfault] = ACTIONS(1553), + [anon_sym_any] = ACTIONS(1553), + [anon_sym_DOLLARtypeof] = ACTIONS(1553), + [anon_sym_DOLLARtypefrom] = ACTIONS(1553), + [anon_sym_DOLLARvatype] = ACTIONS(1553), + [anon_sym_DOLLARevaltype] = ACTIONS(1553), + [sym_real_literal] = ACTIONS(1555), }, [676] = { [sym_line_comment] = STATE(676), [sym_doc_comment] = STATE(676), [sym_block_comment] = STATE(676), - [sym_ident] = ACTIONS(1596), - [sym_integer_literal] = ACTIONS(1598), - [anon_sym_SQUOTE] = ACTIONS(1598), - [anon_sym_DQUOTE] = ACTIONS(1598), - [anon_sym_BQUOTE] = ACTIONS(1598), - [sym_bytes_literal] = ACTIONS(1598), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1596), - [sym_at_ident] = ACTIONS(1598), - [sym_hash_ident] = ACTIONS(1598), - [sym_type_ident] = ACTIONS(1598), - [sym_ct_type_ident] = ACTIONS(1598), - [sym_const_ident] = ACTIONS(1596), - [sym_builtin] = ACTIONS(1598), - [anon_sym_LPAREN] = ACTIONS(1598), - [anon_sym_AMP] = ACTIONS(1596), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_tlocal] = ACTIONS(1596), - [anon_sym_SEMI] = ACTIONS(1598), - [anon_sym_fn] = ACTIONS(1596), - [anon_sym_LBRACE] = ACTIONS(1596), - [anon_sym_const] = ACTIONS(1596), - [anon_sym_var] = ACTIONS(1596), - [anon_sym_return] = ACTIONS(1596), - [anon_sym_continue] = ACTIONS(1596), - [anon_sym_break] = ACTIONS(1596), - [anon_sym_defer] = ACTIONS(1596), - [anon_sym_assert] = ACTIONS(1596), - [anon_sym_nextcase] = ACTIONS(1596), - [anon_sym_switch] = ACTIONS(1596), - [anon_sym_AMP_AMP] = ACTIONS(1598), - [anon_sym_if] = ACTIONS(1596), - [anon_sym_for] = ACTIONS(1596), - [anon_sym_foreach] = ACTIONS(1596), - [anon_sym_foreach_r] = ACTIONS(1596), - [anon_sym_while] = ACTIONS(1596), - [anon_sym_do] = ACTIONS(1596), - [anon_sym_int] = ACTIONS(1596), - [anon_sym_PLUS] = ACTIONS(1596), - [anon_sym_DASH] = ACTIONS(1596), - [anon_sym_STAR] = ACTIONS(1598), - [anon_sym_asm] = ACTIONS(1596), - [anon_sym_DOLLARassert] = ACTIONS(1596), - [anon_sym_DOLLARerror] = ACTIONS(1596), - [anon_sym_DOLLARecho] = ACTIONS(1596), - [anon_sym_DOLLARif] = ACTIONS(1596), - [anon_sym_DOLLARswitch] = ACTIONS(1596), - [anon_sym_DOLLARfor] = ACTIONS(1596), - [anon_sym_DOLLARforeach] = ACTIONS(1596), - [anon_sym_DOLLARendforeach] = ACTIONS(1596), - [anon_sym_DOLLARalignof] = ACTIONS(1596), - [anon_sym_DOLLARextnameof] = ACTIONS(1596), - [anon_sym_DOLLARnameof] = ACTIONS(1596), - [anon_sym_DOLLARoffsetof] = ACTIONS(1596), - [anon_sym_DOLLARqnameof] = ACTIONS(1596), - [anon_sym_DOLLARvaconst] = ACTIONS(1596), - [anon_sym_DOLLARvaarg] = ACTIONS(1596), - [anon_sym_DOLLARvaref] = ACTIONS(1596), - [anon_sym_DOLLARvaexpr] = ACTIONS(1596), - [anon_sym_true] = ACTIONS(1596), - [anon_sym_false] = ACTIONS(1596), - [anon_sym_null] = ACTIONS(1596), - [anon_sym_DOLLARvacount] = ACTIONS(1596), - [anon_sym_DOLLARappend] = ACTIONS(1596), - [anon_sym_DOLLARconcat] = ACTIONS(1596), - [anon_sym_DOLLAReval] = ACTIONS(1596), - [anon_sym_DOLLARis_const] = ACTIONS(1596), - [anon_sym_DOLLARsizeof] = ACTIONS(1596), - [anon_sym_DOLLARstringify] = ACTIONS(1596), - [anon_sym_DOLLARand] = ACTIONS(1596), - [anon_sym_DOLLARdefined] = ACTIONS(1596), - [anon_sym_DOLLARembed] = ACTIONS(1596), - [anon_sym_DOLLARor] = ACTIONS(1596), - [anon_sym_DOLLARfeature] = ACTIONS(1596), - [anon_sym_DOLLARassignable] = ACTIONS(1596), - [anon_sym_BANG] = ACTIONS(1598), - [anon_sym_TILDE] = ACTIONS(1598), - [anon_sym_PLUS_PLUS] = ACTIONS(1598), - [anon_sym_DASH_DASH] = ACTIONS(1598), - [anon_sym_typeid] = ACTIONS(1596), - [anon_sym_LBRACE_PIPE] = ACTIONS(1598), - [anon_sym_void] = ACTIONS(1596), - [anon_sym_bool] = ACTIONS(1596), - [anon_sym_char] = ACTIONS(1596), - [anon_sym_ichar] = ACTIONS(1596), - [anon_sym_short] = ACTIONS(1596), - [anon_sym_ushort] = ACTIONS(1596), - [anon_sym_uint] = ACTIONS(1596), - [anon_sym_long] = ACTIONS(1596), - [anon_sym_ulong] = ACTIONS(1596), - [anon_sym_int128] = ACTIONS(1596), - [anon_sym_uint128] = ACTIONS(1596), - [anon_sym_float] = ACTIONS(1596), - [anon_sym_double] = ACTIONS(1596), - [anon_sym_float16] = ACTIONS(1596), - [anon_sym_bfloat16] = ACTIONS(1596), - [anon_sym_float128] = ACTIONS(1596), - [anon_sym_iptr] = ACTIONS(1596), - [anon_sym_uptr] = ACTIONS(1596), - [anon_sym_isz] = ACTIONS(1596), - [anon_sym_usz] = ACTIONS(1596), - [anon_sym_anyfault] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_DOLLARtypeof] = ACTIONS(1596), - [anon_sym_DOLLARtypefrom] = ACTIONS(1596), - [anon_sym_DOLLARvatype] = ACTIONS(1596), - [anon_sym_DOLLARevaltype] = ACTIONS(1596), - [sym_real_literal] = ACTIONS(1598), + [sym_ident] = ACTIONS(1541), + [sym_integer_literal] = ACTIONS(1543), + [anon_sym_SQUOTE] = ACTIONS(1543), + [anon_sym_DQUOTE] = ACTIONS(1543), + [anon_sym_BQUOTE] = ACTIONS(1543), + [sym_bytes_literal] = ACTIONS(1543), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1541), + [sym_at_ident] = ACTIONS(1543), + [sym_hash_ident] = ACTIONS(1543), + [sym_type_ident] = ACTIONS(1543), + [sym_ct_type_ident] = ACTIONS(1543), + [sym_const_ident] = ACTIONS(1541), + [sym_builtin] = ACTIONS(1543), + [anon_sym_LPAREN] = ACTIONS(1543), + [anon_sym_AMP] = ACTIONS(1541), + [anon_sym_static] = ACTIONS(1541), + [anon_sym_tlocal] = ACTIONS(1541), + [anon_sym_SEMI] = ACTIONS(1543), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1541), + [anon_sym_const] = ACTIONS(1541), + [anon_sym_var] = ACTIONS(1541), + [anon_sym_return] = ACTIONS(1541), + [anon_sym_continue] = ACTIONS(1541), + [anon_sym_break] = ACTIONS(1541), + [anon_sym_defer] = ACTIONS(1541), + [anon_sym_assert] = ACTIONS(1541), + [anon_sym_nextcase] = ACTIONS(1541), + [anon_sym_switch] = ACTIONS(1541), + [anon_sym_AMP_AMP] = ACTIONS(1543), + [anon_sym_if] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1541), + [anon_sym_foreach] = ACTIONS(1541), + [anon_sym_foreach_r] = ACTIONS(1541), + [anon_sym_while] = ACTIONS(1541), + [anon_sym_do] = ACTIONS(1541), + [anon_sym_int] = ACTIONS(1541), + [anon_sym_PLUS] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_asm] = ACTIONS(1541), + [anon_sym_DOLLARassert] = ACTIONS(1541), + [anon_sym_DOLLARerror] = ACTIONS(1541), + [anon_sym_DOLLARecho] = ACTIONS(1541), + [anon_sym_DOLLARif] = ACTIONS(1541), + [anon_sym_DOLLARswitch] = ACTIONS(1541), + [anon_sym_DOLLARfor] = ACTIONS(1541), + [anon_sym_DOLLARforeach] = ACTIONS(1541), + [anon_sym_DOLLARendforeach] = ACTIONS(1541), + [anon_sym_DOLLARalignof] = ACTIONS(1541), + [anon_sym_DOLLARextnameof] = ACTIONS(1541), + [anon_sym_DOLLARnameof] = ACTIONS(1541), + [anon_sym_DOLLARoffsetof] = ACTIONS(1541), + [anon_sym_DOLLARqnameof] = ACTIONS(1541), + [anon_sym_DOLLARvaconst] = ACTIONS(1541), + [anon_sym_DOLLARvaarg] = ACTIONS(1541), + [anon_sym_DOLLARvaref] = ACTIONS(1541), + [anon_sym_DOLLARvaexpr] = ACTIONS(1541), + [anon_sym_true] = ACTIONS(1541), + [anon_sym_false] = ACTIONS(1541), + [anon_sym_null] = ACTIONS(1541), + [anon_sym_DOLLARvacount] = ACTIONS(1541), + [anon_sym_DOLLARappend] = ACTIONS(1541), + [anon_sym_DOLLARconcat] = ACTIONS(1541), + [anon_sym_DOLLAReval] = ACTIONS(1541), + [anon_sym_DOLLARis_const] = ACTIONS(1541), + [anon_sym_DOLLARsizeof] = ACTIONS(1541), + [anon_sym_DOLLARstringify] = ACTIONS(1541), + [anon_sym_DOLLARand] = ACTIONS(1541), + [anon_sym_DOLLARdefined] = ACTIONS(1541), + [anon_sym_DOLLARembed] = ACTIONS(1541), + [anon_sym_DOLLARor] = ACTIONS(1541), + [anon_sym_DOLLARfeature] = ACTIONS(1541), + [anon_sym_DOLLARassignable] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_PLUS_PLUS] = ACTIONS(1543), + [anon_sym_DASH_DASH] = ACTIONS(1543), + [anon_sym_typeid] = ACTIONS(1541), + [anon_sym_LBRACE_PIPE] = ACTIONS(1543), + [anon_sym_void] = ACTIONS(1541), + [anon_sym_bool] = ACTIONS(1541), + [anon_sym_char] = ACTIONS(1541), + [anon_sym_ichar] = ACTIONS(1541), + [anon_sym_short] = ACTIONS(1541), + [anon_sym_ushort] = ACTIONS(1541), + [anon_sym_uint] = ACTIONS(1541), + [anon_sym_long] = ACTIONS(1541), + [anon_sym_ulong] = ACTIONS(1541), + [anon_sym_int128] = ACTIONS(1541), + [anon_sym_uint128] = ACTIONS(1541), + [anon_sym_float] = ACTIONS(1541), + [anon_sym_double] = ACTIONS(1541), + [anon_sym_float16] = ACTIONS(1541), + [anon_sym_bfloat16] = ACTIONS(1541), + [anon_sym_float128] = ACTIONS(1541), + [anon_sym_iptr] = ACTIONS(1541), + [anon_sym_uptr] = ACTIONS(1541), + [anon_sym_isz] = ACTIONS(1541), + [anon_sym_usz] = ACTIONS(1541), + [anon_sym_anyfault] = ACTIONS(1541), + [anon_sym_any] = ACTIONS(1541), + [anon_sym_DOLLARtypeof] = ACTIONS(1541), + [anon_sym_DOLLARtypefrom] = ACTIONS(1541), + [anon_sym_DOLLARvatype] = ACTIONS(1541), + [anon_sym_DOLLARevaltype] = ACTIONS(1541), + [sym_real_literal] = ACTIONS(1543), }, [677] = { [sym_line_comment] = STATE(677), [sym_doc_comment] = STATE(677), [sym_block_comment] = STATE(677), - [sym_ident] = ACTIONS(1410), - [sym_integer_literal] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1412), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_BQUOTE] = ACTIONS(1412), - [sym_bytes_literal] = ACTIONS(1412), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1410), - [sym_at_ident] = ACTIONS(1412), - [sym_hash_ident] = ACTIONS(1412), - [sym_type_ident] = ACTIONS(1412), - [sym_ct_type_ident] = ACTIONS(1412), - [sym_const_ident] = ACTIONS(1410), - [sym_builtin] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1410), - [anon_sym_static] = ACTIONS(1410), - [anon_sym_tlocal] = ACTIONS(1410), - [anon_sym_SEMI] = ACTIONS(1412), - [anon_sym_fn] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_var] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_defer] = ACTIONS(1410), - [anon_sym_assert] = ACTIONS(1410), - [anon_sym_nextcase] = ACTIONS(1410), - [anon_sym_switch] = ACTIONS(1410), - [anon_sym_AMP_AMP] = ACTIONS(1412), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_foreach] = ACTIONS(1410), - [anon_sym_foreach_r] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [anon_sym_do] = ACTIONS(1410), - [anon_sym_int] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1412), - [anon_sym_asm] = ACTIONS(1410), - [anon_sym_DOLLARassert] = ACTIONS(1410), - [anon_sym_DOLLARerror] = ACTIONS(1410), - [anon_sym_DOLLARecho] = ACTIONS(1410), - [anon_sym_DOLLARif] = ACTIONS(1410), - [anon_sym_DOLLARendif] = ACTIONS(1410), - [anon_sym_DOLLARswitch] = ACTIONS(1410), - [anon_sym_DOLLARfor] = ACTIONS(1410), - [anon_sym_DOLLARforeach] = ACTIONS(1410), - [anon_sym_DOLLARalignof] = ACTIONS(1410), - [anon_sym_DOLLARextnameof] = ACTIONS(1410), - [anon_sym_DOLLARnameof] = ACTIONS(1410), - [anon_sym_DOLLARoffsetof] = ACTIONS(1410), - [anon_sym_DOLLARqnameof] = ACTIONS(1410), - [anon_sym_DOLLARvaconst] = ACTIONS(1410), - [anon_sym_DOLLARvaarg] = ACTIONS(1410), - [anon_sym_DOLLARvaref] = ACTIONS(1410), - [anon_sym_DOLLARvaexpr] = ACTIONS(1410), - [anon_sym_true] = ACTIONS(1410), - [anon_sym_false] = ACTIONS(1410), - [anon_sym_null] = ACTIONS(1410), - [anon_sym_DOLLARvacount] = ACTIONS(1410), - [anon_sym_DOLLARappend] = ACTIONS(1410), - [anon_sym_DOLLARconcat] = ACTIONS(1410), - [anon_sym_DOLLAReval] = ACTIONS(1410), - [anon_sym_DOLLARis_const] = ACTIONS(1410), - [anon_sym_DOLLARsizeof] = ACTIONS(1410), - [anon_sym_DOLLARstringify] = ACTIONS(1410), - [anon_sym_DOLLARand] = ACTIONS(1410), - [anon_sym_DOLLARdefined] = ACTIONS(1410), - [anon_sym_DOLLARembed] = ACTIONS(1410), - [anon_sym_DOLLARor] = ACTIONS(1410), - [anon_sym_DOLLARfeature] = ACTIONS(1410), - [anon_sym_DOLLARassignable] = ACTIONS(1410), - [anon_sym_BANG] = ACTIONS(1412), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_PLUS_PLUS] = ACTIONS(1412), - [anon_sym_DASH_DASH] = ACTIONS(1412), - [anon_sym_typeid] = ACTIONS(1410), - [anon_sym_LBRACE_PIPE] = ACTIONS(1412), - [anon_sym_void] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_ichar] = ACTIONS(1410), - [anon_sym_short] = ACTIONS(1410), - [anon_sym_ushort] = ACTIONS(1410), - [anon_sym_uint] = ACTIONS(1410), - [anon_sym_long] = ACTIONS(1410), - [anon_sym_ulong] = ACTIONS(1410), - [anon_sym_int128] = ACTIONS(1410), - [anon_sym_uint128] = ACTIONS(1410), - [anon_sym_float] = ACTIONS(1410), - [anon_sym_double] = ACTIONS(1410), - [anon_sym_float16] = ACTIONS(1410), - [anon_sym_bfloat16] = ACTIONS(1410), - [anon_sym_float128] = ACTIONS(1410), - [anon_sym_iptr] = ACTIONS(1410), - [anon_sym_uptr] = ACTIONS(1410), - [anon_sym_isz] = ACTIONS(1410), - [anon_sym_usz] = ACTIONS(1410), - [anon_sym_anyfault] = ACTIONS(1410), - [anon_sym_any] = ACTIONS(1410), - [anon_sym_DOLLARtypeof] = ACTIONS(1410), - [anon_sym_DOLLARtypefrom] = ACTIONS(1410), - [anon_sym_DOLLARvatype] = ACTIONS(1410), - [anon_sym_DOLLARevaltype] = ACTIONS(1410), - [sym_real_literal] = ACTIONS(1412), + [sym_ident] = ACTIONS(1517), + [sym_integer_literal] = ACTIONS(1519), + [anon_sym_SQUOTE] = ACTIONS(1519), + [anon_sym_DQUOTE] = ACTIONS(1519), + [anon_sym_BQUOTE] = ACTIONS(1519), + [sym_bytes_literal] = ACTIONS(1519), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1517), + [sym_at_ident] = ACTIONS(1519), + [sym_hash_ident] = ACTIONS(1519), + [sym_type_ident] = ACTIONS(1519), + [sym_ct_type_ident] = ACTIONS(1519), + [sym_const_ident] = ACTIONS(1517), + [sym_builtin] = ACTIONS(1519), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_static] = ACTIONS(1517), + [anon_sym_tlocal] = ACTIONS(1517), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_fn] = ACTIONS(1517), + [anon_sym_LBRACE] = ACTIONS(1517), + [anon_sym_const] = ACTIONS(1517), + [anon_sym_var] = ACTIONS(1517), + [anon_sym_return] = ACTIONS(1517), + [anon_sym_continue] = ACTIONS(1517), + [anon_sym_break] = ACTIONS(1517), + [anon_sym_defer] = ACTIONS(1517), + [anon_sym_assert] = ACTIONS(1517), + [anon_sym_nextcase] = ACTIONS(1517), + [anon_sym_switch] = ACTIONS(1517), + [anon_sym_AMP_AMP] = ACTIONS(1519), + [anon_sym_if] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1517), + [anon_sym_foreach] = ACTIONS(1517), + [anon_sym_foreach_r] = ACTIONS(1517), + [anon_sym_while] = ACTIONS(1517), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_int] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1517), + [anon_sym_DASH] = ACTIONS(1517), + [anon_sym_STAR] = ACTIONS(1519), + [anon_sym_asm] = ACTIONS(1517), + [anon_sym_DOLLARassert] = ACTIONS(1517), + [anon_sym_DOLLARerror] = ACTIONS(1517), + [anon_sym_DOLLARecho] = ACTIONS(1517), + [anon_sym_DOLLARif] = ACTIONS(1517), + [anon_sym_DOLLARswitch] = ACTIONS(1517), + [anon_sym_DOLLARfor] = ACTIONS(1517), + [anon_sym_DOLLARforeach] = ACTIONS(1517), + [anon_sym_DOLLARendforeach] = ACTIONS(1517), + [anon_sym_DOLLARalignof] = ACTIONS(1517), + [anon_sym_DOLLARextnameof] = ACTIONS(1517), + [anon_sym_DOLLARnameof] = ACTIONS(1517), + [anon_sym_DOLLARoffsetof] = ACTIONS(1517), + [anon_sym_DOLLARqnameof] = ACTIONS(1517), + [anon_sym_DOLLARvaconst] = ACTIONS(1517), + [anon_sym_DOLLARvaarg] = ACTIONS(1517), + [anon_sym_DOLLARvaref] = ACTIONS(1517), + [anon_sym_DOLLARvaexpr] = ACTIONS(1517), + [anon_sym_true] = ACTIONS(1517), + [anon_sym_false] = ACTIONS(1517), + [anon_sym_null] = ACTIONS(1517), + [anon_sym_DOLLARvacount] = ACTIONS(1517), + [anon_sym_DOLLARappend] = ACTIONS(1517), + [anon_sym_DOLLARconcat] = ACTIONS(1517), + [anon_sym_DOLLAReval] = ACTIONS(1517), + [anon_sym_DOLLARis_const] = ACTIONS(1517), + [anon_sym_DOLLARsizeof] = ACTIONS(1517), + [anon_sym_DOLLARstringify] = ACTIONS(1517), + [anon_sym_DOLLARand] = ACTIONS(1517), + [anon_sym_DOLLARdefined] = ACTIONS(1517), + [anon_sym_DOLLARembed] = ACTIONS(1517), + [anon_sym_DOLLARor] = ACTIONS(1517), + [anon_sym_DOLLARfeature] = ACTIONS(1517), + [anon_sym_DOLLARassignable] = ACTIONS(1517), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1519), + [anon_sym_PLUS_PLUS] = ACTIONS(1519), + [anon_sym_DASH_DASH] = ACTIONS(1519), + [anon_sym_typeid] = ACTIONS(1517), + [anon_sym_LBRACE_PIPE] = ACTIONS(1519), + [anon_sym_void] = ACTIONS(1517), + [anon_sym_bool] = ACTIONS(1517), + [anon_sym_char] = ACTIONS(1517), + [anon_sym_ichar] = ACTIONS(1517), + [anon_sym_short] = ACTIONS(1517), + [anon_sym_ushort] = ACTIONS(1517), + [anon_sym_uint] = ACTIONS(1517), + [anon_sym_long] = ACTIONS(1517), + [anon_sym_ulong] = ACTIONS(1517), + [anon_sym_int128] = ACTIONS(1517), + [anon_sym_uint128] = ACTIONS(1517), + [anon_sym_float] = ACTIONS(1517), + [anon_sym_double] = ACTIONS(1517), + [anon_sym_float16] = ACTIONS(1517), + [anon_sym_bfloat16] = ACTIONS(1517), + [anon_sym_float128] = ACTIONS(1517), + [anon_sym_iptr] = ACTIONS(1517), + [anon_sym_uptr] = ACTIONS(1517), + [anon_sym_isz] = ACTIONS(1517), + [anon_sym_usz] = ACTIONS(1517), + [anon_sym_anyfault] = ACTIONS(1517), + [anon_sym_any] = ACTIONS(1517), + [anon_sym_DOLLARtypeof] = ACTIONS(1517), + [anon_sym_DOLLARtypefrom] = ACTIONS(1517), + [anon_sym_DOLLARvatype] = ACTIONS(1517), + [anon_sym_DOLLARevaltype] = ACTIONS(1517), + [sym_real_literal] = ACTIONS(1519), }, [678] = { [sym_line_comment] = STATE(678), [sym_doc_comment] = STATE(678), [sym_block_comment] = STATE(678), - [sym_ident] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(1594), - [anon_sym_SQUOTE] = ACTIONS(1594), - [anon_sym_DQUOTE] = ACTIONS(1594), - [anon_sym_BQUOTE] = ACTIONS(1594), - [sym_bytes_literal] = ACTIONS(1594), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1592), - [sym_at_ident] = ACTIONS(1594), - [sym_hash_ident] = ACTIONS(1594), - [sym_type_ident] = ACTIONS(1594), - [sym_ct_type_ident] = ACTIONS(1594), - [sym_const_ident] = ACTIONS(1592), - [sym_builtin] = ACTIONS(1594), - [anon_sym_LPAREN] = ACTIONS(1594), - [anon_sym_AMP] = ACTIONS(1592), - [anon_sym_static] = ACTIONS(1592), - [anon_sym_tlocal] = ACTIONS(1592), - [anon_sym_SEMI] = ACTIONS(1594), - [anon_sym_fn] = ACTIONS(1592), - [anon_sym_LBRACE] = ACTIONS(1592), - [anon_sym_const] = ACTIONS(1592), - [anon_sym_var] = ACTIONS(1592), - [anon_sym_return] = ACTIONS(1592), - [anon_sym_continue] = ACTIONS(1592), - [anon_sym_break] = ACTIONS(1592), - [anon_sym_defer] = ACTIONS(1592), - [anon_sym_assert] = ACTIONS(1592), - [anon_sym_nextcase] = ACTIONS(1592), - [anon_sym_switch] = ACTIONS(1592), - [anon_sym_AMP_AMP] = ACTIONS(1594), - [anon_sym_if] = ACTIONS(1592), - [anon_sym_for] = ACTIONS(1592), - [anon_sym_foreach] = ACTIONS(1592), - [anon_sym_foreach_r] = ACTIONS(1592), - [anon_sym_while] = ACTIONS(1592), - [anon_sym_do] = ACTIONS(1592), - [anon_sym_int] = ACTIONS(1592), - [anon_sym_PLUS] = ACTIONS(1592), - [anon_sym_DASH] = ACTIONS(1592), - [anon_sym_STAR] = ACTIONS(1594), - [anon_sym_asm] = ACTIONS(1592), - [anon_sym_DOLLARassert] = ACTIONS(1592), - [anon_sym_DOLLARerror] = ACTIONS(1592), - [anon_sym_DOLLARecho] = ACTIONS(1592), - [anon_sym_DOLLARif] = ACTIONS(1592), - [anon_sym_DOLLARswitch] = ACTIONS(1592), - [anon_sym_DOLLARfor] = ACTIONS(1592), - [anon_sym_DOLLARforeach] = ACTIONS(1592), - [anon_sym_DOLLARendforeach] = ACTIONS(1592), - [anon_sym_DOLLARalignof] = ACTIONS(1592), - [anon_sym_DOLLARextnameof] = ACTIONS(1592), - [anon_sym_DOLLARnameof] = ACTIONS(1592), - [anon_sym_DOLLARoffsetof] = ACTIONS(1592), - [anon_sym_DOLLARqnameof] = ACTIONS(1592), - [anon_sym_DOLLARvaconst] = ACTIONS(1592), - [anon_sym_DOLLARvaarg] = ACTIONS(1592), - [anon_sym_DOLLARvaref] = ACTIONS(1592), - [anon_sym_DOLLARvaexpr] = ACTIONS(1592), - [anon_sym_true] = ACTIONS(1592), - [anon_sym_false] = ACTIONS(1592), - [anon_sym_null] = ACTIONS(1592), - [anon_sym_DOLLARvacount] = ACTIONS(1592), - [anon_sym_DOLLARappend] = ACTIONS(1592), - [anon_sym_DOLLARconcat] = ACTIONS(1592), - [anon_sym_DOLLAReval] = ACTIONS(1592), - [anon_sym_DOLLARis_const] = ACTIONS(1592), - [anon_sym_DOLLARsizeof] = ACTIONS(1592), - [anon_sym_DOLLARstringify] = ACTIONS(1592), - [anon_sym_DOLLARand] = ACTIONS(1592), - [anon_sym_DOLLARdefined] = ACTIONS(1592), - [anon_sym_DOLLARembed] = ACTIONS(1592), - [anon_sym_DOLLARor] = ACTIONS(1592), - [anon_sym_DOLLARfeature] = ACTIONS(1592), - [anon_sym_DOLLARassignable] = ACTIONS(1592), - [anon_sym_BANG] = ACTIONS(1594), - [anon_sym_TILDE] = ACTIONS(1594), - [anon_sym_PLUS_PLUS] = ACTIONS(1594), - [anon_sym_DASH_DASH] = ACTIONS(1594), - [anon_sym_typeid] = ACTIONS(1592), - [anon_sym_LBRACE_PIPE] = ACTIONS(1594), - [anon_sym_void] = ACTIONS(1592), - [anon_sym_bool] = ACTIONS(1592), - [anon_sym_char] = ACTIONS(1592), - [anon_sym_ichar] = ACTIONS(1592), - [anon_sym_short] = ACTIONS(1592), - [anon_sym_ushort] = ACTIONS(1592), - [anon_sym_uint] = ACTIONS(1592), - [anon_sym_long] = ACTIONS(1592), - [anon_sym_ulong] = ACTIONS(1592), - [anon_sym_int128] = ACTIONS(1592), - [anon_sym_uint128] = ACTIONS(1592), - [anon_sym_float] = ACTIONS(1592), - [anon_sym_double] = ACTIONS(1592), - [anon_sym_float16] = ACTIONS(1592), - [anon_sym_bfloat16] = ACTIONS(1592), - [anon_sym_float128] = ACTIONS(1592), - [anon_sym_iptr] = ACTIONS(1592), - [anon_sym_uptr] = ACTIONS(1592), - [anon_sym_isz] = ACTIONS(1592), - [anon_sym_usz] = ACTIONS(1592), - [anon_sym_anyfault] = ACTIONS(1592), - [anon_sym_any] = ACTIONS(1592), - [anon_sym_DOLLARtypeof] = ACTIONS(1592), - [anon_sym_DOLLARtypefrom] = ACTIONS(1592), - [anon_sym_DOLLARvatype] = ACTIONS(1592), - [anon_sym_DOLLARevaltype] = ACTIONS(1592), - [sym_real_literal] = ACTIONS(1594), + [sym_ident] = ACTIONS(1501), + [sym_integer_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1503), + [anon_sym_BQUOTE] = ACTIONS(1503), + [sym_bytes_literal] = ACTIONS(1503), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1501), + [sym_at_ident] = ACTIONS(1503), + [sym_hash_ident] = ACTIONS(1503), + [sym_type_ident] = ACTIONS(1503), + [sym_ct_type_ident] = ACTIONS(1503), + [sym_const_ident] = ACTIONS(1501), + [sym_builtin] = ACTIONS(1503), + [anon_sym_LPAREN] = ACTIONS(1503), + [anon_sym_AMP] = ACTIONS(1501), + [anon_sym_static] = ACTIONS(1501), + [anon_sym_tlocal] = ACTIONS(1501), + [anon_sym_SEMI] = ACTIONS(1503), + [anon_sym_fn] = ACTIONS(1501), + [anon_sym_LBRACE] = ACTIONS(1501), + [anon_sym_const] = ACTIONS(1501), + [anon_sym_var] = ACTIONS(1501), + [anon_sym_return] = ACTIONS(1501), + [anon_sym_continue] = ACTIONS(1501), + [anon_sym_break] = ACTIONS(1501), + [anon_sym_defer] = ACTIONS(1501), + [anon_sym_assert] = ACTIONS(1501), + [anon_sym_nextcase] = ACTIONS(1501), + [anon_sym_switch] = ACTIONS(1501), + [anon_sym_AMP_AMP] = ACTIONS(1503), + [anon_sym_if] = ACTIONS(1501), + [anon_sym_for] = ACTIONS(1501), + [anon_sym_foreach] = ACTIONS(1501), + [anon_sym_foreach_r] = ACTIONS(1501), + [anon_sym_while] = ACTIONS(1501), + [anon_sym_do] = ACTIONS(1501), + [anon_sym_int] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_asm] = ACTIONS(1501), + [anon_sym_DOLLARassert] = ACTIONS(1501), + [anon_sym_DOLLARerror] = ACTIONS(1501), + [anon_sym_DOLLARecho] = ACTIONS(1501), + [anon_sym_DOLLARif] = ACTIONS(1501), + [anon_sym_DOLLARswitch] = ACTIONS(1501), + [anon_sym_DOLLARfor] = ACTIONS(1501), + [anon_sym_DOLLARforeach] = ACTIONS(1501), + [anon_sym_DOLLARendforeach] = ACTIONS(1501), + [anon_sym_DOLLARalignof] = ACTIONS(1501), + [anon_sym_DOLLARextnameof] = ACTIONS(1501), + [anon_sym_DOLLARnameof] = ACTIONS(1501), + [anon_sym_DOLLARoffsetof] = ACTIONS(1501), + [anon_sym_DOLLARqnameof] = ACTIONS(1501), + [anon_sym_DOLLARvaconst] = ACTIONS(1501), + [anon_sym_DOLLARvaarg] = ACTIONS(1501), + [anon_sym_DOLLARvaref] = ACTIONS(1501), + [anon_sym_DOLLARvaexpr] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1501), + [anon_sym_false] = ACTIONS(1501), + [anon_sym_null] = ACTIONS(1501), + [anon_sym_DOLLARvacount] = ACTIONS(1501), + [anon_sym_DOLLARappend] = ACTIONS(1501), + [anon_sym_DOLLARconcat] = ACTIONS(1501), + [anon_sym_DOLLAReval] = ACTIONS(1501), + [anon_sym_DOLLARis_const] = ACTIONS(1501), + [anon_sym_DOLLARsizeof] = ACTIONS(1501), + [anon_sym_DOLLARstringify] = ACTIONS(1501), + [anon_sym_DOLLARand] = ACTIONS(1501), + [anon_sym_DOLLARdefined] = ACTIONS(1501), + [anon_sym_DOLLARembed] = ACTIONS(1501), + [anon_sym_DOLLARor] = ACTIONS(1501), + [anon_sym_DOLLARfeature] = ACTIONS(1501), + [anon_sym_DOLLARassignable] = ACTIONS(1501), + [anon_sym_BANG] = ACTIONS(1503), + [anon_sym_TILDE] = ACTIONS(1503), + [anon_sym_PLUS_PLUS] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1503), + [anon_sym_typeid] = ACTIONS(1501), + [anon_sym_LBRACE_PIPE] = ACTIONS(1503), + [anon_sym_void] = ACTIONS(1501), + [anon_sym_bool] = ACTIONS(1501), + [anon_sym_char] = ACTIONS(1501), + [anon_sym_ichar] = ACTIONS(1501), + [anon_sym_short] = ACTIONS(1501), + [anon_sym_ushort] = ACTIONS(1501), + [anon_sym_uint] = ACTIONS(1501), + [anon_sym_long] = ACTIONS(1501), + [anon_sym_ulong] = ACTIONS(1501), + [anon_sym_int128] = ACTIONS(1501), + [anon_sym_uint128] = ACTIONS(1501), + [anon_sym_float] = ACTIONS(1501), + [anon_sym_double] = ACTIONS(1501), + [anon_sym_float16] = ACTIONS(1501), + [anon_sym_bfloat16] = ACTIONS(1501), + [anon_sym_float128] = ACTIONS(1501), + [anon_sym_iptr] = ACTIONS(1501), + [anon_sym_uptr] = ACTIONS(1501), + [anon_sym_isz] = ACTIONS(1501), + [anon_sym_usz] = ACTIONS(1501), + [anon_sym_anyfault] = ACTIONS(1501), + [anon_sym_any] = ACTIONS(1501), + [anon_sym_DOLLARtypeof] = ACTIONS(1501), + [anon_sym_DOLLARtypefrom] = ACTIONS(1501), + [anon_sym_DOLLARvatype] = ACTIONS(1501), + [anon_sym_DOLLARevaltype] = ACTIONS(1501), + [sym_real_literal] = ACTIONS(1503), }, [679] = { [sym_line_comment] = STATE(679), [sym_doc_comment] = STATE(679), [sym_block_comment] = STATE(679), - [sym_ident] = ACTIONS(1406), - [sym_integer_literal] = ACTIONS(1408), - [anon_sym_SQUOTE] = ACTIONS(1408), - [anon_sym_DQUOTE] = ACTIONS(1408), - [anon_sym_BQUOTE] = ACTIONS(1408), - [sym_bytes_literal] = ACTIONS(1408), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1406), - [sym_at_ident] = ACTIONS(1408), - [sym_hash_ident] = ACTIONS(1408), - [sym_type_ident] = ACTIONS(1408), - [sym_ct_type_ident] = ACTIONS(1408), - [sym_const_ident] = ACTIONS(1406), - [sym_builtin] = ACTIONS(1408), - [anon_sym_LPAREN] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(1406), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_tlocal] = ACTIONS(1406), - [anon_sym_SEMI] = ACTIONS(1408), - [anon_sym_fn] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1406), - [anon_sym_const] = ACTIONS(1406), - [anon_sym_var] = ACTIONS(1406), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_defer] = ACTIONS(1406), - [anon_sym_assert] = ACTIONS(1406), - [anon_sym_nextcase] = ACTIONS(1406), - [anon_sym_switch] = ACTIONS(1406), - [anon_sym_AMP_AMP] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_for] = ACTIONS(1406), - [anon_sym_foreach] = ACTIONS(1406), - [anon_sym_foreach_r] = ACTIONS(1406), - [anon_sym_while] = ACTIONS(1406), - [anon_sym_do] = ACTIONS(1406), - [anon_sym_int] = ACTIONS(1406), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_asm] = ACTIONS(1406), - [anon_sym_DOLLARassert] = ACTIONS(1406), - [anon_sym_DOLLARerror] = ACTIONS(1406), - [anon_sym_DOLLARecho] = ACTIONS(1406), - [anon_sym_DOLLARif] = ACTIONS(1406), - [anon_sym_DOLLARendif] = ACTIONS(1406), - [anon_sym_DOLLARswitch] = ACTIONS(1406), - [anon_sym_DOLLARfor] = ACTIONS(1406), - [anon_sym_DOLLARforeach] = ACTIONS(1406), - [anon_sym_DOLLARalignof] = ACTIONS(1406), - [anon_sym_DOLLARextnameof] = ACTIONS(1406), - [anon_sym_DOLLARnameof] = ACTIONS(1406), - [anon_sym_DOLLARoffsetof] = ACTIONS(1406), - [anon_sym_DOLLARqnameof] = ACTIONS(1406), - [anon_sym_DOLLARvaconst] = ACTIONS(1406), - [anon_sym_DOLLARvaarg] = ACTIONS(1406), - [anon_sym_DOLLARvaref] = ACTIONS(1406), - [anon_sym_DOLLARvaexpr] = ACTIONS(1406), - [anon_sym_true] = ACTIONS(1406), - [anon_sym_false] = ACTIONS(1406), - [anon_sym_null] = ACTIONS(1406), - [anon_sym_DOLLARvacount] = ACTIONS(1406), - [anon_sym_DOLLARappend] = ACTIONS(1406), - [anon_sym_DOLLARconcat] = ACTIONS(1406), - [anon_sym_DOLLAReval] = ACTIONS(1406), - [anon_sym_DOLLARis_const] = ACTIONS(1406), - [anon_sym_DOLLARsizeof] = ACTIONS(1406), - [anon_sym_DOLLARstringify] = ACTIONS(1406), - [anon_sym_DOLLARand] = ACTIONS(1406), - [anon_sym_DOLLARdefined] = ACTIONS(1406), - [anon_sym_DOLLARembed] = ACTIONS(1406), - [anon_sym_DOLLARor] = ACTIONS(1406), - [anon_sym_DOLLARfeature] = ACTIONS(1406), - [anon_sym_DOLLARassignable] = ACTIONS(1406), - [anon_sym_BANG] = ACTIONS(1408), - [anon_sym_TILDE] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1408), - [anon_sym_DASH_DASH] = ACTIONS(1408), - [anon_sym_typeid] = ACTIONS(1406), - [anon_sym_LBRACE_PIPE] = ACTIONS(1408), - [anon_sym_void] = ACTIONS(1406), - [anon_sym_bool] = ACTIONS(1406), - [anon_sym_char] = ACTIONS(1406), - [anon_sym_ichar] = ACTIONS(1406), - [anon_sym_short] = ACTIONS(1406), - [anon_sym_ushort] = ACTIONS(1406), - [anon_sym_uint] = ACTIONS(1406), - [anon_sym_long] = ACTIONS(1406), - [anon_sym_ulong] = ACTIONS(1406), - [anon_sym_int128] = ACTIONS(1406), - [anon_sym_uint128] = ACTIONS(1406), - [anon_sym_float] = ACTIONS(1406), - [anon_sym_double] = ACTIONS(1406), - [anon_sym_float16] = ACTIONS(1406), - [anon_sym_bfloat16] = ACTIONS(1406), - [anon_sym_float128] = ACTIONS(1406), - [anon_sym_iptr] = ACTIONS(1406), - [anon_sym_uptr] = ACTIONS(1406), - [anon_sym_isz] = ACTIONS(1406), - [anon_sym_usz] = ACTIONS(1406), - [anon_sym_anyfault] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_DOLLARtypeof] = ACTIONS(1406), - [anon_sym_DOLLARtypefrom] = ACTIONS(1406), - [anon_sym_DOLLARvatype] = ACTIONS(1406), - [anon_sym_DOLLARevaltype] = ACTIONS(1406), - [sym_real_literal] = ACTIONS(1408), + [sym_ident] = ACTIONS(1469), + [sym_integer_literal] = ACTIONS(1471), + [anon_sym_SQUOTE] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(1471), + [anon_sym_BQUOTE] = ACTIONS(1471), + [sym_bytes_literal] = ACTIONS(1471), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1469), + [sym_at_ident] = ACTIONS(1471), + [sym_hash_ident] = ACTIONS(1471), + [sym_type_ident] = ACTIONS(1471), + [sym_ct_type_ident] = ACTIONS(1471), + [sym_const_ident] = ACTIONS(1469), + [sym_builtin] = ACTIONS(1471), + [anon_sym_LPAREN] = ACTIONS(1471), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_static] = ACTIONS(1469), + [anon_sym_tlocal] = ACTIONS(1469), + [anon_sym_SEMI] = ACTIONS(1471), + [anon_sym_fn] = ACTIONS(1469), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_const] = ACTIONS(1469), + [anon_sym_var] = ACTIONS(1469), + [anon_sym_return] = ACTIONS(1469), + [anon_sym_continue] = ACTIONS(1469), + [anon_sym_break] = ACTIONS(1469), + [anon_sym_defer] = ACTIONS(1469), + [anon_sym_assert] = ACTIONS(1469), + [anon_sym_nextcase] = ACTIONS(1469), + [anon_sym_switch] = ACTIONS(1469), + [anon_sym_AMP_AMP] = ACTIONS(1471), + [anon_sym_if] = ACTIONS(1469), + [anon_sym_for] = ACTIONS(1469), + [anon_sym_foreach] = ACTIONS(1469), + [anon_sym_foreach_r] = ACTIONS(1469), + [anon_sym_while] = ACTIONS(1469), + [anon_sym_do] = ACTIONS(1469), + [anon_sym_int] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1469), + [anon_sym_DASH] = ACTIONS(1469), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_asm] = ACTIONS(1469), + [anon_sym_DOLLARassert] = ACTIONS(1469), + [anon_sym_DOLLARerror] = ACTIONS(1469), + [anon_sym_DOLLARecho] = ACTIONS(1469), + [anon_sym_DOLLARif] = ACTIONS(1469), + [anon_sym_DOLLARswitch] = ACTIONS(1469), + [anon_sym_DOLLARfor] = ACTIONS(1469), + [anon_sym_DOLLARforeach] = ACTIONS(1469), + [anon_sym_DOLLARendforeach] = ACTIONS(1469), + [anon_sym_DOLLARalignof] = ACTIONS(1469), + [anon_sym_DOLLARextnameof] = ACTIONS(1469), + [anon_sym_DOLLARnameof] = ACTIONS(1469), + [anon_sym_DOLLARoffsetof] = ACTIONS(1469), + [anon_sym_DOLLARqnameof] = ACTIONS(1469), + [anon_sym_DOLLARvaconst] = ACTIONS(1469), + [anon_sym_DOLLARvaarg] = ACTIONS(1469), + [anon_sym_DOLLARvaref] = ACTIONS(1469), + [anon_sym_DOLLARvaexpr] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1469), + [anon_sym_false] = ACTIONS(1469), + [anon_sym_null] = ACTIONS(1469), + [anon_sym_DOLLARvacount] = ACTIONS(1469), + [anon_sym_DOLLARappend] = ACTIONS(1469), + [anon_sym_DOLLARconcat] = ACTIONS(1469), + [anon_sym_DOLLAReval] = ACTIONS(1469), + [anon_sym_DOLLARis_const] = ACTIONS(1469), + [anon_sym_DOLLARsizeof] = ACTIONS(1469), + [anon_sym_DOLLARstringify] = ACTIONS(1469), + [anon_sym_DOLLARand] = ACTIONS(1469), + [anon_sym_DOLLARdefined] = ACTIONS(1469), + [anon_sym_DOLLARembed] = ACTIONS(1469), + [anon_sym_DOLLARor] = ACTIONS(1469), + [anon_sym_DOLLARfeature] = ACTIONS(1469), + [anon_sym_DOLLARassignable] = ACTIONS(1469), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1471), + [anon_sym_PLUS_PLUS] = ACTIONS(1471), + [anon_sym_DASH_DASH] = ACTIONS(1471), + [anon_sym_typeid] = ACTIONS(1469), + [anon_sym_LBRACE_PIPE] = ACTIONS(1471), + [anon_sym_void] = ACTIONS(1469), + [anon_sym_bool] = ACTIONS(1469), + [anon_sym_char] = ACTIONS(1469), + [anon_sym_ichar] = ACTIONS(1469), + [anon_sym_short] = ACTIONS(1469), + [anon_sym_ushort] = ACTIONS(1469), + [anon_sym_uint] = ACTIONS(1469), + [anon_sym_long] = ACTIONS(1469), + [anon_sym_ulong] = ACTIONS(1469), + [anon_sym_int128] = ACTIONS(1469), + [anon_sym_uint128] = ACTIONS(1469), + [anon_sym_float] = ACTIONS(1469), + [anon_sym_double] = ACTIONS(1469), + [anon_sym_float16] = ACTIONS(1469), + [anon_sym_bfloat16] = ACTIONS(1469), + [anon_sym_float128] = ACTIONS(1469), + [anon_sym_iptr] = ACTIONS(1469), + [anon_sym_uptr] = ACTIONS(1469), + [anon_sym_isz] = ACTIONS(1469), + [anon_sym_usz] = ACTIONS(1469), + [anon_sym_anyfault] = ACTIONS(1469), + [anon_sym_any] = ACTIONS(1469), + [anon_sym_DOLLARtypeof] = ACTIONS(1469), + [anon_sym_DOLLARtypefrom] = ACTIONS(1469), + [anon_sym_DOLLARvatype] = ACTIONS(1469), + [anon_sym_DOLLARevaltype] = ACTIONS(1469), + [sym_real_literal] = ACTIONS(1471), }, [680] = { [sym_line_comment] = STATE(680), [sym_doc_comment] = STATE(680), [sym_block_comment] = STATE(680), - [sym_ident] = ACTIONS(1588), - [sym_integer_literal] = ACTIONS(1590), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_DQUOTE] = ACTIONS(1590), - [anon_sym_BQUOTE] = ACTIONS(1590), - [sym_bytes_literal] = ACTIONS(1590), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1588), - [sym_at_ident] = ACTIONS(1590), - [sym_hash_ident] = ACTIONS(1590), - [sym_type_ident] = ACTIONS(1590), - [sym_ct_type_ident] = ACTIONS(1590), - [sym_const_ident] = ACTIONS(1588), - [sym_builtin] = ACTIONS(1590), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_AMP] = ACTIONS(1588), - [anon_sym_static] = ACTIONS(1588), - [anon_sym_tlocal] = ACTIONS(1588), - [anon_sym_SEMI] = ACTIONS(1590), - [anon_sym_fn] = ACTIONS(1588), - [anon_sym_LBRACE] = ACTIONS(1588), - [anon_sym_const] = ACTIONS(1588), - [anon_sym_var] = ACTIONS(1588), - [anon_sym_return] = ACTIONS(1588), - [anon_sym_continue] = ACTIONS(1588), - [anon_sym_break] = ACTIONS(1588), - [anon_sym_defer] = ACTIONS(1588), - [anon_sym_assert] = ACTIONS(1588), - [anon_sym_nextcase] = ACTIONS(1588), - [anon_sym_switch] = ACTIONS(1588), - [anon_sym_AMP_AMP] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1588), - [anon_sym_for] = ACTIONS(1588), - [anon_sym_foreach] = ACTIONS(1588), - [anon_sym_foreach_r] = ACTIONS(1588), - [anon_sym_while] = ACTIONS(1588), - [anon_sym_do] = ACTIONS(1588), - [anon_sym_int] = ACTIONS(1588), - [anon_sym_PLUS] = ACTIONS(1588), - [anon_sym_DASH] = ACTIONS(1588), - [anon_sym_STAR] = ACTIONS(1590), - [anon_sym_asm] = ACTIONS(1588), - [anon_sym_DOLLARassert] = ACTIONS(1588), - [anon_sym_DOLLARerror] = ACTIONS(1588), - [anon_sym_DOLLARecho] = ACTIONS(1588), - [anon_sym_DOLLARif] = ACTIONS(1588), - [anon_sym_DOLLARswitch] = ACTIONS(1588), - [anon_sym_DOLLARfor] = ACTIONS(1588), - [anon_sym_DOLLARforeach] = ACTIONS(1588), - [anon_sym_DOLLARendforeach] = ACTIONS(1588), - [anon_sym_DOLLARalignof] = ACTIONS(1588), - [anon_sym_DOLLARextnameof] = ACTIONS(1588), - [anon_sym_DOLLARnameof] = ACTIONS(1588), - [anon_sym_DOLLARoffsetof] = ACTIONS(1588), - [anon_sym_DOLLARqnameof] = ACTIONS(1588), - [anon_sym_DOLLARvaconst] = ACTIONS(1588), - [anon_sym_DOLLARvaarg] = ACTIONS(1588), - [anon_sym_DOLLARvaref] = ACTIONS(1588), - [anon_sym_DOLLARvaexpr] = ACTIONS(1588), - [anon_sym_true] = ACTIONS(1588), - [anon_sym_false] = ACTIONS(1588), - [anon_sym_null] = ACTIONS(1588), - [anon_sym_DOLLARvacount] = ACTIONS(1588), - [anon_sym_DOLLARappend] = ACTIONS(1588), - [anon_sym_DOLLARconcat] = ACTIONS(1588), - [anon_sym_DOLLAReval] = ACTIONS(1588), - [anon_sym_DOLLARis_const] = ACTIONS(1588), - [anon_sym_DOLLARsizeof] = ACTIONS(1588), - [anon_sym_DOLLARstringify] = ACTIONS(1588), - [anon_sym_DOLLARand] = ACTIONS(1588), - [anon_sym_DOLLARdefined] = ACTIONS(1588), - [anon_sym_DOLLARembed] = ACTIONS(1588), - [anon_sym_DOLLARor] = ACTIONS(1588), - [anon_sym_DOLLARfeature] = ACTIONS(1588), - [anon_sym_DOLLARassignable] = ACTIONS(1588), - [anon_sym_BANG] = ACTIONS(1590), - [anon_sym_TILDE] = ACTIONS(1590), - [anon_sym_PLUS_PLUS] = ACTIONS(1590), - [anon_sym_DASH_DASH] = ACTIONS(1590), - [anon_sym_typeid] = ACTIONS(1588), - [anon_sym_LBRACE_PIPE] = ACTIONS(1590), - [anon_sym_void] = ACTIONS(1588), - [anon_sym_bool] = ACTIONS(1588), - [anon_sym_char] = ACTIONS(1588), - [anon_sym_ichar] = ACTIONS(1588), - [anon_sym_short] = ACTIONS(1588), - [anon_sym_ushort] = ACTIONS(1588), - [anon_sym_uint] = ACTIONS(1588), - [anon_sym_long] = ACTIONS(1588), - [anon_sym_ulong] = ACTIONS(1588), - [anon_sym_int128] = ACTIONS(1588), - [anon_sym_uint128] = ACTIONS(1588), - [anon_sym_float] = ACTIONS(1588), - [anon_sym_double] = ACTIONS(1588), - [anon_sym_float16] = ACTIONS(1588), - [anon_sym_bfloat16] = ACTIONS(1588), - [anon_sym_float128] = ACTIONS(1588), - [anon_sym_iptr] = ACTIONS(1588), - [anon_sym_uptr] = ACTIONS(1588), - [anon_sym_isz] = ACTIONS(1588), - [anon_sym_usz] = ACTIONS(1588), - [anon_sym_anyfault] = ACTIONS(1588), - [anon_sym_any] = ACTIONS(1588), - [anon_sym_DOLLARtypeof] = ACTIONS(1588), - [anon_sym_DOLLARtypefrom] = ACTIONS(1588), - [anon_sym_DOLLARvatype] = ACTIONS(1588), - [anon_sym_DOLLARevaltype] = ACTIONS(1588), - [sym_real_literal] = ACTIONS(1590), + [sym_ident] = ACTIONS(1461), + [sym_integer_literal] = ACTIONS(1463), + [anon_sym_SQUOTE] = ACTIONS(1463), + [anon_sym_DQUOTE] = ACTIONS(1463), + [anon_sym_BQUOTE] = ACTIONS(1463), + [sym_bytes_literal] = ACTIONS(1463), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1461), + [sym_at_ident] = ACTIONS(1463), + [sym_hash_ident] = ACTIONS(1463), + [sym_type_ident] = ACTIONS(1463), + [sym_ct_type_ident] = ACTIONS(1463), + [sym_const_ident] = ACTIONS(1461), + [sym_builtin] = ACTIONS(1463), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_static] = ACTIONS(1461), + [anon_sym_tlocal] = ACTIONS(1461), + [anon_sym_SEMI] = ACTIONS(1463), + [anon_sym_fn] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_const] = ACTIONS(1461), + [anon_sym_var] = ACTIONS(1461), + [anon_sym_return] = ACTIONS(1461), + [anon_sym_continue] = ACTIONS(1461), + [anon_sym_break] = ACTIONS(1461), + [anon_sym_defer] = ACTIONS(1461), + [anon_sym_assert] = ACTIONS(1461), + [anon_sym_nextcase] = ACTIONS(1461), + [anon_sym_switch] = ACTIONS(1461), + [anon_sym_AMP_AMP] = ACTIONS(1463), + [anon_sym_if] = ACTIONS(1461), + [anon_sym_for] = ACTIONS(1461), + [anon_sym_foreach] = ACTIONS(1461), + [anon_sym_foreach_r] = ACTIONS(1461), + [anon_sym_while] = ACTIONS(1461), + [anon_sym_do] = ACTIONS(1461), + [anon_sym_int] = ACTIONS(1461), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_STAR] = ACTIONS(1463), + [anon_sym_asm] = ACTIONS(1461), + [anon_sym_DOLLARassert] = ACTIONS(1461), + [anon_sym_DOLLARerror] = ACTIONS(1461), + [anon_sym_DOLLARecho] = ACTIONS(1461), + [anon_sym_DOLLARif] = ACTIONS(1461), + [anon_sym_DOLLARswitch] = ACTIONS(1461), + [anon_sym_DOLLARfor] = ACTIONS(1461), + [anon_sym_DOLLARforeach] = ACTIONS(1461), + [anon_sym_DOLLARendforeach] = ACTIONS(1461), + [anon_sym_DOLLARalignof] = ACTIONS(1461), + [anon_sym_DOLLARextnameof] = ACTIONS(1461), + [anon_sym_DOLLARnameof] = ACTIONS(1461), + [anon_sym_DOLLARoffsetof] = ACTIONS(1461), + [anon_sym_DOLLARqnameof] = ACTIONS(1461), + [anon_sym_DOLLARvaconst] = ACTIONS(1461), + [anon_sym_DOLLARvaarg] = ACTIONS(1461), + [anon_sym_DOLLARvaref] = ACTIONS(1461), + [anon_sym_DOLLARvaexpr] = ACTIONS(1461), + [anon_sym_true] = ACTIONS(1461), + [anon_sym_false] = ACTIONS(1461), + [anon_sym_null] = ACTIONS(1461), + [anon_sym_DOLLARvacount] = ACTIONS(1461), + [anon_sym_DOLLARappend] = ACTIONS(1461), + [anon_sym_DOLLARconcat] = ACTIONS(1461), + [anon_sym_DOLLAReval] = ACTIONS(1461), + [anon_sym_DOLLARis_const] = ACTIONS(1461), + [anon_sym_DOLLARsizeof] = ACTIONS(1461), + [anon_sym_DOLLARstringify] = ACTIONS(1461), + [anon_sym_DOLLARand] = ACTIONS(1461), + [anon_sym_DOLLARdefined] = ACTIONS(1461), + [anon_sym_DOLLARembed] = ACTIONS(1461), + [anon_sym_DOLLARor] = ACTIONS(1461), + [anon_sym_DOLLARfeature] = ACTIONS(1461), + [anon_sym_DOLLARassignable] = ACTIONS(1461), + [anon_sym_BANG] = ACTIONS(1463), + [anon_sym_TILDE] = ACTIONS(1463), + [anon_sym_PLUS_PLUS] = ACTIONS(1463), + [anon_sym_DASH_DASH] = ACTIONS(1463), + [anon_sym_typeid] = ACTIONS(1461), + [anon_sym_LBRACE_PIPE] = ACTIONS(1463), + [anon_sym_void] = ACTIONS(1461), + [anon_sym_bool] = ACTIONS(1461), + [anon_sym_char] = ACTIONS(1461), + [anon_sym_ichar] = ACTIONS(1461), + [anon_sym_short] = ACTIONS(1461), + [anon_sym_ushort] = ACTIONS(1461), + [anon_sym_uint] = ACTIONS(1461), + [anon_sym_long] = ACTIONS(1461), + [anon_sym_ulong] = ACTIONS(1461), + [anon_sym_int128] = ACTIONS(1461), + [anon_sym_uint128] = ACTIONS(1461), + [anon_sym_float] = ACTIONS(1461), + [anon_sym_double] = ACTIONS(1461), + [anon_sym_float16] = ACTIONS(1461), + [anon_sym_bfloat16] = ACTIONS(1461), + [anon_sym_float128] = ACTIONS(1461), + [anon_sym_iptr] = ACTIONS(1461), + [anon_sym_uptr] = ACTIONS(1461), + [anon_sym_isz] = ACTIONS(1461), + [anon_sym_usz] = ACTIONS(1461), + [anon_sym_anyfault] = ACTIONS(1461), + [anon_sym_any] = ACTIONS(1461), + [anon_sym_DOLLARtypeof] = ACTIONS(1461), + [anon_sym_DOLLARtypefrom] = ACTIONS(1461), + [anon_sym_DOLLARvatype] = ACTIONS(1461), + [anon_sym_DOLLARevaltype] = ACTIONS(1461), + [sym_real_literal] = ACTIONS(1463), }, [681] = { [sym_line_comment] = STATE(681), [sym_doc_comment] = STATE(681), [sym_block_comment] = STATE(681), - [sym_ident] = ACTIONS(1556), - [sym_integer_literal] = ACTIONS(1558), - [anon_sym_SQUOTE] = ACTIONS(1558), - [anon_sym_DQUOTE] = ACTIONS(1558), - [anon_sym_BQUOTE] = ACTIONS(1558), - [sym_bytes_literal] = ACTIONS(1558), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1556), - [sym_at_ident] = ACTIONS(1558), - [sym_hash_ident] = ACTIONS(1558), - [sym_type_ident] = ACTIONS(1558), - [sym_ct_type_ident] = ACTIONS(1558), - [sym_const_ident] = ACTIONS(1556), - [sym_builtin] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1558), - [anon_sym_AMP] = ACTIONS(1556), - [anon_sym_static] = ACTIONS(1556), - [anon_sym_tlocal] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1558), - [anon_sym_fn] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_const] = ACTIONS(1556), - [anon_sym_var] = ACTIONS(1556), - [anon_sym_return] = ACTIONS(1556), - [anon_sym_continue] = ACTIONS(1556), - [anon_sym_break] = ACTIONS(1556), - [anon_sym_defer] = ACTIONS(1556), - [anon_sym_assert] = ACTIONS(1556), - [anon_sym_nextcase] = ACTIONS(1556), - [anon_sym_switch] = ACTIONS(1556), - [anon_sym_AMP_AMP] = ACTIONS(1558), - [anon_sym_if] = ACTIONS(1556), - [anon_sym_for] = ACTIONS(1556), - [anon_sym_foreach] = ACTIONS(1556), - [anon_sym_foreach_r] = ACTIONS(1556), - [anon_sym_while] = ACTIONS(1556), - [anon_sym_do] = ACTIONS(1556), - [anon_sym_int] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1558), - [anon_sym_asm] = ACTIONS(1556), - [anon_sym_DOLLARassert] = ACTIONS(1556), - [anon_sym_DOLLARerror] = ACTIONS(1556), - [anon_sym_DOLLARecho] = ACTIONS(1556), - [anon_sym_DOLLARif] = ACTIONS(1556), - [anon_sym_DOLLARendif] = ACTIONS(1556), - [anon_sym_DOLLARswitch] = ACTIONS(1556), - [anon_sym_DOLLARfor] = ACTIONS(1556), - [anon_sym_DOLLARforeach] = ACTIONS(1556), - [anon_sym_DOLLARalignof] = ACTIONS(1556), - [anon_sym_DOLLARextnameof] = ACTIONS(1556), - [anon_sym_DOLLARnameof] = ACTIONS(1556), - [anon_sym_DOLLARoffsetof] = ACTIONS(1556), - [anon_sym_DOLLARqnameof] = ACTIONS(1556), - [anon_sym_DOLLARvaconst] = ACTIONS(1556), - [anon_sym_DOLLARvaarg] = ACTIONS(1556), - [anon_sym_DOLLARvaref] = ACTIONS(1556), - [anon_sym_DOLLARvaexpr] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [anon_sym_DOLLARvacount] = ACTIONS(1556), - [anon_sym_DOLLARappend] = ACTIONS(1556), - [anon_sym_DOLLARconcat] = ACTIONS(1556), - [anon_sym_DOLLAReval] = ACTIONS(1556), - [anon_sym_DOLLARis_const] = ACTIONS(1556), - [anon_sym_DOLLARsizeof] = ACTIONS(1556), - [anon_sym_DOLLARstringify] = ACTIONS(1556), - [anon_sym_DOLLARand] = ACTIONS(1556), - [anon_sym_DOLLARdefined] = ACTIONS(1556), - [anon_sym_DOLLARembed] = ACTIONS(1556), - [anon_sym_DOLLARor] = ACTIONS(1556), - [anon_sym_DOLLARfeature] = ACTIONS(1556), - [anon_sym_DOLLARassignable] = ACTIONS(1556), - [anon_sym_BANG] = ACTIONS(1558), - [anon_sym_TILDE] = ACTIONS(1558), - [anon_sym_PLUS_PLUS] = ACTIONS(1558), - [anon_sym_DASH_DASH] = ACTIONS(1558), - [anon_sym_typeid] = ACTIONS(1556), - [anon_sym_LBRACE_PIPE] = ACTIONS(1558), - [anon_sym_void] = ACTIONS(1556), - [anon_sym_bool] = ACTIONS(1556), - [anon_sym_char] = ACTIONS(1556), - [anon_sym_ichar] = ACTIONS(1556), - [anon_sym_short] = ACTIONS(1556), - [anon_sym_ushort] = ACTIONS(1556), - [anon_sym_uint] = ACTIONS(1556), - [anon_sym_long] = ACTIONS(1556), - [anon_sym_ulong] = ACTIONS(1556), - [anon_sym_int128] = ACTIONS(1556), - [anon_sym_uint128] = ACTIONS(1556), - [anon_sym_float] = ACTIONS(1556), - [anon_sym_double] = ACTIONS(1556), - [anon_sym_float16] = ACTIONS(1556), - [anon_sym_bfloat16] = ACTIONS(1556), - [anon_sym_float128] = ACTIONS(1556), - [anon_sym_iptr] = ACTIONS(1556), - [anon_sym_uptr] = ACTIONS(1556), - [anon_sym_isz] = ACTIONS(1556), - [anon_sym_usz] = ACTIONS(1556), - [anon_sym_anyfault] = ACTIONS(1556), - [anon_sym_any] = ACTIONS(1556), - [anon_sym_DOLLARtypeof] = ACTIONS(1556), - [anon_sym_DOLLARtypefrom] = ACTIONS(1556), - [anon_sym_DOLLARvatype] = ACTIONS(1556), - [anon_sym_DOLLARevaltype] = ACTIONS(1556), - [sym_real_literal] = ACTIONS(1558), + [sym_ident] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1447), + [anon_sym_SQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [anon_sym_BQUOTE] = ACTIONS(1447), + [sym_bytes_literal] = ACTIONS(1447), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1445), + [sym_at_ident] = ACTIONS(1447), + [sym_hash_ident] = ACTIONS(1447), + [sym_type_ident] = ACTIONS(1447), + [sym_ct_type_ident] = ACTIONS(1447), + [sym_const_ident] = ACTIONS(1445), + [sym_builtin] = ACTIONS(1447), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_AMP] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_tlocal] = ACTIONS(1445), + [anon_sym_SEMI] = ACTIONS(1447), + [anon_sym_fn] = ACTIONS(1445), + [anon_sym_LBRACE] = ACTIONS(1445), + [anon_sym_const] = ACTIONS(1445), + [anon_sym_var] = ACTIONS(1445), + [anon_sym_return] = ACTIONS(1445), + [anon_sym_continue] = ACTIONS(1445), + [anon_sym_break] = ACTIONS(1445), + [anon_sym_defer] = ACTIONS(1445), + [anon_sym_assert] = ACTIONS(1445), + [anon_sym_nextcase] = ACTIONS(1445), + [anon_sym_switch] = ACTIONS(1445), + [anon_sym_AMP_AMP] = ACTIONS(1447), + [anon_sym_if] = ACTIONS(1445), + [anon_sym_for] = ACTIONS(1445), + [anon_sym_foreach] = ACTIONS(1445), + [anon_sym_foreach_r] = ACTIONS(1445), + [anon_sym_while] = ACTIONS(1445), + [anon_sym_do] = ACTIONS(1445), + [anon_sym_int] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_STAR] = ACTIONS(1447), + [anon_sym_asm] = ACTIONS(1445), + [anon_sym_DOLLARassert] = ACTIONS(1445), + [anon_sym_DOLLARerror] = ACTIONS(1445), + [anon_sym_DOLLARecho] = ACTIONS(1445), + [anon_sym_DOLLARif] = ACTIONS(1445), + [anon_sym_DOLLARswitch] = ACTIONS(1445), + [anon_sym_DOLLARfor] = ACTIONS(1445), + [anon_sym_DOLLARforeach] = ACTIONS(1445), + [anon_sym_DOLLARendforeach] = ACTIONS(1445), + [anon_sym_DOLLARalignof] = ACTIONS(1445), + [anon_sym_DOLLARextnameof] = ACTIONS(1445), + [anon_sym_DOLLARnameof] = ACTIONS(1445), + [anon_sym_DOLLARoffsetof] = ACTIONS(1445), + [anon_sym_DOLLARqnameof] = ACTIONS(1445), + [anon_sym_DOLLARvaconst] = ACTIONS(1445), + [anon_sym_DOLLARvaarg] = ACTIONS(1445), + [anon_sym_DOLLARvaref] = ACTIONS(1445), + [anon_sym_DOLLARvaexpr] = ACTIONS(1445), + [anon_sym_true] = ACTIONS(1445), + [anon_sym_false] = ACTIONS(1445), + [anon_sym_null] = ACTIONS(1445), + [anon_sym_DOLLARvacount] = ACTIONS(1445), + [anon_sym_DOLLARappend] = ACTIONS(1445), + [anon_sym_DOLLARconcat] = ACTIONS(1445), + [anon_sym_DOLLAReval] = ACTIONS(1445), + [anon_sym_DOLLARis_const] = ACTIONS(1445), + [anon_sym_DOLLARsizeof] = ACTIONS(1445), + [anon_sym_DOLLARstringify] = ACTIONS(1445), + [anon_sym_DOLLARand] = ACTIONS(1445), + [anon_sym_DOLLARdefined] = ACTIONS(1445), + [anon_sym_DOLLARembed] = ACTIONS(1445), + [anon_sym_DOLLARor] = ACTIONS(1445), + [anon_sym_DOLLARfeature] = ACTIONS(1445), + [anon_sym_DOLLARassignable] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(1447), + [anon_sym_TILDE] = ACTIONS(1447), + [anon_sym_PLUS_PLUS] = ACTIONS(1447), + [anon_sym_DASH_DASH] = ACTIONS(1447), + [anon_sym_typeid] = ACTIONS(1445), + [anon_sym_LBRACE_PIPE] = ACTIONS(1447), + [anon_sym_void] = ACTIONS(1445), + [anon_sym_bool] = ACTIONS(1445), + [anon_sym_char] = ACTIONS(1445), + [anon_sym_ichar] = ACTIONS(1445), + [anon_sym_short] = ACTIONS(1445), + [anon_sym_ushort] = ACTIONS(1445), + [anon_sym_uint] = ACTIONS(1445), + [anon_sym_long] = ACTIONS(1445), + [anon_sym_ulong] = ACTIONS(1445), + [anon_sym_int128] = ACTIONS(1445), + [anon_sym_uint128] = ACTIONS(1445), + [anon_sym_float] = ACTIONS(1445), + [anon_sym_double] = ACTIONS(1445), + [anon_sym_float16] = ACTIONS(1445), + [anon_sym_bfloat16] = ACTIONS(1445), + [anon_sym_float128] = ACTIONS(1445), + [anon_sym_iptr] = ACTIONS(1445), + [anon_sym_uptr] = ACTIONS(1445), + [anon_sym_isz] = ACTIONS(1445), + [anon_sym_usz] = ACTIONS(1445), + [anon_sym_anyfault] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_DOLLARtypeof] = ACTIONS(1445), + [anon_sym_DOLLARtypefrom] = ACTIONS(1445), + [anon_sym_DOLLARvatype] = ACTIONS(1445), + [anon_sym_DOLLARevaltype] = ACTIONS(1445), + [sym_real_literal] = ACTIONS(1447), }, [682] = { [sym_line_comment] = STATE(682), [sym_doc_comment] = STATE(682), [sym_block_comment] = STATE(682), - [sym_ident] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(1622), - [anon_sym_SQUOTE] = ACTIONS(1622), - [anon_sym_DQUOTE] = ACTIONS(1622), - [anon_sym_BQUOTE] = ACTIONS(1622), - [sym_bytes_literal] = ACTIONS(1622), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1620), - [sym_at_ident] = ACTIONS(1622), - [sym_hash_ident] = ACTIONS(1622), - [sym_type_ident] = ACTIONS(1622), - [sym_ct_type_ident] = ACTIONS(1622), - [sym_const_ident] = ACTIONS(1620), - [sym_builtin] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(1622), - [anon_sym_AMP] = ACTIONS(1620), - [anon_sym_static] = ACTIONS(1620), - [anon_sym_tlocal] = ACTIONS(1620), - [anon_sym_SEMI] = ACTIONS(1622), - [anon_sym_fn] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1620), - [anon_sym_const] = ACTIONS(1620), - [anon_sym_var] = ACTIONS(1620), - [anon_sym_return] = ACTIONS(1620), - [anon_sym_continue] = ACTIONS(1620), - [anon_sym_break] = ACTIONS(1620), - [anon_sym_defer] = ACTIONS(1620), - [anon_sym_assert] = ACTIONS(1620), - [anon_sym_nextcase] = ACTIONS(1620), - [anon_sym_switch] = ACTIONS(1620), - [anon_sym_AMP_AMP] = ACTIONS(1622), - [anon_sym_if] = ACTIONS(1620), - [anon_sym_for] = ACTIONS(1620), - [anon_sym_foreach] = ACTIONS(1620), - [anon_sym_foreach_r] = ACTIONS(1620), - [anon_sym_while] = ACTIONS(1620), - [anon_sym_do] = ACTIONS(1620), - [anon_sym_int] = ACTIONS(1620), - [anon_sym_PLUS] = ACTIONS(1620), - [anon_sym_DASH] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1622), - [anon_sym_asm] = ACTIONS(1620), - [anon_sym_DOLLARassert] = ACTIONS(1620), - [anon_sym_DOLLARerror] = ACTIONS(1620), - [anon_sym_DOLLARecho] = ACTIONS(1620), - [anon_sym_DOLLARif] = ACTIONS(1620), - [anon_sym_DOLLARswitch] = ACTIONS(1620), - [anon_sym_DOLLARfor] = ACTIONS(1620), - [anon_sym_DOLLARforeach] = ACTIONS(1620), - [anon_sym_DOLLARendforeach] = ACTIONS(1620), - [anon_sym_DOLLARalignof] = ACTIONS(1620), - [anon_sym_DOLLARextnameof] = ACTIONS(1620), - [anon_sym_DOLLARnameof] = ACTIONS(1620), - [anon_sym_DOLLARoffsetof] = ACTIONS(1620), - [anon_sym_DOLLARqnameof] = ACTIONS(1620), - [anon_sym_DOLLARvaconst] = ACTIONS(1620), - [anon_sym_DOLLARvaarg] = ACTIONS(1620), - [anon_sym_DOLLARvaref] = ACTIONS(1620), - [anon_sym_DOLLARvaexpr] = ACTIONS(1620), - [anon_sym_true] = ACTIONS(1620), - [anon_sym_false] = ACTIONS(1620), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_DOLLARvacount] = ACTIONS(1620), - [anon_sym_DOLLARappend] = ACTIONS(1620), - [anon_sym_DOLLARconcat] = ACTIONS(1620), - [anon_sym_DOLLAReval] = ACTIONS(1620), - [anon_sym_DOLLARis_const] = ACTIONS(1620), - [anon_sym_DOLLARsizeof] = ACTIONS(1620), - [anon_sym_DOLLARstringify] = ACTIONS(1620), - [anon_sym_DOLLARand] = ACTIONS(1620), - [anon_sym_DOLLARdefined] = ACTIONS(1620), - [anon_sym_DOLLARembed] = ACTIONS(1620), - [anon_sym_DOLLARor] = ACTIONS(1620), - [anon_sym_DOLLARfeature] = ACTIONS(1620), - [anon_sym_DOLLARassignable] = ACTIONS(1620), - [anon_sym_BANG] = ACTIONS(1622), - [anon_sym_TILDE] = ACTIONS(1622), - [anon_sym_PLUS_PLUS] = ACTIONS(1622), - [anon_sym_DASH_DASH] = ACTIONS(1622), - [anon_sym_typeid] = ACTIONS(1620), - [anon_sym_LBRACE_PIPE] = ACTIONS(1622), - [anon_sym_void] = ACTIONS(1620), - [anon_sym_bool] = ACTIONS(1620), - [anon_sym_char] = ACTIONS(1620), - [anon_sym_ichar] = ACTIONS(1620), - [anon_sym_short] = ACTIONS(1620), - [anon_sym_ushort] = ACTIONS(1620), - [anon_sym_uint] = ACTIONS(1620), - [anon_sym_long] = ACTIONS(1620), - [anon_sym_ulong] = ACTIONS(1620), - [anon_sym_int128] = ACTIONS(1620), - [anon_sym_uint128] = ACTIONS(1620), - [anon_sym_float] = ACTIONS(1620), - [anon_sym_double] = ACTIONS(1620), - [anon_sym_float16] = ACTIONS(1620), - [anon_sym_bfloat16] = ACTIONS(1620), - [anon_sym_float128] = ACTIONS(1620), - [anon_sym_iptr] = ACTIONS(1620), - [anon_sym_uptr] = ACTIONS(1620), - [anon_sym_isz] = ACTIONS(1620), - [anon_sym_usz] = ACTIONS(1620), - [anon_sym_anyfault] = ACTIONS(1620), - [anon_sym_any] = ACTIONS(1620), - [anon_sym_DOLLARtypeof] = ACTIONS(1620), - [anon_sym_DOLLARtypefrom] = ACTIONS(1620), - [anon_sym_DOLLARvatype] = ACTIONS(1620), - [anon_sym_DOLLARevaltype] = ACTIONS(1620), - [sym_real_literal] = ACTIONS(1622), + [sym_ident] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1421), + [anon_sym_SQUOTE] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1421), + [anon_sym_BQUOTE] = ACTIONS(1421), + [sym_bytes_literal] = ACTIONS(1421), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1419), + [sym_at_ident] = ACTIONS(1421), + [sym_hash_ident] = ACTIONS(1421), + [sym_type_ident] = ACTIONS(1421), + [sym_ct_type_ident] = ACTIONS(1421), + [sym_const_ident] = ACTIONS(1419), + [sym_builtin] = ACTIONS(1421), + [anon_sym_LPAREN] = ACTIONS(1421), + [anon_sym_AMP] = ACTIONS(1419), + [anon_sym_static] = ACTIONS(1419), + [anon_sym_tlocal] = ACTIONS(1419), + [anon_sym_SEMI] = ACTIONS(1421), + [anon_sym_fn] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(1419), + [anon_sym_const] = ACTIONS(1419), + [anon_sym_var] = ACTIONS(1419), + [anon_sym_return] = ACTIONS(1419), + [anon_sym_continue] = ACTIONS(1419), + [anon_sym_break] = ACTIONS(1419), + [anon_sym_defer] = ACTIONS(1419), + [anon_sym_assert] = ACTIONS(1419), + [anon_sym_nextcase] = ACTIONS(1419), + [anon_sym_switch] = ACTIONS(1419), + [anon_sym_AMP_AMP] = ACTIONS(1421), + [anon_sym_if] = ACTIONS(1419), + [anon_sym_for] = ACTIONS(1419), + [anon_sym_foreach] = ACTIONS(1419), + [anon_sym_foreach_r] = ACTIONS(1419), + [anon_sym_while] = ACTIONS(1419), + [anon_sym_do] = ACTIONS(1419), + [anon_sym_int] = ACTIONS(1419), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_DASH] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1421), + [anon_sym_asm] = ACTIONS(1419), + [anon_sym_DOLLARassert] = ACTIONS(1419), + [anon_sym_DOLLARerror] = ACTIONS(1419), + [anon_sym_DOLLARecho] = ACTIONS(1419), + [anon_sym_DOLLARif] = ACTIONS(1419), + [anon_sym_DOLLARswitch] = ACTIONS(1419), + [anon_sym_DOLLARfor] = ACTIONS(1419), + [anon_sym_DOLLARforeach] = ACTIONS(1419), + [anon_sym_DOLLARendforeach] = ACTIONS(1419), + [anon_sym_DOLLARalignof] = ACTIONS(1419), + [anon_sym_DOLLARextnameof] = ACTIONS(1419), + [anon_sym_DOLLARnameof] = ACTIONS(1419), + [anon_sym_DOLLARoffsetof] = ACTIONS(1419), + [anon_sym_DOLLARqnameof] = ACTIONS(1419), + [anon_sym_DOLLARvaconst] = ACTIONS(1419), + [anon_sym_DOLLARvaarg] = ACTIONS(1419), + [anon_sym_DOLLARvaref] = ACTIONS(1419), + [anon_sym_DOLLARvaexpr] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1419), + [anon_sym_false] = ACTIONS(1419), + [anon_sym_null] = ACTIONS(1419), + [anon_sym_DOLLARvacount] = ACTIONS(1419), + [anon_sym_DOLLARappend] = ACTIONS(1419), + [anon_sym_DOLLARconcat] = ACTIONS(1419), + [anon_sym_DOLLAReval] = ACTIONS(1419), + [anon_sym_DOLLARis_const] = ACTIONS(1419), + [anon_sym_DOLLARsizeof] = ACTIONS(1419), + [anon_sym_DOLLARstringify] = ACTIONS(1419), + [anon_sym_DOLLARand] = ACTIONS(1419), + [anon_sym_DOLLARdefined] = ACTIONS(1419), + [anon_sym_DOLLARembed] = ACTIONS(1419), + [anon_sym_DOLLARor] = ACTIONS(1419), + [anon_sym_DOLLARfeature] = ACTIONS(1419), + [anon_sym_DOLLARassignable] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_PLUS_PLUS] = ACTIONS(1421), + [anon_sym_DASH_DASH] = ACTIONS(1421), + [anon_sym_typeid] = ACTIONS(1419), + [anon_sym_LBRACE_PIPE] = ACTIONS(1421), + [anon_sym_void] = ACTIONS(1419), + [anon_sym_bool] = ACTIONS(1419), + [anon_sym_char] = ACTIONS(1419), + [anon_sym_ichar] = ACTIONS(1419), + [anon_sym_short] = ACTIONS(1419), + [anon_sym_ushort] = ACTIONS(1419), + [anon_sym_uint] = ACTIONS(1419), + [anon_sym_long] = ACTIONS(1419), + [anon_sym_ulong] = ACTIONS(1419), + [anon_sym_int128] = ACTIONS(1419), + [anon_sym_uint128] = ACTIONS(1419), + [anon_sym_float] = ACTIONS(1419), + [anon_sym_double] = ACTIONS(1419), + [anon_sym_float16] = ACTIONS(1419), + [anon_sym_bfloat16] = ACTIONS(1419), + [anon_sym_float128] = ACTIONS(1419), + [anon_sym_iptr] = ACTIONS(1419), + [anon_sym_uptr] = ACTIONS(1419), + [anon_sym_isz] = ACTIONS(1419), + [anon_sym_usz] = ACTIONS(1419), + [anon_sym_anyfault] = ACTIONS(1419), + [anon_sym_any] = ACTIONS(1419), + [anon_sym_DOLLARtypeof] = ACTIONS(1419), + [anon_sym_DOLLARtypefrom] = ACTIONS(1419), + [anon_sym_DOLLARvatype] = ACTIONS(1419), + [anon_sym_DOLLARevaltype] = ACTIONS(1419), + [sym_real_literal] = ACTIONS(1421), }, [683] = { [sym_line_comment] = STATE(683), [sym_doc_comment] = STATE(683), [sym_block_comment] = STATE(683), - [sym_ident] = ACTIONS(1422), - [sym_integer_literal] = ACTIONS(1424), - [anon_sym_SQUOTE] = ACTIONS(1424), - [anon_sym_DQUOTE] = ACTIONS(1424), - [anon_sym_BQUOTE] = ACTIONS(1424), - [sym_bytes_literal] = ACTIONS(1424), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1422), - [sym_at_ident] = ACTIONS(1424), - [sym_hash_ident] = ACTIONS(1424), - [sym_type_ident] = ACTIONS(1424), - [sym_ct_type_ident] = ACTIONS(1424), - [sym_const_ident] = ACTIONS(1422), - [sym_builtin] = ACTIONS(1424), - [anon_sym_LPAREN] = ACTIONS(1424), - [anon_sym_AMP] = ACTIONS(1422), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_tlocal] = ACTIONS(1422), - [anon_sym_SEMI] = ACTIONS(1424), - [anon_sym_fn] = ACTIONS(1422), - [anon_sym_LBRACE] = ACTIONS(1422), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_var] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_continue] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_defer] = ACTIONS(1422), - [anon_sym_assert] = ACTIONS(1422), - [anon_sym_nextcase] = ACTIONS(1422), - [anon_sym_switch] = ACTIONS(1422), - [anon_sym_AMP_AMP] = ACTIONS(1424), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_foreach] = ACTIONS(1422), - [anon_sym_foreach_r] = ACTIONS(1422), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_do] = ACTIONS(1422), - [anon_sym_int] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_STAR] = ACTIONS(1424), - [anon_sym_asm] = ACTIONS(1422), - [anon_sym_DOLLARassert] = ACTIONS(1422), - [anon_sym_DOLLARerror] = ACTIONS(1422), - [anon_sym_DOLLARecho] = ACTIONS(1422), - [anon_sym_DOLLARif] = ACTIONS(1422), - [anon_sym_DOLLARendif] = ACTIONS(1422), - [anon_sym_DOLLARswitch] = ACTIONS(1422), - [anon_sym_DOLLARfor] = ACTIONS(1422), - [anon_sym_DOLLARforeach] = ACTIONS(1422), - [anon_sym_DOLLARalignof] = ACTIONS(1422), - [anon_sym_DOLLARextnameof] = ACTIONS(1422), - [anon_sym_DOLLARnameof] = ACTIONS(1422), - [anon_sym_DOLLARoffsetof] = ACTIONS(1422), - [anon_sym_DOLLARqnameof] = ACTIONS(1422), - [anon_sym_DOLLARvaconst] = ACTIONS(1422), - [anon_sym_DOLLARvaarg] = ACTIONS(1422), - [anon_sym_DOLLARvaref] = ACTIONS(1422), - [anon_sym_DOLLARvaexpr] = ACTIONS(1422), - [anon_sym_true] = ACTIONS(1422), - [anon_sym_false] = ACTIONS(1422), - [anon_sym_null] = ACTIONS(1422), - [anon_sym_DOLLARvacount] = ACTIONS(1422), - [anon_sym_DOLLARappend] = ACTIONS(1422), - [anon_sym_DOLLARconcat] = ACTIONS(1422), - [anon_sym_DOLLAReval] = ACTIONS(1422), - [anon_sym_DOLLARis_const] = ACTIONS(1422), - [anon_sym_DOLLARsizeof] = ACTIONS(1422), - [anon_sym_DOLLARstringify] = ACTIONS(1422), - [anon_sym_DOLLARand] = ACTIONS(1422), - [anon_sym_DOLLARdefined] = ACTIONS(1422), - [anon_sym_DOLLARembed] = ACTIONS(1422), - [anon_sym_DOLLARor] = ACTIONS(1422), - [anon_sym_DOLLARfeature] = ACTIONS(1422), - [anon_sym_DOLLARassignable] = ACTIONS(1422), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_TILDE] = ACTIONS(1424), - [anon_sym_PLUS_PLUS] = ACTIONS(1424), - [anon_sym_DASH_DASH] = ACTIONS(1424), - [anon_sym_typeid] = ACTIONS(1422), - [anon_sym_LBRACE_PIPE] = ACTIONS(1424), - [anon_sym_void] = ACTIONS(1422), - [anon_sym_bool] = ACTIONS(1422), - [anon_sym_char] = ACTIONS(1422), - [anon_sym_ichar] = ACTIONS(1422), - [anon_sym_short] = ACTIONS(1422), - [anon_sym_ushort] = ACTIONS(1422), - [anon_sym_uint] = ACTIONS(1422), - [anon_sym_long] = ACTIONS(1422), - [anon_sym_ulong] = ACTIONS(1422), - [anon_sym_int128] = ACTIONS(1422), - [anon_sym_uint128] = ACTIONS(1422), - [anon_sym_float] = ACTIONS(1422), - [anon_sym_double] = ACTIONS(1422), - [anon_sym_float16] = ACTIONS(1422), - [anon_sym_bfloat16] = ACTIONS(1422), - [anon_sym_float128] = ACTIONS(1422), - [anon_sym_iptr] = ACTIONS(1422), - [anon_sym_uptr] = ACTIONS(1422), - [anon_sym_isz] = ACTIONS(1422), - [anon_sym_usz] = ACTIONS(1422), - [anon_sym_anyfault] = ACTIONS(1422), - [anon_sym_any] = ACTIONS(1422), - [anon_sym_DOLLARtypeof] = ACTIONS(1422), - [anon_sym_DOLLARtypefrom] = ACTIONS(1422), - [anon_sym_DOLLARvatype] = ACTIONS(1422), - [anon_sym_DOLLARevaltype] = ACTIONS(1422), - [sym_real_literal] = ACTIONS(1424), + [sym_ident] = ACTIONS(1399), + [sym_integer_literal] = ACTIONS(1401), + [anon_sym_SQUOTE] = ACTIONS(1401), + [anon_sym_DQUOTE] = ACTIONS(1401), + [anon_sym_BQUOTE] = ACTIONS(1401), + [sym_bytes_literal] = ACTIONS(1401), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1399), + [sym_at_ident] = ACTIONS(1401), + [sym_hash_ident] = ACTIONS(1401), + [sym_type_ident] = ACTIONS(1401), + [sym_ct_type_ident] = ACTIONS(1401), + [sym_const_ident] = ACTIONS(1399), + [sym_builtin] = ACTIONS(1401), + [anon_sym_LPAREN] = ACTIONS(1401), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_static] = ACTIONS(1399), + [anon_sym_tlocal] = ACTIONS(1399), + [anon_sym_SEMI] = ACTIONS(1401), + [anon_sym_fn] = ACTIONS(1399), + [anon_sym_LBRACE] = ACTIONS(1399), + [anon_sym_const] = ACTIONS(1399), + [anon_sym_var] = ACTIONS(1399), + [anon_sym_return] = ACTIONS(1399), + [anon_sym_continue] = ACTIONS(1399), + [anon_sym_break] = ACTIONS(1399), + [anon_sym_defer] = ACTIONS(1399), + [anon_sym_assert] = ACTIONS(1399), + [anon_sym_nextcase] = ACTIONS(1399), + [anon_sym_switch] = ACTIONS(1399), + [anon_sym_AMP_AMP] = ACTIONS(1401), + [anon_sym_if] = ACTIONS(1399), + [anon_sym_for] = ACTIONS(1399), + [anon_sym_foreach] = ACTIONS(1399), + [anon_sym_foreach_r] = ACTIONS(1399), + [anon_sym_while] = ACTIONS(1399), + [anon_sym_do] = ACTIONS(1399), + [anon_sym_int] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1399), + [anon_sym_DASH] = ACTIONS(1399), + [anon_sym_STAR] = ACTIONS(1401), + [anon_sym_asm] = ACTIONS(1399), + [anon_sym_DOLLARassert] = ACTIONS(1399), + [anon_sym_DOLLARerror] = ACTIONS(1399), + [anon_sym_DOLLARecho] = ACTIONS(1399), + [anon_sym_DOLLARif] = ACTIONS(1399), + [anon_sym_DOLLARswitch] = ACTIONS(1399), + [anon_sym_DOLLARfor] = ACTIONS(1399), + [anon_sym_DOLLARendfor] = ACTIONS(1399), + [anon_sym_DOLLARforeach] = ACTIONS(1399), + [anon_sym_DOLLARalignof] = ACTIONS(1399), + [anon_sym_DOLLARextnameof] = ACTIONS(1399), + [anon_sym_DOLLARnameof] = ACTIONS(1399), + [anon_sym_DOLLARoffsetof] = ACTIONS(1399), + [anon_sym_DOLLARqnameof] = ACTIONS(1399), + [anon_sym_DOLLARvaconst] = ACTIONS(1399), + [anon_sym_DOLLARvaarg] = ACTIONS(1399), + [anon_sym_DOLLARvaref] = ACTIONS(1399), + [anon_sym_DOLLARvaexpr] = ACTIONS(1399), + [anon_sym_true] = ACTIONS(1399), + [anon_sym_false] = ACTIONS(1399), + [anon_sym_null] = ACTIONS(1399), + [anon_sym_DOLLARvacount] = ACTIONS(1399), + [anon_sym_DOLLARappend] = ACTIONS(1399), + [anon_sym_DOLLARconcat] = ACTIONS(1399), + [anon_sym_DOLLAReval] = ACTIONS(1399), + [anon_sym_DOLLARis_const] = ACTIONS(1399), + [anon_sym_DOLLARsizeof] = ACTIONS(1399), + [anon_sym_DOLLARstringify] = ACTIONS(1399), + [anon_sym_DOLLARand] = ACTIONS(1399), + [anon_sym_DOLLARdefined] = ACTIONS(1399), + [anon_sym_DOLLARembed] = ACTIONS(1399), + [anon_sym_DOLLARor] = ACTIONS(1399), + [anon_sym_DOLLARfeature] = ACTIONS(1399), + [anon_sym_DOLLARassignable] = ACTIONS(1399), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_TILDE] = ACTIONS(1401), + [anon_sym_PLUS_PLUS] = ACTIONS(1401), + [anon_sym_DASH_DASH] = ACTIONS(1401), + [anon_sym_typeid] = ACTIONS(1399), + [anon_sym_LBRACE_PIPE] = ACTIONS(1401), + [anon_sym_void] = ACTIONS(1399), + [anon_sym_bool] = ACTIONS(1399), + [anon_sym_char] = ACTIONS(1399), + [anon_sym_ichar] = ACTIONS(1399), + [anon_sym_short] = ACTIONS(1399), + [anon_sym_ushort] = ACTIONS(1399), + [anon_sym_uint] = ACTIONS(1399), + [anon_sym_long] = ACTIONS(1399), + [anon_sym_ulong] = ACTIONS(1399), + [anon_sym_int128] = ACTIONS(1399), + [anon_sym_uint128] = ACTIONS(1399), + [anon_sym_float] = ACTIONS(1399), + [anon_sym_double] = ACTIONS(1399), + [anon_sym_float16] = ACTIONS(1399), + [anon_sym_bfloat16] = ACTIONS(1399), + [anon_sym_float128] = ACTIONS(1399), + [anon_sym_iptr] = ACTIONS(1399), + [anon_sym_uptr] = ACTIONS(1399), + [anon_sym_isz] = ACTIONS(1399), + [anon_sym_usz] = ACTIONS(1399), + [anon_sym_anyfault] = ACTIONS(1399), + [anon_sym_any] = ACTIONS(1399), + [anon_sym_DOLLARtypeof] = ACTIONS(1399), + [anon_sym_DOLLARtypefrom] = ACTIONS(1399), + [anon_sym_DOLLARvatype] = ACTIONS(1399), + [anon_sym_DOLLARevaltype] = ACTIONS(1399), + [sym_real_literal] = ACTIONS(1401), }, [684] = { [sym_line_comment] = STATE(684), [sym_doc_comment] = STATE(684), [sym_block_comment] = STATE(684), - [sym_ident] = ACTIONS(1584), - [sym_integer_literal] = ACTIONS(1586), - [anon_sym_SQUOTE] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1586), - [anon_sym_BQUOTE] = ACTIONS(1586), - [sym_bytes_literal] = ACTIONS(1586), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1584), - [sym_at_ident] = ACTIONS(1586), - [sym_hash_ident] = ACTIONS(1586), - [sym_type_ident] = ACTIONS(1586), - [sym_ct_type_ident] = ACTIONS(1586), - [sym_const_ident] = ACTIONS(1584), - [sym_builtin] = ACTIONS(1586), - [anon_sym_LPAREN] = ACTIONS(1586), - [anon_sym_AMP] = ACTIONS(1584), - [anon_sym_static] = ACTIONS(1584), - [anon_sym_tlocal] = ACTIONS(1584), - [anon_sym_SEMI] = ACTIONS(1586), - [anon_sym_fn] = ACTIONS(1584), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_const] = ACTIONS(1584), - [anon_sym_var] = ACTIONS(1584), - [anon_sym_return] = ACTIONS(1584), - [anon_sym_continue] = ACTIONS(1584), - [anon_sym_break] = ACTIONS(1584), - [anon_sym_defer] = ACTIONS(1584), - [anon_sym_assert] = ACTIONS(1584), - [anon_sym_nextcase] = ACTIONS(1584), - [anon_sym_switch] = ACTIONS(1584), - [anon_sym_AMP_AMP] = ACTIONS(1586), - [anon_sym_if] = ACTIONS(1584), - [anon_sym_for] = ACTIONS(1584), - [anon_sym_foreach] = ACTIONS(1584), - [anon_sym_foreach_r] = ACTIONS(1584), - [anon_sym_while] = ACTIONS(1584), - [anon_sym_do] = ACTIONS(1584), - [anon_sym_int] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1584), - [anon_sym_DASH] = ACTIONS(1584), - [anon_sym_STAR] = ACTIONS(1586), - [anon_sym_asm] = ACTIONS(1584), - [anon_sym_DOLLARassert] = ACTIONS(1584), - [anon_sym_DOLLARerror] = ACTIONS(1584), - [anon_sym_DOLLARecho] = ACTIONS(1584), - [anon_sym_DOLLARif] = ACTIONS(1584), - [anon_sym_DOLLARswitch] = ACTIONS(1584), - [anon_sym_DOLLARfor] = ACTIONS(1584), - [anon_sym_DOLLARforeach] = ACTIONS(1584), - [anon_sym_DOLLARendforeach] = ACTIONS(1584), - [anon_sym_DOLLARalignof] = ACTIONS(1584), - [anon_sym_DOLLARextnameof] = ACTIONS(1584), - [anon_sym_DOLLARnameof] = ACTIONS(1584), - [anon_sym_DOLLARoffsetof] = ACTIONS(1584), - [anon_sym_DOLLARqnameof] = ACTIONS(1584), - [anon_sym_DOLLARvaconst] = ACTIONS(1584), - [anon_sym_DOLLARvaarg] = ACTIONS(1584), - [anon_sym_DOLLARvaref] = ACTIONS(1584), - [anon_sym_DOLLARvaexpr] = ACTIONS(1584), - [anon_sym_true] = ACTIONS(1584), - [anon_sym_false] = ACTIONS(1584), - [anon_sym_null] = ACTIONS(1584), - [anon_sym_DOLLARvacount] = ACTIONS(1584), - [anon_sym_DOLLARappend] = ACTIONS(1584), - [anon_sym_DOLLARconcat] = ACTIONS(1584), - [anon_sym_DOLLAReval] = ACTIONS(1584), - [anon_sym_DOLLARis_const] = ACTIONS(1584), - [anon_sym_DOLLARsizeof] = ACTIONS(1584), - [anon_sym_DOLLARstringify] = ACTIONS(1584), - [anon_sym_DOLLARand] = ACTIONS(1584), - [anon_sym_DOLLARdefined] = ACTIONS(1584), - [anon_sym_DOLLARembed] = ACTIONS(1584), - [anon_sym_DOLLARor] = ACTIONS(1584), - [anon_sym_DOLLARfeature] = ACTIONS(1584), - [anon_sym_DOLLARassignable] = ACTIONS(1584), - [anon_sym_BANG] = ACTIONS(1586), - [anon_sym_TILDE] = ACTIONS(1586), - [anon_sym_PLUS_PLUS] = ACTIONS(1586), - [anon_sym_DASH_DASH] = ACTIONS(1586), - [anon_sym_typeid] = ACTIONS(1584), - [anon_sym_LBRACE_PIPE] = ACTIONS(1586), - [anon_sym_void] = ACTIONS(1584), - [anon_sym_bool] = ACTIONS(1584), - [anon_sym_char] = ACTIONS(1584), - [anon_sym_ichar] = ACTIONS(1584), - [anon_sym_short] = ACTIONS(1584), - [anon_sym_ushort] = ACTIONS(1584), - [anon_sym_uint] = ACTIONS(1584), - [anon_sym_long] = ACTIONS(1584), - [anon_sym_ulong] = ACTIONS(1584), - [anon_sym_int128] = ACTIONS(1584), - [anon_sym_uint128] = ACTIONS(1584), - [anon_sym_float] = ACTIONS(1584), - [anon_sym_double] = ACTIONS(1584), - [anon_sym_float16] = ACTIONS(1584), - [anon_sym_bfloat16] = ACTIONS(1584), - [anon_sym_float128] = ACTIONS(1584), - [anon_sym_iptr] = ACTIONS(1584), - [anon_sym_uptr] = ACTIONS(1584), - [anon_sym_isz] = ACTIONS(1584), - [anon_sym_usz] = ACTIONS(1584), - [anon_sym_anyfault] = ACTIONS(1584), - [anon_sym_any] = ACTIONS(1584), - [anon_sym_DOLLARtypeof] = ACTIONS(1584), - [anon_sym_DOLLARtypefrom] = ACTIONS(1584), - [anon_sym_DOLLARvatype] = ACTIONS(1584), - [anon_sym_DOLLARevaltype] = ACTIONS(1584), - [sym_real_literal] = ACTIONS(1586), + [sym_ident] = ACTIONS(1371), + [sym_integer_literal] = ACTIONS(1373), + [anon_sym_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE] = ACTIONS(1373), + [anon_sym_BQUOTE] = ACTIONS(1373), + [sym_bytes_literal] = ACTIONS(1373), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1371), + [sym_at_ident] = ACTIONS(1373), + [sym_hash_ident] = ACTIONS(1373), + [sym_type_ident] = ACTIONS(1373), + [sym_ct_type_ident] = ACTIONS(1373), + [sym_const_ident] = ACTIONS(1371), + [sym_builtin] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(1373), + [anon_sym_AMP] = ACTIONS(1371), + [anon_sym_static] = ACTIONS(1371), + [anon_sym_tlocal] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_fn] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1371), + [anon_sym_const] = ACTIONS(1371), + [anon_sym_var] = ACTIONS(1371), + [anon_sym_return] = ACTIONS(1371), + [anon_sym_continue] = ACTIONS(1371), + [anon_sym_break] = ACTIONS(1371), + [anon_sym_defer] = ACTIONS(1371), + [anon_sym_assert] = ACTIONS(1371), + [anon_sym_nextcase] = ACTIONS(1371), + [anon_sym_switch] = ACTIONS(1371), + [anon_sym_AMP_AMP] = ACTIONS(1373), + [anon_sym_if] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1371), + [anon_sym_foreach] = ACTIONS(1371), + [anon_sym_foreach_r] = ACTIONS(1371), + [anon_sym_while] = ACTIONS(1371), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_int] = ACTIONS(1371), + [anon_sym_PLUS] = ACTIONS(1371), + [anon_sym_DASH] = ACTIONS(1371), + [anon_sym_STAR] = ACTIONS(1373), + [anon_sym_asm] = ACTIONS(1371), + [anon_sym_DOLLARassert] = ACTIONS(1371), + [anon_sym_DOLLARerror] = ACTIONS(1371), + [anon_sym_DOLLARecho] = ACTIONS(1371), + [anon_sym_DOLLARif] = ACTIONS(1371), + [anon_sym_DOLLARswitch] = ACTIONS(1371), + [anon_sym_DOLLARfor] = ACTIONS(1371), + [anon_sym_DOLLARendfor] = ACTIONS(1371), + [anon_sym_DOLLARforeach] = ACTIONS(1371), + [anon_sym_DOLLARalignof] = ACTIONS(1371), + [anon_sym_DOLLARextnameof] = ACTIONS(1371), + [anon_sym_DOLLARnameof] = ACTIONS(1371), + [anon_sym_DOLLARoffsetof] = ACTIONS(1371), + [anon_sym_DOLLARqnameof] = ACTIONS(1371), + [anon_sym_DOLLARvaconst] = ACTIONS(1371), + [anon_sym_DOLLARvaarg] = ACTIONS(1371), + [anon_sym_DOLLARvaref] = ACTIONS(1371), + [anon_sym_DOLLARvaexpr] = ACTIONS(1371), + [anon_sym_true] = ACTIONS(1371), + [anon_sym_false] = ACTIONS(1371), + [anon_sym_null] = ACTIONS(1371), + [anon_sym_DOLLARvacount] = ACTIONS(1371), + [anon_sym_DOLLARappend] = ACTIONS(1371), + [anon_sym_DOLLARconcat] = ACTIONS(1371), + [anon_sym_DOLLAReval] = ACTIONS(1371), + [anon_sym_DOLLARis_const] = ACTIONS(1371), + [anon_sym_DOLLARsizeof] = ACTIONS(1371), + [anon_sym_DOLLARstringify] = ACTIONS(1371), + [anon_sym_DOLLARand] = ACTIONS(1371), + [anon_sym_DOLLARdefined] = ACTIONS(1371), + [anon_sym_DOLLARembed] = ACTIONS(1371), + [anon_sym_DOLLARor] = ACTIONS(1371), + [anon_sym_DOLLARfeature] = ACTIONS(1371), + [anon_sym_DOLLARassignable] = ACTIONS(1371), + [anon_sym_BANG] = ACTIONS(1373), + [anon_sym_TILDE] = ACTIONS(1373), + [anon_sym_PLUS_PLUS] = ACTIONS(1373), + [anon_sym_DASH_DASH] = ACTIONS(1373), + [anon_sym_typeid] = ACTIONS(1371), + [anon_sym_LBRACE_PIPE] = ACTIONS(1373), + [anon_sym_void] = ACTIONS(1371), + [anon_sym_bool] = ACTIONS(1371), + [anon_sym_char] = ACTIONS(1371), + [anon_sym_ichar] = ACTIONS(1371), + [anon_sym_short] = ACTIONS(1371), + [anon_sym_ushort] = ACTIONS(1371), + [anon_sym_uint] = ACTIONS(1371), + [anon_sym_long] = ACTIONS(1371), + [anon_sym_ulong] = ACTIONS(1371), + [anon_sym_int128] = ACTIONS(1371), + [anon_sym_uint128] = ACTIONS(1371), + [anon_sym_float] = ACTIONS(1371), + [anon_sym_double] = ACTIONS(1371), + [anon_sym_float16] = ACTIONS(1371), + [anon_sym_bfloat16] = ACTIONS(1371), + [anon_sym_float128] = ACTIONS(1371), + [anon_sym_iptr] = ACTIONS(1371), + [anon_sym_uptr] = ACTIONS(1371), + [anon_sym_isz] = ACTIONS(1371), + [anon_sym_usz] = ACTIONS(1371), + [anon_sym_anyfault] = ACTIONS(1371), + [anon_sym_any] = ACTIONS(1371), + [anon_sym_DOLLARtypeof] = ACTIONS(1371), + [anon_sym_DOLLARtypefrom] = ACTIONS(1371), + [anon_sym_DOLLARvatype] = ACTIONS(1371), + [anon_sym_DOLLARevaltype] = ACTIONS(1371), + [sym_real_literal] = ACTIONS(1373), }, [685] = { [sym_line_comment] = STATE(685), [sym_doc_comment] = STATE(685), [sym_block_comment] = STATE(685), - [sym_ident] = ACTIONS(1644), - [sym_integer_literal] = ACTIONS(1646), - [anon_sym_SQUOTE] = ACTIONS(1646), - [anon_sym_DQUOTE] = ACTIONS(1646), - [anon_sym_BQUOTE] = ACTIONS(1646), - [sym_bytes_literal] = ACTIONS(1646), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1644), - [sym_at_ident] = ACTIONS(1646), - [sym_hash_ident] = ACTIONS(1646), - [sym_type_ident] = ACTIONS(1646), - [sym_ct_type_ident] = ACTIONS(1646), - [sym_const_ident] = ACTIONS(1644), - [sym_builtin] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(1646), - [anon_sym_AMP] = ACTIONS(1644), - [anon_sym_static] = ACTIONS(1644), - [anon_sym_tlocal] = ACTIONS(1644), - [anon_sym_SEMI] = ACTIONS(1646), - [anon_sym_fn] = ACTIONS(1644), - [anon_sym_LBRACE] = ACTIONS(1644), - [anon_sym_const] = ACTIONS(1644), - [anon_sym_var] = ACTIONS(1644), - [anon_sym_return] = ACTIONS(1644), - [anon_sym_continue] = ACTIONS(1644), - [anon_sym_break] = ACTIONS(1644), - [anon_sym_defer] = ACTIONS(1644), - [anon_sym_assert] = ACTIONS(1644), - [anon_sym_nextcase] = ACTIONS(1644), - [anon_sym_switch] = ACTIONS(1644), - [anon_sym_AMP_AMP] = ACTIONS(1646), - [anon_sym_if] = ACTIONS(1644), - [anon_sym_for] = ACTIONS(1644), - [anon_sym_foreach] = ACTIONS(1644), - [anon_sym_foreach_r] = ACTIONS(1644), - [anon_sym_while] = ACTIONS(1644), - [anon_sym_do] = ACTIONS(1644), - [anon_sym_int] = ACTIONS(1644), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_asm] = ACTIONS(1644), - [anon_sym_DOLLARassert] = ACTIONS(1644), - [anon_sym_DOLLARerror] = ACTIONS(1644), - [anon_sym_DOLLARecho] = ACTIONS(1644), - [anon_sym_DOLLARif] = ACTIONS(1644), - [anon_sym_DOLLARswitch] = ACTIONS(1644), - [anon_sym_DOLLARfor] = ACTIONS(1644), - [anon_sym_DOLLARforeach] = ACTIONS(1644), - [anon_sym_DOLLARendforeach] = ACTIONS(1644), - [anon_sym_DOLLARalignof] = ACTIONS(1644), - [anon_sym_DOLLARextnameof] = ACTIONS(1644), - [anon_sym_DOLLARnameof] = ACTIONS(1644), - [anon_sym_DOLLARoffsetof] = ACTIONS(1644), - [anon_sym_DOLLARqnameof] = ACTIONS(1644), - [anon_sym_DOLLARvaconst] = ACTIONS(1644), - [anon_sym_DOLLARvaarg] = ACTIONS(1644), - [anon_sym_DOLLARvaref] = ACTIONS(1644), - [anon_sym_DOLLARvaexpr] = ACTIONS(1644), - [anon_sym_true] = ACTIONS(1644), - [anon_sym_false] = ACTIONS(1644), - [anon_sym_null] = ACTIONS(1644), - [anon_sym_DOLLARvacount] = ACTIONS(1644), - [anon_sym_DOLLARappend] = ACTIONS(1644), - [anon_sym_DOLLARconcat] = ACTIONS(1644), - [anon_sym_DOLLAReval] = ACTIONS(1644), - [anon_sym_DOLLARis_const] = ACTIONS(1644), - [anon_sym_DOLLARsizeof] = ACTIONS(1644), - [anon_sym_DOLLARstringify] = ACTIONS(1644), - [anon_sym_DOLLARand] = ACTIONS(1644), - [anon_sym_DOLLARdefined] = ACTIONS(1644), - [anon_sym_DOLLARembed] = ACTIONS(1644), - [anon_sym_DOLLARor] = ACTIONS(1644), - [anon_sym_DOLLARfeature] = ACTIONS(1644), - [anon_sym_DOLLARassignable] = ACTIONS(1644), - [anon_sym_BANG] = ACTIONS(1646), - [anon_sym_TILDE] = ACTIONS(1646), - [anon_sym_PLUS_PLUS] = ACTIONS(1646), - [anon_sym_DASH_DASH] = ACTIONS(1646), - [anon_sym_typeid] = ACTIONS(1644), - [anon_sym_LBRACE_PIPE] = ACTIONS(1646), - [anon_sym_void] = ACTIONS(1644), - [anon_sym_bool] = ACTIONS(1644), - [anon_sym_char] = ACTIONS(1644), - [anon_sym_ichar] = ACTIONS(1644), - [anon_sym_short] = ACTIONS(1644), - [anon_sym_ushort] = ACTIONS(1644), - [anon_sym_uint] = ACTIONS(1644), - [anon_sym_long] = ACTIONS(1644), - [anon_sym_ulong] = ACTIONS(1644), - [anon_sym_int128] = ACTIONS(1644), - [anon_sym_uint128] = ACTIONS(1644), - [anon_sym_float] = ACTIONS(1644), - [anon_sym_double] = ACTIONS(1644), - [anon_sym_float16] = ACTIONS(1644), - [anon_sym_bfloat16] = ACTIONS(1644), - [anon_sym_float128] = ACTIONS(1644), - [anon_sym_iptr] = ACTIONS(1644), - [anon_sym_uptr] = ACTIONS(1644), - [anon_sym_isz] = ACTIONS(1644), - [anon_sym_usz] = ACTIONS(1644), - [anon_sym_anyfault] = ACTIONS(1644), - [anon_sym_any] = ACTIONS(1644), - [anon_sym_DOLLARtypeof] = ACTIONS(1644), - [anon_sym_DOLLARtypefrom] = ACTIONS(1644), - [anon_sym_DOLLARvatype] = ACTIONS(1644), - [anon_sym_DOLLARevaltype] = ACTIONS(1644), - [sym_real_literal] = ACTIONS(1646), + [sym_ident] = ACTIONS(1415), + [sym_integer_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1417), + [anon_sym_DQUOTE] = ACTIONS(1417), + [anon_sym_BQUOTE] = ACTIONS(1417), + [sym_bytes_literal] = ACTIONS(1417), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1415), + [sym_at_ident] = ACTIONS(1417), + [sym_hash_ident] = ACTIONS(1417), + [sym_type_ident] = ACTIONS(1417), + [sym_ct_type_ident] = ACTIONS(1417), + [sym_const_ident] = ACTIONS(1415), + [sym_builtin] = ACTIONS(1417), + [anon_sym_LPAREN] = ACTIONS(1417), + [anon_sym_AMP] = ACTIONS(1415), + [anon_sym_static] = ACTIONS(1415), + [anon_sym_tlocal] = ACTIONS(1415), + [anon_sym_SEMI] = ACTIONS(1417), + [anon_sym_fn] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1415), + [anon_sym_const] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1415), + [anon_sym_return] = ACTIONS(1415), + [anon_sym_continue] = ACTIONS(1415), + [anon_sym_break] = ACTIONS(1415), + [anon_sym_defer] = ACTIONS(1415), + [anon_sym_assert] = ACTIONS(1415), + [anon_sym_nextcase] = ACTIONS(1415), + [anon_sym_switch] = ACTIONS(1415), + [anon_sym_AMP_AMP] = ACTIONS(1417), + [anon_sym_if] = ACTIONS(1415), + [anon_sym_for] = ACTIONS(1415), + [anon_sym_foreach] = ACTIONS(1415), + [anon_sym_foreach_r] = ACTIONS(1415), + [anon_sym_while] = ACTIONS(1415), + [anon_sym_do] = ACTIONS(1415), + [anon_sym_int] = ACTIONS(1415), + [anon_sym_PLUS] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1415), + [anon_sym_STAR] = ACTIONS(1417), + [anon_sym_asm] = ACTIONS(1415), + [anon_sym_DOLLARassert] = ACTIONS(1415), + [anon_sym_DOLLARerror] = ACTIONS(1415), + [anon_sym_DOLLARecho] = ACTIONS(1415), + [anon_sym_DOLLARif] = ACTIONS(1415), + [anon_sym_DOLLARswitch] = ACTIONS(1415), + [anon_sym_DOLLARfor] = ACTIONS(1415), + [anon_sym_DOLLARforeach] = ACTIONS(1415), + [anon_sym_DOLLARendforeach] = ACTIONS(1415), + [anon_sym_DOLLARalignof] = ACTIONS(1415), + [anon_sym_DOLLARextnameof] = ACTIONS(1415), + [anon_sym_DOLLARnameof] = ACTIONS(1415), + [anon_sym_DOLLARoffsetof] = ACTIONS(1415), + [anon_sym_DOLLARqnameof] = ACTIONS(1415), + [anon_sym_DOLLARvaconst] = ACTIONS(1415), + [anon_sym_DOLLARvaarg] = ACTIONS(1415), + [anon_sym_DOLLARvaref] = ACTIONS(1415), + [anon_sym_DOLLARvaexpr] = ACTIONS(1415), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_null] = ACTIONS(1415), + [anon_sym_DOLLARvacount] = ACTIONS(1415), + [anon_sym_DOLLARappend] = ACTIONS(1415), + [anon_sym_DOLLARconcat] = ACTIONS(1415), + [anon_sym_DOLLAReval] = ACTIONS(1415), + [anon_sym_DOLLARis_const] = ACTIONS(1415), + [anon_sym_DOLLARsizeof] = ACTIONS(1415), + [anon_sym_DOLLARstringify] = ACTIONS(1415), + [anon_sym_DOLLARand] = ACTIONS(1415), + [anon_sym_DOLLARdefined] = ACTIONS(1415), + [anon_sym_DOLLARembed] = ACTIONS(1415), + [anon_sym_DOLLARor] = ACTIONS(1415), + [anon_sym_DOLLARfeature] = ACTIONS(1415), + [anon_sym_DOLLARassignable] = ACTIONS(1415), + [anon_sym_BANG] = ACTIONS(1417), + [anon_sym_TILDE] = ACTIONS(1417), + [anon_sym_PLUS_PLUS] = ACTIONS(1417), + [anon_sym_DASH_DASH] = ACTIONS(1417), + [anon_sym_typeid] = ACTIONS(1415), + [anon_sym_LBRACE_PIPE] = ACTIONS(1417), + [anon_sym_void] = ACTIONS(1415), + [anon_sym_bool] = ACTIONS(1415), + [anon_sym_char] = ACTIONS(1415), + [anon_sym_ichar] = ACTIONS(1415), + [anon_sym_short] = ACTIONS(1415), + [anon_sym_ushort] = ACTIONS(1415), + [anon_sym_uint] = ACTIONS(1415), + [anon_sym_long] = ACTIONS(1415), + [anon_sym_ulong] = ACTIONS(1415), + [anon_sym_int128] = ACTIONS(1415), + [anon_sym_uint128] = ACTIONS(1415), + [anon_sym_float] = ACTIONS(1415), + [anon_sym_double] = ACTIONS(1415), + [anon_sym_float16] = ACTIONS(1415), + [anon_sym_bfloat16] = ACTIONS(1415), + [anon_sym_float128] = ACTIONS(1415), + [anon_sym_iptr] = ACTIONS(1415), + [anon_sym_uptr] = ACTIONS(1415), + [anon_sym_isz] = ACTIONS(1415), + [anon_sym_usz] = ACTIONS(1415), + [anon_sym_anyfault] = ACTIONS(1415), + [anon_sym_any] = ACTIONS(1415), + [anon_sym_DOLLARtypeof] = ACTIONS(1415), + [anon_sym_DOLLARtypefrom] = ACTIONS(1415), + [anon_sym_DOLLARvatype] = ACTIONS(1415), + [anon_sym_DOLLARevaltype] = ACTIONS(1415), + [sym_real_literal] = ACTIONS(1417), }, [686] = { [sym_line_comment] = STATE(686), [sym_doc_comment] = STATE(686), [sym_block_comment] = STATE(686), - [sym_ident] = ACTIONS(1432), - [sym_integer_literal] = ACTIONS(1434), - [anon_sym_SQUOTE] = ACTIONS(1434), - [anon_sym_DQUOTE] = ACTIONS(1434), - [anon_sym_BQUOTE] = ACTIONS(1434), - [sym_bytes_literal] = ACTIONS(1434), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1432), - [sym_at_ident] = ACTIONS(1434), - [sym_hash_ident] = ACTIONS(1434), - [sym_type_ident] = ACTIONS(1434), - [sym_ct_type_ident] = ACTIONS(1434), - [sym_const_ident] = ACTIONS(1432), - [sym_builtin] = ACTIONS(1434), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_AMP] = ACTIONS(1432), - [anon_sym_static] = ACTIONS(1432), - [anon_sym_tlocal] = ACTIONS(1432), - [anon_sym_SEMI] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1432), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_const] = ACTIONS(1432), - [anon_sym_var] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_continue] = ACTIONS(1432), - [anon_sym_break] = ACTIONS(1432), - [anon_sym_defer] = ACTIONS(1432), - [anon_sym_assert] = ACTIONS(1432), - [anon_sym_nextcase] = ACTIONS(1432), - [anon_sym_switch] = ACTIONS(1432), - [anon_sym_AMP_AMP] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_foreach] = ACTIONS(1432), - [anon_sym_foreach_r] = ACTIONS(1432), - [anon_sym_while] = ACTIONS(1432), - [anon_sym_do] = ACTIONS(1432), - [anon_sym_int] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1432), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_STAR] = ACTIONS(1434), - [anon_sym_asm] = ACTIONS(1432), - [anon_sym_DOLLARassert] = ACTIONS(1432), - [anon_sym_DOLLARerror] = ACTIONS(1432), - [anon_sym_DOLLARecho] = ACTIONS(1432), - [anon_sym_DOLLARif] = ACTIONS(1432), - [anon_sym_DOLLARendif] = ACTIONS(1432), - [anon_sym_DOLLARswitch] = ACTIONS(1432), - [anon_sym_DOLLARfor] = ACTIONS(1432), - [anon_sym_DOLLARforeach] = ACTIONS(1432), - [anon_sym_DOLLARalignof] = ACTIONS(1432), - [anon_sym_DOLLARextnameof] = ACTIONS(1432), - [anon_sym_DOLLARnameof] = ACTIONS(1432), - [anon_sym_DOLLARoffsetof] = ACTIONS(1432), - [anon_sym_DOLLARqnameof] = ACTIONS(1432), - [anon_sym_DOLLARvaconst] = ACTIONS(1432), - [anon_sym_DOLLARvaarg] = ACTIONS(1432), - [anon_sym_DOLLARvaref] = ACTIONS(1432), - [anon_sym_DOLLARvaexpr] = ACTIONS(1432), - [anon_sym_true] = ACTIONS(1432), - [anon_sym_false] = ACTIONS(1432), - [anon_sym_null] = ACTIONS(1432), - [anon_sym_DOLLARvacount] = ACTIONS(1432), - [anon_sym_DOLLARappend] = ACTIONS(1432), - [anon_sym_DOLLARconcat] = ACTIONS(1432), - [anon_sym_DOLLAReval] = ACTIONS(1432), - [anon_sym_DOLLARis_const] = ACTIONS(1432), - [anon_sym_DOLLARsizeof] = ACTIONS(1432), - [anon_sym_DOLLARstringify] = ACTIONS(1432), - [anon_sym_DOLLARand] = ACTIONS(1432), - [anon_sym_DOLLARdefined] = ACTIONS(1432), - [anon_sym_DOLLARembed] = ACTIONS(1432), - [anon_sym_DOLLARor] = ACTIONS(1432), - [anon_sym_DOLLARfeature] = ACTIONS(1432), - [anon_sym_DOLLARassignable] = ACTIONS(1432), - [anon_sym_BANG] = ACTIONS(1434), - [anon_sym_TILDE] = ACTIONS(1434), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), - [anon_sym_typeid] = ACTIONS(1432), - [anon_sym_LBRACE_PIPE] = ACTIONS(1434), - [anon_sym_void] = ACTIONS(1432), - [anon_sym_bool] = ACTIONS(1432), - [anon_sym_char] = ACTIONS(1432), - [anon_sym_ichar] = ACTIONS(1432), - [anon_sym_short] = ACTIONS(1432), - [anon_sym_ushort] = ACTIONS(1432), - [anon_sym_uint] = ACTIONS(1432), - [anon_sym_long] = ACTIONS(1432), - [anon_sym_ulong] = ACTIONS(1432), - [anon_sym_int128] = ACTIONS(1432), - [anon_sym_uint128] = ACTIONS(1432), - [anon_sym_float] = ACTIONS(1432), - [anon_sym_double] = ACTIONS(1432), - [anon_sym_float16] = ACTIONS(1432), - [anon_sym_bfloat16] = ACTIONS(1432), - [anon_sym_float128] = ACTIONS(1432), - [anon_sym_iptr] = ACTIONS(1432), - [anon_sym_uptr] = ACTIONS(1432), - [anon_sym_isz] = ACTIONS(1432), - [anon_sym_usz] = ACTIONS(1432), - [anon_sym_anyfault] = ACTIONS(1432), - [anon_sym_any] = ACTIONS(1432), - [anon_sym_DOLLARtypeof] = ACTIONS(1432), - [anon_sym_DOLLARtypefrom] = ACTIONS(1432), - [anon_sym_DOLLARvatype] = ACTIONS(1432), - [anon_sym_DOLLARevaltype] = ACTIONS(1432), - [sym_real_literal] = ACTIONS(1434), + [sym_ident] = ACTIONS(1593), + [sym_integer_literal] = ACTIONS(1595), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_DQUOTE] = ACTIONS(1595), + [anon_sym_BQUOTE] = ACTIONS(1595), + [sym_bytes_literal] = ACTIONS(1595), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1593), + [sym_at_ident] = ACTIONS(1595), + [sym_hash_ident] = ACTIONS(1595), + [sym_type_ident] = ACTIONS(1595), + [sym_ct_type_ident] = ACTIONS(1595), + [sym_const_ident] = ACTIONS(1593), + [sym_builtin] = ACTIONS(1595), + [anon_sym_LPAREN] = ACTIONS(1595), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_static] = ACTIONS(1593), + [anon_sym_tlocal] = ACTIONS(1593), + [anon_sym_SEMI] = ACTIONS(1595), + [anon_sym_fn] = ACTIONS(1593), + [anon_sym_LBRACE] = ACTIONS(1593), + [anon_sym_const] = ACTIONS(1593), + [anon_sym_var] = ACTIONS(1593), + [anon_sym_return] = ACTIONS(1593), + [anon_sym_continue] = ACTIONS(1593), + [anon_sym_break] = ACTIONS(1593), + [anon_sym_defer] = ACTIONS(1593), + [anon_sym_assert] = ACTIONS(1593), + [anon_sym_nextcase] = ACTIONS(1593), + [anon_sym_switch] = ACTIONS(1593), + [anon_sym_AMP_AMP] = ACTIONS(1595), + [anon_sym_if] = ACTIONS(1593), + [anon_sym_for] = ACTIONS(1593), + [anon_sym_foreach] = ACTIONS(1593), + [anon_sym_foreach_r] = ACTIONS(1593), + [anon_sym_while] = ACTIONS(1593), + [anon_sym_do] = ACTIONS(1593), + [anon_sym_int] = ACTIONS(1593), + [anon_sym_PLUS] = ACTIONS(1593), + [anon_sym_DASH] = ACTIONS(1593), + [anon_sym_STAR] = ACTIONS(1595), + [anon_sym_asm] = ACTIONS(1593), + [anon_sym_DOLLARassert] = ACTIONS(1593), + [anon_sym_DOLLARerror] = ACTIONS(1593), + [anon_sym_DOLLARecho] = ACTIONS(1593), + [anon_sym_DOLLARif] = ACTIONS(1593), + [anon_sym_DOLLARswitch] = ACTIONS(1593), + [anon_sym_DOLLARfor] = ACTIONS(1593), + [anon_sym_DOLLARforeach] = ACTIONS(1593), + [anon_sym_DOLLARendforeach] = ACTIONS(1593), + [anon_sym_DOLLARalignof] = ACTIONS(1593), + [anon_sym_DOLLARextnameof] = ACTIONS(1593), + [anon_sym_DOLLARnameof] = ACTIONS(1593), + [anon_sym_DOLLARoffsetof] = ACTIONS(1593), + [anon_sym_DOLLARqnameof] = ACTIONS(1593), + [anon_sym_DOLLARvaconst] = ACTIONS(1593), + [anon_sym_DOLLARvaarg] = ACTIONS(1593), + [anon_sym_DOLLARvaref] = ACTIONS(1593), + [anon_sym_DOLLARvaexpr] = ACTIONS(1593), + [anon_sym_true] = ACTIONS(1593), + [anon_sym_false] = ACTIONS(1593), + [anon_sym_null] = ACTIONS(1593), + [anon_sym_DOLLARvacount] = ACTIONS(1593), + [anon_sym_DOLLARappend] = ACTIONS(1593), + [anon_sym_DOLLARconcat] = ACTIONS(1593), + [anon_sym_DOLLAReval] = ACTIONS(1593), + [anon_sym_DOLLARis_const] = ACTIONS(1593), + [anon_sym_DOLLARsizeof] = ACTIONS(1593), + [anon_sym_DOLLARstringify] = ACTIONS(1593), + [anon_sym_DOLLARand] = ACTIONS(1593), + [anon_sym_DOLLARdefined] = ACTIONS(1593), + [anon_sym_DOLLARembed] = ACTIONS(1593), + [anon_sym_DOLLARor] = ACTIONS(1593), + [anon_sym_DOLLARfeature] = ACTIONS(1593), + [anon_sym_DOLLARassignable] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1595), + [anon_sym_TILDE] = ACTIONS(1595), + [anon_sym_PLUS_PLUS] = ACTIONS(1595), + [anon_sym_DASH_DASH] = ACTIONS(1595), + [anon_sym_typeid] = ACTIONS(1593), + [anon_sym_LBRACE_PIPE] = ACTIONS(1595), + [anon_sym_void] = ACTIONS(1593), + [anon_sym_bool] = ACTIONS(1593), + [anon_sym_char] = ACTIONS(1593), + [anon_sym_ichar] = ACTIONS(1593), + [anon_sym_short] = ACTIONS(1593), + [anon_sym_ushort] = ACTIONS(1593), + [anon_sym_uint] = ACTIONS(1593), + [anon_sym_long] = ACTIONS(1593), + [anon_sym_ulong] = ACTIONS(1593), + [anon_sym_int128] = ACTIONS(1593), + [anon_sym_uint128] = ACTIONS(1593), + [anon_sym_float] = ACTIONS(1593), + [anon_sym_double] = ACTIONS(1593), + [anon_sym_float16] = ACTIONS(1593), + [anon_sym_bfloat16] = ACTIONS(1593), + [anon_sym_float128] = ACTIONS(1593), + [anon_sym_iptr] = ACTIONS(1593), + [anon_sym_uptr] = ACTIONS(1593), + [anon_sym_isz] = ACTIONS(1593), + [anon_sym_usz] = ACTIONS(1593), + [anon_sym_anyfault] = ACTIONS(1593), + [anon_sym_any] = ACTIONS(1593), + [anon_sym_DOLLARtypeof] = ACTIONS(1593), + [anon_sym_DOLLARtypefrom] = ACTIONS(1593), + [anon_sym_DOLLARvatype] = ACTIONS(1593), + [anon_sym_DOLLARevaltype] = ACTIONS(1593), + [sym_real_literal] = ACTIONS(1595), }, [687] = { [sym_line_comment] = STATE(687), [sym_doc_comment] = STATE(687), [sym_block_comment] = STATE(687), - [sym_ident] = ACTIONS(1496), - [sym_integer_literal] = ACTIONS(1498), - [anon_sym_SQUOTE] = ACTIONS(1498), - [anon_sym_DQUOTE] = ACTIONS(1498), - [anon_sym_BQUOTE] = ACTIONS(1498), - [sym_bytes_literal] = ACTIONS(1498), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1496), - [sym_at_ident] = ACTIONS(1498), - [sym_hash_ident] = ACTIONS(1498), - [sym_type_ident] = ACTIONS(1498), - [sym_ct_type_ident] = ACTIONS(1498), - [sym_const_ident] = ACTIONS(1496), - [sym_builtin] = ACTIONS(1498), - [anon_sym_LPAREN] = ACTIONS(1498), - [anon_sym_AMP] = ACTIONS(1496), - [anon_sym_static] = ACTIONS(1496), - [anon_sym_tlocal] = ACTIONS(1496), - [anon_sym_SEMI] = ACTIONS(1498), - [anon_sym_fn] = ACTIONS(1496), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_const] = ACTIONS(1496), - [anon_sym_var] = ACTIONS(1496), - [anon_sym_return] = ACTIONS(1496), - [anon_sym_continue] = ACTIONS(1496), - [anon_sym_break] = ACTIONS(1496), - [anon_sym_defer] = ACTIONS(1496), - [anon_sym_assert] = ACTIONS(1496), - [anon_sym_nextcase] = ACTIONS(1496), - [anon_sym_switch] = ACTIONS(1496), - [anon_sym_AMP_AMP] = ACTIONS(1498), - [anon_sym_if] = ACTIONS(1496), - [anon_sym_for] = ACTIONS(1496), - [anon_sym_foreach] = ACTIONS(1496), - [anon_sym_foreach_r] = ACTIONS(1496), - [anon_sym_while] = ACTIONS(1496), - [anon_sym_do] = ACTIONS(1496), - [anon_sym_int] = ACTIONS(1496), - [anon_sym_PLUS] = ACTIONS(1496), - [anon_sym_DASH] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(1498), - [anon_sym_asm] = ACTIONS(1496), - [anon_sym_DOLLARassert] = ACTIONS(1496), - [anon_sym_DOLLARerror] = ACTIONS(1496), - [anon_sym_DOLLARecho] = ACTIONS(1496), - [anon_sym_DOLLARif] = ACTIONS(1496), - [anon_sym_DOLLARswitch] = ACTIONS(1496), - [anon_sym_DOLLARfor] = ACTIONS(1496), - [anon_sym_DOLLARendfor] = ACTIONS(1496), - [anon_sym_DOLLARforeach] = ACTIONS(1496), - [anon_sym_DOLLARalignof] = ACTIONS(1496), - [anon_sym_DOLLARextnameof] = ACTIONS(1496), - [anon_sym_DOLLARnameof] = ACTIONS(1496), - [anon_sym_DOLLARoffsetof] = ACTIONS(1496), - [anon_sym_DOLLARqnameof] = ACTIONS(1496), - [anon_sym_DOLLARvaconst] = ACTIONS(1496), - [anon_sym_DOLLARvaarg] = ACTIONS(1496), - [anon_sym_DOLLARvaref] = ACTIONS(1496), - [anon_sym_DOLLARvaexpr] = ACTIONS(1496), - [anon_sym_true] = ACTIONS(1496), - [anon_sym_false] = ACTIONS(1496), - [anon_sym_null] = ACTIONS(1496), - [anon_sym_DOLLARvacount] = ACTIONS(1496), - [anon_sym_DOLLARappend] = ACTIONS(1496), - [anon_sym_DOLLARconcat] = ACTIONS(1496), - [anon_sym_DOLLAReval] = ACTIONS(1496), - [anon_sym_DOLLARis_const] = ACTIONS(1496), - [anon_sym_DOLLARsizeof] = ACTIONS(1496), - [anon_sym_DOLLARstringify] = ACTIONS(1496), - [anon_sym_DOLLARand] = ACTIONS(1496), - [anon_sym_DOLLARdefined] = ACTIONS(1496), - [anon_sym_DOLLARembed] = ACTIONS(1496), - [anon_sym_DOLLARor] = ACTIONS(1496), - [anon_sym_DOLLARfeature] = ACTIONS(1496), - [anon_sym_DOLLARassignable] = ACTIONS(1496), - [anon_sym_BANG] = ACTIONS(1498), - [anon_sym_TILDE] = ACTIONS(1498), - [anon_sym_PLUS_PLUS] = ACTIONS(1498), - [anon_sym_DASH_DASH] = ACTIONS(1498), - [anon_sym_typeid] = ACTIONS(1496), - [anon_sym_LBRACE_PIPE] = ACTIONS(1498), - [anon_sym_void] = ACTIONS(1496), - [anon_sym_bool] = ACTIONS(1496), - [anon_sym_char] = ACTIONS(1496), - [anon_sym_ichar] = ACTIONS(1496), - [anon_sym_short] = ACTIONS(1496), - [anon_sym_ushort] = ACTIONS(1496), - [anon_sym_uint] = ACTIONS(1496), - [anon_sym_long] = ACTIONS(1496), - [anon_sym_ulong] = ACTIONS(1496), - [anon_sym_int128] = ACTIONS(1496), - [anon_sym_uint128] = ACTIONS(1496), - [anon_sym_float] = ACTIONS(1496), - [anon_sym_double] = ACTIONS(1496), - [anon_sym_float16] = ACTIONS(1496), - [anon_sym_bfloat16] = ACTIONS(1496), - [anon_sym_float128] = ACTIONS(1496), - [anon_sym_iptr] = ACTIONS(1496), - [anon_sym_uptr] = ACTIONS(1496), - [anon_sym_isz] = ACTIONS(1496), - [anon_sym_usz] = ACTIONS(1496), - [anon_sym_anyfault] = ACTIONS(1496), - [anon_sym_any] = ACTIONS(1496), - [anon_sym_DOLLARtypeof] = ACTIONS(1496), - [anon_sym_DOLLARtypefrom] = ACTIONS(1496), - [anon_sym_DOLLARvatype] = ACTIONS(1496), - [anon_sym_DOLLARevaltype] = ACTIONS(1496), - [sym_real_literal] = ACTIONS(1498), + [sym_ident] = ACTIONS(1585), + [sym_integer_literal] = ACTIONS(1587), + [anon_sym_SQUOTE] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1587), + [anon_sym_BQUOTE] = ACTIONS(1587), + [sym_bytes_literal] = ACTIONS(1587), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1585), + [sym_at_ident] = ACTIONS(1587), + [sym_hash_ident] = ACTIONS(1587), + [sym_type_ident] = ACTIONS(1587), + [sym_ct_type_ident] = ACTIONS(1587), + [sym_const_ident] = ACTIONS(1585), + [sym_builtin] = ACTIONS(1587), + [anon_sym_LPAREN] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_static] = ACTIONS(1585), + [anon_sym_tlocal] = ACTIONS(1585), + [anon_sym_SEMI] = ACTIONS(1587), + [anon_sym_fn] = ACTIONS(1585), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_const] = ACTIONS(1585), + [anon_sym_var] = ACTIONS(1585), + [anon_sym_return] = ACTIONS(1585), + [anon_sym_continue] = ACTIONS(1585), + [anon_sym_break] = ACTIONS(1585), + [anon_sym_defer] = ACTIONS(1585), + [anon_sym_assert] = ACTIONS(1585), + [anon_sym_nextcase] = ACTIONS(1585), + [anon_sym_switch] = ACTIONS(1585), + [anon_sym_AMP_AMP] = ACTIONS(1587), + [anon_sym_if] = ACTIONS(1585), + [anon_sym_for] = ACTIONS(1585), + [anon_sym_foreach] = ACTIONS(1585), + [anon_sym_foreach_r] = ACTIONS(1585), + [anon_sym_while] = ACTIONS(1585), + [anon_sym_do] = ACTIONS(1585), + [anon_sym_int] = ACTIONS(1585), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1587), + [anon_sym_asm] = ACTIONS(1585), + [anon_sym_DOLLARassert] = ACTIONS(1585), + [anon_sym_DOLLARerror] = ACTIONS(1585), + [anon_sym_DOLLARecho] = ACTIONS(1585), + [anon_sym_DOLLARif] = ACTIONS(1585), + [anon_sym_DOLLARswitch] = ACTIONS(1585), + [anon_sym_DOLLARfor] = ACTIONS(1585), + [anon_sym_DOLLARforeach] = ACTIONS(1585), + [anon_sym_DOLLARendforeach] = ACTIONS(1585), + [anon_sym_DOLLARalignof] = ACTIONS(1585), + [anon_sym_DOLLARextnameof] = ACTIONS(1585), + [anon_sym_DOLLARnameof] = ACTIONS(1585), + [anon_sym_DOLLARoffsetof] = ACTIONS(1585), + [anon_sym_DOLLARqnameof] = ACTIONS(1585), + [anon_sym_DOLLARvaconst] = ACTIONS(1585), + [anon_sym_DOLLARvaarg] = ACTIONS(1585), + [anon_sym_DOLLARvaref] = ACTIONS(1585), + [anon_sym_DOLLARvaexpr] = ACTIONS(1585), + [anon_sym_true] = ACTIONS(1585), + [anon_sym_false] = ACTIONS(1585), + [anon_sym_null] = ACTIONS(1585), + [anon_sym_DOLLARvacount] = ACTIONS(1585), + [anon_sym_DOLLARappend] = ACTIONS(1585), + [anon_sym_DOLLARconcat] = ACTIONS(1585), + [anon_sym_DOLLAReval] = ACTIONS(1585), + [anon_sym_DOLLARis_const] = ACTIONS(1585), + [anon_sym_DOLLARsizeof] = ACTIONS(1585), + [anon_sym_DOLLARstringify] = ACTIONS(1585), + [anon_sym_DOLLARand] = ACTIONS(1585), + [anon_sym_DOLLARdefined] = ACTIONS(1585), + [anon_sym_DOLLARembed] = ACTIONS(1585), + [anon_sym_DOLLARor] = ACTIONS(1585), + [anon_sym_DOLLARfeature] = ACTIONS(1585), + [anon_sym_DOLLARassignable] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), + [anon_sym_typeid] = ACTIONS(1585), + [anon_sym_LBRACE_PIPE] = ACTIONS(1587), + [anon_sym_void] = ACTIONS(1585), + [anon_sym_bool] = ACTIONS(1585), + [anon_sym_char] = ACTIONS(1585), + [anon_sym_ichar] = ACTIONS(1585), + [anon_sym_short] = ACTIONS(1585), + [anon_sym_ushort] = ACTIONS(1585), + [anon_sym_uint] = ACTIONS(1585), + [anon_sym_long] = ACTIONS(1585), + [anon_sym_ulong] = ACTIONS(1585), + [anon_sym_int128] = ACTIONS(1585), + [anon_sym_uint128] = ACTIONS(1585), + [anon_sym_float] = ACTIONS(1585), + [anon_sym_double] = ACTIONS(1585), + [anon_sym_float16] = ACTIONS(1585), + [anon_sym_bfloat16] = ACTIONS(1585), + [anon_sym_float128] = ACTIONS(1585), + [anon_sym_iptr] = ACTIONS(1585), + [anon_sym_uptr] = ACTIONS(1585), + [anon_sym_isz] = ACTIONS(1585), + [anon_sym_usz] = ACTIONS(1585), + [anon_sym_anyfault] = ACTIONS(1585), + [anon_sym_any] = ACTIONS(1585), + [anon_sym_DOLLARtypeof] = ACTIONS(1585), + [anon_sym_DOLLARtypefrom] = ACTIONS(1585), + [anon_sym_DOLLARvatype] = ACTIONS(1585), + [anon_sym_DOLLARevaltype] = ACTIONS(1585), + [sym_real_literal] = ACTIONS(1587), }, [688] = { [sym_line_comment] = STATE(688), [sym_doc_comment] = STATE(688), [sym_block_comment] = STATE(688), - [sym_ident] = ACTIONS(1492), - [sym_integer_literal] = ACTIONS(1494), - [anon_sym_SQUOTE] = ACTIONS(1494), - [anon_sym_DQUOTE] = ACTIONS(1494), - [anon_sym_BQUOTE] = ACTIONS(1494), - [sym_bytes_literal] = ACTIONS(1494), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1492), - [sym_at_ident] = ACTIONS(1494), - [sym_hash_ident] = ACTIONS(1494), - [sym_type_ident] = ACTIONS(1494), - [sym_ct_type_ident] = ACTIONS(1494), - [sym_const_ident] = ACTIONS(1492), - [sym_builtin] = ACTIONS(1494), - [anon_sym_LPAREN] = ACTIONS(1494), - [anon_sym_AMP] = ACTIONS(1492), - [anon_sym_static] = ACTIONS(1492), - [anon_sym_tlocal] = ACTIONS(1492), - [anon_sym_SEMI] = ACTIONS(1494), - [anon_sym_fn] = ACTIONS(1492), - [anon_sym_LBRACE] = ACTIONS(1492), - [anon_sym_const] = ACTIONS(1492), - [anon_sym_var] = ACTIONS(1492), - [anon_sym_return] = ACTIONS(1492), - [anon_sym_continue] = ACTIONS(1492), - [anon_sym_break] = ACTIONS(1492), - [anon_sym_defer] = ACTIONS(1492), - [anon_sym_assert] = ACTIONS(1492), - [anon_sym_nextcase] = ACTIONS(1492), - [anon_sym_switch] = ACTIONS(1492), - [anon_sym_AMP_AMP] = ACTIONS(1494), - [anon_sym_if] = ACTIONS(1492), - [anon_sym_for] = ACTIONS(1492), - [anon_sym_foreach] = ACTIONS(1492), - [anon_sym_foreach_r] = ACTIONS(1492), - [anon_sym_while] = ACTIONS(1492), - [anon_sym_do] = ACTIONS(1492), - [anon_sym_int] = ACTIONS(1492), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1492), - [anon_sym_STAR] = ACTIONS(1494), - [anon_sym_asm] = ACTIONS(1492), - [anon_sym_DOLLARassert] = ACTIONS(1492), - [anon_sym_DOLLARerror] = ACTIONS(1492), - [anon_sym_DOLLARecho] = ACTIONS(1492), - [anon_sym_DOLLARif] = ACTIONS(1492), - [anon_sym_DOLLARswitch] = ACTIONS(1492), - [anon_sym_DOLLARfor] = ACTIONS(1492), - [anon_sym_DOLLARendfor] = ACTIONS(1492), - [anon_sym_DOLLARforeach] = ACTIONS(1492), - [anon_sym_DOLLARalignof] = ACTIONS(1492), - [anon_sym_DOLLARextnameof] = ACTIONS(1492), - [anon_sym_DOLLARnameof] = ACTIONS(1492), - [anon_sym_DOLLARoffsetof] = ACTIONS(1492), - [anon_sym_DOLLARqnameof] = ACTIONS(1492), - [anon_sym_DOLLARvaconst] = ACTIONS(1492), - [anon_sym_DOLLARvaarg] = ACTIONS(1492), - [anon_sym_DOLLARvaref] = ACTIONS(1492), - [anon_sym_DOLLARvaexpr] = ACTIONS(1492), - [anon_sym_true] = ACTIONS(1492), - [anon_sym_false] = ACTIONS(1492), - [anon_sym_null] = ACTIONS(1492), - [anon_sym_DOLLARvacount] = ACTIONS(1492), - [anon_sym_DOLLARappend] = ACTIONS(1492), - [anon_sym_DOLLARconcat] = ACTIONS(1492), - [anon_sym_DOLLAReval] = ACTIONS(1492), - [anon_sym_DOLLARis_const] = ACTIONS(1492), - [anon_sym_DOLLARsizeof] = ACTIONS(1492), - [anon_sym_DOLLARstringify] = ACTIONS(1492), - [anon_sym_DOLLARand] = ACTIONS(1492), - [anon_sym_DOLLARdefined] = ACTIONS(1492), - [anon_sym_DOLLARembed] = ACTIONS(1492), - [anon_sym_DOLLARor] = ACTIONS(1492), - [anon_sym_DOLLARfeature] = ACTIONS(1492), - [anon_sym_DOLLARassignable] = ACTIONS(1492), - [anon_sym_BANG] = ACTIONS(1494), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_DASH_DASH] = ACTIONS(1494), - [anon_sym_typeid] = ACTIONS(1492), - [anon_sym_LBRACE_PIPE] = ACTIONS(1494), - [anon_sym_void] = ACTIONS(1492), - [anon_sym_bool] = ACTIONS(1492), - [anon_sym_char] = ACTIONS(1492), - [anon_sym_ichar] = ACTIONS(1492), - [anon_sym_short] = ACTIONS(1492), - [anon_sym_ushort] = ACTIONS(1492), - [anon_sym_uint] = ACTIONS(1492), - [anon_sym_long] = ACTIONS(1492), - [anon_sym_ulong] = ACTIONS(1492), - [anon_sym_int128] = ACTIONS(1492), - [anon_sym_uint128] = ACTIONS(1492), - [anon_sym_float] = ACTIONS(1492), - [anon_sym_double] = ACTIONS(1492), - [anon_sym_float16] = ACTIONS(1492), - [anon_sym_bfloat16] = ACTIONS(1492), - [anon_sym_float128] = ACTIONS(1492), - [anon_sym_iptr] = ACTIONS(1492), - [anon_sym_uptr] = ACTIONS(1492), - [anon_sym_isz] = ACTIONS(1492), - [anon_sym_usz] = ACTIONS(1492), - [anon_sym_anyfault] = ACTIONS(1492), - [anon_sym_any] = ACTIONS(1492), - [anon_sym_DOLLARtypeof] = ACTIONS(1492), - [anon_sym_DOLLARtypefrom] = ACTIONS(1492), - [anon_sym_DOLLARvatype] = ACTIONS(1492), - [anon_sym_DOLLARevaltype] = ACTIONS(1492), - [sym_real_literal] = ACTIONS(1494), + [sym_ident] = ACTIONS(1489), + [sym_integer_literal] = ACTIONS(1491), + [anon_sym_SQUOTE] = ACTIONS(1491), + [anon_sym_DQUOTE] = ACTIONS(1491), + [anon_sym_BQUOTE] = ACTIONS(1491), + [sym_bytes_literal] = ACTIONS(1491), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1489), + [sym_at_ident] = ACTIONS(1491), + [sym_hash_ident] = ACTIONS(1491), + [sym_type_ident] = ACTIONS(1491), + [sym_ct_type_ident] = ACTIONS(1491), + [sym_const_ident] = ACTIONS(1489), + [sym_builtin] = ACTIONS(1491), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_AMP] = ACTIONS(1489), + [anon_sym_static] = ACTIONS(1489), + [anon_sym_tlocal] = ACTIONS(1489), + [anon_sym_SEMI] = ACTIONS(1491), + [anon_sym_fn] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1489), + [anon_sym_const] = ACTIONS(1489), + [anon_sym_var] = ACTIONS(1489), + [anon_sym_return] = ACTIONS(1489), + [anon_sym_continue] = ACTIONS(1489), + [anon_sym_break] = ACTIONS(1489), + [anon_sym_defer] = ACTIONS(1489), + [anon_sym_assert] = ACTIONS(1489), + [anon_sym_nextcase] = ACTIONS(1489), + [anon_sym_switch] = ACTIONS(1489), + [anon_sym_AMP_AMP] = ACTIONS(1491), + [anon_sym_if] = ACTIONS(1489), + [anon_sym_for] = ACTIONS(1489), + [anon_sym_foreach] = ACTIONS(1489), + [anon_sym_foreach_r] = ACTIONS(1489), + [anon_sym_while] = ACTIONS(1489), + [anon_sym_do] = ACTIONS(1489), + [anon_sym_int] = ACTIONS(1489), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_STAR] = ACTIONS(1491), + [anon_sym_asm] = ACTIONS(1489), + [anon_sym_DOLLARassert] = ACTIONS(1489), + [anon_sym_DOLLARerror] = ACTIONS(1489), + [anon_sym_DOLLARecho] = ACTIONS(1489), + [anon_sym_DOLLARif] = ACTIONS(1489), + [anon_sym_DOLLARswitch] = ACTIONS(1489), + [anon_sym_DOLLARfor] = ACTIONS(1489), + [anon_sym_DOLLARforeach] = ACTIONS(1489), + [anon_sym_DOLLARendforeach] = ACTIONS(1489), + [anon_sym_DOLLARalignof] = ACTIONS(1489), + [anon_sym_DOLLARextnameof] = ACTIONS(1489), + [anon_sym_DOLLARnameof] = ACTIONS(1489), + [anon_sym_DOLLARoffsetof] = ACTIONS(1489), + [anon_sym_DOLLARqnameof] = ACTIONS(1489), + [anon_sym_DOLLARvaconst] = ACTIONS(1489), + [anon_sym_DOLLARvaarg] = ACTIONS(1489), + [anon_sym_DOLLARvaref] = ACTIONS(1489), + [anon_sym_DOLLARvaexpr] = ACTIONS(1489), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), + [anon_sym_null] = ACTIONS(1489), + [anon_sym_DOLLARvacount] = ACTIONS(1489), + [anon_sym_DOLLARappend] = ACTIONS(1489), + [anon_sym_DOLLARconcat] = ACTIONS(1489), + [anon_sym_DOLLAReval] = ACTIONS(1489), + [anon_sym_DOLLARis_const] = ACTIONS(1489), + [anon_sym_DOLLARsizeof] = ACTIONS(1489), + [anon_sym_DOLLARstringify] = ACTIONS(1489), + [anon_sym_DOLLARand] = ACTIONS(1489), + [anon_sym_DOLLARdefined] = ACTIONS(1489), + [anon_sym_DOLLARembed] = ACTIONS(1489), + [anon_sym_DOLLARor] = ACTIONS(1489), + [anon_sym_DOLLARfeature] = ACTIONS(1489), + [anon_sym_DOLLARassignable] = ACTIONS(1489), + [anon_sym_BANG] = ACTIONS(1491), + [anon_sym_TILDE] = ACTIONS(1491), + [anon_sym_PLUS_PLUS] = ACTIONS(1491), + [anon_sym_DASH_DASH] = ACTIONS(1491), + [anon_sym_typeid] = ACTIONS(1489), + [anon_sym_LBRACE_PIPE] = ACTIONS(1491), + [anon_sym_void] = ACTIONS(1489), + [anon_sym_bool] = ACTIONS(1489), + [anon_sym_char] = ACTIONS(1489), + [anon_sym_ichar] = ACTIONS(1489), + [anon_sym_short] = ACTIONS(1489), + [anon_sym_ushort] = ACTIONS(1489), + [anon_sym_uint] = ACTIONS(1489), + [anon_sym_long] = ACTIONS(1489), + [anon_sym_ulong] = ACTIONS(1489), + [anon_sym_int128] = ACTIONS(1489), + [anon_sym_uint128] = ACTIONS(1489), + [anon_sym_float] = ACTIONS(1489), + [anon_sym_double] = ACTIONS(1489), + [anon_sym_float16] = ACTIONS(1489), + [anon_sym_bfloat16] = ACTIONS(1489), + [anon_sym_float128] = ACTIONS(1489), + [anon_sym_iptr] = ACTIONS(1489), + [anon_sym_uptr] = ACTIONS(1489), + [anon_sym_isz] = ACTIONS(1489), + [anon_sym_usz] = ACTIONS(1489), + [anon_sym_anyfault] = ACTIONS(1489), + [anon_sym_any] = ACTIONS(1489), + [anon_sym_DOLLARtypeof] = ACTIONS(1489), + [anon_sym_DOLLARtypefrom] = ACTIONS(1489), + [anon_sym_DOLLARvatype] = ACTIONS(1489), + [anon_sym_DOLLARevaltype] = ACTIONS(1489), + [sym_real_literal] = ACTIONS(1491), }, [689] = { [sym_line_comment] = STATE(689), [sym_doc_comment] = STATE(689), [sym_block_comment] = STATE(689), - [sym_ident] = ACTIONS(1572), - [sym_integer_literal] = ACTIONS(1574), - [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_DQUOTE] = ACTIONS(1574), - [anon_sym_BQUOTE] = ACTIONS(1574), - [sym_bytes_literal] = ACTIONS(1574), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1572), - [sym_at_ident] = ACTIONS(1574), - [sym_hash_ident] = ACTIONS(1574), - [sym_type_ident] = ACTIONS(1574), - [sym_ct_type_ident] = ACTIONS(1574), - [sym_const_ident] = ACTIONS(1572), - [sym_builtin] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1574), - [anon_sym_AMP] = ACTIONS(1572), - [anon_sym_static] = ACTIONS(1572), - [anon_sym_tlocal] = ACTIONS(1572), - [anon_sym_SEMI] = ACTIONS(1574), - [anon_sym_fn] = ACTIONS(1572), - [anon_sym_LBRACE] = ACTIONS(1572), - [anon_sym_const] = ACTIONS(1572), - [anon_sym_var] = ACTIONS(1572), - [anon_sym_return] = ACTIONS(1572), - [anon_sym_continue] = ACTIONS(1572), - [anon_sym_break] = ACTIONS(1572), - [anon_sym_defer] = ACTIONS(1572), - [anon_sym_assert] = ACTIONS(1572), - [anon_sym_nextcase] = ACTIONS(1572), - [anon_sym_switch] = ACTIONS(1572), - [anon_sym_AMP_AMP] = ACTIONS(1574), - [anon_sym_if] = ACTIONS(1572), - [anon_sym_for] = ACTIONS(1572), - [anon_sym_foreach] = ACTIONS(1572), - [anon_sym_foreach_r] = ACTIONS(1572), - [anon_sym_while] = ACTIONS(1572), - [anon_sym_do] = ACTIONS(1572), - [anon_sym_int] = ACTIONS(1572), - [anon_sym_PLUS] = ACTIONS(1572), - [anon_sym_DASH] = ACTIONS(1572), - [anon_sym_STAR] = ACTIONS(1574), - [anon_sym_asm] = ACTIONS(1572), - [anon_sym_DOLLARassert] = ACTIONS(1572), - [anon_sym_DOLLARerror] = ACTIONS(1572), - [anon_sym_DOLLARecho] = ACTIONS(1572), - [anon_sym_DOLLARif] = ACTIONS(1572), - [anon_sym_DOLLARswitch] = ACTIONS(1572), - [anon_sym_DOLLARfor] = ACTIONS(1572), - [anon_sym_DOLLARendfor] = ACTIONS(1572), - [anon_sym_DOLLARforeach] = ACTIONS(1572), - [anon_sym_DOLLARalignof] = ACTIONS(1572), - [anon_sym_DOLLARextnameof] = ACTIONS(1572), - [anon_sym_DOLLARnameof] = ACTIONS(1572), - [anon_sym_DOLLARoffsetof] = ACTIONS(1572), - [anon_sym_DOLLARqnameof] = ACTIONS(1572), - [anon_sym_DOLLARvaconst] = ACTIONS(1572), - [anon_sym_DOLLARvaarg] = ACTIONS(1572), - [anon_sym_DOLLARvaref] = ACTIONS(1572), - [anon_sym_DOLLARvaexpr] = ACTIONS(1572), - [anon_sym_true] = ACTIONS(1572), - [anon_sym_false] = ACTIONS(1572), - [anon_sym_null] = ACTIONS(1572), - [anon_sym_DOLLARvacount] = ACTIONS(1572), - [anon_sym_DOLLARappend] = ACTIONS(1572), - [anon_sym_DOLLARconcat] = ACTIONS(1572), - [anon_sym_DOLLAReval] = ACTIONS(1572), - [anon_sym_DOLLARis_const] = ACTIONS(1572), - [anon_sym_DOLLARsizeof] = ACTIONS(1572), - [anon_sym_DOLLARstringify] = ACTIONS(1572), - [anon_sym_DOLLARand] = ACTIONS(1572), - [anon_sym_DOLLARdefined] = ACTIONS(1572), - [anon_sym_DOLLARembed] = ACTIONS(1572), - [anon_sym_DOLLARor] = ACTIONS(1572), - [anon_sym_DOLLARfeature] = ACTIONS(1572), - [anon_sym_DOLLARassignable] = ACTIONS(1572), - [anon_sym_BANG] = ACTIONS(1574), - [anon_sym_TILDE] = ACTIONS(1574), - [anon_sym_PLUS_PLUS] = ACTIONS(1574), - [anon_sym_DASH_DASH] = ACTIONS(1574), - [anon_sym_typeid] = ACTIONS(1572), - [anon_sym_LBRACE_PIPE] = ACTIONS(1574), - [anon_sym_void] = ACTIONS(1572), - [anon_sym_bool] = ACTIONS(1572), - [anon_sym_char] = ACTIONS(1572), - [anon_sym_ichar] = ACTIONS(1572), - [anon_sym_short] = ACTIONS(1572), - [anon_sym_ushort] = ACTIONS(1572), - [anon_sym_uint] = ACTIONS(1572), - [anon_sym_long] = ACTIONS(1572), - [anon_sym_ulong] = ACTIONS(1572), - [anon_sym_int128] = ACTIONS(1572), - [anon_sym_uint128] = ACTIONS(1572), - [anon_sym_float] = ACTIONS(1572), - [anon_sym_double] = ACTIONS(1572), - [anon_sym_float16] = ACTIONS(1572), - [anon_sym_bfloat16] = ACTIONS(1572), - [anon_sym_float128] = ACTIONS(1572), - [anon_sym_iptr] = ACTIONS(1572), - [anon_sym_uptr] = ACTIONS(1572), - [anon_sym_isz] = ACTIONS(1572), - [anon_sym_usz] = ACTIONS(1572), - [anon_sym_anyfault] = ACTIONS(1572), - [anon_sym_any] = ACTIONS(1572), - [anon_sym_DOLLARtypeof] = ACTIONS(1572), - [anon_sym_DOLLARtypefrom] = ACTIONS(1572), - [anon_sym_DOLLARvatype] = ACTIONS(1572), - [anon_sym_DOLLARevaltype] = ACTIONS(1572), - [sym_real_literal] = ACTIONS(1574), + [sym_ident] = ACTIONS(1367), + [sym_integer_literal] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1369), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_BQUOTE] = ACTIONS(1369), + [sym_bytes_literal] = ACTIONS(1369), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1367), + [sym_at_ident] = ACTIONS(1369), + [sym_hash_ident] = ACTIONS(1369), + [sym_type_ident] = ACTIONS(1369), + [sym_ct_type_ident] = ACTIONS(1369), + [sym_const_ident] = ACTIONS(1367), + [sym_builtin] = ACTIONS(1369), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(1367), + [anon_sym_static] = ACTIONS(1367), + [anon_sym_tlocal] = ACTIONS(1367), + [anon_sym_SEMI] = ACTIONS(1369), + [anon_sym_fn] = ACTIONS(1367), + [anon_sym_LBRACE] = ACTIONS(1367), + [anon_sym_const] = ACTIONS(1367), + [anon_sym_var] = ACTIONS(1367), + [anon_sym_return] = ACTIONS(1367), + [anon_sym_continue] = ACTIONS(1367), + [anon_sym_break] = ACTIONS(1367), + [anon_sym_defer] = ACTIONS(1367), + [anon_sym_assert] = ACTIONS(1367), + [anon_sym_nextcase] = ACTIONS(1367), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_AMP_AMP] = ACTIONS(1369), + [anon_sym_if] = ACTIONS(1367), + [anon_sym_for] = ACTIONS(1367), + [anon_sym_foreach] = ACTIONS(1367), + [anon_sym_foreach_r] = ACTIONS(1367), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_do] = ACTIONS(1367), + [anon_sym_int] = ACTIONS(1367), + [anon_sym_PLUS] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_asm] = ACTIONS(1367), + [anon_sym_DOLLARassert] = ACTIONS(1367), + [anon_sym_DOLLARerror] = ACTIONS(1367), + [anon_sym_DOLLARecho] = ACTIONS(1367), + [anon_sym_DOLLARif] = ACTIONS(1367), + [anon_sym_DOLLARswitch] = ACTIONS(1367), + [anon_sym_DOLLARfor] = ACTIONS(1367), + [anon_sym_DOLLARforeach] = ACTIONS(1367), + [anon_sym_DOLLARendforeach] = ACTIONS(1367), + [anon_sym_DOLLARalignof] = ACTIONS(1367), + [anon_sym_DOLLARextnameof] = ACTIONS(1367), + [anon_sym_DOLLARnameof] = ACTIONS(1367), + [anon_sym_DOLLARoffsetof] = ACTIONS(1367), + [anon_sym_DOLLARqnameof] = ACTIONS(1367), + [anon_sym_DOLLARvaconst] = ACTIONS(1367), + [anon_sym_DOLLARvaarg] = ACTIONS(1367), + [anon_sym_DOLLARvaref] = ACTIONS(1367), + [anon_sym_DOLLARvaexpr] = ACTIONS(1367), + [anon_sym_true] = ACTIONS(1367), + [anon_sym_false] = ACTIONS(1367), + [anon_sym_null] = ACTIONS(1367), + [anon_sym_DOLLARvacount] = ACTIONS(1367), + [anon_sym_DOLLARappend] = ACTIONS(1367), + [anon_sym_DOLLARconcat] = ACTIONS(1367), + [anon_sym_DOLLAReval] = ACTIONS(1367), + [anon_sym_DOLLARis_const] = ACTIONS(1367), + [anon_sym_DOLLARsizeof] = ACTIONS(1367), + [anon_sym_DOLLARstringify] = ACTIONS(1367), + [anon_sym_DOLLARand] = ACTIONS(1367), + [anon_sym_DOLLARdefined] = ACTIONS(1367), + [anon_sym_DOLLARembed] = ACTIONS(1367), + [anon_sym_DOLLARor] = ACTIONS(1367), + [anon_sym_DOLLARfeature] = ACTIONS(1367), + [anon_sym_DOLLARassignable] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(1369), + [anon_sym_PLUS_PLUS] = ACTIONS(1369), + [anon_sym_DASH_DASH] = ACTIONS(1369), + [anon_sym_typeid] = ACTIONS(1367), + [anon_sym_LBRACE_PIPE] = ACTIONS(1369), + [anon_sym_void] = ACTIONS(1367), + [anon_sym_bool] = ACTIONS(1367), + [anon_sym_char] = ACTIONS(1367), + [anon_sym_ichar] = ACTIONS(1367), + [anon_sym_short] = ACTIONS(1367), + [anon_sym_ushort] = ACTIONS(1367), + [anon_sym_uint] = ACTIONS(1367), + [anon_sym_long] = ACTIONS(1367), + [anon_sym_ulong] = ACTIONS(1367), + [anon_sym_int128] = ACTIONS(1367), + [anon_sym_uint128] = ACTIONS(1367), + [anon_sym_float] = ACTIONS(1367), + [anon_sym_double] = ACTIONS(1367), + [anon_sym_float16] = ACTIONS(1367), + [anon_sym_bfloat16] = ACTIONS(1367), + [anon_sym_float128] = ACTIONS(1367), + [anon_sym_iptr] = ACTIONS(1367), + [anon_sym_uptr] = ACTIONS(1367), + [anon_sym_isz] = ACTIONS(1367), + [anon_sym_usz] = ACTIONS(1367), + [anon_sym_anyfault] = ACTIONS(1367), + [anon_sym_any] = ACTIONS(1367), + [anon_sym_DOLLARtypeof] = ACTIONS(1367), + [anon_sym_DOLLARtypefrom] = ACTIONS(1367), + [anon_sym_DOLLARvatype] = ACTIONS(1367), + [anon_sym_DOLLARevaltype] = ACTIONS(1367), + [sym_real_literal] = ACTIONS(1369), }, [690] = { [sym_line_comment] = STATE(690), [sym_doc_comment] = STATE(690), [sym_block_comment] = STATE(690), - [sym_ident] = ACTIONS(1548), - [sym_integer_literal] = ACTIONS(1550), - [anon_sym_SQUOTE] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1550), - [anon_sym_BQUOTE] = ACTIONS(1550), - [sym_bytes_literal] = ACTIONS(1550), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1548), - [sym_at_ident] = ACTIONS(1550), - [sym_hash_ident] = ACTIONS(1550), - [sym_type_ident] = ACTIONS(1550), - [sym_ct_type_ident] = ACTIONS(1550), - [sym_const_ident] = ACTIONS(1548), - [sym_builtin] = ACTIONS(1550), - [anon_sym_LPAREN] = ACTIONS(1550), - [anon_sym_AMP] = ACTIONS(1548), - [anon_sym_static] = ACTIONS(1548), - [anon_sym_tlocal] = ACTIONS(1548), - [anon_sym_SEMI] = ACTIONS(1550), - [anon_sym_fn] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(1548), - [anon_sym_const] = ACTIONS(1548), - [anon_sym_var] = ACTIONS(1548), - [anon_sym_return] = ACTIONS(1548), - [anon_sym_continue] = ACTIONS(1548), - [anon_sym_break] = ACTIONS(1548), - [anon_sym_defer] = ACTIONS(1548), - [anon_sym_assert] = ACTIONS(1548), - [anon_sym_nextcase] = ACTIONS(1548), - [anon_sym_switch] = ACTIONS(1548), - [anon_sym_AMP_AMP] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(1548), - [anon_sym_for] = ACTIONS(1548), - [anon_sym_foreach] = ACTIONS(1548), - [anon_sym_foreach_r] = ACTIONS(1548), - [anon_sym_while] = ACTIONS(1548), - [anon_sym_do] = ACTIONS(1548), - [anon_sym_int] = ACTIONS(1548), - [anon_sym_PLUS] = ACTIONS(1548), - [anon_sym_DASH] = ACTIONS(1548), - [anon_sym_STAR] = ACTIONS(1550), - [anon_sym_asm] = ACTIONS(1548), - [anon_sym_DOLLARassert] = ACTIONS(1548), - [anon_sym_DOLLARerror] = ACTIONS(1548), - [anon_sym_DOLLARecho] = ACTIONS(1548), - [anon_sym_DOLLARif] = ACTIONS(1548), - [anon_sym_DOLLARswitch] = ACTIONS(1548), - [anon_sym_DOLLARfor] = ACTIONS(1548), - [anon_sym_DOLLARforeach] = ACTIONS(1548), - [anon_sym_DOLLARendforeach] = ACTIONS(1548), - [anon_sym_DOLLARalignof] = ACTIONS(1548), - [anon_sym_DOLLARextnameof] = ACTIONS(1548), - [anon_sym_DOLLARnameof] = ACTIONS(1548), - [anon_sym_DOLLARoffsetof] = ACTIONS(1548), - [anon_sym_DOLLARqnameof] = ACTIONS(1548), - [anon_sym_DOLLARvaconst] = ACTIONS(1548), - [anon_sym_DOLLARvaarg] = ACTIONS(1548), - [anon_sym_DOLLARvaref] = ACTIONS(1548), - [anon_sym_DOLLARvaexpr] = ACTIONS(1548), - [anon_sym_true] = ACTIONS(1548), - [anon_sym_false] = ACTIONS(1548), - [anon_sym_null] = ACTIONS(1548), - [anon_sym_DOLLARvacount] = ACTIONS(1548), - [anon_sym_DOLLARappend] = ACTIONS(1548), - [anon_sym_DOLLARconcat] = ACTIONS(1548), - [anon_sym_DOLLAReval] = ACTIONS(1548), - [anon_sym_DOLLARis_const] = ACTIONS(1548), - [anon_sym_DOLLARsizeof] = ACTIONS(1548), - [anon_sym_DOLLARstringify] = ACTIONS(1548), - [anon_sym_DOLLARand] = ACTIONS(1548), - [anon_sym_DOLLARdefined] = ACTIONS(1548), - [anon_sym_DOLLARembed] = ACTIONS(1548), - [anon_sym_DOLLARor] = ACTIONS(1548), - [anon_sym_DOLLARfeature] = ACTIONS(1548), - [anon_sym_DOLLARassignable] = ACTIONS(1548), - [anon_sym_BANG] = ACTIONS(1550), - [anon_sym_TILDE] = ACTIONS(1550), - [anon_sym_PLUS_PLUS] = ACTIONS(1550), - [anon_sym_DASH_DASH] = ACTIONS(1550), - [anon_sym_typeid] = ACTIONS(1548), - [anon_sym_LBRACE_PIPE] = ACTIONS(1550), - [anon_sym_void] = ACTIONS(1548), - [anon_sym_bool] = ACTIONS(1548), - [anon_sym_char] = ACTIONS(1548), - [anon_sym_ichar] = ACTIONS(1548), - [anon_sym_short] = ACTIONS(1548), - [anon_sym_ushort] = ACTIONS(1548), - [anon_sym_uint] = ACTIONS(1548), - [anon_sym_long] = ACTIONS(1548), - [anon_sym_ulong] = ACTIONS(1548), - [anon_sym_int128] = ACTIONS(1548), - [anon_sym_uint128] = ACTIONS(1548), - [anon_sym_float] = ACTIONS(1548), - [anon_sym_double] = ACTIONS(1548), - [anon_sym_float16] = ACTIONS(1548), - [anon_sym_bfloat16] = ACTIONS(1548), - [anon_sym_float128] = ACTIONS(1548), - [anon_sym_iptr] = ACTIONS(1548), - [anon_sym_uptr] = ACTIONS(1548), - [anon_sym_isz] = ACTIONS(1548), - [anon_sym_usz] = ACTIONS(1548), - [anon_sym_anyfault] = ACTIONS(1548), - [anon_sym_any] = ACTIONS(1548), - [anon_sym_DOLLARtypeof] = ACTIONS(1548), - [anon_sym_DOLLARtypefrom] = ACTIONS(1548), - [anon_sym_DOLLARvatype] = ACTIONS(1548), - [anon_sym_DOLLARevaltype] = ACTIONS(1548), - [sym_real_literal] = ACTIONS(1550), + [sym_ident] = ACTIONS(1375), + [sym_integer_literal] = ACTIONS(1377), + [anon_sym_SQUOTE] = ACTIONS(1377), + [anon_sym_DQUOTE] = ACTIONS(1377), + [anon_sym_BQUOTE] = ACTIONS(1377), + [sym_bytes_literal] = ACTIONS(1377), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1375), + [sym_at_ident] = ACTIONS(1377), + [sym_hash_ident] = ACTIONS(1377), + [sym_type_ident] = ACTIONS(1377), + [sym_ct_type_ident] = ACTIONS(1377), + [sym_const_ident] = ACTIONS(1375), + [sym_builtin] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_static] = ACTIONS(1375), + [anon_sym_tlocal] = ACTIONS(1375), + [anon_sym_SEMI] = ACTIONS(1377), + [anon_sym_fn] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1375), + [anon_sym_const] = ACTIONS(1375), + [anon_sym_var] = ACTIONS(1375), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_continue] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1375), + [anon_sym_defer] = ACTIONS(1375), + [anon_sym_assert] = ACTIONS(1375), + [anon_sym_nextcase] = ACTIONS(1375), + [anon_sym_switch] = ACTIONS(1375), + [anon_sym_AMP_AMP] = ACTIONS(1377), + [anon_sym_if] = ACTIONS(1375), + [anon_sym_for] = ACTIONS(1375), + [anon_sym_foreach] = ACTIONS(1375), + [anon_sym_foreach_r] = ACTIONS(1375), + [anon_sym_while] = ACTIONS(1375), + [anon_sym_do] = ACTIONS(1375), + [anon_sym_int] = ACTIONS(1375), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_asm] = ACTIONS(1375), + [anon_sym_DOLLARassert] = ACTIONS(1375), + [anon_sym_DOLLARerror] = ACTIONS(1375), + [anon_sym_DOLLARecho] = ACTIONS(1375), + [anon_sym_DOLLARif] = ACTIONS(1375), + [anon_sym_DOLLARswitch] = ACTIONS(1375), + [anon_sym_DOLLARfor] = ACTIONS(1375), + [anon_sym_DOLLARforeach] = ACTIONS(1375), + [anon_sym_DOLLARendforeach] = ACTIONS(1375), + [anon_sym_DOLLARalignof] = ACTIONS(1375), + [anon_sym_DOLLARextnameof] = ACTIONS(1375), + [anon_sym_DOLLARnameof] = ACTIONS(1375), + [anon_sym_DOLLARoffsetof] = ACTIONS(1375), + [anon_sym_DOLLARqnameof] = ACTIONS(1375), + [anon_sym_DOLLARvaconst] = ACTIONS(1375), + [anon_sym_DOLLARvaarg] = ACTIONS(1375), + [anon_sym_DOLLARvaref] = ACTIONS(1375), + [anon_sym_DOLLARvaexpr] = ACTIONS(1375), + [anon_sym_true] = ACTIONS(1375), + [anon_sym_false] = ACTIONS(1375), + [anon_sym_null] = ACTIONS(1375), + [anon_sym_DOLLARvacount] = ACTIONS(1375), + [anon_sym_DOLLARappend] = ACTIONS(1375), + [anon_sym_DOLLARconcat] = ACTIONS(1375), + [anon_sym_DOLLAReval] = ACTIONS(1375), + [anon_sym_DOLLARis_const] = ACTIONS(1375), + [anon_sym_DOLLARsizeof] = ACTIONS(1375), + [anon_sym_DOLLARstringify] = ACTIONS(1375), + [anon_sym_DOLLARand] = ACTIONS(1375), + [anon_sym_DOLLARdefined] = ACTIONS(1375), + [anon_sym_DOLLARembed] = ACTIONS(1375), + [anon_sym_DOLLARor] = ACTIONS(1375), + [anon_sym_DOLLARfeature] = ACTIONS(1375), + [anon_sym_DOLLARassignable] = ACTIONS(1375), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_TILDE] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_typeid] = ACTIONS(1375), + [anon_sym_LBRACE_PIPE] = ACTIONS(1377), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_bool] = ACTIONS(1375), + [anon_sym_char] = ACTIONS(1375), + [anon_sym_ichar] = ACTIONS(1375), + [anon_sym_short] = ACTIONS(1375), + [anon_sym_ushort] = ACTIONS(1375), + [anon_sym_uint] = ACTIONS(1375), + [anon_sym_long] = ACTIONS(1375), + [anon_sym_ulong] = ACTIONS(1375), + [anon_sym_int128] = ACTIONS(1375), + [anon_sym_uint128] = ACTIONS(1375), + [anon_sym_float] = ACTIONS(1375), + [anon_sym_double] = ACTIONS(1375), + [anon_sym_float16] = ACTIONS(1375), + [anon_sym_bfloat16] = ACTIONS(1375), + [anon_sym_float128] = ACTIONS(1375), + [anon_sym_iptr] = ACTIONS(1375), + [anon_sym_uptr] = ACTIONS(1375), + [anon_sym_isz] = ACTIONS(1375), + [anon_sym_usz] = ACTIONS(1375), + [anon_sym_anyfault] = ACTIONS(1375), + [anon_sym_any] = ACTIONS(1375), + [anon_sym_DOLLARtypeof] = ACTIONS(1375), + [anon_sym_DOLLARtypefrom] = ACTIONS(1375), + [anon_sym_DOLLARvatype] = ACTIONS(1375), + [anon_sym_DOLLARevaltype] = ACTIONS(1375), + [sym_real_literal] = ACTIONS(1377), }, [691] = { [sym_line_comment] = STATE(691), [sym_doc_comment] = STATE(691), [sym_block_comment] = STATE(691), - [sym_ident] = ACTIONS(1512), - [sym_integer_literal] = ACTIONS(1514), - [anon_sym_SQUOTE] = ACTIONS(1514), - [anon_sym_DQUOTE] = ACTIONS(1514), - [anon_sym_BQUOTE] = ACTIONS(1514), - [sym_bytes_literal] = ACTIONS(1514), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1512), - [sym_at_ident] = ACTIONS(1514), - [sym_hash_ident] = ACTIONS(1514), - [sym_type_ident] = ACTIONS(1514), - [sym_ct_type_ident] = ACTIONS(1514), - [sym_const_ident] = ACTIONS(1512), - [sym_builtin] = ACTIONS(1514), - [anon_sym_LPAREN] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(1512), - [anon_sym_static] = ACTIONS(1512), - [anon_sym_tlocal] = ACTIONS(1512), - [anon_sym_SEMI] = ACTIONS(1514), - [anon_sym_fn] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(1512), - [anon_sym_const] = ACTIONS(1512), - [anon_sym_var] = ACTIONS(1512), - [anon_sym_return] = ACTIONS(1512), - [anon_sym_continue] = ACTIONS(1512), - [anon_sym_break] = ACTIONS(1512), - [anon_sym_defer] = ACTIONS(1512), - [anon_sym_assert] = ACTIONS(1512), - [anon_sym_nextcase] = ACTIONS(1512), - [anon_sym_switch] = ACTIONS(1512), - [anon_sym_AMP_AMP] = ACTIONS(1514), - [anon_sym_if] = ACTIONS(1512), - [anon_sym_for] = ACTIONS(1512), - [anon_sym_foreach] = ACTIONS(1512), - [anon_sym_foreach_r] = ACTIONS(1512), - [anon_sym_while] = ACTIONS(1512), - [anon_sym_do] = ACTIONS(1512), - [anon_sym_int] = ACTIONS(1512), - [anon_sym_PLUS] = ACTIONS(1512), - [anon_sym_DASH] = ACTIONS(1512), - [anon_sym_STAR] = ACTIONS(1514), - [anon_sym_asm] = ACTIONS(1512), - [anon_sym_DOLLARassert] = ACTIONS(1512), - [anon_sym_DOLLARerror] = ACTIONS(1512), - [anon_sym_DOLLARecho] = ACTIONS(1512), - [anon_sym_DOLLARif] = ACTIONS(1512), - [anon_sym_DOLLARswitch] = ACTIONS(1512), - [anon_sym_DOLLARfor] = ACTIONS(1512), - [anon_sym_DOLLARforeach] = ACTIONS(1512), - [anon_sym_DOLLARendforeach] = ACTIONS(1512), - [anon_sym_DOLLARalignof] = ACTIONS(1512), - [anon_sym_DOLLARextnameof] = ACTIONS(1512), - [anon_sym_DOLLARnameof] = ACTIONS(1512), - [anon_sym_DOLLARoffsetof] = ACTIONS(1512), - [anon_sym_DOLLARqnameof] = ACTIONS(1512), - [anon_sym_DOLLARvaconst] = ACTIONS(1512), - [anon_sym_DOLLARvaarg] = ACTIONS(1512), - [anon_sym_DOLLARvaref] = ACTIONS(1512), - [anon_sym_DOLLARvaexpr] = ACTIONS(1512), - [anon_sym_true] = ACTIONS(1512), - [anon_sym_false] = ACTIONS(1512), - [anon_sym_null] = ACTIONS(1512), - [anon_sym_DOLLARvacount] = ACTIONS(1512), - [anon_sym_DOLLARappend] = ACTIONS(1512), - [anon_sym_DOLLARconcat] = ACTIONS(1512), - [anon_sym_DOLLAReval] = ACTIONS(1512), - [anon_sym_DOLLARis_const] = ACTIONS(1512), - [anon_sym_DOLLARsizeof] = ACTIONS(1512), - [anon_sym_DOLLARstringify] = ACTIONS(1512), - [anon_sym_DOLLARand] = ACTIONS(1512), - [anon_sym_DOLLARdefined] = ACTIONS(1512), - [anon_sym_DOLLARembed] = ACTIONS(1512), - [anon_sym_DOLLARor] = ACTIONS(1512), - [anon_sym_DOLLARfeature] = ACTIONS(1512), - [anon_sym_DOLLARassignable] = ACTIONS(1512), - [anon_sym_BANG] = ACTIONS(1514), - [anon_sym_TILDE] = ACTIONS(1514), - [anon_sym_PLUS_PLUS] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1514), - [anon_sym_typeid] = ACTIONS(1512), - [anon_sym_LBRACE_PIPE] = ACTIONS(1514), - [anon_sym_void] = ACTIONS(1512), - [anon_sym_bool] = ACTIONS(1512), - [anon_sym_char] = ACTIONS(1512), - [anon_sym_ichar] = ACTIONS(1512), - [anon_sym_short] = ACTIONS(1512), - [anon_sym_ushort] = ACTIONS(1512), - [anon_sym_uint] = ACTIONS(1512), - [anon_sym_long] = ACTIONS(1512), - [anon_sym_ulong] = ACTIONS(1512), - [anon_sym_int128] = ACTIONS(1512), - [anon_sym_uint128] = ACTIONS(1512), - [anon_sym_float] = ACTIONS(1512), - [anon_sym_double] = ACTIONS(1512), - [anon_sym_float16] = ACTIONS(1512), - [anon_sym_bfloat16] = ACTIONS(1512), - [anon_sym_float128] = ACTIONS(1512), - [anon_sym_iptr] = ACTIONS(1512), - [anon_sym_uptr] = ACTIONS(1512), - [anon_sym_isz] = ACTIONS(1512), - [anon_sym_usz] = ACTIONS(1512), - [anon_sym_anyfault] = ACTIONS(1512), - [anon_sym_any] = ACTIONS(1512), - [anon_sym_DOLLARtypeof] = ACTIONS(1512), - [anon_sym_DOLLARtypefrom] = ACTIONS(1512), - [anon_sym_DOLLARvatype] = ACTIONS(1512), - [anon_sym_DOLLARevaltype] = ACTIONS(1512), - [sym_real_literal] = ACTIONS(1514), + [sym_ident] = ACTIONS(1379), + [sym_integer_literal] = ACTIONS(1381), + [anon_sym_SQUOTE] = ACTIONS(1381), + [anon_sym_DQUOTE] = ACTIONS(1381), + [anon_sym_BQUOTE] = ACTIONS(1381), + [sym_bytes_literal] = ACTIONS(1381), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1379), + [sym_at_ident] = ACTIONS(1381), + [sym_hash_ident] = ACTIONS(1381), + [sym_type_ident] = ACTIONS(1381), + [sym_ct_type_ident] = ACTIONS(1381), + [sym_const_ident] = ACTIONS(1379), + [sym_builtin] = ACTIONS(1381), + [anon_sym_LPAREN] = ACTIONS(1381), + [anon_sym_AMP] = ACTIONS(1379), + [anon_sym_static] = ACTIONS(1379), + [anon_sym_tlocal] = ACTIONS(1379), + [anon_sym_SEMI] = ACTIONS(1381), + [anon_sym_fn] = ACTIONS(1379), + [anon_sym_LBRACE] = ACTIONS(1379), + [anon_sym_const] = ACTIONS(1379), + [anon_sym_var] = ACTIONS(1379), + [anon_sym_return] = ACTIONS(1379), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_break] = ACTIONS(1379), + [anon_sym_defer] = ACTIONS(1379), + [anon_sym_assert] = ACTIONS(1379), + [anon_sym_nextcase] = ACTIONS(1379), + [anon_sym_switch] = ACTIONS(1379), + [anon_sym_AMP_AMP] = ACTIONS(1381), + [anon_sym_if] = ACTIONS(1379), + [anon_sym_for] = ACTIONS(1379), + [anon_sym_foreach] = ACTIONS(1379), + [anon_sym_foreach_r] = ACTIONS(1379), + [anon_sym_while] = ACTIONS(1379), + [anon_sym_do] = ACTIONS(1379), + [anon_sym_int] = ACTIONS(1379), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(1381), + [anon_sym_asm] = ACTIONS(1379), + [anon_sym_DOLLARassert] = ACTIONS(1379), + [anon_sym_DOLLARerror] = ACTIONS(1379), + [anon_sym_DOLLARecho] = ACTIONS(1379), + [anon_sym_DOLLARif] = ACTIONS(1379), + [anon_sym_DOLLARswitch] = ACTIONS(1379), + [anon_sym_DOLLARfor] = ACTIONS(1379), + [anon_sym_DOLLARforeach] = ACTIONS(1379), + [anon_sym_DOLLARendforeach] = ACTIONS(1379), + [anon_sym_DOLLARalignof] = ACTIONS(1379), + [anon_sym_DOLLARextnameof] = ACTIONS(1379), + [anon_sym_DOLLARnameof] = ACTIONS(1379), + [anon_sym_DOLLARoffsetof] = ACTIONS(1379), + [anon_sym_DOLLARqnameof] = ACTIONS(1379), + [anon_sym_DOLLARvaconst] = ACTIONS(1379), + [anon_sym_DOLLARvaarg] = ACTIONS(1379), + [anon_sym_DOLLARvaref] = ACTIONS(1379), + [anon_sym_DOLLARvaexpr] = ACTIONS(1379), + [anon_sym_true] = ACTIONS(1379), + [anon_sym_false] = ACTIONS(1379), + [anon_sym_null] = ACTIONS(1379), + [anon_sym_DOLLARvacount] = ACTIONS(1379), + [anon_sym_DOLLARappend] = ACTIONS(1379), + [anon_sym_DOLLARconcat] = ACTIONS(1379), + [anon_sym_DOLLAReval] = ACTIONS(1379), + [anon_sym_DOLLARis_const] = ACTIONS(1379), + [anon_sym_DOLLARsizeof] = ACTIONS(1379), + [anon_sym_DOLLARstringify] = ACTIONS(1379), + [anon_sym_DOLLARand] = ACTIONS(1379), + [anon_sym_DOLLARdefined] = ACTIONS(1379), + [anon_sym_DOLLARembed] = ACTIONS(1379), + [anon_sym_DOLLARor] = ACTIONS(1379), + [anon_sym_DOLLARfeature] = ACTIONS(1379), + [anon_sym_DOLLARassignable] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_PLUS_PLUS] = ACTIONS(1381), + [anon_sym_DASH_DASH] = ACTIONS(1381), + [anon_sym_typeid] = ACTIONS(1379), + [anon_sym_LBRACE_PIPE] = ACTIONS(1381), + [anon_sym_void] = ACTIONS(1379), + [anon_sym_bool] = ACTIONS(1379), + [anon_sym_char] = ACTIONS(1379), + [anon_sym_ichar] = ACTIONS(1379), + [anon_sym_short] = ACTIONS(1379), + [anon_sym_ushort] = ACTIONS(1379), + [anon_sym_uint] = ACTIONS(1379), + [anon_sym_long] = ACTIONS(1379), + [anon_sym_ulong] = ACTIONS(1379), + [anon_sym_int128] = ACTIONS(1379), + [anon_sym_uint128] = ACTIONS(1379), + [anon_sym_float] = ACTIONS(1379), + [anon_sym_double] = ACTIONS(1379), + [anon_sym_float16] = ACTIONS(1379), + [anon_sym_bfloat16] = ACTIONS(1379), + [anon_sym_float128] = ACTIONS(1379), + [anon_sym_iptr] = ACTIONS(1379), + [anon_sym_uptr] = ACTIONS(1379), + [anon_sym_isz] = ACTIONS(1379), + [anon_sym_usz] = ACTIONS(1379), + [anon_sym_anyfault] = ACTIONS(1379), + [anon_sym_any] = ACTIONS(1379), + [anon_sym_DOLLARtypeof] = ACTIONS(1379), + [anon_sym_DOLLARtypefrom] = ACTIONS(1379), + [anon_sym_DOLLARvatype] = ACTIONS(1379), + [anon_sym_DOLLARevaltype] = ACTIONS(1379), + [sym_real_literal] = ACTIONS(1381), }, [692] = { [sym_line_comment] = STATE(692), [sym_doc_comment] = STATE(692), [sym_block_comment] = STATE(692), - [sym_ident] = ACTIONS(1508), - [sym_integer_literal] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1510), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_BQUOTE] = ACTIONS(1510), - [sym_bytes_literal] = ACTIONS(1510), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1508), - [sym_at_ident] = ACTIONS(1510), - [sym_hash_ident] = ACTIONS(1510), - [sym_type_ident] = ACTIONS(1510), - [sym_ct_type_ident] = ACTIONS(1510), - [sym_const_ident] = ACTIONS(1508), - [sym_builtin] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(1508), - [anon_sym_static] = ACTIONS(1508), - [anon_sym_tlocal] = ACTIONS(1508), - [anon_sym_SEMI] = ACTIONS(1510), - [anon_sym_fn] = ACTIONS(1508), - [anon_sym_LBRACE] = ACTIONS(1508), - [anon_sym_const] = ACTIONS(1508), - [anon_sym_var] = ACTIONS(1508), - [anon_sym_return] = ACTIONS(1508), - [anon_sym_continue] = ACTIONS(1508), - [anon_sym_break] = ACTIONS(1508), - [anon_sym_defer] = ACTIONS(1508), - [anon_sym_assert] = ACTIONS(1508), - [anon_sym_nextcase] = ACTIONS(1508), - [anon_sym_switch] = ACTIONS(1508), - [anon_sym_AMP_AMP] = ACTIONS(1510), - [anon_sym_if] = ACTIONS(1508), - [anon_sym_for] = ACTIONS(1508), - [anon_sym_foreach] = ACTIONS(1508), - [anon_sym_foreach_r] = ACTIONS(1508), - [anon_sym_while] = ACTIONS(1508), - [anon_sym_do] = ACTIONS(1508), - [anon_sym_int] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(1508), - [anon_sym_STAR] = ACTIONS(1510), - [anon_sym_asm] = ACTIONS(1508), - [anon_sym_DOLLARassert] = ACTIONS(1508), - [anon_sym_DOLLARerror] = ACTIONS(1508), - [anon_sym_DOLLARecho] = ACTIONS(1508), - [anon_sym_DOLLARif] = ACTIONS(1508), - [anon_sym_DOLLARswitch] = ACTIONS(1508), - [anon_sym_DOLLARfor] = ACTIONS(1508), - [anon_sym_DOLLARforeach] = ACTIONS(1508), - [anon_sym_DOLLARendforeach] = ACTIONS(1508), - [anon_sym_DOLLARalignof] = ACTIONS(1508), - [anon_sym_DOLLARextnameof] = ACTIONS(1508), - [anon_sym_DOLLARnameof] = ACTIONS(1508), - [anon_sym_DOLLARoffsetof] = ACTIONS(1508), - [anon_sym_DOLLARqnameof] = ACTIONS(1508), - [anon_sym_DOLLARvaconst] = ACTIONS(1508), - [anon_sym_DOLLARvaarg] = ACTIONS(1508), - [anon_sym_DOLLARvaref] = ACTIONS(1508), - [anon_sym_DOLLARvaexpr] = ACTIONS(1508), - [anon_sym_true] = ACTIONS(1508), - [anon_sym_false] = ACTIONS(1508), - [anon_sym_null] = ACTIONS(1508), - [anon_sym_DOLLARvacount] = ACTIONS(1508), - [anon_sym_DOLLARappend] = ACTIONS(1508), - [anon_sym_DOLLARconcat] = ACTIONS(1508), - [anon_sym_DOLLAReval] = ACTIONS(1508), - [anon_sym_DOLLARis_const] = ACTIONS(1508), - [anon_sym_DOLLARsizeof] = ACTIONS(1508), - [anon_sym_DOLLARstringify] = ACTIONS(1508), - [anon_sym_DOLLARand] = ACTIONS(1508), - [anon_sym_DOLLARdefined] = ACTIONS(1508), - [anon_sym_DOLLARembed] = ACTIONS(1508), - [anon_sym_DOLLARor] = ACTIONS(1508), - [anon_sym_DOLLARfeature] = ACTIONS(1508), - [anon_sym_DOLLARassignable] = ACTIONS(1508), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_PLUS_PLUS] = ACTIONS(1510), - [anon_sym_DASH_DASH] = ACTIONS(1510), - [anon_sym_typeid] = ACTIONS(1508), - [anon_sym_LBRACE_PIPE] = ACTIONS(1510), - [anon_sym_void] = ACTIONS(1508), - [anon_sym_bool] = ACTIONS(1508), - [anon_sym_char] = ACTIONS(1508), - [anon_sym_ichar] = ACTIONS(1508), - [anon_sym_short] = ACTIONS(1508), - [anon_sym_ushort] = ACTIONS(1508), - [anon_sym_uint] = ACTIONS(1508), - [anon_sym_long] = ACTIONS(1508), - [anon_sym_ulong] = ACTIONS(1508), - [anon_sym_int128] = ACTIONS(1508), - [anon_sym_uint128] = ACTIONS(1508), - [anon_sym_float] = ACTIONS(1508), - [anon_sym_double] = ACTIONS(1508), - [anon_sym_float16] = ACTIONS(1508), - [anon_sym_bfloat16] = ACTIONS(1508), - [anon_sym_float128] = ACTIONS(1508), - [anon_sym_iptr] = ACTIONS(1508), - [anon_sym_uptr] = ACTIONS(1508), - [anon_sym_isz] = ACTIONS(1508), - [anon_sym_usz] = ACTIONS(1508), - [anon_sym_anyfault] = ACTIONS(1508), - [anon_sym_any] = ACTIONS(1508), - [anon_sym_DOLLARtypeof] = ACTIONS(1508), - [anon_sym_DOLLARtypefrom] = ACTIONS(1508), - [anon_sym_DOLLARvatype] = ACTIONS(1508), - [anon_sym_DOLLARevaltype] = ACTIONS(1508), - [sym_real_literal] = ACTIONS(1510), + [sym_ident] = ACTIONS(1383), + [sym_integer_literal] = ACTIONS(1385), + [anon_sym_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE] = ACTIONS(1385), + [anon_sym_BQUOTE] = ACTIONS(1385), + [sym_bytes_literal] = ACTIONS(1385), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1383), + [sym_at_ident] = ACTIONS(1385), + [sym_hash_ident] = ACTIONS(1385), + [sym_type_ident] = ACTIONS(1385), + [sym_ct_type_ident] = ACTIONS(1385), + [sym_const_ident] = ACTIONS(1383), + [sym_builtin] = ACTIONS(1385), + [anon_sym_LPAREN] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_static] = ACTIONS(1383), + [anon_sym_tlocal] = ACTIONS(1383), + [anon_sym_SEMI] = ACTIONS(1385), + [anon_sym_fn] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1383), + [anon_sym_const] = ACTIONS(1383), + [anon_sym_var] = ACTIONS(1383), + [anon_sym_return] = ACTIONS(1383), + [anon_sym_continue] = ACTIONS(1383), + [anon_sym_break] = ACTIONS(1383), + [anon_sym_defer] = ACTIONS(1383), + [anon_sym_assert] = ACTIONS(1383), + [anon_sym_nextcase] = ACTIONS(1383), + [anon_sym_switch] = ACTIONS(1383), + [anon_sym_AMP_AMP] = ACTIONS(1385), + [anon_sym_if] = ACTIONS(1383), + [anon_sym_for] = ACTIONS(1383), + [anon_sym_foreach] = ACTIONS(1383), + [anon_sym_foreach_r] = ACTIONS(1383), + [anon_sym_while] = ACTIONS(1383), + [anon_sym_do] = ACTIONS(1383), + [anon_sym_int] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1383), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_STAR] = ACTIONS(1385), + [anon_sym_asm] = ACTIONS(1383), + [anon_sym_DOLLARassert] = ACTIONS(1383), + [anon_sym_DOLLARerror] = ACTIONS(1383), + [anon_sym_DOLLARecho] = ACTIONS(1383), + [anon_sym_DOLLARif] = ACTIONS(1383), + [anon_sym_DOLLARswitch] = ACTIONS(1383), + [anon_sym_DOLLARfor] = ACTIONS(1383), + [anon_sym_DOLLARforeach] = ACTIONS(1383), + [anon_sym_DOLLARendforeach] = ACTIONS(1383), + [anon_sym_DOLLARalignof] = ACTIONS(1383), + [anon_sym_DOLLARextnameof] = ACTIONS(1383), + [anon_sym_DOLLARnameof] = ACTIONS(1383), + [anon_sym_DOLLARoffsetof] = ACTIONS(1383), + [anon_sym_DOLLARqnameof] = ACTIONS(1383), + [anon_sym_DOLLARvaconst] = ACTIONS(1383), + [anon_sym_DOLLARvaarg] = ACTIONS(1383), + [anon_sym_DOLLARvaref] = ACTIONS(1383), + [anon_sym_DOLLARvaexpr] = ACTIONS(1383), + [anon_sym_true] = ACTIONS(1383), + [anon_sym_false] = ACTIONS(1383), + [anon_sym_null] = ACTIONS(1383), + [anon_sym_DOLLARvacount] = ACTIONS(1383), + [anon_sym_DOLLARappend] = ACTIONS(1383), + [anon_sym_DOLLARconcat] = ACTIONS(1383), + [anon_sym_DOLLAReval] = ACTIONS(1383), + [anon_sym_DOLLARis_const] = ACTIONS(1383), + [anon_sym_DOLLARsizeof] = ACTIONS(1383), + [anon_sym_DOLLARstringify] = ACTIONS(1383), + [anon_sym_DOLLARand] = ACTIONS(1383), + [anon_sym_DOLLARdefined] = ACTIONS(1383), + [anon_sym_DOLLARembed] = ACTIONS(1383), + [anon_sym_DOLLARor] = ACTIONS(1383), + [anon_sym_DOLLARfeature] = ACTIONS(1383), + [anon_sym_DOLLARassignable] = ACTIONS(1383), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_TILDE] = ACTIONS(1385), + [anon_sym_PLUS_PLUS] = ACTIONS(1385), + [anon_sym_DASH_DASH] = ACTIONS(1385), + [anon_sym_typeid] = ACTIONS(1383), + [anon_sym_LBRACE_PIPE] = ACTIONS(1385), + [anon_sym_void] = ACTIONS(1383), + [anon_sym_bool] = ACTIONS(1383), + [anon_sym_char] = ACTIONS(1383), + [anon_sym_ichar] = ACTIONS(1383), + [anon_sym_short] = ACTIONS(1383), + [anon_sym_ushort] = ACTIONS(1383), + [anon_sym_uint] = ACTIONS(1383), + [anon_sym_long] = ACTIONS(1383), + [anon_sym_ulong] = ACTIONS(1383), + [anon_sym_int128] = ACTIONS(1383), + [anon_sym_uint128] = ACTIONS(1383), + [anon_sym_float] = ACTIONS(1383), + [anon_sym_double] = ACTIONS(1383), + [anon_sym_float16] = ACTIONS(1383), + [anon_sym_bfloat16] = ACTIONS(1383), + [anon_sym_float128] = ACTIONS(1383), + [anon_sym_iptr] = ACTIONS(1383), + [anon_sym_uptr] = ACTIONS(1383), + [anon_sym_isz] = ACTIONS(1383), + [anon_sym_usz] = ACTIONS(1383), + [anon_sym_anyfault] = ACTIONS(1383), + [anon_sym_any] = ACTIONS(1383), + [anon_sym_DOLLARtypeof] = ACTIONS(1383), + [anon_sym_DOLLARtypefrom] = ACTIONS(1383), + [anon_sym_DOLLARvatype] = ACTIONS(1383), + [anon_sym_DOLLARevaltype] = ACTIONS(1383), + [sym_real_literal] = ACTIONS(1385), }, [693] = { [sym_line_comment] = STATE(693), [sym_doc_comment] = STATE(693), [sym_block_comment] = STATE(693), - [sym_ident] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1490), - [anon_sym_SQUOTE] = ACTIONS(1490), - [anon_sym_DQUOTE] = ACTIONS(1490), - [anon_sym_BQUOTE] = ACTIONS(1490), - [sym_bytes_literal] = ACTIONS(1490), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1488), - [sym_at_ident] = ACTIONS(1490), - [sym_hash_ident] = ACTIONS(1490), - [sym_type_ident] = ACTIONS(1490), - [sym_ct_type_ident] = ACTIONS(1490), - [sym_const_ident] = ACTIONS(1488), - [sym_builtin] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1490), - [anon_sym_AMP] = ACTIONS(1488), - [anon_sym_static] = ACTIONS(1488), - [anon_sym_tlocal] = ACTIONS(1488), - [anon_sym_SEMI] = ACTIONS(1490), - [anon_sym_fn] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_const] = ACTIONS(1488), - [anon_sym_var] = ACTIONS(1488), - [anon_sym_return] = ACTIONS(1488), - [anon_sym_continue] = ACTIONS(1488), - [anon_sym_break] = ACTIONS(1488), - [anon_sym_defer] = ACTIONS(1488), - [anon_sym_assert] = ACTIONS(1488), - [anon_sym_nextcase] = ACTIONS(1488), - [anon_sym_switch] = ACTIONS(1488), - [anon_sym_AMP_AMP] = ACTIONS(1490), - [anon_sym_if] = ACTIONS(1488), - [anon_sym_for] = ACTIONS(1488), - [anon_sym_foreach] = ACTIONS(1488), - [anon_sym_foreach_r] = ACTIONS(1488), - [anon_sym_while] = ACTIONS(1488), - [anon_sym_do] = ACTIONS(1488), - [anon_sym_int] = ACTIONS(1488), - [anon_sym_PLUS] = ACTIONS(1488), - [anon_sym_DASH] = ACTIONS(1488), - [anon_sym_STAR] = ACTIONS(1490), - [anon_sym_asm] = ACTIONS(1488), - [anon_sym_DOLLARassert] = ACTIONS(1488), - [anon_sym_DOLLARerror] = ACTIONS(1488), - [anon_sym_DOLLARecho] = ACTIONS(1488), - [anon_sym_DOLLARif] = ACTIONS(1488), - [anon_sym_DOLLARswitch] = ACTIONS(1488), - [anon_sym_DOLLARfor] = ACTIONS(1488), - [anon_sym_DOLLARforeach] = ACTIONS(1488), - [anon_sym_DOLLARendforeach] = ACTIONS(1488), - [anon_sym_DOLLARalignof] = ACTIONS(1488), - [anon_sym_DOLLARextnameof] = ACTIONS(1488), - [anon_sym_DOLLARnameof] = ACTIONS(1488), - [anon_sym_DOLLARoffsetof] = ACTIONS(1488), - [anon_sym_DOLLARqnameof] = ACTIONS(1488), - [anon_sym_DOLLARvaconst] = ACTIONS(1488), - [anon_sym_DOLLARvaarg] = ACTIONS(1488), - [anon_sym_DOLLARvaref] = ACTIONS(1488), - [anon_sym_DOLLARvaexpr] = ACTIONS(1488), - [anon_sym_true] = ACTIONS(1488), - [anon_sym_false] = ACTIONS(1488), - [anon_sym_null] = ACTIONS(1488), - [anon_sym_DOLLARvacount] = ACTIONS(1488), - [anon_sym_DOLLARappend] = ACTIONS(1488), - [anon_sym_DOLLARconcat] = ACTIONS(1488), - [anon_sym_DOLLAReval] = ACTIONS(1488), - [anon_sym_DOLLARis_const] = ACTIONS(1488), - [anon_sym_DOLLARsizeof] = ACTIONS(1488), - [anon_sym_DOLLARstringify] = ACTIONS(1488), - [anon_sym_DOLLARand] = ACTIONS(1488), - [anon_sym_DOLLARdefined] = ACTIONS(1488), - [anon_sym_DOLLARembed] = ACTIONS(1488), - [anon_sym_DOLLARor] = ACTIONS(1488), - [anon_sym_DOLLARfeature] = ACTIONS(1488), - [anon_sym_DOLLARassignable] = ACTIONS(1488), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1490), - [anon_sym_DASH_DASH] = ACTIONS(1490), - [anon_sym_typeid] = ACTIONS(1488), - [anon_sym_LBRACE_PIPE] = ACTIONS(1490), - [anon_sym_void] = ACTIONS(1488), - [anon_sym_bool] = ACTIONS(1488), - [anon_sym_char] = ACTIONS(1488), - [anon_sym_ichar] = ACTIONS(1488), - [anon_sym_short] = ACTIONS(1488), - [anon_sym_ushort] = ACTIONS(1488), - [anon_sym_uint] = ACTIONS(1488), - [anon_sym_long] = ACTIONS(1488), - [anon_sym_ulong] = ACTIONS(1488), - [anon_sym_int128] = ACTIONS(1488), - [anon_sym_uint128] = ACTIONS(1488), - [anon_sym_float] = ACTIONS(1488), - [anon_sym_double] = ACTIONS(1488), - [anon_sym_float16] = ACTIONS(1488), - [anon_sym_bfloat16] = ACTIONS(1488), - [anon_sym_float128] = ACTIONS(1488), - [anon_sym_iptr] = ACTIONS(1488), - [anon_sym_uptr] = ACTIONS(1488), - [anon_sym_isz] = ACTIONS(1488), - [anon_sym_usz] = ACTIONS(1488), - [anon_sym_anyfault] = ACTIONS(1488), - [anon_sym_any] = ACTIONS(1488), - [anon_sym_DOLLARtypeof] = ACTIONS(1488), - [anon_sym_DOLLARtypefrom] = ACTIONS(1488), - [anon_sym_DOLLARvatype] = ACTIONS(1488), - [anon_sym_DOLLARevaltype] = ACTIONS(1488), - [sym_real_literal] = ACTIONS(1490), + [sym_ident] = ACTIONS(1387), + [sym_integer_literal] = ACTIONS(1389), + [anon_sym_SQUOTE] = ACTIONS(1389), + [anon_sym_DQUOTE] = ACTIONS(1389), + [anon_sym_BQUOTE] = ACTIONS(1389), + [sym_bytes_literal] = ACTIONS(1389), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1387), + [sym_at_ident] = ACTIONS(1389), + [sym_hash_ident] = ACTIONS(1389), + [sym_type_ident] = ACTIONS(1389), + [sym_ct_type_ident] = ACTIONS(1389), + [sym_const_ident] = ACTIONS(1387), + [sym_builtin] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_AMP] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1387), + [anon_sym_tlocal] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1389), + [anon_sym_fn] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_defer] = ACTIONS(1387), + [anon_sym_assert] = ACTIONS(1387), + [anon_sym_nextcase] = ACTIONS(1387), + [anon_sym_switch] = ACTIONS(1387), + [anon_sym_AMP_AMP] = ACTIONS(1389), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_foreach] = ACTIONS(1387), + [anon_sym_foreach_r] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_int] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1389), + [anon_sym_asm] = ACTIONS(1387), + [anon_sym_DOLLARassert] = ACTIONS(1387), + [anon_sym_DOLLARerror] = ACTIONS(1387), + [anon_sym_DOLLARecho] = ACTIONS(1387), + [anon_sym_DOLLARif] = ACTIONS(1387), + [anon_sym_DOLLARswitch] = ACTIONS(1387), + [anon_sym_DOLLARfor] = ACTIONS(1387), + [anon_sym_DOLLARforeach] = ACTIONS(1387), + [anon_sym_DOLLARendforeach] = ACTIONS(1387), + [anon_sym_DOLLARalignof] = ACTIONS(1387), + [anon_sym_DOLLARextnameof] = ACTIONS(1387), + [anon_sym_DOLLARnameof] = ACTIONS(1387), + [anon_sym_DOLLARoffsetof] = ACTIONS(1387), + [anon_sym_DOLLARqnameof] = ACTIONS(1387), + [anon_sym_DOLLARvaconst] = ACTIONS(1387), + [anon_sym_DOLLARvaarg] = ACTIONS(1387), + [anon_sym_DOLLARvaref] = ACTIONS(1387), + [anon_sym_DOLLARvaexpr] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_DOLLARvacount] = ACTIONS(1387), + [anon_sym_DOLLARappend] = ACTIONS(1387), + [anon_sym_DOLLARconcat] = ACTIONS(1387), + [anon_sym_DOLLAReval] = ACTIONS(1387), + [anon_sym_DOLLARis_const] = ACTIONS(1387), + [anon_sym_DOLLARsizeof] = ACTIONS(1387), + [anon_sym_DOLLARstringify] = ACTIONS(1387), + [anon_sym_DOLLARand] = ACTIONS(1387), + [anon_sym_DOLLARdefined] = ACTIONS(1387), + [anon_sym_DOLLARembed] = ACTIONS(1387), + [anon_sym_DOLLARor] = ACTIONS(1387), + [anon_sym_DOLLARfeature] = ACTIONS(1387), + [anon_sym_DOLLARassignable] = ACTIONS(1387), + [anon_sym_BANG] = ACTIONS(1389), + [anon_sym_TILDE] = ACTIONS(1389), + [anon_sym_PLUS_PLUS] = ACTIONS(1389), + [anon_sym_DASH_DASH] = ACTIONS(1389), + [anon_sym_typeid] = ACTIONS(1387), + [anon_sym_LBRACE_PIPE] = ACTIONS(1389), + [anon_sym_void] = ACTIONS(1387), + [anon_sym_bool] = ACTIONS(1387), + [anon_sym_char] = ACTIONS(1387), + [anon_sym_ichar] = ACTIONS(1387), + [anon_sym_short] = ACTIONS(1387), + [anon_sym_ushort] = ACTIONS(1387), + [anon_sym_uint] = ACTIONS(1387), + [anon_sym_long] = ACTIONS(1387), + [anon_sym_ulong] = ACTIONS(1387), + [anon_sym_int128] = ACTIONS(1387), + [anon_sym_uint128] = ACTIONS(1387), + [anon_sym_float] = ACTIONS(1387), + [anon_sym_double] = ACTIONS(1387), + [anon_sym_float16] = ACTIONS(1387), + [anon_sym_bfloat16] = ACTIONS(1387), + [anon_sym_float128] = ACTIONS(1387), + [anon_sym_iptr] = ACTIONS(1387), + [anon_sym_uptr] = ACTIONS(1387), + [anon_sym_isz] = ACTIONS(1387), + [anon_sym_usz] = ACTIONS(1387), + [anon_sym_anyfault] = ACTIONS(1387), + [anon_sym_any] = ACTIONS(1387), + [anon_sym_DOLLARtypeof] = ACTIONS(1387), + [anon_sym_DOLLARtypefrom] = ACTIONS(1387), + [anon_sym_DOLLARvatype] = ACTIONS(1387), + [anon_sym_DOLLARevaltype] = ACTIONS(1387), + [sym_real_literal] = ACTIONS(1389), }, [694] = { [sym_line_comment] = STATE(694), [sym_doc_comment] = STATE(694), [sym_block_comment] = STATE(694), - [sym_ident] = ACTIONS(1186), - [sym_integer_literal] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym_DQUOTE] = ACTIONS(1188), - [anon_sym_BQUOTE] = ACTIONS(1188), - [sym_bytes_literal] = ACTIONS(1188), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1186), - [sym_at_ident] = ACTIONS(1188), - [sym_hash_ident] = ACTIONS(1188), - [sym_type_ident] = ACTIONS(1188), - [sym_ct_type_ident] = ACTIONS(1188), - [sym_const_ident] = ACTIONS(1186), - [sym_builtin] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(1188), - [anon_sym_AMP] = ACTIONS(1186), - [anon_sym_static] = ACTIONS(1186), - [anon_sym_tlocal] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1188), - [anon_sym_fn] = ACTIONS(1186), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_const] = ACTIONS(1186), - [anon_sym_var] = ACTIONS(1186), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1186), - [anon_sym_defer] = ACTIONS(1186), - [anon_sym_assert] = ACTIONS(1186), - [anon_sym_nextcase] = ACTIONS(1186), - [anon_sym_switch] = ACTIONS(1186), - [anon_sym_AMP_AMP] = ACTIONS(1188), - [anon_sym_if] = ACTIONS(1186), - [anon_sym_for] = ACTIONS(1186), - [anon_sym_foreach] = ACTIONS(1186), - [anon_sym_foreach_r] = ACTIONS(1186), - [anon_sym_while] = ACTIONS(1186), - [anon_sym_do] = ACTIONS(1186), - [anon_sym_int] = ACTIONS(1186), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1188), - [anon_sym_asm] = ACTIONS(1186), - [anon_sym_DOLLARassert] = ACTIONS(1186), - [anon_sym_DOLLARerror] = ACTIONS(1186), - [anon_sym_DOLLARecho] = ACTIONS(1186), - [anon_sym_DOLLARif] = ACTIONS(1186), - [anon_sym_DOLLARswitch] = ACTIONS(1186), - [anon_sym_DOLLARfor] = ACTIONS(1186), - [anon_sym_DOLLARendfor] = ACTIONS(1186), - [anon_sym_DOLLARforeach] = ACTIONS(1186), - [anon_sym_DOLLARalignof] = ACTIONS(1186), - [anon_sym_DOLLARextnameof] = ACTIONS(1186), - [anon_sym_DOLLARnameof] = ACTIONS(1186), - [anon_sym_DOLLARoffsetof] = ACTIONS(1186), - [anon_sym_DOLLARqnameof] = ACTIONS(1186), - [anon_sym_DOLLARvaconst] = ACTIONS(1186), - [anon_sym_DOLLARvaarg] = ACTIONS(1186), - [anon_sym_DOLLARvaref] = ACTIONS(1186), - [anon_sym_DOLLARvaexpr] = ACTIONS(1186), - [anon_sym_true] = ACTIONS(1186), - [anon_sym_false] = ACTIONS(1186), - [anon_sym_null] = ACTIONS(1186), - [anon_sym_DOLLARvacount] = ACTIONS(1186), - [anon_sym_DOLLARappend] = ACTIONS(1186), - [anon_sym_DOLLARconcat] = ACTIONS(1186), - [anon_sym_DOLLAReval] = ACTIONS(1186), - [anon_sym_DOLLARis_const] = ACTIONS(1186), - [anon_sym_DOLLARsizeof] = ACTIONS(1186), - [anon_sym_DOLLARstringify] = ACTIONS(1186), - [anon_sym_DOLLARand] = ACTIONS(1186), - [anon_sym_DOLLARdefined] = ACTIONS(1186), - [anon_sym_DOLLARembed] = ACTIONS(1186), - [anon_sym_DOLLARor] = ACTIONS(1186), - [anon_sym_DOLLARfeature] = ACTIONS(1186), - [anon_sym_DOLLARassignable] = ACTIONS(1186), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_PLUS_PLUS] = ACTIONS(1188), - [anon_sym_DASH_DASH] = ACTIONS(1188), - [anon_sym_typeid] = ACTIONS(1186), - [anon_sym_LBRACE_PIPE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1186), - [anon_sym_bool] = ACTIONS(1186), - [anon_sym_char] = ACTIONS(1186), - [anon_sym_ichar] = ACTIONS(1186), - [anon_sym_short] = ACTIONS(1186), - [anon_sym_ushort] = ACTIONS(1186), - [anon_sym_uint] = ACTIONS(1186), - [anon_sym_long] = ACTIONS(1186), - [anon_sym_ulong] = ACTIONS(1186), - [anon_sym_int128] = ACTIONS(1186), - [anon_sym_uint128] = ACTIONS(1186), - [anon_sym_float] = ACTIONS(1186), - [anon_sym_double] = ACTIONS(1186), - [anon_sym_float16] = ACTIONS(1186), - [anon_sym_bfloat16] = ACTIONS(1186), - [anon_sym_float128] = ACTIONS(1186), - [anon_sym_iptr] = ACTIONS(1186), - [anon_sym_uptr] = ACTIONS(1186), - [anon_sym_isz] = ACTIONS(1186), - [anon_sym_usz] = ACTIONS(1186), - [anon_sym_anyfault] = ACTIONS(1186), - [anon_sym_any] = ACTIONS(1186), - [anon_sym_DOLLARtypeof] = ACTIONS(1186), - [anon_sym_DOLLARtypefrom] = ACTIONS(1186), - [anon_sym_DOLLARvatype] = ACTIONS(1186), - [anon_sym_DOLLARevaltype] = ACTIONS(1186), - [sym_real_literal] = ACTIONS(1188), + [sym_ident] = ACTIONS(1391), + [sym_integer_literal] = ACTIONS(1393), + [anon_sym_SQUOTE] = ACTIONS(1393), + [anon_sym_DQUOTE] = ACTIONS(1393), + [anon_sym_BQUOTE] = ACTIONS(1393), + [sym_bytes_literal] = ACTIONS(1393), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1391), + [sym_at_ident] = ACTIONS(1393), + [sym_hash_ident] = ACTIONS(1393), + [sym_type_ident] = ACTIONS(1393), + [sym_ct_type_ident] = ACTIONS(1393), + [sym_const_ident] = ACTIONS(1391), + [sym_builtin] = ACTIONS(1393), + [anon_sym_LPAREN] = ACTIONS(1393), + [anon_sym_AMP] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1391), + [anon_sym_tlocal] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1393), + [anon_sym_fn] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_var] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_defer] = ACTIONS(1391), + [anon_sym_assert] = ACTIONS(1391), + [anon_sym_nextcase] = ACTIONS(1391), + [anon_sym_switch] = ACTIONS(1391), + [anon_sym_AMP_AMP] = ACTIONS(1393), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_foreach] = ACTIONS(1391), + [anon_sym_foreach_r] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_int] = ACTIONS(1391), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1393), + [anon_sym_asm] = ACTIONS(1391), + [anon_sym_DOLLARassert] = ACTIONS(1391), + [anon_sym_DOLLARerror] = ACTIONS(1391), + [anon_sym_DOLLARecho] = ACTIONS(1391), + [anon_sym_DOLLARif] = ACTIONS(1391), + [anon_sym_DOLLARswitch] = ACTIONS(1391), + [anon_sym_DOLLARfor] = ACTIONS(1391), + [anon_sym_DOLLARforeach] = ACTIONS(1391), + [anon_sym_DOLLARendforeach] = ACTIONS(1391), + [anon_sym_DOLLARalignof] = ACTIONS(1391), + [anon_sym_DOLLARextnameof] = ACTIONS(1391), + [anon_sym_DOLLARnameof] = ACTIONS(1391), + [anon_sym_DOLLARoffsetof] = ACTIONS(1391), + [anon_sym_DOLLARqnameof] = ACTIONS(1391), + [anon_sym_DOLLARvaconst] = ACTIONS(1391), + [anon_sym_DOLLARvaarg] = ACTIONS(1391), + [anon_sym_DOLLARvaref] = ACTIONS(1391), + [anon_sym_DOLLARvaexpr] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_DOLLARvacount] = ACTIONS(1391), + [anon_sym_DOLLARappend] = ACTIONS(1391), + [anon_sym_DOLLARconcat] = ACTIONS(1391), + [anon_sym_DOLLAReval] = ACTIONS(1391), + [anon_sym_DOLLARis_const] = ACTIONS(1391), + [anon_sym_DOLLARsizeof] = ACTIONS(1391), + [anon_sym_DOLLARstringify] = ACTIONS(1391), + [anon_sym_DOLLARand] = ACTIONS(1391), + [anon_sym_DOLLARdefined] = ACTIONS(1391), + [anon_sym_DOLLARembed] = ACTIONS(1391), + [anon_sym_DOLLARor] = ACTIONS(1391), + [anon_sym_DOLLARfeature] = ACTIONS(1391), + [anon_sym_DOLLARassignable] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1393), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_PLUS_PLUS] = ACTIONS(1393), + [anon_sym_DASH_DASH] = ACTIONS(1393), + [anon_sym_typeid] = ACTIONS(1391), + [anon_sym_LBRACE_PIPE] = ACTIONS(1393), + [anon_sym_void] = ACTIONS(1391), + [anon_sym_bool] = ACTIONS(1391), + [anon_sym_char] = ACTIONS(1391), + [anon_sym_ichar] = ACTIONS(1391), + [anon_sym_short] = ACTIONS(1391), + [anon_sym_ushort] = ACTIONS(1391), + [anon_sym_uint] = ACTIONS(1391), + [anon_sym_long] = ACTIONS(1391), + [anon_sym_ulong] = ACTIONS(1391), + [anon_sym_int128] = ACTIONS(1391), + [anon_sym_uint128] = ACTIONS(1391), + [anon_sym_float] = ACTIONS(1391), + [anon_sym_double] = ACTIONS(1391), + [anon_sym_float16] = ACTIONS(1391), + [anon_sym_bfloat16] = ACTIONS(1391), + [anon_sym_float128] = ACTIONS(1391), + [anon_sym_iptr] = ACTIONS(1391), + [anon_sym_uptr] = ACTIONS(1391), + [anon_sym_isz] = ACTIONS(1391), + [anon_sym_usz] = ACTIONS(1391), + [anon_sym_anyfault] = ACTIONS(1391), + [anon_sym_any] = ACTIONS(1391), + [anon_sym_DOLLARtypeof] = ACTIONS(1391), + [anon_sym_DOLLARtypefrom] = ACTIONS(1391), + [anon_sym_DOLLARvatype] = ACTIONS(1391), + [anon_sym_DOLLARevaltype] = ACTIONS(1391), + [sym_real_literal] = ACTIONS(1393), }, [695] = { [sym_line_comment] = STATE(695), [sym_doc_comment] = STATE(695), [sym_block_comment] = STATE(695), - [sym_ident] = ACTIONS(1484), - [sym_integer_literal] = ACTIONS(1486), - [anon_sym_SQUOTE] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(1486), - [anon_sym_BQUOTE] = ACTIONS(1486), - [sym_bytes_literal] = ACTIONS(1486), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1484), - [sym_at_ident] = ACTIONS(1486), - [sym_hash_ident] = ACTIONS(1486), - [sym_type_ident] = ACTIONS(1486), - [sym_ct_type_ident] = ACTIONS(1486), - [sym_const_ident] = ACTIONS(1484), - [sym_builtin] = ACTIONS(1486), - [anon_sym_LPAREN] = ACTIONS(1486), - [anon_sym_AMP] = ACTIONS(1484), - [anon_sym_static] = ACTIONS(1484), - [anon_sym_tlocal] = ACTIONS(1484), - [anon_sym_SEMI] = ACTIONS(1486), - [anon_sym_fn] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1484), - [anon_sym_const] = ACTIONS(1484), - [anon_sym_var] = ACTIONS(1484), - [anon_sym_return] = ACTIONS(1484), - [anon_sym_continue] = ACTIONS(1484), - [anon_sym_break] = ACTIONS(1484), - [anon_sym_defer] = ACTIONS(1484), - [anon_sym_assert] = ACTIONS(1484), - [anon_sym_nextcase] = ACTIONS(1484), - [anon_sym_switch] = ACTIONS(1484), - [anon_sym_AMP_AMP] = ACTIONS(1486), - [anon_sym_if] = ACTIONS(1484), - [anon_sym_for] = ACTIONS(1484), - [anon_sym_foreach] = ACTIONS(1484), - [anon_sym_foreach_r] = ACTIONS(1484), - [anon_sym_while] = ACTIONS(1484), - [anon_sym_do] = ACTIONS(1484), - [anon_sym_int] = ACTIONS(1484), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_DASH] = ACTIONS(1484), - [anon_sym_STAR] = ACTIONS(1486), - [anon_sym_asm] = ACTIONS(1484), - [anon_sym_DOLLARassert] = ACTIONS(1484), - [anon_sym_DOLLARerror] = ACTIONS(1484), - [anon_sym_DOLLARecho] = ACTIONS(1484), - [anon_sym_DOLLARif] = ACTIONS(1484), - [anon_sym_DOLLARendif] = ACTIONS(1484), - [anon_sym_DOLLARswitch] = ACTIONS(1484), - [anon_sym_DOLLARfor] = ACTIONS(1484), - [anon_sym_DOLLARforeach] = ACTIONS(1484), - [anon_sym_DOLLARalignof] = ACTIONS(1484), - [anon_sym_DOLLARextnameof] = ACTIONS(1484), - [anon_sym_DOLLARnameof] = ACTIONS(1484), - [anon_sym_DOLLARoffsetof] = ACTIONS(1484), - [anon_sym_DOLLARqnameof] = ACTIONS(1484), - [anon_sym_DOLLARvaconst] = ACTIONS(1484), - [anon_sym_DOLLARvaarg] = ACTIONS(1484), - [anon_sym_DOLLARvaref] = ACTIONS(1484), - [anon_sym_DOLLARvaexpr] = ACTIONS(1484), - [anon_sym_true] = ACTIONS(1484), - [anon_sym_false] = ACTIONS(1484), - [anon_sym_null] = ACTIONS(1484), - [anon_sym_DOLLARvacount] = ACTIONS(1484), - [anon_sym_DOLLARappend] = ACTIONS(1484), - [anon_sym_DOLLARconcat] = ACTIONS(1484), - [anon_sym_DOLLAReval] = ACTIONS(1484), - [anon_sym_DOLLARis_const] = ACTIONS(1484), - [anon_sym_DOLLARsizeof] = ACTIONS(1484), - [anon_sym_DOLLARstringify] = ACTIONS(1484), - [anon_sym_DOLLARand] = ACTIONS(1484), - [anon_sym_DOLLARdefined] = ACTIONS(1484), - [anon_sym_DOLLARembed] = ACTIONS(1484), - [anon_sym_DOLLARor] = ACTIONS(1484), - [anon_sym_DOLLARfeature] = ACTIONS(1484), - [anon_sym_DOLLARassignable] = ACTIONS(1484), - [anon_sym_BANG] = ACTIONS(1486), - [anon_sym_TILDE] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_typeid] = ACTIONS(1484), - [anon_sym_LBRACE_PIPE] = ACTIONS(1486), - [anon_sym_void] = ACTIONS(1484), - [anon_sym_bool] = ACTIONS(1484), - [anon_sym_char] = ACTIONS(1484), - [anon_sym_ichar] = ACTIONS(1484), - [anon_sym_short] = ACTIONS(1484), - [anon_sym_ushort] = ACTIONS(1484), - [anon_sym_uint] = ACTIONS(1484), - [anon_sym_long] = ACTIONS(1484), - [anon_sym_ulong] = ACTIONS(1484), - [anon_sym_int128] = ACTIONS(1484), - [anon_sym_uint128] = ACTIONS(1484), - [anon_sym_float] = ACTIONS(1484), - [anon_sym_double] = ACTIONS(1484), - [anon_sym_float16] = ACTIONS(1484), - [anon_sym_bfloat16] = ACTIONS(1484), - [anon_sym_float128] = ACTIONS(1484), - [anon_sym_iptr] = ACTIONS(1484), - [anon_sym_uptr] = ACTIONS(1484), - [anon_sym_isz] = ACTIONS(1484), - [anon_sym_usz] = ACTIONS(1484), - [anon_sym_anyfault] = ACTIONS(1484), - [anon_sym_any] = ACTIONS(1484), - [anon_sym_DOLLARtypeof] = ACTIONS(1484), - [anon_sym_DOLLARtypefrom] = ACTIONS(1484), - [anon_sym_DOLLARvatype] = ACTIONS(1484), - [anon_sym_DOLLARevaltype] = ACTIONS(1484), - [sym_real_literal] = ACTIONS(1486), + [sym_ident] = ACTIONS(1395), + [sym_integer_literal] = ACTIONS(1397), + [anon_sym_SQUOTE] = ACTIONS(1397), + [anon_sym_DQUOTE] = ACTIONS(1397), + [anon_sym_BQUOTE] = ACTIONS(1397), + [sym_bytes_literal] = ACTIONS(1397), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1395), + [sym_at_ident] = ACTIONS(1397), + [sym_hash_ident] = ACTIONS(1397), + [sym_type_ident] = ACTIONS(1397), + [sym_ct_type_ident] = ACTIONS(1397), + [sym_const_ident] = ACTIONS(1395), + [sym_builtin] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_AMP] = ACTIONS(1395), + [anon_sym_static] = ACTIONS(1395), + [anon_sym_tlocal] = ACTIONS(1395), + [anon_sym_SEMI] = ACTIONS(1397), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_const] = ACTIONS(1395), + [anon_sym_var] = ACTIONS(1395), + [anon_sym_return] = ACTIONS(1395), + [anon_sym_continue] = ACTIONS(1395), + [anon_sym_break] = ACTIONS(1395), + [anon_sym_defer] = ACTIONS(1395), + [anon_sym_assert] = ACTIONS(1395), + [anon_sym_nextcase] = ACTIONS(1395), + [anon_sym_switch] = ACTIONS(1395), + [anon_sym_AMP_AMP] = ACTIONS(1397), + [anon_sym_if] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1395), + [anon_sym_foreach] = ACTIONS(1395), + [anon_sym_foreach_r] = ACTIONS(1395), + [anon_sym_while] = ACTIONS(1395), + [anon_sym_do] = ACTIONS(1395), + [anon_sym_int] = ACTIONS(1395), + [anon_sym_PLUS] = ACTIONS(1395), + [anon_sym_DASH] = ACTIONS(1395), + [anon_sym_STAR] = ACTIONS(1397), + [anon_sym_asm] = ACTIONS(1395), + [anon_sym_DOLLARassert] = ACTIONS(1395), + [anon_sym_DOLLARerror] = ACTIONS(1395), + [anon_sym_DOLLARecho] = ACTIONS(1395), + [anon_sym_DOLLARif] = ACTIONS(1395), + [anon_sym_DOLLARswitch] = ACTIONS(1395), + [anon_sym_DOLLARfor] = ACTIONS(1395), + [anon_sym_DOLLARforeach] = ACTIONS(1395), + [anon_sym_DOLLARendforeach] = ACTIONS(1395), + [anon_sym_DOLLARalignof] = ACTIONS(1395), + [anon_sym_DOLLARextnameof] = ACTIONS(1395), + [anon_sym_DOLLARnameof] = ACTIONS(1395), + [anon_sym_DOLLARoffsetof] = ACTIONS(1395), + [anon_sym_DOLLARqnameof] = ACTIONS(1395), + [anon_sym_DOLLARvaconst] = ACTIONS(1395), + [anon_sym_DOLLARvaarg] = ACTIONS(1395), + [anon_sym_DOLLARvaref] = ACTIONS(1395), + [anon_sym_DOLLARvaexpr] = ACTIONS(1395), + [anon_sym_true] = ACTIONS(1395), + [anon_sym_false] = ACTIONS(1395), + [anon_sym_null] = ACTIONS(1395), + [anon_sym_DOLLARvacount] = ACTIONS(1395), + [anon_sym_DOLLARappend] = ACTIONS(1395), + [anon_sym_DOLLARconcat] = ACTIONS(1395), + [anon_sym_DOLLAReval] = ACTIONS(1395), + [anon_sym_DOLLARis_const] = ACTIONS(1395), + [anon_sym_DOLLARsizeof] = ACTIONS(1395), + [anon_sym_DOLLARstringify] = ACTIONS(1395), + [anon_sym_DOLLARand] = ACTIONS(1395), + [anon_sym_DOLLARdefined] = ACTIONS(1395), + [anon_sym_DOLLARembed] = ACTIONS(1395), + [anon_sym_DOLLARor] = ACTIONS(1395), + [anon_sym_DOLLARfeature] = ACTIONS(1395), + [anon_sym_DOLLARassignable] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_PLUS_PLUS] = ACTIONS(1397), + [anon_sym_DASH_DASH] = ACTIONS(1397), + [anon_sym_typeid] = ACTIONS(1395), + [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [anon_sym_void] = ACTIONS(1395), + [anon_sym_bool] = ACTIONS(1395), + [anon_sym_char] = ACTIONS(1395), + [anon_sym_ichar] = ACTIONS(1395), + [anon_sym_short] = ACTIONS(1395), + [anon_sym_ushort] = ACTIONS(1395), + [anon_sym_uint] = ACTIONS(1395), + [anon_sym_long] = ACTIONS(1395), + [anon_sym_ulong] = ACTIONS(1395), + [anon_sym_int128] = ACTIONS(1395), + [anon_sym_uint128] = ACTIONS(1395), + [anon_sym_float] = ACTIONS(1395), + [anon_sym_double] = ACTIONS(1395), + [anon_sym_float16] = ACTIONS(1395), + [anon_sym_bfloat16] = ACTIONS(1395), + [anon_sym_float128] = ACTIONS(1395), + [anon_sym_iptr] = ACTIONS(1395), + [anon_sym_uptr] = ACTIONS(1395), + [anon_sym_isz] = ACTIONS(1395), + [anon_sym_usz] = ACTIONS(1395), + [anon_sym_anyfault] = ACTIONS(1395), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_DOLLARtypeof] = ACTIONS(1395), + [anon_sym_DOLLARtypefrom] = ACTIONS(1395), + [anon_sym_DOLLARvatype] = ACTIONS(1395), + [anon_sym_DOLLARevaltype] = ACTIONS(1395), + [sym_real_literal] = ACTIONS(1397), }, [696] = { [sym_line_comment] = STATE(696), [sym_doc_comment] = STATE(696), [sym_block_comment] = STATE(696), - [sym_ident] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1490), - [anon_sym_SQUOTE] = ACTIONS(1490), - [anon_sym_DQUOTE] = ACTIONS(1490), - [anon_sym_BQUOTE] = ACTIONS(1490), - [sym_bytes_literal] = ACTIONS(1490), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1488), - [sym_at_ident] = ACTIONS(1490), - [sym_hash_ident] = ACTIONS(1490), - [sym_type_ident] = ACTIONS(1490), - [sym_ct_type_ident] = ACTIONS(1490), - [sym_const_ident] = ACTIONS(1488), - [sym_builtin] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1490), - [anon_sym_AMP] = ACTIONS(1488), - [anon_sym_static] = ACTIONS(1488), - [anon_sym_tlocal] = ACTIONS(1488), - [anon_sym_SEMI] = ACTIONS(1490), - [anon_sym_fn] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_const] = ACTIONS(1488), - [anon_sym_var] = ACTIONS(1488), - [anon_sym_return] = ACTIONS(1488), - [anon_sym_continue] = ACTIONS(1488), - [anon_sym_break] = ACTIONS(1488), - [anon_sym_defer] = ACTIONS(1488), - [anon_sym_assert] = ACTIONS(1488), - [anon_sym_nextcase] = ACTIONS(1488), - [anon_sym_switch] = ACTIONS(1488), - [anon_sym_AMP_AMP] = ACTIONS(1490), - [anon_sym_if] = ACTIONS(1488), - [anon_sym_for] = ACTIONS(1488), - [anon_sym_foreach] = ACTIONS(1488), - [anon_sym_foreach_r] = ACTIONS(1488), - [anon_sym_while] = ACTIONS(1488), - [anon_sym_do] = ACTIONS(1488), - [anon_sym_int] = ACTIONS(1488), - [anon_sym_PLUS] = ACTIONS(1488), - [anon_sym_DASH] = ACTIONS(1488), - [anon_sym_STAR] = ACTIONS(1490), - [anon_sym_asm] = ACTIONS(1488), - [anon_sym_DOLLARassert] = ACTIONS(1488), - [anon_sym_DOLLARerror] = ACTIONS(1488), - [anon_sym_DOLLARecho] = ACTIONS(1488), - [anon_sym_DOLLARif] = ACTIONS(1488), - [anon_sym_DOLLARendif] = ACTIONS(1488), - [anon_sym_DOLLARswitch] = ACTIONS(1488), - [anon_sym_DOLLARfor] = ACTIONS(1488), - [anon_sym_DOLLARforeach] = ACTIONS(1488), - [anon_sym_DOLLARalignof] = ACTIONS(1488), - [anon_sym_DOLLARextnameof] = ACTIONS(1488), - [anon_sym_DOLLARnameof] = ACTIONS(1488), - [anon_sym_DOLLARoffsetof] = ACTIONS(1488), - [anon_sym_DOLLARqnameof] = ACTIONS(1488), - [anon_sym_DOLLARvaconst] = ACTIONS(1488), - [anon_sym_DOLLARvaarg] = ACTIONS(1488), - [anon_sym_DOLLARvaref] = ACTIONS(1488), - [anon_sym_DOLLARvaexpr] = ACTIONS(1488), - [anon_sym_true] = ACTIONS(1488), - [anon_sym_false] = ACTIONS(1488), - [anon_sym_null] = ACTIONS(1488), - [anon_sym_DOLLARvacount] = ACTIONS(1488), - [anon_sym_DOLLARappend] = ACTIONS(1488), - [anon_sym_DOLLARconcat] = ACTIONS(1488), - [anon_sym_DOLLAReval] = ACTIONS(1488), - [anon_sym_DOLLARis_const] = ACTIONS(1488), - [anon_sym_DOLLARsizeof] = ACTIONS(1488), - [anon_sym_DOLLARstringify] = ACTIONS(1488), - [anon_sym_DOLLARand] = ACTIONS(1488), - [anon_sym_DOLLARdefined] = ACTIONS(1488), - [anon_sym_DOLLARembed] = ACTIONS(1488), - [anon_sym_DOLLARor] = ACTIONS(1488), - [anon_sym_DOLLARfeature] = ACTIONS(1488), - [anon_sym_DOLLARassignable] = ACTIONS(1488), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1490), - [anon_sym_DASH_DASH] = ACTIONS(1490), - [anon_sym_typeid] = ACTIONS(1488), - [anon_sym_LBRACE_PIPE] = ACTIONS(1490), - [anon_sym_void] = ACTIONS(1488), - [anon_sym_bool] = ACTIONS(1488), - [anon_sym_char] = ACTIONS(1488), - [anon_sym_ichar] = ACTIONS(1488), - [anon_sym_short] = ACTIONS(1488), - [anon_sym_ushort] = ACTIONS(1488), - [anon_sym_uint] = ACTIONS(1488), - [anon_sym_long] = ACTIONS(1488), - [anon_sym_ulong] = ACTIONS(1488), - [anon_sym_int128] = ACTIONS(1488), - [anon_sym_uint128] = ACTIONS(1488), - [anon_sym_float] = ACTIONS(1488), - [anon_sym_double] = ACTIONS(1488), - [anon_sym_float16] = ACTIONS(1488), - [anon_sym_bfloat16] = ACTIONS(1488), - [anon_sym_float128] = ACTIONS(1488), - [anon_sym_iptr] = ACTIONS(1488), - [anon_sym_uptr] = ACTIONS(1488), - [anon_sym_isz] = ACTIONS(1488), - [anon_sym_usz] = ACTIONS(1488), - [anon_sym_anyfault] = ACTIONS(1488), - [anon_sym_any] = ACTIONS(1488), - [anon_sym_DOLLARtypeof] = ACTIONS(1488), - [anon_sym_DOLLARtypefrom] = ACTIONS(1488), - [anon_sym_DOLLARvatype] = ACTIONS(1488), - [anon_sym_DOLLARevaltype] = ACTIONS(1488), - [sym_real_literal] = ACTIONS(1490), + [sym_ident] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(1405), + [anon_sym_SQUOTE] = ACTIONS(1405), + [anon_sym_DQUOTE] = ACTIONS(1405), + [anon_sym_BQUOTE] = ACTIONS(1405), + [sym_bytes_literal] = ACTIONS(1405), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1403), + [sym_at_ident] = ACTIONS(1405), + [sym_hash_ident] = ACTIONS(1405), + [sym_type_ident] = ACTIONS(1405), + [sym_ct_type_ident] = ACTIONS(1405), + [sym_const_ident] = ACTIONS(1403), + [sym_builtin] = ACTIONS(1405), + [anon_sym_LPAREN] = ACTIONS(1405), + [anon_sym_AMP] = ACTIONS(1403), + [anon_sym_static] = ACTIONS(1403), + [anon_sym_tlocal] = ACTIONS(1403), + [anon_sym_SEMI] = ACTIONS(1405), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_const] = ACTIONS(1403), + [anon_sym_var] = ACTIONS(1403), + [anon_sym_return] = ACTIONS(1403), + [anon_sym_continue] = ACTIONS(1403), + [anon_sym_break] = ACTIONS(1403), + [anon_sym_defer] = ACTIONS(1403), + [anon_sym_assert] = ACTIONS(1403), + [anon_sym_nextcase] = ACTIONS(1403), + [anon_sym_switch] = ACTIONS(1403), + [anon_sym_AMP_AMP] = ACTIONS(1405), + [anon_sym_if] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1403), + [anon_sym_foreach] = ACTIONS(1403), + [anon_sym_foreach_r] = ACTIONS(1403), + [anon_sym_while] = ACTIONS(1403), + [anon_sym_do] = ACTIONS(1403), + [anon_sym_int] = ACTIONS(1403), + [anon_sym_PLUS] = ACTIONS(1403), + [anon_sym_DASH] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(1405), + [anon_sym_asm] = ACTIONS(1403), + [anon_sym_DOLLARassert] = ACTIONS(1403), + [anon_sym_DOLLARerror] = ACTIONS(1403), + [anon_sym_DOLLARecho] = ACTIONS(1403), + [anon_sym_DOLLARif] = ACTIONS(1403), + [anon_sym_DOLLARswitch] = ACTIONS(1403), + [anon_sym_DOLLARfor] = ACTIONS(1403), + [anon_sym_DOLLARforeach] = ACTIONS(1403), + [anon_sym_DOLLARendforeach] = ACTIONS(1403), + [anon_sym_DOLLARalignof] = ACTIONS(1403), + [anon_sym_DOLLARextnameof] = ACTIONS(1403), + [anon_sym_DOLLARnameof] = ACTIONS(1403), + [anon_sym_DOLLARoffsetof] = ACTIONS(1403), + [anon_sym_DOLLARqnameof] = ACTIONS(1403), + [anon_sym_DOLLARvaconst] = ACTIONS(1403), + [anon_sym_DOLLARvaarg] = ACTIONS(1403), + [anon_sym_DOLLARvaref] = ACTIONS(1403), + [anon_sym_DOLLARvaexpr] = ACTIONS(1403), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), + [anon_sym_null] = ACTIONS(1403), + [anon_sym_DOLLARvacount] = ACTIONS(1403), + [anon_sym_DOLLARappend] = ACTIONS(1403), + [anon_sym_DOLLARconcat] = ACTIONS(1403), + [anon_sym_DOLLAReval] = ACTIONS(1403), + [anon_sym_DOLLARis_const] = ACTIONS(1403), + [anon_sym_DOLLARsizeof] = ACTIONS(1403), + [anon_sym_DOLLARstringify] = ACTIONS(1403), + [anon_sym_DOLLARand] = ACTIONS(1403), + [anon_sym_DOLLARdefined] = ACTIONS(1403), + [anon_sym_DOLLARembed] = ACTIONS(1403), + [anon_sym_DOLLARor] = ACTIONS(1403), + [anon_sym_DOLLARfeature] = ACTIONS(1403), + [anon_sym_DOLLARassignable] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1405), + [anon_sym_PLUS_PLUS] = ACTIONS(1405), + [anon_sym_DASH_DASH] = ACTIONS(1405), + [anon_sym_typeid] = ACTIONS(1403), + [anon_sym_LBRACE_PIPE] = ACTIONS(1405), + [anon_sym_void] = ACTIONS(1403), + [anon_sym_bool] = ACTIONS(1403), + [anon_sym_char] = ACTIONS(1403), + [anon_sym_ichar] = ACTIONS(1403), + [anon_sym_short] = ACTIONS(1403), + [anon_sym_ushort] = ACTIONS(1403), + [anon_sym_uint] = ACTIONS(1403), + [anon_sym_long] = ACTIONS(1403), + [anon_sym_ulong] = ACTIONS(1403), + [anon_sym_int128] = ACTIONS(1403), + [anon_sym_uint128] = ACTIONS(1403), + [anon_sym_float] = ACTIONS(1403), + [anon_sym_double] = ACTIONS(1403), + [anon_sym_float16] = ACTIONS(1403), + [anon_sym_bfloat16] = ACTIONS(1403), + [anon_sym_float128] = ACTIONS(1403), + [anon_sym_iptr] = ACTIONS(1403), + [anon_sym_uptr] = ACTIONS(1403), + [anon_sym_isz] = ACTIONS(1403), + [anon_sym_usz] = ACTIONS(1403), + [anon_sym_anyfault] = ACTIONS(1403), + [anon_sym_any] = ACTIONS(1403), + [anon_sym_DOLLARtypeof] = ACTIONS(1403), + [anon_sym_DOLLARtypefrom] = ACTIONS(1403), + [anon_sym_DOLLARvatype] = ACTIONS(1403), + [anon_sym_DOLLARevaltype] = ACTIONS(1403), + [sym_real_literal] = ACTIONS(1405), }, [697] = { [sym_line_comment] = STATE(697), [sym_doc_comment] = STATE(697), [sym_block_comment] = STATE(697), - [sym_ident] = ACTIONS(1508), - [sym_integer_literal] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1510), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_BQUOTE] = ACTIONS(1510), - [sym_bytes_literal] = ACTIONS(1510), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1508), - [sym_at_ident] = ACTIONS(1510), - [sym_hash_ident] = ACTIONS(1510), - [sym_type_ident] = ACTIONS(1510), - [sym_ct_type_ident] = ACTIONS(1510), - [sym_const_ident] = ACTIONS(1508), - [sym_builtin] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(1508), - [anon_sym_static] = ACTIONS(1508), - [anon_sym_tlocal] = ACTIONS(1508), - [anon_sym_SEMI] = ACTIONS(1510), - [anon_sym_fn] = ACTIONS(1508), - [anon_sym_LBRACE] = ACTIONS(1508), - [anon_sym_const] = ACTIONS(1508), - [anon_sym_var] = ACTIONS(1508), - [anon_sym_return] = ACTIONS(1508), - [anon_sym_continue] = ACTIONS(1508), - [anon_sym_break] = ACTIONS(1508), - [anon_sym_defer] = ACTIONS(1508), - [anon_sym_assert] = ACTIONS(1508), - [anon_sym_nextcase] = ACTIONS(1508), - [anon_sym_switch] = ACTIONS(1508), - [anon_sym_AMP_AMP] = ACTIONS(1510), - [anon_sym_if] = ACTIONS(1508), - [anon_sym_for] = ACTIONS(1508), - [anon_sym_foreach] = ACTIONS(1508), - [anon_sym_foreach_r] = ACTIONS(1508), - [anon_sym_while] = ACTIONS(1508), - [anon_sym_do] = ACTIONS(1508), - [anon_sym_int] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(1508), - [anon_sym_STAR] = ACTIONS(1510), - [anon_sym_asm] = ACTIONS(1508), - [anon_sym_DOLLARassert] = ACTIONS(1508), - [anon_sym_DOLLARerror] = ACTIONS(1508), - [anon_sym_DOLLARecho] = ACTIONS(1508), - [anon_sym_DOLLARif] = ACTIONS(1508), - [anon_sym_DOLLARendif] = ACTIONS(1508), - [anon_sym_DOLLARswitch] = ACTIONS(1508), - [anon_sym_DOLLARfor] = ACTIONS(1508), - [anon_sym_DOLLARforeach] = ACTIONS(1508), - [anon_sym_DOLLARalignof] = ACTIONS(1508), - [anon_sym_DOLLARextnameof] = ACTIONS(1508), - [anon_sym_DOLLARnameof] = ACTIONS(1508), - [anon_sym_DOLLARoffsetof] = ACTIONS(1508), - [anon_sym_DOLLARqnameof] = ACTIONS(1508), - [anon_sym_DOLLARvaconst] = ACTIONS(1508), - [anon_sym_DOLLARvaarg] = ACTIONS(1508), - [anon_sym_DOLLARvaref] = ACTIONS(1508), - [anon_sym_DOLLARvaexpr] = ACTIONS(1508), - [anon_sym_true] = ACTIONS(1508), - [anon_sym_false] = ACTIONS(1508), - [anon_sym_null] = ACTIONS(1508), - [anon_sym_DOLLARvacount] = ACTIONS(1508), - [anon_sym_DOLLARappend] = ACTIONS(1508), - [anon_sym_DOLLARconcat] = ACTIONS(1508), - [anon_sym_DOLLAReval] = ACTIONS(1508), - [anon_sym_DOLLARis_const] = ACTIONS(1508), - [anon_sym_DOLLARsizeof] = ACTIONS(1508), - [anon_sym_DOLLARstringify] = ACTIONS(1508), - [anon_sym_DOLLARand] = ACTIONS(1508), - [anon_sym_DOLLARdefined] = ACTIONS(1508), - [anon_sym_DOLLARembed] = ACTIONS(1508), - [anon_sym_DOLLARor] = ACTIONS(1508), - [anon_sym_DOLLARfeature] = ACTIONS(1508), - [anon_sym_DOLLARassignable] = ACTIONS(1508), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_PLUS_PLUS] = ACTIONS(1510), - [anon_sym_DASH_DASH] = ACTIONS(1510), - [anon_sym_typeid] = ACTIONS(1508), - [anon_sym_LBRACE_PIPE] = ACTIONS(1510), - [anon_sym_void] = ACTIONS(1508), - [anon_sym_bool] = ACTIONS(1508), - [anon_sym_char] = ACTIONS(1508), - [anon_sym_ichar] = ACTIONS(1508), - [anon_sym_short] = ACTIONS(1508), - [anon_sym_ushort] = ACTIONS(1508), - [anon_sym_uint] = ACTIONS(1508), - [anon_sym_long] = ACTIONS(1508), - [anon_sym_ulong] = ACTIONS(1508), - [anon_sym_int128] = ACTIONS(1508), - [anon_sym_uint128] = ACTIONS(1508), - [anon_sym_float] = ACTIONS(1508), - [anon_sym_double] = ACTIONS(1508), - [anon_sym_float16] = ACTIONS(1508), - [anon_sym_bfloat16] = ACTIONS(1508), - [anon_sym_float128] = ACTIONS(1508), - [anon_sym_iptr] = ACTIONS(1508), - [anon_sym_uptr] = ACTIONS(1508), - [anon_sym_isz] = ACTIONS(1508), - [anon_sym_usz] = ACTIONS(1508), - [anon_sym_anyfault] = ACTIONS(1508), - [anon_sym_any] = ACTIONS(1508), - [anon_sym_DOLLARtypeof] = ACTIONS(1508), - [anon_sym_DOLLARtypefrom] = ACTIONS(1508), - [anon_sym_DOLLARvatype] = ACTIONS(1508), - [anon_sym_DOLLARevaltype] = ACTIONS(1508), - [sym_real_literal] = ACTIONS(1510), + [sym_ident] = ACTIONS(1407), + [sym_integer_literal] = ACTIONS(1409), + [anon_sym_SQUOTE] = ACTIONS(1409), + [anon_sym_DQUOTE] = ACTIONS(1409), + [anon_sym_BQUOTE] = ACTIONS(1409), + [sym_bytes_literal] = ACTIONS(1409), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1407), + [sym_at_ident] = ACTIONS(1409), + [sym_hash_ident] = ACTIONS(1409), + [sym_type_ident] = ACTIONS(1409), + [sym_ct_type_ident] = ACTIONS(1409), + [sym_const_ident] = ACTIONS(1407), + [sym_builtin] = ACTIONS(1409), + [anon_sym_LPAREN] = ACTIONS(1409), + [anon_sym_AMP] = ACTIONS(1407), + [anon_sym_static] = ACTIONS(1407), + [anon_sym_tlocal] = ACTIONS(1407), + [anon_sym_SEMI] = ACTIONS(1409), + [anon_sym_fn] = ACTIONS(1407), + [anon_sym_LBRACE] = ACTIONS(1407), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_var] = ACTIONS(1407), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_continue] = ACTIONS(1407), + [anon_sym_break] = ACTIONS(1407), + [anon_sym_defer] = ACTIONS(1407), + [anon_sym_assert] = ACTIONS(1407), + [anon_sym_nextcase] = ACTIONS(1407), + [anon_sym_switch] = ACTIONS(1407), + [anon_sym_AMP_AMP] = ACTIONS(1409), + [anon_sym_if] = ACTIONS(1407), + [anon_sym_for] = ACTIONS(1407), + [anon_sym_foreach] = ACTIONS(1407), + [anon_sym_foreach_r] = ACTIONS(1407), + [anon_sym_while] = ACTIONS(1407), + [anon_sym_do] = ACTIONS(1407), + [anon_sym_int] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1407), + [anon_sym_DASH] = ACTIONS(1407), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_asm] = ACTIONS(1407), + [anon_sym_DOLLARassert] = ACTIONS(1407), + [anon_sym_DOLLARerror] = ACTIONS(1407), + [anon_sym_DOLLARecho] = ACTIONS(1407), + [anon_sym_DOLLARif] = ACTIONS(1407), + [anon_sym_DOLLARswitch] = ACTIONS(1407), + [anon_sym_DOLLARfor] = ACTIONS(1407), + [anon_sym_DOLLARforeach] = ACTIONS(1407), + [anon_sym_DOLLARendforeach] = ACTIONS(1407), + [anon_sym_DOLLARalignof] = ACTIONS(1407), + [anon_sym_DOLLARextnameof] = ACTIONS(1407), + [anon_sym_DOLLARnameof] = ACTIONS(1407), + [anon_sym_DOLLARoffsetof] = ACTIONS(1407), + [anon_sym_DOLLARqnameof] = ACTIONS(1407), + [anon_sym_DOLLARvaconst] = ACTIONS(1407), + [anon_sym_DOLLARvaarg] = ACTIONS(1407), + [anon_sym_DOLLARvaref] = ACTIONS(1407), + [anon_sym_DOLLARvaexpr] = ACTIONS(1407), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_null] = ACTIONS(1407), + [anon_sym_DOLLARvacount] = ACTIONS(1407), + [anon_sym_DOLLARappend] = ACTIONS(1407), + [anon_sym_DOLLARconcat] = ACTIONS(1407), + [anon_sym_DOLLAReval] = ACTIONS(1407), + [anon_sym_DOLLARis_const] = ACTIONS(1407), + [anon_sym_DOLLARsizeof] = ACTIONS(1407), + [anon_sym_DOLLARstringify] = ACTIONS(1407), + [anon_sym_DOLLARand] = ACTIONS(1407), + [anon_sym_DOLLARdefined] = ACTIONS(1407), + [anon_sym_DOLLARembed] = ACTIONS(1407), + [anon_sym_DOLLARor] = ACTIONS(1407), + [anon_sym_DOLLARfeature] = ACTIONS(1407), + [anon_sym_DOLLARassignable] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1409), + [anon_sym_TILDE] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1409), + [anon_sym_DASH_DASH] = ACTIONS(1409), + [anon_sym_typeid] = ACTIONS(1407), + [anon_sym_LBRACE_PIPE] = ACTIONS(1409), + [anon_sym_void] = ACTIONS(1407), + [anon_sym_bool] = ACTIONS(1407), + [anon_sym_char] = ACTIONS(1407), + [anon_sym_ichar] = ACTIONS(1407), + [anon_sym_short] = ACTIONS(1407), + [anon_sym_ushort] = ACTIONS(1407), + [anon_sym_uint] = ACTIONS(1407), + [anon_sym_long] = ACTIONS(1407), + [anon_sym_ulong] = ACTIONS(1407), + [anon_sym_int128] = ACTIONS(1407), + [anon_sym_uint128] = ACTIONS(1407), + [anon_sym_float] = ACTIONS(1407), + [anon_sym_double] = ACTIONS(1407), + [anon_sym_float16] = ACTIONS(1407), + [anon_sym_bfloat16] = ACTIONS(1407), + [anon_sym_float128] = ACTIONS(1407), + [anon_sym_iptr] = ACTIONS(1407), + [anon_sym_uptr] = ACTIONS(1407), + [anon_sym_isz] = ACTIONS(1407), + [anon_sym_usz] = ACTIONS(1407), + [anon_sym_anyfault] = ACTIONS(1407), + [anon_sym_any] = ACTIONS(1407), + [anon_sym_DOLLARtypeof] = ACTIONS(1407), + [anon_sym_DOLLARtypefrom] = ACTIONS(1407), + [anon_sym_DOLLARvatype] = ACTIONS(1407), + [anon_sym_DOLLARevaltype] = ACTIONS(1407), + [sym_real_literal] = ACTIONS(1409), }, [698] = { [sym_line_comment] = STATE(698), [sym_doc_comment] = STATE(698), [sym_block_comment] = STATE(698), - [sym_ident] = ACTIONS(1484), - [sym_integer_literal] = ACTIONS(1486), - [anon_sym_SQUOTE] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(1486), - [anon_sym_BQUOTE] = ACTIONS(1486), - [sym_bytes_literal] = ACTIONS(1486), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1484), - [sym_at_ident] = ACTIONS(1486), - [sym_hash_ident] = ACTIONS(1486), - [sym_type_ident] = ACTIONS(1486), - [sym_ct_type_ident] = ACTIONS(1486), - [sym_const_ident] = ACTIONS(1484), - [sym_builtin] = ACTIONS(1486), - [anon_sym_LPAREN] = ACTIONS(1486), - [anon_sym_AMP] = ACTIONS(1484), - [anon_sym_static] = ACTIONS(1484), - [anon_sym_tlocal] = ACTIONS(1484), - [anon_sym_SEMI] = ACTIONS(1486), - [anon_sym_fn] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1484), - [anon_sym_const] = ACTIONS(1484), - [anon_sym_var] = ACTIONS(1484), - [anon_sym_return] = ACTIONS(1484), - [anon_sym_continue] = ACTIONS(1484), - [anon_sym_break] = ACTIONS(1484), - [anon_sym_defer] = ACTIONS(1484), - [anon_sym_assert] = ACTIONS(1484), - [anon_sym_nextcase] = ACTIONS(1484), - [anon_sym_switch] = ACTIONS(1484), - [anon_sym_AMP_AMP] = ACTIONS(1486), - [anon_sym_if] = ACTIONS(1484), - [anon_sym_for] = ACTIONS(1484), - [anon_sym_foreach] = ACTIONS(1484), - [anon_sym_foreach_r] = ACTIONS(1484), - [anon_sym_while] = ACTIONS(1484), - [anon_sym_do] = ACTIONS(1484), - [anon_sym_int] = ACTIONS(1484), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_DASH] = ACTIONS(1484), - [anon_sym_STAR] = ACTIONS(1486), - [anon_sym_asm] = ACTIONS(1484), - [anon_sym_DOLLARassert] = ACTIONS(1484), - [anon_sym_DOLLARerror] = ACTIONS(1484), - [anon_sym_DOLLARecho] = ACTIONS(1484), - [anon_sym_DOLLARif] = ACTIONS(1484), - [anon_sym_DOLLARswitch] = ACTIONS(1484), - [anon_sym_DOLLARfor] = ACTIONS(1484), - [anon_sym_DOLLARforeach] = ACTIONS(1484), - [anon_sym_DOLLARendforeach] = ACTIONS(1484), - [anon_sym_DOLLARalignof] = ACTIONS(1484), - [anon_sym_DOLLARextnameof] = ACTIONS(1484), - [anon_sym_DOLLARnameof] = ACTIONS(1484), - [anon_sym_DOLLARoffsetof] = ACTIONS(1484), - [anon_sym_DOLLARqnameof] = ACTIONS(1484), - [anon_sym_DOLLARvaconst] = ACTIONS(1484), - [anon_sym_DOLLARvaarg] = ACTIONS(1484), - [anon_sym_DOLLARvaref] = ACTIONS(1484), - [anon_sym_DOLLARvaexpr] = ACTIONS(1484), - [anon_sym_true] = ACTIONS(1484), - [anon_sym_false] = ACTIONS(1484), - [anon_sym_null] = ACTIONS(1484), - [anon_sym_DOLLARvacount] = ACTIONS(1484), - [anon_sym_DOLLARappend] = ACTIONS(1484), - [anon_sym_DOLLARconcat] = ACTIONS(1484), - [anon_sym_DOLLAReval] = ACTIONS(1484), - [anon_sym_DOLLARis_const] = ACTIONS(1484), - [anon_sym_DOLLARsizeof] = ACTIONS(1484), - [anon_sym_DOLLARstringify] = ACTIONS(1484), - [anon_sym_DOLLARand] = ACTIONS(1484), - [anon_sym_DOLLARdefined] = ACTIONS(1484), - [anon_sym_DOLLARembed] = ACTIONS(1484), - [anon_sym_DOLLARor] = ACTIONS(1484), - [anon_sym_DOLLARfeature] = ACTIONS(1484), - [anon_sym_DOLLARassignable] = ACTIONS(1484), - [anon_sym_BANG] = ACTIONS(1486), - [anon_sym_TILDE] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_typeid] = ACTIONS(1484), - [anon_sym_LBRACE_PIPE] = ACTIONS(1486), - [anon_sym_void] = ACTIONS(1484), - [anon_sym_bool] = ACTIONS(1484), - [anon_sym_char] = ACTIONS(1484), - [anon_sym_ichar] = ACTIONS(1484), - [anon_sym_short] = ACTIONS(1484), - [anon_sym_ushort] = ACTIONS(1484), - [anon_sym_uint] = ACTIONS(1484), - [anon_sym_long] = ACTIONS(1484), - [anon_sym_ulong] = ACTIONS(1484), - [anon_sym_int128] = ACTIONS(1484), - [anon_sym_uint128] = ACTIONS(1484), - [anon_sym_float] = ACTIONS(1484), - [anon_sym_double] = ACTIONS(1484), - [anon_sym_float16] = ACTIONS(1484), - [anon_sym_bfloat16] = ACTIONS(1484), - [anon_sym_float128] = ACTIONS(1484), - [anon_sym_iptr] = ACTIONS(1484), - [anon_sym_uptr] = ACTIONS(1484), - [anon_sym_isz] = ACTIONS(1484), - [anon_sym_usz] = ACTIONS(1484), - [anon_sym_anyfault] = ACTIONS(1484), - [anon_sym_any] = ACTIONS(1484), - [anon_sym_DOLLARtypeof] = ACTIONS(1484), - [anon_sym_DOLLARtypefrom] = ACTIONS(1484), - [anon_sym_DOLLARvatype] = ACTIONS(1484), - [anon_sym_DOLLARevaltype] = ACTIONS(1484), - [sym_real_literal] = ACTIONS(1486), + [sym_ident] = ACTIONS(1683), + [sym_integer_literal] = ACTIONS(1685), + [anon_sym_SQUOTE] = ACTIONS(1685), + [anon_sym_DQUOTE] = ACTIONS(1685), + [anon_sym_BQUOTE] = ACTIONS(1685), + [sym_bytes_literal] = ACTIONS(1685), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1683), + [sym_at_ident] = ACTIONS(1685), + [sym_hash_ident] = ACTIONS(1685), + [sym_type_ident] = ACTIONS(1685), + [sym_ct_type_ident] = ACTIONS(1685), + [sym_const_ident] = ACTIONS(1683), + [sym_builtin] = ACTIONS(1685), + [anon_sym_LPAREN] = ACTIONS(1685), + [anon_sym_AMP] = ACTIONS(1683), + [anon_sym_static] = ACTIONS(1683), + [anon_sym_tlocal] = ACTIONS(1683), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_fn] = ACTIONS(1683), + [anon_sym_LBRACE] = ACTIONS(1683), + [anon_sym_const] = ACTIONS(1683), + [anon_sym_var] = ACTIONS(1683), + [anon_sym_return] = ACTIONS(1683), + [anon_sym_continue] = ACTIONS(1683), + [anon_sym_break] = ACTIONS(1683), + [anon_sym_defer] = ACTIONS(1683), + [anon_sym_assert] = ACTIONS(1683), + [anon_sym_nextcase] = ACTIONS(1683), + [anon_sym_switch] = ACTIONS(1683), + [anon_sym_AMP_AMP] = ACTIONS(1685), + [anon_sym_if] = ACTIONS(1683), + [anon_sym_for] = ACTIONS(1683), + [anon_sym_foreach] = ACTIONS(1683), + [anon_sym_foreach_r] = ACTIONS(1683), + [anon_sym_while] = ACTIONS(1683), + [anon_sym_do] = ACTIONS(1683), + [anon_sym_int] = ACTIONS(1683), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_STAR] = ACTIONS(1685), + [anon_sym_asm] = ACTIONS(1683), + [anon_sym_DOLLARassert] = ACTIONS(1683), + [anon_sym_DOLLARerror] = ACTIONS(1683), + [anon_sym_DOLLARecho] = ACTIONS(1683), + [anon_sym_DOLLARif] = ACTIONS(1683), + [anon_sym_DOLLARswitch] = ACTIONS(1683), + [anon_sym_DOLLARfor] = ACTIONS(1683), + [anon_sym_DOLLARforeach] = ACTIONS(1683), + [anon_sym_DOLLARendforeach] = ACTIONS(1683), + [anon_sym_DOLLARalignof] = ACTIONS(1683), + [anon_sym_DOLLARextnameof] = ACTIONS(1683), + [anon_sym_DOLLARnameof] = ACTIONS(1683), + [anon_sym_DOLLARoffsetof] = ACTIONS(1683), + [anon_sym_DOLLARqnameof] = ACTIONS(1683), + [anon_sym_DOLLARvaconst] = ACTIONS(1683), + [anon_sym_DOLLARvaarg] = ACTIONS(1683), + [anon_sym_DOLLARvaref] = ACTIONS(1683), + [anon_sym_DOLLARvaexpr] = ACTIONS(1683), + [anon_sym_true] = ACTIONS(1683), + [anon_sym_false] = ACTIONS(1683), + [anon_sym_null] = ACTIONS(1683), + [anon_sym_DOLLARvacount] = ACTIONS(1683), + [anon_sym_DOLLARappend] = ACTIONS(1683), + [anon_sym_DOLLARconcat] = ACTIONS(1683), + [anon_sym_DOLLAReval] = ACTIONS(1683), + [anon_sym_DOLLARis_const] = ACTIONS(1683), + [anon_sym_DOLLARsizeof] = ACTIONS(1683), + [anon_sym_DOLLARstringify] = ACTIONS(1683), + [anon_sym_DOLLARand] = ACTIONS(1683), + [anon_sym_DOLLARdefined] = ACTIONS(1683), + [anon_sym_DOLLARembed] = ACTIONS(1683), + [anon_sym_DOLLARor] = ACTIONS(1683), + [anon_sym_DOLLARfeature] = ACTIONS(1683), + [anon_sym_DOLLARassignable] = ACTIONS(1683), + [anon_sym_BANG] = ACTIONS(1685), + [anon_sym_TILDE] = ACTIONS(1685), + [anon_sym_PLUS_PLUS] = ACTIONS(1685), + [anon_sym_DASH_DASH] = ACTIONS(1685), + [anon_sym_typeid] = ACTIONS(1683), + [anon_sym_LBRACE_PIPE] = ACTIONS(1685), + [anon_sym_void] = ACTIONS(1683), + [anon_sym_bool] = ACTIONS(1683), + [anon_sym_char] = ACTIONS(1683), + [anon_sym_ichar] = ACTIONS(1683), + [anon_sym_short] = ACTIONS(1683), + [anon_sym_ushort] = ACTIONS(1683), + [anon_sym_uint] = ACTIONS(1683), + [anon_sym_long] = ACTIONS(1683), + [anon_sym_ulong] = ACTIONS(1683), + [anon_sym_int128] = ACTIONS(1683), + [anon_sym_uint128] = ACTIONS(1683), + [anon_sym_float] = ACTIONS(1683), + [anon_sym_double] = ACTIONS(1683), + [anon_sym_float16] = ACTIONS(1683), + [anon_sym_bfloat16] = ACTIONS(1683), + [anon_sym_float128] = ACTIONS(1683), + [anon_sym_iptr] = ACTIONS(1683), + [anon_sym_uptr] = ACTIONS(1683), + [anon_sym_isz] = ACTIONS(1683), + [anon_sym_usz] = ACTIONS(1683), + [anon_sym_anyfault] = ACTIONS(1683), + [anon_sym_any] = ACTIONS(1683), + [anon_sym_DOLLARtypeof] = ACTIONS(1683), + [anon_sym_DOLLARtypefrom] = ACTIONS(1683), + [anon_sym_DOLLARvatype] = ACTIONS(1683), + [anon_sym_DOLLARevaltype] = ACTIONS(1683), + [sym_real_literal] = ACTIONS(1685), }, [699] = { [sym_line_comment] = STATE(699), [sym_doc_comment] = STATE(699), [sym_block_comment] = STATE(699), - [sym_ident] = ACTIONS(1432), - [sym_integer_literal] = ACTIONS(1434), - [anon_sym_SQUOTE] = ACTIONS(1434), - [anon_sym_DQUOTE] = ACTIONS(1434), - [anon_sym_BQUOTE] = ACTIONS(1434), - [sym_bytes_literal] = ACTIONS(1434), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1432), - [sym_at_ident] = ACTIONS(1434), - [sym_hash_ident] = ACTIONS(1434), - [sym_type_ident] = ACTIONS(1434), - [sym_ct_type_ident] = ACTIONS(1434), - [sym_const_ident] = ACTIONS(1432), - [sym_builtin] = ACTIONS(1434), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_AMP] = ACTIONS(1432), - [anon_sym_static] = ACTIONS(1432), - [anon_sym_tlocal] = ACTIONS(1432), - [anon_sym_SEMI] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1432), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_const] = ACTIONS(1432), - [anon_sym_var] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_continue] = ACTIONS(1432), - [anon_sym_break] = ACTIONS(1432), - [anon_sym_defer] = ACTIONS(1432), - [anon_sym_assert] = ACTIONS(1432), - [anon_sym_nextcase] = ACTIONS(1432), - [anon_sym_switch] = ACTIONS(1432), - [anon_sym_AMP_AMP] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_foreach] = ACTIONS(1432), - [anon_sym_foreach_r] = ACTIONS(1432), - [anon_sym_while] = ACTIONS(1432), - [anon_sym_do] = ACTIONS(1432), - [anon_sym_int] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1432), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_STAR] = ACTIONS(1434), - [anon_sym_asm] = ACTIONS(1432), - [anon_sym_DOLLARassert] = ACTIONS(1432), - [anon_sym_DOLLARerror] = ACTIONS(1432), - [anon_sym_DOLLARecho] = ACTIONS(1432), - [anon_sym_DOLLARif] = ACTIONS(1432), - [anon_sym_DOLLARswitch] = ACTIONS(1432), - [anon_sym_DOLLARfor] = ACTIONS(1432), - [anon_sym_DOLLARforeach] = ACTIONS(1432), - [anon_sym_DOLLARendforeach] = ACTIONS(1432), - [anon_sym_DOLLARalignof] = ACTIONS(1432), - [anon_sym_DOLLARextnameof] = ACTIONS(1432), - [anon_sym_DOLLARnameof] = ACTIONS(1432), - [anon_sym_DOLLARoffsetof] = ACTIONS(1432), - [anon_sym_DOLLARqnameof] = ACTIONS(1432), - [anon_sym_DOLLARvaconst] = ACTIONS(1432), - [anon_sym_DOLLARvaarg] = ACTIONS(1432), - [anon_sym_DOLLARvaref] = ACTIONS(1432), - [anon_sym_DOLLARvaexpr] = ACTIONS(1432), - [anon_sym_true] = ACTIONS(1432), - [anon_sym_false] = ACTIONS(1432), - [anon_sym_null] = ACTIONS(1432), - [anon_sym_DOLLARvacount] = ACTIONS(1432), - [anon_sym_DOLLARappend] = ACTIONS(1432), - [anon_sym_DOLLARconcat] = ACTIONS(1432), - [anon_sym_DOLLAReval] = ACTIONS(1432), - [anon_sym_DOLLARis_const] = ACTIONS(1432), - [anon_sym_DOLLARsizeof] = ACTIONS(1432), - [anon_sym_DOLLARstringify] = ACTIONS(1432), - [anon_sym_DOLLARand] = ACTIONS(1432), - [anon_sym_DOLLARdefined] = ACTIONS(1432), - [anon_sym_DOLLARembed] = ACTIONS(1432), - [anon_sym_DOLLARor] = ACTIONS(1432), - [anon_sym_DOLLARfeature] = ACTIONS(1432), - [anon_sym_DOLLARassignable] = ACTIONS(1432), - [anon_sym_BANG] = ACTIONS(1434), - [anon_sym_TILDE] = ACTIONS(1434), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), - [anon_sym_typeid] = ACTIONS(1432), - [anon_sym_LBRACE_PIPE] = ACTIONS(1434), - [anon_sym_void] = ACTIONS(1432), - [anon_sym_bool] = ACTIONS(1432), - [anon_sym_char] = ACTIONS(1432), - [anon_sym_ichar] = ACTIONS(1432), - [anon_sym_short] = ACTIONS(1432), - [anon_sym_ushort] = ACTIONS(1432), - [anon_sym_uint] = ACTIONS(1432), - [anon_sym_long] = ACTIONS(1432), - [anon_sym_ulong] = ACTIONS(1432), - [anon_sym_int128] = ACTIONS(1432), - [anon_sym_uint128] = ACTIONS(1432), - [anon_sym_float] = ACTIONS(1432), - [anon_sym_double] = ACTIONS(1432), - [anon_sym_float16] = ACTIONS(1432), - [anon_sym_bfloat16] = ACTIONS(1432), - [anon_sym_float128] = ACTIONS(1432), - [anon_sym_iptr] = ACTIONS(1432), - [anon_sym_uptr] = ACTIONS(1432), - [anon_sym_isz] = ACTIONS(1432), - [anon_sym_usz] = ACTIONS(1432), - [anon_sym_anyfault] = ACTIONS(1432), - [anon_sym_any] = ACTIONS(1432), - [anon_sym_DOLLARtypeof] = ACTIONS(1432), - [anon_sym_DOLLARtypefrom] = ACTIONS(1432), - [anon_sym_DOLLARvatype] = ACTIONS(1432), - [anon_sym_DOLLARevaltype] = ACTIONS(1432), - [sym_real_literal] = ACTIONS(1434), + [sym_ident] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1413), + [anon_sym_SQUOTE] = ACTIONS(1413), + [anon_sym_DQUOTE] = ACTIONS(1413), + [anon_sym_BQUOTE] = ACTIONS(1413), + [sym_bytes_literal] = ACTIONS(1413), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1411), + [sym_at_ident] = ACTIONS(1413), + [sym_hash_ident] = ACTIONS(1413), + [sym_type_ident] = ACTIONS(1413), + [sym_ct_type_ident] = ACTIONS(1413), + [sym_const_ident] = ACTIONS(1411), + [sym_builtin] = ACTIONS(1413), + [anon_sym_LPAREN] = ACTIONS(1413), + [anon_sym_AMP] = ACTIONS(1411), + [anon_sym_static] = ACTIONS(1411), + [anon_sym_tlocal] = ACTIONS(1411), + [anon_sym_SEMI] = ACTIONS(1413), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_LBRACE] = ACTIONS(1411), + [anon_sym_const] = ACTIONS(1411), + [anon_sym_var] = ACTIONS(1411), + [anon_sym_return] = ACTIONS(1411), + [anon_sym_continue] = ACTIONS(1411), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_defer] = ACTIONS(1411), + [anon_sym_assert] = ACTIONS(1411), + [anon_sym_nextcase] = ACTIONS(1411), + [anon_sym_switch] = ACTIONS(1411), + [anon_sym_AMP_AMP] = ACTIONS(1413), + [anon_sym_if] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1411), + [anon_sym_foreach] = ACTIONS(1411), + [anon_sym_foreach_r] = ACTIONS(1411), + [anon_sym_while] = ACTIONS(1411), + [anon_sym_do] = ACTIONS(1411), + [anon_sym_int] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_STAR] = ACTIONS(1413), + [anon_sym_asm] = ACTIONS(1411), + [anon_sym_DOLLARassert] = ACTIONS(1411), + [anon_sym_DOLLARerror] = ACTIONS(1411), + [anon_sym_DOLLARecho] = ACTIONS(1411), + [anon_sym_DOLLARif] = ACTIONS(1411), + [anon_sym_DOLLARswitch] = ACTIONS(1411), + [anon_sym_DOLLARfor] = ACTIONS(1411), + [anon_sym_DOLLARforeach] = ACTIONS(1411), + [anon_sym_DOLLARendforeach] = ACTIONS(1411), + [anon_sym_DOLLARalignof] = ACTIONS(1411), + [anon_sym_DOLLARextnameof] = ACTIONS(1411), + [anon_sym_DOLLARnameof] = ACTIONS(1411), + [anon_sym_DOLLARoffsetof] = ACTIONS(1411), + [anon_sym_DOLLARqnameof] = ACTIONS(1411), + [anon_sym_DOLLARvaconst] = ACTIONS(1411), + [anon_sym_DOLLARvaarg] = ACTIONS(1411), + [anon_sym_DOLLARvaref] = ACTIONS(1411), + [anon_sym_DOLLARvaexpr] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1411), + [anon_sym_false] = ACTIONS(1411), + [anon_sym_null] = ACTIONS(1411), + [anon_sym_DOLLARvacount] = ACTIONS(1411), + [anon_sym_DOLLARappend] = ACTIONS(1411), + [anon_sym_DOLLARconcat] = ACTIONS(1411), + [anon_sym_DOLLAReval] = ACTIONS(1411), + [anon_sym_DOLLARis_const] = ACTIONS(1411), + [anon_sym_DOLLARsizeof] = ACTIONS(1411), + [anon_sym_DOLLARstringify] = ACTIONS(1411), + [anon_sym_DOLLARand] = ACTIONS(1411), + [anon_sym_DOLLARdefined] = ACTIONS(1411), + [anon_sym_DOLLARembed] = ACTIONS(1411), + [anon_sym_DOLLARor] = ACTIONS(1411), + [anon_sym_DOLLARfeature] = ACTIONS(1411), + [anon_sym_DOLLARassignable] = ACTIONS(1411), + [anon_sym_BANG] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_typeid] = ACTIONS(1411), + [anon_sym_LBRACE_PIPE] = ACTIONS(1413), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_bool] = ACTIONS(1411), + [anon_sym_char] = ACTIONS(1411), + [anon_sym_ichar] = ACTIONS(1411), + [anon_sym_short] = ACTIONS(1411), + [anon_sym_ushort] = ACTIONS(1411), + [anon_sym_uint] = ACTIONS(1411), + [anon_sym_long] = ACTIONS(1411), + [anon_sym_ulong] = ACTIONS(1411), + [anon_sym_int128] = ACTIONS(1411), + [anon_sym_uint128] = ACTIONS(1411), + [anon_sym_float] = ACTIONS(1411), + [anon_sym_double] = ACTIONS(1411), + [anon_sym_float16] = ACTIONS(1411), + [anon_sym_bfloat16] = ACTIONS(1411), + [anon_sym_float128] = ACTIONS(1411), + [anon_sym_iptr] = ACTIONS(1411), + [anon_sym_uptr] = ACTIONS(1411), + [anon_sym_isz] = ACTIONS(1411), + [anon_sym_usz] = ACTIONS(1411), + [anon_sym_anyfault] = ACTIONS(1411), + [anon_sym_any] = ACTIONS(1411), + [anon_sym_DOLLARtypeof] = ACTIONS(1411), + [anon_sym_DOLLARtypefrom] = ACTIONS(1411), + [anon_sym_DOLLARvatype] = ACTIONS(1411), + [anon_sym_DOLLARevaltype] = ACTIONS(1411), + [sym_real_literal] = ACTIONS(1413), }, [700] = { [sym_line_comment] = STATE(700), [sym_doc_comment] = STATE(700), [sym_block_comment] = STATE(700), - [sym_ident] = ACTIONS(1422), - [sym_integer_literal] = ACTIONS(1424), - [anon_sym_SQUOTE] = ACTIONS(1424), - [anon_sym_DQUOTE] = ACTIONS(1424), - [anon_sym_BQUOTE] = ACTIONS(1424), - [sym_bytes_literal] = ACTIONS(1424), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1422), - [sym_at_ident] = ACTIONS(1424), - [sym_hash_ident] = ACTIONS(1424), - [sym_type_ident] = ACTIONS(1424), - [sym_ct_type_ident] = ACTIONS(1424), - [sym_const_ident] = ACTIONS(1422), - [sym_builtin] = ACTIONS(1424), - [anon_sym_LPAREN] = ACTIONS(1424), - [anon_sym_AMP] = ACTIONS(1422), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_tlocal] = ACTIONS(1422), - [anon_sym_SEMI] = ACTIONS(1424), - [anon_sym_fn] = ACTIONS(1422), - [anon_sym_LBRACE] = ACTIONS(1422), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_var] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_continue] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_defer] = ACTIONS(1422), - [anon_sym_assert] = ACTIONS(1422), - [anon_sym_nextcase] = ACTIONS(1422), - [anon_sym_switch] = ACTIONS(1422), - [anon_sym_AMP_AMP] = ACTIONS(1424), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_foreach] = ACTIONS(1422), - [anon_sym_foreach_r] = ACTIONS(1422), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_do] = ACTIONS(1422), - [anon_sym_int] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_STAR] = ACTIONS(1424), - [anon_sym_asm] = ACTIONS(1422), - [anon_sym_DOLLARassert] = ACTIONS(1422), - [anon_sym_DOLLARerror] = ACTIONS(1422), - [anon_sym_DOLLARecho] = ACTIONS(1422), - [anon_sym_DOLLARif] = ACTIONS(1422), - [anon_sym_DOLLARswitch] = ACTIONS(1422), - [anon_sym_DOLLARfor] = ACTIONS(1422), - [anon_sym_DOLLARforeach] = ACTIONS(1422), - [anon_sym_DOLLARendforeach] = ACTIONS(1422), - [anon_sym_DOLLARalignof] = ACTIONS(1422), - [anon_sym_DOLLARextnameof] = ACTIONS(1422), - [anon_sym_DOLLARnameof] = ACTIONS(1422), - [anon_sym_DOLLARoffsetof] = ACTIONS(1422), - [anon_sym_DOLLARqnameof] = ACTIONS(1422), - [anon_sym_DOLLARvaconst] = ACTIONS(1422), - [anon_sym_DOLLARvaarg] = ACTIONS(1422), - [anon_sym_DOLLARvaref] = ACTIONS(1422), - [anon_sym_DOLLARvaexpr] = ACTIONS(1422), - [anon_sym_true] = ACTIONS(1422), - [anon_sym_false] = ACTIONS(1422), - [anon_sym_null] = ACTIONS(1422), - [anon_sym_DOLLARvacount] = ACTIONS(1422), - [anon_sym_DOLLARappend] = ACTIONS(1422), - [anon_sym_DOLLARconcat] = ACTIONS(1422), - [anon_sym_DOLLAReval] = ACTIONS(1422), - [anon_sym_DOLLARis_const] = ACTIONS(1422), - [anon_sym_DOLLARsizeof] = ACTIONS(1422), - [anon_sym_DOLLARstringify] = ACTIONS(1422), - [anon_sym_DOLLARand] = ACTIONS(1422), - [anon_sym_DOLLARdefined] = ACTIONS(1422), - [anon_sym_DOLLARembed] = ACTIONS(1422), - [anon_sym_DOLLARor] = ACTIONS(1422), - [anon_sym_DOLLARfeature] = ACTIONS(1422), - [anon_sym_DOLLARassignable] = ACTIONS(1422), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_TILDE] = ACTIONS(1424), - [anon_sym_PLUS_PLUS] = ACTIONS(1424), - [anon_sym_DASH_DASH] = ACTIONS(1424), - [anon_sym_typeid] = ACTIONS(1422), - [anon_sym_LBRACE_PIPE] = ACTIONS(1424), - [anon_sym_void] = ACTIONS(1422), - [anon_sym_bool] = ACTIONS(1422), - [anon_sym_char] = ACTIONS(1422), - [anon_sym_ichar] = ACTIONS(1422), - [anon_sym_short] = ACTIONS(1422), - [anon_sym_ushort] = ACTIONS(1422), - [anon_sym_uint] = ACTIONS(1422), - [anon_sym_long] = ACTIONS(1422), - [anon_sym_ulong] = ACTIONS(1422), - [anon_sym_int128] = ACTIONS(1422), - [anon_sym_uint128] = ACTIONS(1422), - [anon_sym_float] = ACTIONS(1422), - [anon_sym_double] = ACTIONS(1422), - [anon_sym_float16] = ACTIONS(1422), - [anon_sym_bfloat16] = ACTIONS(1422), - [anon_sym_float128] = ACTIONS(1422), - [anon_sym_iptr] = ACTIONS(1422), - [anon_sym_uptr] = ACTIONS(1422), - [anon_sym_isz] = ACTIONS(1422), - [anon_sym_usz] = ACTIONS(1422), - [anon_sym_anyfault] = ACTIONS(1422), - [anon_sym_any] = ACTIONS(1422), - [anon_sym_DOLLARtypeof] = ACTIONS(1422), - [anon_sym_DOLLARtypefrom] = ACTIONS(1422), - [anon_sym_DOLLARvatype] = ACTIONS(1422), - [anon_sym_DOLLARevaltype] = ACTIONS(1422), - [sym_real_literal] = ACTIONS(1424), + [sym_ident] = ACTIONS(1427), + [sym_integer_literal] = ACTIONS(1429), + [anon_sym_SQUOTE] = ACTIONS(1429), + [anon_sym_DQUOTE] = ACTIONS(1429), + [anon_sym_BQUOTE] = ACTIONS(1429), + [sym_bytes_literal] = ACTIONS(1429), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1427), + [sym_at_ident] = ACTIONS(1429), + [sym_hash_ident] = ACTIONS(1429), + [sym_type_ident] = ACTIONS(1429), + [sym_ct_type_ident] = ACTIONS(1429), + [sym_const_ident] = ACTIONS(1427), + [sym_builtin] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1429), + [anon_sym_AMP] = ACTIONS(1427), + [anon_sym_static] = ACTIONS(1427), + [anon_sym_tlocal] = ACTIONS(1427), + [anon_sym_SEMI] = ACTIONS(1429), + [anon_sym_fn] = ACTIONS(1427), + [anon_sym_LBRACE] = ACTIONS(1427), + [anon_sym_const] = ACTIONS(1427), + [anon_sym_var] = ACTIONS(1427), + [anon_sym_return] = ACTIONS(1427), + [anon_sym_continue] = ACTIONS(1427), + [anon_sym_break] = ACTIONS(1427), + [anon_sym_defer] = ACTIONS(1427), + [anon_sym_assert] = ACTIONS(1427), + [anon_sym_nextcase] = ACTIONS(1427), + [anon_sym_switch] = ACTIONS(1427), + [anon_sym_AMP_AMP] = ACTIONS(1429), + [anon_sym_if] = ACTIONS(1427), + [anon_sym_for] = ACTIONS(1427), + [anon_sym_foreach] = ACTIONS(1427), + [anon_sym_foreach_r] = ACTIONS(1427), + [anon_sym_while] = ACTIONS(1427), + [anon_sym_do] = ACTIONS(1427), + [anon_sym_int] = ACTIONS(1427), + [anon_sym_PLUS] = ACTIONS(1427), + [anon_sym_DASH] = ACTIONS(1427), + [anon_sym_STAR] = ACTIONS(1429), + [anon_sym_asm] = ACTIONS(1427), + [anon_sym_DOLLARassert] = ACTIONS(1427), + [anon_sym_DOLLARerror] = ACTIONS(1427), + [anon_sym_DOLLARecho] = ACTIONS(1427), + [anon_sym_DOLLARif] = ACTIONS(1427), + [anon_sym_DOLLARswitch] = ACTIONS(1427), + [anon_sym_DOLLARfor] = ACTIONS(1427), + [anon_sym_DOLLARforeach] = ACTIONS(1427), + [anon_sym_DOLLARendforeach] = ACTIONS(1427), + [anon_sym_DOLLARalignof] = ACTIONS(1427), + [anon_sym_DOLLARextnameof] = ACTIONS(1427), + [anon_sym_DOLLARnameof] = ACTIONS(1427), + [anon_sym_DOLLARoffsetof] = ACTIONS(1427), + [anon_sym_DOLLARqnameof] = ACTIONS(1427), + [anon_sym_DOLLARvaconst] = ACTIONS(1427), + [anon_sym_DOLLARvaarg] = ACTIONS(1427), + [anon_sym_DOLLARvaref] = ACTIONS(1427), + [anon_sym_DOLLARvaexpr] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1427), + [anon_sym_false] = ACTIONS(1427), + [anon_sym_null] = ACTIONS(1427), + [anon_sym_DOLLARvacount] = ACTIONS(1427), + [anon_sym_DOLLARappend] = ACTIONS(1427), + [anon_sym_DOLLARconcat] = ACTIONS(1427), + [anon_sym_DOLLAReval] = ACTIONS(1427), + [anon_sym_DOLLARis_const] = ACTIONS(1427), + [anon_sym_DOLLARsizeof] = ACTIONS(1427), + [anon_sym_DOLLARstringify] = ACTIONS(1427), + [anon_sym_DOLLARand] = ACTIONS(1427), + [anon_sym_DOLLARdefined] = ACTIONS(1427), + [anon_sym_DOLLARembed] = ACTIONS(1427), + [anon_sym_DOLLARor] = ACTIONS(1427), + [anon_sym_DOLLARfeature] = ACTIONS(1427), + [anon_sym_DOLLARassignable] = ACTIONS(1427), + [anon_sym_BANG] = ACTIONS(1429), + [anon_sym_TILDE] = ACTIONS(1429), + [anon_sym_PLUS_PLUS] = ACTIONS(1429), + [anon_sym_DASH_DASH] = ACTIONS(1429), + [anon_sym_typeid] = ACTIONS(1427), + [anon_sym_LBRACE_PIPE] = ACTIONS(1429), + [anon_sym_void] = ACTIONS(1427), + [anon_sym_bool] = ACTIONS(1427), + [anon_sym_char] = ACTIONS(1427), + [anon_sym_ichar] = ACTIONS(1427), + [anon_sym_short] = ACTIONS(1427), + [anon_sym_ushort] = ACTIONS(1427), + [anon_sym_uint] = ACTIONS(1427), + [anon_sym_long] = ACTIONS(1427), + [anon_sym_ulong] = ACTIONS(1427), + [anon_sym_int128] = ACTIONS(1427), + [anon_sym_uint128] = ACTIONS(1427), + [anon_sym_float] = ACTIONS(1427), + [anon_sym_double] = ACTIONS(1427), + [anon_sym_float16] = ACTIONS(1427), + [anon_sym_bfloat16] = ACTIONS(1427), + [anon_sym_float128] = ACTIONS(1427), + [anon_sym_iptr] = ACTIONS(1427), + [anon_sym_uptr] = ACTIONS(1427), + [anon_sym_isz] = ACTIONS(1427), + [anon_sym_usz] = ACTIONS(1427), + [anon_sym_anyfault] = ACTIONS(1427), + [anon_sym_any] = ACTIONS(1427), + [anon_sym_DOLLARtypeof] = ACTIONS(1427), + [anon_sym_DOLLARtypefrom] = ACTIONS(1427), + [anon_sym_DOLLARvatype] = ACTIONS(1427), + [anon_sym_DOLLARevaltype] = ACTIONS(1427), + [sym_real_literal] = ACTIONS(1429), }, [701] = { [sym_line_comment] = STATE(701), [sym_doc_comment] = STATE(701), [sym_block_comment] = STATE(701), - [sym_ident] = ACTIONS(1540), - [sym_integer_literal] = ACTIONS(1542), - [anon_sym_SQUOTE] = ACTIONS(1542), - [anon_sym_DQUOTE] = ACTIONS(1542), - [anon_sym_BQUOTE] = ACTIONS(1542), - [sym_bytes_literal] = ACTIONS(1542), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1540), - [sym_at_ident] = ACTIONS(1542), - [sym_hash_ident] = ACTIONS(1542), - [sym_type_ident] = ACTIONS(1542), - [sym_ct_type_ident] = ACTIONS(1542), - [sym_const_ident] = ACTIONS(1540), - [sym_builtin] = ACTIONS(1542), - [anon_sym_LPAREN] = ACTIONS(1542), - [anon_sym_AMP] = ACTIONS(1540), - [anon_sym_static] = ACTIONS(1540), - [anon_sym_tlocal] = ACTIONS(1540), - [anon_sym_SEMI] = ACTIONS(1542), - [anon_sym_fn] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(1540), - [anon_sym_const] = ACTIONS(1540), - [anon_sym_var] = ACTIONS(1540), - [anon_sym_return] = ACTIONS(1540), - [anon_sym_continue] = ACTIONS(1540), - [anon_sym_break] = ACTIONS(1540), - [anon_sym_defer] = ACTIONS(1540), - [anon_sym_assert] = ACTIONS(1540), - [anon_sym_nextcase] = ACTIONS(1540), - [anon_sym_switch] = ACTIONS(1540), - [anon_sym_AMP_AMP] = ACTIONS(1542), - [anon_sym_if] = ACTIONS(1540), - [anon_sym_for] = ACTIONS(1540), - [anon_sym_foreach] = ACTIONS(1540), - [anon_sym_foreach_r] = ACTIONS(1540), - [anon_sym_while] = ACTIONS(1540), - [anon_sym_do] = ACTIONS(1540), - [anon_sym_int] = ACTIONS(1540), - [anon_sym_PLUS] = ACTIONS(1540), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_STAR] = ACTIONS(1542), - [anon_sym_asm] = ACTIONS(1540), - [anon_sym_DOLLARassert] = ACTIONS(1540), - [anon_sym_DOLLARerror] = ACTIONS(1540), - [anon_sym_DOLLARecho] = ACTIONS(1540), - [anon_sym_DOLLARif] = ACTIONS(1540), - [anon_sym_DOLLARswitch] = ACTIONS(1540), - [anon_sym_DOLLARfor] = ACTIONS(1540), - [anon_sym_DOLLARforeach] = ACTIONS(1540), - [anon_sym_DOLLARendforeach] = ACTIONS(1540), - [anon_sym_DOLLARalignof] = ACTIONS(1540), - [anon_sym_DOLLARextnameof] = ACTIONS(1540), - [anon_sym_DOLLARnameof] = ACTIONS(1540), - [anon_sym_DOLLARoffsetof] = ACTIONS(1540), - [anon_sym_DOLLARqnameof] = ACTIONS(1540), - [anon_sym_DOLLARvaconst] = ACTIONS(1540), - [anon_sym_DOLLARvaarg] = ACTIONS(1540), - [anon_sym_DOLLARvaref] = ACTIONS(1540), - [anon_sym_DOLLARvaexpr] = ACTIONS(1540), - [anon_sym_true] = ACTIONS(1540), - [anon_sym_false] = ACTIONS(1540), - [anon_sym_null] = ACTIONS(1540), - [anon_sym_DOLLARvacount] = ACTIONS(1540), - [anon_sym_DOLLARappend] = ACTIONS(1540), - [anon_sym_DOLLARconcat] = ACTIONS(1540), - [anon_sym_DOLLAReval] = ACTIONS(1540), - [anon_sym_DOLLARis_const] = ACTIONS(1540), - [anon_sym_DOLLARsizeof] = ACTIONS(1540), - [anon_sym_DOLLARstringify] = ACTIONS(1540), - [anon_sym_DOLLARand] = ACTIONS(1540), - [anon_sym_DOLLARdefined] = ACTIONS(1540), - [anon_sym_DOLLARembed] = ACTIONS(1540), - [anon_sym_DOLLARor] = ACTIONS(1540), - [anon_sym_DOLLARfeature] = ACTIONS(1540), - [anon_sym_DOLLARassignable] = ACTIONS(1540), - [anon_sym_BANG] = ACTIONS(1542), - [anon_sym_TILDE] = ACTIONS(1542), - [anon_sym_PLUS_PLUS] = ACTIONS(1542), - [anon_sym_DASH_DASH] = ACTIONS(1542), - [anon_sym_typeid] = ACTIONS(1540), - [anon_sym_LBRACE_PIPE] = ACTIONS(1542), - [anon_sym_void] = ACTIONS(1540), - [anon_sym_bool] = ACTIONS(1540), - [anon_sym_char] = ACTIONS(1540), - [anon_sym_ichar] = ACTIONS(1540), - [anon_sym_short] = ACTIONS(1540), - [anon_sym_ushort] = ACTIONS(1540), - [anon_sym_uint] = ACTIONS(1540), - [anon_sym_long] = ACTIONS(1540), - [anon_sym_ulong] = ACTIONS(1540), - [anon_sym_int128] = ACTIONS(1540), - [anon_sym_uint128] = ACTIONS(1540), - [anon_sym_float] = ACTIONS(1540), - [anon_sym_double] = ACTIONS(1540), - [anon_sym_float16] = ACTIONS(1540), - [anon_sym_bfloat16] = ACTIONS(1540), - [anon_sym_float128] = ACTIONS(1540), - [anon_sym_iptr] = ACTIONS(1540), - [anon_sym_uptr] = ACTIONS(1540), - [anon_sym_isz] = ACTIONS(1540), - [anon_sym_usz] = ACTIONS(1540), - [anon_sym_anyfault] = ACTIONS(1540), - [anon_sym_any] = ACTIONS(1540), - [anon_sym_DOLLARtypeof] = ACTIONS(1540), - [anon_sym_DOLLARtypefrom] = ACTIONS(1540), - [anon_sym_DOLLARvatype] = ACTIONS(1540), - [anon_sym_DOLLARevaltype] = ACTIONS(1540), - [sym_real_literal] = ACTIONS(1542), + [sym_ident] = ACTIONS(1431), + [sym_integer_literal] = ACTIONS(1433), + [anon_sym_SQUOTE] = ACTIONS(1433), + [anon_sym_DQUOTE] = ACTIONS(1433), + [anon_sym_BQUOTE] = ACTIONS(1433), + [sym_bytes_literal] = ACTIONS(1433), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1431), + [sym_at_ident] = ACTIONS(1433), + [sym_hash_ident] = ACTIONS(1433), + [sym_type_ident] = ACTIONS(1433), + [sym_ct_type_ident] = ACTIONS(1433), + [sym_const_ident] = ACTIONS(1431), + [sym_builtin] = ACTIONS(1433), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_AMP] = ACTIONS(1431), + [anon_sym_static] = ACTIONS(1431), + [anon_sym_tlocal] = ACTIONS(1431), + [anon_sym_SEMI] = ACTIONS(1433), + [anon_sym_fn] = ACTIONS(1431), + [anon_sym_LBRACE] = ACTIONS(1431), + [anon_sym_const] = ACTIONS(1431), + [anon_sym_var] = ACTIONS(1431), + [anon_sym_return] = ACTIONS(1431), + [anon_sym_continue] = ACTIONS(1431), + [anon_sym_break] = ACTIONS(1431), + [anon_sym_defer] = ACTIONS(1431), + [anon_sym_assert] = ACTIONS(1431), + [anon_sym_nextcase] = ACTIONS(1431), + [anon_sym_switch] = ACTIONS(1431), + [anon_sym_AMP_AMP] = ACTIONS(1433), + [anon_sym_if] = ACTIONS(1431), + [anon_sym_for] = ACTIONS(1431), + [anon_sym_foreach] = ACTIONS(1431), + [anon_sym_foreach_r] = ACTIONS(1431), + [anon_sym_while] = ACTIONS(1431), + [anon_sym_do] = ACTIONS(1431), + [anon_sym_int] = ACTIONS(1431), + [anon_sym_PLUS] = ACTIONS(1431), + [anon_sym_DASH] = ACTIONS(1431), + [anon_sym_STAR] = ACTIONS(1433), + [anon_sym_asm] = ACTIONS(1431), + [anon_sym_DOLLARassert] = ACTIONS(1431), + [anon_sym_DOLLARerror] = ACTIONS(1431), + [anon_sym_DOLLARecho] = ACTIONS(1431), + [anon_sym_DOLLARif] = ACTIONS(1431), + [anon_sym_DOLLARswitch] = ACTIONS(1431), + [anon_sym_DOLLARfor] = ACTIONS(1431), + [anon_sym_DOLLARforeach] = ACTIONS(1431), + [anon_sym_DOLLARendforeach] = ACTIONS(1431), + [anon_sym_DOLLARalignof] = ACTIONS(1431), + [anon_sym_DOLLARextnameof] = ACTIONS(1431), + [anon_sym_DOLLARnameof] = ACTIONS(1431), + [anon_sym_DOLLARoffsetof] = ACTIONS(1431), + [anon_sym_DOLLARqnameof] = ACTIONS(1431), + [anon_sym_DOLLARvaconst] = ACTIONS(1431), + [anon_sym_DOLLARvaarg] = ACTIONS(1431), + [anon_sym_DOLLARvaref] = ACTIONS(1431), + [anon_sym_DOLLARvaexpr] = ACTIONS(1431), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_null] = ACTIONS(1431), + [anon_sym_DOLLARvacount] = ACTIONS(1431), + [anon_sym_DOLLARappend] = ACTIONS(1431), + [anon_sym_DOLLARconcat] = ACTIONS(1431), + [anon_sym_DOLLAReval] = ACTIONS(1431), + [anon_sym_DOLLARis_const] = ACTIONS(1431), + [anon_sym_DOLLARsizeof] = ACTIONS(1431), + [anon_sym_DOLLARstringify] = ACTIONS(1431), + [anon_sym_DOLLARand] = ACTIONS(1431), + [anon_sym_DOLLARdefined] = ACTIONS(1431), + [anon_sym_DOLLARembed] = ACTIONS(1431), + [anon_sym_DOLLARor] = ACTIONS(1431), + [anon_sym_DOLLARfeature] = ACTIONS(1431), + [anon_sym_DOLLARassignable] = ACTIONS(1431), + [anon_sym_BANG] = ACTIONS(1433), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_PLUS_PLUS] = ACTIONS(1433), + [anon_sym_DASH_DASH] = ACTIONS(1433), + [anon_sym_typeid] = ACTIONS(1431), + [anon_sym_LBRACE_PIPE] = ACTIONS(1433), + [anon_sym_void] = ACTIONS(1431), + [anon_sym_bool] = ACTIONS(1431), + [anon_sym_char] = ACTIONS(1431), + [anon_sym_ichar] = ACTIONS(1431), + [anon_sym_short] = ACTIONS(1431), + [anon_sym_ushort] = ACTIONS(1431), + [anon_sym_uint] = ACTIONS(1431), + [anon_sym_long] = ACTIONS(1431), + [anon_sym_ulong] = ACTIONS(1431), + [anon_sym_int128] = ACTIONS(1431), + [anon_sym_uint128] = ACTIONS(1431), + [anon_sym_float] = ACTIONS(1431), + [anon_sym_double] = ACTIONS(1431), + [anon_sym_float16] = ACTIONS(1431), + [anon_sym_bfloat16] = ACTIONS(1431), + [anon_sym_float128] = ACTIONS(1431), + [anon_sym_iptr] = ACTIONS(1431), + [anon_sym_uptr] = ACTIONS(1431), + [anon_sym_isz] = ACTIONS(1431), + [anon_sym_usz] = ACTIONS(1431), + [anon_sym_anyfault] = ACTIONS(1431), + [anon_sym_any] = ACTIONS(1431), + [anon_sym_DOLLARtypeof] = ACTIONS(1431), + [anon_sym_DOLLARtypefrom] = ACTIONS(1431), + [anon_sym_DOLLARvatype] = ACTIONS(1431), + [anon_sym_DOLLARevaltype] = ACTIONS(1431), + [sym_real_literal] = ACTIONS(1433), }, [702] = { [sym_line_comment] = STATE(702), [sym_doc_comment] = STATE(702), [sym_block_comment] = STATE(702), - [sym_ident] = ACTIONS(1568), - [sym_integer_literal] = ACTIONS(1570), - [anon_sym_SQUOTE] = ACTIONS(1570), - [anon_sym_DQUOTE] = ACTIONS(1570), - [anon_sym_BQUOTE] = ACTIONS(1570), - [sym_bytes_literal] = ACTIONS(1570), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1568), - [sym_at_ident] = ACTIONS(1570), - [sym_hash_ident] = ACTIONS(1570), - [sym_type_ident] = ACTIONS(1570), - [sym_ct_type_ident] = ACTIONS(1570), - [sym_const_ident] = ACTIONS(1568), - [sym_builtin] = ACTIONS(1570), - [anon_sym_LPAREN] = ACTIONS(1570), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_static] = ACTIONS(1568), - [anon_sym_tlocal] = ACTIONS(1568), - [anon_sym_SEMI] = ACTIONS(1570), - [anon_sym_fn] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(1568), - [anon_sym_const] = ACTIONS(1568), - [anon_sym_var] = ACTIONS(1568), - [anon_sym_return] = ACTIONS(1568), - [anon_sym_continue] = ACTIONS(1568), - [anon_sym_break] = ACTIONS(1568), - [anon_sym_defer] = ACTIONS(1568), - [anon_sym_assert] = ACTIONS(1568), - [anon_sym_nextcase] = ACTIONS(1568), - [anon_sym_switch] = ACTIONS(1568), - [anon_sym_AMP_AMP] = ACTIONS(1570), - [anon_sym_if] = ACTIONS(1568), - [anon_sym_for] = ACTIONS(1568), - [anon_sym_foreach] = ACTIONS(1568), - [anon_sym_foreach_r] = ACTIONS(1568), - [anon_sym_while] = ACTIONS(1568), - [anon_sym_do] = ACTIONS(1568), - [anon_sym_int] = ACTIONS(1568), - [anon_sym_PLUS] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1568), - [anon_sym_STAR] = ACTIONS(1570), - [anon_sym_asm] = ACTIONS(1568), - [anon_sym_DOLLARassert] = ACTIONS(1568), - [anon_sym_DOLLARerror] = ACTIONS(1568), - [anon_sym_DOLLARecho] = ACTIONS(1568), - [anon_sym_DOLLARif] = ACTIONS(1568), - [anon_sym_DOLLARswitch] = ACTIONS(1568), - [anon_sym_DOLLARfor] = ACTIONS(1568), - [anon_sym_DOLLARforeach] = ACTIONS(1568), - [anon_sym_DOLLARendforeach] = ACTIONS(1568), - [anon_sym_DOLLARalignof] = ACTIONS(1568), - [anon_sym_DOLLARextnameof] = ACTIONS(1568), - [anon_sym_DOLLARnameof] = ACTIONS(1568), - [anon_sym_DOLLARoffsetof] = ACTIONS(1568), - [anon_sym_DOLLARqnameof] = ACTIONS(1568), - [anon_sym_DOLLARvaconst] = ACTIONS(1568), - [anon_sym_DOLLARvaarg] = ACTIONS(1568), - [anon_sym_DOLLARvaref] = ACTIONS(1568), - [anon_sym_DOLLARvaexpr] = ACTIONS(1568), - [anon_sym_true] = ACTIONS(1568), - [anon_sym_false] = ACTIONS(1568), - [anon_sym_null] = ACTIONS(1568), - [anon_sym_DOLLARvacount] = ACTIONS(1568), - [anon_sym_DOLLARappend] = ACTIONS(1568), - [anon_sym_DOLLARconcat] = ACTIONS(1568), - [anon_sym_DOLLAReval] = ACTIONS(1568), - [anon_sym_DOLLARis_const] = ACTIONS(1568), - [anon_sym_DOLLARsizeof] = ACTIONS(1568), - [anon_sym_DOLLARstringify] = ACTIONS(1568), - [anon_sym_DOLLARand] = ACTIONS(1568), - [anon_sym_DOLLARdefined] = ACTIONS(1568), - [anon_sym_DOLLARembed] = ACTIONS(1568), - [anon_sym_DOLLARor] = ACTIONS(1568), - [anon_sym_DOLLARfeature] = ACTIONS(1568), - [anon_sym_DOLLARassignable] = ACTIONS(1568), - [anon_sym_BANG] = ACTIONS(1570), - [anon_sym_TILDE] = ACTIONS(1570), - [anon_sym_PLUS_PLUS] = ACTIONS(1570), - [anon_sym_DASH_DASH] = ACTIONS(1570), - [anon_sym_typeid] = ACTIONS(1568), - [anon_sym_LBRACE_PIPE] = ACTIONS(1570), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_bool] = ACTIONS(1568), - [anon_sym_char] = ACTIONS(1568), - [anon_sym_ichar] = ACTIONS(1568), - [anon_sym_short] = ACTIONS(1568), - [anon_sym_ushort] = ACTIONS(1568), - [anon_sym_uint] = ACTIONS(1568), - [anon_sym_long] = ACTIONS(1568), - [anon_sym_ulong] = ACTIONS(1568), - [anon_sym_int128] = ACTIONS(1568), - [anon_sym_uint128] = ACTIONS(1568), - [anon_sym_float] = ACTIONS(1568), - [anon_sym_double] = ACTIONS(1568), - [anon_sym_float16] = ACTIONS(1568), - [anon_sym_bfloat16] = ACTIONS(1568), - [anon_sym_float128] = ACTIONS(1568), - [anon_sym_iptr] = ACTIONS(1568), - [anon_sym_uptr] = ACTIONS(1568), - [anon_sym_isz] = ACTIONS(1568), - [anon_sym_usz] = ACTIONS(1568), - [anon_sym_anyfault] = ACTIONS(1568), - [anon_sym_any] = ACTIONS(1568), - [anon_sym_DOLLARtypeof] = ACTIONS(1568), - [anon_sym_DOLLARtypefrom] = ACTIONS(1568), - [anon_sym_DOLLARvatype] = ACTIONS(1568), - [anon_sym_DOLLARevaltype] = ACTIONS(1568), - [sym_real_literal] = ACTIONS(1570), + [sym_ident] = ACTIONS(1437), + [sym_integer_literal] = ACTIONS(1439), + [anon_sym_SQUOTE] = ACTIONS(1439), + [anon_sym_DQUOTE] = ACTIONS(1439), + [anon_sym_BQUOTE] = ACTIONS(1439), + [sym_bytes_literal] = ACTIONS(1439), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1437), + [sym_at_ident] = ACTIONS(1439), + [sym_hash_ident] = ACTIONS(1439), + [sym_type_ident] = ACTIONS(1439), + [sym_ct_type_ident] = ACTIONS(1439), + [sym_const_ident] = ACTIONS(1437), + [sym_builtin] = ACTIONS(1439), + [anon_sym_LPAREN] = ACTIONS(1439), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_static] = ACTIONS(1437), + [anon_sym_tlocal] = ACTIONS(1437), + [anon_sym_SEMI] = ACTIONS(1439), + [anon_sym_fn] = ACTIONS(1437), + [anon_sym_LBRACE] = ACTIONS(1437), + [anon_sym_const] = ACTIONS(1437), + [anon_sym_var] = ACTIONS(1437), + [anon_sym_return] = ACTIONS(1437), + [anon_sym_continue] = ACTIONS(1437), + [anon_sym_break] = ACTIONS(1437), + [anon_sym_defer] = ACTIONS(1437), + [anon_sym_assert] = ACTIONS(1437), + [anon_sym_nextcase] = ACTIONS(1437), + [anon_sym_switch] = ACTIONS(1437), + [anon_sym_AMP_AMP] = ACTIONS(1439), + [anon_sym_if] = ACTIONS(1437), + [anon_sym_for] = ACTIONS(1437), + [anon_sym_foreach] = ACTIONS(1437), + [anon_sym_foreach_r] = ACTIONS(1437), + [anon_sym_while] = ACTIONS(1437), + [anon_sym_do] = ACTIONS(1437), + [anon_sym_int] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_STAR] = ACTIONS(1439), + [anon_sym_asm] = ACTIONS(1437), + [anon_sym_DOLLARassert] = ACTIONS(1437), + [anon_sym_DOLLARerror] = ACTIONS(1437), + [anon_sym_DOLLARecho] = ACTIONS(1437), + [anon_sym_DOLLARif] = ACTIONS(1437), + [anon_sym_DOLLARswitch] = ACTIONS(1437), + [anon_sym_DOLLARfor] = ACTIONS(1437), + [anon_sym_DOLLARforeach] = ACTIONS(1437), + [anon_sym_DOLLARendforeach] = ACTIONS(1437), + [anon_sym_DOLLARalignof] = ACTIONS(1437), + [anon_sym_DOLLARextnameof] = ACTIONS(1437), + [anon_sym_DOLLARnameof] = ACTIONS(1437), + [anon_sym_DOLLARoffsetof] = ACTIONS(1437), + [anon_sym_DOLLARqnameof] = ACTIONS(1437), + [anon_sym_DOLLARvaconst] = ACTIONS(1437), + [anon_sym_DOLLARvaarg] = ACTIONS(1437), + [anon_sym_DOLLARvaref] = ACTIONS(1437), + [anon_sym_DOLLARvaexpr] = ACTIONS(1437), + [anon_sym_true] = ACTIONS(1437), + [anon_sym_false] = ACTIONS(1437), + [anon_sym_null] = ACTIONS(1437), + [anon_sym_DOLLARvacount] = ACTIONS(1437), + [anon_sym_DOLLARappend] = ACTIONS(1437), + [anon_sym_DOLLARconcat] = ACTIONS(1437), + [anon_sym_DOLLAReval] = ACTIONS(1437), + [anon_sym_DOLLARis_const] = ACTIONS(1437), + [anon_sym_DOLLARsizeof] = ACTIONS(1437), + [anon_sym_DOLLARstringify] = ACTIONS(1437), + [anon_sym_DOLLARand] = ACTIONS(1437), + [anon_sym_DOLLARdefined] = ACTIONS(1437), + [anon_sym_DOLLARembed] = ACTIONS(1437), + [anon_sym_DOLLARor] = ACTIONS(1437), + [anon_sym_DOLLARfeature] = ACTIONS(1437), + [anon_sym_DOLLARassignable] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1439), + [anon_sym_TILDE] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_typeid] = ACTIONS(1437), + [anon_sym_LBRACE_PIPE] = ACTIONS(1439), + [anon_sym_void] = ACTIONS(1437), + [anon_sym_bool] = ACTIONS(1437), + [anon_sym_char] = ACTIONS(1437), + [anon_sym_ichar] = ACTIONS(1437), + [anon_sym_short] = ACTIONS(1437), + [anon_sym_ushort] = ACTIONS(1437), + [anon_sym_uint] = ACTIONS(1437), + [anon_sym_long] = ACTIONS(1437), + [anon_sym_ulong] = ACTIONS(1437), + [anon_sym_int128] = ACTIONS(1437), + [anon_sym_uint128] = ACTIONS(1437), + [anon_sym_float] = ACTIONS(1437), + [anon_sym_double] = ACTIONS(1437), + [anon_sym_float16] = ACTIONS(1437), + [anon_sym_bfloat16] = ACTIONS(1437), + [anon_sym_float128] = ACTIONS(1437), + [anon_sym_iptr] = ACTIONS(1437), + [anon_sym_uptr] = ACTIONS(1437), + [anon_sym_isz] = ACTIONS(1437), + [anon_sym_usz] = ACTIONS(1437), + [anon_sym_anyfault] = ACTIONS(1437), + [anon_sym_any] = ACTIONS(1437), + [anon_sym_DOLLARtypeof] = ACTIONS(1437), + [anon_sym_DOLLARtypefrom] = ACTIONS(1437), + [anon_sym_DOLLARvatype] = ACTIONS(1437), + [anon_sym_DOLLARevaltype] = ACTIONS(1437), + [sym_real_literal] = ACTIONS(1439), }, [703] = { [sym_line_comment] = STATE(703), [sym_doc_comment] = STATE(703), [sym_block_comment] = STATE(703), - [sym_ident] = ACTIONS(1652), - [sym_integer_literal] = ACTIONS(1654), - [anon_sym_SQUOTE] = ACTIONS(1654), - [anon_sym_DQUOTE] = ACTIONS(1654), - [anon_sym_BQUOTE] = ACTIONS(1654), - [sym_bytes_literal] = ACTIONS(1654), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1652), - [sym_at_ident] = ACTIONS(1654), - [sym_hash_ident] = ACTIONS(1654), - [sym_type_ident] = ACTIONS(1654), - [sym_ct_type_ident] = ACTIONS(1654), - [sym_const_ident] = ACTIONS(1652), - [sym_builtin] = ACTIONS(1654), - [anon_sym_LPAREN] = ACTIONS(1654), - [anon_sym_AMP] = ACTIONS(1652), - [anon_sym_static] = ACTIONS(1652), - [anon_sym_tlocal] = ACTIONS(1652), - [anon_sym_SEMI] = ACTIONS(1654), - [anon_sym_fn] = ACTIONS(1652), - [anon_sym_LBRACE] = ACTIONS(1652), - [anon_sym_const] = ACTIONS(1652), - [anon_sym_var] = ACTIONS(1652), - [anon_sym_return] = ACTIONS(1652), - [anon_sym_continue] = ACTIONS(1652), - [anon_sym_break] = ACTIONS(1652), - [anon_sym_defer] = ACTIONS(1652), - [anon_sym_assert] = ACTIONS(1652), - [anon_sym_nextcase] = ACTIONS(1652), - [anon_sym_switch] = ACTIONS(1652), - [anon_sym_AMP_AMP] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1652), - [anon_sym_for] = ACTIONS(1652), - [anon_sym_foreach] = ACTIONS(1652), - [anon_sym_foreach_r] = ACTIONS(1652), - [anon_sym_while] = ACTIONS(1652), - [anon_sym_do] = ACTIONS(1652), - [anon_sym_int] = ACTIONS(1652), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_asm] = ACTIONS(1652), - [anon_sym_DOLLARassert] = ACTIONS(1652), - [anon_sym_DOLLARerror] = ACTIONS(1652), - [anon_sym_DOLLARecho] = ACTIONS(1652), - [anon_sym_DOLLARif] = ACTIONS(1652), - [anon_sym_DOLLARswitch] = ACTIONS(1652), - [anon_sym_DOLLARfor] = ACTIONS(1652), - [anon_sym_DOLLARforeach] = ACTIONS(1652), - [anon_sym_DOLLARendforeach] = ACTIONS(1652), - [anon_sym_DOLLARalignof] = ACTIONS(1652), - [anon_sym_DOLLARextnameof] = ACTIONS(1652), - [anon_sym_DOLLARnameof] = ACTIONS(1652), - [anon_sym_DOLLARoffsetof] = ACTIONS(1652), - [anon_sym_DOLLARqnameof] = ACTIONS(1652), - [anon_sym_DOLLARvaconst] = ACTIONS(1652), - [anon_sym_DOLLARvaarg] = ACTIONS(1652), - [anon_sym_DOLLARvaref] = ACTIONS(1652), - [anon_sym_DOLLARvaexpr] = ACTIONS(1652), - [anon_sym_true] = ACTIONS(1652), - [anon_sym_false] = ACTIONS(1652), - [anon_sym_null] = ACTIONS(1652), - [anon_sym_DOLLARvacount] = ACTIONS(1652), - [anon_sym_DOLLARappend] = ACTIONS(1652), - [anon_sym_DOLLARconcat] = ACTIONS(1652), - [anon_sym_DOLLAReval] = ACTIONS(1652), - [anon_sym_DOLLARis_const] = ACTIONS(1652), - [anon_sym_DOLLARsizeof] = ACTIONS(1652), - [anon_sym_DOLLARstringify] = ACTIONS(1652), - [anon_sym_DOLLARand] = ACTIONS(1652), - [anon_sym_DOLLARdefined] = ACTIONS(1652), - [anon_sym_DOLLARembed] = ACTIONS(1652), - [anon_sym_DOLLARor] = ACTIONS(1652), - [anon_sym_DOLLARfeature] = ACTIONS(1652), - [anon_sym_DOLLARassignable] = ACTIONS(1652), - [anon_sym_BANG] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1654), - [anon_sym_PLUS_PLUS] = ACTIONS(1654), - [anon_sym_DASH_DASH] = ACTIONS(1654), - [anon_sym_typeid] = ACTIONS(1652), - [anon_sym_LBRACE_PIPE] = ACTIONS(1654), - [anon_sym_void] = ACTIONS(1652), - [anon_sym_bool] = ACTIONS(1652), - [anon_sym_char] = ACTIONS(1652), - [anon_sym_ichar] = ACTIONS(1652), - [anon_sym_short] = ACTIONS(1652), - [anon_sym_ushort] = ACTIONS(1652), - [anon_sym_uint] = ACTIONS(1652), - [anon_sym_long] = ACTIONS(1652), - [anon_sym_ulong] = ACTIONS(1652), - [anon_sym_int128] = ACTIONS(1652), - [anon_sym_uint128] = ACTIONS(1652), - [anon_sym_float] = ACTIONS(1652), - [anon_sym_double] = ACTIONS(1652), - [anon_sym_float16] = ACTIONS(1652), - [anon_sym_bfloat16] = ACTIONS(1652), - [anon_sym_float128] = ACTIONS(1652), - [anon_sym_iptr] = ACTIONS(1652), - [anon_sym_uptr] = ACTIONS(1652), - [anon_sym_isz] = ACTIONS(1652), - [anon_sym_usz] = ACTIONS(1652), - [anon_sym_anyfault] = ACTIONS(1652), - [anon_sym_any] = ACTIONS(1652), - [anon_sym_DOLLARtypeof] = ACTIONS(1652), - [anon_sym_DOLLARtypefrom] = ACTIONS(1652), - [anon_sym_DOLLARvatype] = ACTIONS(1652), - [anon_sym_DOLLARevaltype] = ACTIONS(1652), - [sym_real_literal] = ACTIONS(1654), + [sym_ident] = ACTIONS(1473), + [sym_integer_literal] = ACTIONS(1475), + [anon_sym_SQUOTE] = ACTIONS(1475), + [anon_sym_DQUOTE] = ACTIONS(1475), + [anon_sym_BQUOTE] = ACTIONS(1475), + [sym_bytes_literal] = ACTIONS(1475), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1473), + [sym_at_ident] = ACTIONS(1475), + [sym_hash_ident] = ACTIONS(1475), + [sym_type_ident] = ACTIONS(1475), + [sym_ct_type_ident] = ACTIONS(1475), + [sym_const_ident] = ACTIONS(1473), + [sym_builtin] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1475), + [anon_sym_AMP] = ACTIONS(1473), + [anon_sym_static] = ACTIONS(1473), + [anon_sym_tlocal] = ACTIONS(1473), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_fn] = ACTIONS(1473), + [anon_sym_LBRACE] = ACTIONS(1473), + [anon_sym_const] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(1473), + [anon_sym_return] = ACTIONS(1473), + [anon_sym_continue] = ACTIONS(1473), + [anon_sym_break] = ACTIONS(1473), + [anon_sym_defer] = ACTIONS(1473), + [anon_sym_assert] = ACTIONS(1473), + [anon_sym_nextcase] = ACTIONS(1473), + [anon_sym_switch] = ACTIONS(1473), + [anon_sym_AMP_AMP] = ACTIONS(1475), + [anon_sym_if] = ACTIONS(1473), + [anon_sym_for] = ACTIONS(1473), + [anon_sym_foreach] = ACTIONS(1473), + [anon_sym_foreach_r] = ACTIONS(1473), + [anon_sym_while] = ACTIONS(1473), + [anon_sym_do] = ACTIONS(1473), + [anon_sym_int] = ACTIONS(1473), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1475), + [anon_sym_asm] = ACTIONS(1473), + [anon_sym_DOLLARassert] = ACTIONS(1473), + [anon_sym_DOLLARerror] = ACTIONS(1473), + [anon_sym_DOLLARecho] = ACTIONS(1473), + [anon_sym_DOLLARif] = ACTIONS(1473), + [anon_sym_DOLLARswitch] = ACTIONS(1473), + [anon_sym_DOLLARfor] = ACTIONS(1473), + [anon_sym_DOLLARforeach] = ACTIONS(1473), + [anon_sym_DOLLARendforeach] = ACTIONS(1473), + [anon_sym_DOLLARalignof] = ACTIONS(1473), + [anon_sym_DOLLARextnameof] = ACTIONS(1473), + [anon_sym_DOLLARnameof] = ACTIONS(1473), + [anon_sym_DOLLARoffsetof] = ACTIONS(1473), + [anon_sym_DOLLARqnameof] = ACTIONS(1473), + [anon_sym_DOLLARvaconst] = ACTIONS(1473), + [anon_sym_DOLLARvaarg] = ACTIONS(1473), + [anon_sym_DOLLARvaref] = ACTIONS(1473), + [anon_sym_DOLLARvaexpr] = ACTIONS(1473), + [anon_sym_true] = ACTIONS(1473), + [anon_sym_false] = ACTIONS(1473), + [anon_sym_null] = ACTIONS(1473), + [anon_sym_DOLLARvacount] = ACTIONS(1473), + [anon_sym_DOLLARappend] = ACTIONS(1473), + [anon_sym_DOLLARconcat] = ACTIONS(1473), + [anon_sym_DOLLAReval] = ACTIONS(1473), + [anon_sym_DOLLARis_const] = ACTIONS(1473), + [anon_sym_DOLLARsizeof] = ACTIONS(1473), + [anon_sym_DOLLARstringify] = ACTIONS(1473), + [anon_sym_DOLLARand] = ACTIONS(1473), + [anon_sym_DOLLARdefined] = ACTIONS(1473), + [anon_sym_DOLLARembed] = ACTIONS(1473), + [anon_sym_DOLLARor] = ACTIONS(1473), + [anon_sym_DOLLARfeature] = ACTIONS(1473), + [anon_sym_DOLLARassignable] = ACTIONS(1473), + [anon_sym_BANG] = ACTIONS(1475), + [anon_sym_TILDE] = ACTIONS(1475), + [anon_sym_PLUS_PLUS] = ACTIONS(1475), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_typeid] = ACTIONS(1473), + [anon_sym_LBRACE_PIPE] = ACTIONS(1475), + [anon_sym_void] = ACTIONS(1473), + [anon_sym_bool] = ACTIONS(1473), + [anon_sym_char] = ACTIONS(1473), + [anon_sym_ichar] = ACTIONS(1473), + [anon_sym_short] = ACTIONS(1473), + [anon_sym_ushort] = ACTIONS(1473), + [anon_sym_uint] = ACTIONS(1473), + [anon_sym_long] = ACTIONS(1473), + [anon_sym_ulong] = ACTIONS(1473), + [anon_sym_int128] = ACTIONS(1473), + [anon_sym_uint128] = ACTIONS(1473), + [anon_sym_float] = ACTIONS(1473), + [anon_sym_double] = ACTIONS(1473), + [anon_sym_float16] = ACTIONS(1473), + [anon_sym_bfloat16] = ACTIONS(1473), + [anon_sym_float128] = ACTIONS(1473), + [anon_sym_iptr] = ACTIONS(1473), + [anon_sym_uptr] = ACTIONS(1473), + [anon_sym_isz] = ACTIONS(1473), + [anon_sym_usz] = ACTIONS(1473), + [anon_sym_anyfault] = ACTIONS(1473), + [anon_sym_any] = ACTIONS(1473), + [anon_sym_DOLLARtypeof] = ACTIONS(1473), + [anon_sym_DOLLARtypefrom] = ACTIONS(1473), + [anon_sym_DOLLARvatype] = ACTIONS(1473), + [anon_sym_DOLLARevaltype] = ACTIONS(1473), + [sym_real_literal] = ACTIONS(1475), }, [704] = { [sym_line_comment] = STATE(704), [sym_doc_comment] = STATE(704), [sym_block_comment] = STATE(704), - [sym_ident] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(1658), - [anon_sym_SQUOTE] = ACTIONS(1658), - [anon_sym_DQUOTE] = ACTIONS(1658), - [anon_sym_BQUOTE] = ACTIONS(1658), - [sym_bytes_literal] = ACTIONS(1658), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1656), - [sym_at_ident] = ACTIONS(1658), - [sym_hash_ident] = ACTIONS(1658), - [sym_type_ident] = ACTIONS(1658), - [sym_ct_type_ident] = ACTIONS(1658), - [sym_const_ident] = ACTIONS(1656), - [sym_builtin] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_static] = ACTIONS(1656), - [anon_sym_tlocal] = ACTIONS(1656), - [anon_sym_SEMI] = ACTIONS(1658), - [anon_sym_fn] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_const] = ACTIONS(1656), - [anon_sym_var] = ACTIONS(1656), - [anon_sym_return] = ACTIONS(1656), - [anon_sym_continue] = ACTIONS(1656), - [anon_sym_break] = ACTIONS(1656), - [anon_sym_defer] = ACTIONS(1656), - [anon_sym_assert] = ACTIONS(1656), - [anon_sym_nextcase] = ACTIONS(1656), - [anon_sym_switch] = ACTIONS(1656), - [anon_sym_AMP_AMP] = ACTIONS(1658), - [anon_sym_if] = ACTIONS(1656), - [anon_sym_for] = ACTIONS(1656), - [anon_sym_foreach] = ACTIONS(1656), - [anon_sym_foreach_r] = ACTIONS(1656), - [anon_sym_while] = ACTIONS(1656), - [anon_sym_do] = ACTIONS(1656), - [anon_sym_int] = ACTIONS(1656), - [anon_sym_PLUS] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1656), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_asm] = ACTIONS(1656), - [anon_sym_DOLLARassert] = ACTIONS(1656), - [anon_sym_DOLLARerror] = ACTIONS(1656), - [anon_sym_DOLLARecho] = ACTIONS(1656), - [anon_sym_DOLLARif] = ACTIONS(1656), - [anon_sym_DOLLARswitch] = ACTIONS(1656), - [anon_sym_DOLLARfor] = ACTIONS(1656), - [anon_sym_DOLLARforeach] = ACTIONS(1656), - [anon_sym_DOLLARendforeach] = ACTIONS(1656), - [anon_sym_DOLLARalignof] = ACTIONS(1656), - [anon_sym_DOLLARextnameof] = ACTIONS(1656), - [anon_sym_DOLLARnameof] = ACTIONS(1656), - [anon_sym_DOLLARoffsetof] = ACTIONS(1656), - [anon_sym_DOLLARqnameof] = ACTIONS(1656), - [anon_sym_DOLLARvaconst] = ACTIONS(1656), - [anon_sym_DOLLARvaarg] = ACTIONS(1656), - [anon_sym_DOLLARvaref] = ACTIONS(1656), - [anon_sym_DOLLARvaexpr] = ACTIONS(1656), - [anon_sym_true] = ACTIONS(1656), - [anon_sym_false] = ACTIONS(1656), - [anon_sym_null] = ACTIONS(1656), - [anon_sym_DOLLARvacount] = ACTIONS(1656), - [anon_sym_DOLLARappend] = ACTIONS(1656), - [anon_sym_DOLLARconcat] = ACTIONS(1656), - [anon_sym_DOLLAReval] = ACTIONS(1656), - [anon_sym_DOLLARis_const] = ACTIONS(1656), - [anon_sym_DOLLARsizeof] = ACTIONS(1656), - [anon_sym_DOLLARstringify] = ACTIONS(1656), - [anon_sym_DOLLARand] = ACTIONS(1656), - [anon_sym_DOLLARdefined] = ACTIONS(1656), - [anon_sym_DOLLARembed] = ACTIONS(1656), - [anon_sym_DOLLARor] = ACTIONS(1656), - [anon_sym_DOLLARfeature] = ACTIONS(1656), - [anon_sym_DOLLARassignable] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(1658), - [anon_sym_TILDE] = ACTIONS(1658), - [anon_sym_PLUS_PLUS] = ACTIONS(1658), - [anon_sym_DASH_DASH] = ACTIONS(1658), - [anon_sym_typeid] = ACTIONS(1656), - [anon_sym_LBRACE_PIPE] = ACTIONS(1658), - [anon_sym_void] = ACTIONS(1656), - [anon_sym_bool] = ACTIONS(1656), - [anon_sym_char] = ACTIONS(1656), - [anon_sym_ichar] = ACTIONS(1656), - [anon_sym_short] = ACTIONS(1656), - [anon_sym_ushort] = ACTIONS(1656), - [anon_sym_uint] = ACTIONS(1656), - [anon_sym_long] = ACTIONS(1656), - [anon_sym_ulong] = ACTIONS(1656), - [anon_sym_int128] = ACTIONS(1656), - [anon_sym_uint128] = ACTIONS(1656), - [anon_sym_float] = ACTIONS(1656), - [anon_sym_double] = ACTIONS(1656), - [anon_sym_float16] = ACTIONS(1656), - [anon_sym_bfloat16] = ACTIONS(1656), - [anon_sym_float128] = ACTIONS(1656), - [anon_sym_iptr] = ACTIONS(1656), - [anon_sym_uptr] = ACTIONS(1656), - [anon_sym_isz] = ACTIONS(1656), - [anon_sym_usz] = ACTIONS(1656), - [anon_sym_anyfault] = ACTIONS(1656), - [anon_sym_any] = ACTIONS(1656), - [anon_sym_DOLLARtypeof] = ACTIONS(1656), - [anon_sym_DOLLARtypefrom] = ACTIONS(1656), - [anon_sym_DOLLARvatype] = ACTIONS(1656), - [anon_sym_DOLLARevaltype] = ACTIONS(1656), - [sym_real_literal] = ACTIONS(1658), + [sym_ident] = ACTIONS(1687), + [sym_integer_literal] = ACTIONS(1689), + [anon_sym_SQUOTE] = ACTIONS(1689), + [anon_sym_DQUOTE] = ACTIONS(1689), + [anon_sym_BQUOTE] = ACTIONS(1689), + [sym_bytes_literal] = ACTIONS(1689), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1687), + [sym_at_ident] = ACTIONS(1689), + [sym_hash_ident] = ACTIONS(1689), + [sym_type_ident] = ACTIONS(1689), + [sym_ct_type_ident] = ACTIONS(1689), + [sym_const_ident] = ACTIONS(1687), + [sym_builtin] = ACTIONS(1689), + [anon_sym_LPAREN] = ACTIONS(1689), + [anon_sym_AMP] = ACTIONS(1687), + [anon_sym_static] = ACTIONS(1687), + [anon_sym_tlocal] = ACTIONS(1687), + [anon_sym_SEMI] = ACTIONS(1689), + [anon_sym_fn] = ACTIONS(1687), + [anon_sym_LBRACE] = ACTIONS(1687), + [anon_sym_const] = ACTIONS(1687), + [anon_sym_var] = ACTIONS(1687), + [anon_sym_return] = ACTIONS(1687), + [anon_sym_continue] = ACTIONS(1687), + [anon_sym_break] = ACTIONS(1687), + [anon_sym_defer] = ACTIONS(1687), + [anon_sym_assert] = ACTIONS(1687), + [anon_sym_nextcase] = ACTIONS(1687), + [anon_sym_switch] = ACTIONS(1687), + [anon_sym_AMP_AMP] = ACTIONS(1689), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_for] = ACTIONS(1687), + [anon_sym_foreach] = ACTIONS(1687), + [anon_sym_foreach_r] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_do] = ACTIONS(1687), + [anon_sym_int] = ACTIONS(1687), + [anon_sym_PLUS] = ACTIONS(1687), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_STAR] = ACTIONS(1689), + [anon_sym_asm] = ACTIONS(1687), + [anon_sym_DOLLARassert] = ACTIONS(1687), + [anon_sym_DOLLARerror] = ACTIONS(1687), + [anon_sym_DOLLARecho] = ACTIONS(1687), + [anon_sym_DOLLARif] = ACTIONS(1687), + [anon_sym_DOLLARswitch] = ACTIONS(1687), + [anon_sym_DOLLARfor] = ACTIONS(1687), + [anon_sym_DOLLARforeach] = ACTIONS(1687), + [anon_sym_DOLLARendforeach] = ACTIONS(1687), + [anon_sym_DOLLARalignof] = ACTIONS(1687), + [anon_sym_DOLLARextnameof] = ACTIONS(1687), + [anon_sym_DOLLARnameof] = ACTIONS(1687), + [anon_sym_DOLLARoffsetof] = ACTIONS(1687), + [anon_sym_DOLLARqnameof] = ACTIONS(1687), + [anon_sym_DOLLARvaconst] = ACTIONS(1687), + [anon_sym_DOLLARvaarg] = ACTIONS(1687), + [anon_sym_DOLLARvaref] = ACTIONS(1687), + [anon_sym_DOLLARvaexpr] = ACTIONS(1687), + [anon_sym_true] = ACTIONS(1687), + [anon_sym_false] = ACTIONS(1687), + [anon_sym_null] = ACTIONS(1687), + [anon_sym_DOLLARvacount] = ACTIONS(1687), + [anon_sym_DOLLARappend] = ACTIONS(1687), + [anon_sym_DOLLARconcat] = ACTIONS(1687), + [anon_sym_DOLLAReval] = ACTIONS(1687), + [anon_sym_DOLLARis_const] = ACTIONS(1687), + [anon_sym_DOLLARsizeof] = ACTIONS(1687), + [anon_sym_DOLLARstringify] = ACTIONS(1687), + [anon_sym_DOLLARand] = ACTIONS(1687), + [anon_sym_DOLLARdefined] = ACTIONS(1687), + [anon_sym_DOLLARembed] = ACTIONS(1687), + [anon_sym_DOLLARor] = ACTIONS(1687), + [anon_sym_DOLLARfeature] = ACTIONS(1687), + [anon_sym_DOLLARassignable] = ACTIONS(1687), + [anon_sym_BANG] = ACTIONS(1689), + [anon_sym_TILDE] = ACTIONS(1689), + [anon_sym_PLUS_PLUS] = ACTIONS(1689), + [anon_sym_DASH_DASH] = ACTIONS(1689), + [anon_sym_typeid] = ACTIONS(1687), + [anon_sym_LBRACE_PIPE] = ACTIONS(1689), + [anon_sym_void] = ACTIONS(1687), + [anon_sym_bool] = ACTIONS(1687), + [anon_sym_char] = ACTIONS(1687), + [anon_sym_ichar] = ACTIONS(1687), + [anon_sym_short] = ACTIONS(1687), + [anon_sym_ushort] = ACTIONS(1687), + [anon_sym_uint] = ACTIONS(1687), + [anon_sym_long] = ACTIONS(1687), + [anon_sym_ulong] = ACTIONS(1687), + [anon_sym_int128] = ACTIONS(1687), + [anon_sym_uint128] = ACTIONS(1687), + [anon_sym_float] = ACTIONS(1687), + [anon_sym_double] = ACTIONS(1687), + [anon_sym_float16] = ACTIONS(1687), + [anon_sym_bfloat16] = ACTIONS(1687), + [anon_sym_float128] = ACTIONS(1687), + [anon_sym_iptr] = ACTIONS(1687), + [anon_sym_uptr] = ACTIONS(1687), + [anon_sym_isz] = ACTIONS(1687), + [anon_sym_usz] = ACTIONS(1687), + [anon_sym_anyfault] = ACTIONS(1687), + [anon_sym_any] = ACTIONS(1687), + [anon_sym_DOLLARtypeof] = ACTIONS(1687), + [anon_sym_DOLLARtypefrom] = ACTIONS(1687), + [anon_sym_DOLLARvatype] = ACTIONS(1687), + [anon_sym_DOLLARevaltype] = ACTIONS(1687), + [sym_real_literal] = ACTIONS(1689), }, [705] = { [sym_line_comment] = STATE(705), [sym_doc_comment] = STATE(705), [sym_block_comment] = STATE(705), - [sym_ident] = ACTIONS(1640), - [sym_integer_literal] = ACTIONS(1642), - [anon_sym_SQUOTE] = ACTIONS(1642), - [anon_sym_DQUOTE] = ACTIONS(1642), - [anon_sym_BQUOTE] = ACTIONS(1642), - [sym_bytes_literal] = ACTIONS(1642), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1640), - [sym_at_ident] = ACTIONS(1642), - [sym_hash_ident] = ACTIONS(1642), - [sym_type_ident] = ACTIONS(1642), - [sym_ct_type_ident] = ACTIONS(1642), - [sym_const_ident] = ACTIONS(1640), - [sym_builtin] = ACTIONS(1642), - [anon_sym_LPAREN] = ACTIONS(1642), - [anon_sym_AMP] = ACTIONS(1640), - [anon_sym_static] = ACTIONS(1640), - [anon_sym_tlocal] = ACTIONS(1640), - [anon_sym_SEMI] = ACTIONS(1642), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_LBRACE] = ACTIONS(1640), - [anon_sym_const] = ACTIONS(1640), - [anon_sym_var] = ACTIONS(1640), - [anon_sym_return] = ACTIONS(1640), - [anon_sym_continue] = ACTIONS(1640), - [anon_sym_break] = ACTIONS(1640), - [anon_sym_defer] = ACTIONS(1640), - [anon_sym_assert] = ACTIONS(1640), - [anon_sym_nextcase] = ACTIONS(1640), - [anon_sym_switch] = ACTIONS(1640), - [anon_sym_AMP_AMP] = ACTIONS(1642), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1640), - [anon_sym_foreach] = ACTIONS(1640), - [anon_sym_foreach_r] = ACTIONS(1640), - [anon_sym_while] = ACTIONS(1640), - [anon_sym_do] = ACTIONS(1640), - [anon_sym_int] = ACTIONS(1640), - [anon_sym_PLUS] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1640), - [anon_sym_STAR] = ACTIONS(1642), - [anon_sym_asm] = ACTIONS(1640), - [anon_sym_DOLLARassert] = ACTIONS(1640), - [anon_sym_DOLLARerror] = ACTIONS(1640), - [anon_sym_DOLLARecho] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1640), - [anon_sym_DOLLARswitch] = ACTIONS(1640), - [anon_sym_DOLLARfor] = ACTIONS(1640), - [anon_sym_DOLLARforeach] = ACTIONS(1640), - [anon_sym_DOLLARendforeach] = ACTIONS(1640), - [anon_sym_DOLLARalignof] = ACTIONS(1640), - [anon_sym_DOLLARextnameof] = ACTIONS(1640), - [anon_sym_DOLLARnameof] = ACTIONS(1640), - [anon_sym_DOLLARoffsetof] = ACTIONS(1640), - [anon_sym_DOLLARqnameof] = ACTIONS(1640), - [anon_sym_DOLLARvaconst] = ACTIONS(1640), - [anon_sym_DOLLARvaarg] = ACTIONS(1640), - [anon_sym_DOLLARvaref] = ACTIONS(1640), - [anon_sym_DOLLARvaexpr] = ACTIONS(1640), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_null] = ACTIONS(1640), - [anon_sym_DOLLARvacount] = ACTIONS(1640), - [anon_sym_DOLLARappend] = ACTIONS(1640), - [anon_sym_DOLLARconcat] = ACTIONS(1640), - [anon_sym_DOLLAReval] = ACTIONS(1640), - [anon_sym_DOLLARis_const] = ACTIONS(1640), - [anon_sym_DOLLARsizeof] = ACTIONS(1640), - [anon_sym_DOLLARstringify] = ACTIONS(1640), - [anon_sym_DOLLARand] = ACTIONS(1640), - [anon_sym_DOLLARdefined] = ACTIONS(1640), - [anon_sym_DOLLARembed] = ACTIONS(1640), - [anon_sym_DOLLARor] = ACTIONS(1640), - [anon_sym_DOLLARfeature] = ACTIONS(1640), - [anon_sym_DOLLARassignable] = ACTIONS(1640), - [anon_sym_BANG] = ACTIONS(1642), - [anon_sym_TILDE] = ACTIONS(1642), - [anon_sym_PLUS_PLUS] = ACTIONS(1642), - [anon_sym_DASH_DASH] = ACTIONS(1642), - [anon_sym_typeid] = ACTIONS(1640), - [anon_sym_LBRACE_PIPE] = ACTIONS(1642), - [anon_sym_void] = ACTIONS(1640), - [anon_sym_bool] = ACTIONS(1640), - [anon_sym_char] = ACTIONS(1640), - [anon_sym_ichar] = ACTIONS(1640), - [anon_sym_short] = ACTIONS(1640), - [anon_sym_ushort] = ACTIONS(1640), - [anon_sym_uint] = ACTIONS(1640), - [anon_sym_long] = ACTIONS(1640), - [anon_sym_ulong] = ACTIONS(1640), - [anon_sym_int128] = ACTIONS(1640), - [anon_sym_uint128] = ACTIONS(1640), - [anon_sym_float] = ACTIONS(1640), - [anon_sym_double] = ACTIONS(1640), - [anon_sym_float16] = ACTIONS(1640), - [anon_sym_bfloat16] = ACTIONS(1640), - [anon_sym_float128] = ACTIONS(1640), - [anon_sym_iptr] = ACTIONS(1640), - [anon_sym_uptr] = ACTIONS(1640), - [anon_sym_isz] = ACTIONS(1640), - [anon_sym_usz] = ACTIONS(1640), - [anon_sym_anyfault] = ACTIONS(1640), - [anon_sym_any] = ACTIONS(1640), - [anon_sym_DOLLARtypeof] = ACTIONS(1640), - [anon_sym_DOLLARtypefrom] = ACTIONS(1640), - [anon_sym_DOLLARvatype] = ACTIONS(1640), - [anon_sym_DOLLARevaltype] = ACTIONS(1640), - [sym_real_literal] = ACTIONS(1642), + [sym_ident] = ACTIONS(1477), + [sym_integer_literal] = ACTIONS(1479), + [anon_sym_SQUOTE] = ACTIONS(1479), + [anon_sym_DQUOTE] = ACTIONS(1479), + [anon_sym_BQUOTE] = ACTIONS(1479), + [sym_bytes_literal] = ACTIONS(1479), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1477), + [sym_at_ident] = ACTIONS(1479), + [sym_hash_ident] = ACTIONS(1479), + [sym_type_ident] = ACTIONS(1479), + [sym_ct_type_ident] = ACTIONS(1479), + [sym_const_ident] = ACTIONS(1477), + [sym_builtin] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1479), + [anon_sym_AMP] = ACTIONS(1477), + [anon_sym_static] = ACTIONS(1477), + [anon_sym_tlocal] = ACTIONS(1477), + [anon_sym_SEMI] = ACTIONS(1479), + [anon_sym_fn] = ACTIONS(1477), + [anon_sym_LBRACE] = ACTIONS(1477), + [anon_sym_const] = ACTIONS(1477), + [anon_sym_var] = ACTIONS(1477), + [anon_sym_return] = ACTIONS(1477), + [anon_sym_continue] = ACTIONS(1477), + [anon_sym_break] = ACTIONS(1477), + [anon_sym_defer] = ACTIONS(1477), + [anon_sym_assert] = ACTIONS(1477), + [anon_sym_nextcase] = ACTIONS(1477), + [anon_sym_switch] = ACTIONS(1477), + [anon_sym_AMP_AMP] = ACTIONS(1479), + [anon_sym_if] = ACTIONS(1477), + [anon_sym_for] = ACTIONS(1477), + [anon_sym_foreach] = ACTIONS(1477), + [anon_sym_foreach_r] = ACTIONS(1477), + [anon_sym_while] = ACTIONS(1477), + [anon_sym_do] = ACTIONS(1477), + [anon_sym_int] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1477), + [anon_sym_DASH] = ACTIONS(1477), + [anon_sym_STAR] = ACTIONS(1479), + [anon_sym_asm] = ACTIONS(1477), + [anon_sym_DOLLARassert] = ACTIONS(1477), + [anon_sym_DOLLARerror] = ACTIONS(1477), + [anon_sym_DOLLARecho] = ACTIONS(1477), + [anon_sym_DOLLARif] = ACTIONS(1477), + [anon_sym_DOLLARswitch] = ACTIONS(1477), + [anon_sym_DOLLARfor] = ACTIONS(1477), + [anon_sym_DOLLARforeach] = ACTIONS(1477), + [anon_sym_DOLLARendforeach] = ACTIONS(1477), + [anon_sym_DOLLARalignof] = ACTIONS(1477), + [anon_sym_DOLLARextnameof] = ACTIONS(1477), + [anon_sym_DOLLARnameof] = ACTIONS(1477), + [anon_sym_DOLLARoffsetof] = ACTIONS(1477), + [anon_sym_DOLLARqnameof] = ACTIONS(1477), + [anon_sym_DOLLARvaconst] = ACTIONS(1477), + [anon_sym_DOLLARvaarg] = ACTIONS(1477), + [anon_sym_DOLLARvaref] = ACTIONS(1477), + [anon_sym_DOLLARvaexpr] = ACTIONS(1477), + [anon_sym_true] = ACTIONS(1477), + [anon_sym_false] = ACTIONS(1477), + [anon_sym_null] = ACTIONS(1477), + [anon_sym_DOLLARvacount] = ACTIONS(1477), + [anon_sym_DOLLARappend] = ACTIONS(1477), + [anon_sym_DOLLARconcat] = ACTIONS(1477), + [anon_sym_DOLLAReval] = ACTIONS(1477), + [anon_sym_DOLLARis_const] = ACTIONS(1477), + [anon_sym_DOLLARsizeof] = ACTIONS(1477), + [anon_sym_DOLLARstringify] = ACTIONS(1477), + [anon_sym_DOLLARand] = ACTIONS(1477), + [anon_sym_DOLLARdefined] = ACTIONS(1477), + [anon_sym_DOLLARembed] = ACTIONS(1477), + [anon_sym_DOLLARor] = ACTIONS(1477), + [anon_sym_DOLLARfeature] = ACTIONS(1477), + [anon_sym_DOLLARassignable] = ACTIONS(1477), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_TILDE] = ACTIONS(1479), + [anon_sym_PLUS_PLUS] = ACTIONS(1479), + [anon_sym_DASH_DASH] = ACTIONS(1479), + [anon_sym_typeid] = ACTIONS(1477), + [anon_sym_LBRACE_PIPE] = ACTIONS(1479), + [anon_sym_void] = ACTIONS(1477), + [anon_sym_bool] = ACTIONS(1477), + [anon_sym_char] = ACTIONS(1477), + [anon_sym_ichar] = ACTIONS(1477), + [anon_sym_short] = ACTIONS(1477), + [anon_sym_ushort] = ACTIONS(1477), + [anon_sym_uint] = ACTIONS(1477), + [anon_sym_long] = ACTIONS(1477), + [anon_sym_ulong] = ACTIONS(1477), + [anon_sym_int128] = ACTIONS(1477), + [anon_sym_uint128] = ACTIONS(1477), + [anon_sym_float] = ACTIONS(1477), + [anon_sym_double] = ACTIONS(1477), + [anon_sym_float16] = ACTIONS(1477), + [anon_sym_bfloat16] = ACTIONS(1477), + [anon_sym_float128] = ACTIONS(1477), + [anon_sym_iptr] = ACTIONS(1477), + [anon_sym_uptr] = ACTIONS(1477), + [anon_sym_isz] = ACTIONS(1477), + [anon_sym_usz] = ACTIONS(1477), + [anon_sym_anyfault] = ACTIONS(1477), + [anon_sym_any] = ACTIONS(1477), + [anon_sym_DOLLARtypeof] = ACTIONS(1477), + [anon_sym_DOLLARtypefrom] = ACTIONS(1477), + [anon_sym_DOLLARvatype] = ACTIONS(1477), + [anon_sym_DOLLARevaltype] = ACTIONS(1477), + [sym_real_literal] = ACTIONS(1479), }, [706] = { [sym_line_comment] = STATE(706), [sym_doc_comment] = STATE(706), [sym_block_comment] = STATE(706), - [sym_ident] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(1634), - [anon_sym_DQUOTE] = ACTIONS(1634), - [anon_sym_BQUOTE] = ACTIONS(1634), - [sym_bytes_literal] = ACTIONS(1634), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1632), - [sym_at_ident] = ACTIONS(1634), - [sym_hash_ident] = ACTIONS(1634), - [sym_type_ident] = ACTIONS(1634), - [sym_ct_type_ident] = ACTIONS(1634), - [sym_const_ident] = ACTIONS(1632), - [sym_builtin] = ACTIONS(1634), - [anon_sym_LPAREN] = ACTIONS(1634), - [anon_sym_AMP] = ACTIONS(1632), - [anon_sym_static] = ACTIONS(1632), - [anon_sym_tlocal] = ACTIONS(1632), - [anon_sym_SEMI] = ACTIONS(1634), - [anon_sym_fn] = ACTIONS(1632), - [anon_sym_LBRACE] = ACTIONS(1632), - [anon_sym_const] = ACTIONS(1632), - [anon_sym_var] = ACTIONS(1632), - [anon_sym_return] = ACTIONS(1632), - [anon_sym_continue] = ACTIONS(1632), - [anon_sym_break] = ACTIONS(1632), - [anon_sym_defer] = ACTIONS(1632), - [anon_sym_assert] = ACTIONS(1632), - [anon_sym_nextcase] = ACTIONS(1632), - [anon_sym_switch] = ACTIONS(1632), - [anon_sym_AMP_AMP] = ACTIONS(1634), - [anon_sym_if] = ACTIONS(1632), - [anon_sym_for] = ACTIONS(1632), - [anon_sym_foreach] = ACTIONS(1632), - [anon_sym_foreach_r] = ACTIONS(1632), - [anon_sym_while] = ACTIONS(1632), - [anon_sym_do] = ACTIONS(1632), - [anon_sym_int] = ACTIONS(1632), - [anon_sym_PLUS] = ACTIONS(1632), - [anon_sym_DASH] = ACTIONS(1632), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_asm] = ACTIONS(1632), - [anon_sym_DOLLARassert] = ACTIONS(1632), - [anon_sym_DOLLARerror] = ACTIONS(1632), - [anon_sym_DOLLARecho] = ACTIONS(1632), - [anon_sym_DOLLARif] = ACTIONS(1632), - [anon_sym_DOLLARswitch] = ACTIONS(1632), - [anon_sym_DOLLARfor] = ACTIONS(1632), - [anon_sym_DOLLARforeach] = ACTIONS(1632), - [anon_sym_DOLLARendforeach] = ACTIONS(1632), - [anon_sym_DOLLARalignof] = ACTIONS(1632), - [anon_sym_DOLLARextnameof] = ACTIONS(1632), - [anon_sym_DOLLARnameof] = ACTIONS(1632), - [anon_sym_DOLLARoffsetof] = ACTIONS(1632), - [anon_sym_DOLLARqnameof] = ACTIONS(1632), - [anon_sym_DOLLARvaconst] = ACTIONS(1632), - [anon_sym_DOLLARvaarg] = ACTIONS(1632), - [anon_sym_DOLLARvaref] = ACTIONS(1632), - [anon_sym_DOLLARvaexpr] = ACTIONS(1632), - [anon_sym_true] = ACTIONS(1632), - [anon_sym_false] = ACTIONS(1632), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_DOLLARvacount] = ACTIONS(1632), - [anon_sym_DOLLARappend] = ACTIONS(1632), - [anon_sym_DOLLARconcat] = ACTIONS(1632), - [anon_sym_DOLLAReval] = ACTIONS(1632), - [anon_sym_DOLLARis_const] = ACTIONS(1632), - [anon_sym_DOLLARsizeof] = ACTIONS(1632), - [anon_sym_DOLLARstringify] = ACTIONS(1632), - [anon_sym_DOLLARand] = ACTIONS(1632), - [anon_sym_DOLLARdefined] = ACTIONS(1632), - [anon_sym_DOLLARembed] = ACTIONS(1632), - [anon_sym_DOLLARor] = ACTIONS(1632), - [anon_sym_DOLLARfeature] = ACTIONS(1632), - [anon_sym_DOLLARassignable] = ACTIONS(1632), - [anon_sym_BANG] = ACTIONS(1634), - [anon_sym_TILDE] = ACTIONS(1634), - [anon_sym_PLUS_PLUS] = ACTIONS(1634), - [anon_sym_DASH_DASH] = ACTIONS(1634), - [anon_sym_typeid] = ACTIONS(1632), - [anon_sym_LBRACE_PIPE] = ACTIONS(1634), - [anon_sym_void] = ACTIONS(1632), - [anon_sym_bool] = ACTIONS(1632), - [anon_sym_char] = ACTIONS(1632), - [anon_sym_ichar] = ACTIONS(1632), - [anon_sym_short] = ACTIONS(1632), - [anon_sym_ushort] = ACTIONS(1632), - [anon_sym_uint] = ACTIONS(1632), - [anon_sym_long] = ACTIONS(1632), - [anon_sym_ulong] = ACTIONS(1632), - [anon_sym_int128] = ACTIONS(1632), - [anon_sym_uint128] = ACTIONS(1632), - [anon_sym_float] = ACTIONS(1632), - [anon_sym_double] = ACTIONS(1632), - [anon_sym_float16] = ACTIONS(1632), - [anon_sym_bfloat16] = ACTIONS(1632), - [anon_sym_float128] = ACTIONS(1632), - [anon_sym_iptr] = ACTIONS(1632), - [anon_sym_uptr] = ACTIONS(1632), - [anon_sym_isz] = ACTIONS(1632), - [anon_sym_usz] = ACTIONS(1632), - [anon_sym_anyfault] = ACTIONS(1632), - [anon_sym_any] = ACTIONS(1632), - [anon_sym_DOLLARtypeof] = ACTIONS(1632), - [anon_sym_DOLLARtypefrom] = ACTIONS(1632), - [anon_sym_DOLLARvatype] = ACTIONS(1632), - [anon_sym_DOLLARevaltype] = ACTIONS(1632), - [sym_real_literal] = ACTIONS(1634), + [sym_ident] = ACTIONS(1493), + [sym_integer_literal] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1495), + [anon_sym_DQUOTE] = ACTIONS(1495), + [anon_sym_BQUOTE] = ACTIONS(1495), + [sym_bytes_literal] = ACTIONS(1495), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1493), + [sym_at_ident] = ACTIONS(1495), + [sym_hash_ident] = ACTIONS(1495), + [sym_type_ident] = ACTIONS(1495), + [sym_ct_type_ident] = ACTIONS(1495), + [sym_const_ident] = ACTIONS(1493), + [sym_builtin] = ACTIONS(1495), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1493), + [anon_sym_static] = ACTIONS(1493), + [anon_sym_tlocal] = ACTIONS(1493), + [anon_sym_SEMI] = ACTIONS(1495), + [anon_sym_fn] = ACTIONS(1493), + [anon_sym_LBRACE] = ACTIONS(1493), + [anon_sym_const] = ACTIONS(1493), + [anon_sym_var] = ACTIONS(1493), + [anon_sym_return] = ACTIONS(1493), + [anon_sym_continue] = ACTIONS(1493), + [anon_sym_break] = ACTIONS(1493), + [anon_sym_defer] = ACTIONS(1493), + [anon_sym_assert] = ACTIONS(1493), + [anon_sym_nextcase] = ACTIONS(1493), + [anon_sym_switch] = ACTIONS(1493), + [anon_sym_AMP_AMP] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1493), + [anon_sym_for] = ACTIONS(1493), + [anon_sym_foreach] = ACTIONS(1493), + [anon_sym_foreach_r] = ACTIONS(1493), + [anon_sym_while] = ACTIONS(1493), + [anon_sym_do] = ACTIONS(1493), + [anon_sym_int] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1493), + [anon_sym_DASH] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1495), + [anon_sym_asm] = ACTIONS(1493), + [anon_sym_DOLLARassert] = ACTIONS(1493), + [anon_sym_DOLLARerror] = ACTIONS(1493), + [anon_sym_DOLLARecho] = ACTIONS(1493), + [anon_sym_DOLLARif] = ACTIONS(1493), + [anon_sym_DOLLARswitch] = ACTIONS(1493), + [anon_sym_DOLLARfor] = ACTIONS(1493), + [anon_sym_DOLLARforeach] = ACTIONS(1493), + [anon_sym_DOLLARendforeach] = ACTIONS(1493), + [anon_sym_DOLLARalignof] = ACTIONS(1493), + [anon_sym_DOLLARextnameof] = ACTIONS(1493), + [anon_sym_DOLLARnameof] = ACTIONS(1493), + [anon_sym_DOLLARoffsetof] = ACTIONS(1493), + [anon_sym_DOLLARqnameof] = ACTIONS(1493), + [anon_sym_DOLLARvaconst] = ACTIONS(1493), + [anon_sym_DOLLARvaarg] = ACTIONS(1493), + [anon_sym_DOLLARvaref] = ACTIONS(1493), + [anon_sym_DOLLARvaexpr] = ACTIONS(1493), + [anon_sym_true] = ACTIONS(1493), + [anon_sym_false] = ACTIONS(1493), + [anon_sym_null] = ACTIONS(1493), + [anon_sym_DOLLARvacount] = ACTIONS(1493), + [anon_sym_DOLLARappend] = ACTIONS(1493), + [anon_sym_DOLLARconcat] = ACTIONS(1493), + [anon_sym_DOLLAReval] = ACTIONS(1493), + [anon_sym_DOLLARis_const] = ACTIONS(1493), + [anon_sym_DOLLARsizeof] = ACTIONS(1493), + [anon_sym_DOLLARstringify] = ACTIONS(1493), + [anon_sym_DOLLARand] = ACTIONS(1493), + [anon_sym_DOLLARdefined] = ACTIONS(1493), + [anon_sym_DOLLARembed] = ACTIONS(1493), + [anon_sym_DOLLARor] = ACTIONS(1493), + [anon_sym_DOLLARfeature] = ACTIONS(1493), + [anon_sym_DOLLARassignable] = ACTIONS(1493), + [anon_sym_BANG] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(1495), + [anon_sym_PLUS_PLUS] = ACTIONS(1495), + [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_typeid] = ACTIONS(1493), + [anon_sym_LBRACE_PIPE] = ACTIONS(1495), + [anon_sym_void] = ACTIONS(1493), + [anon_sym_bool] = ACTIONS(1493), + [anon_sym_char] = ACTIONS(1493), + [anon_sym_ichar] = ACTIONS(1493), + [anon_sym_short] = ACTIONS(1493), + [anon_sym_ushort] = ACTIONS(1493), + [anon_sym_uint] = ACTIONS(1493), + [anon_sym_long] = ACTIONS(1493), + [anon_sym_ulong] = ACTIONS(1493), + [anon_sym_int128] = ACTIONS(1493), + [anon_sym_uint128] = ACTIONS(1493), + [anon_sym_float] = ACTIONS(1493), + [anon_sym_double] = ACTIONS(1493), + [anon_sym_float16] = ACTIONS(1493), + [anon_sym_bfloat16] = ACTIONS(1493), + [anon_sym_float128] = ACTIONS(1493), + [anon_sym_iptr] = ACTIONS(1493), + [anon_sym_uptr] = ACTIONS(1493), + [anon_sym_isz] = ACTIONS(1493), + [anon_sym_usz] = ACTIONS(1493), + [anon_sym_anyfault] = ACTIONS(1493), + [anon_sym_any] = ACTIONS(1493), + [anon_sym_DOLLARtypeof] = ACTIONS(1493), + [anon_sym_DOLLARtypefrom] = ACTIONS(1493), + [anon_sym_DOLLARvatype] = ACTIONS(1493), + [anon_sym_DOLLARevaltype] = ACTIONS(1493), + [sym_real_literal] = ACTIONS(1495), }, [707] = { [sym_line_comment] = STATE(707), [sym_doc_comment] = STATE(707), [sym_block_comment] = STATE(707), - [sym_ident] = ACTIONS(1624), - [sym_integer_literal] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1626), - [anon_sym_DQUOTE] = ACTIONS(1626), - [anon_sym_BQUOTE] = ACTIONS(1626), - [sym_bytes_literal] = ACTIONS(1626), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1624), - [sym_at_ident] = ACTIONS(1626), - [sym_hash_ident] = ACTIONS(1626), - [sym_type_ident] = ACTIONS(1626), - [sym_ct_type_ident] = ACTIONS(1626), - [sym_const_ident] = ACTIONS(1624), - [sym_builtin] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(1626), - [anon_sym_AMP] = ACTIONS(1624), - [anon_sym_static] = ACTIONS(1624), - [anon_sym_tlocal] = ACTIONS(1624), - [anon_sym_SEMI] = ACTIONS(1626), - [anon_sym_fn] = ACTIONS(1624), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_const] = ACTIONS(1624), - [anon_sym_var] = ACTIONS(1624), - [anon_sym_return] = ACTIONS(1624), - [anon_sym_continue] = ACTIONS(1624), - [anon_sym_break] = ACTIONS(1624), - [anon_sym_defer] = ACTIONS(1624), - [anon_sym_assert] = ACTIONS(1624), - [anon_sym_nextcase] = ACTIONS(1624), - [anon_sym_switch] = ACTIONS(1624), - [anon_sym_AMP_AMP] = ACTIONS(1626), - [anon_sym_if] = ACTIONS(1624), - [anon_sym_for] = ACTIONS(1624), - [anon_sym_foreach] = ACTIONS(1624), - [anon_sym_foreach_r] = ACTIONS(1624), - [anon_sym_while] = ACTIONS(1624), - [anon_sym_do] = ACTIONS(1624), - [anon_sym_int] = ACTIONS(1624), - [anon_sym_PLUS] = ACTIONS(1624), - [anon_sym_DASH] = ACTIONS(1624), - [anon_sym_STAR] = ACTIONS(1626), - [anon_sym_asm] = ACTIONS(1624), - [anon_sym_DOLLARassert] = ACTIONS(1624), - [anon_sym_DOLLARerror] = ACTIONS(1624), - [anon_sym_DOLLARecho] = ACTIONS(1624), - [anon_sym_DOLLARif] = ACTIONS(1624), - [anon_sym_DOLLARswitch] = ACTIONS(1624), - [anon_sym_DOLLARfor] = ACTIONS(1624), - [anon_sym_DOLLARforeach] = ACTIONS(1624), - [anon_sym_DOLLARendforeach] = ACTIONS(1624), - [anon_sym_DOLLARalignof] = ACTIONS(1624), - [anon_sym_DOLLARextnameof] = ACTIONS(1624), - [anon_sym_DOLLARnameof] = ACTIONS(1624), - [anon_sym_DOLLARoffsetof] = ACTIONS(1624), - [anon_sym_DOLLARqnameof] = ACTIONS(1624), - [anon_sym_DOLLARvaconst] = ACTIONS(1624), - [anon_sym_DOLLARvaarg] = ACTIONS(1624), - [anon_sym_DOLLARvaref] = ACTIONS(1624), - [anon_sym_DOLLARvaexpr] = ACTIONS(1624), - [anon_sym_true] = ACTIONS(1624), - [anon_sym_false] = ACTIONS(1624), - [anon_sym_null] = ACTIONS(1624), - [anon_sym_DOLLARvacount] = ACTIONS(1624), - [anon_sym_DOLLARappend] = ACTIONS(1624), - [anon_sym_DOLLARconcat] = ACTIONS(1624), - [anon_sym_DOLLAReval] = ACTIONS(1624), - [anon_sym_DOLLARis_const] = ACTIONS(1624), - [anon_sym_DOLLARsizeof] = ACTIONS(1624), - [anon_sym_DOLLARstringify] = ACTIONS(1624), - [anon_sym_DOLLARand] = ACTIONS(1624), - [anon_sym_DOLLARdefined] = ACTIONS(1624), - [anon_sym_DOLLARembed] = ACTIONS(1624), - [anon_sym_DOLLARor] = ACTIONS(1624), - [anon_sym_DOLLARfeature] = ACTIONS(1624), - [anon_sym_DOLLARassignable] = ACTIONS(1624), - [anon_sym_BANG] = ACTIONS(1626), - [anon_sym_TILDE] = ACTIONS(1626), - [anon_sym_PLUS_PLUS] = ACTIONS(1626), - [anon_sym_DASH_DASH] = ACTIONS(1626), - [anon_sym_typeid] = ACTIONS(1624), - [anon_sym_LBRACE_PIPE] = ACTIONS(1626), - [anon_sym_void] = ACTIONS(1624), - [anon_sym_bool] = ACTIONS(1624), - [anon_sym_char] = ACTIONS(1624), - [anon_sym_ichar] = ACTIONS(1624), - [anon_sym_short] = ACTIONS(1624), - [anon_sym_ushort] = ACTIONS(1624), - [anon_sym_uint] = ACTIONS(1624), - [anon_sym_long] = ACTIONS(1624), - [anon_sym_ulong] = ACTIONS(1624), - [anon_sym_int128] = ACTIONS(1624), - [anon_sym_uint128] = ACTIONS(1624), - [anon_sym_float] = ACTIONS(1624), - [anon_sym_double] = ACTIONS(1624), - [anon_sym_float16] = ACTIONS(1624), - [anon_sym_bfloat16] = ACTIONS(1624), - [anon_sym_float128] = ACTIONS(1624), - [anon_sym_iptr] = ACTIONS(1624), - [anon_sym_uptr] = ACTIONS(1624), - [anon_sym_isz] = ACTIONS(1624), - [anon_sym_usz] = ACTIONS(1624), - [anon_sym_anyfault] = ACTIONS(1624), - [anon_sym_any] = ACTIONS(1624), - [anon_sym_DOLLARtypeof] = ACTIONS(1624), - [anon_sym_DOLLARtypefrom] = ACTIONS(1624), - [anon_sym_DOLLARvatype] = ACTIONS(1624), - [anon_sym_DOLLARevaltype] = ACTIONS(1624), - [sym_real_literal] = ACTIONS(1626), + [sym_ident] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1515), + [anon_sym_SQUOTE] = ACTIONS(1515), + [anon_sym_DQUOTE] = ACTIONS(1515), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_bytes_literal] = ACTIONS(1515), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1513), + [sym_at_ident] = ACTIONS(1515), + [sym_hash_ident] = ACTIONS(1515), + [sym_type_ident] = ACTIONS(1515), + [sym_ct_type_ident] = ACTIONS(1515), + [sym_const_ident] = ACTIONS(1513), + [sym_builtin] = ACTIONS(1515), + [anon_sym_LPAREN] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1513), + [anon_sym_static] = ACTIONS(1513), + [anon_sym_tlocal] = ACTIONS(1513), + [anon_sym_SEMI] = ACTIONS(1515), + [anon_sym_fn] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1513), + [anon_sym_const] = ACTIONS(1513), + [anon_sym_var] = ACTIONS(1513), + [anon_sym_return] = ACTIONS(1513), + [anon_sym_continue] = ACTIONS(1513), + [anon_sym_break] = ACTIONS(1513), + [anon_sym_defer] = ACTIONS(1513), + [anon_sym_assert] = ACTIONS(1513), + [anon_sym_nextcase] = ACTIONS(1513), + [anon_sym_switch] = ACTIONS(1513), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [anon_sym_if] = ACTIONS(1513), + [anon_sym_for] = ACTIONS(1513), + [anon_sym_foreach] = ACTIONS(1513), + [anon_sym_foreach_r] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1513), + [anon_sym_do] = ACTIONS(1513), + [anon_sym_int] = ACTIONS(1513), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(1515), + [anon_sym_asm] = ACTIONS(1513), + [anon_sym_DOLLARassert] = ACTIONS(1513), + [anon_sym_DOLLARerror] = ACTIONS(1513), + [anon_sym_DOLLARecho] = ACTIONS(1513), + [anon_sym_DOLLARif] = ACTIONS(1513), + [anon_sym_DOLLARswitch] = ACTIONS(1513), + [anon_sym_DOLLARfor] = ACTIONS(1513), + [anon_sym_DOLLARforeach] = ACTIONS(1513), + [anon_sym_DOLLARendforeach] = ACTIONS(1513), + [anon_sym_DOLLARalignof] = ACTIONS(1513), + [anon_sym_DOLLARextnameof] = ACTIONS(1513), + [anon_sym_DOLLARnameof] = ACTIONS(1513), + [anon_sym_DOLLARoffsetof] = ACTIONS(1513), + [anon_sym_DOLLARqnameof] = ACTIONS(1513), + [anon_sym_DOLLARvaconst] = ACTIONS(1513), + [anon_sym_DOLLARvaarg] = ACTIONS(1513), + [anon_sym_DOLLARvaref] = ACTIONS(1513), + [anon_sym_DOLLARvaexpr] = ACTIONS(1513), + [anon_sym_true] = ACTIONS(1513), + [anon_sym_false] = ACTIONS(1513), + [anon_sym_null] = ACTIONS(1513), + [anon_sym_DOLLARvacount] = ACTIONS(1513), + [anon_sym_DOLLARappend] = ACTIONS(1513), + [anon_sym_DOLLARconcat] = ACTIONS(1513), + [anon_sym_DOLLAReval] = ACTIONS(1513), + [anon_sym_DOLLARis_const] = ACTIONS(1513), + [anon_sym_DOLLARsizeof] = ACTIONS(1513), + [anon_sym_DOLLARstringify] = ACTIONS(1513), + [anon_sym_DOLLARand] = ACTIONS(1513), + [anon_sym_DOLLARdefined] = ACTIONS(1513), + [anon_sym_DOLLARembed] = ACTIONS(1513), + [anon_sym_DOLLARor] = ACTIONS(1513), + [anon_sym_DOLLARfeature] = ACTIONS(1513), + [anon_sym_DOLLARassignable] = ACTIONS(1513), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_typeid] = ACTIONS(1513), + [anon_sym_LBRACE_PIPE] = ACTIONS(1515), + [anon_sym_void] = ACTIONS(1513), + [anon_sym_bool] = ACTIONS(1513), + [anon_sym_char] = ACTIONS(1513), + [anon_sym_ichar] = ACTIONS(1513), + [anon_sym_short] = ACTIONS(1513), + [anon_sym_ushort] = ACTIONS(1513), + [anon_sym_uint] = ACTIONS(1513), + [anon_sym_long] = ACTIONS(1513), + [anon_sym_ulong] = ACTIONS(1513), + [anon_sym_int128] = ACTIONS(1513), + [anon_sym_uint128] = ACTIONS(1513), + [anon_sym_float] = ACTIONS(1513), + [anon_sym_double] = ACTIONS(1513), + [anon_sym_float16] = ACTIONS(1513), + [anon_sym_bfloat16] = ACTIONS(1513), + [anon_sym_float128] = ACTIONS(1513), + [anon_sym_iptr] = ACTIONS(1513), + [anon_sym_uptr] = ACTIONS(1513), + [anon_sym_isz] = ACTIONS(1513), + [anon_sym_usz] = ACTIONS(1513), + [anon_sym_anyfault] = ACTIONS(1513), + [anon_sym_any] = ACTIONS(1513), + [anon_sym_DOLLARtypeof] = ACTIONS(1513), + [anon_sym_DOLLARtypefrom] = ACTIONS(1513), + [anon_sym_DOLLARvatype] = ACTIONS(1513), + [anon_sym_DOLLARevaltype] = ACTIONS(1513), + [sym_real_literal] = ACTIONS(1515), }, [708] = { [sym_line_comment] = STATE(708), [sym_doc_comment] = STATE(708), [sym_block_comment] = STATE(708), - [sym_ident] = ACTIONS(1612), - [sym_integer_literal] = ACTIONS(1614), - [anon_sym_SQUOTE] = ACTIONS(1614), - [anon_sym_DQUOTE] = ACTIONS(1614), - [anon_sym_BQUOTE] = ACTIONS(1614), - [sym_bytes_literal] = ACTIONS(1614), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1612), - [sym_at_ident] = ACTIONS(1614), - [sym_hash_ident] = ACTIONS(1614), - [sym_type_ident] = ACTIONS(1614), - [sym_ct_type_ident] = ACTIONS(1614), - [sym_const_ident] = ACTIONS(1612), - [sym_builtin] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_static] = ACTIONS(1612), - [anon_sym_tlocal] = ACTIONS(1612), - [anon_sym_SEMI] = ACTIONS(1614), - [anon_sym_fn] = ACTIONS(1612), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_const] = ACTIONS(1612), - [anon_sym_var] = ACTIONS(1612), - [anon_sym_return] = ACTIONS(1612), - [anon_sym_continue] = ACTIONS(1612), - [anon_sym_break] = ACTIONS(1612), - [anon_sym_defer] = ACTIONS(1612), - [anon_sym_assert] = ACTIONS(1612), - [anon_sym_nextcase] = ACTIONS(1612), - [anon_sym_switch] = ACTIONS(1612), - [anon_sym_AMP_AMP] = ACTIONS(1614), - [anon_sym_if] = ACTIONS(1612), - [anon_sym_for] = ACTIONS(1612), - [anon_sym_foreach] = ACTIONS(1612), - [anon_sym_foreach_r] = ACTIONS(1612), - [anon_sym_while] = ACTIONS(1612), - [anon_sym_do] = ACTIONS(1612), - [anon_sym_int] = ACTIONS(1612), - [anon_sym_PLUS] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1612), - [anon_sym_STAR] = ACTIONS(1614), - [anon_sym_asm] = ACTIONS(1612), - [anon_sym_DOLLARassert] = ACTIONS(1612), - [anon_sym_DOLLARerror] = ACTIONS(1612), - [anon_sym_DOLLARecho] = ACTIONS(1612), - [anon_sym_DOLLARif] = ACTIONS(1612), - [anon_sym_DOLLARswitch] = ACTIONS(1612), - [anon_sym_DOLLARfor] = ACTIONS(1612), - [anon_sym_DOLLARforeach] = ACTIONS(1612), - [anon_sym_DOLLARendforeach] = ACTIONS(1612), - [anon_sym_DOLLARalignof] = ACTIONS(1612), - [anon_sym_DOLLARextnameof] = ACTIONS(1612), - [anon_sym_DOLLARnameof] = ACTIONS(1612), - [anon_sym_DOLLARoffsetof] = ACTIONS(1612), - [anon_sym_DOLLARqnameof] = ACTIONS(1612), - [anon_sym_DOLLARvaconst] = ACTIONS(1612), - [anon_sym_DOLLARvaarg] = ACTIONS(1612), - [anon_sym_DOLLARvaref] = ACTIONS(1612), - [anon_sym_DOLLARvaexpr] = ACTIONS(1612), - [anon_sym_true] = ACTIONS(1612), - [anon_sym_false] = ACTIONS(1612), - [anon_sym_null] = ACTIONS(1612), - [anon_sym_DOLLARvacount] = ACTIONS(1612), - [anon_sym_DOLLARappend] = ACTIONS(1612), - [anon_sym_DOLLARconcat] = ACTIONS(1612), - [anon_sym_DOLLAReval] = ACTIONS(1612), - [anon_sym_DOLLARis_const] = ACTIONS(1612), - [anon_sym_DOLLARsizeof] = ACTIONS(1612), - [anon_sym_DOLLARstringify] = ACTIONS(1612), - [anon_sym_DOLLARand] = ACTIONS(1612), - [anon_sym_DOLLARdefined] = ACTIONS(1612), - [anon_sym_DOLLARembed] = ACTIONS(1612), - [anon_sym_DOLLARor] = ACTIONS(1612), - [anon_sym_DOLLARfeature] = ACTIONS(1612), - [anon_sym_DOLLARassignable] = ACTIONS(1612), - [anon_sym_BANG] = ACTIONS(1614), - [anon_sym_TILDE] = ACTIONS(1614), - [anon_sym_PLUS_PLUS] = ACTIONS(1614), - [anon_sym_DASH_DASH] = ACTIONS(1614), - [anon_sym_typeid] = ACTIONS(1612), - [anon_sym_LBRACE_PIPE] = ACTIONS(1614), - [anon_sym_void] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_ichar] = ACTIONS(1612), - [anon_sym_short] = ACTIONS(1612), - [anon_sym_ushort] = ACTIONS(1612), - [anon_sym_uint] = ACTIONS(1612), - [anon_sym_long] = ACTIONS(1612), - [anon_sym_ulong] = ACTIONS(1612), - [anon_sym_int128] = ACTIONS(1612), - [anon_sym_uint128] = ACTIONS(1612), - [anon_sym_float] = ACTIONS(1612), - [anon_sym_double] = ACTIONS(1612), - [anon_sym_float16] = ACTIONS(1612), - [anon_sym_bfloat16] = ACTIONS(1612), - [anon_sym_float128] = ACTIONS(1612), - [anon_sym_iptr] = ACTIONS(1612), - [anon_sym_uptr] = ACTIONS(1612), - [anon_sym_isz] = ACTIONS(1612), - [anon_sym_usz] = ACTIONS(1612), - [anon_sym_anyfault] = ACTIONS(1612), - [anon_sym_any] = ACTIONS(1612), - [anon_sym_DOLLARtypeof] = ACTIONS(1612), - [anon_sym_DOLLARtypefrom] = ACTIONS(1612), - [anon_sym_DOLLARvatype] = ACTIONS(1612), - [anon_sym_DOLLARevaltype] = ACTIONS(1612), - [sym_real_literal] = ACTIONS(1614), + [sym_ident] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1523), + [anon_sym_SQUOTE] = ACTIONS(1523), + [anon_sym_DQUOTE] = ACTIONS(1523), + [anon_sym_BQUOTE] = ACTIONS(1523), + [sym_bytes_literal] = ACTIONS(1523), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1521), + [sym_at_ident] = ACTIONS(1523), + [sym_hash_ident] = ACTIONS(1523), + [sym_type_ident] = ACTIONS(1523), + [sym_ct_type_ident] = ACTIONS(1523), + [sym_const_ident] = ACTIONS(1521), + [sym_builtin] = ACTIONS(1523), + [anon_sym_LPAREN] = ACTIONS(1523), + [anon_sym_AMP] = ACTIONS(1521), + [anon_sym_static] = ACTIONS(1521), + [anon_sym_tlocal] = ACTIONS(1521), + [anon_sym_SEMI] = ACTIONS(1523), + [anon_sym_fn] = ACTIONS(1521), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_const] = ACTIONS(1521), + [anon_sym_var] = ACTIONS(1521), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_continue] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1521), + [anon_sym_defer] = ACTIONS(1521), + [anon_sym_assert] = ACTIONS(1521), + [anon_sym_nextcase] = ACTIONS(1521), + [anon_sym_switch] = ACTIONS(1521), + [anon_sym_AMP_AMP] = ACTIONS(1523), + [anon_sym_if] = ACTIONS(1521), + [anon_sym_for] = ACTIONS(1521), + [anon_sym_foreach] = ACTIONS(1521), + [anon_sym_foreach_r] = ACTIONS(1521), + [anon_sym_while] = ACTIONS(1521), + [anon_sym_do] = ACTIONS(1521), + [anon_sym_int] = ACTIONS(1521), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), + [anon_sym_asm] = ACTIONS(1521), + [anon_sym_DOLLARassert] = ACTIONS(1521), + [anon_sym_DOLLARerror] = ACTIONS(1521), + [anon_sym_DOLLARecho] = ACTIONS(1521), + [anon_sym_DOLLARif] = ACTIONS(1521), + [anon_sym_DOLLARswitch] = ACTIONS(1521), + [anon_sym_DOLLARfor] = ACTIONS(1521), + [anon_sym_DOLLARforeach] = ACTIONS(1521), + [anon_sym_DOLLARendforeach] = ACTIONS(1521), + [anon_sym_DOLLARalignof] = ACTIONS(1521), + [anon_sym_DOLLARextnameof] = ACTIONS(1521), + [anon_sym_DOLLARnameof] = ACTIONS(1521), + [anon_sym_DOLLARoffsetof] = ACTIONS(1521), + [anon_sym_DOLLARqnameof] = ACTIONS(1521), + [anon_sym_DOLLARvaconst] = ACTIONS(1521), + [anon_sym_DOLLARvaarg] = ACTIONS(1521), + [anon_sym_DOLLARvaref] = ACTIONS(1521), + [anon_sym_DOLLARvaexpr] = ACTIONS(1521), + [anon_sym_true] = ACTIONS(1521), + [anon_sym_false] = ACTIONS(1521), + [anon_sym_null] = ACTIONS(1521), + [anon_sym_DOLLARvacount] = ACTIONS(1521), + [anon_sym_DOLLARappend] = ACTIONS(1521), + [anon_sym_DOLLARconcat] = ACTIONS(1521), + [anon_sym_DOLLAReval] = ACTIONS(1521), + [anon_sym_DOLLARis_const] = ACTIONS(1521), + [anon_sym_DOLLARsizeof] = ACTIONS(1521), + [anon_sym_DOLLARstringify] = ACTIONS(1521), + [anon_sym_DOLLARand] = ACTIONS(1521), + [anon_sym_DOLLARdefined] = ACTIONS(1521), + [anon_sym_DOLLARembed] = ACTIONS(1521), + [anon_sym_DOLLARor] = ACTIONS(1521), + [anon_sym_DOLLARfeature] = ACTIONS(1521), + [anon_sym_DOLLARassignable] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1523), + [anon_sym_TILDE] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_typeid] = ACTIONS(1521), + [anon_sym_LBRACE_PIPE] = ACTIONS(1523), + [anon_sym_void] = ACTIONS(1521), + [anon_sym_bool] = ACTIONS(1521), + [anon_sym_char] = ACTIONS(1521), + [anon_sym_ichar] = ACTIONS(1521), + [anon_sym_short] = ACTIONS(1521), + [anon_sym_ushort] = ACTIONS(1521), + [anon_sym_uint] = ACTIONS(1521), + [anon_sym_long] = ACTIONS(1521), + [anon_sym_ulong] = ACTIONS(1521), + [anon_sym_int128] = ACTIONS(1521), + [anon_sym_uint128] = ACTIONS(1521), + [anon_sym_float] = ACTIONS(1521), + [anon_sym_double] = ACTIONS(1521), + [anon_sym_float16] = ACTIONS(1521), + [anon_sym_bfloat16] = ACTIONS(1521), + [anon_sym_float128] = ACTIONS(1521), + [anon_sym_iptr] = ACTIONS(1521), + [anon_sym_uptr] = ACTIONS(1521), + [anon_sym_isz] = ACTIONS(1521), + [anon_sym_usz] = ACTIONS(1521), + [anon_sym_anyfault] = ACTIONS(1521), + [anon_sym_any] = ACTIONS(1521), + [anon_sym_DOLLARtypeof] = ACTIONS(1521), + [anon_sym_DOLLARtypefrom] = ACTIONS(1521), + [anon_sym_DOLLARvatype] = ACTIONS(1521), + [anon_sym_DOLLARevaltype] = ACTIONS(1521), + [sym_real_literal] = ACTIONS(1523), }, [709] = { [sym_line_comment] = STATE(709), [sym_doc_comment] = STATE(709), [sym_block_comment] = STATE(709), - [sym_ident] = ACTIONS(1556), - [sym_integer_literal] = ACTIONS(1558), - [anon_sym_SQUOTE] = ACTIONS(1558), - [anon_sym_DQUOTE] = ACTIONS(1558), - [anon_sym_BQUOTE] = ACTIONS(1558), - [sym_bytes_literal] = ACTIONS(1558), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1556), - [sym_at_ident] = ACTIONS(1558), - [sym_hash_ident] = ACTIONS(1558), - [sym_type_ident] = ACTIONS(1558), - [sym_ct_type_ident] = ACTIONS(1558), - [sym_const_ident] = ACTIONS(1556), - [sym_builtin] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1558), - [anon_sym_AMP] = ACTIONS(1556), - [anon_sym_static] = ACTIONS(1556), - [anon_sym_tlocal] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1558), - [anon_sym_fn] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_const] = ACTIONS(1556), - [anon_sym_var] = ACTIONS(1556), - [anon_sym_return] = ACTIONS(1556), - [anon_sym_continue] = ACTIONS(1556), - [anon_sym_break] = ACTIONS(1556), - [anon_sym_defer] = ACTIONS(1556), - [anon_sym_assert] = ACTIONS(1556), - [anon_sym_nextcase] = ACTIONS(1556), - [anon_sym_switch] = ACTIONS(1556), - [anon_sym_AMP_AMP] = ACTIONS(1558), - [anon_sym_if] = ACTIONS(1556), - [anon_sym_for] = ACTIONS(1556), - [anon_sym_foreach] = ACTIONS(1556), - [anon_sym_foreach_r] = ACTIONS(1556), - [anon_sym_while] = ACTIONS(1556), - [anon_sym_do] = ACTIONS(1556), - [anon_sym_int] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1558), - [anon_sym_asm] = ACTIONS(1556), - [anon_sym_DOLLARassert] = ACTIONS(1556), - [anon_sym_DOLLARerror] = ACTIONS(1556), - [anon_sym_DOLLARecho] = ACTIONS(1556), - [anon_sym_DOLLARif] = ACTIONS(1556), - [anon_sym_DOLLARswitch] = ACTIONS(1556), - [anon_sym_DOLLARfor] = ACTIONS(1556), - [anon_sym_DOLLARforeach] = ACTIONS(1556), - [anon_sym_DOLLARendforeach] = ACTIONS(1556), - [anon_sym_DOLLARalignof] = ACTIONS(1556), - [anon_sym_DOLLARextnameof] = ACTIONS(1556), - [anon_sym_DOLLARnameof] = ACTIONS(1556), - [anon_sym_DOLLARoffsetof] = ACTIONS(1556), - [anon_sym_DOLLARqnameof] = ACTIONS(1556), - [anon_sym_DOLLARvaconst] = ACTIONS(1556), - [anon_sym_DOLLARvaarg] = ACTIONS(1556), - [anon_sym_DOLLARvaref] = ACTIONS(1556), - [anon_sym_DOLLARvaexpr] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [anon_sym_DOLLARvacount] = ACTIONS(1556), - [anon_sym_DOLLARappend] = ACTIONS(1556), - [anon_sym_DOLLARconcat] = ACTIONS(1556), - [anon_sym_DOLLAReval] = ACTIONS(1556), - [anon_sym_DOLLARis_const] = ACTIONS(1556), - [anon_sym_DOLLARsizeof] = ACTIONS(1556), - [anon_sym_DOLLARstringify] = ACTIONS(1556), - [anon_sym_DOLLARand] = ACTIONS(1556), - [anon_sym_DOLLARdefined] = ACTIONS(1556), - [anon_sym_DOLLARembed] = ACTIONS(1556), - [anon_sym_DOLLARor] = ACTIONS(1556), - [anon_sym_DOLLARfeature] = ACTIONS(1556), - [anon_sym_DOLLARassignable] = ACTIONS(1556), - [anon_sym_BANG] = ACTIONS(1558), - [anon_sym_TILDE] = ACTIONS(1558), - [anon_sym_PLUS_PLUS] = ACTIONS(1558), - [anon_sym_DASH_DASH] = ACTIONS(1558), - [anon_sym_typeid] = ACTIONS(1556), - [anon_sym_LBRACE_PIPE] = ACTIONS(1558), - [anon_sym_void] = ACTIONS(1556), - [anon_sym_bool] = ACTIONS(1556), - [anon_sym_char] = ACTIONS(1556), - [anon_sym_ichar] = ACTIONS(1556), - [anon_sym_short] = ACTIONS(1556), - [anon_sym_ushort] = ACTIONS(1556), - [anon_sym_uint] = ACTIONS(1556), - [anon_sym_long] = ACTIONS(1556), - [anon_sym_ulong] = ACTIONS(1556), - [anon_sym_int128] = ACTIONS(1556), - [anon_sym_uint128] = ACTIONS(1556), - [anon_sym_float] = ACTIONS(1556), - [anon_sym_double] = ACTIONS(1556), - [anon_sym_float16] = ACTIONS(1556), - [anon_sym_bfloat16] = ACTIONS(1556), - [anon_sym_float128] = ACTIONS(1556), - [anon_sym_iptr] = ACTIONS(1556), - [anon_sym_uptr] = ACTIONS(1556), - [anon_sym_isz] = ACTIONS(1556), - [anon_sym_usz] = ACTIONS(1556), - [anon_sym_anyfault] = ACTIONS(1556), - [anon_sym_any] = ACTIONS(1556), - [anon_sym_DOLLARtypeof] = ACTIONS(1556), - [anon_sym_DOLLARtypefrom] = ACTIONS(1556), - [anon_sym_DOLLARvatype] = ACTIONS(1556), - [anon_sym_DOLLARevaltype] = ACTIONS(1556), - [sym_real_literal] = ACTIONS(1558), + [sym_ident] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1527), + [anon_sym_SQUOTE] = ACTIONS(1527), + [anon_sym_DQUOTE] = ACTIONS(1527), + [anon_sym_BQUOTE] = ACTIONS(1527), + [sym_bytes_literal] = ACTIONS(1527), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1525), + [sym_at_ident] = ACTIONS(1527), + [sym_hash_ident] = ACTIONS(1527), + [sym_type_ident] = ACTIONS(1527), + [sym_ct_type_ident] = ACTIONS(1527), + [sym_const_ident] = ACTIONS(1525), + [sym_builtin] = ACTIONS(1527), + [anon_sym_LPAREN] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_static] = ACTIONS(1525), + [anon_sym_tlocal] = ACTIONS(1525), + [anon_sym_SEMI] = ACTIONS(1527), + [anon_sym_fn] = ACTIONS(1525), + [anon_sym_LBRACE] = ACTIONS(1525), + [anon_sym_const] = ACTIONS(1525), + [anon_sym_var] = ACTIONS(1525), + [anon_sym_return] = ACTIONS(1525), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_break] = ACTIONS(1525), + [anon_sym_defer] = ACTIONS(1525), + [anon_sym_assert] = ACTIONS(1525), + [anon_sym_nextcase] = ACTIONS(1525), + [anon_sym_switch] = ACTIONS(1525), + [anon_sym_AMP_AMP] = ACTIONS(1527), + [anon_sym_if] = ACTIONS(1525), + [anon_sym_for] = ACTIONS(1525), + [anon_sym_foreach] = ACTIONS(1525), + [anon_sym_foreach_r] = ACTIONS(1525), + [anon_sym_while] = ACTIONS(1525), + [anon_sym_do] = ACTIONS(1525), + [anon_sym_int] = ACTIONS(1525), + [anon_sym_PLUS] = ACTIONS(1525), + [anon_sym_DASH] = ACTIONS(1525), + [anon_sym_STAR] = ACTIONS(1527), + [anon_sym_asm] = ACTIONS(1525), + [anon_sym_DOLLARassert] = ACTIONS(1525), + [anon_sym_DOLLARerror] = ACTIONS(1525), + [anon_sym_DOLLARecho] = ACTIONS(1525), + [anon_sym_DOLLARif] = ACTIONS(1525), + [anon_sym_DOLLARswitch] = ACTIONS(1525), + [anon_sym_DOLLARfor] = ACTIONS(1525), + [anon_sym_DOLLARforeach] = ACTIONS(1525), + [anon_sym_DOLLARendforeach] = ACTIONS(1525), + [anon_sym_DOLLARalignof] = ACTIONS(1525), + [anon_sym_DOLLARextnameof] = ACTIONS(1525), + [anon_sym_DOLLARnameof] = ACTIONS(1525), + [anon_sym_DOLLARoffsetof] = ACTIONS(1525), + [anon_sym_DOLLARqnameof] = ACTIONS(1525), + [anon_sym_DOLLARvaconst] = ACTIONS(1525), + [anon_sym_DOLLARvaarg] = ACTIONS(1525), + [anon_sym_DOLLARvaref] = ACTIONS(1525), + [anon_sym_DOLLARvaexpr] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(1525), + [anon_sym_false] = ACTIONS(1525), + [anon_sym_null] = ACTIONS(1525), + [anon_sym_DOLLARvacount] = ACTIONS(1525), + [anon_sym_DOLLARappend] = ACTIONS(1525), + [anon_sym_DOLLARconcat] = ACTIONS(1525), + [anon_sym_DOLLAReval] = ACTIONS(1525), + [anon_sym_DOLLARis_const] = ACTIONS(1525), + [anon_sym_DOLLARsizeof] = ACTIONS(1525), + [anon_sym_DOLLARstringify] = ACTIONS(1525), + [anon_sym_DOLLARand] = ACTIONS(1525), + [anon_sym_DOLLARdefined] = ACTIONS(1525), + [anon_sym_DOLLARembed] = ACTIONS(1525), + [anon_sym_DOLLARor] = ACTIONS(1525), + [anon_sym_DOLLARfeature] = ACTIONS(1525), + [anon_sym_DOLLARassignable] = ACTIONS(1525), + [anon_sym_BANG] = ACTIONS(1527), + [anon_sym_TILDE] = ACTIONS(1527), + [anon_sym_PLUS_PLUS] = ACTIONS(1527), + [anon_sym_DASH_DASH] = ACTIONS(1527), + [anon_sym_typeid] = ACTIONS(1525), + [anon_sym_LBRACE_PIPE] = ACTIONS(1527), + [anon_sym_void] = ACTIONS(1525), + [anon_sym_bool] = ACTIONS(1525), + [anon_sym_char] = ACTIONS(1525), + [anon_sym_ichar] = ACTIONS(1525), + [anon_sym_short] = ACTIONS(1525), + [anon_sym_ushort] = ACTIONS(1525), + [anon_sym_uint] = ACTIONS(1525), + [anon_sym_long] = ACTIONS(1525), + [anon_sym_ulong] = ACTIONS(1525), + [anon_sym_int128] = ACTIONS(1525), + [anon_sym_uint128] = ACTIONS(1525), + [anon_sym_float] = ACTIONS(1525), + [anon_sym_double] = ACTIONS(1525), + [anon_sym_float16] = ACTIONS(1525), + [anon_sym_bfloat16] = ACTIONS(1525), + [anon_sym_float128] = ACTIONS(1525), + [anon_sym_iptr] = ACTIONS(1525), + [anon_sym_uptr] = ACTIONS(1525), + [anon_sym_isz] = ACTIONS(1525), + [anon_sym_usz] = ACTIONS(1525), + [anon_sym_anyfault] = ACTIONS(1525), + [anon_sym_any] = ACTIONS(1525), + [anon_sym_DOLLARtypeof] = ACTIONS(1525), + [anon_sym_DOLLARtypefrom] = ACTIONS(1525), + [anon_sym_DOLLARvatype] = ACTIONS(1525), + [anon_sym_DOLLARevaltype] = ACTIONS(1525), + [sym_real_literal] = ACTIONS(1527), }, [710] = { [sym_line_comment] = STATE(710), [sym_doc_comment] = STATE(710), [sym_block_comment] = STATE(710), - [sym_ident] = ACTIONS(1406), - [sym_integer_literal] = ACTIONS(1408), - [anon_sym_SQUOTE] = ACTIONS(1408), - [anon_sym_DQUOTE] = ACTIONS(1408), - [anon_sym_BQUOTE] = ACTIONS(1408), - [sym_bytes_literal] = ACTIONS(1408), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1406), - [sym_at_ident] = ACTIONS(1408), - [sym_hash_ident] = ACTIONS(1408), - [sym_type_ident] = ACTIONS(1408), - [sym_ct_type_ident] = ACTIONS(1408), - [sym_const_ident] = ACTIONS(1406), - [sym_builtin] = ACTIONS(1408), - [anon_sym_LPAREN] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(1406), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_tlocal] = ACTIONS(1406), - [anon_sym_SEMI] = ACTIONS(1408), - [anon_sym_fn] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1406), - [anon_sym_const] = ACTIONS(1406), - [anon_sym_var] = ACTIONS(1406), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_defer] = ACTIONS(1406), - [anon_sym_assert] = ACTIONS(1406), - [anon_sym_nextcase] = ACTIONS(1406), - [anon_sym_switch] = ACTIONS(1406), - [anon_sym_AMP_AMP] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_for] = ACTIONS(1406), - [anon_sym_foreach] = ACTIONS(1406), - [anon_sym_foreach_r] = ACTIONS(1406), - [anon_sym_while] = ACTIONS(1406), - [anon_sym_do] = ACTIONS(1406), - [anon_sym_int] = ACTIONS(1406), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_asm] = ACTIONS(1406), - [anon_sym_DOLLARassert] = ACTIONS(1406), - [anon_sym_DOLLARerror] = ACTIONS(1406), - [anon_sym_DOLLARecho] = ACTIONS(1406), - [anon_sym_DOLLARif] = ACTIONS(1406), - [anon_sym_DOLLARswitch] = ACTIONS(1406), - [anon_sym_DOLLARfor] = ACTIONS(1406), - [anon_sym_DOLLARforeach] = ACTIONS(1406), - [anon_sym_DOLLARendforeach] = ACTIONS(1406), - [anon_sym_DOLLARalignof] = ACTIONS(1406), - [anon_sym_DOLLARextnameof] = ACTIONS(1406), - [anon_sym_DOLLARnameof] = ACTIONS(1406), - [anon_sym_DOLLARoffsetof] = ACTIONS(1406), - [anon_sym_DOLLARqnameof] = ACTIONS(1406), - [anon_sym_DOLLARvaconst] = ACTIONS(1406), - [anon_sym_DOLLARvaarg] = ACTIONS(1406), - [anon_sym_DOLLARvaref] = ACTIONS(1406), - [anon_sym_DOLLARvaexpr] = ACTIONS(1406), - [anon_sym_true] = ACTIONS(1406), - [anon_sym_false] = ACTIONS(1406), - [anon_sym_null] = ACTIONS(1406), - [anon_sym_DOLLARvacount] = ACTIONS(1406), - [anon_sym_DOLLARappend] = ACTIONS(1406), - [anon_sym_DOLLARconcat] = ACTIONS(1406), - [anon_sym_DOLLAReval] = ACTIONS(1406), - [anon_sym_DOLLARis_const] = ACTIONS(1406), - [anon_sym_DOLLARsizeof] = ACTIONS(1406), - [anon_sym_DOLLARstringify] = ACTIONS(1406), - [anon_sym_DOLLARand] = ACTIONS(1406), - [anon_sym_DOLLARdefined] = ACTIONS(1406), - [anon_sym_DOLLARembed] = ACTIONS(1406), - [anon_sym_DOLLARor] = ACTIONS(1406), - [anon_sym_DOLLARfeature] = ACTIONS(1406), - [anon_sym_DOLLARassignable] = ACTIONS(1406), - [anon_sym_BANG] = ACTIONS(1408), - [anon_sym_TILDE] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1408), - [anon_sym_DASH_DASH] = ACTIONS(1408), - [anon_sym_typeid] = ACTIONS(1406), - [anon_sym_LBRACE_PIPE] = ACTIONS(1408), - [anon_sym_void] = ACTIONS(1406), - [anon_sym_bool] = ACTIONS(1406), - [anon_sym_char] = ACTIONS(1406), - [anon_sym_ichar] = ACTIONS(1406), - [anon_sym_short] = ACTIONS(1406), - [anon_sym_ushort] = ACTIONS(1406), - [anon_sym_uint] = ACTIONS(1406), - [anon_sym_long] = ACTIONS(1406), - [anon_sym_ulong] = ACTIONS(1406), - [anon_sym_int128] = ACTIONS(1406), - [anon_sym_uint128] = ACTIONS(1406), - [anon_sym_float] = ACTIONS(1406), - [anon_sym_double] = ACTIONS(1406), - [anon_sym_float16] = ACTIONS(1406), - [anon_sym_bfloat16] = ACTIONS(1406), - [anon_sym_float128] = ACTIONS(1406), - [anon_sym_iptr] = ACTIONS(1406), - [anon_sym_uptr] = ACTIONS(1406), - [anon_sym_isz] = ACTIONS(1406), - [anon_sym_usz] = ACTIONS(1406), - [anon_sym_anyfault] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_DOLLARtypeof] = ACTIONS(1406), - [anon_sym_DOLLARtypefrom] = ACTIONS(1406), - [anon_sym_DOLLARvatype] = ACTIONS(1406), - [anon_sym_DOLLARevaltype] = ACTIONS(1406), - [sym_real_literal] = ACTIONS(1408), + [sym_ident] = ACTIONS(1529), + [sym_integer_literal] = ACTIONS(1531), + [anon_sym_SQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [anon_sym_BQUOTE] = ACTIONS(1531), + [sym_bytes_literal] = ACTIONS(1531), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1529), + [sym_at_ident] = ACTIONS(1531), + [sym_hash_ident] = ACTIONS(1531), + [sym_type_ident] = ACTIONS(1531), + [sym_ct_type_ident] = ACTIONS(1531), + [sym_const_ident] = ACTIONS(1529), + [sym_builtin] = ACTIONS(1531), + [anon_sym_LPAREN] = ACTIONS(1531), + [anon_sym_AMP] = ACTIONS(1529), + [anon_sym_static] = ACTIONS(1529), + [anon_sym_tlocal] = ACTIONS(1529), + [anon_sym_SEMI] = ACTIONS(1531), + [anon_sym_fn] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1529), + [anon_sym_const] = ACTIONS(1529), + [anon_sym_var] = ACTIONS(1529), + [anon_sym_return] = ACTIONS(1529), + [anon_sym_continue] = ACTIONS(1529), + [anon_sym_break] = ACTIONS(1529), + [anon_sym_defer] = ACTIONS(1529), + [anon_sym_assert] = ACTIONS(1529), + [anon_sym_nextcase] = ACTIONS(1529), + [anon_sym_switch] = ACTIONS(1529), + [anon_sym_AMP_AMP] = ACTIONS(1531), + [anon_sym_if] = ACTIONS(1529), + [anon_sym_for] = ACTIONS(1529), + [anon_sym_foreach] = ACTIONS(1529), + [anon_sym_foreach_r] = ACTIONS(1529), + [anon_sym_while] = ACTIONS(1529), + [anon_sym_do] = ACTIONS(1529), + [anon_sym_int] = ACTIONS(1529), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_STAR] = ACTIONS(1531), + [anon_sym_asm] = ACTIONS(1529), + [anon_sym_DOLLARassert] = ACTIONS(1529), + [anon_sym_DOLLARerror] = ACTIONS(1529), + [anon_sym_DOLLARecho] = ACTIONS(1529), + [anon_sym_DOLLARif] = ACTIONS(1529), + [anon_sym_DOLLARswitch] = ACTIONS(1529), + [anon_sym_DOLLARfor] = ACTIONS(1529), + [anon_sym_DOLLARforeach] = ACTIONS(1529), + [anon_sym_DOLLARendforeach] = ACTIONS(1529), + [anon_sym_DOLLARalignof] = ACTIONS(1529), + [anon_sym_DOLLARextnameof] = ACTIONS(1529), + [anon_sym_DOLLARnameof] = ACTIONS(1529), + [anon_sym_DOLLARoffsetof] = ACTIONS(1529), + [anon_sym_DOLLARqnameof] = ACTIONS(1529), + [anon_sym_DOLLARvaconst] = ACTIONS(1529), + [anon_sym_DOLLARvaarg] = ACTIONS(1529), + [anon_sym_DOLLARvaref] = ACTIONS(1529), + [anon_sym_DOLLARvaexpr] = ACTIONS(1529), + [anon_sym_true] = ACTIONS(1529), + [anon_sym_false] = ACTIONS(1529), + [anon_sym_null] = ACTIONS(1529), + [anon_sym_DOLLARvacount] = ACTIONS(1529), + [anon_sym_DOLLARappend] = ACTIONS(1529), + [anon_sym_DOLLARconcat] = ACTIONS(1529), + [anon_sym_DOLLAReval] = ACTIONS(1529), + [anon_sym_DOLLARis_const] = ACTIONS(1529), + [anon_sym_DOLLARsizeof] = ACTIONS(1529), + [anon_sym_DOLLARstringify] = ACTIONS(1529), + [anon_sym_DOLLARand] = ACTIONS(1529), + [anon_sym_DOLLARdefined] = ACTIONS(1529), + [anon_sym_DOLLARembed] = ACTIONS(1529), + [anon_sym_DOLLARor] = ACTIONS(1529), + [anon_sym_DOLLARfeature] = ACTIONS(1529), + [anon_sym_DOLLARassignable] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1531), + [anon_sym_TILDE] = ACTIONS(1531), + [anon_sym_PLUS_PLUS] = ACTIONS(1531), + [anon_sym_DASH_DASH] = ACTIONS(1531), + [anon_sym_typeid] = ACTIONS(1529), + [anon_sym_LBRACE_PIPE] = ACTIONS(1531), + [anon_sym_void] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_ichar] = ACTIONS(1529), + [anon_sym_short] = ACTIONS(1529), + [anon_sym_ushort] = ACTIONS(1529), + [anon_sym_uint] = ACTIONS(1529), + [anon_sym_long] = ACTIONS(1529), + [anon_sym_ulong] = ACTIONS(1529), + [anon_sym_int128] = ACTIONS(1529), + [anon_sym_uint128] = ACTIONS(1529), + [anon_sym_float] = ACTIONS(1529), + [anon_sym_double] = ACTIONS(1529), + [anon_sym_float16] = ACTIONS(1529), + [anon_sym_bfloat16] = ACTIONS(1529), + [anon_sym_float128] = ACTIONS(1529), + [anon_sym_iptr] = ACTIONS(1529), + [anon_sym_uptr] = ACTIONS(1529), + [anon_sym_isz] = ACTIONS(1529), + [anon_sym_usz] = ACTIONS(1529), + [anon_sym_anyfault] = ACTIONS(1529), + [anon_sym_any] = ACTIONS(1529), + [anon_sym_DOLLARtypeof] = ACTIONS(1529), + [anon_sym_DOLLARtypefrom] = ACTIONS(1529), + [anon_sym_DOLLARvatype] = ACTIONS(1529), + [anon_sym_DOLLARevaltype] = ACTIONS(1529), + [sym_real_literal] = ACTIONS(1531), }, [711] = { [sym_line_comment] = STATE(711), [sym_doc_comment] = STATE(711), [sym_block_comment] = STATE(711), - [sym_ident] = ACTIONS(1512), - [sym_integer_literal] = ACTIONS(1514), - [anon_sym_SQUOTE] = ACTIONS(1514), - [anon_sym_DQUOTE] = ACTIONS(1514), - [anon_sym_BQUOTE] = ACTIONS(1514), - [sym_bytes_literal] = ACTIONS(1514), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1512), - [sym_at_ident] = ACTIONS(1514), - [sym_hash_ident] = ACTIONS(1514), - [sym_type_ident] = ACTIONS(1514), - [sym_ct_type_ident] = ACTIONS(1514), - [sym_const_ident] = ACTIONS(1512), - [sym_builtin] = ACTIONS(1514), - [anon_sym_LPAREN] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(1512), - [anon_sym_static] = ACTIONS(1512), - [anon_sym_tlocal] = ACTIONS(1512), - [anon_sym_SEMI] = ACTIONS(1514), - [anon_sym_fn] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(1512), - [anon_sym_const] = ACTIONS(1512), - [anon_sym_var] = ACTIONS(1512), - [anon_sym_return] = ACTIONS(1512), - [anon_sym_continue] = ACTIONS(1512), - [anon_sym_break] = ACTIONS(1512), - [anon_sym_defer] = ACTIONS(1512), - [anon_sym_assert] = ACTIONS(1512), - [anon_sym_nextcase] = ACTIONS(1512), - [anon_sym_switch] = ACTIONS(1512), - [anon_sym_AMP_AMP] = ACTIONS(1514), - [anon_sym_if] = ACTIONS(1512), - [anon_sym_for] = ACTIONS(1512), - [anon_sym_foreach] = ACTIONS(1512), - [anon_sym_foreach_r] = ACTIONS(1512), - [anon_sym_while] = ACTIONS(1512), - [anon_sym_do] = ACTIONS(1512), - [anon_sym_int] = ACTIONS(1512), - [anon_sym_PLUS] = ACTIONS(1512), - [anon_sym_DASH] = ACTIONS(1512), - [anon_sym_STAR] = ACTIONS(1514), - [anon_sym_asm] = ACTIONS(1512), - [anon_sym_DOLLARassert] = ACTIONS(1512), - [anon_sym_DOLLARerror] = ACTIONS(1512), - [anon_sym_DOLLARecho] = ACTIONS(1512), - [anon_sym_DOLLARif] = ACTIONS(1512), - [anon_sym_DOLLARendif] = ACTIONS(1512), - [anon_sym_DOLLARswitch] = ACTIONS(1512), - [anon_sym_DOLLARfor] = ACTIONS(1512), - [anon_sym_DOLLARforeach] = ACTIONS(1512), - [anon_sym_DOLLARalignof] = ACTIONS(1512), - [anon_sym_DOLLARextnameof] = ACTIONS(1512), - [anon_sym_DOLLARnameof] = ACTIONS(1512), - [anon_sym_DOLLARoffsetof] = ACTIONS(1512), - [anon_sym_DOLLARqnameof] = ACTIONS(1512), - [anon_sym_DOLLARvaconst] = ACTIONS(1512), - [anon_sym_DOLLARvaarg] = ACTIONS(1512), - [anon_sym_DOLLARvaref] = ACTIONS(1512), - [anon_sym_DOLLARvaexpr] = ACTIONS(1512), - [anon_sym_true] = ACTIONS(1512), - [anon_sym_false] = ACTIONS(1512), - [anon_sym_null] = ACTIONS(1512), - [anon_sym_DOLLARvacount] = ACTIONS(1512), - [anon_sym_DOLLARappend] = ACTIONS(1512), - [anon_sym_DOLLARconcat] = ACTIONS(1512), - [anon_sym_DOLLAReval] = ACTIONS(1512), - [anon_sym_DOLLARis_const] = ACTIONS(1512), - [anon_sym_DOLLARsizeof] = ACTIONS(1512), - [anon_sym_DOLLARstringify] = ACTIONS(1512), - [anon_sym_DOLLARand] = ACTIONS(1512), - [anon_sym_DOLLARdefined] = ACTIONS(1512), - [anon_sym_DOLLARembed] = ACTIONS(1512), - [anon_sym_DOLLARor] = ACTIONS(1512), - [anon_sym_DOLLARfeature] = ACTIONS(1512), - [anon_sym_DOLLARassignable] = ACTIONS(1512), - [anon_sym_BANG] = ACTIONS(1514), - [anon_sym_TILDE] = ACTIONS(1514), - [anon_sym_PLUS_PLUS] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1514), - [anon_sym_typeid] = ACTIONS(1512), - [anon_sym_LBRACE_PIPE] = ACTIONS(1514), - [anon_sym_void] = ACTIONS(1512), - [anon_sym_bool] = ACTIONS(1512), - [anon_sym_char] = ACTIONS(1512), - [anon_sym_ichar] = ACTIONS(1512), - [anon_sym_short] = ACTIONS(1512), - [anon_sym_ushort] = ACTIONS(1512), - [anon_sym_uint] = ACTIONS(1512), - [anon_sym_long] = ACTIONS(1512), - [anon_sym_ulong] = ACTIONS(1512), - [anon_sym_int128] = ACTIONS(1512), - [anon_sym_uint128] = ACTIONS(1512), - [anon_sym_float] = ACTIONS(1512), - [anon_sym_double] = ACTIONS(1512), - [anon_sym_float16] = ACTIONS(1512), - [anon_sym_bfloat16] = ACTIONS(1512), - [anon_sym_float128] = ACTIONS(1512), - [anon_sym_iptr] = ACTIONS(1512), - [anon_sym_uptr] = ACTIONS(1512), - [anon_sym_isz] = ACTIONS(1512), - [anon_sym_usz] = ACTIONS(1512), - [anon_sym_anyfault] = ACTIONS(1512), - [anon_sym_any] = ACTIONS(1512), - [anon_sym_DOLLARtypeof] = ACTIONS(1512), - [anon_sym_DOLLARtypefrom] = ACTIONS(1512), - [anon_sym_DOLLARvatype] = ACTIONS(1512), - [anon_sym_DOLLARevaltype] = ACTIONS(1512), - [sym_real_literal] = ACTIONS(1514), + [sym_ident] = ACTIONS(1565), + [sym_integer_literal] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_DQUOTE] = ACTIONS(1567), + [anon_sym_BQUOTE] = ACTIONS(1567), + [sym_bytes_literal] = ACTIONS(1567), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1565), + [sym_at_ident] = ACTIONS(1567), + [sym_hash_ident] = ACTIONS(1567), + [sym_type_ident] = ACTIONS(1567), + [sym_ct_type_ident] = ACTIONS(1567), + [sym_const_ident] = ACTIONS(1565), + [sym_builtin] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_static] = ACTIONS(1565), + [anon_sym_tlocal] = ACTIONS(1565), + [anon_sym_SEMI] = ACTIONS(1567), + [anon_sym_fn] = ACTIONS(1565), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_const] = ACTIONS(1565), + [anon_sym_var] = ACTIONS(1565), + [anon_sym_return] = ACTIONS(1565), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_break] = ACTIONS(1565), + [anon_sym_defer] = ACTIONS(1565), + [anon_sym_assert] = ACTIONS(1565), + [anon_sym_nextcase] = ACTIONS(1565), + [anon_sym_switch] = ACTIONS(1565), + [anon_sym_AMP_AMP] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(1565), + [anon_sym_for] = ACTIONS(1565), + [anon_sym_foreach] = ACTIONS(1565), + [anon_sym_foreach_r] = ACTIONS(1565), + [anon_sym_while] = ACTIONS(1565), + [anon_sym_do] = ACTIONS(1565), + [anon_sym_int] = ACTIONS(1565), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_STAR] = ACTIONS(1567), + [anon_sym_asm] = ACTIONS(1565), + [anon_sym_DOLLARassert] = ACTIONS(1565), + [anon_sym_DOLLARerror] = ACTIONS(1565), + [anon_sym_DOLLARecho] = ACTIONS(1565), + [anon_sym_DOLLARif] = ACTIONS(1565), + [anon_sym_DOLLARswitch] = ACTIONS(1565), + [anon_sym_DOLLARfor] = ACTIONS(1565), + [anon_sym_DOLLARforeach] = ACTIONS(1565), + [anon_sym_DOLLARendforeach] = ACTIONS(1565), + [anon_sym_DOLLARalignof] = ACTIONS(1565), + [anon_sym_DOLLARextnameof] = ACTIONS(1565), + [anon_sym_DOLLARnameof] = ACTIONS(1565), + [anon_sym_DOLLARoffsetof] = ACTIONS(1565), + [anon_sym_DOLLARqnameof] = ACTIONS(1565), + [anon_sym_DOLLARvaconst] = ACTIONS(1565), + [anon_sym_DOLLARvaarg] = ACTIONS(1565), + [anon_sym_DOLLARvaref] = ACTIONS(1565), + [anon_sym_DOLLARvaexpr] = ACTIONS(1565), + [anon_sym_true] = ACTIONS(1565), + [anon_sym_false] = ACTIONS(1565), + [anon_sym_null] = ACTIONS(1565), + [anon_sym_DOLLARvacount] = ACTIONS(1565), + [anon_sym_DOLLARappend] = ACTIONS(1565), + [anon_sym_DOLLARconcat] = ACTIONS(1565), + [anon_sym_DOLLAReval] = ACTIONS(1565), + [anon_sym_DOLLARis_const] = ACTIONS(1565), + [anon_sym_DOLLARsizeof] = ACTIONS(1565), + [anon_sym_DOLLARstringify] = ACTIONS(1565), + [anon_sym_DOLLARand] = ACTIONS(1565), + [anon_sym_DOLLARdefined] = ACTIONS(1565), + [anon_sym_DOLLARembed] = ACTIONS(1565), + [anon_sym_DOLLARor] = ACTIONS(1565), + [anon_sym_DOLLARfeature] = ACTIONS(1565), + [anon_sym_DOLLARassignable] = ACTIONS(1565), + [anon_sym_BANG] = ACTIONS(1567), + [anon_sym_TILDE] = ACTIONS(1567), + [anon_sym_PLUS_PLUS] = ACTIONS(1567), + [anon_sym_DASH_DASH] = ACTIONS(1567), + [anon_sym_typeid] = ACTIONS(1565), + [anon_sym_LBRACE_PIPE] = ACTIONS(1567), + [anon_sym_void] = ACTIONS(1565), + [anon_sym_bool] = ACTIONS(1565), + [anon_sym_char] = ACTIONS(1565), + [anon_sym_ichar] = ACTIONS(1565), + [anon_sym_short] = ACTIONS(1565), + [anon_sym_ushort] = ACTIONS(1565), + [anon_sym_uint] = ACTIONS(1565), + [anon_sym_long] = ACTIONS(1565), + [anon_sym_ulong] = ACTIONS(1565), + [anon_sym_int128] = ACTIONS(1565), + [anon_sym_uint128] = ACTIONS(1565), + [anon_sym_float] = ACTIONS(1565), + [anon_sym_double] = ACTIONS(1565), + [anon_sym_float16] = ACTIONS(1565), + [anon_sym_bfloat16] = ACTIONS(1565), + [anon_sym_float128] = ACTIONS(1565), + [anon_sym_iptr] = ACTIONS(1565), + [anon_sym_uptr] = ACTIONS(1565), + [anon_sym_isz] = ACTIONS(1565), + [anon_sym_usz] = ACTIONS(1565), + [anon_sym_anyfault] = ACTIONS(1565), + [anon_sym_any] = ACTIONS(1565), + [anon_sym_DOLLARtypeof] = ACTIONS(1565), + [anon_sym_DOLLARtypefrom] = ACTIONS(1565), + [anon_sym_DOLLARvatype] = ACTIONS(1565), + [anon_sym_DOLLARevaltype] = ACTIONS(1565), + [sym_real_literal] = ACTIONS(1567), }, [712] = { [sym_line_comment] = STATE(712), [sym_doc_comment] = STATE(712), [sym_block_comment] = STATE(712), - [sym_ident] = ACTIONS(1452), - [sym_integer_literal] = ACTIONS(1454), - [anon_sym_SQUOTE] = ACTIONS(1454), - [anon_sym_DQUOTE] = ACTIONS(1454), - [anon_sym_BQUOTE] = ACTIONS(1454), - [sym_bytes_literal] = ACTIONS(1454), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1452), - [sym_at_ident] = ACTIONS(1454), - [sym_hash_ident] = ACTIONS(1454), - [sym_type_ident] = ACTIONS(1454), - [sym_ct_type_ident] = ACTIONS(1454), - [sym_const_ident] = ACTIONS(1452), - [sym_builtin] = ACTIONS(1454), - [anon_sym_LPAREN] = ACTIONS(1454), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_tlocal] = ACTIONS(1452), - [anon_sym_SEMI] = ACTIONS(1454), - [anon_sym_fn] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1452), - [anon_sym_const] = ACTIONS(1452), - [anon_sym_var] = ACTIONS(1452), - [anon_sym_return] = ACTIONS(1452), - [anon_sym_continue] = ACTIONS(1452), - [anon_sym_break] = ACTIONS(1452), - [anon_sym_defer] = ACTIONS(1452), - [anon_sym_assert] = ACTIONS(1452), - [anon_sym_nextcase] = ACTIONS(1452), - [anon_sym_switch] = ACTIONS(1452), - [anon_sym_AMP_AMP] = ACTIONS(1454), - [anon_sym_if] = ACTIONS(1452), - [anon_sym_for] = ACTIONS(1452), - [anon_sym_foreach] = ACTIONS(1452), - [anon_sym_foreach_r] = ACTIONS(1452), - [anon_sym_while] = ACTIONS(1452), - [anon_sym_do] = ACTIONS(1452), - [anon_sym_int] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1452), - [anon_sym_DASH] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1454), - [anon_sym_asm] = ACTIONS(1452), - [anon_sym_DOLLARassert] = ACTIONS(1452), - [anon_sym_DOLLARerror] = ACTIONS(1452), - [anon_sym_DOLLARecho] = ACTIONS(1452), - [anon_sym_DOLLARif] = ACTIONS(1452), - [anon_sym_DOLLARswitch] = ACTIONS(1452), - [anon_sym_DOLLARfor] = ACTIONS(1452), - [anon_sym_DOLLARendfor] = ACTIONS(1452), - [anon_sym_DOLLARforeach] = ACTIONS(1452), - [anon_sym_DOLLARalignof] = ACTIONS(1452), - [anon_sym_DOLLARextnameof] = ACTIONS(1452), - [anon_sym_DOLLARnameof] = ACTIONS(1452), - [anon_sym_DOLLARoffsetof] = ACTIONS(1452), - [anon_sym_DOLLARqnameof] = ACTIONS(1452), - [anon_sym_DOLLARvaconst] = ACTIONS(1452), - [anon_sym_DOLLARvaarg] = ACTIONS(1452), - [anon_sym_DOLLARvaref] = ACTIONS(1452), - [anon_sym_DOLLARvaexpr] = ACTIONS(1452), - [anon_sym_true] = ACTIONS(1452), - [anon_sym_false] = ACTIONS(1452), - [anon_sym_null] = ACTIONS(1452), - [anon_sym_DOLLARvacount] = ACTIONS(1452), - [anon_sym_DOLLARappend] = ACTIONS(1452), - [anon_sym_DOLLARconcat] = ACTIONS(1452), - [anon_sym_DOLLAReval] = ACTIONS(1452), - [anon_sym_DOLLARis_const] = ACTIONS(1452), - [anon_sym_DOLLARsizeof] = ACTIONS(1452), - [anon_sym_DOLLARstringify] = ACTIONS(1452), - [anon_sym_DOLLARand] = ACTIONS(1452), - [anon_sym_DOLLARdefined] = ACTIONS(1452), - [anon_sym_DOLLARembed] = ACTIONS(1452), - [anon_sym_DOLLARor] = ACTIONS(1452), - [anon_sym_DOLLARfeature] = ACTIONS(1452), - [anon_sym_DOLLARassignable] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1454), - [anon_sym_PLUS_PLUS] = ACTIONS(1454), - [anon_sym_DASH_DASH] = ACTIONS(1454), - [anon_sym_typeid] = ACTIONS(1452), - [anon_sym_LBRACE_PIPE] = ACTIONS(1454), - [anon_sym_void] = ACTIONS(1452), - [anon_sym_bool] = ACTIONS(1452), - [anon_sym_char] = ACTIONS(1452), - [anon_sym_ichar] = ACTIONS(1452), - [anon_sym_short] = ACTIONS(1452), - [anon_sym_ushort] = ACTIONS(1452), - [anon_sym_uint] = ACTIONS(1452), - [anon_sym_long] = ACTIONS(1452), - [anon_sym_ulong] = ACTIONS(1452), - [anon_sym_int128] = ACTIONS(1452), - [anon_sym_uint128] = ACTIONS(1452), - [anon_sym_float] = ACTIONS(1452), - [anon_sym_double] = ACTIONS(1452), - [anon_sym_float16] = ACTIONS(1452), - [anon_sym_bfloat16] = ACTIONS(1452), - [anon_sym_float128] = ACTIONS(1452), - [anon_sym_iptr] = ACTIONS(1452), - [anon_sym_uptr] = ACTIONS(1452), - [anon_sym_isz] = ACTIONS(1452), - [anon_sym_usz] = ACTIONS(1452), - [anon_sym_anyfault] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_DOLLARtypeof] = ACTIONS(1452), - [anon_sym_DOLLARtypefrom] = ACTIONS(1452), - [anon_sym_DOLLARvatype] = ACTIONS(1452), - [anon_sym_DOLLARevaltype] = ACTIONS(1452), - [sym_real_literal] = ACTIONS(1454), + [sym_ident] = ACTIONS(1601), + [sym_integer_literal] = ACTIONS(1603), + [anon_sym_SQUOTE] = ACTIONS(1603), + [anon_sym_DQUOTE] = ACTIONS(1603), + [anon_sym_BQUOTE] = ACTIONS(1603), + [sym_bytes_literal] = ACTIONS(1603), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1601), + [sym_at_ident] = ACTIONS(1603), + [sym_hash_ident] = ACTIONS(1603), + [sym_type_ident] = ACTIONS(1603), + [sym_ct_type_ident] = ACTIONS(1603), + [sym_const_ident] = ACTIONS(1601), + [sym_builtin] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_static] = ACTIONS(1601), + [anon_sym_tlocal] = ACTIONS(1601), + [anon_sym_SEMI] = ACTIONS(1603), + [anon_sym_fn] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(1601), + [anon_sym_const] = ACTIONS(1601), + [anon_sym_var] = ACTIONS(1601), + [anon_sym_return] = ACTIONS(1601), + [anon_sym_continue] = ACTIONS(1601), + [anon_sym_break] = ACTIONS(1601), + [anon_sym_defer] = ACTIONS(1601), + [anon_sym_assert] = ACTIONS(1601), + [anon_sym_nextcase] = ACTIONS(1601), + [anon_sym_switch] = ACTIONS(1601), + [anon_sym_AMP_AMP] = ACTIONS(1603), + [anon_sym_if] = ACTIONS(1601), + [anon_sym_for] = ACTIONS(1601), + [anon_sym_foreach] = ACTIONS(1601), + [anon_sym_foreach_r] = ACTIONS(1601), + [anon_sym_while] = ACTIONS(1601), + [anon_sym_do] = ACTIONS(1601), + [anon_sym_int] = ACTIONS(1601), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_asm] = ACTIONS(1601), + [anon_sym_DOLLARassert] = ACTIONS(1601), + [anon_sym_DOLLARerror] = ACTIONS(1601), + [anon_sym_DOLLARecho] = ACTIONS(1601), + [anon_sym_DOLLARif] = ACTIONS(1601), + [anon_sym_DOLLARswitch] = ACTIONS(1601), + [anon_sym_DOLLARfor] = ACTIONS(1601), + [anon_sym_DOLLARforeach] = ACTIONS(1601), + [anon_sym_DOLLARendforeach] = ACTIONS(1601), + [anon_sym_DOLLARalignof] = ACTIONS(1601), + [anon_sym_DOLLARextnameof] = ACTIONS(1601), + [anon_sym_DOLLARnameof] = ACTIONS(1601), + [anon_sym_DOLLARoffsetof] = ACTIONS(1601), + [anon_sym_DOLLARqnameof] = ACTIONS(1601), + [anon_sym_DOLLARvaconst] = ACTIONS(1601), + [anon_sym_DOLLARvaarg] = ACTIONS(1601), + [anon_sym_DOLLARvaref] = ACTIONS(1601), + [anon_sym_DOLLARvaexpr] = ACTIONS(1601), + [anon_sym_true] = ACTIONS(1601), + [anon_sym_false] = ACTIONS(1601), + [anon_sym_null] = ACTIONS(1601), + [anon_sym_DOLLARvacount] = ACTIONS(1601), + [anon_sym_DOLLARappend] = ACTIONS(1601), + [anon_sym_DOLLARconcat] = ACTIONS(1601), + [anon_sym_DOLLAReval] = ACTIONS(1601), + [anon_sym_DOLLARis_const] = ACTIONS(1601), + [anon_sym_DOLLARsizeof] = ACTIONS(1601), + [anon_sym_DOLLARstringify] = ACTIONS(1601), + [anon_sym_DOLLARand] = ACTIONS(1601), + [anon_sym_DOLLARdefined] = ACTIONS(1601), + [anon_sym_DOLLARembed] = ACTIONS(1601), + [anon_sym_DOLLARor] = ACTIONS(1601), + [anon_sym_DOLLARfeature] = ACTIONS(1601), + [anon_sym_DOLLARassignable] = ACTIONS(1601), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1603), + [anon_sym_DASH_DASH] = ACTIONS(1603), + [anon_sym_typeid] = ACTIONS(1601), + [anon_sym_LBRACE_PIPE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1601), + [anon_sym_bool] = ACTIONS(1601), + [anon_sym_char] = ACTIONS(1601), + [anon_sym_ichar] = ACTIONS(1601), + [anon_sym_short] = ACTIONS(1601), + [anon_sym_ushort] = ACTIONS(1601), + [anon_sym_uint] = ACTIONS(1601), + [anon_sym_long] = ACTIONS(1601), + [anon_sym_ulong] = ACTIONS(1601), + [anon_sym_int128] = ACTIONS(1601), + [anon_sym_uint128] = ACTIONS(1601), + [anon_sym_float] = ACTIONS(1601), + [anon_sym_double] = ACTIONS(1601), + [anon_sym_float16] = ACTIONS(1601), + [anon_sym_bfloat16] = ACTIONS(1601), + [anon_sym_float128] = ACTIONS(1601), + [anon_sym_iptr] = ACTIONS(1601), + [anon_sym_uptr] = ACTIONS(1601), + [anon_sym_isz] = ACTIONS(1601), + [anon_sym_usz] = ACTIONS(1601), + [anon_sym_anyfault] = ACTIONS(1601), + [anon_sym_any] = ACTIONS(1601), + [anon_sym_DOLLARtypeof] = ACTIONS(1601), + [anon_sym_DOLLARtypefrom] = ACTIONS(1601), + [anon_sym_DOLLARvatype] = ACTIONS(1601), + [anon_sym_DOLLARevaltype] = ACTIONS(1601), + [sym_real_literal] = ACTIONS(1603), }, [713] = { [sym_line_comment] = STATE(713), [sym_doc_comment] = STATE(713), [sym_block_comment] = STATE(713), - [sym_ident] = ACTIONS(1386), - [sym_integer_literal] = ACTIONS(1388), - [anon_sym_SQUOTE] = ACTIONS(1388), - [anon_sym_DQUOTE] = ACTIONS(1388), - [anon_sym_BQUOTE] = ACTIONS(1388), - [sym_bytes_literal] = ACTIONS(1388), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1386), - [sym_at_ident] = ACTIONS(1388), - [sym_hash_ident] = ACTIONS(1388), - [sym_type_ident] = ACTIONS(1388), - [sym_ct_type_ident] = ACTIONS(1388), - [sym_const_ident] = ACTIONS(1386), - [sym_builtin] = ACTIONS(1388), - [anon_sym_LPAREN] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1386), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_tlocal] = ACTIONS(1386), - [anon_sym_SEMI] = ACTIONS(1388), - [anon_sym_fn] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_const] = ACTIONS(1386), - [anon_sym_var] = ACTIONS(1386), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_continue] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1386), - [anon_sym_defer] = ACTIONS(1386), - [anon_sym_assert] = ACTIONS(1386), - [anon_sym_nextcase] = ACTIONS(1386), - [anon_sym_switch] = ACTIONS(1386), - [anon_sym_AMP_AMP] = ACTIONS(1388), - [anon_sym_if] = ACTIONS(1386), - [anon_sym_for] = ACTIONS(1386), - [anon_sym_foreach] = ACTIONS(1386), - [anon_sym_foreach_r] = ACTIONS(1386), - [anon_sym_while] = ACTIONS(1386), - [anon_sym_do] = ACTIONS(1386), - [anon_sym_int] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_asm] = ACTIONS(1386), - [anon_sym_DOLLARassert] = ACTIONS(1386), - [anon_sym_DOLLARerror] = ACTIONS(1386), - [anon_sym_DOLLARecho] = ACTIONS(1386), - [anon_sym_DOLLARif] = ACTIONS(1386), - [anon_sym_DOLLARswitch] = ACTIONS(1386), - [anon_sym_DOLLARfor] = ACTIONS(1386), - [anon_sym_DOLLARendfor] = ACTIONS(1386), - [anon_sym_DOLLARforeach] = ACTIONS(1386), - [anon_sym_DOLLARalignof] = ACTIONS(1386), - [anon_sym_DOLLARextnameof] = ACTIONS(1386), - [anon_sym_DOLLARnameof] = ACTIONS(1386), - [anon_sym_DOLLARoffsetof] = ACTIONS(1386), - [anon_sym_DOLLARqnameof] = ACTIONS(1386), - [anon_sym_DOLLARvaconst] = ACTIONS(1386), - [anon_sym_DOLLARvaarg] = ACTIONS(1386), - [anon_sym_DOLLARvaref] = ACTIONS(1386), - [anon_sym_DOLLARvaexpr] = ACTIONS(1386), - [anon_sym_true] = ACTIONS(1386), - [anon_sym_false] = ACTIONS(1386), - [anon_sym_null] = ACTIONS(1386), - [anon_sym_DOLLARvacount] = ACTIONS(1386), - [anon_sym_DOLLARappend] = ACTIONS(1386), - [anon_sym_DOLLARconcat] = ACTIONS(1386), - [anon_sym_DOLLAReval] = ACTIONS(1386), - [anon_sym_DOLLARis_const] = ACTIONS(1386), - [anon_sym_DOLLARsizeof] = ACTIONS(1386), - [anon_sym_DOLLARstringify] = ACTIONS(1386), - [anon_sym_DOLLARand] = ACTIONS(1386), - [anon_sym_DOLLARdefined] = ACTIONS(1386), - [anon_sym_DOLLARembed] = ACTIONS(1386), - [anon_sym_DOLLARor] = ACTIONS(1386), - [anon_sym_DOLLARfeature] = ACTIONS(1386), - [anon_sym_DOLLARassignable] = ACTIONS(1386), - [anon_sym_BANG] = ACTIONS(1388), - [anon_sym_TILDE] = ACTIONS(1388), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [anon_sym_typeid] = ACTIONS(1386), - [anon_sym_LBRACE_PIPE] = ACTIONS(1388), - [anon_sym_void] = ACTIONS(1386), - [anon_sym_bool] = ACTIONS(1386), - [anon_sym_char] = ACTIONS(1386), - [anon_sym_ichar] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_ushort] = ACTIONS(1386), - [anon_sym_uint] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1386), - [anon_sym_ulong] = ACTIONS(1386), - [anon_sym_int128] = ACTIONS(1386), - [anon_sym_uint128] = ACTIONS(1386), - [anon_sym_float] = ACTIONS(1386), - [anon_sym_double] = ACTIONS(1386), - [anon_sym_float16] = ACTIONS(1386), - [anon_sym_bfloat16] = ACTIONS(1386), - [anon_sym_float128] = ACTIONS(1386), - [anon_sym_iptr] = ACTIONS(1386), - [anon_sym_uptr] = ACTIONS(1386), - [anon_sym_isz] = ACTIONS(1386), - [anon_sym_usz] = ACTIONS(1386), - [anon_sym_anyfault] = ACTIONS(1386), - [anon_sym_any] = ACTIONS(1386), - [anon_sym_DOLLARtypeof] = ACTIONS(1386), - [anon_sym_DOLLARtypefrom] = ACTIONS(1386), - [anon_sym_DOLLARvatype] = ACTIONS(1386), - [anon_sym_DOLLARevaltype] = ACTIONS(1386), - [sym_real_literal] = ACTIONS(1388), + [sym_ident] = ACTIONS(1613), + [sym_integer_literal] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(1615), + [anon_sym_DQUOTE] = ACTIONS(1615), + [anon_sym_BQUOTE] = ACTIONS(1615), + [sym_bytes_literal] = ACTIONS(1615), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1613), + [sym_at_ident] = ACTIONS(1615), + [sym_hash_ident] = ACTIONS(1615), + [sym_type_ident] = ACTIONS(1615), + [sym_ct_type_ident] = ACTIONS(1615), + [sym_const_ident] = ACTIONS(1613), + [sym_builtin] = ACTIONS(1615), + [anon_sym_LPAREN] = ACTIONS(1615), + [anon_sym_AMP] = ACTIONS(1613), + [anon_sym_static] = ACTIONS(1613), + [anon_sym_tlocal] = ACTIONS(1613), + [anon_sym_SEMI] = ACTIONS(1615), + [anon_sym_fn] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(1613), + [anon_sym_const] = ACTIONS(1613), + [anon_sym_var] = ACTIONS(1613), + [anon_sym_return] = ACTIONS(1613), + [anon_sym_continue] = ACTIONS(1613), + [anon_sym_break] = ACTIONS(1613), + [anon_sym_defer] = ACTIONS(1613), + [anon_sym_assert] = ACTIONS(1613), + [anon_sym_nextcase] = ACTIONS(1613), + [anon_sym_switch] = ACTIONS(1613), + [anon_sym_AMP_AMP] = ACTIONS(1615), + [anon_sym_if] = ACTIONS(1613), + [anon_sym_for] = ACTIONS(1613), + [anon_sym_foreach] = ACTIONS(1613), + [anon_sym_foreach_r] = ACTIONS(1613), + [anon_sym_while] = ACTIONS(1613), + [anon_sym_do] = ACTIONS(1613), + [anon_sym_int] = ACTIONS(1613), + [anon_sym_PLUS] = ACTIONS(1613), + [anon_sym_DASH] = ACTIONS(1613), + [anon_sym_STAR] = ACTIONS(1615), + [anon_sym_asm] = ACTIONS(1613), + [anon_sym_DOLLARassert] = ACTIONS(1613), + [anon_sym_DOLLARerror] = ACTIONS(1613), + [anon_sym_DOLLARecho] = ACTIONS(1613), + [anon_sym_DOLLARif] = ACTIONS(1613), + [anon_sym_DOLLARswitch] = ACTIONS(1613), + [anon_sym_DOLLARfor] = ACTIONS(1613), + [anon_sym_DOLLARforeach] = ACTIONS(1613), + [anon_sym_DOLLARendforeach] = ACTIONS(1613), + [anon_sym_DOLLARalignof] = ACTIONS(1613), + [anon_sym_DOLLARextnameof] = ACTIONS(1613), + [anon_sym_DOLLARnameof] = ACTIONS(1613), + [anon_sym_DOLLARoffsetof] = ACTIONS(1613), + [anon_sym_DOLLARqnameof] = ACTIONS(1613), + [anon_sym_DOLLARvaconst] = ACTIONS(1613), + [anon_sym_DOLLARvaarg] = ACTIONS(1613), + [anon_sym_DOLLARvaref] = ACTIONS(1613), + [anon_sym_DOLLARvaexpr] = ACTIONS(1613), + [anon_sym_true] = ACTIONS(1613), + [anon_sym_false] = ACTIONS(1613), + [anon_sym_null] = ACTIONS(1613), + [anon_sym_DOLLARvacount] = ACTIONS(1613), + [anon_sym_DOLLARappend] = ACTIONS(1613), + [anon_sym_DOLLARconcat] = ACTIONS(1613), + [anon_sym_DOLLAReval] = ACTIONS(1613), + [anon_sym_DOLLARis_const] = ACTIONS(1613), + [anon_sym_DOLLARsizeof] = ACTIONS(1613), + [anon_sym_DOLLARstringify] = ACTIONS(1613), + [anon_sym_DOLLARand] = ACTIONS(1613), + [anon_sym_DOLLARdefined] = ACTIONS(1613), + [anon_sym_DOLLARembed] = ACTIONS(1613), + [anon_sym_DOLLARor] = ACTIONS(1613), + [anon_sym_DOLLARfeature] = ACTIONS(1613), + [anon_sym_DOLLARassignable] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1615), + [anon_sym_TILDE] = ACTIONS(1615), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), + [anon_sym_typeid] = ACTIONS(1613), + [anon_sym_LBRACE_PIPE] = ACTIONS(1615), + [anon_sym_void] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_ichar] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [anon_sym_ushort] = ACTIONS(1613), + [anon_sym_uint] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_ulong] = ACTIONS(1613), + [anon_sym_int128] = ACTIONS(1613), + [anon_sym_uint128] = ACTIONS(1613), + [anon_sym_float] = ACTIONS(1613), + [anon_sym_double] = ACTIONS(1613), + [anon_sym_float16] = ACTIONS(1613), + [anon_sym_bfloat16] = ACTIONS(1613), + [anon_sym_float128] = ACTIONS(1613), + [anon_sym_iptr] = ACTIONS(1613), + [anon_sym_uptr] = ACTIONS(1613), + [anon_sym_isz] = ACTIONS(1613), + [anon_sym_usz] = ACTIONS(1613), + [anon_sym_anyfault] = ACTIONS(1613), + [anon_sym_any] = ACTIONS(1613), + [anon_sym_DOLLARtypeof] = ACTIONS(1613), + [anon_sym_DOLLARtypefrom] = ACTIONS(1613), + [anon_sym_DOLLARvatype] = ACTIONS(1613), + [anon_sym_DOLLARevaltype] = ACTIONS(1613), + [sym_real_literal] = ACTIONS(1615), }, [714] = { [sym_line_comment] = STATE(714), [sym_doc_comment] = STATE(714), [sym_block_comment] = STATE(714), - [sym_ident] = ACTIONS(1440), - [sym_integer_literal] = ACTIONS(1442), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_DQUOTE] = ACTIONS(1442), - [anon_sym_BQUOTE] = ACTIONS(1442), - [sym_bytes_literal] = ACTIONS(1442), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1440), - [sym_at_ident] = ACTIONS(1442), - [sym_hash_ident] = ACTIONS(1442), - [sym_type_ident] = ACTIONS(1442), - [sym_ct_type_ident] = ACTIONS(1442), - [sym_const_ident] = ACTIONS(1440), - [sym_builtin] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1440), - [anon_sym_static] = ACTIONS(1440), - [anon_sym_tlocal] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1442), - [anon_sym_fn] = ACTIONS(1440), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_const] = ACTIONS(1440), - [anon_sym_var] = ACTIONS(1440), - [anon_sym_return] = ACTIONS(1440), - [anon_sym_continue] = ACTIONS(1440), - [anon_sym_break] = ACTIONS(1440), - [anon_sym_defer] = ACTIONS(1440), - [anon_sym_assert] = ACTIONS(1440), - [anon_sym_nextcase] = ACTIONS(1440), - [anon_sym_switch] = ACTIONS(1440), - [anon_sym_AMP_AMP] = ACTIONS(1442), - [anon_sym_if] = ACTIONS(1440), - [anon_sym_for] = ACTIONS(1440), - [anon_sym_foreach] = ACTIONS(1440), - [anon_sym_foreach_r] = ACTIONS(1440), - [anon_sym_while] = ACTIONS(1440), - [anon_sym_do] = ACTIONS(1440), - [anon_sym_int] = ACTIONS(1440), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_STAR] = ACTIONS(1442), - [anon_sym_asm] = ACTIONS(1440), - [anon_sym_DOLLARassert] = ACTIONS(1440), - [anon_sym_DOLLARerror] = ACTIONS(1440), - [anon_sym_DOLLARecho] = ACTIONS(1440), - [anon_sym_DOLLARif] = ACTIONS(1440), - [anon_sym_DOLLARswitch] = ACTIONS(1440), - [anon_sym_DOLLARfor] = ACTIONS(1440), - [anon_sym_DOLLARendfor] = ACTIONS(1440), - [anon_sym_DOLLARforeach] = ACTIONS(1440), - [anon_sym_DOLLARalignof] = ACTIONS(1440), - [anon_sym_DOLLARextnameof] = ACTIONS(1440), - [anon_sym_DOLLARnameof] = ACTIONS(1440), - [anon_sym_DOLLARoffsetof] = ACTIONS(1440), - [anon_sym_DOLLARqnameof] = ACTIONS(1440), - [anon_sym_DOLLARvaconst] = ACTIONS(1440), - [anon_sym_DOLLARvaarg] = ACTIONS(1440), - [anon_sym_DOLLARvaref] = ACTIONS(1440), - [anon_sym_DOLLARvaexpr] = ACTIONS(1440), - [anon_sym_true] = ACTIONS(1440), - [anon_sym_false] = ACTIONS(1440), - [anon_sym_null] = ACTIONS(1440), - [anon_sym_DOLLARvacount] = ACTIONS(1440), - [anon_sym_DOLLARappend] = ACTIONS(1440), - [anon_sym_DOLLARconcat] = ACTIONS(1440), - [anon_sym_DOLLAReval] = ACTIONS(1440), - [anon_sym_DOLLARis_const] = ACTIONS(1440), - [anon_sym_DOLLARsizeof] = ACTIONS(1440), - [anon_sym_DOLLARstringify] = ACTIONS(1440), - [anon_sym_DOLLARand] = ACTIONS(1440), - [anon_sym_DOLLARdefined] = ACTIONS(1440), - [anon_sym_DOLLARembed] = ACTIONS(1440), - [anon_sym_DOLLARor] = ACTIONS(1440), - [anon_sym_DOLLARfeature] = ACTIONS(1440), - [anon_sym_DOLLARassignable] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_typeid] = ACTIONS(1440), - [anon_sym_LBRACE_PIPE] = ACTIONS(1442), - [anon_sym_void] = ACTIONS(1440), - [anon_sym_bool] = ACTIONS(1440), - [anon_sym_char] = ACTIONS(1440), - [anon_sym_ichar] = ACTIONS(1440), - [anon_sym_short] = ACTIONS(1440), - [anon_sym_ushort] = ACTIONS(1440), - [anon_sym_uint] = ACTIONS(1440), - [anon_sym_long] = ACTIONS(1440), - [anon_sym_ulong] = ACTIONS(1440), - [anon_sym_int128] = ACTIONS(1440), - [anon_sym_uint128] = ACTIONS(1440), - [anon_sym_float] = ACTIONS(1440), - [anon_sym_double] = ACTIONS(1440), - [anon_sym_float16] = ACTIONS(1440), - [anon_sym_bfloat16] = ACTIONS(1440), - [anon_sym_float128] = ACTIONS(1440), - [anon_sym_iptr] = ACTIONS(1440), - [anon_sym_uptr] = ACTIONS(1440), - [anon_sym_isz] = ACTIONS(1440), - [anon_sym_usz] = ACTIONS(1440), - [anon_sym_anyfault] = ACTIONS(1440), - [anon_sym_any] = ACTIONS(1440), - [anon_sym_DOLLARtypeof] = ACTIONS(1440), - [anon_sym_DOLLARtypefrom] = ACTIONS(1440), - [anon_sym_DOLLARvatype] = ACTIONS(1440), - [anon_sym_DOLLARevaltype] = ACTIONS(1440), - [sym_real_literal] = ACTIONS(1442), + [sym_ident] = ACTIONS(1617), + [sym_integer_literal] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1619), + [anon_sym_BQUOTE] = ACTIONS(1619), + [sym_bytes_literal] = ACTIONS(1619), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1617), + [sym_at_ident] = ACTIONS(1619), + [sym_hash_ident] = ACTIONS(1619), + [sym_type_ident] = ACTIONS(1619), + [sym_ct_type_ident] = ACTIONS(1619), + [sym_const_ident] = ACTIONS(1617), + [sym_builtin] = ACTIONS(1619), + [anon_sym_LPAREN] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1617), + [anon_sym_static] = ACTIONS(1617), + [anon_sym_tlocal] = ACTIONS(1617), + [anon_sym_SEMI] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1617), + [anon_sym_LBRACE] = ACTIONS(1617), + [anon_sym_const] = ACTIONS(1617), + [anon_sym_var] = ACTIONS(1617), + [anon_sym_return] = ACTIONS(1617), + [anon_sym_continue] = ACTIONS(1617), + [anon_sym_break] = ACTIONS(1617), + [anon_sym_defer] = ACTIONS(1617), + [anon_sym_assert] = ACTIONS(1617), + [anon_sym_nextcase] = ACTIONS(1617), + [anon_sym_switch] = ACTIONS(1617), + [anon_sym_AMP_AMP] = ACTIONS(1619), + [anon_sym_if] = ACTIONS(1617), + [anon_sym_for] = ACTIONS(1617), + [anon_sym_foreach] = ACTIONS(1617), + [anon_sym_foreach_r] = ACTIONS(1617), + [anon_sym_while] = ACTIONS(1617), + [anon_sym_do] = ACTIONS(1617), + [anon_sym_int] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_asm] = ACTIONS(1617), + [anon_sym_DOLLARassert] = ACTIONS(1617), + [anon_sym_DOLLARerror] = ACTIONS(1617), + [anon_sym_DOLLARecho] = ACTIONS(1617), + [anon_sym_DOLLARif] = ACTIONS(1617), + [anon_sym_DOLLARswitch] = ACTIONS(1617), + [anon_sym_DOLLARfor] = ACTIONS(1617), + [anon_sym_DOLLARforeach] = ACTIONS(1617), + [anon_sym_DOLLARendforeach] = ACTIONS(1617), + [anon_sym_DOLLARalignof] = ACTIONS(1617), + [anon_sym_DOLLARextnameof] = ACTIONS(1617), + [anon_sym_DOLLARnameof] = ACTIONS(1617), + [anon_sym_DOLLARoffsetof] = ACTIONS(1617), + [anon_sym_DOLLARqnameof] = ACTIONS(1617), + [anon_sym_DOLLARvaconst] = ACTIONS(1617), + [anon_sym_DOLLARvaarg] = ACTIONS(1617), + [anon_sym_DOLLARvaref] = ACTIONS(1617), + [anon_sym_DOLLARvaexpr] = ACTIONS(1617), + [anon_sym_true] = ACTIONS(1617), + [anon_sym_false] = ACTIONS(1617), + [anon_sym_null] = ACTIONS(1617), + [anon_sym_DOLLARvacount] = ACTIONS(1617), + [anon_sym_DOLLARappend] = ACTIONS(1617), + [anon_sym_DOLLARconcat] = ACTIONS(1617), + [anon_sym_DOLLAReval] = ACTIONS(1617), + [anon_sym_DOLLARis_const] = ACTIONS(1617), + [anon_sym_DOLLARsizeof] = ACTIONS(1617), + [anon_sym_DOLLARstringify] = ACTIONS(1617), + [anon_sym_DOLLARand] = ACTIONS(1617), + [anon_sym_DOLLARdefined] = ACTIONS(1617), + [anon_sym_DOLLARembed] = ACTIONS(1617), + [anon_sym_DOLLARor] = ACTIONS(1617), + [anon_sym_DOLLARfeature] = ACTIONS(1617), + [anon_sym_DOLLARassignable] = ACTIONS(1617), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_typeid] = ACTIONS(1617), + [anon_sym_LBRACE_PIPE] = ACTIONS(1619), + [anon_sym_void] = ACTIONS(1617), + [anon_sym_bool] = ACTIONS(1617), + [anon_sym_char] = ACTIONS(1617), + [anon_sym_ichar] = ACTIONS(1617), + [anon_sym_short] = ACTIONS(1617), + [anon_sym_ushort] = ACTIONS(1617), + [anon_sym_uint] = ACTIONS(1617), + [anon_sym_long] = ACTIONS(1617), + [anon_sym_ulong] = ACTIONS(1617), + [anon_sym_int128] = ACTIONS(1617), + [anon_sym_uint128] = ACTIONS(1617), + [anon_sym_float] = ACTIONS(1617), + [anon_sym_double] = ACTIONS(1617), + [anon_sym_float16] = ACTIONS(1617), + [anon_sym_bfloat16] = ACTIONS(1617), + [anon_sym_float128] = ACTIONS(1617), + [anon_sym_iptr] = ACTIONS(1617), + [anon_sym_uptr] = ACTIONS(1617), + [anon_sym_isz] = ACTIONS(1617), + [anon_sym_usz] = ACTIONS(1617), + [anon_sym_anyfault] = ACTIONS(1617), + [anon_sym_any] = ACTIONS(1617), + [anon_sym_DOLLARtypeof] = ACTIONS(1617), + [anon_sym_DOLLARtypefrom] = ACTIONS(1617), + [anon_sym_DOLLARvatype] = ACTIONS(1617), + [anon_sym_DOLLARevaltype] = ACTIONS(1617), + [sym_real_literal] = ACTIONS(1619), }, [715] = { [sym_line_comment] = STATE(715), [sym_doc_comment] = STATE(715), [sym_block_comment] = STATE(715), - [sym_ident] = ACTIONS(1552), - [sym_integer_literal] = ACTIONS(1554), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_DQUOTE] = ACTIONS(1554), - [anon_sym_BQUOTE] = ACTIONS(1554), - [sym_bytes_literal] = ACTIONS(1554), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1552), - [sym_at_ident] = ACTIONS(1554), - [sym_hash_ident] = ACTIONS(1554), - [sym_type_ident] = ACTIONS(1554), - [sym_ct_type_ident] = ACTIONS(1554), - [sym_const_ident] = ACTIONS(1552), - [sym_builtin] = ACTIONS(1554), - [anon_sym_LPAREN] = ACTIONS(1554), - [anon_sym_AMP] = ACTIONS(1552), - [anon_sym_static] = ACTIONS(1552), - [anon_sym_tlocal] = ACTIONS(1552), - [anon_sym_SEMI] = ACTIONS(1554), - [anon_sym_fn] = ACTIONS(1552), - [anon_sym_LBRACE] = ACTIONS(1552), - [anon_sym_const] = ACTIONS(1552), - [anon_sym_var] = ACTIONS(1552), - [anon_sym_return] = ACTIONS(1552), - [anon_sym_continue] = ACTIONS(1552), - [anon_sym_break] = ACTIONS(1552), - [anon_sym_defer] = ACTIONS(1552), - [anon_sym_assert] = ACTIONS(1552), - [anon_sym_nextcase] = ACTIONS(1552), - [anon_sym_switch] = ACTIONS(1552), - [anon_sym_AMP_AMP] = ACTIONS(1554), - [anon_sym_if] = ACTIONS(1552), - [anon_sym_for] = ACTIONS(1552), - [anon_sym_foreach] = ACTIONS(1552), - [anon_sym_foreach_r] = ACTIONS(1552), - [anon_sym_while] = ACTIONS(1552), - [anon_sym_do] = ACTIONS(1552), - [anon_sym_int] = ACTIONS(1552), - [anon_sym_PLUS] = ACTIONS(1552), - [anon_sym_DASH] = ACTIONS(1552), - [anon_sym_STAR] = ACTIONS(1554), - [anon_sym_asm] = ACTIONS(1552), - [anon_sym_DOLLARassert] = ACTIONS(1552), - [anon_sym_DOLLARerror] = ACTIONS(1552), - [anon_sym_DOLLARecho] = ACTIONS(1552), - [anon_sym_DOLLARif] = ACTIONS(1552), - [anon_sym_DOLLARendif] = ACTIONS(1552), - [anon_sym_DOLLARswitch] = ACTIONS(1552), - [anon_sym_DOLLARfor] = ACTIONS(1552), - [anon_sym_DOLLARforeach] = ACTIONS(1552), - [anon_sym_DOLLARalignof] = ACTIONS(1552), - [anon_sym_DOLLARextnameof] = ACTIONS(1552), - [anon_sym_DOLLARnameof] = ACTIONS(1552), - [anon_sym_DOLLARoffsetof] = ACTIONS(1552), - [anon_sym_DOLLARqnameof] = ACTIONS(1552), - [anon_sym_DOLLARvaconst] = ACTIONS(1552), - [anon_sym_DOLLARvaarg] = ACTIONS(1552), - [anon_sym_DOLLARvaref] = ACTIONS(1552), - [anon_sym_DOLLARvaexpr] = ACTIONS(1552), - [anon_sym_true] = ACTIONS(1552), - [anon_sym_false] = ACTIONS(1552), - [anon_sym_null] = ACTIONS(1552), - [anon_sym_DOLLARvacount] = ACTIONS(1552), - [anon_sym_DOLLARappend] = ACTIONS(1552), - [anon_sym_DOLLARconcat] = ACTIONS(1552), - [anon_sym_DOLLAReval] = ACTIONS(1552), - [anon_sym_DOLLARis_const] = ACTIONS(1552), - [anon_sym_DOLLARsizeof] = ACTIONS(1552), - [anon_sym_DOLLARstringify] = ACTIONS(1552), - [anon_sym_DOLLARand] = ACTIONS(1552), - [anon_sym_DOLLARdefined] = ACTIONS(1552), - [anon_sym_DOLLARembed] = ACTIONS(1552), - [anon_sym_DOLLARor] = ACTIONS(1552), - [anon_sym_DOLLARfeature] = ACTIONS(1552), - [anon_sym_DOLLARassignable] = ACTIONS(1552), - [anon_sym_BANG] = ACTIONS(1554), - [anon_sym_TILDE] = ACTIONS(1554), - [anon_sym_PLUS_PLUS] = ACTIONS(1554), - [anon_sym_DASH_DASH] = ACTIONS(1554), - [anon_sym_typeid] = ACTIONS(1552), - [anon_sym_LBRACE_PIPE] = ACTIONS(1554), - [anon_sym_void] = ACTIONS(1552), - [anon_sym_bool] = ACTIONS(1552), - [anon_sym_char] = ACTIONS(1552), - [anon_sym_ichar] = ACTIONS(1552), - [anon_sym_short] = ACTIONS(1552), - [anon_sym_ushort] = ACTIONS(1552), - [anon_sym_uint] = ACTIONS(1552), - [anon_sym_long] = ACTIONS(1552), - [anon_sym_ulong] = ACTIONS(1552), - [anon_sym_int128] = ACTIONS(1552), - [anon_sym_uint128] = ACTIONS(1552), - [anon_sym_float] = ACTIONS(1552), - [anon_sym_double] = ACTIONS(1552), - [anon_sym_float16] = ACTIONS(1552), - [anon_sym_bfloat16] = ACTIONS(1552), - [anon_sym_float128] = ACTIONS(1552), - [anon_sym_iptr] = ACTIONS(1552), - [anon_sym_uptr] = ACTIONS(1552), - [anon_sym_isz] = ACTIONS(1552), - [anon_sym_usz] = ACTIONS(1552), - [anon_sym_anyfault] = ACTIONS(1552), - [anon_sym_any] = ACTIONS(1552), - [anon_sym_DOLLARtypeof] = ACTIONS(1552), - [anon_sym_DOLLARtypefrom] = ACTIONS(1552), - [anon_sym_DOLLARvatype] = ACTIONS(1552), - [anon_sym_DOLLARevaltype] = ACTIONS(1552), - [sym_real_literal] = ACTIONS(1554), + [sym_ident] = ACTIONS(1581), + [sym_integer_literal] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1583), + [anon_sym_DQUOTE] = ACTIONS(1583), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_bytes_literal] = ACTIONS(1583), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1581), + [sym_at_ident] = ACTIONS(1583), + [sym_hash_ident] = ACTIONS(1583), + [sym_type_ident] = ACTIONS(1583), + [sym_ct_type_ident] = ACTIONS(1583), + [sym_const_ident] = ACTIONS(1581), + [sym_builtin] = ACTIONS(1583), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_AMP] = ACTIONS(1581), + [anon_sym_static] = ACTIONS(1581), + [anon_sym_tlocal] = ACTIONS(1581), + [anon_sym_SEMI] = ACTIONS(1583), + [anon_sym_fn] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_const] = ACTIONS(1581), + [anon_sym_var] = ACTIONS(1581), + [anon_sym_return] = ACTIONS(1581), + [anon_sym_continue] = ACTIONS(1581), + [anon_sym_break] = ACTIONS(1581), + [anon_sym_defer] = ACTIONS(1581), + [anon_sym_assert] = ACTIONS(1581), + [anon_sym_nextcase] = ACTIONS(1581), + [anon_sym_switch] = ACTIONS(1581), + [anon_sym_AMP_AMP] = ACTIONS(1583), + [anon_sym_if] = ACTIONS(1581), + [anon_sym_for] = ACTIONS(1581), + [anon_sym_foreach] = ACTIONS(1581), + [anon_sym_foreach_r] = ACTIONS(1581), + [anon_sym_while] = ACTIONS(1581), + [anon_sym_do] = ACTIONS(1581), + [anon_sym_int] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1581), + [anon_sym_DASH] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1583), + [anon_sym_asm] = ACTIONS(1581), + [anon_sym_DOLLARassert] = ACTIONS(1581), + [anon_sym_DOLLARerror] = ACTIONS(1581), + [anon_sym_DOLLARecho] = ACTIONS(1581), + [anon_sym_DOLLARif] = ACTIONS(1581), + [anon_sym_DOLLARendif] = ACTIONS(1581), + [anon_sym_DOLLARswitch] = ACTIONS(1581), + [anon_sym_DOLLARfor] = ACTIONS(1581), + [anon_sym_DOLLARforeach] = ACTIONS(1581), + [anon_sym_DOLLARalignof] = ACTIONS(1581), + [anon_sym_DOLLARextnameof] = ACTIONS(1581), + [anon_sym_DOLLARnameof] = ACTIONS(1581), + [anon_sym_DOLLARoffsetof] = ACTIONS(1581), + [anon_sym_DOLLARqnameof] = ACTIONS(1581), + [anon_sym_DOLLARvaconst] = ACTIONS(1581), + [anon_sym_DOLLARvaarg] = ACTIONS(1581), + [anon_sym_DOLLARvaref] = ACTIONS(1581), + [anon_sym_DOLLARvaexpr] = ACTIONS(1581), + [anon_sym_true] = ACTIONS(1581), + [anon_sym_false] = ACTIONS(1581), + [anon_sym_null] = ACTIONS(1581), + [anon_sym_DOLLARvacount] = ACTIONS(1581), + [anon_sym_DOLLARappend] = ACTIONS(1581), + [anon_sym_DOLLARconcat] = ACTIONS(1581), + [anon_sym_DOLLAReval] = ACTIONS(1581), + [anon_sym_DOLLARis_const] = ACTIONS(1581), + [anon_sym_DOLLARsizeof] = ACTIONS(1581), + [anon_sym_DOLLARstringify] = ACTIONS(1581), + [anon_sym_DOLLARand] = ACTIONS(1581), + [anon_sym_DOLLARdefined] = ACTIONS(1581), + [anon_sym_DOLLARembed] = ACTIONS(1581), + [anon_sym_DOLLARor] = ACTIONS(1581), + [anon_sym_DOLLARfeature] = ACTIONS(1581), + [anon_sym_DOLLARassignable] = ACTIONS(1581), + [anon_sym_BANG] = ACTIONS(1583), + [anon_sym_TILDE] = ACTIONS(1583), + [anon_sym_PLUS_PLUS] = ACTIONS(1583), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [anon_sym_typeid] = ACTIONS(1581), + [anon_sym_LBRACE_PIPE] = ACTIONS(1583), + [anon_sym_void] = ACTIONS(1581), + [anon_sym_bool] = ACTIONS(1581), + [anon_sym_char] = ACTIONS(1581), + [anon_sym_ichar] = ACTIONS(1581), + [anon_sym_short] = ACTIONS(1581), + [anon_sym_ushort] = ACTIONS(1581), + [anon_sym_uint] = ACTIONS(1581), + [anon_sym_long] = ACTIONS(1581), + [anon_sym_ulong] = ACTIONS(1581), + [anon_sym_int128] = ACTIONS(1581), + [anon_sym_uint128] = ACTIONS(1581), + [anon_sym_float] = ACTIONS(1581), + [anon_sym_double] = ACTIONS(1581), + [anon_sym_float16] = ACTIONS(1581), + [anon_sym_bfloat16] = ACTIONS(1581), + [anon_sym_float128] = ACTIONS(1581), + [anon_sym_iptr] = ACTIONS(1581), + [anon_sym_uptr] = ACTIONS(1581), + [anon_sym_isz] = ACTIONS(1581), + [anon_sym_usz] = ACTIONS(1581), + [anon_sym_anyfault] = ACTIONS(1581), + [anon_sym_any] = ACTIONS(1581), + [anon_sym_DOLLARtypeof] = ACTIONS(1581), + [anon_sym_DOLLARtypefrom] = ACTIONS(1581), + [anon_sym_DOLLARvatype] = ACTIONS(1581), + [anon_sym_DOLLARevaltype] = ACTIONS(1581), + [sym_real_literal] = ACTIONS(1583), }, [716] = { [sym_line_comment] = STATE(716), [sym_doc_comment] = STATE(716), [sym_block_comment] = STATE(716), - [sym_ident] = ACTIONS(1580), - [sym_integer_literal] = ACTIONS(1582), - [anon_sym_SQUOTE] = ACTIONS(1582), - [anon_sym_DQUOTE] = ACTIONS(1582), - [anon_sym_BQUOTE] = ACTIONS(1582), - [sym_bytes_literal] = ACTIONS(1582), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1580), - [sym_at_ident] = ACTIONS(1582), - [sym_hash_ident] = ACTIONS(1582), - [sym_type_ident] = ACTIONS(1582), - [sym_ct_type_ident] = ACTIONS(1582), - [sym_const_ident] = ACTIONS(1580), - [sym_builtin] = ACTIONS(1582), - [anon_sym_LPAREN] = ACTIONS(1582), - [anon_sym_AMP] = ACTIONS(1580), - [anon_sym_static] = ACTIONS(1580), - [anon_sym_tlocal] = ACTIONS(1580), - [anon_sym_SEMI] = ACTIONS(1582), - [anon_sym_fn] = ACTIONS(1580), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_const] = ACTIONS(1580), - [anon_sym_var] = ACTIONS(1580), - [anon_sym_return] = ACTIONS(1580), - [anon_sym_continue] = ACTIONS(1580), - [anon_sym_break] = ACTIONS(1580), - [anon_sym_defer] = ACTIONS(1580), - [anon_sym_assert] = ACTIONS(1580), - [anon_sym_nextcase] = ACTIONS(1580), - [anon_sym_switch] = ACTIONS(1580), - [anon_sym_AMP_AMP] = ACTIONS(1582), - [anon_sym_if] = ACTIONS(1580), - [anon_sym_for] = ACTIONS(1580), - [anon_sym_foreach] = ACTIONS(1580), - [anon_sym_foreach_r] = ACTIONS(1580), - [anon_sym_while] = ACTIONS(1580), - [anon_sym_do] = ACTIONS(1580), - [anon_sym_int] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1580), - [anon_sym_DASH] = ACTIONS(1580), - [anon_sym_STAR] = ACTIONS(1582), - [anon_sym_asm] = ACTIONS(1580), - [anon_sym_DOLLARassert] = ACTIONS(1580), - [anon_sym_DOLLARerror] = ACTIONS(1580), - [anon_sym_DOLLARecho] = ACTIONS(1580), - [anon_sym_DOLLARif] = ACTIONS(1580), - [anon_sym_DOLLARendif] = ACTIONS(1580), - [anon_sym_DOLLARswitch] = ACTIONS(1580), - [anon_sym_DOLLARfor] = ACTIONS(1580), - [anon_sym_DOLLARforeach] = ACTIONS(1580), - [anon_sym_DOLLARalignof] = ACTIONS(1580), - [anon_sym_DOLLARextnameof] = ACTIONS(1580), - [anon_sym_DOLLARnameof] = ACTIONS(1580), - [anon_sym_DOLLARoffsetof] = ACTIONS(1580), - [anon_sym_DOLLARqnameof] = ACTIONS(1580), - [anon_sym_DOLLARvaconst] = ACTIONS(1580), - [anon_sym_DOLLARvaarg] = ACTIONS(1580), - [anon_sym_DOLLARvaref] = ACTIONS(1580), - [anon_sym_DOLLARvaexpr] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1580), - [anon_sym_false] = ACTIONS(1580), - [anon_sym_null] = ACTIONS(1580), - [anon_sym_DOLLARvacount] = ACTIONS(1580), - [anon_sym_DOLLARappend] = ACTIONS(1580), - [anon_sym_DOLLARconcat] = ACTIONS(1580), - [anon_sym_DOLLAReval] = ACTIONS(1580), - [anon_sym_DOLLARis_const] = ACTIONS(1580), - [anon_sym_DOLLARsizeof] = ACTIONS(1580), - [anon_sym_DOLLARstringify] = ACTIONS(1580), - [anon_sym_DOLLARand] = ACTIONS(1580), - [anon_sym_DOLLARdefined] = ACTIONS(1580), - [anon_sym_DOLLARembed] = ACTIONS(1580), - [anon_sym_DOLLARor] = ACTIONS(1580), - [anon_sym_DOLLARfeature] = ACTIONS(1580), - [anon_sym_DOLLARassignable] = ACTIONS(1580), - [anon_sym_BANG] = ACTIONS(1582), - [anon_sym_TILDE] = ACTIONS(1582), - [anon_sym_PLUS_PLUS] = ACTIONS(1582), - [anon_sym_DASH_DASH] = ACTIONS(1582), - [anon_sym_typeid] = ACTIONS(1580), - [anon_sym_LBRACE_PIPE] = ACTIONS(1582), - [anon_sym_void] = ACTIONS(1580), - [anon_sym_bool] = ACTIONS(1580), - [anon_sym_char] = ACTIONS(1580), - [anon_sym_ichar] = ACTIONS(1580), - [anon_sym_short] = ACTIONS(1580), - [anon_sym_ushort] = ACTIONS(1580), - [anon_sym_uint] = ACTIONS(1580), - [anon_sym_long] = ACTIONS(1580), - [anon_sym_ulong] = ACTIONS(1580), - [anon_sym_int128] = ACTIONS(1580), - [anon_sym_uint128] = ACTIONS(1580), - [anon_sym_float] = ACTIONS(1580), - [anon_sym_double] = ACTIONS(1580), - [anon_sym_float16] = ACTIONS(1580), - [anon_sym_bfloat16] = ACTIONS(1580), - [anon_sym_float128] = ACTIONS(1580), - [anon_sym_iptr] = ACTIONS(1580), - [anon_sym_uptr] = ACTIONS(1580), - [anon_sym_isz] = ACTIONS(1580), - [anon_sym_usz] = ACTIONS(1580), - [anon_sym_anyfault] = ACTIONS(1580), - [anon_sym_any] = ACTIONS(1580), - [anon_sym_DOLLARtypeof] = ACTIONS(1580), - [anon_sym_DOLLARtypefrom] = ACTIONS(1580), - [anon_sym_DOLLARvatype] = ACTIONS(1580), - [anon_sym_DOLLARevaltype] = ACTIONS(1580), - [sym_real_literal] = ACTIONS(1582), + [sym_ident] = ACTIONS(1465), + [sym_integer_literal] = ACTIONS(1467), + [anon_sym_SQUOTE] = ACTIONS(1467), + [anon_sym_DQUOTE] = ACTIONS(1467), + [anon_sym_BQUOTE] = ACTIONS(1467), + [sym_bytes_literal] = ACTIONS(1467), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1465), + [sym_at_ident] = ACTIONS(1467), + [sym_hash_ident] = ACTIONS(1467), + [sym_type_ident] = ACTIONS(1467), + [sym_ct_type_ident] = ACTIONS(1467), + [sym_const_ident] = ACTIONS(1465), + [sym_builtin] = ACTIONS(1467), + [anon_sym_LPAREN] = ACTIONS(1467), + [anon_sym_AMP] = ACTIONS(1465), + [anon_sym_static] = ACTIONS(1465), + [anon_sym_tlocal] = ACTIONS(1465), + [anon_sym_SEMI] = ACTIONS(1467), + [anon_sym_fn] = ACTIONS(1465), + [anon_sym_LBRACE] = ACTIONS(1465), + [anon_sym_const] = ACTIONS(1465), + [anon_sym_var] = ACTIONS(1465), + [anon_sym_return] = ACTIONS(1465), + [anon_sym_continue] = ACTIONS(1465), + [anon_sym_break] = ACTIONS(1465), + [anon_sym_defer] = ACTIONS(1465), + [anon_sym_assert] = ACTIONS(1465), + [anon_sym_nextcase] = ACTIONS(1465), + [anon_sym_switch] = ACTIONS(1465), + [anon_sym_AMP_AMP] = ACTIONS(1467), + [anon_sym_if] = ACTIONS(1465), + [anon_sym_for] = ACTIONS(1465), + [anon_sym_foreach] = ACTIONS(1465), + [anon_sym_foreach_r] = ACTIONS(1465), + [anon_sym_while] = ACTIONS(1465), + [anon_sym_do] = ACTIONS(1465), + [anon_sym_int] = ACTIONS(1465), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_STAR] = ACTIONS(1467), + [anon_sym_asm] = ACTIONS(1465), + [anon_sym_DOLLARassert] = ACTIONS(1465), + [anon_sym_DOLLARerror] = ACTIONS(1465), + [anon_sym_DOLLARecho] = ACTIONS(1465), + [anon_sym_DOLLARif] = ACTIONS(1465), + [anon_sym_DOLLARendif] = ACTIONS(1465), + [anon_sym_DOLLARswitch] = ACTIONS(1465), + [anon_sym_DOLLARfor] = ACTIONS(1465), + [anon_sym_DOLLARforeach] = ACTIONS(1465), + [anon_sym_DOLLARalignof] = ACTIONS(1465), + [anon_sym_DOLLARextnameof] = ACTIONS(1465), + [anon_sym_DOLLARnameof] = ACTIONS(1465), + [anon_sym_DOLLARoffsetof] = ACTIONS(1465), + [anon_sym_DOLLARqnameof] = ACTIONS(1465), + [anon_sym_DOLLARvaconst] = ACTIONS(1465), + [anon_sym_DOLLARvaarg] = ACTIONS(1465), + [anon_sym_DOLLARvaref] = ACTIONS(1465), + [anon_sym_DOLLARvaexpr] = ACTIONS(1465), + [anon_sym_true] = ACTIONS(1465), + [anon_sym_false] = ACTIONS(1465), + [anon_sym_null] = ACTIONS(1465), + [anon_sym_DOLLARvacount] = ACTIONS(1465), + [anon_sym_DOLLARappend] = ACTIONS(1465), + [anon_sym_DOLLARconcat] = ACTIONS(1465), + [anon_sym_DOLLAReval] = ACTIONS(1465), + [anon_sym_DOLLARis_const] = ACTIONS(1465), + [anon_sym_DOLLARsizeof] = ACTIONS(1465), + [anon_sym_DOLLARstringify] = ACTIONS(1465), + [anon_sym_DOLLARand] = ACTIONS(1465), + [anon_sym_DOLLARdefined] = ACTIONS(1465), + [anon_sym_DOLLARembed] = ACTIONS(1465), + [anon_sym_DOLLARor] = ACTIONS(1465), + [anon_sym_DOLLARfeature] = ACTIONS(1465), + [anon_sym_DOLLARassignable] = ACTIONS(1465), + [anon_sym_BANG] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1467), + [anon_sym_PLUS_PLUS] = ACTIONS(1467), + [anon_sym_DASH_DASH] = ACTIONS(1467), + [anon_sym_typeid] = ACTIONS(1465), + [anon_sym_LBRACE_PIPE] = ACTIONS(1467), + [anon_sym_void] = ACTIONS(1465), + [anon_sym_bool] = ACTIONS(1465), + [anon_sym_char] = ACTIONS(1465), + [anon_sym_ichar] = ACTIONS(1465), + [anon_sym_short] = ACTIONS(1465), + [anon_sym_ushort] = ACTIONS(1465), + [anon_sym_uint] = ACTIONS(1465), + [anon_sym_long] = ACTIONS(1465), + [anon_sym_ulong] = ACTIONS(1465), + [anon_sym_int128] = ACTIONS(1465), + [anon_sym_uint128] = ACTIONS(1465), + [anon_sym_float] = ACTIONS(1465), + [anon_sym_double] = ACTIONS(1465), + [anon_sym_float16] = ACTIONS(1465), + [anon_sym_bfloat16] = ACTIONS(1465), + [anon_sym_float128] = ACTIONS(1465), + [anon_sym_iptr] = ACTIONS(1465), + [anon_sym_uptr] = ACTIONS(1465), + [anon_sym_isz] = ACTIONS(1465), + [anon_sym_usz] = ACTIONS(1465), + [anon_sym_anyfault] = ACTIONS(1465), + [anon_sym_any] = ACTIONS(1465), + [anon_sym_DOLLARtypeof] = ACTIONS(1465), + [anon_sym_DOLLARtypefrom] = ACTIONS(1465), + [anon_sym_DOLLARvatype] = ACTIONS(1465), + [anon_sym_DOLLARevaltype] = ACTIONS(1465), + [sym_real_literal] = ACTIONS(1467), }, [717] = { [sym_line_comment] = STATE(717), [sym_doc_comment] = STATE(717), [sym_block_comment] = STATE(717), - [sym_ident] = ACTIONS(1436), - [sym_integer_literal] = ACTIONS(1438), - [anon_sym_SQUOTE] = ACTIONS(1438), - [anon_sym_DQUOTE] = ACTIONS(1438), - [anon_sym_BQUOTE] = ACTIONS(1438), - [sym_bytes_literal] = ACTIONS(1438), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1436), - [sym_at_ident] = ACTIONS(1438), - [sym_hash_ident] = ACTIONS(1438), - [sym_type_ident] = ACTIONS(1438), - [sym_ct_type_ident] = ACTIONS(1438), - [sym_const_ident] = ACTIONS(1436), - [sym_builtin] = ACTIONS(1438), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1436), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_tlocal] = ACTIONS(1436), - [anon_sym_SEMI] = ACTIONS(1438), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_const] = ACTIONS(1436), - [anon_sym_var] = ACTIONS(1436), - [anon_sym_return] = ACTIONS(1436), - [anon_sym_continue] = ACTIONS(1436), - [anon_sym_break] = ACTIONS(1436), - [anon_sym_defer] = ACTIONS(1436), - [anon_sym_assert] = ACTIONS(1436), - [anon_sym_nextcase] = ACTIONS(1436), - [anon_sym_switch] = ACTIONS(1436), - [anon_sym_AMP_AMP] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1436), - [anon_sym_for] = ACTIONS(1436), - [anon_sym_foreach] = ACTIONS(1436), - [anon_sym_foreach_r] = ACTIONS(1436), - [anon_sym_while] = ACTIONS(1436), - [anon_sym_do] = ACTIONS(1436), - [anon_sym_int] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_asm] = ACTIONS(1436), - [anon_sym_DOLLARassert] = ACTIONS(1436), - [anon_sym_DOLLARerror] = ACTIONS(1436), - [anon_sym_DOLLARecho] = ACTIONS(1436), - [anon_sym_DOLLARif] = ACTIONS(1436), - [anon_sym_DOLLARswitch] = ACTIONS(1436), - [anon_sym_DOLLARfor] = ACTIONS(1436), - [anon_sym_DOLLARendfor] = ACTIONS(1436), - [anon_sym_DOLLARforeach] = ACTIONS(1436), - [anon_sym_DOLLARalignof] = ACTIONS(1436), - [anon_sym_DOLLARextnameof] = ACTIONS(1436), - [anon_sym_DOLLARnameof] = ACTIONS(1436), - [anon_sym_DOLLARoffsetof] = ACTIONS(1436), - [anon_sym_DOLLARqnameof] = ACTIONS(1436), - [anon_sym_DOLLARvaconst] = ACTIONS(1436), - [anon_sym_DOLLARvaarg] = ACTIONS(1436), - [anon_sym_DOLLARvaref] = ACTIONS(1436), - [anon_sym_DOLLARvaexpr] = ACTIONS(1436), - [anon_sym_true] = ACTIONS(1436), - [anon_sym_false] = ACTIONS(1436), - [anon_sym_null] = ACTIONS(1436), - [anon_sym_DOLLARvacount] = ACTIONS(1436), - [anon_sym_DOLLARappend] = ACTIONS(1436), - [anon_sym_DOLLARconcat] = ACTIONS(1436), - [anon_sym_DOLLAReval] = ACTIONS(1436), - [anon_sym_DOLLARis_const] = ACTIONS(1436), - [anon_sym_DOLLARsizeof] = ACTIONS(1436), - [anon_sym_DOLLARstringify] = ACTIONS(1436), - [anon_sym_DOLLARand] = ACTIONS(1436), - [anon_sym_DOLLARdefined] = ACTIONS(1436), - [anon_sym_DOLLARembed] = ACTIONS(1436), - [anon_sym_DOLLARor] = ACTIONS(1436), - [anon_sym_DOLLARfeature] = ACTIONS(1436), - [anon_sym_DOLLARassignable] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1438), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_PLUS_PLUS] = ACTIONS(1438), - [anon_sym_DASH_DASH] = ACTIONS(1438), - [anon_sym_typeid] = ACTIONS(1436), - [anon_sym_LBRACE_PIPE] = ACTIONS(1438), - [anon_sym_void] = ACTIONS(1436), - [anon_sym_bool] = ACTIONS(1436), - [anon_sym_char] = ACTIONS(1436), - [anon_sym_ichar] = ACTIONS(1436), - [anon_sym_short] = ACTIONS(1436), - [anon_sym_ushort] = ACTIONS(1436), - [anon_sym_uint] = ACTIONS(1436), - [anon_sym_long] = ACTIONS(1436), - [anon_sym_ulong] = ACTIONS(1436), - [anon_sym_int128] = ACTIONS(1436), - [anon_sym_uint128] = ACTIONS(1436), - [anon_sym_float] = ACTIONS(1436), - [anon_sym_double] = ACTIONS(1436), - [anon_sym_float16] = ACTIONS(1436), - [anon_sym_bfloat16] = ACTIONS(1436), - [anon_sym_float128] = ACTIONS(1436), - [anon_sym_iptr] = ACTIONS(1436), - [anon_sym_uptr] = ACTIONS(1436), - [anon_sym_isz] = ACTIONS(1436), - [anon_sym_usz] = ACTIONS(1436), - [anon_sym_anyfault] = ACTIONS(1436), - [anon_sym_any] = ACTIONS(1436), - [anon_sym_DOLLARtypeof] = ACTIONS(1436), - [anon_sym_DOLLARtypefrom] = ACTIONS(1436), - [anon_sym_DOLLARvatype] = ACTIONS(1436), - [anon_sym_DOLLARevaltype] = ACTIONS(1436), - [sym_real_literal] = ACTIONS(1438), + [sym_ident] = ACTIONS(1561), + [sym_integer_literal] = ACTIONS(1563), + [anon_sym_SQUOTE] = ACTIONS(1563), + [anon_sym_DQUOTE] = ACTIONS(1563), + [anon_sym_BQUOTE] = ACTIONS(1563), + [sym_bytes_literal] = ACTIONS(1563), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1561), + [sym_at_ident] = ACTIONS(1563), + [sym_hash_ident] = ACTIONS(1563), + [sym_type_ident] = ACTIONS(1563), + [sym_ct_type_ident] = ACTIONS(1563), + [sym_const_ident] = ACTIONS(1561), + [sym_builtin] = ACTIONS(1563), + [anon_sym_LPAREN] = ACTIONS(1563), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_static] = ACTIONS(1561), + [anon_sym_tlocal] = ACTIONS(1561), + [anon_sym_SEMI] = ACTIONS(1563), + [anon_sym_fn] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_const] = ACTIONS(1561), + [anon_sym_var] = ACTIONS(1561), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_continue] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1561), + [anon_sym_defer] = ACTIONS(1561), + [anon_sym_assert] = ACTIONS(1561), + [anon_sym_nextcase] = ACTIONS(1561), + [anon_sym_switch] = ACTIONS(1561), + [anon_sym_AMP_AMP] = ACTIONS(1563), + [anon_sym_if] = ACTIONS(1561), + [anon_sym_for] = ACTIONS(1561), + [anon_sym_foreach] = ACTIONS(1561), + [anon_sym_foreach_r] = ACTIONS(1561), + [anon_sym_while] = ACTIONS(1561), + [anon_sym_do] = ACTIONS(1561), + [anon_sym_int] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1561), + [anon_sym_STAR] = ACTIONS(1563), + [anon_sym_asm] = ACTIONS(1561), + [anon_sym_DOLLARassert] = ACTIONS(1561), + [anon_sym_DOLLARerror] = ACTIONS(1561), + [anon_sym_DOLLARecho] = ACTIONS(1561), + [anon_sym_DOLLARif] = ACTIONS(1561), + [anon_sym_DOLLARswitch] = ACTIONS(1561), + [anon_sym_DOLLARfor] = ACTIONS(1561), + [anon_sym_DOLLARforeach] = ACTIONS(1561), + [anon_sym_DOLLARendforeach] = ACTIONS(1561), + [anon_sym_DOLLARalignof] = ACTIONS(1561), + [anon_sym_DOLLARextnameof] = ACTIONS(1561), + [anon_sym_DOLLARnameof] = ACTIONS(1561), + [anon_sym_DOLLARoffsetof] = ACTIONS(1561), + [anon_sym_DOLLARqnameof] = ACTIONS(1561), + [anon_sym_DOLLARvaconst] = ACTIONS(1561), + [anon_sym_DOLLARvaarg] = ACTIONS(1561), + [anon_sym_DOLLARvaref] = ACTIONS(1561), + [anon_sym_DOLLARvaexpr] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1561), + [anon_sym_false] = ACTIONS(1561), + [anon_sym_null] = ACTIONS(1561), + [anon_sym_DOLLARvacount] = ACTIONS(1561), + [anon_sym_DOLLARappend] = ACTIONS(1561), + [anon_sym_DOLLARconcat] = ACTIONS(1561), + [anon_sym_DOLLAReval] = ACTIONS(1561), + [anon_sym_DOLLARis_const] = ACTIONS(1561), + [anon_sym_DOLLARsizeof] = ACTIONS(1561), + [anon_sym_DOLLARstringify] = ACTIONS(1561), + [anon_sym_DOLLARand] = ACTIONS(1561), + [anon_sym_DOLLARdefined] = ACTIONS(1561), + [anon_sym_DOLLARembed] = ACTIONS(1561), + [anon_sym_DOLLARor] = ACTIONS(1561), + [anon_sym_DOLLARfeature] = ACTIONS(1561), + [anon_sym_DOLLARassignable] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1563), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_PLUS_PLUS] = ACTIONS(1563), + [anon_sym_DASH_DASH] = ACTIONS(1563), + [anon_sym_typeid] = ACTIONS(1561), + [anon_sym_LBRACE_PIPE] = ACTIONS(1563), + [anon_sym_void] = ACTIONS(1561), + [anon_sym_bool] = ACTIONS(1561), + [anon_sym_char] = ACTIONS(1561), + [anon_sym_ichar] = ACTIONS(1561), + [anon_sym_short] = ACTIONS(1561), + [anon_sym_ushort] = ACTIONS(1561), + [anon_sym_uint] = ACTIONS(1561), + [anon_sym_long] = ACTIONS(1561), + [anon_sym_ulong] = ACTIONS(1561), + [anon_sym_int128] = ACTIONS(1561), + [anon_sym_uint128] = ACTIONS(1561), + [anon_sym_float] = ACTIONS(1561), + [anon_sym_double] = ACTIONS(1561), + [anon_sym_float16] = ACTIONS(1561), + [anon_sym_bfloat16] = ACTIONS(1561), + [anon_sym_float128] = ACTIONS(1561), + [anon_sym_iptr] = ACTIONS(1561), + [anon_sym_uptr] = ACTIONS(1561), + [anon_sym_isz] = ACTIONS(1561), + [anon_sym_usz] = ACTIONS(1561), + [anon_sym_anyfault] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1561), + [anon_sym_DOLLARtypeof] = ACTIONS(1561), + [anon_sym_DOLLARtypefrom] = ACTIONS(1561), + [anon_sym_DOLLARvatype] = ACTIONS(1561), + [anon_sym_DOLLARevaltype] = ACTIONS(1561), + [sym_real_literal] = ACTIONS(1563), }, [718] = { [sym_line_comment] = STATE(718), [sym_doc_comment] = STATE(718), [sym_block_comment] = STATE(718), - [sym_ident] = ACTIONS(1410), - [sym_integer_literal] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1412), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_BQUOTE] = ACTIONS(1412), - [sym_bytes_literal] = ACTIONS(1412), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1410), - [sym_at_ident] = ACTIONS(1412), - [sym_hash_ident] = ACTIONS(1412), - [sym_type_ident] = ACTIONS(1412), - [sym_ct_type_ident] = ACTIONS(1412), - [sym_const_ident] = ACTIONS(1410), - [sym_builtin] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1410), - [anon_sym_static] = ACTIONS(1410), - [anon_sym_tlocal] = ACTIONS(1410), - [anon_sym_SEMI] = ACTIONS(1412), - [anon_sym_fn] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_var] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_defer] = ACTIONS(1410), - [anon_sym_assert] = ACTIONS(1410), - [anon_sym_nextcase] = ACTIONS(1410), - [anon_sym_switch] = ACTIONS(1410), - [anon_sym_AMP_AMP] = ACTIONS(1412), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_foreach] = ACTIONS(1410), - [anon_sym_foreach_r] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [anon_sym_do] = ACTIONS(1410), - [anon_sym_int] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1412), - [anon_sym_asm] = ACTIONS(1410), - [anon_sym_DOLLARassert] = ACTIONS(1410), - [anon_sym_DOLLARerror] = ACTIONS(1410), - [anon_sym_DOLLARecho] = ACTIONS(1410), - [anon_sym_DOLLARif] = ACTIONS(1410), - [anon_sym_DOLLARswitch] = ACTIONS(1410), - [anon_sym_DOLLARfor] = ACTIONS(1410), - [anon_sym_DOLLARendfor] = ACTIONS(1410), - [anon_sym_DOLLARforeach] = ACTIONS(1410), - [anon_sym_DOLLARalignof] = ACTIONS(1410), - [anon_sym_DOLLARextnameof] = ACTIONS(1410), - [anon_sym_DOLLARnameof] = ACTIONS(1410), - [anon_sym_DOLLARoffsetof] = ACTIONS(1410), - [anon_sym_DOLLARqnameof] = ACTIONS(1410), - [anon_sym_DOLLARvaconst] = ACTIONS(1410), - [anon_sym_DOLLARvaarg] = ACTIONS(1410), - [anon_sym_DOLLARvaref] = ACTIONS(1410), - [anon_sym_DOLLARvaexpr] = ACTIONS(1410), - [anon_sym_true] = ACTIONS(1410), - [anon_sym_false] = ACTIONS(1410), - [anon_sym_null] = ACTIONS(1410), - [anon_sym_DOLLARvacount] = ACTIONS(1410), - [anon_sym_DOLLARappend] = ACTIONS(1410), - [anon_sym_DOLLARconcat] = ACTIONS(1410), - [anon_sym_DOLLAReval] = ACTIONS(1410), - [anon_sym_DOLLARis_const] = ACTIONS(1410), - [anon_sym_DOLLARsizeof] = ACTIONS(1410), - [anon_sym_DOLLARstringify] = ACTIONS(1410), - [anon_sym_DOLLARand] = ACTIONS(1410), - [anon_sym_DOLLARdefined] = ACTIONS(1410), - [anon_sym_DOLLARembed] = ACTIONS(1410), - [anon_sym_DOLLARor] = ACTIONS(1410), - [anon_sym_DOLLARfeature] = ACTIONS(1410), - [anon_sym_DOLLARassignable] = ACTIONS(1410), - [anon_sym_BANG] = ACTIONS(1412), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_PLUS_PLUS] = ACTIONS(1412), - [anon_sym_DASH_DASH] = ACTIONS(1412), - [anon_sym_typeid] = ACTIONS(1410), - [anon_sym_LBRACE_PIPE] = ACTIONS(1412), - [anon_sym_void] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_ichar] = ACTIONS(1410), - [anon_sym_short] = ACTIONS(1410), - [anon_sym_ushort] = ACTIONS(1410), - [anon_sym_uint] = ACTIONS(1410), - [anon_sym_long] = ACTIONS(1410), - [anon_sym_ulong] = ACTIONS(1410), - [anon_sym_int128] = ACTIONS(1410), - [anon_sym_uint128] = ACTIONS(1410), - [anon_sym_float] = ACTIONS(1410), - [anon_sym_double] = ACTIONS(1410), - [anon_sym_float16] = ACTIONS(1410), - [anon_sym_bfloat16] = ACTIONS(1410), - [anon_sym_float128] = ACTIONS(1410), - [anon_sym_iptr] = ACTIONS(1410), - [anon_sym_uptr] = ACTIONS(1410), - [anon_sym_isz] = ACTIONS(1410), - [anon_sym_usz] = ACTIONS(1410), - [anon_sym_anyfault] = ACTIONS(1410), - [anon_sym_any] = ACTIONS(1410), - [anon_sym_DOLLARtypeof] = ACTIONS(1410), - [anon_sym_DOLLARtypefrom] = ACTIONS(1410), - [anon_sym_DOLLARvatype] = ACTIONS(1410), - [anon_sym_DOLLARevaltype] = ACTIONS(1410), - [sym_real_literal] = ACTIONS(1412), + [sym_ident] = ACTIONS(1561), + [sym_integer_literal] = ACTIONS(1563), + [anon_sym_SQUOTE] = ACTIONS(1563), + [anon_sym_DQUOTE] = ACTIONS(1563), + [anon_sym_BQUOTE] = ACTIONS(1563), + [sym_bytes_literal] = ACTIONS(1563), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1561), + [sym_at_ident] = ACTIONS(1563), + [sym_hash_ident] = ACTIONS(1563), + [sym_type_ident] = ACTIONS(1563), + [sym_ct_type_ident] = ACTIONS(1563), + [sym_const_ident] = ACTIONS(1561), + [sym_builtin] = ACTIONS(1563), + [anon_sym_LPAREN] = ACTIONS(1563), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_static] = ACTIONS(1561), + [anon_sym_tlocal] = ACTIONS(1561), + [anon_sym_SEMI] = ACTIONS(1563), + [anon_sym_fn] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_const] = ACTIONS(1561), + [anon_sym_var] = ACTIONS(1561), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_continue] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1561), + [anon_sym_defer] = ACTIONS(1561), + [anon_sym_assert] = ACTIONS(1561), + [anon_sym_nextcase] = ACTIONS(1561), + [anon_sym_switch] = ACTIONS(1561), + [anon_sym_AMP_AMP] = ACTIONS(1563), + [anon_sym_if] = ACTIONS(1561), + [anon_sym_for] = ACTIONS(1561), + [anon_sym_foreach] = ACTIONS(1561), + [anon_sym_foreach_r] = ACTIONS(1561), + [anon_sym_while] = ACTIONS(1561), + [anon_sym_do] = ACTIONS(1561), + [anon_sym_int] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1561), + [anon_sym_STAR] = ACTIONS(1563), + [anon_sym_asm] = ACTIONS(1561), + [anon_sym_DOLLARassert] = ACTIONS(1561), + [anon_sym_DOLLARerror] = ACTIONS(1561), + [anon_sym_DOLLARecho] = ACTIONS(1561), + [anon_sym_DOLLARif] = ACTIONS(1561), + [anon_sym_DOLLARswitch] = ACTIONS(1561), + [anon_sym_DOLLARfor] = ACTIONS(1561), + [anon_sym_DOLLARforeach] = ACTIONS(1561), + [anon_sym_DOLLARendforeach] = ACTIONS(1561), + [anon_sym_DOLLARalignof] = ACTIONS(1561), + [anon_sym_DOLLARextnameof] = ACTIONS(1561), + [anon_sym_DOLLARnameof] = ACTIONS(1561), + [anon_sym_DOLLARoffsetof] = ACTIONS(1561), + [anon_sym_DOLLARqnameof] = ACTIONS(1561), + [anon_sym_DOLLARvaconst] = ACTIONS(1561), + [anon_sym_DOLLARvaarg] = ACTIONS(1561), + [anon_sym_DOLLARvaref] = ACTIONS(1561), + [anon_sym_DOLLARvaexpr] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1561), + [anon_sym_false] = ACTIONS(1561), + [anon_sym_null] = ACTIONS(1561), + [anon_sym_DOLLARvacount] = ACTIONS(1561), + [anon_sym_DOLLARappend] = ACTIONS(1561), + [anon_sym_DOLLARconcat] = ACTIONS(1561), + [anon_sym_DOLLAReval] = ACTIONS(1561), + [anon_sym_DOLLARis_const] = ACTIONS(1561), + [anon_sym_DOLLARsizeof] = ACTIONS(1561), + [anon_sym_DOLLARstringify] = ACTIONS(1561), + [anon_sym_DOLLARand] = ACTIONS(1561), + [anon_sym_DOLLARdefined] = ACTIONS(1561), + [anon_sym_DOLLARembed] = ACTIONS(1561), + [anon_sym_DOLLARor] = ACTIONS(1561), + [anon_sym_DOLLARfeature] = ACTIONS(1561), + [anon_sym_DOLLARassignable] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1563), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_PLUS_PLUS] = ACTIONS(1563), + [anon_sym_DASH_DASH] = ACTIONS(1563), + [anon_sym_typeid] = ACTIONS(1561), + [anon_sym_LBRACE_PIPE] = ACTIONS(1563), + [anon_sym_void] = ACTIONS(1561), + [anon_sym_bool] = ACTIONS(1561), + [anon_sym_char] = ACTIONS(1561), + [anon_sym_ichar] = ACTIONS(1561), + [anon_sym_short] = ACTIONS(1561), + [anon_sym_ushort] = ACTIONS(1561), + [anon_sym_uint] = ACTIONS(1561), + [anon_sym_long] = ACTIONS(1561), + [anon_sym_ulong] = ACTIONS(1561), + [anon_sym_int128] = ACTIONS(1561), + [anon_sym_uint128] = ACTIONS(1561), + [anon_sym_float] = ACTIONS(1561), + [anon_sym_double] = ACTIONS(1561), + [anon_sym_float16] = ACTIONS(1561), + [anon_sym_bfloat16] = ACTIONS(1561), + [anon_sym_float128] = ACTIONS(1561), + [anon_sym_iptr] = ACTIONS(1561), + [anon_sym_uptr] = ACTIONS(1561), + [anon_sym_isz] = ACTIONS(1561), + [anon_sym_usz] = ACTIONS(1561), + [anon_sym_anyfault] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1561), + [anon_sym_DOLLARtypeof] = ACTIONS(1561), + [anon_sym_DOLLARtypefrom] = ACTIONS(1561), + [anon_sym_DOLLARvatype] = ACTIONS(1561), + [anon_sym_DOLLARevaltype] = ACTIONS(1561), + [sym_real_literal] = ACTIONS(1563), }, [719] = { [sym_line_comment] = STATE(719), [sym_doc_comment] = STATE(719), [sym_block_comment] = STATE(719), - [sym_ident] = ACTIONS(1410), - [sym_integer_literal] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1412), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_BQUOTE] = ACTIONS(1412), - [sym_bytes_literal] = ACTIONS(1412), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1410), - [sym_at_ident] = ACTIONS(1412), - [sym_hash_ident] = ACTIONS(1412), - [sym_type_ident] = ACTIONS(1412), - [sym_ct_type_ident] = ACTIONS(1412), - [sym_const_ident] = ACTIONS(1410), - [sym_builtin] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1410), - [anon_sym_static] = ACTIONS(1410), - [anon_sym_tlocal] = ACTIONS(1410), - [anon_sym_SEMI] = ACTIONS(1412), - [anon_sym_fn] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_var] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_defer] = ACTIONS(1410), - [anon_sym_assert] = ACTIONS(1410), - [anon_sym_nextcase] = ACTIONS(1410), - [anon_sym_switch] = ACTIONS(1410), - [anon_sym_AMP_AMP] = ACTIONS(1412), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_foreach] = ACTIONS(1410), - [anon_sym_foreach_r] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [anon_sym_do] = ACTIONS(1410), - [anon_sym_int] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1412), - [anon_sym_asm] = ACTIONS(1410), - [anon_sym_DOLLARassert] = ACTIONS(1410), - [anon_sym_DOLLARerror] = ACTIONS(1410), - [anon_sym_DOLLARecho] = ACTIONS(1410), - [anon_sym_DOLLARif] = ACTIONS(1410), - [anon_sym_DOLLARswitch] = ACTIONS(1410), - [anon_sym_DOLLARfor] = ACTIONS(1410), - [anon_sym_DOLLARforeach] = ACTIONS(1410), - [anon_sym_DOLLARendforeach] = ACTIONS(1410), - [anon_sym_DOLLARalignof] = ACTIONS(1410), - [anon_sym_DOLLARextnameof] = ACTIONS(1410), - [anon_sym_DOLLARnameof] = ACTIONS(1410), - [anon_sym_DOLLARoffsetof] = ACTIONS(1410), - [anon_sym_DOLLARqnameof] = ACTIONS(1410), - [anon_sym_DOLLARvaconst] = ACTIONS(1410), - [anon_sym_DOLLARvaarg] = ACTIONS(1410), - [anon_sym_DOLLARvaref] = ACTIONS(1410), - [anon_sym_DOLLARvaexpr] = ACTIONS(1410), - [anon_sym_true] = ACTIONS(1410), - [anon_sym_false] = ACTIONS(1410), - [anon_sym_null] = ACTIONS(1410), - [anon_sym_DOLLARvacount] = ACTIONS(1410), - [anon_sym_DOLLARappend] = ACTIONS(1410), - [anon_sym_DOLLARconcat] = ACTIONS(1410), - [anon_sym_DOLLAReval] = ACTIONS(1410), - [anon_sym_DOLLARis_const] = ACTIONS(1410), - [anon_sym_DOLLARsizeof] = ACTIONS(1410), - [anon_sym_DOLLARstringify] = ACTIONS(1410), - [anon_sym_DOLLARand] = ACTIONS(1410), - [anon_sym_DOLLARdefined] = ACTIONS(1410), - [anon_sym_DOLLARembed] = ACTIONS(1410), - [anon_sym_DOLLARor] = ACTIONS(1410), - [anon_sym_DOLLARfeature] = ACTIONS(1410), - [anon_sym_DOLLARassignable] = ACTIONS(1410), - [anon_sym_BANG] = ACTIONS(1412), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_PLUS_PLUS] = ACTIONS(1412), - [anon_sym_DASH_DASH] = ACTIONS(1412), - [anon_sym_typeid] = ACTIONS(1410), - [anon_sym_LBRACE_PIPE] = ACTIONS(1412), - [anon_sym_void] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_ichar] = ACTIONS(1410), - [anon_sym_short] = ACTIONS(1410), - [anon_sym_ushort] = ACTIONS(1410), - [anon_sym_uint] = ACTIONS(1410), - [anon_sym_long] = ACTIONS(1410), - [anon_sym_ulong] = ACTIONS(1410), - [anon_sym_int128] = ACTIONS(1410), - [anon_sym_uint128] = ACTIONS(1410), - [anon_sym_float] = ACTIONS(1410), - [anon_sym_double] = ACTIONS(1410), - [anon_sym_float16] = ACTIONS(1410), - [anon_sym_bfloat16] = ACTIONS(1410), - [anon_sym_float128] = ACTIONS(1410), - [anon_sym_iptr] = ACTIONS(1410), - [anon_sym_uptr] = ACTIONS(1410), - [anon_sym_isz] = ACTIONS(1410), - [anon_sym_usz] = ACTIONS(1410), - [anon_sym_anyfault] = ACTIONS(1410), - [anon_sym_any] = ACTIONS(1410), - [anon_sym_DOLLARtypeof] = ACTIONS(1410), - [anon_sym_DOLLARtypefrom] = ACTIONS(1410), - [anon_sym_DOLLARvatype] = ACTIONS(1410), - [anon_sym_DOLLARevaltype] = ACTIONS(1410), - [sym_real_literal] = ACTIONS(1412), + [sym_ident] = ACTIONS(1633), + [sym_integer_literal] = ACTIONS(1635), + [anon_sym_SQUOTE] = ACTIONS(1635), + [anon_sym_DQUOTE] = ACTIONS(1635), + [anon_sym_BQUOTE] = ACTIONS(1635), + [sym_bytes_literal] = ACTIONS(1635), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1633), + [sym_at_ident] = ACTIONS(1635), + [sym_hash_ident] = ACTIONS(1635), + [sym_type_ident] = ACTIONS(1635), + [sym_ct_type_ident] = ACTIONS(1635), + [sym_const_ident] = ACTIONS(1633), + [sym_builtin] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1633), + [anon_sym_static] = ACTIONS(1633), + [anon_sym_tlocal] = ACTIONS(1633), + [anon_sym_SEMI] = ACTIONS(1635), + [anon_sym_fn] = ACTIONS(1633), + [anon_sym_LBRACE] = ACTIONS(1633), + [anon_sym_const] = ACTIONS(1633), + [anon_sym_var] = ACTIONS(1633), + [anon_sym_return] = ACTIONS(1633), + [anon_sym_continue] = ACTIONS(1633), + [anon_sym_break] = ACTIONS(1633), + [anon_sym_defer] = ACTIONS(1633), + [anon_sym_assert] = ACTIONS(1633), + [anon_sym_nextcase] = ACTIONS(1633), + [anon_sym_switch] = ACTIONS(1633), + [anon_sym_AMP_AMP] = ACTIONS(1635), + [anon_sym_if] = ACTIONS(1633), + [anon_sym_for] = ACTIONS(1633), + [anon_sym_foreach] = ACTIONS(1633), + [anon_sym_foreach_r] = ACTIONS(1633), + [anon_sym_while] = ACTIONS(1633), + [anon_sym_do] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_PLUS] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1633), + [anon_sym_STAR] = ACTIONS(1635), + [anon_sym_asm] = ACTIONS(1633), + [anon_sym_DOLLARassert] = ACTIONS(1633), + [anon_sym_DOLLARerror] = ACTIONS(1633), + [anon_sym_DOLLARecho] = ACTIONS(1633), + [anon_sym_DOLLARif] = ACTIONS(1633), + [anon_sym_DOLLARswitch] = ACTIONS(1633), + [anon_sym_DOLLARfor] = ACTIONS(1633), + [anon_sym_DOLLARforeach] = ACTIONS(1633), + [anon_sym_DOLLARendforeach] = ACTIONS(1633), + [anon_sym_DOLLARalignof] = ACTIONS(1633), + [anon_sym_DOLLARextnameof] = ACTIONS(1633), + [anon_sym_DOLLARnameof] = ACTIONS(1633), + [anon_sym_DOLLARoffsetof] = ACTIONS(1633), + [anon_sym_DOLLARqnameof] = ACTIONS(1633), + [anon_sym_DOLLARvaconst] = ACTIONS(1633), + [anon_sym_DOLLARvaarg] = ACTIONS(1633), + [anon_sym_DOLLARvaref] = ACTIONS(1633), + [anon_sym_DOLLARvaexpr] = ACTIONS(1633), + [anon_sym_true] = ACTIONS(1633), + [anon_sym_false] = ACTIONS(1633), + [anon_sym_null] = ACTIONS(1633), + [anon_sym_DOLLARvacount] = ACTIONS(1633), + [anon_sym_DOLLARappend] = ACTIONS(1633), + [anon_sym_DOLLARconcat] = ACTIONS(1633), + [anon_sym_DOLLAReval] = ACTIONS(1633), + [anon_sym_DOLLARis_const] = ACTIONS(1633), + [anon_sym_DOLLARsizeof] = ACTIONS(1633), + [anon_sym_DOLLARstringify] = ACTIONS(1633), + [anon_sym_DOLLARand] = ACTIONS(1633), + [anon_sym_DOLLARdefined] = ACTIONS(1633), + [anon_sym_DOLLARembed] = ACTIONS(1633), + [anon_sym_DOLLARor] = ACTIONS(1633), + [anon_sym_DOLLARfeature] = ACTIONS(1633), + [anon_sym_DOLLARassignable] = ACTIONS(1633), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1635), + [anon_sym_DASH_DASH] = ACTIONS(1635), + [anon_sym_typeid] = ACTIONS(1633), + [anon_sym_LBRACE_PIPE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_char] = ACTIONS(1633), + [anon_sym_ichar] = ACTIONS(1633), + [anon_sym_short] = ACTIONS(1633), + [anon_sym_ushort] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_long] = ACTIONS(1633), + [anon_sym_ulong] = ACTIONS(1633), + [anon_sym_int128] = ACTIONS(1633), + [anon_sym_uint128] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_double] = ACTIONS(1633), + [anon_sym_float16] = ACTIONS(1633), + [anon_sym_bfloat16] = ACTIONS(1633), + [anon_sym_float128] = ACTIONS(1633), + [anon_sym_iptr] = ACTIONS(1633), + [anon_sym_uptr] = ACTIONS(1633), + [anon_sym_isz] = ACTIONS(1633), + [anon_sym_usz] = ACTIONS(1633), + [anon_sym_anyfault] = ACTIONS(1633), + [anon_sym_any] = ACTIONS(1633), + [anon_sym_DOLLARtypeof] = ACTIONS(1633), + [anon_sym_DOLLARtypefrom] = ACTIONS(1633), + [anon_sym_DOLLARvatype] = ACTIONS(1633), + [anon_sym_DOLLARevaltype] = ACTIONS(1633), + [sym_real_literal] = ACTIONS(1635), }, [720] = { [sym_line_comment] = STATE(720), [sym_doc_comment] = STATE(720), [sym_block_comment] = STATE(720), - [sym_ident] = ACTIONS(1410), - [sym_integer_literal] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1412), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_BQUOTE] = ACTIONS(1412), - [sym_bytes_literal] = ACTIONS(1412), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1410), - [sym_at_ident] = ACTIONS(1412), - [sym_hash_ident] = ACTIONS(1412), - [sym_type_ident] = ACTIONS(1412), - [sym_ct_type_ident] = ACTIONS(1412), - [sym_const_ident] = ACTIONS(1410), - [sym_builtin] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1410), - [anon_sym_static] = ACTIONS(1410), - [anon_sym_tlocal] = ACTIONS(1410), - [anon_sym_SEMI] = ACTIONS(1412), - [anon_sym_fn] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_var] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_defer] = ACTIONS(1410), - [anon_sym_assert] = ACTIONS(1410), - [anon_sym_nextcase] = ACTIONS(1410), - [anon_sym_switch] = ACTIONS(1410), - [anon_sym_AMP_AMP] = ACTIONS(1412), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_foreach] = ACTIONS(1410), - [anon_sym_foreach_r] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [anon_sym_do] = ACTIONS(1410), - [anon_sym_int] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1412), - [anon_sym_asm] = ACTIONS(1410), - [anon_sym_DOLLARassert] = ACTIONS(1410), - [anon_sym_DOLLARerror] = ACTIONS(1410), - [anon_sym_DOLLARecho] = ACTIONS(1410), - [anon_sym_DOLLARif] = ACTIONS(1410), - [anon_sym_DOLLARswitch] = ACTIONS(1410), - [anon_sym_DOLLARfor] = ACTIONS(1410), - [anon_sym_DOLLARforeach] = ACTIONS(1410), - [anon_sym_DOLLARendforeach] = ACTIONS(1410), - [anon_sym_DOLLARalignof] = ACTIONS(1410), - [anon_sym_DOLLARextnameof] = ACTIONS(1410), - [anon_sym_DOLLARnameof] = ACTIONS(1410), - [anon_sym_DOLLARoffsetof] = ACTIONS(1410), - [anon_sym_DOLLARqnameof] = ACTIONS(1410), - [anon_sym_DOLLARvaconst] = ACTIONS(1410), - [anon_sym_DOLLARvaarg] = ACTIONS(1410), - [anon_sym_DOLLARvaref] = ACTIONS(1410), - [anon_sym_DOLLARvaexpr] = ACTIONS(1410), - [anon_sym_true] = ACTIONS(1410), - [anon_sym_false] = ACTIONS(1410), - [anon_sym_null] = ACTIONS(1410), - [anon_sym_DOLLARvacount] = ACTIONS(1410), - [anon_sym_DOLLARappend] = ACTIONS(1410), - [anon_sym_DOLLARconcat] = ACTIONS(1410), - [anon_sym_DOLLAReval] = ACTIONS(1410), - [anon_sym_DOLLARis_const] = ACTIONS(1410), - [anon_sym_DOLLARsizeof] = ACTIONS(1410), - [anon_sym_DOLLARstringify] = ACTIONS(1410), - [anon_sym_DOLLARand] = ACTIONS(1410), - [anon_sym_DOLLARdefined] = ACTIONS(1410), - [anon_sym_DOLLARembed] = ACTIONS(1410), - [anon_sym_DOLLARor] = ACTIONS(1410), - [anon_sym_DOLLARfeature] = ACTIONS(1410), - [anon_sym_DOLLARassignable] = ACTIONS(1410), - [anon_sym_BANG] = ACTIONS(1412), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_PLUS_PLUS] = ACTIONS(1412), - [anon_sym_DASH_DASH] = ACTIONS(1412), - [anon_sym_typeid] = ACTIONS(1410), - [anon_sym_LBRACE_PIPE] = ACTIONS(1412), - [anon_sym_void] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_ichar] = ACTIONS(1410), - [anon_sym_short] = ACTIONS(1410), - [anon_sym_ushort] = ACTIONS(1410), - [anon_sym_uint] = ACTIONS(1410), - [anon_sym_long] = ACTIONS(1410), - [anon_sym_ulong] = ACTIONS(1410), - [anon_sym_int128] = ACTIONS(1410), - [anon_sym_uint128] = ACTIONS(1410), - [anon_sym_float] = ACTIONS(1410), - [anon_sym_double] = ACTIONS(1410), - [anon_sym_float16] = ACTIONS(1410), - [anon_sym_bfloat16] = ACTIONS(1410), - [anon_sym_float128] = ACTIONS(1410), - [anon_sym_iptr] = ACTIONS(1410), - [anon_sym_uptr] = ACTIONS(1410), - [anon_sym_isz] = ACTIONS(1410), - [anon_sym_usz] = ACTIONS(1410), - [anon_sym_anyfault] = ACTIONS(1410), - [anon_sym_any] = ACTIONS(1410), - [anon_sym_DOLLARtypeof] = ACTIONS(1410), - [anon_sym_DOLLARtypefrom] = ACTIONS(1410), - [anon_sym_DOLLARvatype] = ACTIONS(1410), - [anon_sym_DOLLARevaltype] = ACTIONS(1410), - [sym_real_literal] = ACTIONS(1412), + [sym_ident] = ACTIONS(1549), + [sym_integer_literal] = ACTIONS(1551), + [anon_sym_SQUOTE] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [anon_sym_BQUOTE] = ACTIONS(1551), + [sym_bytes_literal] = ACTIONS(1551), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1549), + [sym_at_ident] = ACTIONS(1551), + [sym_hash_ident] = ACTIONS(1551), + [sym_type_ident] = ACTIONS(1551), + [sym_ct_type_ident] = ACTIONS(1551), + [sym_const_ident] = ACTIONS(1549), + [sym_builtin] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_AMP] = ACTIONS(1549), + [anon_sym_static] = ACTIONS(1549), + [anon_sym_tlocal] = ACTIONS(1549), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_fn] = ACTIONS(1549), + [anon_sym_LBRACE] = ACTIONS(1549), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_var] = ACTIONS(1549), + [anon_sym_return] = ACTIONS(1549), + [anon_sym_continue] = ACTIONS(1549), + [anon_sym_break] = ACTIONS(1549), + [anon_sym_defer] = ACTIONS(1549), + [anon_sym_assert] = ACTIONS(1549), + [anon_sym_nextcase] = ACTIONS(1549), + [anon_sym_switch] = ACTIONS(1549), + [anon_sym_AMP_AMP] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1549), + [anon_sym_for] = ACTIONS(1549), + [anon_sym_foreach] = ACTIONS(1549), + [anon_sym_foreach_r] = ACTIONS(1549), + [anon_sym_while] = ACTIONS(1549), + [anon_sym_do] = ACTIONS(1549), + [anon_sym_int] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1551), + [anon_sym_asm] = ACTIONS(1549), + [anon_sym_DOLLARassert] = ACTIONS(1549), + [anon_sym_DOLLARerror] = ACTIONS(1549), + [anon_sym_DOLLARecho] = ACTIONS(1549), + [anon_sym_DOLLARif] = ACTIONS(1549), + [anon_sym_DOLLARswitch] = ACTIONS(1549), + [anon_sym_DOLLARfor] = ACTIONS(1549), + [anon_sym_DOLLARforeach] = ACTIONS(1549), + [anon_sym_DOLLARendforeach] = ACTIONS(1549), + [anon_sym_DOLLARalignof] = ACTIONS(1549), + [anon_sym_DOLLARextnameof] = ACTIONS(1549), + [anon_sym_DOLLARnameof] = ACTIONS(1549), + [anon_sym_DOLLARoffsetof] = ACTIONS(1549), + [anon_sym_DOLLARqnameof] = ACTIONS(1549), + [anon_sym_DOLLARvaconst] = ACTIONS(1549), + [anon_sym_DOLLARvaarg] = ACTIONS(1549), + [anon_sym_DOLLARvaref] = ACTIONS(1549), + [anon_sym_DOLLARvaexpr] = ACTIONS(1549), + [anon_sym_true] = ACTIONS(1549), + [anon_sym_false] = ACTIONS(1549), + [anon_sym_null] = ACTIONS(1549), + [anon_sym_DOLLARvacount] = ACTIONS(1549), + [anon_sym_DOLLARappend] = ACTIONS(1549), + [anon_sym_DOLLARconcat] = ACTIONS(1549), + [anon_sym_DOLLAReval] = ACTIONS(1549), + [anon_sym_DOLLARis_const] = ACTIONS(1549), + [anon_sym_DOLLARsizeof] = ACTIONS(1549), + [anon_sym_DOLLARstringify] = ACTIONS(1549), + [anon_sym_DOLLARand] = ACTIONS(1549), + [anon_sym_DOLLARdefined] = ACTIONS(1549), + [anon_sym_DOLLARembed] = ACTIONS(1549), + [anon_sym_DOLLARor] = ACTIONS(1549), + [anon_sym_DOLLARfeature] = ACTIONS(1549), + [anon_sym_DOLLARassignable] = ACTIONS(1549), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_PLUS_PLUS] = ACTIONS(1551), + [anon_sym_DASH_DASH] = ACTIONS(1551), + [anon_sym_typeid] = ACTIONS(1549), + [anon_sym_LBRACE_PIPE] = ACTIONS(1551), + [anon_sym_void] = ACTIONS(1549), + [anon_sym_bool] = ACTIONS(1549), + [anon_sym_char] = ACTIONS(1549), + [anon_sym_ichar] = ACTIONS(1549), + [anon_sym_short] = ACTIONS(1549), + [anon_sym_ushort] = ACTIONS(1549), + [anon_sym_uint] = ACTIONS(1549), + [anon_sym_long] = ACTIONS(1549), + [anon_sym_ulong] = ACTIONS(1549), + [anon_sym_int128] = ACTIONS(1549), + [anon_sym_uint128] = ACTIONS(1549), + [anon_sym_float] = ACTIONS(1549), + [anon_sym_double] = ACTIONS(1549), + [anon_sym_float16] = ACTIONS(1549), + [anon_sym_bfloat16] = ACTIONS(1549), + [anon_sym_float128] = ACTIONS(1549), + [anon_sym_iptr] = ACTIONS(1549), + [anon_sym_uptr] = ACTIONS(1549), + [anon_sym_isz] = ACTIONS(1549), + [anon_sym_usz] = ACTIONS(1549), + [anon_sym_anyfault] = ACTIONS(1549), + [anon_sym_any] = ACTIONS(1549), + [anon_sym_DOLLARtypeof] = ACTIONS(1549), + [anon_sym_DOLLARtypefrom] = ACTIONS(1549), + [anon_sym_DOLLARvatype] = ACTIONS(1549), + [anon_sym_DOLLARevaltype] = ACTIONS(1549), + [sym_real_literal] = ACTIONS(1551), }, [721] = { [sym_line_comment] = STATE(721), [sym_doc_comment] = STATE(721), [sym_block_comment] = STATE(721), - [sym_ident] = ACTIONS(1436), - [sym_integer_literal] = ACTIONS(1438), - [anon_sym_SQUOTE] = ACTIONS(1438), - [anon_sym_DQUOTE] = ACTIONS(1438), - [anon_sym_BQUOTE] = ACTIONS(1438), - [sym_bytes_literal] = ACTIONS(1438), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1436), - [sym_at_ident] = ACTIONS(1438), - [sym_hash_ident] = ACTIONS(1438), - [sym_type_ident] = ACTIONS(1438), - [sym_ct_type_ident] = ACTIONS(1438), - [sym_const_ident] = ACTIONS(1436), - [sym_builtin] = ACTIONS(1438), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1436), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_tlocal] = ACTIONS(1436), - [anon_sym_SEMI] = ACTIONS(1438), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_const] = ACTIONS(1436), - [anon_sym_var] = ACTIONS(1436), - [anon_sym_return] = ACTIONS(1436), - [anon_sym_continue] = ACTIONS(1436), - [anon_sym_break] = ACTIONS(1436), - [anon_sym_defer] = ACTIONS(1436), - [anon_sym_assert] = ACTIONS(1436), - [anon_sym_nextcase] = ACTIONS(1436), - [anon_sym_switch] = ACTIONS(1436), - [anon_sym_AMP_AMP] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1436), - [anon_sym_for] = ACTIONS(1436), - [anon_sym_foreach] = ACTIONS(1436), - [anon_sym_foreach_r] = ACTIONS(1436), - [anon_sym_while] = ACTIONS(1436), - [anon_sym_do] = ACTIONS(1436), - [anon_sym_int] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_asm] = ACTIONS(1436), - [anon_sym_DOLLARassert] = ACTIONS(1436), - [anon_sym_DOLLARerror] = ACTIONS(1436), - [anon_sym_DOLLARecho] = ACTIONS(1436), - [anon_sym_DOLLARif] = ACTIONS(1436), - [anon_sym_DOLLARswitch] = ACTIONS(1436), - [anon_sym_DOLLARfor] = ACTIONS(1436), - [anon_sym_DOLLARforeach] = ACTIONS(1436), - [anon_sym_DOLLARendforeach] = ACTIONS(1436), - [anon_sym_DOLLARalignof] = ACTIONS(1436), - [anon_sym_DOLLARextnameof] = ACTIONS(1436), - [anon_sym_DOLLARnameof] = ACTIONS(1436), - [anon_sym_DOLLARoffsetof] = ACTIONS(1436), - [anon_sym_DOLLARqnameof] = ACTIONS(1436), - [anon_sym_DOLLARvaconst] = ACTIONS(1436), - [anon_sym_DOLLARvaarg] = ACTIONS(1436), - [anon_sym_DOLLARvaref] = ACTIONS(1436), - [anon_sym_DOLLARvaexpr] = ACTIONS(1436), - [anon_sym_true] = ACTIONS(1436), - [anon_sym_false] = ACTIONS(1436), - [anon_sym_null] = ACTIONS(1436), - [anon_sym_DOLLARvacount] = ACTIONS(1436), - [anon_sym_DOLLARappend] = ACTIONS(1436), - [anon_sym_DOLLARconcat] = ACTIONS(1436), - [anon_sym_DOLLAReval] = ACTIONS(1436), - [anon_sym_DOLLARis_const] = ACTIONS(1436), - [anon_sym_DOLLARsizeof] = ACTIONS(1436), - [anon_sym_DOLLARstringify] = ACTIONS(1436), - [anon_sym_DOLLARand] = ACTIONS(1436), - [anon_sym_DOLLARdefined] = ACTIONS(1436), - [anon_sym_DOLLARembed] = ACTIONS(1436), - [anon_sym_DOLLARor] = ACTIONS(1436), - [anon_sym_DOLLARfeature] = ACTIONS(1436), - [anon_sym_DOLLARassignable] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1438), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_PLUS_PLUS] = ACTIONS(1438), - [anon_sym_DASH_DASH] = ACTIONS(1438), - [anon_sym_typeid] = ACTIONS(1436), - [anon_sym_LBRACE_PIPE] = ACTIONS(1438), - [anon_sym_void] = ACTIONS(1436), - [anon_sym_bool] = ACTIONS(1436), - [anon_sym_char] = ACTIONS(1436), - [anon_sym_ichar] = ACTIONS(1436), - [anon_sym_short] = ACTIONS(1436), - [anon_sym_ushort] = ACTIONS(1436), - [anon_sym_uint] = ACTIONS(1436), - [anon_sym_long] = ACTIONS(1436), - [anon_sym_ulong] = ACTIONS(1436), - [anon_sym_int128] = ACTIONS(1436), - [anon_sym_uint128] = ACTIONS(1436), - [anon_sym_float] = ACTIONS(1436), - [anon_sym_double] = ACTIONS(1436), - [anon_sym_float16] = ACTIONS(1436), - [anon_sym_bfloat16] = ACTIONS(1436), - [anon_sym_float128] = ACTIONS(1436), - [anon_sym_iptr] = ACTIONS(1436), - [anon_sym_uptr] = ACTIONS(1436), - [anon_sym_isz] = ACTIONS(1436), - [anon_sym_usz] = ACTIONS(1436), - [anon_sym_anyfault] = ACTIONS(1436), - [anon_sym_any] = ACTIONS(1436), - [anon_sym_DOLLARtypeof] = ACTIONS(1436), - [anon_sym_DOLLARtypefrom] = ACTIONS(1436), - [anon_sym_DOLLARvatype] = ACTIONS(1436), - [anon_sym_DOLLARevaltype] = ACTIONS(1436), - [sym_real_literal] = ACTIONS(1438), + [sym_ident] = ACTIONS(1569), + [sym_integer_literal] = ACTIONS(1571), + [anon_sym_SQUOTE] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1571), + [anon_sym_BQUOTE] = ACTIONS(1571), + [sym_bytes_literal] = ACTIONS(1571), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1569), + [sym_at_ident] = ACTIONS(1571), + [sym_hash_ident] = ACTIONS(1571), + [sym_type_ident] = ACTIONS(1571), + [sym_ct_type_ident] = ACTIONS(1571), + [sym_const_ident] = ACTIONS(1569), + [sym_builtin] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1571), + [anon_sym_AMP] = ACTIONS(1569), + [anon_sym_static] = ACTIONS(1569), + [anon_sym_tlocal] = ACTIONS(1569), + [anon_sym_SEMI] = ACTIONS(1571), + [anon_sym_fn] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1569), + [anon_sym_const] = ACTIONS(1569), + [anon_sym_var] = ACTIONS(1569), + [anon_sym_return] = ACTIONS(1569), + [anon_sym_continue] = ACTIONS(1569), + [anon_sym_break] = ACTIONS(1569), + [anon_sym_defer] = ACTIONS(1569), + [anon_sym_assert] = ACTIONS(1569), + [anon_sym_nextcase] = ACTIONS(1569), + [anon_sym_switch] = ACTIONS(1569), + [anon_sym_AMP_AMP] = ACTIONS(1571), + [anon_sym_if] = ACTIONS(1569), + [anon_sym_for] = ACTIONS(1569), + [anon_sym_foreach] = ACTIONS(1569), + [anon_sym_foreach_r] = ACTIONS(1569), + [anon_sym_while] = ACTIONS(1569), + [anon_sym_do] = ACTIONS(1569), + [anon_sym_int] = ACTIONS(1569), + [anon_sym_PLUS] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_STAR] = ACTIONS(1571), + [anon_sym_asm] = ACTIONS(1569), + [anon_sym_DOLLARassert] = ACTIONS(1569), + [anon_sym_DOLLARerror] = ACTIONS(1569), + [anon_sym_DOLLARecho] = ACTIONS(1569), + [anon_sym_DOLLARif] = ACTIONS(1569), + [anon_sym_DOLLARswitch] = ACTIONS(1569), + [anon_sym_DOLLARfor] = ACTIONS(1569), + [anon_sym_DOLLARforeach] = ACTIONS(1569), + [anon_sym_DOLLARendforeach] = ACTIONS(1569), + [anon_sym_DOLLARalignof] = ACTIONS(1569), + [anon_sym_DOLLARextnameof] = ACTIONS(1569), + [anon_sym_DOLLARnameof] = ACTIONS(1569), + [anon_sym_DOLLARoffsetof] = ACTIONS(1569), + [anon_sym_DOLLARqnameof] = ACTIONS(1569), + [anon_sym_DOLLARvaconst] = ACTIONS(1569), + [anon_sym_DOLLARvaarg] = ACTIONS(1569), + [anon_sym_DOLLARvaref] = ACTIONS(1569), + [anon_sym_DOLLARvaexpr] = ACTIONS(1569), + [anon_sym_true] = ACTIONS(1569), + [anon_sym_false] = ACTIONS(1569), + [anon_sym_null] = ACTIONS(1569), + [anon_sym_DOLLARvacount] = ACTIONS(1569), + [anon_sym_DOLLARappend] = ACTIONS(1569), + [anon_sym_DOLLARconcat] = ACTIONS(1569), + [anon_sym_DOLLAReval] = ACTIONS(1569), + [anon_sym_DOLLARis_const] = ACTIONS(1569), + [anon_sym_DOLLARsizeof] = ACTIONS(1569), + [anon_sym_DOLLARstringify] = ACTIONS(1569), + [anon_sym_DOLLARand] = ACTIONS(1569), + [anon_sym_DOLLARdefined] = ACTIONS(1569), + [anon_sym_DOLLARembed] = ACTIONS(1569), + [anon_sym_DOLLARor] = ACTIONS(1569), + [anon_sym_DOLLARfeature] = ACTIONS(1569), + [anon_sym_DOLLARassignable] = ACTIONS(1569), + [anon_sym_BANG] = ACTIONS(1571), + [anon_sym_TILDE] = ACTIONS(1571), + [anon_sym_PLUS_PLUS] = ACTIONS(1571), + [anon_sym_DASH_DASH] = ACTIONS(1571), + [anon_sym_typeid] = ACTIONS(1569), + [anon_sym_LBRACE_PIPE] = ACTIONS(1571), + [anon_sym_void] = ACTIONS(1569), + [anon_sym_bool] = ACTIONS(1569), + [anon_sym_char] = ACTIONS(1569), + [anon_sym_ichar] = ACTIONS(1569), + [anon_sym_short] = ACTIONS(1569), + [anon_sym_ushort] = ACTIONS(1569), + [anon_sym_uint] = ACTIONS(1569), + [anon_sym_long] = ACTIONS(1569), + [anon_sym_ulong] = ACTIONS(1569), + [anon_sym_int128] = ACTIONS(1569), + [anon_sym_uint128] = ACTIONS(1569), + [anon_sym_float] = ACTIONS(1569), + [anon_sym_double] = ACTIONS(1569), + [anon_sym_float16] = ACTIONS(1569), + [anon_sym_bfloat16] = ACTIONS(1569), + [anon_sym_float128] = ACTIONS(1569), + [anon_sym_iptr] = ACTIONS(1569), + [anon_sym_uptr] = ACTIONS(1569), + [anon_sym_isz] = ACTIONS(1569), + [anon_sym_usz] = ACTIONS(1569), + [anon_sym_anyfault] = ACTIONS(1569), + [anon_sym_any] = ACTIONS(1569), + [anon_sym_DOLLARtypeof] = ACTIONS(1569), + [anon_sym_DOLLARtypefrom] = ACTIONS(1569), + [anon_sym_DOLLARvatype] = ACTIONS(1569), + [anon_sym_DOLLARevaltype] = ACTIONS(1569), + [sym_real_literal] = ACTIONS(1571), }, [722] = { [sym_line_comment] = STATE(722), [sym_doc_comment] = STATE(722), [sym_block_comment] = STATE(722), - [sym_ident] = ACTIONS(1440), - [sym_integer_literal] = ACTIONS(1442), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_DQUOTE] = ACTIONS(1442), - [anon_sym_BQUOTE] = ACTIONS(1442), - [sym_bytes_literal] = ACTIONS(1442), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1440), - [sym_at_ident] = ACTIONS(1442), - [sym_hash_ident] = ACTIONS(1442), - [sym_type_ident] = ACTIONS(1442), - [sym_ct_type_ident] = ACTIONS(1442), - [sym_const_ident] = ACTIONS(1440), - [sym_builtin] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1440), - [anon_sym_static] = ACTIONS(1440), - [anon_sym_tlocal] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1442), - [anon_sym_fn] = ACTIONS(1440), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_const] = ACTIONS(1440), - [anon_sym_var] = ACTIONS(1440), - [anon_sym_return] = ACTIONS(1440), - [anon_sym_continue] = ACTIONS(1440), - [anon_sym_break] = ACTIONS(1440), - [anon_sym_defer] = ACTIONS(1440), - [anon_sym_assert] = ACTIONS(1440), - [anon_sym_nextcase] = ACTIONS(1440), - [anon_sym_switch] = ACTIONS(1440), - [anon_sym_AMP_AMP] = ACTIONS(1442), - [anon_sym_if] = ACTIONS(1440), - [anon_sym_for] = ACTIONS(1440), - [anon_sym_foreach] = ACTIONS(1440), - [anon_sym_foreach_r] = ACTIONS(1440), - [anon_sym_while] = ACTIONS(1440), - [anon_sym_do] = ACTIONS(1440), - [anon_sym_int] = ACTIONS(1440), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_STAR] = ACTIONS(1442), - [anon_sym_asm] = ACTIONS(1440), - [anon_sym_DOLLARassert] = ACTIONS(1440), - [anon_sym_DOLLARerror] = ACTIONS(1440), - [anon_sym_DOLLARecho] = ACTIONS(1440), - [anon_sym_DOLLARif] = ACTIONS(1440), - [anon_sym_DOLLARswitch] = ACTIONS(1440), - [anon_sym_DOLLARfor] = ACTIONS(1440), - [anon_sym_DOLLARforeach] = ACTIONS(1440), - [anon_sym_DOLLARendforeach] = ACTIONS(1440), - [anon_sym_DOLLARalignof] = ACTIONS(1440), - [anon_sym_DOLLARextnameof] = ACTIONS(1440), - [anon_sym_DOLLARnameof] = ACTIONS(1440), - [anon_sym_DOLLARoffsetof] = ACTIONS(1440), - [anon_sym_DOLLARqnameof] = ACTIONS(1440), - [anon_sym_DOLLARvaconst] = ACTIONS(1440), - [anon_sym_DOLLARvaarg] = ACTIONS(1440), - [anon_sym_DOLLARvaref] = ACTIONS(1440), - [anon_sym_DOLLARvaexpr] = ACTIONS(1440), - [anon_sym_true] = ACTIONS(1440), - [anon_sym_false] = ACTIONS(1440), - [anon_sym_null] = ACTIONS(1440), - [anon_sym_DOLLARvacount] = ACTIONS(1440), - [anon_sym_DOLLARappend] = ACTIONS(1440), - [anon_sym_DOLLARconcat] = ACTIONS(1440), - [anon_sym_DOLLAReval] = ACTIONS(1440), - [anon_sym_DOLLARis_const] = ACTIONS(1440), - [anon_sym_DOLLARsizeof] = ACTIONS(1440), - [anon_sym_DOLLARstringify] = ACTIONS(1440), - [anon_sym_DOLLARand] = ACTIONS(1440), - [anon_sym_DOLLARdefined] = ACTIONS(1440), - [anon_sym_DOLLARembed] = ACTIONS(1440), - [anon_sym_DOLLARor] = ACTIONS(1440), - [anon_sym_DOLLARfeature] = ACTIONS(1440), - [anon_sym_DOLLARassignable] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_typeid] = ACTIONS(1440), - [anon_sym_LBRACE_PIPE] = ACTIONS(1442), - [anon_sym_void] = ACTIONS(1440), - [anon_sym_bool] = ACTIONS(1440), - [anon_sym_char] = ACTIONS(1440), - [anon_sym_ichar] = ACTIONS(1440), - [anon_sym_short] = ACTIONS(1440), - [anon_sym_ushort] = ACTIONS(1440), - [anon_sym_uint] = ACTIONS(1440), - [anon_sym_long] = ACTIONS(1440), - [anon_sym_ulong] = ACTIONS(1440), - [anon_sym_int128] = ACTIONS(1440), - [anon_sym_uint128] = ACTIONS(1440), - [anon_sym_float] = ACTIONS(1440), - [anon_sym_double] = ACTIONS(1440), - [anon_sym_float16] = ACTIONS(1440), - [anon_sym_bfloat16] = ACTIONS(1440), - [anon_sym_float128] = ACTIONS(1440), - [anon_sym_iptr] = ACTIONS(1440), - [anon_sym_uptr] = ACTIONS(1440), - [anon_sym_isz] = ACTIONS(1440), - [anon_sym_usz] = ACTIONS(1440), - [anon_sym_anyfault] = ACTIONS(1440), - [anon_sym_any] = ACTIONS(1440), - [anon_sym_DOLLARtypeof] = ACTIONS(1440), - [anon_sym_DOLLARtypefrom] = ACTIONS(1440), - [anon_sym_DOLLARvatype] = ACTIONS(1440), - [anon_sym_DOLLARevaltype] = ACTIONS(1440), - [sym_real_literal] = ACTIONS(1442), + [sym_ident] = ACTIONS(1637), + [sym_integer_literal] = ACTIONS(1639), + [anon_sym_SQUOTE] = ACTIONS(1639), + [anon_sym_DQUOTE] = ACTIONS(1639), + [anon_sym_BQUOTE] = ACTIONS(1639), + [sym_bytes_literal] = ACTIONS(1639), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1637), + [sym_at_ident] = ACTIONS(1639), + [sym_hash_ident] = ACTIONS(1639), + [sym_type_ident] = ACTIONS(1639), + [sym_ct_type_ident] = ACTIONS(1639), + [sym_const_ident] = ACTIONS(1637), + [sym_builtin] = ACTIONS(1639), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_AMP] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1637), + [anon_sym_tlocal] = ACTIONS(1637), + [anon_sym_SEMI] = ACTIONS(1639), + [anon_sym_fn] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(1637), + [anon_sym_const] = ACTIONS(1637), + [anon_sym_var] = ACTIONS(1637), + [anon_sym_return] = ACTIONS(1637), + [anon_sym_continue] = ACTIONS(1637), + [anon_sym_break] = ACTIONS(1637), + [anon_sym_defer] = ACTIONS(1637), + [anon_sym_assert] = ACTIONS(1637), + [anon_sym_nextcase] = ACTIONS(1637), + [anon_sym_switch] = ACTIONS(1637), + [anon_sym_AMP_AMP] = ACTIONS(1639), + [anon_sym_if] = ACTIONS(1637), + [anon_sym_for] = ACTIONS(1637), + [anon_sym_foreach] = ACTIONS(1637), + [anon_sym_foreach_r] = ACTIONS(1637), + [anon_sym_while] = ACTIONS(1637), + [anon_sym_do] = ACTIONS(1637), + [anon_sym_int] = ACTIONS(1637), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1639), + [anon_sym_asm] = ACTIONS(1637), + [anon_sym_DOLLARassert] = ACTIONS(1637), + [anon_sym_DOLLARerror] = ACTIONS(1637), + [anon_sym_DOLLARecho] = ACTIONS(1637), + [anon_sym_DOLLARif] = ACTIONS(1637), + [anon_sym_DOLLARswitch] = ACTIONS(1637), + [anon_sym_DOLLARfor] = ACTIONS(1637), + [anon_sym_DOLLARforeach] = ACTIONS(1637), + [anon_sym_DOLLARendforeach] = ACTIONS(1637), + [anon_sym_DOLLARalignof] = ACTIONS(1637), + [anon_sym_DOLLARextnameof] = ACTIONS(1637), + [anon_sym_DOLLARnameof] = ACTIONS(1637), + [anon_sym_DOLLARoffsetof] = ACTIONS(1637), + [anon_sym_DOLLARqnameof] = ACTIONS(1637), + [anon_sym_DOLLARvaconst] = ACTIONS(1637), + [anon_sym_DOLLARvaarg] = ACTIONS(1637), + [anon_sym_DOLLARvaref] = ACTIONS(1637), + [anon_sym_DOLLARvaexpr] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1637), + [anon_sym_false] = ACTIONS(1637), + [anon_sym_null] = ACTIONS(1637), + [anon_sym_DOLLARvacount] = ACTIONS(1637), + [anon_sym_DOLLARappend] = ACTIONS(1637), + [anon_sym_DOLLARconcat] = ACTIONS(1637), + [anon_sym_DOLLAReval] = ACTIONS(1637), + [anon_sym_DOLLARis_const] = ACTIONS(1637), + [anon_sym_DOLLARsizeof] = ACTIONS(1637), + [anon_sym_DOLLARstringify] = ACTIONS(1637), + [anon_sym_DOLLARand] = ACTIONS(1637), + [anon_sym_DOLLARdefined] = ACTIONS(1637), + [anon_sym_DOLLARembed] = ACTIONS(1637), + [anon_sym_DOLLARor] = ACTIONS(1637), + [anon_sym_DOLLARfeature] = ACTIONS(1637), + [anon_sym_DOLLARassignable] = ACTIONS(1637), + [anon_sym_BANG] = ACTIONS(1639), + [anon_sym_TILDE] = ACTIONS(1639), + [anon_sym_PLUS_PLUS] = ACTIONS(1639), + [anon_sym_DASH_DASH] = ACTIONS(1639), + [anon_sym_typeid] = ACTIONS(1637), + [anon_sym_LBRACE_PIPE] = ACTIONS(1639), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_bool] = ACTIONS(1637), + [anon_sym_char] = ACTIONS(1637), + [anon_sym_ichar] = ACTIONS(1637), + [anon_sym_short] = ACTIONS(1637), + [anon_sym_ushort] = ACTIONS(1637), + [anon_sym_uint] = ACTIONS(1637), + [anon_sym_long] = ACTIONS(1637), + [anon_sym_ulong] = ACTIONS(1637), + [anon_sym_int128] = ACTIONS(1637), + [anon_sym_uint128] = ACTIONS(1637), + [anon_sym_float] = ACTIONS(1637), + [anon_sym_double] = ACTIONS(1637), + [anon_sym_float16] = ACTIONS(1637), + [anon_sym_bfloat16] = ACTIONS(1637), + [anon_sym_float128] = ACTIONS(1637), + [anon_sym_iptr] = ACTIONS(1637), + [anon_sym_uptr] = ACTIONS(1637), + [anon_sym_isz] = ACTIONS(1637), + [anon_sym_usz] = ACTIONS(1637), + [anon_sym_anyfault] = ACTIONS(1637), + [anon_sym_any] = ACTIONS(1637), + [anon_sym_DOLLARtypeof] = ACTIONS(1637), + [anon_sym_DOLLARtypefrom] = ACTIONS(1637), + [anon_sym_DOLLARvatype] = ACTIONS(1637), + [anon_sym_DOLLARevaltype] = ACTIONS(1637), + [sym_real_literal] = ACTIONS(1639), }, [723] = { [sym_line_comment] = STATE(723), [sym_doc_comment] = STATE(723), [sym_block_comment] = STATE(723), - [sym_ident] = ACTIONS(1548), - [sym_integer_literal] = ACTIONS(1550), - [anon_sym_SQUOTE] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1550), - [anon_sym_BQUOTE] = ACTIONS(1550), - [sym_bytes_literal] = ACTIONS(1550), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1548), - [sym_at_ident] = ACTIONS(1550), - [sym_hash_ident] = ACTIONS(1550), - [sym_type_ident] = ACTIONS(1550), - [sym_ct_type_ident] = ACTIONS(1550), - [sym_const_ident] = ACTIONS(1548), - [sym_builtin] = ACTIONS(1550), - [anon_sym_LPAREN] = ACTIONS(1550), - [anon_sym_AMP] = ACTIONS(1548), - [anon_sym_static] = ACTIONS(1548), - [anon_sym_tlocal] = ACTIONS(1548), - [anon_sym_SEMI] = ACTIONS(1550), - [anon_sym_fn] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(1548), - [anon_sym_const] = ACTIONS(1548), - [anon_sym_var] = ACTIONS(1548), - [anon_sym_return] = ACTIONS(1548), - [anon_sym_continue] = ACTIONS(1548), - [anon_sym_break] = ACTIONS(1548), - [anon_sym_defer] = ACTIONS(1548), - [anon_sym_assert] = ACTIONS(1548), - [anon_sym_nextcase] = ACTIONS(1548), - [anon_sym_switch] = ACTIONS(1548), - [anon_sym_AMP_AMP] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(1548), - [anon_sym_for] = ACTIONS(1548), - [anon_sym_foreach] = ACTIONS(1548), - [anon_sym_foreach_r] = ACTIONS(1548), - [anon_sym_while] = ACTIONS(1548), - [anon_sym_do] = ACTIONS(1548), - [anon_sym_int] = ACTIONS(1548), - [anon_sym_PLUS] = ACTIONS(1548), - [anon_sym_DASH] = ACTIONS(1548), - [anon_sym_STAR] = ACTIONS(1550), - [anon_sym_asm] = ACTIONS(1548), - [anon_sym_DOLLARassert] = ACTIONS(1548), - [anon_sym_DOLLARerror] = ACTIONS(1548), - [anon_sym_DOLLARecho] = ACTIONS(1548), - [anon_sym_DOLLARif] = ACTIONS(1548), - [anon_sym_DOLLARendif] = ACTIONS(1548), - [anon_sym_DOLLARswitch] = ACTIONS(1548), - [anon_sym_DOLLARfor] = ACTIONS(1548), - [anon_sym_DOLLARforeach] = ACTIONS(1548), - [anon_sym_DOLLARalignof] = ACTIONS(1548), - [anon_sym_DOLLARextnameof] = ACTIONS(1548), - [anon_sym_DOLLARnameof] = ACTIONS(1548), - [anon_sym_DOLLARoffsetof] = ACTIONS(1548), - [anon_sym_DOLLARqnameof] = ACTIONS(1548), - [anon_sym_DOLLARvaconst] = ACTIONS(1548), - [anon_sym_DOLLARvaarg] = ACTIONS(1548), - [anon_sym_DOLLARvaref] = ACTIONS(1548), - [anon_sym_DOLLARvaexpr] = ACTIONS(1548), - [anon_sym_true] = ACTIONS(1548), - [anon_sym_false] = ACTIONS(1548), - [anon_sym_null] = ACTIONS(1548), - [anon_sym_DOLLARvacount] = ACTIONS(1548), - [anon_sym_DOLLARappend] = ACTIONS(1548), - [anon_sym_DOLLARconcat] = ACTIONS(1548), - [anon_sym_DOLLAReval] = ACTIONS(1548), - [anon_sym_DOLLARis_const] = ACTIONS(1548), - [anon_sym_DOLLARsizeof] = ACTIONS(1548), - [anon_sym_DOLLARstringify] = ACTIONS(1548), - [anon_sym_DOLLARand] = ACTIONS(1548), - [anon_sym_DOLLARdefined] = ACTIONS(1548), - [anon_sym_DOLLARembed] = ACTIONS(1548), - [anon_sym_DOLLARor] = ACTIONS(1548), - [anon_sym_DOLLARfeature] = ACTIONS(1548), - [anon_sym_DOLLARassignable] = ACTIONS(1548), - [anon_sym_BANG] = ACTIONS(1550), - [anon_sym_TILDE] = ACTIONS(1550), - [anon_sym_PLUS_PLUS] = ACTIONS(1550), - [anon_sym_DASH_DASH] = ACTIONS(1550), - [anon_sym_typeid] = ACTIONS(1548), - [anon_sym_LBRACE_PIPE] = ACTIONS(1550), - [anon_sym_void] = ACTIONS(1548), - [anon_sym_bool] = ACTIONS(1548), - [anon_sym_char] = ACTIONS(1548), - [anon_sym_ichar] = ACTIONS(1548), - [anon_sym_short] = ACTIONS(1548), - [anon_sym_ushort] = ACTIONS(1548), - [anon_sym_uint] = ACTIONS(1548), - [anon_sym_long] = ACTIONS(1548), - [anon_sym_ulong] = ACTIONS(1548), - [anon_sym_int128] = ACTIONS(1548), - [anon_sym_uint128] = ACTIONS(1548), - [anon_sym_float] = ACTIONS(1548), - [anon_sym_double] = ACTIONS(1548), - [anon_sym_float16] = ACTIONS(1548), - [anon_sym_bfloat16] = ACTIONS(1548), - [anon_sym_float128] = ACTIONS(1548), - [anon_sym_iptr] = ACTIONS(1548), - [anon_sym_uptr] = ACTIONS(1548), - [anon_sym_isz] = ACTIONS(1548), - [anon_sym_usz] = ACTIONS(1548), - [anon_sym_anyfault] = ACTIONS(1548), - [anon_sym_any] = ACTIONS(1548), - [anon_sym_DOLLARtypeof] = ACTIONS(1548), - [anon_sym_DOLLARtypefrom] = ACTIONS(1548), - [anon_sym_DOLLARvatype] = ACTIONS(1548), - [anon_sym_DOLLARevaltype] = ACTIONS(1548), - [sym_real_literal] = ACTIONS(1550), + [sym_ident] = ACTIONS(1533), + [sym_integer_literal] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(1535), + [anon_sym_DQUOTE] = ACTIONS(1535), + [anon_sym_BQUOTE] = ACTIONS(1535), + [sym_bytes_literal] = ACTIONS(1535), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1533), + [sym_at_ident] = ACTIONS(1535), + [sym_hash_ident] = ACTIONS(1535), + [sym_type_ident] = ACTIONS(1535), + [sym_ct_type_ident] = ACTIONS(1535), + [sym_const_ident] = ACTIONS(1533), + [sym_builtin] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_AMP] = ACTIONS(1533), + [anon_sym_static] = ACTIONS(1533), + [anon_sym_tlocal] = ACTIONS(1533), + [anon_sym_SEMI] = ACTIONS(1535), + [anon_sym_fn] = ACTIONS(1533), + [anon_sym_LBRACE] = ACTIONS(1533), + [anon_sym_const] = ACTIONS(1533), + [anon_sym_var] = ACTIONS(1533), + [anon_sym_return] = ACTIONS(1533), + [anon_sym_continue] = ACTIONS(1533), + [anon_sym_break] = ACTIONS(1533), + [anon_sym_defer] = ACTIONS(1533), + [anon_sym_assert] = ACTIONS(1533), + [anon_sym_nextcase] = ACTIONS(1533), + [anon_sym_switch] = ACTIONS(1533), + [anon_sym_AMP_AMP] = ACTIONS(1535), + [anon_sym_if] = ACTIONS(1533), + [anon_sym_for] = ACTIONS(1533), + [anon_sym_foreach] = ACTIONS(1533), + [anon_sym_foreach_r] = ACTIONS(1533), + [anon_sym_while] = ACTIONS(1533), + [anon_sym_do] = ACTIONS(1533), + [anon_sym_int] = ACTIONS(1533), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_STAR] = ACTIONS(1535), + [anon_sym_asm] = ACTIONS(1533), + [anon_sym_DOLLARassert] = ACTIONS(1533), + [anon_sym_DOLLARerror] = ACTIONS(1533), + [anon_sym_DOLLARecho] = ACTIONS(1533), + [anon_sym_DOLLARif] = ACTIONS(1533), + [anon_sym_DOLLARendif] = ACTIONS(1533), + [anon_sym_DOLLARswitch] = ACTIONS(1533), + [anon_sym_DOLLARfor] = ACTIONS(1533), + [anon_sym_DOLLARforeach] = ACTIONS(1533), + [anon_sym_DOLLARalignof] = ACTIONS(1533), + [anon_sym_DOLLARextnameof] = ACTIONS(1533), + [anon_sym_DOLLARnameof] = ACTIONS(1533), + [anon_sym_DOLLARoffsetof] = ACTIONS(1533), + [anon_sym_DOLLARqnameof] = ACTIONS(1533), + [anon_sym_DOLLARvaconst] = ACTIONS(1533), + [anon_sym_DOLLARvaarg] = ACTIONS(1533), + [anon_sym_DOLLARvaref] = ACTIONS(1533), + [anon_sym_DOLLARvaexpr] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(1533), + [anon_sym_false] = ACTIONS(1533), + [anon_sym_null] = ACTIONS(1533), + [anon_sym_DOLLARvacount] = ACTIONS(1533), + [anon_sym_DOLLARappend] = ACTIONS(1533), + [anon_sym_DOLLARconcat] = ACTIONS(1533), + [anon_sym_DOLLAReval] = ACTIONS(1533), + [anon_sym_DOLLARis_const] = ACTIONS(1533), + [anon_sym_DOLLARsizeof] = ACTIONS(1533), + [anon_sym_DOLLARstringify] = ACTIONS(1533), + [anon_sym_DOLLARand] = ACTIONS(1533), + [anon_sym_DOLLARdefined] = ACTIONS(1533), + [anon_sym_DOLLARembed] = ACTIONS(1533), + [anon_sym_DOLLARor] = ACTIONS(1533), + [anon_sym_DOLLARfeature] = ACTIONS(1533), + [anon_sym_DOLLARassignable] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1535), + [anon_sym_TILDE] = ACTIONS(1535), + [anon_sym_PLUS_PLUS] = ACTIONS(1535), + [anon_sym_DASH_DASH] = ACTIONS(1535), + [anon_sym_typeid] = ACTIONS(1533), + [anon_sym_LBRACE_PIPE] = ACTIONS(1535), + [anon_sym_void] = ACTIONS(1533), + [anon_sym_bool] = ACTIONS(1533), + [anon_sym_char] = ACTIONS(1533), + [anon_sym_ichar] = ACTIONS(1533), + [anon_sym_short] = ACTIONS(1533), + [anon_sym_ushort] = ACTIONS(1533), + [anon_sym_uint] = ACTIONS(1533), + [anon_sym_long] = ACTIONS(1533), + [anon_sym_ulong] = ACTIONS(1533), + [anon_sym_int128] = ACTIONS(1533), + [anon_sym_uint128] = ACTIONS(1533), + [anon_sym_float] = ACTIONS(1533), + [anon_sym_double] = ACTIONS(1533), + [anon_sym_float16] = ACTIONS(1533), + [anon_sym_bfloat16] = ACTIONS(1533), + [anon_sym_float128] = ACTIONS(1533), + [anon_sym_iptr] = ACTIONS(1533), + [anon_sym_uptr] = ACTIONS(1533), + [anon_sym_isz] = ACTIONS(1533), + [anon_sym_usz] = ACTIONS(1533), + [anon_sym_anyfault] = ACTIONS(1533), + [anon_sym_any] = ACTIONS(1533), + [anon_sym_DOLLARtypeof] = ACTIONS(1533), + [anon_sym_DOLLARtypefrom] = ACTIONS(1533), + [anon_sym_DOLLARvatype] = ACTIONS(1533), + [anon_sym_DOLLARevaltype] = ACTIONS(1533), + [sym_real_literal] = ACTIONS(1535), }, [724] = { [sym_line_comment] = STATE(724), [sym_doc_comment] = STATE(724), [sym_block_comment] = STATE(724), - [sym_ident] = ACTIONS(1644), - [sym_integer_literal] = ACTIONS(1646), - [anon_sym_SQUOTE] = ACTIONS(1646), - [anon_sym_DQUOTE] = ACTIONS(1646), - [anon_sym_BQUOTE] = ACTIONS(1646), - [sym_bytes_literal] = ACTIONS(1646), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1644), - [sym_at_ident] = ACTIONS(1646), - [sym_hash_ident] = ACTIONS(1646), - [sym_type_ident] = ACTIONS(1646), - [sym_ct_type_ident] = ACTIONS(1646), - [sym_const_ident] = ACTIONS(1644), - [sym_builtin] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(1646), - [anon_sym_AMP] = ACTIONS(1644), - [anon_sym_static] = ACTIONS(1644), - [anon_sym_tlocal] = ACTIONS(1644), - [anon_sym_SEMI] = ACTIONS(1646), - [anon_sym_fn] = ACTIONS(1644), - [anon_sym_LBRACE] = ACTIONS(1644), - [anon_sym_const] = ACTIONS(1644), - [anon_sym_var] = ACTIONS(1644), - [anon_sym_return] = ACTIONS(1644), - [anon_sym_continue] = ACTIONS(1644), - [anon_sym_break] = ACTIONS(1644), - [anon_sym_defer] = ACTIONS(1644), - [anon_sym_assert] = ACTIONS(1644), - [anon_sym_nextcase] = ACTIONS(1644), - [anon_sym_switch] = ACTIONS(1644), - [anon_sym_AMP_AMP] = ACTIONS(1646), - [anon_sym_if] = ACTIONS(1644), - [anon_sym_for] = ACTIONS(1644), - [anon_sym_foreach] = ACTIONS(1644), - [anon_sym_foreach_r] = ACTIONS(1644), - [anon_sym_while] = ACTIONS(1644), - [anon_sym_do] = ACTIONS(1644), - [anon_sym_int] = ACTIONS(1644), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_asm] = ACTIONS(1644), - [anon_sym_DOLLARassert] = ACTIONS(1644), - [anon_sym_DOLLARerror] = ACTIONS(1644), - [anon_sym_DOLLARecho] = ACTIONS(1644), - [anon_sym_DOLLARif] = ACTIONS(1644), - [anon_sym_DOLLARendif] = ACTIONS(1644), - [anon_sym_DOLLARswitch] = ACTIONS(1644), - [anon_sym_DOLLARfor] = ACTIONS(1644), - [anon_sym_DOLLARforeach] = ACTIONS(1644), - [anon_sym_DOLLARalignof] = ACTIONS(1644), - [anon_sym_DOLLARextnameof] = ACTIONS(1644), - [anon_sym_DOLLARnameof] = ACTIONS(1644), - [anon_sym_DOLLARoffsetof] = ACTIONS(1644), - [anon_sym_DOLLARqnameof] = ACTIONS(1644), - [anon_sym_DOLLARvaconst] = ACTIONS(1644), - [anon_sym_DOLLARvaarg] = ACTIONS(1644), - [anon_sym_DOLLARvaref] = ACTIONS(1644), - [anon_sym_DOLLARvaexpr] = ACTIONS(1644), - [anon_sym_true] = ACTIONS(1644), - [anon_sym_false] = ACTIONS(1644), - [anon_sym_null] = ACTIONS(1644), - [anon_sym_DOLLARvacount] = ACTIONS(1644), - [anon_sym_DOLLARappend] = ACTIONS(1644), - [anon_sym_DOLLARconcat] = ACTIONS(1644), - [anon_sym_DOLLAReval] = ACTIONS(1644), - [anon_sym_DOLLARis_const] = ACTIONS(1644), - [anon_sym_DOLLARsizeof] = ACTIONS(1644), - [anon_sym_DOLLARstringify] = ACTIONS(1644), - [anon_sym_DOLLARand] = ACTIONS(1644), - [anon_sym_DOLLARdefined] = ACTIONS(1644), - [anon_sym_DOLLARembed] = ACTIONS(1644), - [anon_sym_DOLLARor] = ACTIONS(1644), - [anon_sym_DOLLARfeature] = ACTIONS(1644), - [anon_sym_DOLLARassignable] = ACTIONS(1644), - [anon_sym_BANG] = ACTIONS(1646), - [anon_sym_TILDE] = ACTIONS(1646), - [anon_sym_PLUS_PLUS] = ACTIONS(1646), - [anon_sym_DASH_DASH] = ACTIONS(1646), - [anon_sym_typeid] = ACTIONS(1644), - [anon_sym_LBRACE_PIPE] = ACTIONS(1646), - [anon_sym_void] = ACTIONS(1644), - [anon_sym_bool] = ACTIONS(1644), - [anon_sym_char] = ACTIONS(1644), - [anon_sym_ichar] = ACTIONS(1644), - [anon_sym_short] = ACTIONS(1644), - [anon_sym_ushort] = ACTIONS(1644), - [anon_sym_uint] = ACTIONS(1644), - [anon_sym_long] = ACTIONS(1644), - [anon_sym_ulong] = ACTIONS(1644), - [anon_sym_int128] = ACTIONS(1644), - [anon_sym_uint128] = ACTIONS(1644), - [anon_sym_float] = ACTIONS(1644), - [anon_sym_double] = ACTIONS(1644), - [anon_sym_float16] = ACTIONS(1644), - [anon_sym_bfloat16] = ACTIONS(1644), - [anon_sym_float128] = ACTIONS(1644), - [anon_sym_iptr] = ACTIONS(1644), - [anon_sym_uptr] = ACTIONS(1644), - [anon_sym_isz] = ACTIONS(1644), - [anon_sym_usz] = ACTIONS(1644), - [anon_sym_anyfault] = ACTIONS(1644), - [anon_sym_any] = ACTIONS(1644), - [anon_sym_DOLLARtypeof] = ACTIONS(1644), - [anon_sym_DOLLARtypefrom] = ACTIONS(1644), - [anon_sym_DOLLARvatype] = ACTIONS(1644), - [anon_sym_DOLLARevaltype] = ACTIONS(1644), - [sym_real_literal] = ACTIONS(1646), + [sym_ident] = ACTIONS(1509), + [sym_integer_literal] = ACTIONS(1511), + [anon_sym_SQUOTE] = ACTIONS(1511), + [anon_sym_DQUOTE] = ACTIONS(1511), + [anon_sym_BQUOTE] = ACTIONS(1511), + [sym_bytes_literal] = ACTIONS(1511), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1509), + [sym_at_ident] = ACTIONS(1511), + [sym_hash_ident] = ACTIONS(1511), + [sym_type_ident] = ACTIONS(1511), + [sym_ct_type_ident] = ACTIONS(1511), + [sym_const_ident] = ACTIONS(1509), + [sym_builtin] = ACTIONS(1511), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_tlocal] = ACTIONS(1509), + [anon_sym_SEMI] = ACTIONS(1511), + [anon_sym_fn] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1509), + [anon_sym_const] = ACTIONS(1509), + [anon_sym_var] = ACTIONS(1509), + [anon_sym_return] = ACTIONS(1509), + [anon_sym_continue] = ACTIONS(1509), + [anon_sym_break] = ACTIONS(1509), + [anon_sym_defer] = ACTIONS(1509), + [anon_sym_assert] = ACTIONS(1509), + [anon_sym_nextcase] = ACTIONS(1509), + [anon_sym_switch] = ACTIONS(1509), + [anon_sym_AMP_AMP] = ACTIONS(1511), + [anon_sym_if] = ACTIONS(1509), + [anon_sym_for] = ACTIONS(1509), + [anon_sym_foreach] = ACTIONS(1509), + [anon_sym_foreach_r] = ACTIONS(1509), + [anon_sym_while] = ACTIONS(1509), + [anon_sym_do] = ACTIONS(1509), + [anon_sym_int] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(1511), + [anon_sym_asm] = ACTIONS(1509), + [anon_sym_DOLLARassert] = ACTIONS(1509), + [anon_sym_DOLLARerror] = ACTIONS(1509), + [anon_sym_DOLLARecho] = ACTIONS(1509), + [anon_sym_DOLLARif] = ACTIONS(1509), + [anon_sym_DOLLARendif] = ACTIONS(1509), + [anon_sym_DOLLARswitch] = ACTIONS(1509), + [anon_sym_DOLLARfor] = ACTIONS(1509), + [anon_sym_DOLLARforeach] = ACTIONS(1509), + [anon_sym_DOLLARalignof] = ACTIONS(1509), + [anon_sym_DOLLARextnameof] = ACTIONS(1509), + [anon_sym_DOLLARnameof] = ACTIONS(1509), + [anon_sym_DOLLARoffsetof] = ACTIONS(1509), + [anon_sym_DOLLARqnameof] = ACTIONS(1509), + [anon_sym_DOLLARvaconst] = ACTIONS(1509), + [anon_sym_DOLLARvaarg] = ACTIONS(1509), + [anon_sym_DOLLARvaref] = ACTIONS(1509), + [anon_sym_DOLLARvaexpr] = ACTIONS(1509), + [anon_sym_true] = ACTIONS(1509), + [anon_sym_false] = ACTIONS(1509), + [anon_sym_null] = ACTIONS(1509), + [anon_sym_DOLLARvacount] = ACTIONS(1509), + [anon_sym_DOLLARappend] = ACTIONS(1509), + [anon_sym_DOLLARconcat] = ACTIONS(1509), + [anon_sym_DOLLAReval] = ACTIONS(1509), + [anon_sym_DOLLARis_const] = ACTIONS(1509), + [anon_sym_DOLLARsizeof] = ACTIONS(1509), + [anon_sym_DOLLARstringify] = ACTIONS(1509), + [anon_sym_DOLLARand] = ACTIONS(1509), + [anon_sym_DOLLARdefined] = ACTIONS(1509), + [anon_sym_DOLLARembed] = ACTIONS(1509), + [anon_sym_DOLLARor] = ACTIONS(1509), + [anon_sym_DOLLARfeature] = ACTIONS(1509), + [anon_sym_DOLLARassignable] = ACTIONS(1509), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_PLUS_PLUS] = ACTIONS(1511), + [anon_sym_DASH_DASH] = ACTIONS(1511), + [anon_sym_typeid] = ACTIONS(1509), + [anon_sym_LBRACE_PIPE] = ACTIONS(1511), + [anon_sym_void] = ACTIONS(1509), + [anon_sym_bool] = ACTIONS(1509), + [anon_sym_char] = ACTIONS(1509), + [anon_sym_ichar] = ACTIONS(1509), + [anon_sym_short] = ACTIONS(1509), + [anon_sym_ushort] = ACTIONS(1509), + [anon_sym_uint] = ACTIONS(1509), + [anon_sym_long] = ACTIONS(1509), + [anon_sym_ulong] = ACTIONS(1509), + [anon_sym_int128] = ACTIONS(1509), + [anon_sym_uint128] = ACTIONS(1509), + [anon_sym_float] = ACTIONS(1509), + [anon_sym_double] = ACTIONS(1509), + [anon_sym_float16] = ACTIONS(1509), + [anon_sym_bfloat16] = ACTIONS(1509), + [anon_sym_float128] = ACTIONS(1509), + [anon_sym_iptr] = ACTIONS(1509), + [anon_sym_uptr] = ACTIONS(1509), + [anon_sym_isz] = ACTIONS(1509), + [anon_sym_usz] = ACTIONS(1509), + [anon_sym_anyfault] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_DOLLARtypeof] = ACTIONS(1509), + [anon_sym_DOLLARtypefrom] = ACTIONS(1509), + [anon_sym_DOLLARvatype] = ACTIONS(1509), + [anon_sym_DOLLARevaltype] = ACTIONS(1509), + [sym_real_literal] = ACTIONS(1511), }, [725] = { [sym_line_comment] = STATE(725), [sym_doc_comment] = STATE(725), [sym_block_comment] = STATE(725), - [sym_ident] = ACTIONS(1386), - [sym_integer_literal] = ACTIONS(1388), - [anon_sym_SQUOTE] = ACTIONS(1388), - [anon_sym_DQUOTE] = ACTIONS(1388), - [anon_sym_BQUOTE] = ACTIONS(1388), - [sym_bytes_literal] = ACTIONS(1388), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1386), - [sym_at_ident] = ACTIONS(1388), - [sym_hash_ident] = ACTIONS(1388), - [sym_type_ident] = ACTIONS(1388), - [sym_ct_type_ident] = ACTIONS(1388), - [sym_const_ident] = ACTIONS(1386), - [sym_builtin] = ACTIONS(1388), - [anon_sym_LPAREN] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1386), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_tlocal] = ACTIONS(1386), - [anon_sym_SEMI] = ACTIONS(1388), - [anon_sym_fn] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_const] = ACTIONS(1386), - [anon_sym_var] = ACTIONS(1386), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_continue] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1386), - [anon_sym_defer] = ACTIONS(1386), - [anon_sym_assert] = ACTIONS(1386), - [anon_sym_nextcase] = ACTIONS(1386), - [anon_sym_switch] = ACTIONS(1386), - [anon_sym_AMP_AMP] = ACTIONS(1388), - [anon_sym_if] = ACTIONS(1386), - [anon_sym_for] = ACTIONS(1386), - [anon_sym_foreach] = ACTIONS(1386), - [anon_sym_foreach_r] = ACTIONS(1386), - [anon_sym_while] = ACTIONS(1386), - [anon_sym_do] = ACTIONS(1386), - [anon_sym_int] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_asm] = ACTIONS(1386), - [anon_sym_DOLLARassert] = ACTIONS(1386), - [anon_sym_DOLLARerror] = ACTIONS(1386), - [anon_sym_DOLLARecho] = ACTIONS(1386), - [anon_sym_DOLLARif] = ACTIONS(1386), - [anon_sym_DOLLARswitch] = ACTIONS(1386), - [anon_sym_DOLLARfor] = ACTIONS(1386), - [anon_sym_DOLLARforeach] = ACTIONS(1386), - [anon_sym_DOLLARendforeach] = ACTIONS(1386), - [anon_sym_DOLLARalignof] = ACTIONS(1386), - [anon_sym_DOLLARextnameof] = ACTIONS(1386), - [anon_sym_DOLLARnameof] = ACTIONS(1386), - [anon_sym_DOLLARoffsetof] = ACTIONS(1386), - [anon_sym_DOLLARqnameof] = ACTIONS(1386), - [anon_sym_DOLLARvaconst] = ACTIONS(1386), - [anon_sym_DOLLARvaarg] = ACTIONS(1386), - [anon_sym_DOLLARvaref] = ACTIONS(1386), - [anon_sym_DOLLARvaexpr] = ACTIONS(1386), - [anon_sym_true] = ACTIONS(1386), - [anon_sym_false] = ACTIONS(1386), - [anon_sym_null] = ACTIONS(1386), - [anon_sym_DOLLARvacount] = ACTIONS(1386), - [anon_sym_DOLLARappend] = ACTIONS(1386), - [anon_sym_DOLLARconcat] = ACTIONS(1386), - [anon_sym_DOLLAReval] = ACTIONS(1386), - [anon_sym_DOLLARis_const] = ACTIONS(1386), - [anon_sym_DOLLARsizeof] = ACTIONS(1386), - [anon_sym_DOLLARstringify] = ACTIONS(1386), - [anon_sym_DOLLARand] = ACTIONS(1386), - [anon_sym_DOLLARdefined] = ACTIONS(1386), - [anon_sym_DOLLARembed] = ACTIONS(1386), - [anon_sym_DOLLARor] = ACTIONS(1386), - [anon_sym_DOLLARfeature] = ACTIONS(1386), - [anon_sym_DOLLARassignable] = ACTIONS(1386), - [anon_sym_BANG] = ACTIONS(1388), - [anon_sym_TILDE] = ACTIONS(1388), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [anon_sym_typeid] = ACTIONS(1386), - [anon_sym_LBRACE_PIPE] = ACTIONS(1388), - [anon_sym_void] = ACTIONS(1386), - [anon_sym_bool] = ACTIONS(1386), - [anon_sym_char] = ACTIONS(1386), - [anon_sym_ichar] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_ushort] = ACTIONS(1386), - [anon_sym_uint] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1386), - [anon_sym_ulong] = ACTIONS(1386), - [anon_sym_int128] = ACTIONS(1386), - [anon_sym_uint128] = ACTIONS(1386), - [anon_sym_float] = ACTIONS(1386), - [anon_sym_double] = ACTIONS(1386), - [anon_sym_float16] = ACTIONS(1386), - [anon_sym_bfloat16] = ACTIONS(1386), - [anon_sym_float128] = ACTIONS(1386), - [anon_sym_iptr] = ACTIONS(1386), - [anon_sym_uptr] = ACTIONS(1386), - [anon_sym_isz] = ACTIONS(1386), - [anon_sym_usz] = ACTIONS(1386), - [anon_sym_anyfault] = ACTIONS(1386), - [anon_sym_any] = ACTIONS(1386), - [anon_sym_DOLLARtypeof] = ACTIONS(1386), - [anon_sym_DOLLARtypefrom] = ACTIONS(1386), - [anon_sym_DOLLARvatype] = ACTIONS(1386), - [anon_sym_DOLLARevaltype] = ACTIONS(1386), - [sym_real_literal] = ACTIONS(1388), + [sym_ident] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1507), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1507), + [anon_sym_BQUOTE] = ACTIONS(1507), + [sym_bytes_literal] = ACTIONS(1507), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1505), + [sym_at_ident] = ACTIONS(1507), + [sym_hash_ident] = ACTIONS(1507), + [sym_type_ident] = ACTIONS(1507), + [sym_ct_type_ident] = ACTIONS(1507), + [sym_const_ident] = ACTIONS(1505), + [sym_builtin] = ACTIONS(1507), + [anon_sym_LPAREN] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_static] = ACTIONS(1505), + [anon_sym_tlocal] = ACTIONS(1505), + [anon_sym_SEMI] = ACTIONS(1507), + [anon_sym_fn] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_const] = ACTIONS(1505), + [anon_sym_var] = ACTIONS(1505), + [anon_sym_return] = ACTIONS(1505), + [anon_sym_continue] = ACTIONS(1505), + [anon_sym_break] = ACTIONS(1505), + [anon_sym_defer] = ACTIONS(1505), + [anon_sym_assert] = ACTIONS(1505), + [anon_sym_nextcase] = ACTIONS(1505), + [anon_sym_switch] = ACTIONS(1505), + [anon_sym_AMP_AMP] = ACTIONS(1507), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_for] = ACTIONS(1505), + [anon_sym_foreach] = ACTIONS(1505), + [anon_sym_foreach_r] = ACTIONS(1505), + [anon_sym_while] = ACTIONS(1505), + [anon_sym_do] = ACTIONS(1505), + [anon_sym_int] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1505), + [anon_sym_DASH] = ACTIONS(1505), + [anon_sym_STAR] = ACTIONS(1507), + [anon_sym_asm] = ACTIONS(1505), + [anon_sym_DOLLARassert] = ACTIONS(1505), + [anon_sym_DOLLARerror] = ACTIONS(1505), + [anon_sym_DOLLARecho] = ACTIONS(1505), + [anon_sym_DOLLARif] = ACTIONS(1505), + [anon_sym_DOLLARendif] = ACTIONS(1505), + [anon_sym_DOLLARswitch] = ACTIONS(1505), + [anon_sym_DOLLARfor] = ACTIONS(1505), + [anon_sym_DOLLARforeach] = ACTIONS(1505), + [anon_sym_DOLLARalignof] = ACTIONS(1505), + [anon_sym_DOLLARextnameof] = ACTIONS(1505), + [anon_sym_DOLLARnameof] = ACTIONS(1505), + [anon_sym_DOLLARoffsetof] = ACTIONS(1505), + [anon_sym_DOLLARqnameof] = ACTIONS(1505), + [anon_sym_DOLLARvaconst] = ACTIONS(1505), + [anon_sym_DOLLARvaarg] = ACTIONS(1505), + [anon_sym_DOLLARvaref] = ACTIONS(1505), + [anon_sym_DOLLARvaexpr] = ACTIONS(1505), + [anon_sym_true] = ACTIONS(1505), + [anon_sym_false] = ACTIONS(1505), + [anon_sym_null] = ACTIONS(1505), + [anon_sym_DOLLARvacount] = ACTIONS(1505), + [anon_sym_DOLLARappend] = ACTIONS(1505), + [anon_sym_DOLLARconcat] = ACTIONS(1505), + [anon_sym_DOLLAReval] = ACTIONS(1505), + [anon_sym_DOLLARis_const] = ACTIONS(1505), + [anon_sym_DOLLARsizeof] = ACTIONS(1505), + [anon_sym_DOLLARstringify] = ACTIONS(1505), + [anon_sym_DOLLARand] = ACTIONS(1505), + [anon_sym_DOLLARdefined] = ACTIONS(1505), + [anon_sym_DOLLARembed] = ACTIONS(1505), + [anon_sym_DOLLARor] = ACTIONS(1505), + [anon_sym_DOLLARfeature] = ACTIONS(1505), + [anon_sym_DOLLARassignable] = ACTIONS(1505), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_TILDE] = ACTIONS(1507), + [anon_sym_PLUS_PLUS] = ACTIONS(1507), + [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_typeid] = ACTIONS(1505), + [anon_sym_LBRACE_PIPE] = ACTIONS(1507), + [anon_sym_void] = ACTIONS(1505), + [anon_sym_bool] = ACTIONS(1505), + [anon_sym_char] = ACTIONS(1505), + [anon_sym_ichar] = ACTIONS(1505), + [anon_sym_short] = ACTIONS(1505), + [anon_sym_ushort] = ACTIONS(1505), + [anon_sym_uint] = ACTIONS(1505), + [anon_sym_long] = ACTIONS(1505), + [anon_sym_ulong] = ACTIONS(1505), + [anon_sym_int128] = ACTIONS(1505), + [anon_sym_uint128] = ACTIONS(1505), + [anon_sym_float] = ACTIONS(1505), + [anon_sym_double] = ACTIONS(1505), + [anon_sym_float16] = ACTIONS(1505), + [anon_sym_bfloat16] = ACTIONS(1505), + [anon_sym_float128] = ACTIONS(1505), + [anon_sym_iptr] = ACTIONS(1505), + [anon_sym_uptr] = ACTIONS(1505), + [anon_sym_isz] = ACTIONS(1505), + [anon_sym_usz] = ACTIONS(1505), + [anon_sym_anyfault] = ACTIONS(1505), + [anon_sym_any] = ACTIONS(1505), + [anon_sym_DOLLARtypeof] = ACTIONS(1505), + [anon_sym_DOLLARtypefrom] = ACTIONS(1505), + [anon_sym_DOLLARvatype] = ACTIONS(1505), + [anon_sym_DOLLARevaltype] = ACTIONS(1505), + [sym_real_literal] = ACTIONS(1507), }, [726] = { [sym_line_comment] = STATE(726), [sym_doc_comment] = STATE(726), [sym_block_comment] = STATE(726), - [sym_ident] = ACTIONS(1410), - [sym_integer_literal] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1412), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_BQUOTE] = ACTIONS(1412), - [sym_bytes_literal] = ACTIONS(1412), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1410), - [sym_at_ident] = ACTIONS(1412), - [sym_hash_ident] = ACTIONS(1412), - [sym_type_ident] = ACTIONS(1412), - [sym_ct_type_ident] = ACTIONS(1412), - [sym_const_ident] = ACTIONS(1410), - [sym_builtin] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1410), - [anon_sym_static] = ACTIONS(1410), - [anon_sym_tlocal] = ACTIONS(1410), - [anon_sym_SEMI] = ACTIONS(1412), - [anon_sym_fn] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_var] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_defer] = ACTIONS(1410), - [anon_sym_assert] = ACTIONS(1410), - [anon_sym_nextcase] = ACTIONS(1410), - [anon_sym_switch] = ACTIONS(1410), - [anon_sym_AMP_AMP] = ACTIONS(1412), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_foreach] = ACTIONS(1410), - [anon_sym_foreach_r] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [anon_sym_do] = ACTIONS(1410), - [anon_sym_int] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1412), - [anon_sym_asm] = ACTIONS(1410), - [anon_sym_DOLLARassert] = ACTIONS(1410), - [anon_sym_DOLLARerror] = ACTIONS(1410), - [anon_sym_DOLLARecho] = ACTIONS(1410), - [anon_sym_DOLLARif] = ACTIONS(1410), - [anon_sym_DOLLARswitch] = ACTIONS(1410), - [anon_sym_DOLLARfor] = ACTIONS(1410), - [anon_sym_DOLLARendfor] = ACTIONS(1410), - [anon_sym_DOLLARforeach] = ACTIONS(1410), - [anon_sym_DOLLARalignof] = ACTIONS(1410), - [anon_sym_DOLLARextnameof] = ACTIONS(1410), - [anon_sym_DOLLARnameof] = ACTIONS(1410), - [anon_sym_DOLLARoffsetof] = ACTIONS(1410), - [anon_sym_DOLLARqnameof] = ACTIONS(1410), - [anon_sym_DOLLARvaconst] = ACTIONS(1410), - [anon_sym_DOLLARvaarg] = ACTIONS(1410), - [anon_sym_DOLLARvaref] = ACTIONS(1410), - [anon_sym_DOLLARvaexpr] = ACTIONS(1410), - [anon_sym_true] = ACTIONS(1410), - [anon_sym_false] = ACTIONS(1410), - [anon_sym_null] = ACTIONS(1410), - [anon_sym_DOLLARvacount] = ACTIONS(1410), - [anon_sym_DOLLARappend] = ACTIONS(1410), - [anon_sym_DOLLARconcat] = ACTIONS(1410), - [anon_sym_DOLLAReval] = ACTIONS(1410), - [anon_sym_DOLLARis_const] = ACTIONS(1410), - [anon_sym_DOLLARsizeof] = ACTIONS(1410), - [anon_sym_DOLLARstringify] = ACTIONS(1410), - [anon_sym_DOLLARand] = ACTIONS(1410), - [anon_sym_DOLLARdefined] = ACTIONS(1410), - [anon_sym_DOLLARembed] = ACTIONS(1410), - [anon_sym_DOLLARor] = ACTIONS(1410), - [anon_sym_DOLLARfeature] = ACTIONS(1410), - [anon_sym_DOLLARassignable] = ACTIONS(1410), - [anon_sym_BANG] = ACTIONS(1412), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_PLUS_PLUS] = ACTIONS(1412), - [anon_sym_DASH_DASH] = ACTIONS(1412), - [anon_sym_typeid] = ACTIONS(1410), - [anon_sym_LBRACE_PIPE] = ACTIONS(1412), - [anon_sym_void] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_ichar] = ACTIONS(1410), - [anon_sym_short] = ACTIONS(1410), - [anon_sym_ushort] = ACTIONS(1410), - [anon_sym_uint] = ACTIONS(1410), - [anon_sym_long] = ACTIONS(1410), - [anon_sym_ulong] = ACTIONS(1410), - [anon_sym_int128] = ACTIONS(1410), - [anon_sym_uint128] = ACTIONS(1410), - [anon_sym_float] = ACTIONS(1410), - [anon_sym_double] = ACTIONS(1410), - [anon_sym_float16] = ACTIONS(1410), - [anon_sym_bfloat16] = ACTIONS(1410), - [anon_sym_float128] = ACTIONS(1410), - [anon_sym_iptr] = ACTIONS(1410), - [anon_sym_uptr] = ACTIONS(1410), - [anon_sym_isz] = ACTIONS(1410), - [anon_sym_usz] = ACTIONS(1410), - [anon_sym_anyfault] = ACTIONS(1410), - [anon_sym_any] = ACTIONS(1410), - [anon_sym_DOLLARtypeof] = ACTIONS(1410), - [anon_sym_DOLLARtypefrom] = ACTIONS(1410), - [anon_sym_DOLLARvatype] = ACTIONS(1410), - [anon_sym_DOLLARevaltype] = ACTIONS(1410), - [sym_real_literal] = ACTIONS(1412), + [sym_ident] = ACTIONS(1497), + [sym_integer_literal] = ACTIONS(1499), + [anon_sym_SQUOTE] = ACTIONS(1499), + [anon_sym_DQUOTE] = ACTIONS(1499), + [anon_sym_BQUOTE] = ACTIONS(1499), + [sym_bytes_literal] = ACTIONS(1499), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1497), + [sym_at_ident] = ACTIONS(1499), + [sym_hash_ident] = ACTIONS(1499), + [sym_type_ident] = ACTIONS(1499), + [sym_ct_type_ident] = ACTIONS(1499), + [sym_const_ident] = ACTIONS(1497), + [sym_builtin] = ACTIONS(1499), + [anon_sym_LPAREN] = ACTIONS(1499), + [anon_sym_AMP] = ACTIONS(1497), + [anon_sym_static] = ACTIONS(1497), + [anon_sym_tlocal] = ACTIONS(1497), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_fn] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_const] = ACTIONS(1497), + [anon_sym_var] = ACTIONS(1497), + [anon_sym_return] = ACTIONS(1497), + [anon_sym_continue] = ACTIONS(1497), + [anon_sym_break] = ACTIONS(1497), + [anon_sym_defer] = ACTIONS(1497), + [anon_sym_assert] = ACTIONS(1497), + [anon_sym_nextcase] = ACTIONS(1497), + [anon_sym_switch] = ACTIONS(1497), + [anon_sym_AMP_AMP] = ACTIONS(1499), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_for] = ACTIONS(1497), + [anon_sym_foreach] = ACTIONS(1497), + [anon_sym_foreach_r] = ACTIONS(1497), + [anon_sym_while] = ACTIONS(1497), + [anon_sym_do] = ACTIONS(1497), + [anon_sym_int] = ACTIONS(1497), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_asm] = ACTIONS(1497), + [anon_sym_DOLLARassert] = ACTIONS(1497), + [anon_sym_DOLLARerror] = ACTIONS(1497), + [anon_sym_DOLLARecho] = ACTIONS(1497), + [anon_sym_DOLLARif] = ACTIONS(1497), + [anon_sym_DOLLARendif] = ACTIONS(1497), + [anon_sym_DOLLARswitch] = ACTIONS(1497), + [anon_sym_DOLLARfor] = ACTIONS(1497), + [anon_sym_DOLLARforeach] = ACTIONS(1497), + [anon_sym_DOLLARalignof] = ACTIONS(1497), + [anon_sym_DOLLARextnameof] = ACTIONS(1497), + [anon_sym_DOLLARnameof] = ACTIONS(1497), + [anon_sym_DOLLARoffsetof] = ACTIONS(1497), + [anon_sym_DOLLARqnameof] = ACTIONS(1497), + [anon_sym_DOLLARvaconst] = ACTIONS(1497), + [anon_sym_DOLLARvaarg] = ACTIONS(1497), + [anon_sym_DOLLARvaref] = ACTIONS(1497), + [anon_sym_DOLLARvaexpr] = ACTIONS(1497), + [anon_sym_true] = ACTIONS(1497), + [anon_sym_false] = ACTIONS(1497), + [anon_sym_null] = ACTIONS(1497), + [anon_sym_DOLLARvacount] = ACTIONS(1497), + [anon_sym_DOLLARappend] = ACTIONS(1497), + [anon_sym_DOLLARconcat] = ACTIONS(1497), + [anon_sym_DOLLAReval] = ACTIONS(1497), + [anon_sym_DOLLARis_const] = ACTIONS(1497), + [anon_sym_DOLLARsizeof] = ACTIONS(1497), + [anon_sym_DOLLARstringify] = ACTIONS(1497), + [anon_sym_DOLLARand] = ACTIONS(1497), + [anon_sym_DOLLARdefined] = ACTIONS(1497), + [anon_sym_DOLLARembed] = ACTIONS(1497), + [anon_sym_DOLLARor] = ACTIONS(1497), + [anon_sym_DOLLARfeature] = ACTIONS(1497), + [anon_sym_DOLLARassignable] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_TILDE] = ACTIONS(1499), + [anon_sym_PLUS_PLUS] = ACTIONS(1499), + [anon_sym_DASH_DASH] = ACTIONS(1499), + [anon_sym_typeid] = ACTIONS(1497), + [anon_sym_LBRACE_PIPE] = ACTIONS(1499), + [anon_sym_void] = ACTIONS(1497), + [anon_sym_bool] = ACTIONS(1497), + [anon_sym_char] = ACTIONS(1497), + [anon_sym_ichar] = ACTIONS(1497), + [anon_sym_short] = ACTIONS(1497), + [anon_sym_ushort] = ACTIONS(1497), + [anon_sym_uint] = ACTIONS(1497), + [anon_sym_long] = ACTIONS(1497), + [anon_sym_ulong] = ACTIONS(1497), + [anon_sym_int128] = ACTIONS(1497), + [anon_sym_uint128] = ACTIONS(1497), + [anon_sym_float] = ACTIONS(1497), + [anon_sym_double] = ACTIONS(1497), + [anon_sym_float16] = ACTIONS(1497), + [anon_sym_bfloat16] = ACTIONS(1497), + [anon_sym_float128] = ACTIONS(1497), + [anon_sym_iptr] = ACTIONS(1497), + [anon_sym_uptr] = ACTIONS(1497), + [anon_sym_isz] = ACTIONS(1497), + [anon_sym_usz] = ACTIONS(1497), + [anon_sym_anyfault] = ACTIONS(1497), + [anon_sym_any] = ACTIONS(1497), + [anon_sym_DOLLARtypeof] = ACTIONS(1497), + [anon_sym_DOLLARtypefrom] = ACTIONS(1497), + [anon_sym_DOLLARvatype] = ACTIONS(1497), + [anon_sym_DOLLARevaltype] = ACTIONS(1497), + [sym_real_literal] = ACTIONS(1499), }, [727] = { [sym_line_comment] = STATE(727), [sym_doc_comment] = STATE(727), [sym_block_comment] = STATE(727), - [sym_ident] = ACTIONS(1580), - [sym_integer_literal] = ACTIONS(1582), - [anon_sym_SQUOTE] = ACTIONS(1582), - [anon_sym_DQUOTE] = ACTIONS(1582), - [anon_sym_BQUOTE] = ACTIONS(1582), - [sym_bytes_literal] = ACTIONS(1582), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1580), - [sym_at_ident] = ACTIONS(1582), - [sym_hash_ident] = ACTIONS(1582), - [sym_type_ident] = ACTIONS(1582), - [sym_ct_type_ident] = ACTIONS(1582), - [sym_const_ident] = ACTIONS(1580), - [sym_builtin] = ACTIONS(1582), - [anon_sym_LPAREN] = ACTIONS(1582), - [anon_sym_AMP] = ACTIONS(1580), - [anon_sym_static] = ACTIONS(1580), - [anon_sym_tlocal] = ACTIONS(1580), - [anon_sym_SEMI] = ACTIONS(1582), - [anon_sym_fn] = ACTIONS(1580), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_const] = ACTIONS(1580), - [anon_sym_var] = ACTIONS(1580), - [anon_sym_return] = ACTIONS(1580), - [anon_sym_continue] = ACTIONS(1580), - [anon_sym_break] = ACTIONS(1580), - [anon_sym_defer] = ACTIONS(1580), - [anon_sym_assert] = ACTIONS(1580), - [anon_sym_nextcase] = ACTIONS(1580), - [anon_sym_switch] = ACTIONS(1580), - [anon_sym_AMP_AMP] = ACTIONS(1582), - [anon_sym_if] = ACTIONS(1580), - [anon_sym_for] = ACTIONS(1580), - [anon_sym_foreach] = ACTIONS(1580), - [anon_sym_foreach_r] = ACTIONS(1580), - [anon_sym_while] = ACTIONS(1580), - [anon_sym_do] = ACTIONS(1580), - [anon_sym_int] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1580), - [anon_sym_DASH] = ACTIONS(1580), - [anon_sym_STAR] = ACTIONS(1582), - [anon_sym_asm] = ACTIONS(1580), - [anon_sym_DOLLARassert] = ACTIONS(1580), - [anon_sym_DOLLARerror] = ACTIONS(1580), - [anon_sym_DOLLARecho] = ACTIONS(1580), - [anon_sym_DOLLARif] = ACTIONS(1580), - [anon_sym_DOLLARswitch] = ACTIONS(1580), - [anon_sym_DOLLARfor] = ACTIONS(1580), - [anon_sym_DOLLARforeach] = ACTIONS(1580), - [anon_sym_DOLLARendforeach] = ACTIONS(1580), - [anon_sym_DOLLARalignof] = ACTIONS(1580), - [anon_sym_DOLLARextnameof] = ACTIONS(1580), - [anon_sym_DOLLARnameof] = ACTIONS(1580), - [anon_sym_DOLLARoffsetof] = ACTIONS(1580), - [anon_sym_DOLLARqnameof] = ACTIONS(1580), - [anon_sym_DOLLARvaconst] = ACTIONS(1580), - [anon_sym_DOLLARvaarg] = ACTIONS(1580), - [anon_sym_DOLLARvaref] = ACTIONS(1580), - [anon_sym_DOLLARvaexpr] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1580), - [anon_sym_false] = ACTIONS(1580), - [anon_sym_null] = ACTIONS(1580), - [anon_sym_DOLLARvacount] = ACTIONS(1580), - [anon_sym_DOLLARappend] = ACTIONS(1580), - [anon_sym_DOLLARconcat] = ACTIONS(1580), - [anon_sym_DOLLAReval] = ACTIONS(1580), - [anon_sym_DOLLARis_const] = ACTIONS(1580), - [anon_sym_DOLLARsizeof] = ACTIONS(1580), - [anon_sym_DOLLARstringify] = ACTIONS(1580), - [anon_sym_DOLLARand] = ACTIONS(1580), - [anon_sym_DOLLARdefined] = ACTIONS(1580), - [anon_sym_DOLLARembed] = ACTIONS(1580), - [anon_sym_DOLLARor] = ACTIONS(1580), - [anon_sym_DOLLARfeature] = ACTIONS(1580), - [anon_sym_DOLLARassignable] = ACTIONS(1580), - [anon_sym_BANG] = ACTIONS(1582), - [anon_sym_TILDE] = ACTIONS(1582), - [anon_sym_PLUS_PLUS] = ACTIONS(1582), - [anon_sym_DASH_DASH] = ACTIONS(1582), - [anon_sym_typeid] = ACTIONS(1580), - [anon_sym_LBRACE_PIPE] = ACTIONS(1582), - [anon_sym_void] = ACTIONS(1580), - [anon_sym_bool] = ACTIONS(1580), - [anon_sym_char] = ACTIONS(1580), - [anon_sym_ichar] = ACTIONS(1580), - [anon_sym_short] = ACTIONS(1580), - [anon_sym_ushort] = ACTIONS(1580), - [anon_sym_uint] = ACTIONS(1580), - [anon_sym_long] = ACTIONS(1580), - [anon_sym_ulong] = ACTIONS(1580), - [anon_sym_int128] = ACTIONS(1580), - [anon_sym_uint128] = ACTIONS(1580), - [anon_sym_float] = ACTIONS(1580), - [anon_sym_double] = ACTIONS(1580), - [anon_sym_float16] = ACTIONS(1580), - [anon_sym_bfloat16] = ACTIONS(1580), - [anon_sym_float128] = ACTIONS(1580), - [anon_sym_iptr] = ACTIONS(1580), - [anon_sym_uptr] = ACTIONS(1580), - [anon_sym_isz] = ACTIONS(1580), - [anon_sym_usz] = ACTIONS(1580), - [anon_sym_anyfault] = ACTIONS(1580), - [anon_sym_any] = ACTIONS(1580), - [anon_sym_DOLLARtypeof] = ACTIONS(1580), - [anon_sym_DOLLARtypefrom] = ACTIONS(1580), - [anon_sym_DOLLARvatype] = ACTIONS(1580), - [anon_sym_DOLLARevaltype] = ACTIONS(1580), - [sym_real_literal] = ACTIONS(1582), + [sym_ident] = ACTIONS(1485), + [sym_integer_literal] = ACTIONS(1487), + [anon_sym_SQUOTE] = ACTIONS(1487), + [anon_sym_DQUOTE] = ACTIONS(1487), + [anon_sym_BQUOTE] = ACTIONS(1487), + [sym_bytes_literal] = ACTIONS(1487), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1485), + [sym_at_ident] = ACTIONS(1487), + [sym_hash_ident] = ACTIONS(1487), + [sym_type_ident] = ACTIONS(1487), + [sym_ct_type_ident] = ACTIONS(1487), + [sym_const_ident] = ACTIONS(1485), + [sym_builtin] = ACTIONS(1487), + [anon_sym_LPAREN] = ACTIONS(1487), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_static] = ACTIONS(1485), + [anon_sym_tlocal] = ACTIONS(1485), + [anon_sym_SEMI] = ACTIONS(1487), + [anon_sym_fn] = ACTIONS(1485), + [anon_sym_LBRACE] = ACTIONS(1485), + [anon_sym_const] = ACTIONS(1485), + [anon_sym_var] = ACTIONS(1485), + [anon_sym_return] = ACTIONS(1485), + [anon_sym_continue] = ACTIONS(1485), + [anon_sym_break] = ACTIONS(1485), + [anon_sym_defer] = ACTIONS(1485), + [anon_sym_assert] = ACTIONS(1485), + [anon_sym_nextcase] = ACTIONS(1485), + [anon_sym_switch] = ACTIONS(1485), + [anon_sym_AMP_AMP] = ACTIONS(1487), + [anon_sym_if] = ACTIONS(1485), + [anon_sym_for] = ACTIONS(1485), + [anon_sym_foreach] = ACTIONS(1485), + [anon_sym_foreach_r] = ACTIONS(1485), + [anon_sym_while] = ACTIONS(1485), + [anon_sym_do] = ACTIONS(1485), + [anon_sym_int] = ACTIONS(1485), + [anon_sym_PLUS] = ACTIONS(1485), + [anon_sym_DASH] = ACTIONS(1485), + [anon_sym_STAR] = ACTIONS(1487), + [anon_sym_asm] = ACTIONS(1485), + [anon_sym_DOLLARassert] = ACTIONS(1485), + [anon_sym_DOLLARerror] = ACTIONS(1485), + [anon_sym_DOLLARecho] = ACTIONS(1485), + [anon_sym_DOLLARif] = ACTIONS(1485), + [anon_sym_DOLLARendif] = ACTIONS(1485), + [anon_sym_DOLLARswitch] = ACTIONS(1485), + [anon_sym_DOLLARfor] = ACTIONS(1485), + [anon_sym_DOLLARforeach] = ACTIONS(1485), + [anon_sym_DOLLARalignof] = ACTIONS(1485), + [anon_sym_DOLLARextnameof] = ACTIONS(1485), + [anon_sym_DOLLARnameof] = ACTIONS(1485), + [anon_sym_DOLLARoffsetof] = ACTIONS(1485), + [anon_sym_DOLLARqnameof] = ACTIONS(1485), + [anon_sym_DOLLARvaconst] = ACTIONS(1485), + [anon_sym_DOLLARvaarg] = ACTIONS(1485), + [anon_sym_DOLLARvaref] = ACTIONS(1485), + [anon_sym_DOLLARvaexpr] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(1485), + [anon_sym_false] = ACTIONS(1485), + [anon_sym_null] = ACTIONS(1485), + [anon_sym_DOLLARvacount] = ACTIONS(1485), + [anon_sym_DOLLARappend] = ACTIONS(1485), + [anon_sym_DOLLARconcat] = ACTIONS(1485), + [anon_sym_DOLLAReval] = ACTIONS(1485), + [anon_sym_DOLLARis_const] = ACTIONS(1485), + [anon_sym_DOLLARsizeof] = ACTIONS(1485), + [anon_sym_DOLLARstringify] = ACTIONS(1485), + [anon_sym_DOLLARand] = ACTIONS(1485), + [anon_sym_DOLLARdefined] = ACTIONS(1485), + [anon_sym_DOLLARembed] = ACTIONS(1485), + [anon_sym_DOLLARor] = ACTIONS(1485), + [anon_sym_DOLLARfeature] = ACTIONS(1485), + [anon_sym_DOLLARassignable] = ACTIONS(1485), + [anon_sym_BANG] = ACTIONS(1487), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1487), + [anon_sym_DASH_DASH] = ACTIONS(1487), + [anon_sym_typeid] = ACTIONS(1485), + [anon_sym_LBRACE_PIPE] = ACTIONS(1487), + [anon_sym_void] = ACTIONS(1485), + [anon_sym_bool] = ACTIONS(1485), + [anon_sym_char] = ACTIONS(1485), + [anon_sym_ichar] = ACTIONS(1485), + [anon_sym_short] = ACTIONS(1485), + [anon_sym_ushort] = ACTIONS(1485), + [anon_sym_uint] = ACTIONS(1485), + [anon_sym_long] = ACTIONS(1485), + [anon_sym_ulong] = ACTIONS(1485), + [anon_sym_int128] = ACTIONS(1485), + [anon_sym_uint128] = ACTIONS(1485), + [anon_sym_float] = ACTIONS(1485), + [anon_sym_double] = ACTIONS(1485), + [anon_sym_float16] = ACTIONS(1485), + [anon_sym_bfloat16] = ACTIONS(1485), + [anon_sym_float128] = ACTIONS(1485), + [anon_sym_iptr] = ACTIONS(1485), + [anon_sym_uptr] = ACTIONS(1485), + [anon_sym_isz] = ACTIONS(1485), + [anon_sym_usz] = ACTIONS(1485), + [anon_sym_anyfault] = ACTIONS(1485), + [anon_sym_any] = ACTIONS(1485), + [anon_sym_DOLLARtypeof] = ACTIONS(1485), + [anon_sym_DOLLARtypefrom] = ACTIONS(1485), + [anon_sym_DOLLARvatype] = ACTIONS(1485), + [anon_sym_DOLLARevaltype] = ACTIONS(1485), + [sym_real_literal] = ACTIONS(1487), }, [728] = { [sym_line_comment] = STATE(728), [sym_doc_comment] = STATE(728), [sym_block_comment] = STATE(728), - [sym_ident] = ACTIONS(1452), - [sym_integer_literal] = ACTIONS(1454), - [anon_sym_SQUOTE] = ACTIONS(1454), - [anon_sym_DQUOTE] = ACTIONS(1454), - [anon_sym_BQUOTE] = ACTIONS(1454), - [sym_bytes_literal] = ACTIONS(1454), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1452), - [sym_at_ident] = ACTIONS(1454), - [sym_hash_ident] = ACTIONS(1454), - [sym_type_ident] = ACTIONS(1454), - [sym_ct_type_ident] = ACTIONS(1454), - [sym_const_ident] = ACTIONS(1452), - [sym_builtin] = ACTIONS(1454), - [anon_sym_LPAREN] = ACTIONS(1454), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_tlocal] = ACTIONS(1452), - [anon_sym_SEMI] = ACTIONS(1454), - [anon_sym_fn] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1452), - [anon_sym_const] = ACTIONS(1452), - [anon_sym_var] = ACTIONS(1452), - [anon_sym_return] = ACTIONS(1452), - [anon_sym_continue] = ACTIONS(1452), - [anon_sym_break] = ACTIONS(1452), - [anon_sym_defer] = ACTIONS(1452), - [anon_sym_assert] = ACTIONS(1452), - [anon_sym_nextcase] = ACTIONS(1452), - [anon_sym_switch] = ACTIONS(1452), - [anon_sym_AMP_AMP] = ACTIONS(1454), - [anon_sym_if] = ACTIONS(1452), - [anon_sym_for] = ACTIONS(1452), - [anon_sym_foreach] = ACTIONS(1452), - [anon_sym_foreach_r] = ACTIONS(1452), - [anon_sym_while] = ACTIONS(1452), - [anon_sym_do] = ACTIONS(1452), - [anon_sym_int] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1452), - [anon_sym_DASH] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1454), - [anon_sym_asm] = ACTIONS(1452), - [anon_sym_DOLLARassert] = ACTIONS(1452), - [anon_sym_DOLLARerror] = ACTIONS(1452), - [anon_sym_DOLLARecho] = ACTIONS(1452), - [anon_sym_DOLLARif] = ACTIONS(1452), - [anon_sym_DOLLARswitch] = ACTIONS(1452), - [anon_sym_DOLLARfor] = ACTIONS(1452), - [anon_sym_DOLLARforeach] = ACTIONS(1452), - [anon_sym_DOLLARendforeach] = ACTIONS(1452), - [anon_sym_DOLLARalignof] = ACTIONS(1452), - [anon_sym_DOLLARextnameof] = ACTIONS(1452), - [anon_sym_DOLLARnameof] = ACTIONS(1452), - [anon_sym_DOLLARoffsetof] = ACTIONS(1452), - [anon_sym_DOLLARqnameof] = ACTIONS(1452), - [anon_sym_DOLLARvaconst] = ACTIONS(1452), - [anon_sym_DOLLARvaarg] = ACTIONS(1452), - [anon_sym_DOLLARvaref] = ACTIONS(1452), - [anon_sym_DOLLARvaexpr] = ACTIONS(1452), - [anon_sym_true] = ACTIONS(1452), - [anon_sym_false] = ACTIONS(1452), - [anon_sym_null] = ACTIONS(1452), - [anon_sym_DOLLARvacount] = ACTIONS(1452), - [anon_sym_DOLLARappend] = ACTIONS(1452), - [anon_sym_DOLLARconcat] = ACTIONS(1452), - [anon_sym_DOLLAReval] = ACTIONS(1452), - [anon_sym_DOLLARis_const] = ACTIONS(1452), - [anon_sym_DOLLARsizeof] = ACTIONS(1452), - [anon_sym_DOLLARstringify] = ACTIONS(1452), - [anon_sym_DOLLARand] = ACTIONS(1452), - [anon_sym_DOLLARdefined] = ACTIONS(1452), - [anon_sym_DOLLARembed] = ACTIONS(1452), - [anon_sym_DOLLARor] = ACTIONS(1452), - [anon_sym_DOLLARfeature] = ACTIONS(1452), - [anon_sym_DOLLARassignable] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1454), - [anon_sym_PLUS_PLUS] = ACTIONS(1454), - [anon_sym_DASH_DASH] = ACTIONS(1454), - [anon_sym_typeid] = ACTIONS(1452), - [anon_sym_LBRACE_PIPE] = ACTIONS(1454), - [anon_sym_void] = ACTIONS(1452), - [anon_sym_bool] = ACTIONS(1452), - [anon_sym_char] = ACTIONS(1452), - [anon_sym_ichar] = ACTIONS(1452), - [anon_sym_short] = ACTIONS(1452), - [anon_sym_ushort] = ACTIONS(1452), - [anon_sym_uint] = ACTIONS(1452), - [anon_sym_long] = ACTIONS(1452), - [anon_sym_ulong] = ACTIONS(1452), - [anon_sym_int128] = ACTIONS(1452), - [anon_sym_uint128] = ACTIONS(1452), - [anon_sym_float] = ACTIONS(1452), - [anon_sym_double] = ACTIONS(1452), - [anon_sym_float16] = ACTIONS(1452), - [anon_sym_bfloat16] = ACTIONS(1452), - [anon_sym_float128] = ACTIONS(1452), - [anon_sym_iptr] = ACTIONS(1452), - [anon_sym_uptr] = ACTIONS(1452), - [anon_sym_isz] = ACTIONS(1452), - [anon_sym_usz] = ACTIONS(1452), - [anon_sym_anyfault] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_DOLLARtypeof] = ACTIONS(1452), - [anon_sym_DOLLARtypefrom] = ACTIONS(1452), - [anon_sym_DOLLARvatype] = ACTIONS(1452), - [anon_sym_DOLLARevaltype] = ACTIONS(1452), - [sym_real_literal] = ACTIONS(1454), + [sym_ident] = ACTIONS(1449), + [sym_integer_literal] = ACTIONS(1451), + [anon_sym_SQUOTE] = ACTIONS(1451), + [anon_sym_DQUOTE] = ACTIONS(1451), + [anon_sym_BQUOTE] = ACTIONS(1451), + [sym_bytes_literal] = ACTIONS(1451), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1449), + [sym_at_ident] = ACTIONS(1451), + [sym_hash_ident] = ACTIONS(1451), + [sym_type_ident] = ACTIONS(1451), + [sym_ct_type_ident] = ACTIONS(1451), + [sym_const_ident] = ACTIONS(1449), + [sym_builtin] = ACTIONS(1451), + [anon_sym_LPAREN] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_static] = ACTIONS(1449), + [anon_sym_tlocal] = ACTIONS(1449), + [anon_sym_SEMI] = ACTIONS(1451), + [anon_sym_fn] = ACTIONS(1449), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_const] = ACTIONS(1449), + [anon_sym_var] = ACTIONS(1449), + [anon_sym_return] = ACTIONS(1449), + [anon_sym_continue] = ACTIONS(1449), + [anon_sym_break] = ACTIONS(1449), + [anon_sym_defer] = ACTIONS(1449), + [anon_sym_assert] = ACTIONS(1449), + [anon_sym_nextcase] = ACTIONS(1449), + [anon_sym_switch] = ACTIONS(1449), + [anon_sym_AMP_AMP] = ACTIONS(1451), + [anon_sym_if] = ACTIONS(1449), + [anon_sym_for] = ACTIONS(1449), + [anon_sym_foreach] = ACTIONS(1449), + [anon_sym_foreach_r] = ACTIONS(1449), + [anon_sym_while] = ACTIONS(1449), + [anon_sym_do] = ACTIONS(1449), + [anon_sym_int] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1449), + [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_STAR] = ACTIONS(1451), + [anon_sym_asm] = ACTIONS(1449), + [anon_sym_DOLLARassert] = ACTIONS(1449), + [anon_sym_DOLLARerror] = ACTIONS(1449), + [anon_sym_DOLLARecho] = ACTIONS(1449), + [anon_sym_DOLLARif] = ACTIONS(1449), + [anon_sym_DOLLARendif] = ACTIONS(1449), + [anon_sym_DOLLARswitch] = ACTIONS(1449), + [anon_sym_DOLLARfor] = ACTIONS(1449), + [anon_sym_DOLLARforeach] = ACTIONS(1449), + [anon_sym_DOLLARalignof] = ACTIONS(1449), + [anon_sym_DOLLARextnameof] = ACTIONS(1449), + [anon_sym_DOLLARnameof] = ACTIONS(1449), + [anon_sym_DOLLARoffsetof] = ACTIONS(1449), + [anon_sym_DOLLARqnameof] = ACTIONS(1449), + [anon_sym_DOLLARvaconst] = ACTIONS(1449), + [anon_sym_DOLLARvaarg] = ACTIONS(1449), + [anon_sym_DOLLARvaref] = ACTIONS(1449), + [anon_sym_DOLLARvaexpr] = ACTIONS(1449), + [anon_sym_true] = ACTIONS(1449), + [anon_sym_false] = ACTIONS(1449), + [anon_sym_null] = ACTIONS(1449), + [anon_sym_DOLLARvacount] = ACTIONS(1449), + [anon_sym_DOLLARappend] = ACTIONS(1449), + [anon_sym_DOLLARconcat] = ACTIONS(1449), + [anon_sym_DOLLAReval] = ACTIONS(1449), + [anon_sym_DOLLARis_const] = ACTIONS(1449), + [anon_sym_DOLLARsizeof] = ACTIONS(1449), + [anon_sym_DOLLARstringify] = ACTIONS(1449), + [anon_sym_DOLLARand] = ACTIONS(1449), + [anon_sym_DOLLARdefined] = ACTIONS(1449), + [anon_sym_DOLLARembed] = ACTIONS(1449), + [anon_sym_DOLLARor] = ACTIONS(1449), + [anon_sym_DOLLARfeature] = ACTIONS(1449), + [anon_sym_DOLLARassignable] = ACTIONS(1449), + [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_TILDE] = ACTIONS(1451), + [anon_sym_PLUS_PLUS] = ACTIONS(1451), + [anon_sym_DASH_DASH] = ACTIONS(1451), + [anon_sym_typeid] = ACTIONS(1449), + [anon_sym_LBRACE_PIPE] = ACTIONS(1451), + [anon_sym_void] = ACTIONS(1449), + [anon_sym_bool] = ACTIONS(1449), + [anon_sym_char] = ACTIONS(1449), + [anon_sym_ichar] = ACTIONS(1449), + [anon_sym_short] = ACTIONS(1449), + [anon_sym_ushort] = ACTIONS(1449), + [anon_sym_uint] = ACTIONS(1449), + [anon_sym_long] = ACTIONS(1449), + [anon_sym_ulong] = ACTIONS(1449), + [anon_sym_int128] = ACTIONS(1449), + [anon_sym_uint128] = ACTIONS(1449), + [anon_sym_float] = ACTIONS(1449), + [anon_sym_double] = ACTIONS(1449), + [anon_sym_float16] = ACTIONS(1449), + [anon_sym_bfloat16] = ACTIONS(1449), + [anon_sym_float128] = ACTIONS(1449), + [anon_sym_iptr] = ACTIONS(1449), + [anon_sym_uptr] = ACTIONS(1449), + [anon_sym_isz] = ACTIONS(1449), + [anon_sym_usz] = ACTIONS(1449), + [anon_sym_anyfault] = ACTIONS(1449), + [anon_sym_any] = ACTIONS(1449), + [anon_sym_DOLLARtypeof] = ACTIONS(1449), + [anon_sym_DOLLARtypefrom] = ACTIONS(1449), + [anon_sym_DOLLARvatype] = ACTIONS(1449), + [anon_sym_DOLLARevaltype] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1451), }, [729] = { [sym_line_comment] = STATE(729), [sym_doc_comment] = STATE(729), [sym_block_comment] = STATE(729), - [sym_ident] = ACTIONS(1612), - [sym_integer_literal] = ACTIONS(1614), - [anon_sym_SQUOTE] = ACTIONS(1614), - [anon_sym_DQUOTE] = ACTIONS(1614), - [anon_sym_BQUOTE] = ACTIONS(1614), - [sym_bytes_literal] = ACTIONS(1614), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1612), - [sym_at_ident] = ACTIONS(1614), - [sym_hash_ident] = ACTIONS(1614), - [sym_type_ident] = ACTIONS(1614), - [sym_ct_type_ident] = ACTIONS(1614), - [sym_const_ident] = ACTIONS(1612), - [sym_builtin] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_static] = ACTIONS(1612), - [anon_sym_tlocal] = ACTIONS(1612), - [anon_sym_SEMI] = ACTIONS(1614), - [anon_sym_fn] = ACTIONS(1612), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_const] = ACTIONS(1612), - [anon_sym_var] = ACTIONS(1612), - [anon_sym_return] = ACTIONS(1612), - [anon_sym_continue] = ACTIONS(1612), - [anon_sym_break] = ACTIONS(1612), - [anon_sym_defer] = ACTIONS(1612), - [anon_sym_assert] = ACTIONS(1612), - [anon_sym_nextcase] = ACTIONS(1612), - [anon_sym_switch] = ACTIONS(1612), - [anon_sym_AMP_AMP] = ACTIONS(1614), - [anon_sym_if] = ACTIONS(1612), - [anon_sym_for] = ACTIONS(1612), - [anon_sym_foreach] = ACTIONS(1612), - [anon_sym_foreach_r] = ACTIONS(1612), - [anon_sym_while] = ACTIONS(1612), - [anon_sym_do] = ACTIONS(1612), - [anon_sym_int] = ACTIONS(1612), - [anon_sym_PLUS] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1612), - [anon_sym_STAR] = ACTIONS(1614), - [anon_sym_asm] = ACTIONS(1612), - [anon_sym_DOLLARassert] = ACTIONS(1612), - [anon_sym_DOLLARerror] = ACTIONS(1612), - [anon_sym_DOLLARecho] = ACTIONS(1612), - [anon_sym_DOLLARif] = ACTIONS(1612), - [anon_sym_DOLLARendif] = ACTIONS(1612), - [anon_sym_DOLLARswitch] = ACTIONS(1612), - [anon_sym_DOLLARfor] = ACTIONS(1612), - [anon_sym_DOLLARforeach] = ACTIONS(1612), - [anon_sym_DOLLARalignof] = ACTIONS(1612), - [anon_sym_DOLLARextnameof] = ACTIONS(1612), - [anon_sym_DOLLARnameof] = ACTIONS(1612), - [anon_sym_DOLLARoffsetof] = ACTIONS(1612), - [anon_sym_DOLLARqnameof] = ACTIONS(1612), - [anon_sym_DOLLARvaconst] = ACTIONS(1612), - [anon_sym_DOLLARvaarg] = ACTIONS(1612), - [anon_sym_DOLLARvaref] = ACTIONS(1612), - [anon_sym_DOLLARvaexpr] = ACTIONS(1612), - [anon_sym_true] = ACTIONS(1612), - [anon_sym_false] = ACTIONS(1612), - [anon_sym_null] = ACTIONS(1612), - [anon_sym_DOLLARvacount] = ACTIONS(1612), - [anon_sym_DOLLARappend] = ACTIONS(1612), - [anon_sym_DOLLARconcat] = ACTIONS(1612), - [anon_sym_DOLLAReval] = ACTIONS(1612), - [anon_sym_DOLLARis_const] = ACTIONS(1612), - [anon_sym_DOLLARsizeof] = ACTIONS(1612), - [anon_sym_DOLLARstringify] = ACTIONS(1612), - [anon_sym_DOLLARand] = ACTIONS(1612), - [anon_sym_DOLLARdefined] = ACTIONS(1612), - [anon_sym_DOLLARembed] = ACTIONS(1612), - [anon_sym_DOLLARor] = ACTIONS(1612), - [anon_sym_DOLLARfeature] = ACTIONS(1612), - [anon_sym_DOLLARassignable] = ACTIONS(1612), - [anon_sym_BANG] = ACTIONS(1614), - [anon_sym_TILDE] = ACTIONS(1614), - [anon_sym_PLUS_PLUS] = ACTIONS(1614), - [anon_sym_DASH_DASH] = ACTIONS(1614), - [anon_sym_typeid] = ACTIONS(1612), - [anon_sym_LBRACE_PIPE] = ACTIONS(1614), - [anon_sym_void] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_ichar] = ACTIONS(1612), - [anon_sym_short] = ACTIONS(1612), - [anon_sym_ushort] = ACTIONS(1612), - [anon_sym_uint] = ACTIONS(1612), - [anon_sym_long] = ACTIONS(1612), - [anon_sym_ulong] = ACTIONS(1612), - [anon_sym_int128] = ACTIONS(1612), - [anon_sym_uint128] = ACTIONS(1612), - [anon_sym_float] = ACTIONS(1612), - [anon_sym_double] = ACTIONS(1612), - [anon_sym_float16] = ACTIONS(1612), - [anon_sym_bfloat16] = ACTIONS(1612), - [anon_sym_float128] = ACTIONS(1612), - [anon_sym_iptr] = ACTIONS(1612), - [anon_sym_uptr] = ACTIONS(1612), - [anon_sym_isz] = ACTIONS(1612), - [anon_sym_usz] = ACTIONS(1612), - [anon_sym_anyfault] = ACTIONS(1612), - [anon_sym_any] = ACTIONS(1612), - [anon_sym_DOLLARtypeof] = ACTIONS(1612), - [anon_sym_DOLLARtypefrom] = ACTIONS(1612), - [anon_sym_DOLLARvatype] = ACTIONS(1612), - [anon_sym_DOLLARevaltype] = ACTIONS(1612), - [sym_real_literal] = ACTIONS(1614), + [sym_ident] = ACTIONS(1441), + [sym_integer_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1443), + [anon_sym_DQUOTE] = ACTIONS(1443), + [anon_sym_BQUOTE] = ACTIONS(1443), + [sym_bytes_literal] = ACTIONS(1443), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1441), + [sym_at_ident] = ACTIONS(1443), + [sym_hash_ident] = ACTIONS(1443), + [sym_type_ident] = ACTIONS(1443), + [sym_ct_type_ident] = ACTIONS(1443), + [sym_const_ident] = ACTIONS(1441), + [sym_builtin] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_tlocal] = ACTIONS(1441), + [anon_sym_SEMI] = ACTIONS(1443), + [anon_sym_fn] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1441), + [anon_sym_const] = ACTIONS(1441), + [anon_sym_var] = ACTIONS(1441), + [anon_sym_return] = ACTIONS(1441), + [anon_sym_continue] = ACTIONS(1441), + [anon_sym_break] = ACTIONS(1441), + [anon_sym_defer] = ACTIONS(1441), + [anon_sym_assert] = ACTIONS(1441), + [anon_sym_nextcase] = ACTIONS(1441), + [anon_sym_switch] = ACTIONS(1441), + [anon_sym_AMP_AMP] = ACTIONS(1443), + [anon_sym_if] = ACTIONS(1441), + [anon_sym_for] = ACTIONS(1441), + [anon_sym_foreach] = ACTIONS(1441), + [anon_sym_foreach_r] = ACTIONS(1441), + [anon_sym_while] = ACTIONS(1441), + [anon_sym_do] = ACTIONS(1441), + [anon_sym_int] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1441), + [anon_sym_DASH] = ACTIONS(1441), + [anon_sym_STAR] = ACTIONS(1443), + [anon_sym_asm] = ACTIONS(1441), + [anon_sym_DOLLARassert] = ACTIONS(1441), + [anon_sym_DOLLARerror] = ACTIONS(1441), + [anon_sym_DOLLARecho] = ACTIONS(1441), + [anon_sym_DOLLARif] = ACTIONS(1441), + [anon_sym_DOLLARendif] = ACTIONS(1441), + [anon_sym_DOLLARswitch] = ACTIONS(1441), + [anon_sym_DOLLARfor] = ACTIONS(1441), + [anon_sym_DOLLARforeach] = ACTIONS(1441), + [anon_sym_DOLLARalignof] = ACTIONS(1441), + [anon_sym_DOLLARextnameof] = ACTIONS(1441), + [anon_sym_DOLLARnameof] = ACTIONS(1441), + [anon_sym_DOLLARoffsetof] = ACTIONS(1441), + [anon_sym_DOLLARqnameof] = ACTIONS(1441), + [anon_sym_DOLLARvaconst] = ACTIONS(1441), + [anon_sym_DOLLARvaarg] = ACTIONS(1441), + [anon_sym_DOLLARvaref] = ACTIONS(1441), + [anon_sym_DOLLARvaexpr] = ACTIONS(1441), + [anon_sym_true] = ACTIONS(1441), + [anon_sym_false] = ACTIONS(1441), + [anon_sym_null] = ACTIONS(1441), + [anon_sym_DOLLARvacount] = ACTIONS(1441), + [anon_sym_DOLLARappend] = ACTIONS(1441), + [anon_sym_DOLLARconcat] = ACTIONS(1441), + [anon_sym_DOLLAReval] = ACTIONS(1441), + [anon_sym_DOLLARis_const] = ACTIONS(1441), + [anon_sym_DOLLARsizeof] = ACTIONS(1441), + [anon_sym_DOLLARstringify] = ACTIONS(1441), + [anon_sym_DOLLARand] = ACTIONS(1441), + [anon_sym_DOLLARdefined] = ACTIONS(1441), + [anon_sym_DOLLARembed] = ACTIONS(1441), + [anon_sym_DOLLARor] = ACTIONS(1441), + [anon_sym_DOLLARfeature] = ACTIONS(1441), + [anon_sym_DOLLARassignable] = ACTIONS(1441), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_TILDE] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(1443), + [anon_sym_DASH_DASH] = ACTIONS(1443), + [anon_sym_typeid] = ACTIONS(1441), + [anon_sym_LBRACE_PIPE] = ACTIONS(1443), + [anon_sym_void] = ACTIONS(1441), + [anon_sym_bool] = ACTIONS(1441), + [anon_sym_char] = ACTIONS(1441), + [anon_sym_ichar] = ACTIONS(1441), + [anon_sym_short] = ACTIONS(1441), + [anon_sym_ushort] = ACTIONS(1441), + [anon_sym_uint] = ACTIONS(1441), + [anon_sym_long] = ACTIONS(1441), + [anon_sym_ulong] = ACTIONS(1441), + [anon_sym_int128] = ACTIONS(1441), + [anon_sym_uint128] = ACTIONS(1441), + [anon_sym_float] = ACTIONS(1441), + [anon_sym_double] = ACTIONS(1441), + [anon_sym_float16] = ACTIONS(1441), + [anon_sym_bfloat16] = ACTIONS(1441), + [anon_sym_float128] = ACTIONS(1441), + [anon_sym_iptr] = ACTIONS(1441), + [anon_sym_uptr] = ACTIONS(1441), + [anon_sym_isz] = ACTIONS(1441), + [anon_sym_usz] = ACTIONS(1441), + [anon_sym_anyfault] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_DOLLARtypeof] = ACTIONS(1441), + [anon_sym_DOLLARtypefrom] = ACTIONS(1441), + [anon_sym_DOLLARvatype] = ACTIONS(1441), + [anon_sym_DOLLARevaltype] = ACTIONS(1441), + [sym_real_literal] = ACTIONS(1443), }, [730] = { [sym_line_comment] = STATE(730), [sym_doc_comment] = STATE(730), [sym_block_comment] = STATE(730), - [sym_ident] = ACTIONS(1552), - [sym_integer_literal] = ACTIONS(1554), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_DQUOTE] = ACTIONS(1554), - [anon_sym_BQUOTE] = ACTIONS(1554), - [sym_bytes_literal] = ACTIONS(1554), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1552), - [sym_at_ident] = ACTIONS(1554), - [sym_hash_ident] = ACTIONS(1554), - [sym_type_ident] = ACTIONS(1554), - [sym_ct_type_ident] = ACTIONS(1554), - [sym_const_ident] = ACTIONS(1552), - [sym_builtin] = ACTIONS(1554), - [anon_sym_LPAREN] = ACTIONS(1554), - [anon_sym_AMP] = ACTIONS(1552), - [anon_sym_static] = ACTIONS(1552), - [anon_sym_tlocal] = ACTIONS(1552), - [anon_sym_SEMI] = ACTIONS(1554), - [anon_sym_fn] = ACTIONS(1552), - [anon_sym_LBRACE] = ACTIONS(1552), - [anon_sym_const] = ACTIONS(1552), - [anon_sym_var] = ACTIONS(1552), - [anon_sym_return] = ACTIONS(1552), - [anon_sym_continue] = ACTIONS(1552), - [anon_sym_break] = ACTIONS(1552), - [anon_sym_defer] = ACTIONS(1552), - [anon_sym_assert] = ACTIONS(1552), - [anon_sym_nextcase] = ACTIONS(1552), - [anon_sym_switch] = ACTIONS(1552), - [anon_sym_AMP_AMP] = ACTIONS(1554), - [anon_sym_if] = ACTIONS(1552), - [anon_sym_for] = ACTIONS(1552), - [anon_sym_foreach] = ACTIONS(1552), - [anon_sym_foreach_r] = ACTIONS(1552), - [anon_sym_while] = ACTIONS(1552), - [anon_sym_do] = ACTIONS(1552), - [anon_sym_int] = ACTIONS(1552), - [anon_sym_PLUS] = ACTIONS(1552), - [anon_sym_DASH] = ACTIONS(1552), - [anon_sym_STAR] = ACTIONS(1554), - [anon_sym_asm] = ACTIONS(1552), - [anon_sym_DOLLARassert] = ACTIONS(1552), - [anon_sym_DOLLARerror] = ACTIONS(1552), - [anon_sym_DOLLARecho] = ACTIONS(1552), - [anon_sym_DOLLARif] = ACTIONS(1552), - [anon_sym_DOLLARswitch] = ACTIONS(1552), - [anon_sym_DOLLARfor] = ACTIONS(1552), - [anon_sym_DOLLARforeach] = ACTIONS(1552), - [anon_sym_DOLLARendforeach] = ACTIONS(1552), - [anon_sym_DOLLARalignof] = ACTIONS(1552), - [anon_sym_DOLLARextnameof] = ACTIONS(1552), - [anon_sym_DOLLARnameof] = ACTIONS(1552), - [anon_sym_DOLLARoffsetof] = ACTIONS(1552), - [anon_sym_DOLLARqnameof] = ACTIONS(1552), - [anon_sym_DOLLARvaconst] = ACTIONS(1552), - [anon_sym_DOLLARvaarg] = ACTIONS(1552), - [anon_sym_DOLLARvaref] = ACTIONS(1552), - [anon_sym_DOLLARvaexpr] = ACTIONS(1552), - [anon_sym_true] = ACTIONS(1552), - [anon_sym_false] = ACTIONS(1552), - [anon_sym_null] = ACTIONS(1552), - [anon_sym_DOLLARvacount] = ACTIONS(1552), - [anon_sym_DOLLARappend] = ACTIONS(1552), - [anon_sym_DOLLARconcat] = ACTIONS(1552), - [anon_sym_DOLLAReval] = ACTIONS(1552), - [anon_sym_DOLLARis_const] = ACTIONS(1552), - [anon_sym_DOLLARsizeof] = ACTIONS(1552), - [anon_sym_DOLLARstringify] = ACTIONS(1552), - [anon_sym_DOLLARand] = ACTIONS(1552), - [anon_sym_DOLLARdefined] = ACTIONS(1552), - [anon_sym_DOLLARembed] = ACTIONS(1552), - [anon_sym_DOLLARor] = ACTIONS(1552), - [anon_sym_DOLLARfeature] = ACTIONS(1552), - [anon_sym_DOLLARassignable] = ACTIONS(1552), - [anon_sym_BANG] = ACTIONS(1554), - [anon_sym_TILDE] = ACTIONS(1554), - [anon_sym_PLUS_PLUS] = ACTIONS(1554), - [anon_sym_DASH_DASH] = ACTIONS(1554), - [anon_sym_typeid] = ACTIONS(1552), - [anon_sym_LBRACE_PIPE] = ACTIONS(1554), - [anon_sym_void] = ACTIONS(1552), - [anon_sym_bool] = ACTIONS(1552), - [anon_sym_char] = ACTIONS(1552), - [anon_sym_ichar] = ACTIONS(1552), - [anon_sym_short] = ACTIONS(1552), - [anon_sym_ushort] = ACTIONS(1552), - [anon_sym_uint] = ACTIONS(1552), - [anon_sym_long] = ACTIONS(1552), - [anon_sym_ulong] = ACTIONS(1552), - [anon_sym_int128] = ACTIONS(1552), - [anon_sym_uint128] = ACTIONS(1552), - [anon_sym_float] = ACTIONS(1552), - [anon_sym_double] = ACTIONS(1552), - [anon_sym_float16] = ACTIONS(1552), - [anon_sym_bfloat16] = ACTIONS(1552), - [anon_sym_float128] = ACTIONS(1552), - [anon_sym_iptr] = ACTIONS(1552), - [anon_sym_uptr] = ACTIONS(1552), - [anon_sym_isz] = ACTIONS(1552), - [anon_sym_usz] = ACTIONS(1552), - [anon_sym_anyfault] = ACTIONS(1552), - [anon_sym_any] = ACTIONS(1552), - [anon_sym_DOLLARtypeof] = ACTIONS(1552), - [anon_sym_DOLLARtypefrom] = ACTIONS(1552), - [anon_sym_DOLLARvatype] = ACTIONS(1552), - [anon_sym_DOLLARevaltype] = ACTIONS(1552), - [sym_real_literal] = ACTIONS(1554), + [sym_ident] = ACTIONS(1423), + [sym_integer_literal] = ACTIONS(1425), + [anon_sym_SQUOTE] = ACTIONS(1425), + [anon_sym_DQUOTE] = ACTIONS(1425), + [anon_sym_BQUOTE] = ACTIONS(1425), + [sym_bytes_literal] = ACTIONS(1425), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1423), + [sym_at_ident] = ACTIONS(1425), + [sym_hash_ident] = ACTIONS(1425), + [sym_type_ident] = ACTIONS(1425), + [sym_ct_type_ident] = ACTIONS(1425), + [sym_const_ident] = ACTIONS(1423), + [sym_builtin] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1423), + [anon_sym_static] = ACTIONS(1423), + [anon_sym_tlocal] = ACTIONS(1423), + [anon_sym_SEMI] = ACTIONS(1425), + [anon_sym_fn] = ACTIONS(1423), + [anon_sym_LBRACE] = ACTIONS(1423), + [anon_sym_const] = ACTIONS(1423), + [anon_sym_var] = ACTIONS(1423), + [anon_sym_return] = ACTIONS(1423), + [anon_sym_continue] = ACTIONS(1423), + [anon_sym_break] = ACTIONS(1423), + [anon_sym_defer] = ACTIONS(1423), + [anon_sym_assert] = ACTIONS(1423), + [anon_sym_nextcase] = ACTIONS(1423), + [anon_sym_switch] = ACTIONS(1423), + [anon_sym_AMP_AMP] = ACTIONS(1425), + [anon_sym_if] = ACTIONS(1423), + [anon_sym_for] = ACTIONS(1423), + [anon_sym_foreach] = ACTIONS(1423), + [anon_sym_foreach_r] = ACTIONS(1423), + [anon_sym_while] = ACTIONS(1423), + [anon_sym_do] = ACTIONS(1423), + [anon_sym_int] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_asm] = ACTIONS(1423), + [anon_sym_DOLLARassert] = ACTIONS(1423), + [anon_sym_DOLLARerror] = ACTIONS(1423), + [anon_sym_DOLLARecho] = ACTIONS(1423), + [anon_sym_DOLLARif] = ACTIONS(1423), + [anon_sym_DOLLARendif] = ACTIONS(1423), + [anon_sym_DOLLARswitch] = ACTIONS(1423), + [anon_sym_DOLLARfor] = ACTIONS(1423), + [anon_sym_DOLLARforeach] = ACTIONS(1423), + [anon_sym_DOLLARalignof] = ACTIONS(1423), + [anon_sym_DOLLARextnameof] = ACTIONS(1423), + [anon_sym_DOLLARnameof] = ACTIONS(1423), + [anon_sym_DOLLARoffsetof] = ACTIONS(1423), + [anon_sym_DOLLARqnameof] = ACTIONS(1423), + [anon_sym_DOLLARvaconst] = ACTIONS(1423), + [anon_sym_DOLLARvaarg] = ACTIONS(1423), + [anon_sym_DOLLARvaref] = ACTIONS(1423), + [anon_sym_DOLLARvaexpr] = ACTIONS(1423), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [anon_sym_null] = ACTIONS(1423), + [anon_sym_DOLLARvacount] = ACTIONS(1423), + [anon_sym_DOLLARappend] = ACTIONS(1423), + [anon_sym_DOLLARconcat] = ACTIONS(1423), + [anon_sym_DOLLAReval] = ACTIONS(1423), + [anon_sym_DOLLARis_const] = ACTIONS(1423), + [anon_sym_DOLLARsizeof] = ACTIONS(1423), + [anon_sym_DOLLARstringify] = ACTIONS(1423), + [anon_sym_DOLLARand] = ACTIONS(1423), + [anon_sym_DOLLARdefined] = ACTIONS(1423), + [anon_sym_DOLLARembed] = ACTIONS(1423), + [anon_sym_DOLLARor] = ACTIONS(1423), + [anon_sym_DOLLARfeature] = ACTIONS(1423), + [anon_sym_DOLLARassignable] = ACTIONS(1423), + [anon_sym_BANG] = ACTIONS(1425), + [anon_sym_TILDE] = ACTIONS(1425), + [anon_sym_PLUS_PLUS] = ACTIONS(1425), + [anon_sym_DASH_DASH] = ACTIONS(1425), + [anon_sym_typeid] = ACTIONS(1423), + [anon_sym_LBRACE_PIPE] = ACTIONS(1425), + [anon_sym_void] = ACTIONS(1423), + [anon_sym_bool] = ACTIONS(1423), + [anon_sym_char] = ACTIONS(1423), + [anon_sym_ichar] = ACTIONS(1423), + [anon_sym_short] = ACTIONS(1423), + [anon_sym_ushort] = ACTIONS(1423), + [anon_sym_uint] = ACTIONS(1423), + [anon_sym_long] = ACTIONS(1423), + [anon_sym_ulong] = ACTIONS(1423), + [anon_sym_int128] = ACTIONS(1423), + [anon_sym_uint128] = ACTIONS(1423), + [anon_sym_float] = ACTIONS(1423), + [anon_sym_double] = ACTIONS(1423), + [anon_sym_float16] = ACTIONS(1423), + [anon_sym_bfloat16] = ACTIONS(1423), + [anon_sym_float128] = ACTIONS(1423), + [anon_sym_iptr] = ACTIONS(1423), + [anon_sym_uptr] = ACTIONS(1423), + [anon_sym_isz] = ACTIONS(1423), + [anon_sym_usz] = ACTIONS(1423), + [anon_sym_anyfault] = ACTIONS(1423), + [anon_sym_any] = ACTIONS(1423), + [anon_sym_DOLLARtypeof] = ACTIONS(1423), + [anon_sym_DOLLARtypefrom] = ACTIONS(1423), + [anon_sym_DOLLARvatype] = ACTIONS(1423), + [anon_sym_DOLLARevaltype] = ACTIONS(1423), + [sym_real_literal] = ACTIONS(1425), }, [731] = { [sym_line_comment] = STATE(731), [sym_doc_comment] = STATE(731), [sym_block_comment] = STATE(731), - [sym_ident] = ACTIONS(1406), - [sym_integer_literal] = ACTIONS(1408), - [anon_sym_SQUOTE] = ACTIONS(1408), - [anon_sym_DQUOTE] = ACTIONS(1408), - [anon_sym_BQUOTE] = ACTIONS(1408), - [sym_bytes_literal] = ACTIONS(1408), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1406), - [sym_at_ident] = ACTIONS(1408), - [sym_hash_ident] = ACTIONS(1408), - [sym_type_ident] = ACTIONS(1408), - [sym_ct_type_ident] = ACTIONS(1408), - [sym_const_ident] = ACTIONS(1406), - [sym_builtin] = ACTIONS(1408), - [anon_sym_LPAREN] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(1406), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_tlocal] = ACTIONS(1406), - [anon_sym_SEMI] = ACTIONS(1408), - [anon_sym_fn] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1406), - [anon_sym_const] = ACTIONS(1406), - [anon_sym_var] = ACTIONS(1406), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_defer] = ACTIONS(1406), - [anon_sym_assert] = ACTIONS(1406), - [anon_sym_nextcase] = ACTIONS(1406), - [anon_sym_switch] = ACTIONS(1406), - [anon_sym_AMP_AMP] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_for] = ACTIONS(1406), - [anon_sym_foreach] = ACTIONS(1406), - [anon_sym_foreach_r] = ACTIONS(1406), - [anon_sym_while] = ACTIONS(1406), - [anon_sym_do] = ACTIONS(1406), - [anon_sym_int] = ACTIONS(1406), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_asm] = ACTIONS(1406), - [anon_sym_DOLLARassert] = ACTIONS(1406), - [anon_sym_DOLLARerror] = ACTIONS(1406), - [anon_sym_DOLLARecho] = ACTIONS(1406), - [anon_sym_DOLLARif] = ACTIONS(1406), - [anon_sym_DOLLARswitch] = ACTIONS(1406), - [anon_sym_DOLLARfor] = ACTIONS(1406), - [anon_sym_DOLLARendfor] = ACTIONS(1406), - [anon_sym_DOLLARforeach] = ACTIONS(1406), - [anon_sym_DOLLARalignof] = ACTIONS(1406), - [anon_sym_DOLLARextnameof] = ACTIONS(1406), - [anon_sym_DOLLARnameof] = ACTIONS(1406), - [anon_sym_DOLLARoffsetof] = ACTIONS(1406), - [anon_sym_DOLLARqnameof] = ACTIONS(1406), - [anon_sym_DOLLARvaconst] = ACTIONS(1406), - [anon_sym_DOLLARvaarg] = ACTIONS(1406), - [anon_sym_DOLLARvaref] = ACTIONS(1406), - [anon_sym_DOLLARvaexpr] = ACTIONS(1406), - [anon_sym_true] = ACTIONS(1406), - [anon_sym_false] = ACTIONS(1406), - [anon_sym_null] = ACTIONS(1406), - [anon_sym_DOLLARvacount] = ACTIONS(1406), - [anon_sym_DOLLARappend] = ACTIONS(1406), - [anon_sym_DOLLARconcat] = ACTIONS(1406), - [anon_sym_DOLLAReval] = ACTIONS(1406), - [anon_sym_DOLLARis_const] = ACTIONS(1406), - [anon_sym_DOLLARsizeof] = ACTIONS(1406), - [anon_sym_DOLLARstringify] = ACTIONS(1406), - [anon_sym_DOLLARand] = ACTIONS(1406), - [anon_sym_DOLLARdefined] = ACTIONS(1406), - [anon_sym_DOLLARembed] = ACTIONS(1406), - [anon_sym_DOLLARor] = ACTIONS(1406), - [anon_sym_DOLLARfeature] = ACTIONS(1406), - [anon_sym_DOLLARassignable] = ACTIONS(1406), - [anon_sym_BANG] = ACTIONS(1408), - [anon_sym_TILDE] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1408), - [anon_sym_DASH_DASH] = ACTIONS(1408), - [anon_sym_typeid] = ACTIONS(1406), - [anon_sym_LBRACE_PIPE] = ACTIONS(1408), - [anon_sym_void] = ACTIONS(1406), - [anon_sym_bool] = ACTIONS(1406), - [anon_sym_char] = ACTIONS(1406), - [anon_sym_ichar] = ACTIONS(1406), - [anon_sym_short] = ACTIONS(1406), - [anon_sym_ushort] = ACTIONS(1406), - [anon_sym_uint] = ACTIONS(1406), - [anon_sym_long] = ACTIONS(1406), - [anon_sym_ulong] = ACTIONS(1406), - [anon_sym_int128] = ACTIONS(1406), - [anon_sym_uint128] = ACTIONS(1406), - [anon_sym_float] = ACTIONS(1406), - [anon_sym_double] = ACTIONS(1406), - [anon_sym_float16] = ACTIONS(1406), - [anon_sym_bfloat16] = ACTIONS(1406), - [anon_sym_float128] = ACTIONS(1406), - [anon_sym_iptr] = ACTIONS(1406), - [anon_sym_uptr] = ACTIONS(1406), - [anon_sym_isz] = ACTIONS(1406), - [anon_sym_usz] = ACTIONS(1406), - [anon_sym_anyfault] = ACTIONS(1406), - [anon_sym_any] = ACTIONS(1406), - [anon_sym_DOLLARtypeof] = ACTIONS(1406), - [anon_sym_DOLLARtypefrom] = ACTIONS(1406), - [anon_sym_DOLLARvatype] = ACTIONS(1406), - [anon_sym_DOLLARevaltype] = ACTIONS(1406), - [sym_real_literal] = ACTIONS(1408), + [sym_ident] = ACTIONS(1179), + [sym_integer_literal] = ACTIONS(1181), + [anon_sym_SQUOTE] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1181), + [anon_sym_BQUOTE] = ACTIONS(1181), + [sym_bytes_literal] = ACTIONS(1181), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1179), + [sym_at_ident] = ACTIONS(1181), + [sym_hash_ident] = ACTIONS(1181), + [sym_type_ident] = ACTIONS(1181), + [sym_ct_type_ident] = ACTIONS(1181), + [sym_const_ident] = ACTIONS(1179), + [sym_builtin] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1181), + [anon_sym_AMP] = ACTIONS(1179), + [anon_sym_static] = ACTIONS(1179), + [anon_sym_tlocal] = ACTIONS(1179), + [anon_sym_SEMI] = ACTIONS(1181), + [anon_sym_fn] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [anon_sym_var] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_defer] = ACTIONS(1179), + [anon_sym_assert] = ACTIONS(1179), + [anon_sym_nextcase] = ACTIONS(1179), + [anon_sym_switch] = ACTIONS(1179), + [anon_sym_AMP_AMP] = ACTIONS(1181), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_foreach] = ACTIONS(1179), + [anon_sym_foreach_r] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_int] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1181), + [anon_sym_asm] = ACTIONS(1179), + [anon_sym_DOLLARassert] = ACTIONS(1179), + [anon_sym_DOLLARerror] = ACTIONS(1179), + [anon_sym_DOLLARecho] = ACTIONS(1179), + [anon_sym_DOLLARif] = ACTIONS(1179), + [anon_sym_DOLLARswitch] = ACTIONS(1179), + [anon_sym_DOLLARfor] = ACTIONS(1179), + [anon_sym_DOLLARforeach] = ACTIONS(1179), + [anon_sym_DOLLARendforeach] = ACTIONS(1179), + [anon_sym_DOLLARalignof] = ACTIONS(1179), + [anon_sym_DOLLARextnameof] = ACTIONS(1179), + [anon_sym_DOLLARnameof] = ACTIONS(1179), + [anon_sym_DOLLARoffsetof] = ACTIONS(1179), + [anon_sym_DOLLARqnameof] = ACTIONS(1179), + [anon_sym_DOLLARvaconst] = ACTIONS(1179), + [anon_sym_DOLLARvaarg] = ACTIONS(1179), + [anon_sym_DOLLARvaref] = ACTIONS(1179), + [anon_sym_DOLLARvaexpr] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_DOLLARvacount] = ACTIONS(1179), + [anon_sym_DOLLARappend] = ACTIONS(1179), + [anon_sym_DOLLARconcat] = ACTIONS(1179), + [anon_sym_DOLLAReval] = ACTIONS(1179), + [anon_sym_DOLLARis_const] = ACTIONS(1179), + [anon_sym_DOLLARsizeof] = ACTIONS(1179), + [anon_sym_DOLLARstringify] = ACTIONS(1179), + [anon_sym_DOLLARand] = ACTIONS(1179), + [anon_sym_DOLLARdefined] = ACTIONS(1179), + [anon_sym_DOLLARembed] = ACTIONS(1179), + [anon_sym_DOLLARor] = ACTIONS(1179), + [anon_sym_DOLLARfeature] = ACTIONS(1179), + [anon_sym_DOLLARassignable] = ACTIONS(1179), + [anon_sym_BANG] = ACTIONS(1181), + [anon_sym_TILDE] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(1181), + [anon_sym_DASH_DASH] = ACTIONS(1181), + [anon_sym_typeid] = ACTIONS(1179), + [anon_sym_LBRACE_PIPE] = ACTIONS(1181), + [anon_sym_void] = ACTIONS(1179), + [anon_sym_bool] = ACTIONS(1179), + [anon_sym_char] = ACTIONS(1179), + [anon_sym_ichar] = ACTIONS(1179), + [anon_sym_short] = ACTIONS(1179), + [anon_sym_ushort] = ACTIONS(1179), + [anon_sym_uint] = ACTIONS(1179), + [anon_sym_long] = ACTIONS(1179), + [anon_sym_ulong] = ACTIONS(1179), + [anon_sym_int128] = ACTIONS(1179), + [anon_sym_uint128] = ACTIONS(1179), + [anon_sym_float] = ACTIONS(1179), + [anon_sym_double] = ACTIONS(1179), + [anon_sym_float16] = ACTIONS(1179), + [anon_sym_bfloat16] = ACTIONS(1179), + [anon_sym_float128] = ACTIONS(1179), + [anon_sym_iptr] = ACTIONS(1179), + [anon_sym_uptr] = ACTIONS(1179), + [anon_sym_isz] = ACTIONS(1179), + [anon_sym_usz] = ACTIONS(1179), + [anon_sym_anyfault] = ACTIONS(1179), + [anon_sym_any] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1179), + [anon_sym_DOLLARtypefrom] = ACTIONS(1179), + [anon_sym_DOLLARvatype] = ACTIONS(1179), + [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [sym_real_literal] = ACTIONS(1181), }, [732] = { [sym_line_comment] = STATE(732), [sym_doc_comment] = STATE(732), [sym_block_comment] = STATE(732), - [sym_ident] = ACTIONS(1556), - [sym_integer_literal] = ACTIONS(1558), - [anon_sym_SQUOTE] = ACTIONS(1558), - [anon_sym_DQUOTE] = ACTIONS(1558), - [anon_sym_BQUOTE] = ACTIONS(1558), - [sym_bytes_literal] = ACTIONS(1558), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1556), - [sym_at_ident] = ACTIONS(1558), - [sym_hash_ident] = ACTIONS(1558), - [sym_type_ident] = ACTIONS(1558), - [sym_ct_type_ident] = ACTIONS(1558), - [sym_const_ident] = ACTIONS(1556), - [sym_builtin] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1558), - [anon_sym_AMP] = ACTIONS(1556), - [anon_sym_static] = ACTIONS(1556), - [anon_sym_tlocal] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1558), - [anon_sym_fn] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_const] = ACTIONS(1556), - [anon_sym_var] = ACTIONS(1556), - [anon_sym_return] = ACTIONS(1556), - [anon_sym_continue] = ACTIONS(1556), - [anon_sym_break] = ACTIONS(1556), - [anon_sym_defer] = ACTIONS(1556), - [anon_sym_assert] = ACTIONS(1556), - [anon_sym_nextcase] = ACTIONS(1556), - [anon_sym_switch] = ACTIONS(1556), - [anon_sym_AMP_AMP] = ACTIONS(1558), - [anon_sym_if] = ACTIONS(1556), - [anon_sym_for] = ACTIONS(1556), - [anon_sym_foreach] = ACTIONS(1556), - [anon_sym_foreach_r] = ACTIONS(1556), - [anon_sym_while] = ACTIONS(1556), - [anon_sym_do] = ACTIONS(1556), - [anon_sym_int] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1558), - [anon_sym_asm] = ACTIONS(1556), - [anon_sym_DOLLARassert] = ACTIONS(1556), - [anon_sym_DOLLARerror] = ACTIONS(1556), - [anon_sym_DOLLARecho] = ACTIONS(1556), - [anon_sym_DOLLARif] = ACTIONS(1556), - [anon_sym_DOLLARswitch] = ACTIONS(1556), - [anon_sym_DOLLARfor] = ACTIONS(1556), - [anon_sym_DOLLARendfor] = ACTIONS(1556), - [anon_sym_DOLLARforeach] = ACTIONS(1556), - [anon_sym_DOLLARalignof] = ACTIONS(1556), - [anon_sym_DOLLARextnameof] = ACTIONS(1556), - [anon_sym_DOLLARnameof] = ACTIONS(1556), - [anon_sym_DOLLARoffsetof] = ACTIONS(1556), - [anon_sym_DOLLARqnameof] = ACTIONS(1556), - [anon_sym_DOLLARvaconst] = ACTIONS(1556), - [anon_sym_DOLLARvaarg] = ACTIONS(1556), - [anon_sym_DOLLARvaref] = ACTIONS(1556), - [anon_sym_DOLLARvaexpr] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [anon_sym_DOLLARvacount] = ACTIONS(1556), - [anon_sym_DOLLARappend] = ACTIONS(1556), - [anon_sym_DOLLARconcat] = ACTIONS(1556), - [anon_sym_DOLLAReval] = ACTIONS(1556), - [anon_sym_DOLLARis_const] = ACTIONS(1556), - [anon_sym_DOLLARsizeof] = ACTIONS(1556), - [anon_sym_DOLLARstringify] = ACTIONS(1556), - [anon_sym_DOLLARand] = ACTIONS(1556), - [anon_sym_DOLLARdefined] = ACTIONS(1556), - [anon_sym_DOLLARembed] = ACTIONS(1556), - [anon_sym_DOLLARor] = ACTIONS(1556), - [anon_sym_DOLLARfeature] = ACTIONS(1556), - [anon_sym_DOLLARassignable] = ACTIONS(1556), - [anon_sym_BANG] = ACTIONS(1558), - [anon_sym_TILDE] = ACTIONS(1558), - [anon_sym_PLUS_PLUS] = ACTIONS(1558), - [anon_sym_DASH_DASH] = ACTIONS(1558), - [anon_sym_typeid] = ACTIONS(1556), - [anon_sym_LBRACE_PIPE] = ACTIONS(1558), - [anon_sym_void] = ACTIONS(1556), - [anon_sym_bool] = ACTIONS(1556), - [anon_sym_char] = ACTIONS(1556), - [anon_sym_ichar] = ACTIONS(1556), - [anon_sym_short] = ACTIONS(1556), - [anon_sym_ushort] = ACTIONS(1556), - [anon_sym_uint] = ACTIONS(1556), - [anon_sym_long] = ACTIONS(1556), - [anon_sym_ulong] = ACTIONS(1556), - [anon_sym_int128] = ACTIONS(1556), - [anon_sym_uint128] = ACTIONS(1556), - [anon_sym_float] = ACTIONS(1556), - [anon_sym_double] = ACTIONS(1556), - [anon_sym_float16] = ACTIONS(1556), - [anon_sym_bfloat16] = ACTIONS(1556), - [anon_sym_float128] = ACTIONS(1556), - [anon_sym_iptr] = ACTIONS(1556), - [anon_sym_uptr] = ACTIONS(1556), - [anon_sym_isz] = ACTIONS(1556), - [anon_sym_usz] = ACTIONS(1556), - [anon_sym_anyfault] = ACTIONS(1556), - [anon_sym_any] = ACTIONS(1556), - [anon_sym_DOLLARtypeof] = ACTIONS(1556), - [anon_sym_DOLLARtypefrom] = ACTIONS(1556), - [anon_sym_DOLLARvatype] = ACTIONS(1556), - [anon_sym_DOLLARevaltype] = ACTIONS(1556), - [sym_real_literal] = ACTIONS(1558), + [sym_ident] = ACTIONS(1481), + [sym_integer_literal] = ACTIONS(1483), + [anon_sym_SQUOTE] = ACTIONS(1483), + [anon_sym_DQUOTE] = ACTIONS(1483), + [anon_sym_BQUOTE] = ACTIONS(1483), + [sym_bytes_literal] = ACTIONS(1483), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1481), + [sym_at_ident] = ACTIONS(1483), + [sym_hash_ident] = ACTIONS(1483), + [sym_type_ident] = ACTIONS(1483), + [sym_ct_type_ident] = ACTIONS(1483), + [sym_const_ident] = ACTIONS(1481), + [sym_builtin] = ACTIONS(1483), + [anon_sym_LPAREN] = ACTIONS(1483), + [anon_sym_AMP] = ACTIONS(1481), + [anon_sym_static] = ACTIONS(1481), + [anon_sym_tlocal] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1483), + [anon_sym_fn] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_const] = ACTIONS(1481), + [anon_sym_var] = ACTIONS(1481), + [anon_sym_return] = ACTIONS(1481), + [anon_sym_continue] = ACTIONS(1481), + [anon_sym_break] = ACTIONS(1481), + [anon_sym_defer] = ACTIONS(1481), + [anon_sym_assert] = ACTIONS(1481), + [anon_sym_nextcase] = ACTIONS(1481), + [anon_sym_switch] = ACTIONS(1481), + [anon_sym_AMP_AMP] = ACTIONS(1483), + [anon_sym_if] = ACTIONS(1481), + [anon_sym_for] = ACTIONS(1481), + [anon_sym_foreach] = ACTIONS(1481), + [anon_sym_foreach_r] = ACTIONS(1481), + [anon_sym_while] = ACTIONS(1481), + [anon_sym_do] = ACTIONS(1481), + [anon_sym_int] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_STAR] = ACTIONS(1483), + [anon_sym_asm] = ACTIONS(1481), + [anon_sym_DOLLARassert] = ACTIONS(1481), + [anon_sym_DOLLARerror] = ACTIONS(1481), + [anon_sym_DOLLARecho] = ACTIONS(1481), + [anon_sym_DOLLARif] = ACTIONS(1481), + [anon_sym_DOLLARswitch] = ACTIONS(1481), + [anon_sym_DOLLARfor] = ACTIONS(1481), + [anon_sym_DOLLARforeach] = ACTIONS(1481), + [anon_sym_DOLLARendforeach] = ACTIONS(1481), + [anon_sym_DOLLARalignof] = ACTIONS(1481), + [anon_sym_DOLLARextnameof] = ACTIONS(1481), + [anon_sym_DOLLARnameof] = ACTIONS(1481), + [anon_sym_DOLLARoffsetof] = ACTIONS(1481), + [anon_sym_DOLLARqnameof] = ACTIONS(1481), + [anon_sym_DOLLARvaconst] = ACTIONS(1481), + [anon_sym_DOLLARvaarg] = ACTIONS(1481), + [anon_sym_DOLLARvaref] = ACTIONS(1481), + [anon_sym_DOLLARvaexpr] = ACTIONS(1481), + [anon_sym_true] = ACTIONS(1481), + [anon_sym_false] = ACTIONS(1481), + [anon_sym_null] = ACTIONS(1481), + [anon_sym_DOLLARvacount] = ACTIONS(1481), + [anon_sym_DOLLARappend] = ACTIONS(1481), + [anon_sym_DOLLARconcat] = ACTIONS(1481), + [anon_sym_DOLLAReval] = ACTIONS(1481), + [anon_sym_DOLLARis_const] = ACTIONS(1481), + [anon_sym_DOLLARsizeof] = ACTIONS(1481), + [anon_sym_DOLLARstringify] = ACTIONS(1481), + [anon_sym_DOLLARand] = ACTIONS(1481), + [anon_sym_DOLLARdefined] = ACTIONS(1481), + [anon_sym_DOLLARembed] = ACTIONS(1481), + [anon_sym_DOLLARor] = ACTIONS(1481), + [anon_sym_DOLLARfeature] = ACTIONS(1481), + [anon_sym_DOLLARassignable] = ACTIONS(1481), + [anon_sym_BANG] = ACTIONS(1483), + [anon_sym_TILDE] = ACTIONS(1483), + [anon_sym_PLUS_PLUS] = ACTIONS(1483), + [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_typeid] = ACTIONS(1481), + [anon_sym_LBRACE_PIPE] = ACTIONS(1483), + [anon_sym_void] = ACTIONS(1481), + [anon_sym_bool] = ACTIONS(1481), + [anon_sym_char] = ACTIONS(1481), + [anon_sym_ichar] = ACTIONS(1481), + [anon_sym_short] = ACTIONS(1481), + [anon_sym_ushort] = ACTIONS(1481), + [anon_sym_uint] = ACTIONS(1481), + [anon_sym_long] = ACTIONS(1481), + [anon_sym_ulong] = ACTIONS(1481), + [anon_sym_int128] = ACTIONS(1481), + [anon_sym_uint128] = ACTIONS(1481), + [anon_sym_float] = ACTIONS(1481), + [anon_sym_double] = ACTIONS(1481), + [anon_sym_float16] = ACTIONS(1481), + [anon_sym_bfloat16] = ACTIONS(1481), + [anon_sym_float128] = ACTIONS(1481), + [anon_sym_iptr] = ACTIONS(1481), + [anon_sym_uptr] = ACTIONS(1481), + [anon_sym_isz] = ACTIONS(1481), + [anon_sym_usz] = ACTIONS(1481), + [anon_sym_anyfault] = ACTIONS(1481), + [anon_sym_any] = ACTIONS(1481), + [anon_sym_DOLLARtypeof] = ACTIONS(1481), + [anon_sym_DOLLARtypefrom] = ACTIONS(1481), + [anon_sym_DOLLARvatype] = ACTIONS(1481), + [anon_sym_DOLLARevaltype] = ACTIONS(1481), + [sym_real_literal] = ACTIONS(1483), }, [733] = { [sym_line_comment] = STATE(733), [sym_doc_comment] = STATE(733), [sym_block_comment] = STATE(733), - [sym_ident] = ACTIONS(1422), - [sym_integer_literal] = ACTIONS(1424), - [anon_sym_SQUOTE] = ACTIONS(1424), - [anon_sym_DQUOTE] = ACTIONS(1424), - [anon_sym_BQUOTE] = ACTIONS(1424), - [sym_bytes_literal] = ACTIONS(1424), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1422), - [sym_at_ident] = ACTIONS(1424), - [sym_hash_ident] = ACTIONS(1424), - [sym_type_ident] = ACTIONS(1424), - [sym_ct_type_ident] = ACTIONS(1424), - [sym_const_ident] = ACTIONS(1422), - [sym_builtin] = ACTIONS(1424), - [anon_sym_LPAREN] = ACTIONS(1424), - [anon_sym_AMP] = ACTIONS(1422), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_tlocal] = ACTIONS(1422), - [anon_sym_SEMI] = ACTIONS(1424), - [anon_sym_fn] = ACTIONS(1422), - [anon_sym_LBRACE] = ACTIONS(1422), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_var] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_continue] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_defer] = ACTIONS(1422), - [anon_sym_assert] = ACTIONS(1422), - [anon_sym_nextcase] = ACTIONS(1422), - [anon_sym_switch] = ACTIONS(1422), - [anon_sym_AMP_AMP] = ACTIONS(1424), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_foreach] = ACTIONS(1422), - [anon_sym_foreach_r] = ACTIONS(1422), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_do] = ACTIONS(1422), - [anon_sym_int] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_STAR] = ACTIONS(1424), - [anon_sym_asm] = ACTIONS(1422), - [anon_sym_DOLLARassert] = ACTIONS(1422), - [anon_sym_DOLLARerror] = ACTIONS(1422), - [anon_sym_DOLLARecho] = ACTIONS(1422), - [anon_sym_DOLLARif] = ACTIONS(1422), - [anon_sym_DOLLARswitch] = ACTIONS(1422), - [anon_sym_DOLLARfor] = ACTIONS(1422), - [anon_sym_DOLLARendfor] = ACTIONS(1422), - [anon_sym_DOLLARforeach] = ACTIONS(1422), - [anon_sym_DOLLARalignof] = ACTIONS(1422), - [anon_sym_DOLLARextnameof] = ACTIONS(1422), - [anon_sym_DOLLARnameof] = ACTIONS(1422), - [anon_sym_DOLLARoffsetof] = ACTIONS(1422), - [anon_sym_DOLLARqnameof] = ACTIONS(1422), - [anon_sym_DOLLARvaconst] = ACTIONS(1422), - [anon_sym_DOLLARvaarg] = ACTIONS(1422), - [anon_sym_DOLLARvaref] = ACTIONS(1422), - [anon_sym_DOLLARvaexpr] = ACTIONS(1422), - [anon_sym_true] = ACTIONS(1422), - [anon_sym_false] = ACTIONS(1422), - [anon_sym_null] = ACTIONS(1422), - [anon_sym_DOLLARvacount] = ACTIONS(1422), - [anon_sym_DOLLARappend] = ACTIONS(1422), - [anon_sym_DOLLARconcat] = ACTIONS(1422), - [anon_sym_DOLLAReval] = ACTIONS(1422), - [anon_sym_DOLLARis_const] = ACTIONS(1422), - [anon_sym_DOLLARsizeof] = ACTIONS(1422), - [anon_sym_DOLLARstringify] = ACTIONS(1422), - [anon_sym_DOLLARand] = ACTIONS(1422), - [anon_sym_DOLLARdefined] = ACTIONS(1422), - [anon_sym_DOLLARembed] = ACTIONS(1422), - [anon_sym_DOLLARor] = ACTIONS(1422), - [anon_sym_DOLLARfeature] = ACTIONS(1422), - [anon_sym_DOLLARassignable] = ACTIONS(1422), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_TILDE] = ACTIONS(1424), - [anon_sym_PLUS_PLUS] = ACTIONS(1424), - [anon_sym_DASH_DASH] = ACTIONS(1424), - [anon_sym_typeid] = ACTIONS(1422), - [anon_sym_LBRACE_PIPE] = ACTIONS(1424), - [anon_sym_void] = ACTIONS(1422), - [anon_sym_bool] = ACTIONS(1422), - [anon_sym_char] = ACTIONS(1422), - [anon_sym_ichar] = ACTIONS(1422), - [anon_sym_short] = ACTIONS(1422), - [anon_sym_ushort] = ACTIONS(1422), - [anon_sym_uint] = ACTIONS(1422), - [anon_sym_long] = ACTIONS(1422), - [anon_sym_ulong] = ACTIONS(1422), - [anon_sym_int128] = ACTIONS(1422), - [anon_sym_uint128] = ACTIONS(1422), - [anon_sym_float] = ACTIONS(1422), - [anon_sym_double] = ACTIONS(1422), - [anon_sym_float16] = ACTIONS(1422), - [anon_sym_bfloat16] = ACTIONS(1422), - [anon_sym_float128] = ACTIONS(1422), - [anon_sym_iptr] = ACTIONS(1422), - [anon_sym_uptr] = ACTIONS(1422), - [anon_sym_isz] = ACTIONS(1422), - [anon_sym_usz] = ACTIONS(1422), - [anon_sym_anyfault] = ACTIONS(1422), - [anon_sym_any] = ACTIONS(1422), - [anon_sym_DOLLARtypeof] = ACTIONS(1422), - [anon_sym_DOLLARtypefrom] = ACTIONS(1422), - [anon_sym_DOLLARvatype] = ACTIONS(1422), - [anon_sym_DOLLARevaltype] = ACTIONS(1422), - [sym_real_literal] = ACTIONS(1424), + [sym_ident] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1459), + [anon_sym_SQUOTE] = ACTIONS(1459), + [anon_sym_DQUOTE] = ACTIONS(1459), + [anon_sym_BQUOTE] = ACTIONS(1459), + [sym_bytes_literal] = ACTIONS(1459), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1457), + [sym_at_ident] = ACTIONS(1459), + [sym_hash_ident] = ACTIONS(1459), + [sym_type_ident] = ACTIONS(1459), + [sym_ct_type_ident] = ACTIONS(1459), + [sym_const_ident] = ACTIONS(1457), + [sym_builtin] = ACTIONS(1459), + [anon_sym_LPAREN] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_tlocal] = ACTIONS(1457), + [anon_sym_SEMI] = ACTIONS(1459), + [anon_sym_fn] = ACTIONS(1457), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_const] = ACTIONS(1457), + [anon_sym_var] = ACTIONS(1457), + [anon_sym_return] = ACTIONS(1457), + [anon_sym_continue] = ACTIONS(1457), + [anon_sym_break] = ACTIONS(1457), + [anon_sym_defer] = ACTIONS(1457), + [anon_sym_assert] = ACTIONS(1457), + [anon_sym_nextcase] = ACTIONS(1457), + [anon_sym_switch] = ACTIONS(1457), + [anon_sym_AMP_AMP] = ACTIONS(1459), + [anon_sym_if] = ACTIONS(1457), + [anon_sym_for] = ACTIONS(1457), + [anon_sym_foreach] = ACTIONS(1457), + [anon_sym_foreach_r] = ACTIONS(1457), + [anon_sym_while] = ACTIONS(1457), + [anon_sym_do] = ACTIONS(1457), + [anon_sym_int] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_asm] = ACTIONS(1457), + [anon_sym_DOLLARassert] = ACTIONS(1457), + [anon_sym_DOLLARerror] = ACTIONS(1457), + [anon_sym_DOLLARecho] = ACTIONS(1457), + [anon_sym_DOLLARif] = ACTIONS(1457), + [anon_sym_DOLLARswitch] = ACTIONS(1457), + [anon_sym_DOLLARfor] = ACTIONS(1457), + [anon_sym_DOLLARforeach] = ACTIONS(1457), + [anon_sym_DOLLARendforeach] = ACTIONS(1457), + [anon_sym_DOLLARalignof] = ACTIONS(1457), + [anon_sym_DOLLARextnameof] = ACTIONS(1457), + [anon_sym_DOLLARnameof] = ACTIONS(1457), + [anon_sym_DOLLARoffsetof] = ACTIONS(1457), + [anon_sym_DOLLARqnameof] = ACTIONS(1457), + [anon_sym_DOLLARvaconst] = ACTIONS(1457), + [anon_sym_DOLLARvaarg] = ACTIONS(1457), + [anon_sym_DOLLARvaref] = ACTIONS(1457), + [anon_sym_DOLLARvaexpr] = ACTIONS(1457), + [anon_sym_true] = ACTIONS(1457), + [anon_sym_false] = ACTIONS(1457), + [anon_sym_null] = ACTIONS(1457), + [anon_sym_DOLLARvacount] = ACTIONS(1457), + [anon_sym_DOLLARappend] = ACTIONS(1457), + [anon_sym_DOLLARconcat] = ACTIONS(1457), + [anon_sym_DOLLAReval] = ACTIONS(1457), + [anon_sym_DOLLARis_const] = ACTIONS(1457), + [anon_sym_DOLLARsizeof] = ACTIONS(1457), + [anon_sym_DOLLARstringify] = ACTIONS(1457), + [anon_sym_DOLLARand] = ACTIONS(1457), + [anon_sym_DOLLARdefined] = ACTIONS(1457), + [anon_sym_DOLLARembed] = ACTIONS(1457), + [anon_sym_DOLLARor] = ACTIONS(1457), + [anon_sym_DOLLARfeature] = ACTIONS(1457), + [anon_sym_DOLLARassignable] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_TILDE] = ACTIONS(1459), + [anon_sym_PLUS_PLUS] = ACTIONS(1459), + [anon_sym_DASH_DASH] = ACTIONS(1459), + [anon_sym_typeid] = ACTIONS(1457), + [anon_sym_LBRACE_PIPE] = ACTIONS(1459), + [anon_sym_void] = ACTIONS(1457), + [anon_sym_bool] = ACTIONS(1457), + [anon_sym_char] = ACTIONS(1457), + [anon_sym_ichar] = ACTIONS(1457), + [anon_sym_short] = ACTIONS(1457), + [anon_sym_ushort] = ACTIONS(1457), + [anon_sym_uint] = ACTIONS(1457), + [anon_sym_long] = ACTIONS(1457), + [anon_sym_ulong] = ACTIONS(1457), + [anon_sym_int128] = ACTIONS(1457), + [anon_sym_uint128] = ACTIONS(1457), + [anon_sym_float] = ACTIONS(1457), + [anon_sym_double] = ACTIONS(1457), + [anon_sym_float16] = ACTIONS(1457), + [anon_sym_bfloat16] = ACTIONS(1457), + [anon_sym_float128] = ACTIONS(1457), + [anon_sym_iptr] = ACTIONS(1457), + [anon_sym_uptr] = ACTIONS(1457), + [anon_sym_isz] = ACTIONS(1457), + [anon_sym_usz] = ACTIONS(1457), + [anon_sym_anyfault] = ACTIONS(1457), + [anon_sym_any] = ACTIONS(1457), + [anon_sym_DOLLARtypeof] = ACTIONS(1457), + [anon_sym_DOLLARtypefrom] = ACTIONS(1457), + [anon_sym_DOLLARvatype] = ACTIONS(1457), + [anon_sym_DOLLARevaltype] = ACTIONS(1457), + [sym_real_literal] = ACTIONS(1459), }, [734] = { [sym_line_comment] = STATE(734), [sym_doc_comment] = STATE(734), [sym_block_comment] = STATE(734), - [sym_ident] = ACTIONS(1624), - [sym_integer_literal] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1626), - [anon_sym_DQUOTE] = ACTIONS(1626), - [anon_sym_BQUOTE] = ACTIONS(1626), - [sym_bytes_literal] = ACTIONS(1626), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1624), - [sym_at_ident] = ACTIONS(1626), - [sym_hash_ident] = ACTIONS(1626), - [sym_type_ident] = ACTIONS(1626), - [sym_ct_type_ident] = ACTIONS(1626), - [sym_const_ident] = ACTIONS(1624), - [sym_builtin] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(1626), - [anon_sym_AMP] = ACTIONS(1624), - [anon_sym_static] = ACTIONS(1624), - [anon_sym_tlocal] = ACTIONS(1624), - [anon_sym_SEMI] = ACTIONS(1626), - [anon_sym_fn] = ACTIONS(1624), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_const] = ACTIONS(1624), - [anon_sym_var] = ACTIONS(1624), - [anon_sym_return] = ACTIONS(1624), - [anon_sym_continue] = ACTIONS(1624), - [anon_sym_break] = ACTIONS(1624), - [anon_sym_defer] = ACTIONS(1624), - [anon_sym_assert] = ACTIONS(1624), - [anon_sym_nextcase] = ACTIONS(1624), - [anon_sym_switch] = ACTIONS(1624), - [anon_sym_AMP_AMP] = ACTIONS(1626), - [anon_sym_if] = ACTIONS(1624), - [anon_sym_for] = ACTIONS(1624), - [anon_sym_foreach] = ACTIONS(1624), - [anon_sym_foreach_r] = ACTIONS(1624), - [anon_sym_while] = ACTIONS(1624), - [anon_sym_do] = ACTIONS(1624), - [anon_sym_int] = ACTIONS(1624), - [anon_sym_PLUS] = ACTIONS(1624), - [anon_sym_DASH] = ACTIONS(1624), - [anon_sym_STAR] = ACTIONS(1626), - [anon_sym_asm] = ACTIONS(1624), - [anon_sym_DOLLARassert] = ACTIONS(1624), - [anon_sym_DOLLARerror] = ACTIONS(1624), - [anon_sym_DOLLARecho] = ACTIONS(1624), - [anon_sym_DOLLARif] = ACTIONS(1624), - [anon_sym_DOLLARendif] = ACTIONS(1624), - [anon_sym_DOLLARswitch] = ACTIONS(1624), - [anon_sym_DOLLARfor] = ACTIONS(1624), - [anon_sym_DOLLARforeach] = ACTIONS(1624), - [anon_sym_DOLLARalignof] = ACTIONS(1624), - [anon_sym_DOLLARextnameof] = ACTIONS(1624), - [anon_sym_DOLLARnameof] = ACTIONS(1624), - [anon_sym_DOLLARoffsetof] = ACTIONS(1624), - [anon_sym_DOLLARqnameof] = ACTIONS(1624), - [anon_sym_DOLLARvaconst] = ACTIONS(1624), - [anon_sym_DOLLARvaarg] = ACTIONS(1624), - [anon_sym_DOLLARvaref] = ACTIONS(1624), - [anon_sym_DOLLARvaexpr] = ACTIONS(1624), - [anon_sym_true] = ACTIONS(1624), - [anon_sym_false] = ACTIONS(1624), - [anon_sym_null] = ACTIONS(1624), - [anon_sym_DOLLARvacount] = ACTIONS(1624), - [anon_sym_DOLLARappend] = ACTIONS(1624), - [anon_sym_DOLLARconcat] = ACTIONS(1624), - [anon_sym_DOLLAReval] = ACTIONS(1624), - [anon_sym_DOLLARis_const] = ACTIONS(1624), - [anon_sym_DOLLARsizeof] = ACTIONS(1624), - [anon_sym_DOLLARstringify] = ACTIONS(1624), - [anon_sym_DOLLARand] = ACTIONS(1624), - [anon_sym_DOLLARdefined] = ACTIONS(1624), - [anon_sym_DOLLARembed] = ACTIONS(1624), - [anon_sym_DOLLARor] = ACTIONS(1624), - [anon_sym_DOLLARfeature] = ACTIONS(1624), - [anon_sym_DOLLARassignable] = ACTIONS(1624), - [anon_sym_BANG] = ACTIONS(1626), - [anon_sym_TILDE] = ACTIONS(1626), - [anon_sym_PLUS_PLUS] = ACTIONS(1626), - [anon_sym_DASH_DASH] = ACTIONS(1626), - [anon_sym_typeid] = ACTIONS(1624), - [anon_sym_LBRACE_PIPE] = ACTIONS(1626), - [anon_sym_void] = ACTIONS(1624), - [anon_sym_bool] = ACTIONS(1624), - [anon_sym_char] = ACTIONS(1624), - [anon_sym_ichar] = ACTIONS(1624), - [anon_sym_short] = ACTIONS(1624), - [anon_sym_ushort] = ACTIONS(1624), - [anon_sym_uint] = ACTIONS(1624), - [anon_sym_long] = ACTIONS(1624), - [anon_sym_ulong] = ACTIONS(1624), - [anon_sym_int128] = ACTIONS(1624), - [anon_sym_uint128] = ACTIONS(1624), - [anon_sym_float] = ACTIONS(1624), - [anon_sym_double] = ACTIONS(1624), - [anon_sym_float16] = ACTIONS(1624), - [anon_sym_bfloat16] = ACTIONS(1624), - [anon_sym_float128] = ACTIONS(1624), - [anon_sym_iptr] = ACTIONS(1624), - [anon_sym_uptr] = ACTIONS(1624), - [anon_sym_isz] = ACTIONS(1624), - [anon_sym_usz] = ACTIONS(1624), - [anon_sym_anyfault] = ACTIONS(1624), - [anon_sym_any] = ACTIONS(1624), - [anon_sym_DOLLARtypeof] = ACTIONS(1624), - [anon_sym_DOLLARtypefrom] = ACTIONS(1624), - [anon_sym_DOLLARvatype] = ACTIONS(1624), - [anon_sym_DOLLARevaltype] = ACTIONS(1624), - [sym_real_literal] = ACTIONS(1626), + [sym_ident] = ACTIONS(1453), + [sym_integer_literal] = ACTIONS(1455), + [anon_sym_SQUOTE] = ACTIONS(1455), + [anon_sym_DQUOTE] = ACTIONS(1455), + [anon_sym_BQUOTE] = ACTIONS(1455), + [sym_bytes_literal] = ACTIONS(1455), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1453), + [sym_at_ident] = ACTIONS(1455), + [sym_hash_ident] = ACTIONS(1455), + [sym_type_ident] = ACTIONS(1455), + [sym_ct_type_ident] = ACTIONS(1455), + [sym_const_ident] = ACTIONS(1453), + [sym_builtin] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_AMP] = ACTIONS(1453), + [anon_sym_static] = ACTIONS(1453), + [anon_sym_tlocal] = ACTIONS(1453), + [anon_sym_SEMI] = ACTIONS(1455), + [anon_sym_fn] = ACTIONS(1453), + [anon_sym_LBRACE] = ACTIONS(1453), + [anon_sym_const] = ACTIONS(1453), + [anon_sym_var] = ACTIONS(1453), + [anon_sym_return] = ACTIONS(1453), + [anon_sym_continue] = ACTIONS(1453), + [anon_sym_break] = ACTIONS(1453), + [anon_sym_defer] = ACTIONS(1453), + [anon_sym_assert] = ACTIONS(1453), + [anon_sym_nextcase] = ACTIONS(1453), + [anon_sym_switch] = ACTIONS(1453), + [anon_sym_AMP_AMP] = ACTIONS(1455), + [anon_sym_if] = ACTIONS(1453), + [anon_sym_for] = ACTIONS(1453), + [anon_sym_foreach] = ACTIONS(1453), + [anon_sym_foreach_r] = ACTIONS(1453), + [anon_sym_while] = ACTIONS(1453), + [anon_sym_do] = ACTIONS(1453), + [anon_sym_int] = ACTIONS(1453), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_STAR] = ACTIONS(1455), + [anon_sym_asm] = ACTIONS(1453), + [anon_sym_DOLLARassert] = ACTIONS(1453), + [anon_sym_DOLLARerror] = ACTIONS(1453), + [anon_sym_DOLLARecho] = ACTIONS(1453), + [anon_sym_DOLLARif] = ACTIONS(1453), + [anon_sym_DOLLARswitch] = ACTIONS(1453), + [anon_sym_DOLLARfor] = ACTIONS(1453), + [anon_sym_DOLLARforeach] = ACTIONS(1453), + [anon_sym_DOLLARendforeach] = ACTIONS(1453), + [anon_sym_DOLLARalignof] = ACTIONS(1453), + [anon_sym_DOLLARextnameof] = ACTIONS(1453), + [anon_sym_DOLLARnameof] = ACTIONS(1453), + [anon_sym_DOLLARoffsetof] = ACTIONS(1453), + [anon_sym_DOLLARqnameof] = ACTIONS(1453), + [anon_sym_DOLLARvaconst] = ACTIONS(1453), + [anon_sym_DOLLARvaarg] = ACTIONS(1453), + [anon_sym_DOLLARvaref] = ACTIONS(1453), + [anon_sym_DOLLARvaexpr] = ACTIONS(1453), + [anon_sym_true] = ACTIONS(1453), + [anon_sym_false] = ACTIONS(1453), + [anon_sym_null] = ACTIONS(1453), + [anon_sym_DOLLARvacount] = ACTIONS(1453), + [anon_sym_DOLLARappend] = ACTIONS(1453), + [anon_sym_DOLLARconcat] = ACTIONS(1453), + [anon_sym_DOLLAReval] = ACTIONS(1453), + [anon_sym_DOLLARis_const] = ACTIONS(1453), + [anon_sym_DOLLARsizeof] = ACTIONS(1453), + [anon_sym_DOLLARstringify] = ACTIONS(1453), + [anon_sym_DOLLARand] = ACTIONS(1453), + [anon_sym_DOLLARdefined] = ACTIONS(1453), + [anon_sym_DOLLARembed] = ACTIONS(1453), + [anon_sym_DOLLARor] = ACTIONS(1453), + [anon_sym_DOLLARfeature] = ACTIONS(1453), + [anon_sym_DOLLARassignable] = ACTIONS(1453), + [anon_sym_BANG] = ACTIONS(1455), + [anon_sym_TILDE] = ACTIONS(1455), + [anon_sym_PLUS_PLUS] = ACTIONS(1455), + [anon_sym_DASH_DASH] = ACTIONS(1455), + [anon_sym_typeid] = ACTIONS(1453), + [anon_sym_LBRACE_PIPE] = ACTIONS(1455), + [anon_sym_void] = ACTIONS(1453), + [anon_sym_bool] = ACTIONS(1453), + [anon_sym_char] = ACTIONS(1453), + [anon_sym_ichar] = ACTIONS(1453), + [anon_sym_short] = ACTIONS(1453), + [anon_sym_ushort] = ACTIONS(1453), + [anon_sym_uint] = ACTIONS(1453), + [anon_sym_long] = ACTIONS(1453), + [anon_sym_ulong] = ACTIONS(1453), + [anon_sym_int128] = ACTIONS(1453), + [anon_sym_uint128] = ACTIONS(1453), + [anon_sym_float] = ACTIONS(1453), + [anon_sym_double] = ACTIONS(1453), + [anon_sym_float16] = ACTIONS(1453), + [anon_sym_bfloat16] = ACTIONS(1453), + [anon_sym_float128] = ACTIONS(1453), + [anon_sym_iptr] = ACTIONS(1453), + [anon_sym_uptr] = ACTIONS(1453), + [anon_sym_isz] = ACTIONS(1453), + [anon_sym_usz] = ACTIONS(1453), + [anon_sym_anyfault] = ACTIONS(1453), + [anon_sym_any] = ACTIONS(1453), + [anon_sym_DOLLARtypeof] = ACTIONS(1453), + [anon_sym_DOLLARtypefrom] = ACTIONS(1453), + [anon_sym_DOLLARvatype] = ACTIONS(1453), + [anon_sym_DOLLARevaltype] = ACTIONS(1453), + [sym_real_literal] = ACTIONS(1455), }, [735] = { [sym_line_comment] = STATE(735), [sym_doc_comment] = STATE(735), [sym_block_comment] = STATE(735), - [sym_ident] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(1634), - [anon_sym_DQUOTE] = ACTIONS(1634), - [anon_sym_BQUOTE] = ACTIONS(1634), - [sym_bytes_literal] = ACTIONS(1634), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1632), - [sym_at_ident] = ACTIONS(1634), - [sym_hash_ident] = ACTIONS(1634), - [sym_type_ident] = ACTIONS(1634), - [sym_ct_type_ident] = ACTIONS(1634), - [sym_const_ident] = ACTIONS(1632), - [sym_builtin] = ACTIONS(1634), - [anon_sym_LPAREN] = ACTIONS(1634), - [anon_sym_AMP] = ACTIONS(1632), - [anon_sym_static] = ACTIONS(1632), - [anon_sym_tlocal] = ACTIONS(1632), - [anon_sym_SEMI] = ACTIONS(1634), - [anon_sym_fn] = ACTIONS(1632), - [anon_sym_LBRACE] = ACTIONS(1632), - [anon_sym_const] = ACTIONS(1632), - [anon_sym_var] = ACTIONS(1632), - [anon_sym_return] = ACTIONS(1632), - [anon_sym_continue] = ACTIONS(1632), - [anon_sym_break] = ACTIONS(1632), - [anon_sym_defer] = ACTIONS(1632), - [anon_sym_assert] = ACTIONS(1632), - [anon_sym_nextcase] = ACTIONS(1632), - [anon_sym_switch] = ACTIONS(1632), - [anon_sym_AMP_AMP] = ACTIONS(1634), - [anon_sym_if] = ACTIONS(1632), - [anon_sym_for] = ACTIONS(1632), - [anon_sym_foreach] = ACTIONS(1632), - [anon_sym_foreach_r] = ACTIONS(1632), - [anon_sym_while] = ACTIONS(1632), - [anon_sym_do] = ACTIONS(1632), - [anon_sym_int] = ACTIONS(1632), - [anon_sym_PLUS] = ACTIONS(1632), - [anon_sym_DASH] = ACTIONS(1632), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_asm] = ACTIONS(1632), - [anon_sym_DOLLARassert] = ACTIONS(1632), - [anon_sym_DOLLARerror] = ACTIONS(1632), - [anon_sym_DOLLARecho] = ACTIONS(1632), - [anon_sym_DOLLARif] = ACTIONS(1632), - [anon_sym_DOLLARendif] = ACTIONS(1632), - [anon_sym_DOLLARswitch] = ACTIONS(1632), - [anon_sym_DOLLARfor] = ACTIONS(1632), - [anon_sym_DOLLARforeach] = ACTIONS(1632), - [anon_sym_DOLLARalignof] = ACTIONS(1632), - [anon_sym_DOLLARextnameof] = ACTIONS(1632), - [anon_sym_DOLLARnameof] = ACTIONS(1632), - [anon_sym_DOLLARoffsetof] = ACTIONS(1632), - [anon_sym_DOLLARqnameof] = ACTIONS(1632), - [anon_sym_DOLLARvaconst] = ACTIONS(1632), - [anon_sym_DOLLARvaarg] = ACTIONS(1632), - [anon_sym_DOLLARvaref] = ACTIONS(1632), - [anon_sym_DOLLARvaexpr] = ACTIONS(1632), - [anon_sym_true] = ACTIONS(1632), - [anon_sym_false] = ACTIONS(1632), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_DOLLARvacount] = ACTIONS(1632), - [anon_sym_DOLLARappend] = ACTIONS(1632), - [anon_sym_DOLLARconcat] = ACTIONS(1632), - [anon_sym_DOLLAReval] = ACTIONS(1632), - [anon_sym_DOLLARis_const] = ACTIONS(1632), - [anon_sym_DOLLARsizeof] = ACTIONS(1632), - [anon_sym_DOLLARstringify] = ACTIONS(1632), - [anon_sym_DOLLARand] = ACTIONS(1632), - [anon_sym_DOLLARdefined] = ACTIONS(1632), - [anon_sym_DOLLARembed] = ACTIONS(1632), - [anon_sym_DOLLARor] = ACTIONS(1632), - [anon_sym_DOLLARfeature] = ACTIONS(1632), - [anon_sym_DOLLARassignable] = ACTIONS(1632), - [anon_sym_BANG] = ACTIONS(1634), - [anon_sym_TILDE] = ACTIONS(1634), - [anon_sym_PLUS_PLUS] = ACTIONS(1634), - [anon_sym_DASH_DASH] = ACTIONS(1634), - [anon_sym_typeid] = ACTIONS(1632), - [anon_sym_LBRACE_PIPE] = ACTIONS(1634), - [anon_sym_void] = ACTIONS(1632), - [anon_sym_bool] = ACTIONS(1632), - [anon_sym_char] = ACTIONS(1632), - [anon_sym_ichar] = ACTIONS(1632), - [anon_sym_short] = ACTIONS(1632), - [anon_sym_ushort] = ACTIONS(1632), - [anon_sym_uint] = ACTIONS(1632), - [anon_sym_long] = ACTIONS(1632), - [anon_sym_ulong] = ACTIONS(1632), - [anon_sym_int128] = ACTIONS(1632), - [anon_sym_uint128] = ACTIONS(1632), - [anon_sym_float] = ACTIONS(1632), - [anon_sym_double] = ACTIONS(1632), - [anon_sym_float16] = ACTIONS(1632), - [anon_sym_bfloat16] = ACTIONS(1632), - [anon_sym_float128] = ACTIONS(1632), - [anon_sym_iptr] = ACTIONS(1632), - [anon_sym_uptr] = ACTIONS(1632), - [anon_sym_isz] = ACTIONS(1632), - [anon_sym_usz] = ACTIONS(1632), - [anon_sym_anyfault] = ACTIONS(1632), - [anon_sym_any] = ACTIONS(1632), - [anon_sym_DOLLARtypeof] = ACTIONS(1632), - [anon_sym_DOLLARtypefrom] = ACTIONS(1632), - [anon_sym_DOLLARvatype] = ACTIONS(1632), - [anon_sym_DOLLARevaltype] = ACTIONS(1632), - [sym_real_literal] = ACTIONS(1634), + [sym_ident] = ACTIONS(1545), + [sym_integer_literal] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1547), + [anon_sym_DQUOTE] = ACTIONS(1547), + [anon_sym_BQUOTE] = ACTIONS(1547), + [sym_bytes_literal] = ACTIONS(1547), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1545), + [sym_at_ident] = ACTIONS(1547), + [sym_hash_ident] = ACTIONS(1547), + [sym_type_ident] = ACTIONS(1547), + [sym_ct_type_ident] = ACTIONS(1547), + [sym_const_ident] = ACTIONS(1545), + [sym_builtin] = ACTIONS(1547), + [anon_sym_LPAREN] = ACTIONS(1547), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_static] = ACTIONS(1545), + [anon_sym_tlocal] = ACTIONS(1545), + [anon_sym_SEMI] = ACTIONS(1547), + [anon_sym_fn] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(1545), + [anon_sym_const] = ACTIONS(1545), + [anon_sym_var] = ACTIONS(1545), + [anon_sym_return] = ACTIONS(1545), + [anon_sym_continue] = ACTIONS(1545), + [anon_sym_break] = ACTIONS(1545), + [anon_sym_defer] = ACTIONS(1545), + [anon_sym_assert] = ACTIONS(1545), + [anon_sym_nextcase] = ACTIONS(1545), + [anon_sym_switch] = ACTIONS(1545), + [anon_sym_AMP_AMP] = ACTIONS(1547), + [anon_sym_if] = ACTIONS(1545), + [anon_sym_for] = ACTIONS(1545), + [anon_sym_foreach] = ACTIONS(1545), + [anon_sym_foreach_r] = ACTIONS(1545), + [anon_sym_while] = ACTIONS(1545), + [anon_sym_do] = ACTIONS(1545), + [anon_sym_int] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_STAR] = ACTIONS(1547), + [anon_sym_asm] = ACTIONS(1545), + [anon_sym_DOLLARassert] = ACTIONS(1545), + [anon_sym_DOLLARerror] = ACTIONS(1545), + [anon_sym_DOLLARecho] = ACTIONS(1545), + [anon_sym_DOLLARif] = ACTIONS(1545), + [anon_sym_DOLLARendif] = ACTIONS(1545), + [anon_sym_DOLLARswitch] = ACTIONS(1545), + [anon_sym_DOLLARfor] = ACTIONS(1545), + [anon_sym_DOLLARforeach] = ACTIONS(1545), + [anon_sym_DOLLARalignof] = ACTIONS(1545), + [anon_sym_DOLLARextnameof] = ACTIONS(1545), + [anon_sym_DOLLARnameof] = ACTIONS(1545), + [anon_sym_DOLLARoffsetof] = ACTIONS(1545), + [anon_sym_DOLLARqnameof] = ACTIONS(1545), + [anon_sym_DOLLARvaconst] = ACTIONS(1545), + [anon_sym_DOLLARvaarg] = ACTIONS(1545), + [anon_sym_DOLLARvaref] = ACTIONS(1545), + [anon_sym_DOLLARvaexpr] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(1545), + [anon_sym_false] = ACTIONS(1545), + [anon_sym_null] = ACTIONS(1545), + [anon_sym_DOLLARvacount] = ACTIONS(1545), + [anon_sym_DOLLARappend] = ACTIONS(1545), + [anon_sym_DOLLARconcat] = ACTIONS(1545), + [anon_sym_DOLLAReval] = ACTIONS(1545), + [anon_sym_DOLLARis_const] = ACTIONS(1545), + [anon_sym_DOLLARsizeof] = ACTIONS(1545), + [anon_sym_DOLLARstringify] = ACTIONS(1545), + [anon_sym_DOLLARand] = ACTIONS(1545), + [anon_sym_DOLLARdefined] = ACTIONS(1545), + [anon_sym_DOLLARembed] = ACTIONS(1545), + [anon_sym_DOLLARor] = ACTIONS(1545), + [anon_sym_DOLLARfeature] = ACTIONS(1545), + [anon_sym_DOLLARassignable] = ACTIONS(1545), + [anon_sym_BANG] = ACTIONS(1547), + [anon_sym_TILDE] = ACTIONS(1547), + [anon_sym_PLUS_PLUS] = ACTIONS(1547), + [anon_sym_DASH_DASH] = ACTIONS(1547), + [anon_sym_typeid] = ACTIONS(1545), + [anon_sym_LBRACE_PIPE] = ACTIONS(1547), + [anon_sym_void] = ACTIONS(1545), + [anon_sym_bool] = ACTIONS(1545), + [anon_sym_char] = ACTIONS(1545), + [anon_sym_ichar] = ACTIONS(1545), + [anon_sym_short] = ACTIONS(1545), + [anon_sym_ushort] = ACTIONS(1545), + [anon_sym_uint] = ACTIONS(1545), + [anon_sym_long] = ACTIONS(1545), + [anon_sym_ulong] = ACTIONS(1545), + [anon_sym_int128] = ACTIONS(1545), + [anon_sym_uint128] = ACTIONS(1545), + [anon_sym_float] = ACTIONS(1545), + [anon_sym_double] = ACTIONS(1545), + [anon_sym_float16] = ACTIONS(1545), + [anon_sym_bfloat16] = ACTIONS(1545), + [anon_sym_float128] = ACTIONS(1545), + [anon_sym_iptr] = ACTIONS(1545), + [anon_sym_uptr] = ACTIONS(1545), + [anon_sym_isz] = ACTIONS(1545), + [anon_sym_usz] = ACTIONS(1545), + [anon_sym_anyfault] = ACTIONS(1545), + [anon_sym_any] = ACTIONS(1545), + [anon_sym_DOLLARtypeof] = ACTIONS(1545), + [anon_sym_DOLLARtypefrom] = ACTIONS(1545), + [anon_sym_DOLLARvatype] = ACTIONS(1545), + [anon_sym_DOLLARevaltype] = ACTIONS(1545), + [sym_real_literal] = ACTIONS(1547), }, [736] = { [sym_line_comment] = STATE(736), [sym_doc_comment] = STATE(736), [sym_block_comment] = STATE(736), - [sym_ident] = ACTIONS(1640), - [sym_integer_literal] = ACTIONS(1642), - [anon_sym_SQUOTE] = ACTIONS(1642), - [anon_sym_DQUOTE] = ACTIONS(1642), - [anon_sym_BQUOTE] = ACTIONS(1642), - [sym_bytes_literal] = ACTIONS(1642), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1640), - [sym_at_ident] = ACTIONS(1642), - [sym_hash_ident] = ACTIONS(1642), - [sym_type_ident] = ACTIONS(1642), - [sym_ct_type_ident] = ACTIONS(1642), - [sym_const_ident] = ACTIONS(1640), - [sym_builtin] = ACTIONS(1642), - [anon_sym_LPAREN] = ACTIONS(1642), - [anon_sym_AMP] = ACTIONS(1640), - [anon_sym_static] = ACTIONS(1640), - [anon_sym_tlocal] = ACTIONS(1640), - [anon_sym_SEMI] = ACTIONS(1642), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_LBRACE] = ACTIONS(1640), - [anon_sym_const] = ACTIONS(1640), - [anon_sym_var] = ACTIONS(1640), - [anon_sym_return] = ACTIONS(1640), - [anon_sym_continue] = ACTIONS(1640), - [anon_sym_break] = ACTIONS(1640), - [anon_sym_defer] = ACTIONS(1640), - [anon_sym_assert] = ACTIONS(1640), - [anon_sym_nextcase] = ACTIONS(1640), - [anon_sym_switch] = ACTIONS(1640), - [anon_sym_AMP_AMP] = ACTIONS(1642), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1640), - [anon_sym_foreach] = ACTIONS(1640), - [anon_sym_foreach_r] = ACTIONS(1640), - [anon_sym_while] = ACTIONS(1640), - [anon_sym_do] = ACTIONS(1640), - [anon_sym_int] = ACTIONS(1640), - [anon_sym_PLUS] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1640), - [anon_sym_STAR] = ACTIONS(1642), - [anon_sym_asm] = ACTIONS(1640), - [anon_sym_DOLLARassert] = ACTIONS(1640), - [anon_sym_DOLLARerror] = ACTIONS(1640), - [anon_sym_DOLLARecho] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1640), - [anon_sym_DOLLARendif] = ACTIONS(1640), - [anon_sym_DOLLARswitch] = ACTIONS(1640), - [anon_sym_DOLLARfor] = ACTIONS(1640), - [anon_sym_DOLLARforeach] = ACTIONS(1640), - [anon_sym_DOLLARalignof] = ACTIONS(1640), - [anon_sym_DOLLARextnameof] = ACTIONS(1640), - [anon_sym_DOLLARnameof] = ACTIONS(1640), - [anon_sym_DOLLARoffsetof] = ACTIONS(1640), - [anon_sym_DOLLARqnameof] = ACTIONS(1640), - [anon_sym_DOLLARvaconst] = ACTIONS(1640), - [anon_sym_DOLLARvaarg] = ACTIONS(1640), - [anon_sym_DOLLARvaref] = ACTIONS(1640), - [anon_sym_DOLLARvaexpr] = ACTIONS(1640), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_null] = ACTIONS(1640), - [anon_sym_DOLLARvacount] = ACTIONS(1640), - [anon_sym_DOLLARappend] = ACTIONS(1640), - [anon_sym_DOLLARconcat] = ACTIONS(1640), - [anon_sym_DOLLAReval] = ACTIONS(1640), - [anon_sym_DOLLARis_const] = ACTIONS(1640), - [anon_sym_DOLLARsizeof] = ACTIONS(1640), - [anon_sym_DOLLARstringify] = ACTIONS(1640), - [anon_sym_DOLLARand] = ACTIONS(1640), - [anon_sym_DOLLARdefined] = ACTIONS(1640), - [anon_sym_DOLLARembed] = ACTIONS(1640), - [anon_sym_DOLLARor] = ACTIONS(1640), - [anon_sym_DOLLARfeature] = ACTIONS(1640), - [anon_sym_DOLLARassignable] = ACTIONS(1640), - [anon_sym_BANG] = ACTIONS(1642), - [anon_sym_TILDE] = ACTIONS(1642), - [anon_sym_PLUS_PLUS] = ACTIONS(1642), - [anon_sym_DASH_DASH] = ACTIONS(1642), - [anon_sym_typeid] = ACTIONS(1640), - [anon_sym_LBRACE_PIPE] = ACTIONS(1642), - [anon_sym_void] = ACTIONS(1640), - [anon_sym_bool] = ACTIONS(1640), - [anon_sym_char] = ACTIONS(1640), - [anon_sym_ichar] = ACTIONS(1640), - [anon_sym_short] = ACTIONS(1640), - [anon_sym_ushort] = ACTIONS(1640), - [anon_sym_uint] = ACTIONS(1640), - [anon_sym_long] = ACTIONS(1640), - [anon_sym_ulong] = ACTIONS(1640), - [anon_sym_int128] = ACTIONS(1640), - [anon_sym_uint128] = ACTIONS(1640), - [anon_sym_float] = ACTIONS(1640), - [anon_sym_double] = ACTIONS(1640), - [anon_sym_float16] = ACTIONS(1640), - [anon_sym_bfloat16] = ACTIONS(1640), - [anon_sym_float128] = ACTIONS(1640), - [anon_sym_iptr] = ACTIONS(1640), - [anon_sym_uptr] = ACTIONS(1640), - [anon_sym_isz] = ACTIONS(1640), - [anon_sym_usz] = ACTIONS(1640), - [anon_sym_anyfault] = ACTIONS(1640), - [anon_sym_any] = ACTIONS(1640), - [anon_sym_DOLLARtypeof] = ACTIONS(1640), - [anon_sym_DOLLARtypefrom] = ACTIONS(1640), - [anon_sym_DOLLARvatype] = ACTIONS(1640), - [anon_sym_DOLLARevaltype] = ACTIONS(1640), - [sym_real_literal] = ACTIONS(1642), + [sym_ident] = ACTIONS(1621), + [sym_integer_literal] = ACTIONS(1623), + [anon_sym_SQUOTE] = ACTIONS(1623), + [anon_sym_DQUOTE] = ACTIONS(1623), + [anon_sym_BQUOTE] = ACTIONS(1623), + [sym_bytes_literal] = ACTIONS(1623), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1621), + [sym_at_ident] = ACTIONS(1623), + [sym_hash_ident] = ACTIONS(1623), + [sym_type_ident] = ACTIONS(1623), + [sym_ct_type_ident] = ACTIONS(1623), + [sym_const_ident] = ACTIONS(1621), + [sym_builtin] = ACTIONS(1623), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_AMP] = ACTIONS(1621), + [anon_sym_static] = ACTIONS(1621), + [anon_sym_tlocal] = ACTIONS(1621), + [anon_sym_SEMI] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_LBRACE] = ACTIONS(1621), + [anon_sym_const] = ACTIONS(1621), + [anon_sym_var] = ACTIONS(1621), + [anon_sym_return] = ACTIONS(1621), + [anon_sym_continue] = ACTIONS(1621), + [anon_sym_break] = ACTIONS(1621), + [anon_sym_defer] = ACTIONS(1621), + [anon_sym_assert] = ACTIONS(1621), + [anon_sym_nextcase] = ACTIONS(1621), + [anon_sym_switch] = ACTIONS(1621), + [anon_sym_AMP_AMP] = ACTIONS(1623), + [anon_sym_if] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1621), + [anon_sym_foreach] = ACTIONS(1621), + [anon_sym_foreach_r] = ACTIONS(1621), + [anon_sym_while] = ACTIONS(1621), + [anon_sym_do] = ACTIONS(1621), + [anon_sym_int] = ACTIONS(1621), + [anon_sym_PLUS] = ACTIONS(1621), + [anon_sym_DASH] = ACTIONS(1621), + [anon_sym_STAR] = ACTIONS(1623), + [anon_sym_asm] = ACTIONS(1621), + [anon_sym_DOLLARassert] = ACTIONS(1621), + [anon_sym_DOLLARerror] = ACTIONS(1621), + [anon_sym_DOLLARecho] = ACTIONS(1621), + [anon_sym_DOLLARif] = ACTIONS(1621), + [anon_sym_DOLLARendif] = ACTIONS(1621), + [anon_sym_DOLLARswitch] = ACTIONS(1621), + [anon_sym_DOLLARfor] = ACTIONS(1621), + [anon_sym_DOLLARforeach] = ACTIONS(1621), + [anon_sym_DOLLARalignof] = ACTIONS(1621), + [anon_sym_DOLLARextnameof] = ACTIONS(1621), + [anon_sym_DOLLARnameof] = ACTIONS(1621), + [anon_sym_DOLLARoffsetof] = ACTIONS(1621), + [anon_sym_DOLLARqnameof] = ACTIONS(1621), + [anon_sym_DOLLARvaconst] = ACTIONS(1621), + [anon_sym_DOLLARvaarg] = ACTIONS(1621), + [anon_sym_DOLLARvaref] = ACTIONS(1621), + [anon_sym_DOLLARvaexpr] = ACTIONS(1621), + [anon_sym_true] = ACTIONS(1621), + [anon_sym_false] = ACTIONS(1621), + [anon_sym_null] = ACTIONS(1621), + [anon_sym_DOLLARvacount] = ACTIONS(1621), + [anon_sym_DOLLARappend] = ACTIONS(1621), + [anon_sym_DOLLARconcat] = ACTIONS(1621), + [anon_sym_DOLLAReval] = ACTIONS(1621), + [anon_sym_DOLLARis_const] = ACTIONS(1621), + [anon_sym_DOLLARsizeof] = ACTIONS(1621), + [anon_sym_DOLLARstringify] = ACTIONS(1621), + [anon_sym_DOLLARand] = ACTIONS(1621), + [anon_sym_DOLLARdefined] = ACTIONS(1621), + [anon_sym_DOLLARembed] = ACTIONS(1621), + [anon_sym_DOLLARor] = ACTIONS(1621), + [anon_sym_DOLLARfeature] = ACTIONS(1621), + [anon_sym_DOLLARassignable] = ACTIONS(1621), + [anon_sym_BANG] = ACTIONS(1623), + [anon_sym_TILDE] = ACTIONS(1623), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_typeid] = ACTIONS(1621), + [anon_sym_LBRACE_PIPE] = ACTIONS(1623), + [anon_sym_void] = ACTIONS(1621), + [anon_sym_bool] = ACTIONS(1621), + [anon_sym_char] = ACTIONS(1621), + [anon_sym_ichar] = ACTIONS(1621), + [anon_sym_short] = ACTIONS(1621), + [anon_sym_ushort] = ACTIONS(1621), + [anon_sym_uint] = ACTIONS(1621), + [anon_sym_long] = ACTIONS(1621), + [anon_sym_ulong] = ACTIONS(1621), + [anon_sym_int128] = ACTIONS(1621), + [anon_sym_uint128] = ACTIONS(1621), + [anon_sym_float] = ACTIONS(1621), + [anon_sym_double] = ACTIONS(1621), + [anon_sym_float16] = ACTIONS(1621), + [anon_sym_bfloat16] = ACTIONS(1621), + [anon_sym_float128] = ACTIONS(1621), + [anon_sym_iptr] = ACTIONS(1621), + [anon_sym_uptr] = ACTIONS(1621), + [anon_sym_isz] = ACTIONS(1621), + [anon_sym_usz] = ACTIONS(1621), + [anon_sym_anyfault] = ACTIONS(1621), + [anon_sym_any] = ACTIONS(1621), + [anon_sym_DOLLARtypeof] = ACTIONS(1621), + [anon_sym_DOLLARtypefrom] = ACTIONS(1621), + [anon_sym_DOLLARvatype] = ACTIONS(1621), + [anon_sym_DOLLARevaltype] = ACTIONS(1621), + [sym_real_literal] = ACTIONS(1623), }, [737] = { [sym_line_comment] = STATE(737), [sym_doc_comment] = STATE(737), [sym_block_comment] = STATE(737), - [sym_ident] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(1658), - [anon_sym_SQUOTE] = ACTIONS(1658), - [anon_sym_DQUOTE] = ACTIONS(1658), - [anon_sym_BQUOTE] = ACTIONS(1658), - [sym_bytes_literal] = ACTIONS(1658), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1656), - [sym_at_ident] = ACTIONS(1658), - [sym_hash_ident] = ACTIONS(1658), - [sym_type_ident] = ACTIONS(1658), - [sym_ct_type_ident] = ACTIONS(1658), - [sym_const_ident] = ACTIONS(1656), - [sym_builtin] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_static] = ACTIONS(1656), - [anon_sym_tlocal] = ACTIONS(1656), - [anon_sym_SEMI] = ACTIONS(1658), - [anon_sym_fn] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_const] = ACTIONS(1656), - [anon_sym_var] = ACTIONS(1656), - [anon_sym_return] = ACTIONS(1656), - [anon_sym_continue] = ACTIONS(1656), - [anon_sym_break] = ACTIONS(1656), - [anon_sym_defer] = ACTIONS(1656), - [anon_sym_assert] = ACTIONS(1656), - [anon_sym_nextcase] = ACTIONS(1656), - [anon_sym_switch] = ACTIONS(1656), - [anon_sym_AMP_AMP] = ACTIONS(1658), - [anon_sym_if] = ACTIONS(1656), - [anon_sym_for] = ACTIONS(1656), - [anon_sym_foreach] = ACTIONS(1656), - [anon_sym_foreach_r] = ACTIONS(1656), - [anon_sym_while] = ACTIONS(1656), - [anon_sym_do] = ACTIONS(1656), - [anon_sym_int] = ACTIONS(1656), - [anon_sym_PLUS] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1656), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_asm] = ACTIONS(1656), - [anon_sym_DOLLARassert] = ACTIONS(1656), - [anon_sym_DOLLARerror] = ACTIONS(1656), - [anon_sym_DOLLARecho] = ACTIONS(1656), - [anon_sym_DOLLARif] = ACTIONS(1656), - [anon_sym_DOLLARendif] = ACTIONS(1656), - [anon_sym_DOLLARswitch] = ACTIONS(1656), - [anon_sym_DOLLARfor] = ACTIONS(1656), - [anon_sym_DOLLARforeach] = ACTIONS(1656), - [anon_sym_DOLLARalignof] = ACTIONS(1656), - [anon_sym_DOLLARextnameof] = ACTIONS(1656), - [anon_sym_DOLLARnameof] = ACTIONS(1656), - [anon_sym_DOLLARoffsetof] = ACTIONS(1656), - [anon_sym_DOLLARqnameof] = ACTIONS(1656), - [anon_sym_DOLLARvaconst] = ACTIONS(1656), - [anon_sym_DOLLARvaarg] = ACTIONS(1656), - [anon_sym_DOLLARvaref] = ACTIONS(1656), - [anon_sym_DOLLARvaexpr] = ACTIONS(1656), - [anon_sym_true] = ACTIONS(1656), - [anon_sym_false] = ACTIONS(1656), - [anon_sym_null] = ACTIONS(1656), - [anon_sym_DOLLARvacount] = ACTIONS(1656), - [anon_sym_DOLLARappend] = ACTIONS(1656), - [anon_sym_DOLLARconcat] = ACTIONS(1656), - [anon_sym_DOLLAReval] = ACTIONS(1656), - [anon_sym_DOLLARis_const] = ACTIONS(1656), - [anon_sym_DOLLARsizeof] = ACTIONS(1656), - [anon_sym_DOLLARstringify] = ACTIONS(1656), - [anon_sym_DOLLARand] = ACTIONS(1656), - [anon_sym_DOLLARdefined] = ACTIONS(1656), - [anon_sym_DOLLARembed] = ACTIONS(1656), - [anon_sym_DOLLARor] = ACTIONS(1656), - [anon_sym_DOLLARfeature] = ACTIONS(1656), - [anon_sym_DOLLARassignable] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(1658), - [anon_sym_TILDE] = ACTIONS(1658), - [anon_sym_PLUS_PLUS] = ACTIONS(1658), - [anon_sym_DASH_DASH] = ACTIONS(1658), - [anon_sym_typeid] = ACTIONS(1656), - [anon_sym_LBRACE_PIPE] = ACTIONS(1658), - [anon_sym_void] = ACTIONS(1656), - [anon_sym_bool] = ACTIONS(1656), - [anon_sym_char] = ACTIONS(1656), - [anon_sym_ichar] = ACTIONS(1656), - [anon_sym_short] = ACTIONS(1656), - [anon_sym_ushort] = ACTIONS(1656), - [anon_sym_uint] = ACTIONS(1656), - [anon_sym_long] = ACTIONS(1656), - [anon_sym_ulong] = ACTIONS(1656), - [anon_sym_int128] = ACTIONS(1656), - [anon_sym_uint128] = ACTIONS(1656), - [anon_sym_float] = ACTIONS(1656), - [anon_sym_double] = ACTIONS(1656), - [anon_sym_float16] = ACTIONS(1656), - [anon_sym_bfloat16] = ACTIONS(1656), - [anon_sym_float128] = ACTIONS(1656), - [anon_sym_iptr] = ACTIONS(1656), - [anon_sym_uptr] = ACTIONS(1656), - [anon_sym_isz] = ACTIONS(1656), - [anon_sym_usz] = ACTIONS(1656), - [anon_sym_anyfault] = ACTIONS(1656), - [anon_sym_any] = ACTIONS(1656), - [anon_sym_DOLLARtypeof] = ACTIONS(1656), - [anon_sym_DOLLARtypefrom] = ACTIONS(1656), - [anon_sym_DOLLARvatype] = ACTIONS(1656), - [anon_sym_DOLLARevaltype] = ACTIONS(1656), - [sym_real_literal] = ACTIONS(1658), + [sym_ident] = ACTIONS(1577), + [sym_integer_literal] = ACTIONS(1579), + [anon_sym_SQUOTE] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1579), + [sym_bytes_literal] = ACTIONS(1579), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1577), + [sym_at_ident] = ACTIONS(1579), + [sym_hash_ident] = ACTIONS(1579), + [sym_type_ident] = ACTIONS(1579), + [sym_ct_type_ident] = ACTIONS(1579), + [sym_const_ident] = ACTIONS(1577), + [sym_builtin] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_AMP] = ACTIONS(1577), + [anon_sym_static] = ACTIONS(1577), + [anon_sym_tlocal] = ACTIONS(1577), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_fn] = ACTIONS(1577), + [anon_sym_LBRACE] = ACTIONS(1577), + [anon_sym_const] = ACTIONS(1577), + [anon_sym_var] = ACTIONS(1577), + [anon_sym_return] = ACTIONS(1577), + [anon_sym_continue] = ACTIONS(1577), + [anon_sym_break] = ACTIONS(1577), + [anon_sym_defer] = ACTIONS(1577), + [anon_sym_assert] = ACTIONS(1577), + [anon_sym_nextcase] = ACTIONS(1577), + [anon_sym_switch] = ACTIONS(1577), + [anon_sym_AMP_AMP] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1577), + [anon_sym_for] = ACTIONS(1577), + [anon_sym_foreach] = ACTIONS(1577), + [anon_sym_foreach_r] = ACTIONS(1577), + [anon_sym_while] = ACTIONS(1577), + [anon_sym_do] = ACTIONS(1577), + [anon_sym_int] = ACTIONS(1577), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_asm] = ACTIONS(1577), + [anon_sym_DOLLARassert] = ACTIONS(1577), + [anon_sym_DOLLARerror] = ACTIONS(1577), + [anon_sym_DOLLARecho] = ACTIONS(1577), + [anon_sym_DOLLARif] = ACTIONS(1577), + [anon_sym_DOLLARendif] = ACTIONS(1577), + [anon_sym_DOLLARswitch] = ACTIONS(1577), + [anon_sym_DOLLARfor] = ACTIONS(1577), + [anon_sym_DOLLARforeach] = ACTIONS(1577), + [anon_sym_DOLLARalignof] = ACTIONS(1577), + [anon_sym_DOLLARextnameof] = ACTIONS(1577), + [anon_sym_DOLLARnameof] = ACTIONS(1577), + [anon_sym_DOLLARoffsetof] = ACTIONS(1577), + [anon_sym_DOLLARqnameof] = ACTIONS(1577), + [anon_sym_DOLLARvaconst] = ACTIONS(1577), + [anon_sym_DOLLARvaarg] = ACTIONS(1577), + [anon_sym_DOLLARvaref] = ACTIONS(1577), + [anon_sym_DOLLARvaexpr] = ACTIONS(1577), + [anon_sym_true] = ACTIONS(1577), + [anon_sym_false] = ACTIONS(1577), + [anon_sym_null] = ACTIONS(1577), + [anon_sym_DOLLARvacount] = ACTIONS(1577), + [anon_sym_DOLLARappend] = ACTIONS(1577), + [anon_sym_DOLLARconcat] = ACTIONS(1577), + [anon_sym_DOLLAReval] = ACTIONS(1577), + [anon_sym_DOLLARis_const] = ACTIONS(1577), + [anon_sym_DOLLARsizeof] = ACTIONS(1577), + [anon_sym_DOLLARstringify] = ACTIONS(1577), + [anon_sym_DOLLARand] = ACTIONS(1577), + [anon_sym_DOLLARdefined] = ACTIONS(1577), + [anon_sym_DOLLARembed] = ACTIONS(1577), + [anon_sym_DOLLARor] = ACTIONS(1577), + [anon_sym_DOLLARfeature] = ACTIONS(1577), + [anon_sym_DOLLARassignable] = ACTIONS(1577), + [anon_sym_BANG] = ACTIONS(1579), + [anon_sym_TILDE] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_DASH_DASH] = ACTIONS(1579), + [anon_sym_typeid] = ACTIONS(1577), + [anon_sym_LBRACE_PIPE] = ACTIONS(1579), + [anon_sym_void] = ACTIONS(1577), + [anon_sym_bool] = ACTIONS(1577), + [anon_sym_char] = ACTIONS(1577), + [anon_sym_ichar] = ACTIONS(1577), + [anon_sym_short] = ACTIONS(1577), + [anon_sym_ushort] = ACTIONS(1577), + [anon_sym_uint] = ACTIONS(1577), + [anon_sym_long] = ACTIONS(1577), + [anon_sym_ulong] = ACTIONS(1577), + [anon_sym_int128] = ACTIONS(1577), + [anon_sym_uint128] = ACTIONS(1577), + [anon_sym_float] = ACTIONS(1577), + [anon_sym_double] = ACTIONS(1577), + [anon_sym_float16] = ACTIONS(1577), + [anon_sym_bfloat16] = ACTIONS(1577), + [anon_sym_float128] = ACTIONS(1577), + [anon_sym_iptr] = ACTIONS(1577), + [anon_sym_uptr] = ACTIONS(1577), + [anon_sym_isz] = ACTIONS(1577), + [anon_sym_usz] = ACTIONS(1577), + [anon_sym_anyfault] = ACTIONS(1577), + [anon_sym_any] = ACTIONS(1577), + [anon_sym_DOLLARtypeof] = ACTIONS(1577), + [anon_sym_DOLLARtypefrom] = ACTIONS(1577), + [anon_sym_DOLLARvatype] = ACTIONS(1577), + [anon_sym_DOLLARevaltype] = ACTIONS(1577), + [sym_real_literal] = ACTIONS(1579), }, [738] = { [sym_line_comment] = STATE(738), [sym_doc_comment] = STATE(738), [sym_block_comment] = STATE(738), - [sym_ident] = ACTIONS(1432), - [sym_integer_literal] = ACTIONS(1434), - [anon_sym_SQUOTE] = ACTIONS(1434), - [anon_sym_DQUOTE] = ACTIONS(1434), - [anon_sym_BQUOTE] = ACTIONS(1434), - [sym_bytes_literal] = ACTIONS(1434), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1432), - [sym_at_ident] = ACTIONS(1434), - [sym_hash_ident] = ACTIONS(1434), - [sym_type_ident] = ACTIONS(1434), - [sym_ct_type_ident] = ACTIONS(1434), - [sym_const_ident] = ACTIONS(1432), - [sym_builtin] = ACTIONS(1434), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_AMP] = ACTIONS(1432), - [anon_sym_static] = ACTIONS(1432), - [anon_sym_tlocal] = ACTIONS(1432), - [anon_sym_SEMI] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1432), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_const] = ACTIONS(1432), - [anon_sym_var] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_continue] = ACTIONS(1432), - [anon_sym_break] = ACTIONS(1432), - [anon_sym_defer] = ACTIONS(1432), - [anon_sym_assert] = ACTIONS(1432), - [anon_sym_nextcase] = ACTIONS(1432), - [anon_sym_switch] = ACTIONS(1432), - [anon_sym_AMP_AMP] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_foreach] = ACTIONS(1432), - [anon_sym_foreach_r] = ACTIONS(1432), - [anon_sym_while] = ACTIONS(1432), - [anon_sym_do] = ACTIONS(1432), - [anon_sym_int] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1432), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_STAR] = ACTIONS(1434), - [anon_sym_asm] = ACTIONS(1432), - [anon_sym_DOLLARassert] = ACTIONS(1432), - [anon_sym_DOLLARerror] = ACTIONS(1432), - [anon_sym_DOLLARecho] = ACTIONS(1432), - [anon_sym_DOLLARif] = ACTIONS(1432), - [anon_sym_DOLLARswitch] = ACTIONS(1432), - [anon_sym_DOLLARfor] = ACTIONS(1432), - [anon_sym_DOLLARendfor] = ACTIONS(1432), - [anon_sym_DOLLARforeach] = ACTIONS(1432), - [anon_sym_DOLLARalignof] = ACTIONS(1432), - [anon_sym_DOLLARextnameof] = ACTIONS(1432), - [anon_sym_DOLLARnameof] = ACTIONS(1432), - [anon_sym_DOLLARoffsetof] = ACTIONS(1432), - [anon_sym_DOLLARqnameof] = ACTIONS(1432), - [anon_sym_DOLLARvaconst] = ACTIONS(1432), - [anon_sym_DOLLARvaarg] = ACTIONS(1432), - [anon_sym_DOLLARvaref] = ACTIONS(1432), - [anon_sym_DOLLARvaexpr] = ACTIONS(1432), - [anon_sym_true] = ACTIONS(1432), - [anon_sym_false] = ACTIONS(1432), - [anon_sym_null] = ACTIONS(1432), - [anon_sym_DOLLARvacount] = ACTIONS(1432), - [anon_sym_DOLLARappend] = ACTIONS(1432), - [anon_sym_DOLLARconcat] = ACTIONS(1432), - [anon_sym_DOLLAReval] = ACTIONS(1432), - [anon_sym_DOLLARis_const] = ACTIONS(1432), - [anon_sym_DOLLARsizeof] = ACTIONS(1432), - [anon_sym_DOLLARstringify] = ACTIONS(1432), - [anon_sym_DOLLARand] = ACTIONS(1432), - [anon_sym_DOLLARdefined] = ACTIONS(1432), - [anon_sym_DOLLARembed] = ACTIONS(1432), - [anon_sym_DOLLARor] = ACTIONS(1432), - [anon_sym_DOLLARfeature] = ACTIONS(1432), - [anon_sym_DOLLARassignable] = ACTIONS(1432), - [anon_sym_BANG] = ACTIONS(1434), - [anon_sym_TILDE] = ACTIONS(1434), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), - [anon_sym_typeid] = ACTIONS(1432), - [anon_sym_LBRACE_PIPE] = ACTIONS(1434), - [anon_sym_void] = ACTIONS(1432), - [anon_sym_bool] = ACTIONS(1432), - [anon_sym_char] = ACTIONS(1432), - [anon_sym_ichar] = ACTIONS(1432), - [anon_sym_short] = ACTIONS(1432), - [anon_sym_ushort] = ACTIONS(1432), - [anon_sym_uint] = ACTIONS(1432), - [anon_sym_long] = ACTIONS(1432), - [anon_sym_ulong] = ACTIONS(1432), - [anon_sym_int128] = ACTIONS(1432), - [anon_sym_uint128] = ACTIONS(1432), - [anon_sym_float] = ACTIONS(1432), - [anon_sym_double] = ACTIONS(1432), - [anon_sym_float16] = ACTIONS(1432), - [anon_sym_bfloat16] = ACTIONS(1432), - [anon_sym_float128] = ACTIONS(1432), - [anon_sym_iptr] = ACTIONS(1432), - [anon_sym_uptr] = ACTIONS(1432), - [anon_sym_isz] = ACTIONS(1432), - [anon_sym_usz] = ACTIONS(1432), - [anon_sym_anyfault] = ACTIONS(1432), - [anon_sym_any] = ACTIONS(1432), - [anon_sym_DOLLARtypeof] = ACTIONS(1432), - [anon_sym_DOLLARtypefrom] = ACTIONS(1432), - [anon_sym_DOLLARvatype] = ACTIONS(1432), - [anon_sym_DOLLARevaltype] = ACTIONS(1432), - [sym_real_literal] = ACTIONS(1434), + [sym_ident] = ACTIONS(1363), + [sym_integer_literal] = ACTIONS(1365), + [anon_sym_SQUOTE] = ACTIONS(1365), + [anon_sym_DQUOTE] = ACTIONS(1365), + [anon_sym_BQUOTE] = ACTIONS(1365), + [sym_bytes_literal] = ACTIONS(1365), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1363), + [sym_at_ident] = ACTIONS(1365), + [sym_hash_ident] = ACTIONS(1365), + [sym_type_ident] = ACTIONS(1365), + [sym_ct_type_ident] = ACTIONS(1365), + [sym_const_ident] = ACTIONS(1363), + [sym_builtin] = ACTIONS(1365), + [anon_sym_LPAREN] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1363), + [anon_sym_static] = ACTIONS(1363), + [anon_sym_tlocal] = ACTIONS(1363), + [anon_sym_SEMI] = ACTIONS(1365), + [anon_sym_fn] = ACTIONS(1363), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_const] = ACTIONS(1363), + [anon_sym_var] = ACTIONS(1363), + [anon_sym_return] = ACTIONS(1363), + [anon_sym_continue] = ACTIONS(1363), + [anon_sym_break] = ACTIONS(1363), + [anon_sym_defer] = ACTIONS(1363), + [anon_sym_assert] = ACTIONS(1363), + [anon_sym_nextcase] = ACTIONS(1363), + [anon_sym_switch] = ACTIONS(1363), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_if] = ACTIONS(1363), + [anon_sym_for] = ACTIONS(1363), + [anon_sym_foreach] = ACTIONS(1363), + [anon_sym_foreach_r] = ACTIONS(1363), + [anon_sym_while] = ACTIONS(1363), + [anon_sym_do] = ACTIONS(1363), + [anon_sym_int] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_asm] = ACTIONS(1363), + [anon_sym_DOLLARassert] = ACTIONS(1363), + [anon_sym_DOLLARerror] = ACTIONS(1363), + [anon_sym_DOLLARecho] = ACTIONS(1363), + [anon_sym_DOLLARif] = ACTIONS(1363), + [anon_sym_DOLLARendif] = ACTIONS(1363), + [anon_sym_DOLLARswitch] = ACTIONS(1363), + [anon_sym_DOLLARfor] = ACTIONS(1363), + [anon_sym_DOLLARforeach] = ACTIONS(1363), + [anon_sym_DOLLARalignof] = ACTIONS(1363), + [anon_sym_DOLLARextnameof] = ACTIONS(1363), + [anon_sym_DOLLARnameof] = ACTIONS(1363), + [anon_sym_DOLLARoffsetof] = ACTIONS(1363), + [anon_sym_DOLLARqnameof] = ACTIONS(1363), + [anon_sym_DOLLARvaconst] = ACTIONS(1363), + [anon_sym_DOLLARvaarg] = ACTIONS(1363), + [anon_sym_DOLLARvaref] = ACTIONS(1363), + [anon_sym_DOLLARvaexpr] = ACTIONS(1363), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_null] = ACTIONS(1363), + [anon_sym_DOLLARvacount] = ACTIONS(1363), + [anon_sym_DOLLARappend] = ACTIONS(1363), + [anon_sym_DOLLARconcat] = ACTIONS(1363), + [anon_sym_DOLLAReval] = ACTIONS(1363), + [anon_sym_DOLLARis_const] = ACTIONS(1363), + [anon_sym_DOLLARsizeof] = ACTIONS(1363), + [anon_sym_DOLLARstringify] = ACTIONS(1363), + [anon_sym_DOLLARand] = ACTIONS(1363), + [anon_sym_DOLLARdefined] = ACTIONS(1363), + [anon_sym_DOLLARembed] = ACTIONS(1363), + [anon_sym_DOLLARor] = ACTIONS(1363), + [anon_sym_DOLLARfeature] = ACTIONS(1363), + [anon_sym_DOLLARassignable] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1365), + [anon_sym_TILDE] = ACTIONS(1365), + [anon_sym_PLUS_PLUS] = ACTIONS(1365), + [anon_sym_DASH_DASH] = ACTIONS(1365), + [anon_sym_typeid] = ACTIONS(1363), + [anon_sym_LBRACE_PIPE] = ACTIONS(1365), + [anon_sym_void] = ACTIONS(1363), + [anon_sym_bool] = ACTIONS(1363), + [anon_sym_char] = ACTIONS(1363), + [anon_sym_ichar] = ACTIONS(1363), + [anon_sym_short] = ACTIONS(1363), + [anon_sym_ushort] = ACTIONS(1363), + [anon_sym_uint] = ACTIONS(1363), + [anon_sym_long] = ACTIONS(1363), + [anon_sym_ulong] = ACTIONS(1363), + [anon_sym_int128] = ACTIONS(1363), + [anon_sym_uint128] = ACTIONS(1363), + [anon_sym_float] = ACTIONS(1363), + [anon_sym_double] = ACTIONS(1363), + [anon_sym_float16] = ACTIONS(1363), + [anon_sym_bfloat16] = ACTIONS(1363), + [anon_sym_float128] = ACTIONS(1363), + [anon_sym_iptr] = ACTIONS(1363), + [anon_sym_uptr] = ACTIONS(1363), + [anon_sym_isz] = ACTIONS(1363), + [anon_sym_usz] = ACTIONS(1363), + [anon_sym_anyfault] = ACTIONS(1363), + [anon_sym_any] = ACTIONS(1363), + [anon_sym_DOLLARtypeof] = ACTIONS(1363), + [anon_sym_DOLLARtypefrom] = ACTIONS(1363), + [anon_sym_DOLLARvatype] = ACTIONS(1363), + [anon_sym_DOLLARevaltype] = ACTIONS(1363), + [sym_real_literal] = ACTIONS(1365), }, [739] = { [sym_line_comment] = STATE(739), [sym_doc_comment] = STATE(739), [sym_block_comment] = STATE(739), - [sym_ident] = ACTIONS(1652), - [sym_integer_literal] = ACTIONS(1654), - [anon_sym_SQUOTE] = ACTIONS(1654), - [anon_sym_DQUOTE] = ACTIONS(1654), - [anon_sym_BQUOTE] = ACTIONS(1654), - [sym_bytes_literal] = ACTIONS(1654), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1652), - [sym_at_ident] = ACTIONS(1654), - [sym_hash_ident] = ACTIONS(1654), - [sym_type_ident] = ACTIONS(1654), - [sym_ct_type_ident] = ACTIONS(1654), - [sym_const_ident] = ACTIONS(1652), - [sym_builtin] = ACTIONS(1654), - [anon_sym_LPAREN] = ACTIONS(1654), - [anon_sym_AMP] = ACTIONS(1652), - [anon_sym_static] = ACTIONS(1652), - [anon_sym_tlocal] = ACTIONS(1652), - [anon_sym_SEMI] = ACTIONS(1654), - [anon_sym_fn] = ACTIONS(1652), - [anon_sym_LBRACE] = ACTIONS(1652), - [anon_sym_const] = ACTIONS(1652), - [anon_sym_var] = ACTIONS(1652), - [anon_sym_return] = ACTIONS(1652), - [anon_sym_continue] = ACTIONS(1652), - [anon_sym_break] = ACTIONS(1652), - [anon_sym_defer] = ACTIONS(1652), - [anon_sym_assert] = ACTIONS(1652), - [anon_sym_nextcase] = ACTIONS(1652), - [anon_sym_switch] = ACTIONS(1652), - [anon_sym_AMP_AMP] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1652), - [anon_sym_for] = ACTIONS(1652), - [anon_sym_foreach] = ACTIONS(1652), - [anon_sym_foreach_r] = ACTIONS(1652), - [anon_sym_while] = ACTIONS(1652), - [anon_sym_do] = ACTIONS(1652), - [anon_sym_int] = ACTIONS(1652), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_asm] = ACTIONS(1652), - [anon_sym_DOLLARassert] = ACTIONS(1652), - [anon_sym_DOLLARerror] = ACTIONS(1652), - [anon_sym_DOLLARecho] = ACTIONS(1652), - [anon_sym_DOLLARif] = ACTIONS(1652), - [anon_sym_DOLLARendif] = ACTIONS(1652), - [anon_sym_DOLLARswitch] = ACTIONS(1652), - [anon_sym_DOLLARfor] = ACTIONS(1652), - [anon_sym_DOLLARforeach] = ACTIONS(1652), - [anon_sym_DOLLARalignof] = ACTIONS(1652), - [anon_sym_DOLLARextnameof] = ACTIONS(1652), - [anon_sym_DOLLARnameof] = ACTIONS(1652), - [anon_sym_DOLLARoffsetof] = ACTIONS(1652), - [anon_sym_DOLLARqnameof] = ACTIONS(1652), - [anon_sym_DOLLARvaconst] = ACTIONS(1652), - [anon_sym_DOLLARvaarg] = ACTIONS(1652), - [anon_sym_DOLLARvaref] = ACTIONS(1652), - [anon_sym_DOLLARvaexpr] = ACTIONS(1652), - [anon_sym_true] = ACTIONS(1652), - [anon_sym_false] = ACTIONS(1652), - [anon_sym_null] = ACTIONS(1652), - [anon_sym_DOLLARvacount] = ACTIONS(1652), - [anon_sym_DOLLARappend] = ACTIONS(1652), - [anon_sym_DOLLARconcat] = ACTIONS(1652), - [anon_sym_DOLLAReval] = ACTIONS(1652), - [anon_sym_DOLLARis_const] = ACTIONS(1652), - [anon_sym_DOLLARsizeof] = ACTIONS(1652), - [anon_sym_DOLLARstringify] = ACTIONS(1652), - [anon_sym_DOLLARand] = ACTIONS(1652), - [anon_sym_DOLLARdefined] = ACTIONS(1652), - [anon_sym_DOLLARembed] = ACTIONS(1652), - [anon_sym_DOLLARor] = ACTIONS(1652), - [anon_sym_DOLLARfeature] = ACTIONS(1652), - [anon_sym_DOLLARassignable] = ACTIONS(1652), - [anon_sym_BANG] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1654), - [anon_sym_PLUS_PLUS] = ACTIONS(1654), - [anon_sym_DASH_DASH] = ACTIONS(1654), - [anon_sym_typeid] = ACTIONS(1652), - [anon_sym_LBRACE_PIPE] = ACTIONS(1654), - [anon_sym_void] = ACTIONS(1652), - [anon_sym_bool] = ACTIONS(1652), - [anon_sym_char] = ACTIONS(1652), - [anon_sym_ichar] = ACTIONS(1652), - [anon_sym_short] = ACTIONS(1652), - [anon_sym_ushort] = ACTIONS(1652), - [anon_sym_uint] = ACTIONS(1652), - [anon_sym_long] = ACTIONS(1652), - [anon_sym_ulong] = ACTIONS(1652), - [anon_sym_int128] = ACTIONS(1652), - [anon_sym_uint128] = ACTIONS(1652), - [anon_sym_float] = ACTIONS(1652), - [anon_sym_double] = ACTIONS(1652), - [anon_sym_float16] = ACTIONS(1652), - [anon_sym_bfloat16] = ACTIONS(1652), - [anon_sym_float128] = ACTIONS(1652), - [anon_sym_iptr] = ACTIONS(1652), - [anon_sym_uptr] = ACTIONS(1652), - [anon_sym_isz] = ACTIONS(1652), - [anon_sym_usz] = ACTIONS(1652), - [anon_sym_anyfault] = ACTIONS(1652), - [anon_sym_any] = ACTIONS(1652), - [anon_sym_DOLLARtypeof] = ACTIONS(1652), - [anon_sym_DOLLARtypefrom] = ACTIONS(1652), - [anon_sym_DOLLARvatype] = ACTIONS(1652), - [anon_sym_DOLLARevaltype] = ACTIONS(1652), - [sym_real_literal] = ACTIONS(1654), + [sym_ident] = ACTIONS(1625), + [sym_integer_literal] = ACTIONS(1627), + [anon_sym_SQUOTE] = ACTIONS(1627), + [anon_sym_DQUOTE] = ACTIONS(1627), + [anon_sym_BQUOTE] = ACTIONS(1627), + [sym_bytes_literal] = ACTIONS(1627), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1625), + [sym_at_ident] = ACTIONS(1627), + [sym_hash_ident] = ACTIONS(1627), + [sym_type_ident] = ACTIONS(1627), + [sym_ct_type_ident] = ACTIONS(1627), + [sym_const_ident] = ACTIONS(1625), + [sym_builtin] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1627), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_static] = ACTIONS(1625), + [anon_sym_tlocal] = ACTIONS(1625), + [anon_sym_SEMI] = ACTIONS(1627), + [anon_sym_fn] = ACTIONS(1625), + [anon_sym_LBRACE] = ACTIONS(1625), + [anon_sym_const] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1625), + [anon_sym_return] = ACTIONS(1625), + [anon_sym_continue] = ACTIONS(1625), + [anon_sym_break] = ACTIONS(1625), + [anon_sym_defer] = ACTIONS(1625), + [anon_sym_assert] = ACTIONS(1625), + [anon_sym_nextcase] = ACTIONS(1625), + [anon_sym_switch] = ACTIONS(1625), + [anon_sym_AMP_AMP] = ACTIONS(1627), + [anon_sym_if] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1625), + [anon_sym_foreach] = ACTIONS(1625), + [anon_sym_foreach_r] = ACTIONS(1625), + [anon_sym_while] = ACTIONS(1625), + [anon_sym_do] = ACTIONS(1625), + [anon_sym_int] = ACTIONS(1625), + [anon_sym_PLUS] = ACTIONS(1625), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(1627), + [anon_sym_asm] = ACTIONS(1625), + [anon_sym_DOLLARassert] = ACTIONS(1625), + [anon_sym_DOLLARerror] = ACTIONS(1625), + [anon_sym_DOLLARecho] = ACTIONS(1625), + [anon_sym_DOLLARif] = ACTIONS(1625), + [anon_sym_DOLLARendif] = ACTIONS(1625), + [anon_sym_DOLLARswitch] = ACTIONS(1625), + [anon_sym_DOLLARfor] = ACTIONS(1625), + [anon_sym_DOLLARforeach] = ACTIONS(1625), + [anon_sym_DOLLARalignof] = ACTIONS(1625), + [anon_sym_DOLLARextnameof] = ACTIONS(1625), + [anon_sym_DOLLARnameof] = ACTIONS(1625), + [anon_sym_DOLLARoffsetof] = ACTIONS(1625), + [anon_sym_DOLLARqnameof] = ACTIONS(1625), + [anon_sym_DOLLARvaconst] = ACTIONS(1625), + [anon_sym_DOLLARvaarg] = ACTIONS(1625), + [anon_sym_DOLLARvaref] = ACTIONS(1625), + [anon_sym_DOLLARvaexpr] = ACTIONS(1625), + [anon_sym_true] = ACTIONS(1625), + [anon_sym_false] = ACTIONS(1625), + [anon_sym_null] = ACTIONS(1625), + [anon_sym_DOLLARvacount] = ACTIONS(1625), + [anon_sym_DOLLARappend] = ACTIONS(1625), + [anon_sym_DOLLARconcat] = ACTIONS(1625), + [anon_sym_DOLLAReval] = ACTIONS(1625), + [anon_sym_DOLLARis_const] = ACTIONS(1625), + [anon_sym_DOLLARsizeof] = ACTIONS(1625), + [anon_sym_DOLLARstringify] = ACTIONS(1625), + [anon_sym_DOLLARand] = ACTIONS(1625), + [anon_sym_DOLLARdefined] = ACTIONS(1625), + [anon_sym_DOLLARembed] = ACTIONS(1625), + [anon_sym_DOLLARor] = ACTIONS(1625), + [anon_sym_DOLLARfeature] = ACTIONS(1625), + [anon_sym_DOLLARassignable] = ACTIONS(1625), + [anon_sym_BANG] = ACTIONS(1627), + [anon_sym_TILDE] = ACTIONS(1627), + [anon_sym_PLUS_PLUS] = ACTIONS(1627), + [anon_sym_DASH_DASH] = ACTIONS(1627), + [anon_sym_typeid] = ACTIONS(1625), + [anon_sym_LBRACE_PIPE] = ACTIONS(1627), + [anon_sym_void] = ACTIONS(1625), + [anon_sym_bool] = ACTIONS(1625), + [anon_sym_char] = ACTIONS(1625), + [anon_sym_ichar] = ACTIONS(1625), + [anon_sym_short] = ACTIONS(1625), + [anon_sym_ushort] = ACTIONS(1625), + [anon_sym_uint] = ACTIONS(1625), + [anon_sym_long] = ACTIONS(1625), + [anon_sym_ulong] = ACTIONS(1625), + [anon_sym_int128] = ACTIONS(1625), + [anon_sym_uint128] = ACTIONS(1625), + [anon_sym_float] = ACTIONS(1625), + [anon_sym_double] = ACTIONS(1625), + [anon_sym_float16] = ACTIONS(1625), + [anon_sym_bfloat16] = ACTIONS(1625), + [anon_sym_float128] = ACTIONS(1625), + [anon_sym_iptr] = ACTIONS(1625), + [anon_sym_uptr] = ACTIONS(1625), + [anon_sym_isz] = ACTIONS(1625), + [anon_sym_usz] = ACTIONS(1625), + [anon_sym_anyfault] = ACTIONS(1625), + [anon_sym_any] = ACTIONS(1625), + [anon_sym_DOLLARtypeof] = ACTIONS(1625), + [anon_sym_DOLLARtypefrom] = ACTIONS(1625), + [anon_sym_DOLLARvatype] = ACTIONS(1625), + [anon_sym_DOLLARevaltype] = ACTIONS(1625), + [sym_real_literal] = ACTIONS(1627), }, [740] = { [sym_line_comment] = STATE(740), [sym_doc_comment] = STATE(740), [sym_block_comment] = STATE(740), - [sym_ident] = ACTIONS(1484), - [sym_integer_literal] = ACTIONS(1486), - [anon_sym_SQUOTE] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(1486), - [anon_sym_BQUOTE] = ACTIONS(1486), - [sym_bytes_literal] = ACTIONS(1486), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1484), - [sym_at_ident] = ACTIONS(1486), - [sym_hash_ident] = ACTIONS(1486), - [sym_type_ident] = ACTIONS(1486), - [sym_ct_type_ident] = ACTIONS(1486), - [sym_const_ident] = ACTIONS(1484), - [sym_builtin] = ACTIONS(1486), - [anon_sym_LPAREN] = ACTIONS(1486), - [anon_sym_AMP] = ACTIONS(1484), - [anon_sym_static] = ACTIONS(1484), - [anon_sym_tlocal] = ACTIONS(1484), - [anon_sym_SEMI] = ACTIONS(1486), - [anon_sym_fn] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1484), - [anon_sym_const] = ACTIONS(1484), - [anon_sym_var] = ACTIONS(1484), - [anon_sym_return] = ACTIONS(1484), - [anon_sym_continue] = ACTIONS(1484), - [anon_sym_break] = ACTIONS(1484), - [anon_sym_defer] = ACTIONS(1484), - [anon_sym_assert] = ACTIONS(1484), - [anon_sym_nextcase] = ACTIONS(1484), - [anon_sym_switch] = ACTIONS(1484), - [anon_sym_AMP_AMP] = ACTIONS(1486), - [anon_sym_if] = ACTIONS(1484), - [anon_sym_for] = ACTIONS(1484), - [anon_sym_foreach] = ACTIONS(1484), - [anon_sym_foreach_r] = ACTIONS(1484), - [anon_sym_while] = ACTIONS(1484), - [anon_sym_do] = ACTIONS(1484), - [anon_sym_int] = ACTIONS(1484), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_DASH] = ACTIONS(1484), - [anon_sym_STAR] = ACTIONS(1486), - [anon_sym_asm] = ACTIONS(1484), - [anon_sym_DOLLARassert] = ACTIONS(1484), - [anon_sym_DOLLARerror] = ACTIONS(1484), - [anon_sym_DOLLARecho] = ACTIONS(1484), - [anon_sym_DOLLARif] = ACTIONS(1484), - [anon_sym_DOLLARswitch] = ACTIONS(1484), - [anon_sym_DOLLARfor] = ACTIONS(1484), - [anon_sym_DOLLARendfor] = ACTIONS(1484), - [anon_sym_DOLLARforeach] = ACTIONS(1484), - [anon_sym_DOLLARalignof] = ACTIONS(1484), - [anon_sym_DOLLARextnameof] = ACTIONS(1484), - [anon_sym_DOLLARnameof] = ACTIONS(1484), - [anon_sym_DOLLARoffsetof] = ACTIONS(1484), - [anon_sym_DOLLARqnameof] = ACTIONS(1484), - [anon_sym_DOLLARvaconst] = ACTIONS(1484), - [anon_sym_DOLLARvaarg] = ACTIONS(1484), - [anon_sym_DOLLARvaref] = ACTIONS(1484), - [anon_sym_DOLLARvaexpr] = ACTIONS(1484), - [anon_sym_true] = ACTIONS(1484), - [anon_sym_false] = ACTIONS(1484), - [anon_sym_null] = ACTIONS(1484), - [anon_sym_DOLLARvacount] = ACTIONS(1484), - [anon_sym_DOLLARappend] = ACTIONS(1484), - [anon_sym_DOLLARconcat] = ACTIONS(1484), - [anon_sym_DOLLAReval] = ACTIONS(1484), - [anon_sym_DOLLARis_const] = ACTIONS(1484), - [anon_sym_DOLLARsizeof] = ACTIONS(1484), - [anon_sym_DOLLARstringify] = ACTIONS(1484), - [anon_sym_DOLLARand] = ACTIONS(1484), - [anon_sym_DOLLARdefined] = ACTIONS(1484), - [anon_sym_DOLLARembed] = ACTIONS(1484), - [anon_sym_DOLLARor] = ACTIONS(1484), - [anon_sym_DOLLARfeature] = ACTIONS(1484), - [anon_sym_DOLLARassignable] = ACTIONS(1484), - [anon_sym_BANG] = ACTIONS(1486), - [anon_sym_TILDE] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_typeid] = ACTIONS(1484), - [anon_sym_LBRACE_PIPE] = ACTIONS(1486), - [anon_sym_void] = ACTIONS(1484), - [anon_sym_bool] = ACTIONS(1484), - [anon_sym_char] = ACTIONS(1484), - [anon_sym_ichar] = ACTIONS(1484), - [anon_sym_short] = ACTIONS(1484), - [anon_sym_ushort] = ACTIONS(1484), - [anon_sym_uint] = ACTIONS(1484), - [anon_sym_long] = ACTIONS(1484), - [anon_sym_ulong] = ACTIONS(1484), - [anon_sym_int128] = ACTIONS(1484), - [anon_sym_uint128] = ACTIONS(1484), - [anon_sym_float] = ACTIONS(1484), - [anon_sym_double] = ACTIONS(1484), - [anon_sym_float16] = ACTIONS(1484), - [anon_sym_bfloat16] = ACTIONS(1484), - [anon_sym_float128] = ACTIONS(1484), - [anon_sym_iptr] = ACTIONS(1484), - [anon_sym_uptr] = ACTIONS(1484), - [anon_sym_isz] = ACTIONS(1484), - [anon_sym_usz] = ACTIONS(1484), - [anon_sym_anyfault] = ACTIONS(1484), - [anon_sym_any] = ACTIONS(1484), - [anon_sym_DOLLARtypeof] = ACTIONS(1484), - [anon_sym_DOLLARtypefrom] = ACTIONS(1484), - [anon_sym_DOLLARvatype] = ACTIONS(1484), - [anon_sym_DOLLARevaltype] = ACTIONS(1484), - [sym_real_literal] = ACTIONS(1486), + [sym_ident] = ACTIONS(1359), + [sym_integer_literal] = ACTIONS(1361), + [anon_sym_SQUOTE] = ACTIONS(1361), + [anon_sym_DQUOTE] = ACTIONS(1361), + [anon_sym_BQUOTE] = ACTIONS(1361), + [sym_bytes_literal] = ACTIONS(1361), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1359), + [sym_at_ident] = ACTIONS(1361), + [sym_hash_ident] = ACTIONS(1361), + [sym_type_ident] = ACTIONS(1361), + [sym_ct_type_ident] = ACTIONS(1361), + [sym_const_ident] = ACTIONS(1359), + [sym_builtin] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(1361), + [anon_sym_AMP] = ACTIONS(1359), + [anon_sym_static] = ACTIONS(1359), + [anon_sym_tlocal] = ACTIONS(1359), + [anon_sym_SEMI] = ACTIONS(1361), + [anon_sym_fn] = ACTIONS(1359), + [anon_sym_LBRACE] = ACTIONS(1359), + [anon_sym_const] = ACTIONS(1359), + [anon_sym_var] = ACTIONS(1359), + [anon_sym_return] = ACTIONS(1359), + [anon_sym_continue] = ACTIONS(1359), + [anon_sym_break] = ACTIONS(1359), + [anon_sym_defer] = ACTIONS(1359), + [anon_sym_assert] = ACTIONS(1359), + [anon_sym_nextcase] = ACTIONS(1359), + [anon_sym_switch] = ACTIONS(1359), + [anon_sym_AMP_AMP] = ACTIONS(1361), + [anon_sym_if] = ACTIONS(1359), + [anon_sym_for] = ACTIONS(1359), + [anon_sym_foreach] = ACTIONS(1359), + [anon_sym_foreach_r] = ACTIONS(1359), + [anon_sym_while] = ACTIONS(1359), + [anon_sym_do] = ACTIONS(1359), + [anon_sym_int] = ACTIONS(1359), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_asm] = ACTIONS(1359), + [anon_sym_DOLLARassert] = ACTIONS(1359), + [anon_sym_DOLLARerror] = ACTIONS(1359), + [anon_sym_DOLLARecho] = ACTIONS(1359), + [anon_sym_DOLLARif] = ACTIONS(1359), + [anon_sym_DOLLARendif] = ACTIONS(1359), + [anon_sym_DOLLARswitch] = ACTIONS(1359), + [anon_sym_DOLLARfor] = ACTIONS(1359), + [anon_sym_DOLLARforeach] = ACTIONS(1359), + [anon_sym_DOLLARalignof] = ACTIONS(1359), + [anon_sym_DOLLARextnameof] = ACTIONS(1359), + [anon_sym_DOLLARnameof] = ACTIONS(1359), + [anon_sym_DOLLARoffsetof] = ACTIONS(1359), + [anon_sym_DOLLARqnameof] = ACTIONS(1359), + [anon_sym_DOLLARvaconst] = ACTIONS(1359), + [anon_sym_DOLLARvaarg] = ACTIONS(1359), + [anon_sym_DOLLARvaref] = ACTIONS(1359), + [anon_sym_DOLLARvaexpr] = ACTIONS(1359), + [anon_sym_true] = ACTIONS(1359), + [anon_sym_false] = ACTIONS(1359), + [anon_sym_null] = ACTIONS(1359), + [anon_sym_DOLLARvacount] = ACTIONS(1359), + [anon_sym_DOLLARappend] = ACTIONS(1359), + [anon_sym_DOLLARconcat] = ACTIONS(1359), + [anon_sym_DOLLAReval] = ACTIONS(1359), + [anon_sym_DOLLARis_const] = ACTIONS(1359), + [anon_sym_DOLLARsizeof] = ACTIONS(1359), + [anon_sym_DOLLARstringify] = ACTIONS(1359), + [anon_sym_DOLLARand] = ACTIONS(1359), + [anon_sym_DOLLARdefined] = ACTIONS(1359), + [anon_sym_DOLLARembed] = ACTIONS(1359), + [anon_sym_DOLLARor] = ACTIONS(1359), + [anon_sym_DOLLARfeature] = ACTIONS(1359), + [anon_sym_DOLLARassignable] = ACTIONS(1359), + [anon_sym_BANG] = ACTIONS(1361), + [anon_sym_TILDE] = ACTIONS(1361), + [anon_sym_PLUS_PLUS] = ACTIONS(1361), + [anon_sym_DASH_DASH] = ACTIONS(1361), + [anon_sym_typeid] = ACTIONS(1359), + [anon_sym_LBRACE_PIPE] = ACTIONS(1361), + [anon_sym_void] = ACTIONS(1359), + [anon_sym_bool] = ACTIONS(1359), + [anon_sym_char] = ACTIONS(1359), + [anon_sym_ichar] = ACTIONS(1359), + [anon_sym_short] = ACTIONS(1359), + [anon_sym_ushort] = ACTIONS(1359), + [anon_sym_uint] = ACTIONS(1359), + [anon_sym_long] = ACTIONS(1359), + [anon_sym_ulong] = ACTIONS(1359), + [anon_sym_int128] = ACTIONS(1359), + [anon_sym_uint128] = ACTIONS(1359), + [anon_sym_float] = ACTIONS(1359), + [anon_sym_double] = ACTIONS(1359), + [anon_sym_float16] = ACTIONS(1359), + [anon_sym_bfloat16] = ACTIONS(1359), + [anon_sym_float128] = ACTIONS(1359), + [anon_sym_iptr] = ACTIONS(1359), + [anon_sym_uptr] = ACTIONS(1359), + [anon_sym_isz] = ACTIONS(1359), + [anon_sym_usz] = ACTIONS(1359), + [anon_sym_anyfault] = ACTIONS(1359), + [anon_sym_any] = ACTIONS(1359), + [anon_sym_DOLLARtypeof] = ACTIONS(1359), + [anon_sym_DOLLARtypefrom] = ACTIONS(1359), + [anon_sym_DOLLARvatype] = ACTIONS(1359), + [anon_sym_DOLLARevaltype] = ACTIONS(1359), + [sym_real_literal] = ACTIONS(1361), }, [741] = { [sym_line_comment] = STATE(741), [sym_doc_comment] = STATE(741), [sym_block_comment] = STATE(741), - [sym_ident] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1490), - [anon_sym_SQUOTE] = ACTIONS(1490), - [anon_sym_DQUOTE] = ACTIONS(1490), - [anon_sym_BQUOTE] = ACTIONS(1490), - [sym_bytes_literal] = ACTIONS(1490), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1488), - [sym_at_ident] = ACTIONS(1490), - [sym_hash_ident] = ACTIONS(1490), - [sym_type_ident] = ACTIONS(1490), - [sym_ct_type_ident] = ACTIONS(1490), - [sym_const_ident] = ACTIONS(1488), - [sym_builtin] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1490), - [anon_sym_AMP] = ACTIONS(1488), - [anon_sym_static] = ACTIONS(1488), - [anon_sym_tlocal] = ACTIONS(1488), - [anon_sym_SEMI] = ACTIONS(1490), - [anon_sym_fn] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_const] = ACTIONS(1488), - [anon_sym_var] = ACTIONS(1488), - [anon_sym_return] = ACTIONS(1488), - [anon_sym_continue] = ACTIONS(1488), - [anon_sym_break] = ACTIONS(1488), - [anon_sym_defer] = ACTIONS(1488), - [anon_sym_assert] = ACTIONS(1488), - [anon_sym_nextcase] = ACTIONS(1488), - [anon_sym_switch] = ACTIONS(1488), - [anon_sym_AMP_AMP] = ACTIONS(1490), - [anon_sym_if] = ACTIONS(1488), - [anon_sym_for] = ACTIONS(1488), - [anon_sym_foreach] = ACTIONS(1488), - [anon_sym_foreach_r] = ACTIONS(1488), - [anon_sym_while] = ACTIONS(1488), - [anon_sym_do] = ACTIONS(1488), - [anon_sym_int] = ACTIONS(1488), - [anon_sym_PLUS] = ACTIONS(1488), - [anon_sym_DASH] = ACTIONS(1488), - [anon_sym_STAR] = ACTIONS(1490), - [anon_sym_asm] = ACTIONS(1488), - [anon_sym_DOLLARassert] = ACTIONS(1488), - [anon_sym_DOLLARerror] = ACTIONS(1488), - [anon_sym_DOLLARecho] = ACTIONS(1488), - [anon_sym_DOLLARif] = ACTIONS(1488), - [anon_sym_DOLLARswitch] = ACTIONS(1488), - [anon_sym_DOLLARfor] = ACTIONS(1488), - [anon_sym_DOLLARendfor] = ACTIONS(1488), - [anon_sym_DOLLARforeach] = ACTIONS(1488), - [anon_sym_DOLLARalignof] = ACTIONS(1488), - [anon_sym_DOLLARextnameof] = ACTIONS(1488), - [anon_sym_DOLLARnameof] = ACTIONS(1488), - [anon_sym_DOLLARoffsetof] = ACTIONS(1488), - [anon_sym_DOLLARqnameof] = ACTIONS(1488), - [anon_sym_DOLLARvaconst] = ACTIONS(1488), - [anon_sym_DOLLARvaarg] = ACTIONS(1488), - [anon_sym_DOLLARvaref] = ACTIONS(1488), - [anon_sym_DOLLARvaexpr] = ACTIONS(1488), - [anon_sym_true] = ACTIONS(1488), - [anon_sym_false] = ACTIONS(1488), - [anon_sym_null] = ACTIONS(1488), - [anon_sym_DOLLARvacount] = ACTIONS(1488), - [anon_sym_DOLLARappend] = ACTIONS(1488), - [anon_sym_DOLLARconcat] = ACTIONS(1488), - [anon_sym_DOLLAReval] = ACTIONS(1488), - [anon_sym_DOLLARis_const] = ACTIONS(1488), - [anon_sym_DOLLARsizeof] = ACTIONS(1488), - [anon_sym_DOLLARstringify] = ACTIONS(1488), - [anon_sym_DOLLARand] = ACTIONS(1488), - [anon_sym_DOLLARdefined] = ACTIONS(1488), - [anon_sym_DOLLARembed] = ACTIONS(1488), - [anon_sym_DOLLARor] = ACTIONS(1488), - [anon_sym_DOLLARfeature] = ACTIONS(1488), - [anon_sym_DOLLARassignable] = ACTIONS(1488), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1490), - [anon_sym_DASH_DASH] = ACTIONS(1490), - [anon_sym_typeid] = ACTIONS(1488), - [anon_sym_LBRACE_PIPE] = ACTIONS(1490), - [anon_sym_void] = ACTIONS(1488), - [anon_sym_bool] = ACTIONS(1488), - [anon_sym_char] = ACTIONS(1488), - [anon_sym_ichar] = ACTIONS(1488), - [anon_sym_short] = ACTIONS(1488), - [anon_sym_ushort] = ACTIONS(1488), - [anon_sym_uint] = ACTIONS(1488), - [anon_sym_long] = ACTIONS(1488), - [anon_sym_ulong] = ACTIONS(1488), - [anon_sym_int128] = ACTIONS(1488), - [anon_sym_uint128] = ACTIONS(1488), - [anon_sym_float] = ACTIONS(1488), - [anon_sym_double] = ACTIONS(1488), - [anon_sym_float16] = ACTIONS(1488), - [anon_sym_bfloat16] = ACTIONS(1488), - [anon_sym_float128] = ACTIONS(1488), - [anon_sym_iptr] = ACTIONS(1488), - [anon_sym_uptr] = ACTIONS(1488), - [anon_sym_isz] = ACTIONS(1488), - [anon_sym_usz] = ACTIONS(1488), - [anon_sym_anyfault] = ACTIONS(1488), - [anon_sym_any] = ACTIONS(1488), - [anon_sym_DOLLARtypeof] = ACTIONS(1488), - [anon_sym_DOLLARtypefrom] = ACTIONS(1488), - [anon_sym_DOLLARvatype] = ACTIONS(1488), - [anon_sym_DOLLARevaltype] = ACTIONS(1488), - [sym_real_literal] = ACTIONS(1490), + [sym_ident] = ACTIONS(1629), + [sym_integer_literal] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1631), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_BQUOTE] = ACTIONS(1631), + [sym_bytes_literal] = ACTIONS(1631), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1629), + [sym_at_ident] = ACTIONS(1631), + [sym_hash_ident] = ACTIONS(1631), + [sym_type_ident] = ACTIONS(1631), + [sym_ct_type_ident] = ACTIONS(1631), + [sym_const_ident] = ACTIONS(1629), + [sym_builtin] = ACTIONS(1631), + [anon_sym_LPAREN] = ACTIONS(1631), + [anon_sym_AMP] = ACTIONS(1629), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_tlocal] = ACTIONS(1629), + [anon_sym_SEMI] = ACTIONS(1631), + [anon_sym_fn] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1629), + [anon_sym_const] = ACTIONS(1629), + [anon_sym_var] = ACTIONS(1629), + [anon_sym_return] = ACTIONS(1629), + [anon_sym_continue] = ACTIONS(1629), + [anon_sym_break] = ACTIONS(1629), + [anon_sym_defer] = ACTIONS(1629), + [anon_sym_assert] = ACTIONS(1629), + [anon_sym_nextcase] = ACTIONS(1629), + [anon_sym_switch] = ACTIONS(1629), + [anon_sym_AMP_AMP] = ACTIONS(1631), + [anon_sym_if] = ACTIONS(1629), + [anon_sym_for] = ACTIONS(1629), + [anon_sym_foreach] = ACTIONS(1629), + [anon_sym_foreach_r] = ACTIONS(1629), + [anon_sym_while] = ACTIONS(1629), + [anon_sym_do] = ACTIONS(1629), + [anon_sym_int] = ACTIONS(1629), + [anon_sym_PLUS] = ACTIONS(1629), + [anon_sym_DASH] = ACTIONS(1629), + [anon_sym_STAR] = ACTIONS(1631), + [anon_sym_asm] = ACTIONS(1629), + [anon_sym_DOLLARassert] = ACTIONS(1629), + [anon_sym_DOLLARerror] = ACTIONS(1629), + [anon_sym_DOLLARecho] = ACTIONS(1629), + [anon_sym_DOLLARif] = ACTIONS(1629), + [anon_sym_DOLLARendif] = ACTIONS(1629), + [anon_sym_DOLLARswitch] = ACTIONS(1629), + [anon_sym_DOLLARfor] = ACTIONS(1629), + [anon_sym_DOLLARforeach] = ACTIONS(1629), + [anon_sym_DOLLARalignof] = ACTIONS(1629), + [anon_sym_DOLLARextnameof] = ACTIONS(1629), + [anon_sym_DOLLARnameof] = ACTIONS(1629), + [anon_sym_DOLLARoffsetof] = ACTIONS(1629), + [anon_sym_DOLLARqnameof] = ACTIONS(1629), + [anon_sym_DOLLARvaconst] = ACTIONS(1629), + [anon_sym_DOLLARvaarg] = ACTIONS(1629), + [anon_sym_DOLLARvaref] = ACTIONS(1629), + [anon_sym_DOLLARvaexpr] = ACTIONS(1629), + [anon_sym_true] = ACTIONS(1629), + [anon_sym_false] = ACTIONS(1629), + [anon_sym_null] = ACTIONS(1629), + [anon_sym_DOLLARvacount] = ACTIONS(1629), + [anon_sym_DOLLARappend] = ACTIONS(1629), + [anon_sym_DOLLARconcat] = ACTIONS(1629), + [anon_sym_DOLLAReval] = ACTIONS(1629), + [anon_sym_DOLLARis_const] = ACTIONS(1629), + [anon_sym_DOLLARsizeof] = ACTIONS(1629), + [anon_sym_DOLLARstringify] = ACTIONS(1629), + [anon_sym_DOLLARand] = ACTIONS(1629), + [anon_sym_DOLLARdefined] = ACTIONS(1629), + [anon_sym_DOLLARembed] = ACTIONS(1629), + [anon_sym_DOLLARor] = ACTIONS(1629), + [anon_sym_DOLLARfeature] = ACTIONS(1629), + [anon_sym_DOLLARassignable] = ACTIONS(1629), + [anon_sym_BANG] = ACTIONS(1631), + [anon_sym_TILDE] = ACTIONS(1631), + [anon_sym_PLUS_PLUS] = ACTIONS(1631), + [anon_sym_DASH_DASH] = ACTIONS(1631), + [anon_sym_typeid] = ACTIONS(1629), + [anon_sym_LBRACE_PIPE] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1629), + [anon_sym_bool] = ACTIONS(1629), + [anon_sym_char] = ACTIONS(1629), + [anon_sym_ichar] = ACTIONS(1629), + [anon_sym_short] = ACTIONS(1629), + [anon_sym_ushort] = ACTIONS(1629), + [anon_sym_uint] = ACTIONS(1629), + [anon_sym_long] = ACTIONS(1629), + [anon_sym_ulong] = ACTIONS(1629), + [anon_sym_int128] = ACTIONS(1629), + [anon_sym_uint128] = ACTIONS(1629), + [anon_sym_float] = ACTIONS(1629), + [anon_sym_double] = ACTIONS(1629), + [anon_sym_float16] = ACTIONS(1629), + [anon_sym_bfloat16] = ACTIONS(1629), + [anon_sym_float128] = ACTIONS(1629), + [anon_sym_iptr] = ACTIONS(1629), + [anon_sym_uptr] = ACTIONS(1629), + [anon_sym_isz] = ACTIONS(1629), + [anon_sym_usz] = ACTIONS(1629), + [anon_sym_anyfault] = ACTIONS(1629), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_DOLLARtypeof] = ACTIONS(1629), + [anon_sym_DOLLARtypefrom] = ACTIONS(1629), + [anon_sym_DOLLARvatype] = ACTIONS(1629), + [anon_sym_DOLLARevaltype] = ACTIONS(1629), + [sym_real_literal] = ACTIONS(1631), }, [742] = { [sym_line_comment] = STATE(742), [sym_doc_comment] = STATE(742), [sym_block_comment] = STATE(742), - [sym_ident] = ACTIONS(1508), - [sym_integer_literal] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1510), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_BQUOTE] = ACTIONS(1510), - [sym_bytes_literal] = ACTIONS(1510), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1508), - [sym_at_ident] = ACTIONS(1510), - [sym_hash_ident] = ACTIONS(1510), - [sym_type_ident] = ACTIONS(1510), - [sym_ct_type_ident] = ACTIONS(1510), - [sym_const_ident] = ACTIONS(1508), - [sym_builtin] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(1508), - [anon_sym_static] = ACTIONS(1508), - [anon_sym_tlocal] = ACTIONS(1508), - [anon_sym_SEMI] = ACTIONS(1510), - [anon_sym_fn] = ACTIONS(1508), - [anon_sym_LBRACE] = ACTIONS(1508), - [anon_sym_const] = ACTIONS(1508), - [anon_sym_var] = ACTIONS(1508), - [anon_sym_return] = ACTIONS(1508), - [anon_sym_continue] = ACTIONS(1508), - [anon_sym_break] = ACTIONS(1508), - [anon_sym_defer] = ACTIONS(1508), - [anon_sym_assert] = ACTIONS(1508), - [anon_sym_nextcase] = ACTIONS(1508), - [anon_sym_switch] = ACTIONS(1508), - [anon_sym_AMP_AMP] = ACTIONS(1510), - [anon_sym_if] = ACTIONS(1508), - [anon_sym_for] = ACTIONS(1508), - [anon_sym_foreach] = ACTIONS(1508), - [anon_sym_foreach_r] = ACTIONS(1508), - [anon_sym_while] = ACTIONS(1508), - [anon_sym_do] = ACTIONS(1508), - [anon_sym_int] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(1508), - [anon_sym_STAR] = ACTIONS(1510), - [anon_sym_asm] = ACTIONS(1508), - [anon_sym_DOLLARassert] = ACTIONS(1508), - [anon_sym_DOLLARerror] = ACTIONS(1508), - [anon_sym_DOLLARecho] = ACTIONS(1508), - [anon_sym_DOLLARif] = ACTIONS(1508), - [anon_sym_DOLLARswitch] = ACTIONS(1508), - [anon_sym_DOLLARfor] = ACTIONS(1508), - [anon_sym_DOLLARendfor] = ACTIONS(1508), - [anon_sym_DOLLARforeach] = ACTIONS(1508), - [anon_sym_DOLLARalignof] = ACTIONS(1508), - [anon_sym_DOLLARextnameof] = ACTIONS(1508), - [anon_sym_DOLLARnameof] = ACTIONS(1508), - [anon_sym_DOLLARoffsetof] = ACTIONS(1508), - [anon_sym_DOLLARqnameof] = ACTIONS(1508), - [anon_sym_DOLLARvaconst] = ACTIONS(1508), - [anon_sym_DOLLARvaarg] = ACTIONS(1508), - [anon_sym_DOLLARvaref] = ACTIONS(1508), - [anon_sym_DOLLARvaexpr] = ACTIONS(1508), - [anon_sym_true] = ACTIONS(1508), - [anon_sym_false] = ACTIONS(1508), - [anon_sym_null] = ACTIONS(1508), - [anon_sym_DOLLARvacount] = ACTIONS(1508), - [anon_sym_DOLLARappend] = ACTIONS(1508), - [anon_sym_DOLLARconcat] = ACTIONS(1508), - [anon_sym_DOLLAReval] = ACTIONS(1508), - [anon_sym_DOLLARis_const] = ACTIONS(1508), - [anon_sym_DOLLARsizeof] = ACTIONS(1508), - [anon_sym_DOLLARstringify] = ACTIONS(1508), - [anon_sym_DOLLARand] = ACTIONS(1508), - [anon_sym_DOLLARdefined] = ACTIONS(1508), - [anon_sym_DOLLARembed] = ACTIONS(1508), - [anon_sym_DOLLARor] = ACTIONS(1508), - [anon_sym_DOLLARfeature] = ACTIONS(1508), - [anon_sym_DOLLARassignable] = ACTIONS(1508), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_PLUS_PLUS] = ACTIONS(1510), - [anon_sym_DASH_DASH] = ACTIONS(1510), - [anon_sym_typeid] = ACTIONS(1508), - [anon_sym_LBRACE_PIPE] = ACTIONS(1510), - [anon_sym_void] = ACTIONS(1508), - [anon_sym_bool] = ACTIONS(1508), - [anon_sym_char] = ACTIONS(1508), - [anon_sym_ichar] = ACTIONS(1508), - [anon_sym_short] = ACTIONS(1508), - [anon_sym_ushort] = ACTIONS(1508), - [anon_sym_uint] = ACTIONS(1508), - [anon_sym_long] = ACTIONS(1508), - [anon_sym_ulong] = ACTIONS(1508), - [anon_sym_int128] = ACTIONS(1508), - [anon_sym_uint128] = ACTIONS(1508), - [anon_sym_float] = ACTIONS(1508), - [anon_sym_double] = ACTIONS(1508), - [anon_sym_float16] = ACTIONS(1508), - [anon_sym_bfloat16] = ACTIONS(1508), - [anon_sym_float128] = ACTIONS(1508), - [anon_sym_iptr] = ACTIONS(1508), - [anon_sym_uptr] = ACTIONS(1508), - [anon_sym_isz] = ACTIONS(1508), - [anon_sym_usz] = ACTIONS(1508), - [anon_sym_anyfault] = ACTIONS(1508), - [anon_sym_any] = ACTIONS(1508), - [anon_sym_DOLLARtypeof] = ACTIONS(1508), - [anon_sym_DOLLARtypefrom] = ACTIONS(1508), - [anon_sym_DOLLARvatype] = ACTIONS(1508), - [anon_sym_DOLLARevaltype] = ACTIONS(1508), - [sym_real_literal] = ACTIONS(1510), + [sym_ident] = ACTIONS(1609), + [sym_integer_literal] = ACTIONS(1611), + [anon_sym_SQUOTE] = ACTIONS(1611), + [anon_sym_DQUOTE] = ACTIONS(1611), + [anon_sym_BQUOTE] = ACTIONS(1611), + [sym_bytes_literal] = ACTIONS(1611), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1609), + [sym_at_ident] = ACTIONS(1611), + [sym_hash_ident] = ACTIONS(1611), + [sym_type_ident] = ACTIONS(1611), + [sym_ct_type_ident] = ACTIONS(1611), + [sym_const_ident] = ACTIONS(1609), + [sym_builtin] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1611), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_static] = ACTIONS(1609), + [anon_sym_tlocal] = ACTIONS(1609), + [anon_sym_SEMI] = ACTIONS(1611), + [anon_sym_fn] = ACTIONS(1609), + [anon_sym_LBRACE] = ACTIONS(1609), + [anon_sym_const] = ACTIONS(1609), + [anon_sym_var] = ACTIONS(1609), + [anon_sym_return] = ACTIONS(1609), + [anon_sym_continue] = ACTIONS(1609), + [anon_sym_break] = ACTIONS(1609), + [anon_sym_defer] = ACTIONS(1609), + [anon_sym_assert] = ACTIONS(1609), + [anon_sym_nextcase] = ACTIONS(1609), + [anon_sym_switch] = ACTIONS(1609), + [anon_sym_AMP_AMP] = ACTIONS(1611), + [anon_sym_if] = ACTIONS(1609), + [anon_sym_for] = ACTIONS(1609), + [anon_sym_foreach] = ACTIONS(1609), + [anon_sym_foreach_r] = ACTIONS(1609), + [anon_sym_while] = ACTIONS(1609), + [anon_sym_do] = ACTIONS(1609), + [anon_sym_int] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1609), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(1611), + [anon_sym_asm] = ACTIONS(1609), + [anon_sym_DOLLARassert] = ACTIONS(1609), + [anon_sym_DOLLARerror] = ACTIONS(1609), + [anon_sym_DOLLARecho] = ACTIONS(1609), + [anon_sym_DOLLARif] = ACTIONS(1609), + [anon_sym_DOLLARendif] = ACTIONS(1609), + [anon_sym_DOLLARswitch] = ACTIONS(1609), + [anon_sym_DOLLARfor] = ACTIONS(1609), + [anon_sym_DOLLARforeach] = ACTIONS(1609), + [anon_sym_DOLLARalignof] = ACTIONS(1609), + [anon_sym_DOLLARextnameof] = ACTIONS(1609), + [anon_sym_DOLLARnameof] = ACTIONS(1609), + [anon_sym_DOLLARoffsetof] = ACTIONS(1609), + [anon_sym_DOLLARqnameof] = ACTIONS(1609), + [anon_sym_DOLLARvaconst] = ACTIONS(1609), + [anon_sym_DOLLARvaarg] = ACTIONS(1609), + [anon_sym_DOLLARvaref] = ACTIONS(1609), + [anon_sym_DOLLARvaexpr] = ACTIONS(1609), + [anon_sym_true] = ACTIONS(1609), + [anon_sym_false] = ACTIONS(1609), + [anon_sym_null] = ACTIONS(1609), + [anon_sym_DOLLARvacount] = ACTIONS(1609), + [anon_sym_DOLLARappend] = ACTIONS(1609), + [anon_sym_DOLLARconcat] = ACTIONS(1609), + [anon_sym_DOLLAReval] = ACTIONS(1609), + [anon_sym_DOLLARis_const] = ACTIONS(1609), + [anon_sym_DOLLARsizeof] = ACTIONS(1609), + [anon_sym_DOLLARstringify] = ACTIONS(1609), + [anon_sym_DOLLARand] = ACTIONS(1609), + [anon_sym_DOLLARdefined] = ACTIONS(1609), + [anon_sym_DOLLARembed] = ACTIONS(1609), + [anon_sym_DOLLARor] = ACTIONS(1609), + [anon_sym_DOLLARfeature] = ACTIONS(1609), + [anon_sym_DOLLARassignable] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1611), + [anon_sym_TILDE] = ACTIONS(1611), + [anon_sym_PLUS_PLUS] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_typeid] = ACTIONS(1609), + [anon_sym_LBRACE_PIPE] = ACTIONS(1611), + [anon_sym_void] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_ichar] = ACTIONS(1609), + [anon_sym_short] = ACTIONS(1609), + [anon_sym_ushort] = ACTIONS(1609), + [anon_sym_uint] = ACTIONS(1609), + [anon_sym_long] = ACTIONS(1609), + [anon_sym_ulong] = ACTIONS(1609), + [anon_sym_int128] = ACTIONS(1609), + [anon_sym_uint128] = ACTIONS(1609), + [anon_sym_float] = ACTIONS(1609), + [anon_sym_double] = ACTIONS(1609), + [anon_sym_float16] = ACTIONS(1609), + [anon_sym_bfloat16] = ACTIONS(1609), + [anon_sym_float128] = ACTIONS(1609), + [anon_sym_iptr] = ACTIONS(1609), + [anon_sym_uptr] = ACTIONS(1609), + [anon_sym_isz] = ACTIONS(1609), + [anon_sym_usz] = ACTIONS(1609), + [anon_sym_anyfault] = ACTIONS(1609), + [anon_sym_any] = ACTIONS(1609), + [anon_sym_DOLLARtypeof] = ACTIONS(1609), + [anon_sym_DOLLARtypefrom] = ACTIONS(1609), + [anon_sym_DOLLARvatype] = ACTIONS(1609), + [anon_sym_DOLLARevaltype] = ACTIONS(1609), + [sym_real_literal] = ACTIONS(1611), }, [743] = { [sym_line_comment] = STATE(743), [sym_doc_comment] = STATE(743), [sym_block_comment] = STATE(743), - [sym_ident] = ACTIONS(1512), - [sym_integer_literal] = ACTIONS(1514), - [anon_sym_SQUOTE] = ACTIONS(1514), - [anon_sym_DQUOTE] = ACTIONS(1514), - [anon_sym_BQUOTE] = ACTIONS(1514), - [sym_bytes_literal] = ACTIONS(1514), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1512), - [sym_at_ident] = ACTIONS(1514), - [sym_hash_ident] = ACTIONS(1514), - [sym_type_ident] = ACTIONS(1514), - [sym_ct_type_ident] = ACTIONS(1514), - [sym_const_ident] = ACTIONS(1512), - [sym_builtin] = ACTIONS(1514), - [anon_sym_LPAREN] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(1512), - [anon_sym_static] = ACTIONS(1512), - [anon_sym_tlocal] = ACTIONS(1512), - [anon_sym_SEMI] = ACTIONS(1514), - [anon_sym_fn] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(1512), - [anon_sym_const] = ACTIONS(1512), - [anon_sym_var] = ACTIONS(1512), - [anon_sym_return] = ACTIONS(1512), - [anon_sym_continue] = ACTIONS(1512), - [anon_sym_break] = ACTIONS(1512), - [anon_sym_defer] = ACTIONS(1512), - [anon_sym_assert] = ACTIONS(1512), - [anon_sym_nextcase] = ACTIONS(1512), - [anon_sym_switch] = ACTIONS(1512), - [anon_sym_AMP_AMP] = ACTIONS(1514), - [anon_sym_if] = ACTIONS(1512), - [anon_sym_for] = ACTIONS(1512), - [anon_sym_foreach] = ACTIONS(1512), - [anon_sym_foreach_r] = ACTIONS(1512), - [anon_sym_while] = ACTIONS(1512), - [anon_sym_do] = ACTIONS(1512), - [anon_sym_int] = ACTIONS(1512), - [anon_sym_PLUS] = ACTIONS(1512), - [anon_sym_DASH] = ACTIONS(1512), - [anon_sym_STAR] = ACTIONS(1514), - [anon_sym_asm] = ACTIONS(1512), - [anon_sym_DOLLARassert] = ACTIONS(1512), - [anon_sym_DOLLARerror] = ACTIONS(1512), - [anon_sym_DOLLARecho] = ACTIONS(1512), - [anon_sym_DOLLARif] = ACTIONS(1512), - [anon_sym_DOLLARswitch] = ACTIONS(1512), - [anon_sym_DOLLARfor] = ACTIONS(1512), - [anon_sym_DOLLARendfor] = ACTIONS(1512), - [anon_sym_DOLLARforeach] = ACTIONS(1512), - [anon_sym_DOLLARalignof] = ACTIONS(1512), - [anon_sym_DOLLARextnameof] = ACTIONS(1512), - [anon_sym_DOLLARnameof] = ACTIONS(1512), - [anon_sym_DOLLARoffsetof] = ACTIONS(1512), - [anon_sym_DOLLARqnameof] = ACTIONS(1512), - [anon_sym_DOLLARvaconst] = ACTIONS(1512), - [anon_sym_DOLLARvaarg] = ACTIONS(1512), - [anon_sym_DOLLARvaref] = ACTIONS(1512), - [anon_sym_DOLLARvaexpr] = ACTIONS(1512), - [anon_sym_true] = ACTIONS(1512), - [anon_sym_false] = ACTIONS(1512), - [anon_sym_null] = ACTIONS(1512), - [anon_sym_DOLLARvacount] = ACTIONS(1512), - [anon_sym_DOLLARappend] = ACTIONS(1512), - [anon_sym_DOLLARconcat] = ACTIONS(1512), - [anon_sym_DOLLAReval] = ACTIONS(1512), - [anon_sym_DOLLARis_const] = ACTIONS(1512), - [anon_sym_DOLLARsizeof] = ACTIONS(1512), - [anon_sym_DOLLARstringify] = ACTIONS(1512), - [anon_sym_DOLLARand] = ACTIONS(1512), - [anon_sym_DOLLARdefined] = ACTIONS(1512), - [anon_sym_DOLLARembed] = ACTIONS(1512), - [anon_sym_DOLLARor] = ACTIONS(1512), - [anon_sym_DOLLARfeature] = ACTIONS(1512), - [anon_sym_DOLLARassignable] = ACTIONS(1512), - [anon_sym_BANG] = ACTIONS(1514), - [anon_sym_TILDE] = ACTIONS(1514), - [anon_sym_PLUS_PLUS] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1514), - [anon_sym_typeid] = ACTIONS(1512), - [anon_sym_LBRACE_PIPE] = ACTIONS(1514), - [anon_sym_void] = ACTIONS(1512), - [anon_sym_bool] = ACTIONS(1512), - [anon_sym_char] = ACTIONS(1512), - [anon_sym_ichar] = ACTIONS(1512), - [anon_sym_short] = ACTIONS(1512), - [anon_sym_ushort] = ACTIONS(1512), - [anon_sym_uint] = ACTIONS(1512), - [anon_sym_long] = ACTIONS(1512), - [anon_sym_ulong] = ACTIONS(1512), - [anon_sym_int128] = ACTIONS(1512), - [anon_sym_uint128] = ACTIONS(1512), - [anon_sym_float] = ACTIONS(1512), - [anon_sym_double] = ACTIONS(1512), - [anon_sym_float16] = ACTIONS(1512), - [anon_sym_bfloat16] = ACTIONS(1512), - [anon_sym_float128] = ACTIONS(1512), - [anon_sym_iptr] = ACTIONS(1512), - [anon_sym_uptr] = ACTIONS(1512), - [anon_sym_isz] = ACTIONS(1512), - [anon_sym_usz] = ACTIONS(1512), - [anon_sym_anyfault] = ACTIONS(1512), - [anon_sym_any] = ACTIONS(1512), - [anon_sym_DOLLARtypeof] = ACTIONS(1512), - [anon_sym_DOLLARtypefrom] = ACTIONS(1512), - [anon_sym_DOLLARvatype] = ACTIONS(1512), - [anon_sym_DOLLARevaltype] = ACTIONS(1512), - [sym_real_literal] = ACTIONS(1514), + [sym_ident] = ACTIONS(1605), + [sym_integer_literal] = ACTIONS(1607), + [anon_sym_SQUOTE] = ACTIONS(1607), + [anon_sym_DQUOTE] = ACTIONS(1607), + [anon_sym_BQUOTE] = ACTIONS(1607), + [sym_bytes_literal] = ACTIONS(1607), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1605), + [sym_at_ident] = ACTIONS(1607), + [sym_hash_ident] = ACTIONS(1607), + [sym_type_ident] = ACTIONS(1607), + [sym_ct_type_ident] = ACTIONS(1607), + [sym_const_ident] = ACTIONS(1605), + [sym_builtin] = ACTIONS(1607), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_static] = ACTIONS(1605), + [anon_sym_tlocal] = ACTIONS(1605), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_fn] = ACTIONS(1605), + [anon_sym_LBRACE] = ACTIONS(1605), + [anon_sym_const] = ACTIONS(1605), + [anon_sym_var] = ACTIONS(1605), + [anon_sym_return] = ACTIONS(1605), + [anon_sym_continue] = ACTIONS(1605), + [anon_sym_break] = ACTIONS(1605), + [anon_sym_defer] = ACTIONS(1605), + [anon_sym_assert] = ACTIONS(1605), + [anon_sym_nextcase] = ACTIONS(1605), + [anon_sym_switch] = ACTIONS(1605), + [anon_sym_AMP_AMP] = ACTIONS(1607), + [anon_sym_if] = ACTIONS(1605), + [anon_sym_for] = ACTIONS(1605), + [anon_sym_foreach] = ACTIONS(1605), + [anon_sym_foreach_r] = ACTIONS(1605), + [anon_sym_while] = ACTIONS(1605), + [anon_sym_do] = ACTIONS(1605), + [anon_sym_int] = ACTIONS(1605), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_asm] = ACTIONS(1605), + [anon_sym_DOLLARassert] = ACTIONS(1605), + [anon_sym_DOLLARerror] = ACTIONS(1605), + [anon_sym_DOLLARecho] = ACTIONS(1605), + [anon_sym_DOLLARif] = ACTIONS(1605), + [anon_sym_DOLLARendif] = ACTIONS(1605), + [anon_sym_DOLLARswitch] = ACTIONS(1605), + [anon_sym_DOLLARfor] = ACTIONS(1605), + [anon_sym_DOLLARforeach] = ACTIONS(1605), + [anon_sym_DOLLARalignof] = ACTIONS(1605), + [anon_sym_DOLLARextnameof] = ACTIONS(1605), + [anon_sym_DOLLARnameof] = ACTIONS(1605), + [anon_sym_DOLLARoffsetof] = ACTIONS(1605), + [anon_sym_DOLLARqnameof] = ACTIONS(1605), + [anon_sym_DOLLARvaconst] = ACTIONS(1605), + [anon_sym_DOLLARvaarg] = ACTIONS(1605), + [anon_sym_DOLLARvaref] = ACTIONS(1605), + [anon_sym_DOLLARvaexpr] = ACTIONS(1605), + [anon_sym_true] = ACTIONS(1605), + [anon_sym_false] = ACTIONS(1605), + [anon_sym_null] = ACTIONS(1605), + [anon_sym_DOLLARvacount] = ACTIONS(1605), + [anon_sym_DOLLARappend] = ACTIONS(1605), + [anon_sym_DOLLARconcat] = ACTIONS(1605), + [anon_sym_DOLLAReval] = ACTIONS(1605), + [anon_sym_DOLLARis_const] = ACTIONS(1605), + [anon_sym_DOLLARsizeof] = ACTIONS(1605), + [anon_sym_DOLLARstringify] = ACTIONS(1605), + [anon_sym_DOLLARand] = ACTIONS(1605), + [anon_sym_DOLLARdefined] = ACTIONS(1605), + [anon_sym_DOLLARembed] = ACTIONS(1605), + [anon_sym_DOLLARor] = ACTIONS(1605), + [anon_sym_DOLLARfeature] = ACTIONS(1605), + [anon_sym_DOLLARassignable] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [anon_sym_TILDE] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1607), + [anon_sym_DASH_DASH] = ACTIONS(1607), + [anon_sym_typeid] = ACTIONS(1605), + [anon_sym_LBRACE_PIPE] = ACTIONS(1607), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_bool] = ACTIONS(1605), + [anon_sym_char] = ACTIONS(1605), + [anon_sym_ichar] = ACTIONS(1605), + [anon_sym_short] = ACTIONS(1605), + [anon_sym_ushort] = ACTIONS(1605), + [anon_sym_uint] = ACTIONS(1605), + [anon_sym_long] = ACTIONS(1605), + [anon_sym_ulong] = ACTIONS(1605), + [anon_sym_int128] = ACTIONS(1605), + [anon_sym_uint128] = ACTIONS(1605), + [anon_sym_float] = ACTIONS(1605), + [anon_sym_double] = ACTIONS(1605), + [anon_sym_float16] = ACTIONS(1605), + [anon_sym_bfloat16] = ACTIONS(1605), + [anon_sym_float128] = ACTIONS(1605), + [anon_sym_iptr] = ACTIONS(1605), + [anon_sym_uptr] = ACTIONS(1605), + [anon_sym_isz] = ACTIONS(1605), + [anon_sym_usz] = ACTIONS(1605), + [anon_sym_anyfault] = ACTIONS(1605), + [anon_sym_any] = ACTIONS(1605), + [anon_sym_DOLLARtypeof] = ACTIONS(1605), + [anon_sym_DOLLARtypefrom] = ACTIONS(1605), + [anon_sym_DOLLARvatype] = ACTIONS(1605), + [anon_sym_DOLLARevaltype] = ACTIONS(1605), + [sym_real_literal] = ACTIONS(1607), }, [744] = { [sym_line_comment] = STATE(744), [sym_doc_comment] = STATE(744), [sym_block_comment] = STATE(744), - [sym_ident] = ACTIONS(1568), - [sym_integer_literal] = ACTIONS(1570), - [anon_sym_SQUOTE] = ACTIONS(1570), - [anon_sym_DQUOTE] = ACTIONS(1570), - [anon_sym_BQUOTE] = ACTIONS(1570), - [sym_bytes_literal] = ACTIONS(1570), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1568), - [sym_at_ident] = ACTIONS(1570), - [sym_hash_ident] = ACTIONS(1570), - [sym_type_ident] = ACTIONS(1570), - [sym_ct_type_ident] = ACTIONS(1570), - [sym_const_ident] = ACTIONS(1568), - [sym_builtin] = ACTIONS(1570), - [anon_sym_LPAREN] = ACTIONS(1570), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_static] = ACTIONS(1568), - [anon_sym_tlocal] = ACTIONS(1568), - [anon_sym_SEMI] = ACTIONS(1570), - [anon_sym_fn] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(1568), - [anon_sym_const] = ACTIONS(1568), - [anon_sym_var] = ACTIONS(1568), - [anon_sym_return] = ACTIONS(1568), - [anon_sym_continue] = ACTIONS(1568), - [anon_sym_break] = ACTIONS(1568), - [anon_sym_defer] = ACTIONS(1568), - [anon_sym_assert] = ACTIONS(1568), - [anon_sym_nextcase] = ACTIONS(1568), - [anon_sym_switch] = ACTIONS(1568), - [anon_sym_AMP_AMP] = ACTIONS(1570), - [anon_sym_if] = ACTIONS(1568), - [anon_sym_for] = ACTIONS(1568), - [anon_sym_foreach] = ACTIONS(1568), - [anon_sym_foreach_r] = ACTIONS(1568), - [anon_sym_while] = ACTIONS(1568), - [anon_sym_do] = ACTIONS(1568), - [anon_sym_int] = ACTIONS(1568), - [anon_sym_PLUS] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1568), - [anon_sym_STAR] = ACTIONS(1570), - [anon_sym_asm] = ACTIONS(1568), - [anon_sym_DOLLARassert] = ACTIONS(1568), - [anon_sym_DOLLARerror] = ACTIONS(1568), - [anon_sym_DOLLARecho] = ACTIONS(1568), - [anon_sym_DOLLARif] = ACTIONS(1568), - [anon_sym_DOLLARendif] = ACTIONS(1568), - [anon_sym_DOLLARswitch] = ACTIONS(1568), - [anon_sym_DOLLARfor] = ACTIONS(1568), - [anon_sym_DOLLARforeach] = ACTIONS(1568), - [anon_sym_DOLLARalignof] = ACTIONS(1568), - [anon_sym_DOLLARextnameof] = ACTIONS(1568), - [anon_sym_DOLLARnameof] = ACTIONS(1568), - [anon_sym_DOLLARoffsetof] = ACTIONS(1568), - [anon_sym_DOLLARqnameof] = ACTIONS(1568), - [anon_sym_DOLLARvaconst] = ACTIONS(1568), - [anon_sym_DOLLARvaarg] = ACTIONS(1568), - [anon_sym_DOLLARvaref] = ACTIONS(1568), - [anon_sym_DOLLARvaexpr] = ACTIONS(1568), - [anon_sym_true] = ACTIONS(1568), - [anon_sym_false] = ACTIONS(1568), - [anon_sym_null] = ACTIONS(1568), - [anon_sym_DOLLARvacount] = ACTIONS(1568), - [anon_sym_DOLLARappend] = ACTIONS(1568), - [anon_sym_DOLLARconcat] = ACTIONS(1568), - [anon_sym_DOLLAReval] = ACTIONS(1568), - [anon_sym_DOLLARis_const] = ACTIONS(1568), - [anon_sym_DOLLARsizeof] = ACTIONS(1568), - [anon_sym_DOLLARstringify] = ACTIONS(1568), - [anon_sym_DOLLARand] = ACTIONS(1568), - [anon_sym_DOLLARdefined] = ACTIONS(1568), - [anon_sym_DOLLARembed] = ACTIONS(1568), - [anon_sym_DOLLARor] = ACTIONS(1568), - [anon_sym_DOLLARfeature] = ACTIONS(1568), - [anon_sym_DOLLARassignable] = ACTIONS(1568), - [anon_sym_BANG] = ACTIONS(1570), - [anon_sym_TILDE] = ACTIONS(1570), - [anon_sym_PLUS_PLUS] = ACTIONS(1570), - [anon_sym_DASH_DASH] = ACTIONS(1570), - [anon_sym_typeid] = ACTIONS(1568), - [anon_sym_LBRACE_PIPE] = ACTIONS(1570), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_bool] = ACTIONS(1568), - [anon_sym_char] = ACTIONS(1568), - [anon_sym_ichar] = ACTIONS(1568), - [anon_sym_short] = ACTIONS(1568), - [anon_sym_ushort] = ACTIONS(1568), - [anon_sym_uint] = ACTIONS(1568), - [anon_sym_long] = ACTIONS(1568), - [anon_sym_ulong] = ACTIONS(1568), - [anon_sym_int128] = ACTIONS(1568), - [anon_sym_uint128] = ACTIONS(1568), - [anon_sym_float] = ACTIONS(1568), - [anon_sym_double] = ACTIONS(1568), - [anon_sym_float16] = ACTIONS(1568), - [anon_sym_bfloat16] = ACTIONS(1568), - [anon_sym_float128] = ACTIONS(1568), - [anon_sym_iptr] = ACTIONS(1568), - [anon_sym_uptr] = ACTIONS(1568), - [anon_sym_isz] = ACTIONS(1568), - [anon_sym_usz] = ACTIONS(1568), - [anon_sym_anyfault] = ACTIONS(1568), - [anon_sym_any] = ACTIONS(1568), - [anon_sym_DOLLARtypeof] = ACTIONS(1568), - [anon_sym_DOLLARtypefrom] = ACTIONS(1568), - [anon_sym_DOLLARvatype] = ACTIONS(1568), - [anon_sym_DOLLARevaltype] = ACTIONS(1568), - [sym_real_literal] = ACTIONS(1570), + [sym_ident] = ACTIONS(1371), + [sym_integer_literal] = ACTIONS(1373), + [anon_sym_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE] = ACTIONS(1373), + [anon_sym_BQUOTE] = ACTIONS(1373), + [sym_bytes_literal] = ACTIONS(1373), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1371), + [sym_at_ident] = ACTIONS(1373), + [sym_hash_ident] = ACTIONS(1373), + [sym_type_ident] = ACTIONS(1373), + [sym_ct_type_ident] = ACTIONS(1373), + [sym_const_ident] = ACTIONS(1371), + [sym_builtin] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(1373), + [anon_sym_AMP] = ACTIONS(1371), + [anon_sym_static] = ACTIONS(1371), + [anon_sym_tlocal] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_fn] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1371), + [anon_sym_const] = ACTIONS(1371), + [anon_sym_var] = ACTIONS(1371), + [anon_sym_return] = ACTIONS(1371), + [anon_sym_continue] = ACTIONS(1371), + [anon_sym_break] = ACTIONS(1371), + [anon_sym_defer] = ACTIONS(1371), + [anon_sym_assert] = ACTIONS(1371), + [anon_sym_nextcase] = ACTIONS(1371), + [anon_sym_switch] = ACTIONS(1371), + [anon_sym_AMP_AMP] = ACTIONS(1373), + [anon_sym_if] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1371), + [anon_sym_foreach] = ACTIONS(1371), + [anon_sym_foreach_r] = ACTIONS(1371), + [anon_sym_while] = ACTIONS(1371), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_int] = ACTIONS(1371), + [anon_sym_PLUS] = ACTIONS(1371), + [anon_sym_DASH] = ACTIONS(1371), + [anon_sym_STAR] = ACTIONS(1373), + [anon_sym_asm] = ACTIONS(1371), + [anon_sym_DOLLARassert] = ACTIONS(1371), + [anon_sym_DOLLARerror] = ACTIONS(1371), + [anon_sym_DOLLARecho] = ACTIONS(1371), + [anon_sym_DOLLARif] = ACTIONS(1371), + [anon_sym_DOLLARendif] = ACTIONS(1371), + [anon_sym_DOLLARswitch] = ACTIONS(1371), + [anon_sym_DOLLARfor] = ACTIONS(1371), + [anon_sym_DOLLARforeach] = ACTIONS(1371), + [anon_sym_DOLLARalignof] = ACTIONS(1371), + [anon_sym_DOLLARextnameof] = ACTIONS(1371), + [anon_sym_DOLLARnameof] = ACTIONS(1371), + [anon_sym_DOLLARoffsetof] = ACTIONS(1371), + [anon_sym_DOLLARqnameof] = ACTIONS(1371), + [anon_sym_DOLLARvaconst] = ACTIONS(1371), + [anon_sym_DOLLARvaarg] = ACTIONS(1371), + [anon_sym_DOLLARvaref] = ACTIONS(1371), + [anon_sym_DOLLARvaexpr] = ACTIONS(1371), + [anon_sym_true] = ACTIONS(1371), + [anon_sym_false] = ACTIONS(1371), + [anon_sym_null] = ACTIONS(1371), + [anon_sym_DOLLARvacount] = ACTIONS(1371), + [anon_sym_DOLLARappend] = ACTIONS(1371), + [anon_sym_DOLLARconcat] = ACTIONS(1371), + [anon_sym_DOLLAReval] = ACTIONS(1371), + [anon_sym_DOLLARis_const] = ACTIONS(1371), + [anon_sym_DOLLARsizeof] = ACTIONS(1371), + [anon_sym_DOLLARstringify] = ACTIONS(1371), + [anon_sym_DOLLARand] = ACTIONS(1371), + [anon_sym_DOLLARdefined] = ACTIONS(1371), + [anon_sym_DOLLARembed] = ACTIONS(1371), + [anon_sym_DOLLARor] = ACTIONS(1371), + [anon_sym_DOLLARfeature] = ACTIONS(1371), + [anon_sym_DOLLARassignable] = ACTIONS(1371), + [anon_sym_BANG] = ACTIONS(1373), + [anon_sym_TILDE] = ACTIONS(1373), + [anon_sym_PLUS_PLUS] = ACTIONS(1373), + [anon_sym_DASH_DASH] = ACTIONS(1373), + [anon_sym_typeid] = ACTIONS(1371), + [anon_sym_LBRACE_PIPE] = ACTIONS(1373), + [anon_sym_void] = ACTIONS(1371), + [anon_sym_bool] = ACTIONS(1371), + [anon_sym_char] = ACTIONS(1371), + [anon_sym_ichar] = ACTIONS(1371), + [anon_sym_short] = ACTIONS(1371), + [anon_sym_ushort] = ACTIONS(1371), + [anon_sym_uint] = ACTIONS(1371), + [anon_sym_long] = ACTIONS(1371), + [anon_sym_ulong] = ACTIONS(1371), + [anon_sym_int128] = ACTIONS(1371), + [anon_sym_uint128] = ACTIONS(1371), + [anon_sym_float] = ACTIONS(1371), + [anon_sym_double] = ACTIONS(1371), + [anon_sym_float16] = ACTIONS(1371), + [anon_sym_bfloat16] = ACTIONS(1371), + [anon_sym_float128] = ACTIONS(1371), + [anon_sym_iptr] = ACTIONS(1371), + [anon_sym_uptr] = ACTIONS(1371), + [anon_sym_isz] = ACTIONS(1371), + [anon_sym_usz] = ACTIONS(1371), + [anon_sym_anyfault] = ACTIONS(1371), + [anon_sym_any] = ACTIONS(1371), + [anon_sym_DOLLARtypeof] = ACTIONS(1371), + [anon_sym_DOLLARtypefrom] = ACTIONS(1371), + [anon_sym_DOLLARvatype] = ACTIONS(1371), + [anon_sym_DOLLARevaltype] = ACTIONS(1371), + [sym_real_literal] = ACTIONS(1373), }, [745] = { [sym_line_comment] = STATE(745), [sym_doc_comment] = STATE(745), [sym_block_comment] = STATE(745), - [sym_ident] = ACTIONS(1548), - [sym_integer_literal] = ACTIONS(1550), - [anon_sym_SQUOTE] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1550), - [anon_sym_BQUOTE] = ACTIONS(1550), - [sym_bytes_literal] = ACTIONS(1550), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1548), - [sym_at_ident] = ACTIONS(1550), - [sym_hash_ident] = ACTIONS(1550), - [sym_type_ident] = ACTIONS(1550), - [sym_ct_type_ident] = ACTIONS(1550), - [sym_const_ident] = ACTIONS(1548), - [sym_builtin] = ACTIONS(1550), - [anon_sym_LPAREN] = ACTIONS(1550), - [anon_sym_AMP] = ACTIONS(1548), - [anon_sym_static] = ACTIONS(1548), - [anon_sym_tlocal] = ACTIONS(1548), - [anon_sym_SEMI] = ACTIONS(1550), - [anon_sym_fn] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(1548), - [anon_sym_const] = ACTIONS(1548), - [anon_sym_var] = ACTIONS(1548), - [anon_sym_return] = ACTIONS(1548), - [anon_sym_continue] = ACTIONS(1548), - [anon_sym_break] = ACTIONS(1548), - [anon_sym_defer] = ACTIONS(1548), - [anon_sym_assert] = ACTIONS(1548), - [anon_sym_nextcase] = ACTIONS(1548), - [anon_sym_switch] = ACTIONS(1548), - [anon_sym_AMP_AMP] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(1548), - [anon_sym_for] = ACTIONS(1548), - [anon_sym_foreach] = ACTIONS(1548), - [anon_sym_foreach_r] = ACTIONS(1548), - [anon_sym_while] = ACTIONS(1548), - [anon_sym_do] = ACTIONS(1548), - [anon_sym_int] = ACTIONS(1548), - [anon_sym_PLUS] = ACTIONS(1548), - [anon_sym_DASH] = ACTIONS(1548), - [anon_sym_STAR] = ACTIONS(1550), - [anon_sym_asm] = ACTIONS(1548), - [anon_sym_DOLLARassert] = ACTIONS(1548), - [anon_sym_DOLLARerror] = ACTIONS(1548), - [anon_sym_DOLLARecho] = ACTIONS(1548), - [anon_sym_DOLLARif] = ACTIONS(1548), - [anon_sym_DOLLARswitch] = ACTIONS(1548), - [anon_sym_DOLLARfor] = ACTIONS(1548), - [anon_sym_DOLLARendfor] = ACTIONS(1548), - [anon_sym_DOLLARforeach] = ACTIONS(1548), - [anon_sym_DOLLARalignof] = ACTIONS(1548), - [anon_sym_DOLLARextnameof] = ACTIONS(1548), - [anon_sym_DOLLARnameof] = ACTIONS(1548), - [anon_sym_DOLLARoffsetof] = ACTIONS(1548), - [anon_sym_DOLLARqnameof] = ACTIONS(1548), - [anon_sym_DOLLARvaconst] = ACTIONS(1548), - [anon_sym_DOLLARvaarg] = ACTIONS(1548), - [anon_sym_DOLLARvaref] = ACTIONS(1548), - [anon_sym_DOLLARvaexpr] = ACTIONS(1548), - [anon_sym_true] = ACTIONS(1548), - [anon_sym_false] = ACTIONS(1548), - [anon_sym_null] = ACTIONS(1548), - [anon_sym_DOLLARvacount] = ACTIONS(1548), - [anon_sym_DOLLARappend] = ACTIONS(1548), - [anon_sym_DOLLARconcat] = ACTIONS(1548), - [anon_sym_DOLLAReval] = ACTIONS(1548), - [anon_sym_DOLLARis_const] = ACTIONS(1548), - [anon_sym_DOLLARsizeof] = ACTIONS(1548), - [anon_sym_DOLLARstringify] = ACTIONS(1548), - [anon_sym_DOLLARand] = ACTIONS(1548), - [anon_sym_DOLLARdefined] = ACTIONS(1548), - [anon_sym_DOLLARembed] = ACTIONS(1548), - [anon_sym_DOLLARor] = ACTIONS(1548), - [anon_sym_DOLLARfeature] = ACTIONS(1548), - [anon_sym_DOLLARassignable] = ACTIONS(1548), - [anon_sym_BANG] = ACTIONS(1550), - [anon_sym_TILDE] = ACTIONS(1550), - [anon_sym_PLUS_PLUS] = ACTIONS(1550), - [anon_sym_DASH_DASH] = ACTIONS(1550), - [anon_sym_typeid] = ACTIONS(1548), - [anon_sym_LBRACE_PIPE] = ACTIONS(1550), - [anon_sym_void] = ACTIONS(1548), - [anon_sym_bool] = ACTIONS(1548), - [anon_sym_char] = ACTIONS(1548), - [anon_sym_ichar] = ACTIONS(1548), - [anon_sym_short] = ACTIONS(1548), - [anon_sym_ushort] = ACTIONS(1548), - [anon_sym_uint] = ACTIONS(1548), - [anon_sym_long] = ACTIONS(1548), - [anon_sym_ulong] = ACTIONS(1548), - [anon_sym_int128] = ACTIONS(1548), - [anon_sym_uint128] = ACTIONS(1548), - [anon_sym_float] = ACTIONS(1548), - [anon_sym_double] = ACTIONS(1548), - [anon_sym_float16] = ACTIONS(1548), - [anon_sym_bfloat16] = ACTIONS(1548), - [anon_sym_float128] = ACTIONS(1548), - [anon_sym_iptr] = ACTIONS(1548), - [anon_sym_uptr] = ACTIONS(1548), - [anon_sym_isz] = ACTIONS(1548), - [anon_sym_usz] = ACTIONS(1548), - [anon_sym_anyfault] = ACTIONS(1548), - [anon_sym_any] = ACTIONS(1548), - [anon_sym_DOLLARtypeof] = ACTIONS(1548), - [anon_sym_DOLLARtypefrom] = ACTIONS(1548), - [anon_sym_DOLLARvatype] = ACTIONS(1548), - [anon_sym_DOLLARevaltype] = ACTIONS(1548), - [sym_real_literal] = ACTIONS(1550), + [sym_ident] = ACTIONS(1343), + [sym_integer_literal] = ACTIONS(1345), + [anon_sym_SQUOTE] = ACTIONS(1345), + [anon_sym_DQUOTE] = ACTIONS(1345), + [anon_sym_BQUOTE] = ACTIONS(1345), + [sym_bytes_literal] = ACTIONS(1345), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1343), + [sym_at_ident] = ACTIONS(1345), + [sym_hash_ident] = ACTIONS(1345), + [sym_type_ident] = ACTIONS(1345), + [sym_ct_type_ident] = ACTIONS(1345), + [sym_const_ident] = ACTIONS(1343), + [sym_builtin] = ACTIONS(1345), + [anon_sym_LPAREN] = ACTIONS(1345), + [anon_sym_AMP] = ACTIONS(1343), + [anon_sym_static] = ACTIONS(1343), + [anon_sym_tlocal] = ACTIONS(1343), + [anon_sym_SEMI] = ACTIONS(1345), + [anon_sym_fn] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1343), + [anon_sym_const] = ACTIONS(1343), + [anon_sym_var] = ACTIONS(1343), + [anon_sym_return] = ACTIONS(1343), + [anon_sym_continue] = ACTIONS(1343), + [anon_sym_break] = ACTIONS(1343), + [anon_sym_defer] = ACTIONS(1343), + [anon_sym_assert] = ACTIONS(1343), + [anon_sym_nextcase] = ACTIONS(1343), + [anon_sym_switch] = ACTIONS(1343), + [anon_sym_AMP_AMP] = ACTIONS(1345), + [anon_sym_if] = ACTIONS(1343), + [anon_sym_for] = ACTIONS(1343), + [anon_sym_foreach] = ACTIONS(1343), + [anon_sym_foreach_r] = ACTIONS(1343), + [anon_sym_while] = ACTIONS(1343), + [anon_sym_do] = ACTIONS(1343), + [anon_sym_int] = ACTIONS(1343), + [anon_sym_PLUS] = ACTIONS(1343), + [anon_sym_DASH] = ACTIONS(1343), + [anon_sym_STAR] = ACTIONS(1345), + [anon_sym_asm] = ACTIONS(1343), + [anon_sym_DOLLARassert] = ACTIONS(1343), + [anon_sym_DOLLARerror] = ACTIONS(1343), + [anon_sym_DOLLARecho] = ACTIONS(1343), + [anon_sym_DOLLARif] = ACTIONS(1343), + [anon_sym_DOLLARendif] = ACTIONS(1343), + [anon_sym_DOLLARswitch] = ACTIONS(1343), + [anon_sym_DOLLARfor] = ACTIONS(1343), + [anon_sym_DOLLARforeach] = ACTIONS(1343), + [anon_sym_DOLLARalignof] = ACTIONS(1343), + [anon_sym_DOLLARextnameof] = ACTIONS(1343), + [anon_sym_DOLLARnameof] = ACTIONS(1343), + [anon_sym_DOLLARoffsetof] = ACTIONS(1343), + [anon_sym_DOLLARqnameof] = ACTIONS(1343), + [anon_sym_DOLLARvaconst] = ACTIONS(1343), + [anon_sym_DOLLARvaarg] = ACTIONS(1343), + [anon_sym_DOLLARvaref] = ACTIONS(1343), + [anon_sym_DOLLARvaexpr] = ACTIONS(1343), + [anon_sym_true] = ACTIONS(1343), + [anon_sym_false] = ACTIONS(1343), + [anon_sym_null] = ACTIONS(1343), + [anon_sym_DOLLARvacount] = ACTIONS(1343), + [anon_sym_DOLLARappend] = ACTIONS(1343), + [anon_sym_DOLLARconcat] = ACTIONS(1343), + [anon_sym_DOLLAReval] = ACTIONS(1343), + [anon_sym_DOLLARis_const] = ACTIONS(1343), + [anon_sym_DOLLARsizeof] = ACTIONS(1343), + [anon_sym_DOLLARstringify] = ACTIONS(1343), + [anon_sym_DOLLARand] = ACTIONS(1343), + [anon_sym_DOLLARdefined] = ACTIONS(1343), + [anon_sym_DOLLARembed] = ACTIONS(1343), + [anon_sym_DOLLARor] = ACTIONS(1343), + [anon_sym_DOLLARfeature] = ACTIONS(1343), + [anon_sym_DOLLARassignable] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(1345), + [anon_sym_TILDE] = ACTIONS(1345), + [anon_sym_PLUS_PLUS] = ACTIONS(1345), + [anon_sym_DASH_DASH] = ACTIONS(1345), + [anon_sym_typeid] = ACTIONS(1343), + [anon_sym_LBRACE_PIPE] = ACTIONS(1345), + [anon_sym_void] = ACTIONS(1343), + [anon_sym_bool] = ACTIONS(1343), + [anon_sym_char] = ACTIONS(1343), + [anon_sym_ichar] = ACTIONS(1343), + [anon_sym_short] = ACTIONS(1343), + [anon_sym_ushort] = ACTIONS(1343), + [anon_sym_uint] = ACTIONS(1343), + [anon_sym_long] = ACTIONS(1343), + [anon_sym_ulong] = ACTIONS(1343), + [anon_sym_int128] = ACTIONS(1343), + [anon_sym_uint128] = ACTIONS(1343), + [anon_sym_float] = ACTIONS(1343), + [anon_sym_double] = ACTIONS(1343), + [anon_sym_float16] = ACTIONS(1343), + [anon_sym_bfloat16] = ACTIONS(1343), + [anon_sym_float128] = ACTIONS(1343), + [anon_sym_iptr] = ACTIONS(1343), + [anon_sym_uptr] = ACTIONS(1343), + [anon_sym_isz] = ACTIONS(1343), + [anon_sym_usz] = ACTIONS(1343), + [anon_sym_anyfault] = ACTIONS(1343), + [anon_sym_any] = ACTIONS(1343), + [anon_sym_DOLLARtypeof] = ACTIONS(1343), + [anon_sym_DOLLARtypefrom] = ACTIONS(1343), + [anon_sym_DOLLARvatype] = ACTIONS(1343), + [anon_sym_DOLLARevaltype] = ACTIONS(1343), + [sym_real_literal] = ACTIONS(1345), }, [746] = { [sym_line_comment] = STATE(746), [sym_doc_comment] = STATE(746), [sym_block_comment] = STATE(746), - [sym_ident] = ACTIONS(1644), - [sym_integer_literal] = ACTIONS(1646), - [anon_sym_SQUOTE] = ACTIONS(1646), - [anon_sym_DQUOTE] = ACTIONS(1646), - [anon_sym_BQUOTE] = ACTIONS(1646), - [sym_bytes_literal] = ACTIONS(1646), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1644), - [sym_at_ident] = ACTIONS(1646), - [sym_hash_ident] = ACTIONS(1646), - [sym_type_ident] = ACTIONS(1646), - [sym_ct_type_ident] = ACTIONS(1646), - [sym_const_ident] = ACTIONS(1644), - [sym_builtin] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(1646), - [anon_sym_AMP] = ACTIONS(1644), - [anon_sym_static] = ACTIONS(1644), - [anon_sym_tlocal] = ACTIONS(1644), - [anon_sym_SEMI] = ACTIONS(1646), - [anon_sym_fn] = ACTIONS(1644), - [anon_sym_LBRACE] = ACTIONS(1644), - [anon_sym_const] = ACTIONS(1644), - [anon_sym_var] = ACTIONS(1644), - [anon_sym_return] = ACTIONS(1644), - [anon_sym_continue] = ACTIONS(1644), - [anon_sym_break] = ACTIONS(1644), - [anon_sym_defer] = ACTIONS(1644), - [anon_sym_assert] = ACTIONS(1644), - [anon_sym_nextcase] = ACTIONS(1644), - [anon_sym_switch] = ACTIONS(1644), - [anon_sym_AMP_AMP] = ACTIONS(1646), - [anon_sym_if] = ACTIONS(1644), - [anon_sym_for] = ACTIONS(1644), - [anon_sym_foreach] = ACTIONS(1644), - [anon_sym_foreach_r] = ACTIONS(1644), - [anon_sym_while] = ACTIONS(1644), - [anon_sym_do] = ACTIONS(1644), - [anon_sym_int] = ACTIONS(1644), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_asm] = ACTIONS(1644), - [anon_sym_DOLLARassert] = ACTIONS(1644), - [anon_sym_DOLLARerror] = ACTIONS(1644), - [anon_sym_DOLLARecho] = ACTIONS(1644), - [anon_sym_DOLLARif] = ACTIONS(1644), - [anon_sym_DOLLARswitch] = ACTIONS(1644), - [anon_sym_DOLLARfor] = ACTIONS(1644), - [anon_sym_DOLLARendfor] = ACTIONS(1644), - [anon_sym_DOLLARforeach] = ACTIONS(1644), - [anon_sym_DOLLARalignof] = ACTIONS(1644), - [anon_sym_DOLLARextnameof] = ACTIONS(1644), - [anon_sym_DOLLARnameof] = ACTIONS(1644), - [anon_sym_DOLLARoffsetof] = ACTIONS(1644), - [anon_sym_DOLLARqnameof] = ACTIONS(1644), - [anon_sym_DOLLARvaconst] = ACTIONS(1644), - [anon_sym_DOLLARvaarg] = ACTIONS(1644), - [anon_sym_DOLLARvaref] = ACTIONS(1644), - [anon_sym_DOLLARvaexpr] = ACTIONS(1644), - [anon_sym_true] = ACTIONS(1644), - [anon_sym_false] = ACTIONS(1644), - [anon_sym_null] = ACTIONS(1644), - [anon_sym_DOLLARvacount] = ACTIONS(1644), - [anon_sym_DOLLARappend] = ACTIONS(1644), - [anon_sym_DOLLARconcat] = ACTIONS(1644), - [anon_sym_DOLLAReval] = ACTIONS(1644), - [anon_sym_DOLLARis_const] = ACTIONS(1644), - [anon_sym_DOLLARsizeof] = ACTIONS(1644), - [anon_sym_DOLLARstringify] = ACTIONS(1644), - [anon_sym_DOLLARand] = ACTIONS(1644), - [anon_sym_DOLLARdefined] = ACTIONS(1644), - [anon_sym_DOLLARembed] = ACTIONS(1644), - [anon_sym_DOLLARor] = ACTIONS(1644), - [anon_sym_DOLLARfeature] = ACTIONS(1644), - [anon_sym_DOLLARassignable] = ACTIONS(1644), - [anon_sym_BANG] = ACTIONS(1646), - [anon_sym_TILDE] = ACTIONS(1646), - [anon_sym_PLUS_PLUS] = ACTIONS(1646), - [anon_sym_DASH_DASH] = ACTIONS(1646), - [anon_sym_typeid] = ACTIONS(1644), - [anon_sym_LBRACE_PIPE] = ACTIONS(1646), - [anon_sym_void] = ACTIONS(1644), - [anon_sym_bool] = ACTIONS(1644), - [anon_sym_char] = ACTIONS(1644), - [anon_sym_ichar] = ACTIONS(1644), - [anon_sym_short] = ACTIONS(1644), - [anon_sym_ushort] = ACTIONS(1644), - [anon_sym_uint] = ACTIONS(1644), - [anon_sym_long] = ACTIONS(1644), - [anon_sym_ulong] = ACTIONS(1644), - [anon_sym_int128] = ACTIONS(1644), - [anon_sym_uint128] = ACTIONS(1644), - [anon_sym_float] = ACTIONS(1644), - [anon_sym_double] = ACTIONS(1644), - [anon_sym_float16] = ACTIONS(1644), - [anon_sym_bfloat16] = ACTIONS(1644), - [anon_sym_float128] = ACTIONS(1644), - [anon_sym_iptr] = ACTIONS(1644), - [anon_sym_uptr] = ACTIONS(1644), - [anon_sym_isz] = ACTIONS(1644), - [anon_sym_usz] = ACTIONS(1644), - [anon_sym_anyfault] = ACTIONS(1644), - [anon_sym_any] = ACTIONS(1644), - [anon_sym_DOLLARtypeof] = ACTIONS(1644), - [anon_sym_DOLLARtypefrom] = ACTIONS(1644), - [anon_sym_DOLLARvatype] = ACTIONS(1644), - [anon_sym_DOLLARevaltype] = ACTIONS(1644), - [sym_real_literal] = ACTIONS(1646), + [sym_ident] = ACTIONS(1589), + [sym_integer_literal] = ACTIONS(1591), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1591), + [anon_sym_BQUOTE] = ACTIONS(1591), + [sym_bytes_literal] = ACTIONS(1591), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1589), + [sym_at_ident] = ACTIONS(1591), + [sym_hash_ident] = ACTIONS(1591), + [sym_type_ident] = ACTIONS(1591), + [sym_ct_type_ident] = ACTIONS(1591), + [sym_const_ident] = ACTIONS(1589), + [sym_builtin] = ACTIONS(1591), + [anon_sym_LPAREN] = ACTIONS(1591), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_static] = ACTIONS(1589), + [anon_sym_tlocal] = ACTIONS(1589), + [anon_sym_SEMI] = ACTIONS(1591), + [anon_sym_fn] = ACTIONS(1589), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_const] = ACTIONS(1589), + [anon_sym_var] = ACTIONS(1589), + [anon_sym_return] = ACTIONS(1589), + [anon_sym_continue] = ACTIONS(1589), + [anon_sym_break] = ACTIONS(1589), + [anon_sym_defer] = ACTIONS(1589), + [anon_sym_assert] = ACTIONS(1589), + [anon_sym_nextcase] = ACTIONS(1589), + [anon_sym_switch] = ACTIONS(1589), + [anon_sym_AMP_AMP] = ACTIONS(1591), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_for] = ACTIONS(1589), + [anon_sym_foreach] = ACTIONS(1589), + [anon_sym_foreach_r] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1589), + [anon_sym_do] = ACTIONS(1589), + [anon_sym_int] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1589), + [anon_sym_STAR] = ACTIONS(1591), + [anon_sym_asm] = ACTIONS(1589), + [anon_sym_DOLLARassert] = ACTIONS(1589), + [anon_sym_DOLLARerror] = ACTIONS(1589), + [anon_sym_DOLLARecho] = ACTIONS(1589), + [anon_sym_DOLLARif] = ACTIONS(1589), + [anon_sym_DOLLARendif] = ACTIONS(1589), + [anon_sym_DOLLARswitch] = ACTIONS(1589), + [anon_sym_DOLLARfor] = ACTIONS(1589), + [anon_sym_DOLLARforeach] = ACTIONS(1589), + [anon_sym_DOLLARalignof] = ACTIONS(1589), + [anon_sym_DOLLARextnameof] = ACTIONS(1589), + [anon_sym_DOLLARnameof] = ACTIONS(1589), + [anon_sym_DOLLARoffsetof] = ACTIONS(1589), + [anon_sym_DOLLARqnameof] = ACTIONS(1589), + [anon_sym_DOLLARvaconst] = ACTIONS(1589), + [anon_sym_DOLLARvaarg] = ACTIONS(1589), + [anon_sym_DOLLARvaref] = ACTIONS(1589), + [anon_sym_DOLLARvaexpr] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1589), + [anon_sym_false] = ACTIONS(1589), + [anon_sym_null] = ACTIONS(1589), + [anon_sym_DOLLARvacount] = ACTIONS(1589), + [anon_sym_DOLLARappend] = ACTIONS(1589), + [anon_sym_DOLLARconcat] = ACTIONS(1589), + [anon_sym_DOLLAReval] = ACTIONS(1589), + [anon_sym_DOLLARis_const] = ACTIONS(1589), + [anon_sym_DOLLARsizeof] = ACTIONS(1589), + [anon_sym_DOLLARstringify] = ACTIONS(1589), + [anon_sym_DOLLARand] = ACTIONS(1589), + [anon_sym_DOLLARdefined] = ACTIONS(1589), + [anon_sym_DOLLARembed] = ACTIONS(1589), + [anon_sym_DOLLARor] = ACTIONS(1589), + [anon_sym_DOLLARfeature] = ACTIONS(1589), + [anon_sym_DOLLARassignable] = ACTIONS(1589), + [anon_sym_BANG] = ACTIONS(1591), + [anon_sym_TILDE] = ACTIONS(1591), + [anon_sym_PLUS_PLUS] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1591), + [anon_sym_typeid] = ACTIONS(1589), + [anon_sym_LBRACE_PIPE] = ACTIONS(1591), + [anon_sym_void] = ACTIONS(1589), + [anon_sym_bool] = ACTIONS(1589), + [anon_sym_char] = ACTIONS(1589), + [anon_sym_ichar] = ACTIONS(1589), + [anon_sym_short] = ACTIONS(1589), + [anon_sym_ushort] = ACTIONS(1589), + [anon_sym_uint] = ACTIONS(1589), + [anon_sym_long] = ACTIONS(1589), + [anon_sym_ulong] = ACTIONS(1589), + [anon_sym_int128] = ACTIONS(1589), + [anon_sym_uint128] = ACTIONS(1589), + [anon_sym_float] = ACTIONS(1589), + [anon_sym_double] = ACTIONS(1589), + [anon_sym_float16] = ACTIONS(1589), + [anon_sym_bfloat16] = ACTIONS(1589), + [anon_sym_float128] = ACTIONS(1589), + [anon_sym_iptr] = ACTIONS(1589), + [anon_sym_uptr] = ACTIONS(1589), + [anon_sym_isz] = ACTIONS(1589), + [anon_sym_usz] = ACTIONS(1589), + [anon_sym_anyfault] = ACTIONS(1589), + [anon_sym_any] = ACTIONS(1589), + [anon_sym_DOLLARtypeof] = ACTIONS(1589), + [anon_sym_DOLLARtypefrom] = ACTIONS(1589), + [anon_sym_DOLLARvatype] = ACTIONS(1589), + [anon_sym_DOLLARevaltype] = ACTIONS(1589), + [sym_real_literal] = ACTIONS(1591), }, [747] = { [sym_line_comment] = STATE(747), [sym_doc_comment] = STATE(747), [sym_block_comment] = STATE(747), - [sym_ident] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(1622), - [anon_sym_SQUOTE] = ACTIONS(1622), - [anon_sym_DQUOTE] = ACTIONS(1622), - [anon_sym_BQUOTE] = ACTIONS(1622), - [sym_bytes_literal] = ACTIONS(1622), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1620), - [sym_at_ident] = ACTIONS(1622), - [sym_hash_ident] = ACTIONS(1622), - [sym_type_ident] = ACTIONS(1622), - [sym_ct_type_ident] = ACTIONS(1622), - [sym_const_ident] = ACTIONS(1620), - [sym_builtin] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(1622), - [anon_sym_AMP] = ACTIONS(1620), - [anon_sym_static] = ACTIONS(1620), - [anon_sym_tlocal] = ACTIONS(1620), - [anon_sym_SEMI] = ACTIONS(1622), - [anon_sym_fn] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1620), - [anon_sym_const] = ACTIONS(1620), - [anon_sym_var] = ACTIONS(1620), - [anon_sym_return] = ACTIONS(1620), - [anon_sym_continue] = ACTIONS(1620), - [anon_sym_break] = ACTIONS(1620), - [anon_sym_defer] = ACTIONS(1620), - [anon_sym_assert] = ACTIONS(1620), - [anon_sym_nextcase] = ACTIONS(1620), - [anon_sym_switch] = ACTIONS(1620), - [anon_sym_AMP_AMP] = ACTIONS(1622), - [anon_sym_if] = ACTIONS(1620), - [anon_sym_for] = ACTIONS(1620), - [anon_sym_foreach] = ACTIONS(1620), - [anon_sym_foreach_r] = ACTIONS(1620), - [anon_sym_while] = ACTIONS(1620), - [anon_sym_do] = ACTIONS(1620), - [anon_sym_int] = ACTIONS(1620), - [anon_sym_PLUS] = ACTIONS(1620), - [anon_sym_DASH] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1622), - [anon_sym_asm] = ACTIONS(1620), - [anon_sym_DOLLARassert] = ACTIONS(1620), - [anon_sym_DOLLARerror] = ACTIONS(1620), - [anon_sym_DOLLARecho] = ACTIONS(1620), - [anon_sym_DOLLARif] = ACTIONS(1620), - [anon_sym_DOLLARswitch] = ACTIONS(1620), - [anon_sym_DOLLARfor] = ACTIONS(1620), - [anon_sym_DOLLARendfor] = ACTIONS(1620), - [anon_sym_DOLLARforeach] = ACTIONS(1620), - [anon_sym_DOLLARalignof] = ACTIONS(1620), - [anon_sym_DOLLARextnameof] = ACTIONS(1620), - [anon_sym_DOLLARnameof] = ACTIONS(1620), - [anon_sym_DOLLARoffsetof] = ACTIONS(1620), - [anon_sym_DOLLARqnameof] = ACTIONS(1620), - [anon_sym_DOLLARvaconst] = ACTIONS(1620), - [anon_sym_DOLLARvaarg] = ACTIONS(1620), - [anon_sym_DOLLARvaref] = ACTIONS(1620), - [anon_sym_DOLLARvaexpr] = ACTIONS(1620), - [anon_sym_true] = ACTIONS(1620), - [anon_sym_false] = ACTIONS(1620), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_DOLLARvacount] = ACTIONS(1620), - [anon_sym_DOLLARappend] = ACTIONS(1620), - [anon_sym_DOLLARconcat] = ACTIONS(1620), - [anon_sym_DOLLAReval] = ACTIONS(1620), - [anon_sym_DOLLARis_const] = ACTIONS(1620), - [anon_sym_DOLLARsizeof] = ACTIONS(1620), - [anon_sym_DOLLARstringify] = ACTIONS(1620), - [anon_sym_DOLLARand] = ACTIONS(1620), - [anon_sym_DOLLARdefined] = ACTIONS(1620), - [anon_sym_DOLLARembed] = ACTIONS(1620), - [anon_sym_DOLLARor] = ACTIONS(1620), - [anon_sym_DOLLARfeature] = ACTIONS(1620), - [anon_sym_DOLLARassignable] = ACTIONS(1620), - [anon_sym_BANG] = ACTIONS(1622), - [anon_sym_TILDE] = ACTIONS(1622), - [anon_sym_PLUS_PLUS] = ACTIONS(1622), - [anon_sym_DASH_DASH] = ACTIONS(1622), - [anon_sym_typeid] = ACTIONS(1620), - [anon_sym_LBRACE_PIPE] = ACTIONS(1622), - [anon_sym_void] = ACTIONS(1620), - [anon_sym_bool] = ACTIONS(1620), - [anon_sym_char] = ACTIONS(1620), - [anon_sym_ichar] = ACTIONS(1620), - [anon_sym_short] = ACTIONS(1620), - [anon_sym_ushort] = ACTIONS(1620), - [anon_sym_uint] = ACTIONS(1620), - [anon_sym_long] = ACTIONS(1620), - [anon_sym_ulong] = ACTIONS(1620), - [anon_sym_int128] = ACTIONS(1620), - [anon_sym_uint128] = ACTIONS(1620), - [anon_sym_float] = ACTIONS(1620), - [anon_sym_double] = ACTIONS(1620), - [anon_sym_float16] = ACTIONS(1620), - [anon_sym_bfloat16] = ACTIONS(1620), - [anon_sym_float128] = ACTIONS(1620), - [anon_sym_iptr] = ACTIONS(1620), - [anon_sym_uptr] = ACTIONS(1620), - [anon_sym_isz] = ACTIONS(1620), - [anon_sym_usz] = ACTIONS(1620), - [anon_sym_anyfault] = ACTIONS(1620), - [anon_sym_any] = ACTIONS(1620), - [anon_sym_DOLLARtypeof] = ACTIONS(1620), - [anon_sym_DOLLARtypefrom] = ACTIONS(1620), - [anon_sym_DOLLARvatype] = ACTIONS(1620), - [anon_sym_DOLLARevaltype] = ACTIONS(1620), - [sym_real_literal] = ACTIONS(1622), + [sym_ident] = ACTIONS(1573), + [sym_integer_literal] = ACTIONS(1575), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_DQUOTE] = ACTIONS(1575), + [anon_sym_BQUOTE] = ACTIONS(1575), + [sym_bytes_literal] = ACTIONS(1575), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1573), + [sym_at_ident] = ACTIONS(1575), + [sym_hash_ident] = ACTIONS(1575), + [sym_type_ident] = ACTIONS(1575), + [sym_ct_type_ident] = ACTIONS(1575), + [sym_const_ident] = ACTIONS(1573), + [sym_builtin] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(1575), + [anon_sym_AMP] = ACTIONS(1573), + [anon_sym_static] = ACTIONS(1573), + [anon_sym_tlocal] = ACTIONS(1573), + [anon_sym_SEMI] = ACTIONS(1575), + [anon_sym_fn] = ACTIONS(1573), + [anon_sym_LBRACE] = ACTIONS(1573), + [anon_sym_const] = ACTIONS(1573), + [anon_sym_var] = ACTIONS(1573), + [anon_sym_return] = ACTIONS(1573), + [anon_sym_continue] = ACTIONS(1573), + [anon_sym_break] = ACTIONS(1573), + [anon_sym_defer] = ACTIONS(1573), + [anon_sym_assert] = ACTIONS(1573), + [anon_sym_nextcase] = ACTIONS(1573), + [anon_sym_switch] = ACTIONS(1573), + [anon_sym_AMP_AMP] = ACTIONS(1575), + [anon_sym_if] = ACTIONS(1573), + [anon_sym_for] = ACTIONS(1573), + [anon_sym_foreach] = ACTIONS(1573), + [anon_sym_foreach_r] = ACTIONS(1573), + [anon_sym_while] = ACTIONS(1573), + [anon_sym_do] = ACTIONS(1573), + [anon_sym_int] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1573), + [anon_sym_DASH] = ACTIONS(1573), + [anon_sym_STAR] = ACTIONS(1575), + [anon_sym_asm] = ACTIONS(1573), + [anon_sym_DOLLARassert] = ACTIONS(1573), + [anon_sym_DOLLARerror] = ACTIONS(1573), + [anon_sym_DOLLARecho] = ACTIONS(1573), + [anon_sym_DOLLARif] = ACTIONS(1573), + [anon_sym_DOLLARendif] = ACTIONS(1573), + [anon_sym_DOLLARswitch] = ACTIONS(1573), + [anon_sym_DOLLARfor] = ACTIONS(1573), + [anon_sym_DOLLARforeach] = ACTIONS(1573), + [anon_sym_DOLLARalignof] = ACTIONS(1573), + [anon_sym_DOLLARextnameof] = ACTIONS(1573), + [anon_sym_DOLLARnameof] = ACTIONS(1573), + [anon_sym_DOLLARoffsetof] = ACTIONS(1573), + [anon_sym_DOLLARqnameof] = ACTIONS(1573), + [anon_sym_DOLLARvaconst] = ACTIONS(1573), + [anon_sym_DOLLARvaarg] = ACTIONS(1573), + [anon_sym_DOLLARvaref] = ACTIONS(1573), + [anon_sym_DOLLARvaexpr] = ACTIONS(1573), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [anon_sym_null] = ACTIONS(1573), + [anon_sym_DOLLARvacount] = ACTIONS(1573), + [anon_sym_DOLLARappend] = ACTIONS(1573), + [anon_sym_DOLLARconcat] = ACTIONS(1573), + [anon_sym_DOLLAReval] = ACTIONS(1573), + [anon_sym_DOLLARis_const] = ACTIONS(1573), + [anon_sym_DOLLARsizeof] = ACTIONS(1573), + [anon_sym_DOLLARstringify] = ACTIONS(1573), + [anon_sym_DOLLARand] = ACTIONS(1573), + [anon_sym_DOLLARdefined] = ACTIONS(1573), + [anon_sym_DOLLARembed] = ACTIONS(1573), + [anon_sym_DOLLARor] = ACTIONS(1573), + [anon_sym_DOLLARfeature] = ACTIONS(1573), + [anon_sym_DOLLARassignable] = ACTIONS(1573), + [anon_sym_BANG] = ACTIONS(1575), + [anon_sym_TILDE] = ACTIONS(1575), + [anon_sym_PLUS_PLUS] = ACTIONS(1575), + [anon_sym_DASH_DASH] = ACTIONS(1575), + [anon_sym_typeid] = ACTIONS(1573), + [anon_sym_LBRACE_PIPE] = ACTIONS(1575), + [anon_sym_void] = ACTIONS(1573), + [anon_sym_bool] = ACTIONS(1573), + [anon_sym_char] = ACTIONS(1573), + [anon_sym_ichar] = ACTIONS(1573), + [anon_sym_short] = ACTIONS(1573), + [anon_sym_ushort] = ACTIONS(1573), + [anon_sym_uint] = ACTIONS(1573), + [anon_sym_long] = ACTIONS(1573), + [anon_sym_ulong] = ACTIONS(1573), + [anon_sym_int128] = ACTIONS(1573), + [anon_sym_uint128] = ACTIONS(1573), + [anon_sym_float] = ACTIONS(1573), + [anon_sym_double] = ACTIONS(1573), + [anon_sym_float16] = ACTIONS(1573), + [anon_sym_bfloat16] = ACTIONS(1573), + [anon_sym_float128] = ACTIONS(1573), + [anon_sym_iptr] = ACTIONS(1573), + [anon_sym_uptr] = ACTIONS(1573), + [anon_sym_isz] = ACTIONS(1573), + [anon_sym_usz] = ACTIONS(1573), + [anon_sym_anyfault] = ACTIONS(1573), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_DOLLARtypeof] = ACTIONS(1573), + [anon_sym_DOLLARtypefrom] = ACTIONS(1573), + [anon_sym_DOLLARvatype] = ACTIONS(1573), + [anon_sym_DOLLARevaltype] = ACTIONS(1573), + [sym_real_literal] = ACTIONS(1575), }, [748] = { [sym_line_comment] = STATE(748), [sym_doc_comment] = STATE(748), [sym_block_comment] = STATE(748), - [sym_ident] = ACTIONS(1540), - [sym_integer_literal] = ACTIONS(1542), - [anon_sym_SQUOTE] = ACTIONS(1542), - [anon_sym_DQUOTE] = ACTIONS(1542), - [anon_sym_BQUOTE] = ACTIONS(1542), - [sym_bytes_literal] = ACTIONS(1542), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1540), - [sym_at_ident] = ACTIONS(1542), - [sym_hash_ident] = ACTIONS(1542), - [sym_type_ident] = ACTIONS(1542), - [sym_ct_type_ident] = ACTIONS(1542), - [sym_const_ident] = ACTIONS(1540), - [sym_builtin] = ACTIONS(1542), - [anon_sym_LPAREN] = ACTIONS(1542), - [anon_sym_AMP] = ACTIONS(1540), - [anon_sym_static] = ACTIONS(1540), - [anon_sym_tlocal] = ACTIONS(1540), - [anon_sym_SEMI] = ACTIONS(1542), - [anon_sym_fn] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(1540), - [anon_sym_const] = ACTIONS(1540), - [anon_sym_var] = ACTIONS(1540), - [anon_sym_return] = ACTIONS(1540), - [anon_sym_continue] = ACTIONS(1540), - [anon_sym_break] = ACTIONS(1540), - [anon_sym_defer] = ACTIONS(1540), - [anon_sym_assert] = ACTIONS(1540), - [anon_sym_nextcase] = ACTIONS(1540), - [anon_sym_switch] = ACTIONS(1540), - [anon_sym_AMP_AMP] = ACTIONS(1542), - [anon_sym_if] = ACTIONS(1540), - [anon_sym_for] = ACTIONS(1540), - [anon_sym_foreach] = ACTIONS(1540), - [anon_sym_foreach_r] = ACTIONS(1540), - [anon_sym_while] = ACTIONS(1540), - [anon_sym_do] = ACTIONS(1540), - [anon_sym_int] = ACTIONS(1540), - [anon_sym_PLUS] = ACTIONS(1540), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_STAR] = ACTIONS(1542), - [anon_sym_asm] = ACTIONS(1540), - [anon_sym_DOLLARassert] = ACTIONS(1540), - [anon_sym_DOLLARerror] = ACTIONS(1540), - [anon_sym_DOLLARecho] = ACTIONS(1540), - [anon_sym_DOLLARif] = ACTIONS(1540), - [anon_sym_DOLLARendif] = ACTIONS(1540), - [anon_sym_DOLLARswitch] = ACTIONS(1540), - [anon_sym_DOLLARfor] = ACTIONS(1540), - [anon_sym_DOLLARforeach] = ACTIONS(1540), - [anon_sym_DOLLARalignof] = ACTIONS(1540), - [anon_sym_DOLLARextnameof] = ACTIONS(1540), - [anon_sym_DOLLARnameof] = ACTIONS(1540), - [anon_sym_DOLLARoffsetof] = ACTIONS(1540), - [anon_sym_DOLLARqnameof] = ACTIONS(1540), - [anon_sym_DOLLARvaconst] = ACTIONS(1540), - [anon_sym_DOLLARvaarg] = ACTIONS(1540), - [anon_sym_DOLLARvaref] = ACTIONS(1540), - [anon_sym_DOLLARvaexpr] = ACTIONS(1540), - [anon_sym_true] = ACTIONS(1540), - [anon_sym_false] = ACTIONS(1540), - [anon_sym_null] = ACTIONS(1540), - [anon_sym_DOLLARvacount] = ACTIONS(1540), - [anon_sym_DOLLARappend] = ACTIONS(1540), - [anon_sym_DOLLARconcat] = ACTIONS(1540), - [anon_sym_DOLLAReval] = ACTIONS(1540), - [anon_sym_DOLLARis_const] = ACTIONS(1540), - [anon_sym_DOLLARsizeof] = ACTIONS(1540), - [anon_sym_DOLLARstringify] = ACTIONS(1540), - [anon_sym_DOLLARand] = ACTIONS(1540), - [anon_sym_DOLLARdefined] = ACTIONS(1540), - [anon_sym_DOLLARembed] = ACTIONS(1540), - [anon_sym_DOLLARor] = ACTIONS(1540), - [anon_sym_DOLLARfeature] = ACTIONS(1540), - [anon_sym_DOLLARassignable] = ACTIONS(1540), - [anon_sym_BANG] = ACTIONS(1542), - [anon_sym_TILDE] = ACTIONS(1542), - [anon_sym_PLUS_PLUS] = ACTIONS(1542), - [anon_sym_DASH_DASH] = ACTIONS(1542), - [anon_sym_typeid] = ACTIONS(1540), - [anon_sym_LBRACE_PIPE] = ACTIONS(1542), - [anon_sym_void] = ACTIONS(1540), - [anon_sym_bool] = ACTIONS(1540), - [anon_sym_char] = ACTIONS(1540), - [anon_sym_ichar] = ACTIONS(1540), - [anon_sym_short] = ACTIONS(1540), - [anon_sym_ushort] = ACTIONS(1540), - [anon_sym_uint] = ACTIONS(1540), - [anon_sym_long] = ACTIONS(1540), - [anon_sym_ulong] = ACTIONS(1540), - [anon_sym_int128] = ACTIONS(1540), - [anon_sym_uint128] = ACTIONS(1540), - [anon_sym_float] = ACTIONS(1540), - [anon_sym_double] = ACTIONS(1540), - [anon_sym_float16] = ACTIONS(1540), - [anon_sym_bfloat16] = ACTIONS(1540), - [anon_sym_float128] = ACTIONS(1540), - [anon_sym_iptr] = ACTIONS(1540), - [anon_sym_uptr] = ACTIONS(1540), - [anon_sym_isz] = ACTIONS(1540), - [anon_sym_usz] = ACTIONS(1540), - [anon_sym_anyfault] = ACTIONS(1540), - [anon_sym_any] = ACTIONS(1540), - [anon_sym_DOLLARtypeof] = ACTIONS(1540), - [anon_sym_DOLLARtypefrom] = ACTIONS(1540), - [anon_sym_DOLLARvatype] = ACTIONS(1540), - [anon_sym_DOLLARevaltype] = ACTIONS(1540), - [sym_real_literal] = ACTIONS(1542), + [sym_ident] = ACTIONS(1557), + [sym_integer_literal] = ACTIONS(1559), + [anon_sym_SQUOTE] = ACTIONS(1559), + [anon_sym_DQUOTE] = ACTIONS(1559), + [anon_sym_BQUOTE] = ACTIONS(1559), + [sym_bytes_literal] = ACTIONS(1559), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1557), + [sym_at_ident] = ACTIONS(1559), + [sym_hash_ident] = ACTIONS(1559), + [sym_type_ident] = ACTIONS(1559), + [sym_ct_type_ident] = ACTIONS(1559), + [sym_const_ident] = ACTIONS(1557), + [sym_builtin] = ACTIONS(1559), + [anon_sym_LPAREN] = ACTIONS(1559), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_static] = ACTIONS(1557), + [anon_sym_tlocal] = ACTIONS(1557), + [anon_sym_SEMI] = ACTIONS(1559), + [anon_sym_fn] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1557), + [anon_sym_const] = ACTIONS(1557), + [anon_sym_var] = ACTIONS(1557), + [anon_sym_return] = ACTIONS(1557), + [anon_sym_continue] = ACTIONS(1557), + [anon_sym_break] = ACTIONS(1557), + [anon_sym_defer] = ACTIONS(1557), + [anon_sym_assert] = ACTIONS(1557), + [anon_sym_nextcase] = ACTIONS(1557), + [anon_sym_switch] = ACTIONS(1557), + [anon_sym_AMP_AMP] = ACTIONS(1559), + [anon_sym_if] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(1557), + [anon_sym_foreach] = ACTIONS(1557), + [anon_sym_foreach_r] = ACTIONS(1557), + [anon_sym_while] = ACTIONS(1557), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_int] = ACTIONS(1557), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_STAR] = ACTIONS(1559), + [anon_sym_asm] = ACTIONS(1557), + [anon_sym_DOLLARassert] = ACTIONS(1557), + [anon_sym_DOLLARerror] = ACTIONS(1557), + [anon_sym_DOLLARecho] = ACTIONS(1557), + [anon_sym_DOLLARif] = ACTIONS(1557), + [anon_sym_DOLLARendif] = ACTIONS(1557), + [anon_sym_DOLLARswitch] = ACTIONS(1557), + [anon_sym_DOLLARfor] = ACTIONS(1557), + [anon_sym_DOLLARforeach] = ACTIONS(1557), + [anon_sym_DOLLARalignof] = ACTIONS(1557), + [anon_sym_DOLLARextnameof] = ACTIONS(1557), + [anon_sym_DOLLARnameof] = ACTIONS(1557), + [anon_sym_DOLLARoffsetof] = ACTIONS(1557), + [anon_sym_DOLLARqnameof] = ACTIONS(1557), + [anon_sym_DOLLARvaconst] = ACTIONS(1557), + [anon_sym_DOLLARvaarg] = ACTIONS(1557), + [anon_sym_DOLLARvaref] = ACTIONS(1557), + [anon_sym_DOLLARvaexpr] = ACTIONS(1557), + [anon_sym_true] = ACTIONS(1557), + [anon_sym_false] = ACTIONS(1557), + [anon_sym_null] = ACTIONS(1557), + [anon_sym_DOLLARvacount] = ACTIONS(1557), + [anon_sym_DOLLARappend] = ACTIONS(1557), + [anon_sym_DOLLARconcat] = ACTIONS(1557), + [anon_sym_DOLLAReval] = ACTIONS(1557), + [anon_sym_DOLLARis_const] = ACTIONS(1557), + [anon_sym_DOLLARsizeof] = ACTIONS(1557), + [anon_sym_DOLLARstringify] = ACTIONS(1557), + [anon_sym_DOLLARand] = ACTIONS(1557), + [anon_sym_DOLLARdefined] = ACTIONS(1557), + [anon_sym_DOLLARembed] = ACTIONS(1557), + [anon_sym_DOLLARor] = ACTIONS(1557), + [anon_sym_DOLLARfeature] = ACTIONS(1557), + [anon_sym_DOLLARassignable] = ACTIONS(1557), + [anon_sym_BANG] = ACTIONS(1559), + [anon_sym_TILDE] = ACTIONS(1559), + [anon_sym_PLUS_PLUS] = ACTIONS(1559), + [anon_sym_DASH_DASH] = ACTIONS(1559), + [anon_sym_typeid] = ACTIONS(1557), + [anon_sym_LBRACE_PIPE] = ACTIONS(1559), + [anon_sym_void] = ACTIONS(1557), + [anon_sym_bool] = ACTIONS(1557), + [anon_sym_char] = ACTIONS(1557), + [anon_sym_ichar] = ACTIONS(1557), + [anon_sym_short] = ACTIONS(1557), + [anon_sym_ushort] = ACTIONS(1557), + [anon_sym_uint] = ACTIONS(1557), + [anon_sym_long] = ACTIONS(1557), + [anon_sym_ulong] = ACTIONS(1557), + [anon_sym_int128] = ACTIONS(1557), + [anon_sym_uint128] = ACTIONS(1557), + [anon_sym_float] = ACTIONS(1557), + [anon_sym_double] = ACTIONS(1557), + [anon_sym_float16] = ACTIONS(1557), + [anon_sym_bfloat16] = ACTIONS(1557), + [anon_sym_float128] = ACTIONS(1557), + [anon_sym_iptr] = ACTIONS(1557), + [anon_sym_uptr] = ACTIONS(1557), + [anon_sym_isz] = ACTIONS(1557), + [anon_sym_usz] = ACTIONS(1557), + [anon_sym_anyfault] = ACTIONS(1557), + [anon_sym_any] = ACTIONS(1557), + [anon_sym_DOLLARtypeof] = ACTIONS(1557), + [anon_sym_DOLLARtypefrom] = ACTIONS(1557), + [anon_sym_DOLLARvatype] = ACTIONS(1557), + [anon_sym_DOLLARevaltype] = ACTIONS(1557), + [sym_real_literal] = ACTIONS(1559), }, [749] = { [sym_line_comment] = STATE(749), [sym_doc_comment] = STATE(749), [sym_block_comment] = STATE(749), - [sym_ident] = ACTIONS(1636), - [sym_integer_literal] = ACTIONS(1638), - [anon_sym_SQUOTE] = ACTIONS(1638), - [anon_sym_DQUOTE] = ACTIONS(1638), - [anon_sym_BQUOTE] = ACTIONS(1638), - [sym_bytes_literal] = ACTIONS(1638), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1636), - [sym_at_ident] = ACTIONS(1638), - [sym_hash_ident] = ACTIONS(1638), - [sym_type_ident] = ACTIONS(1638), - [sym_ct_type_ident] = ACTIONS(1638), - [sym_const_ident] = ACTIONS(1636), - [sym_builtin] = ACTIONS(1638), - [anon_sym_LPAREN] = ACTIONS(1638), - [anon_sym_AMP] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(1636), - [anon_sym_tlocal] = ACTIONS(1636), - [anon_sym_SEMI] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1636), - [anon_sym_LBRACE] = ACTIONS(1636), - [anon_sym_const] = ACTIONS(1636), - [anon_sym_var] = ACTIONS(1636), - [anon_sym_return] = ACTIONS(1636), - [anon_sym_continue] = ACTIONS(1636), - [anon_sym_break] = ACTIONS(1636), - [anon_sym_defer] = ACTIONS(1636), - [anon_sym_assert] = ACTIONS(1636), - [anon_sym_nextcase] = ACTIONS(1636), - [anon_sym_switch] = ACTIONS(1636), - [anon_sym_AMP_AMP] = ACTIONS(1638), - [anon_sym_if] = ACTIONS(1636), - [anon_sym_for] = ACTIONS(1636), - [anon_sym_foreach] = ACTIONS(1636), - [anon_sym_foreach_r] = ACTIONS(1636), - [anon_sym_while] = ACTIONS(1636), - [anon_sym_do] = ACTIONS(1636), - [anon_sym_int] = ACTIONS(1636), - [anon_sym_PLUS] = ACTIONS(1636), - [anon_sym_DASH] = ACTIONS(1636), - [anon_sym_STAR] = ACTIONS(1638), - [anon_sym_asm] = ACTIONS(1636), - [anon_sym_DOLLARassert] = ACTIONS(1636), - [anon_sym_DOLLARerror] = ACTIONS(1636), - [anon_sym_DOLLARecho] = ACTIONS(1636), - [anon_sym_DOLLARif] = ACTIONS(1636), - [anon_sym_DOLLARendif] = ACTIONS(1636), - [anon_sym_DOLLARswitch] = ACTIONS(1636), - [anon_sym_DOLLARfor] = ACTIONS(1636), - [anon_sym_DOLLARforeach] = ACTIONS(1636), - [anon_sym_DOLLARalignof] = ACTIONS(1636), - [anon_sym_DOLLARextnameof] = ACTIONS(1636), - [anon_sym_DOLLARnameof] = ACTIONS(1636), - [anon_sym_DOLLARoffsetof] = ACTIONS(1636), - [anon_sym_DOLLARqnameof] = ACTIONS(1636), - [anon_sym_DOLLARvaconst] = ACTIONS(1636), - [anon_sym_DOLLARvaarg] = ACTIONS(1636), - [anon_sym_DOLLARvaref] = ACTIONS(1636), - [anon_sym_DOLLARvaexpr] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1636), - [anon_sym_false] = ACTIONS(1636), - [anon_sym_null] = ACTIONS(1636), - [anon_sym_DOLLARvacount] = ACTIONS(1636), - [anon_sym_DOLLARappend] = ACTIONS(1636), - [anon_sym_DOLLARconcat] = ACTIONS(1636), - [anon_sym_DOLLAReval] = ACTIONS(1636), - [anon_sym_DOLLARis_const] = ACTIONS(1636), - [anon_sym_DOLLARsizeof] = ACTIONS(1636), - [anon_sym_DOLLARstringify] = ACTIONS(1636), - [anon_sym_DOLLARand] = ACTIONS(1636), - [anon_sym_DOLLARdefined] = ACTIONS(1636), - [anon_sym_DOLLARembed] = ACTIONS(1636), - [anon_sym_DOLLARor] = ACTIONS(1636), - [anon_sym_DOLLARfeature] = ACTIONS(1636), - [anon_sym_DOLLARassignable] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1638), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_PLUS_PLUS] = ACTIONS(1638), - [anon_sym_DASH_DASH] = ACTIONS(1638), - [anon_sym_typeid] = ACTIONS(1636), - [anon_sym_LBRACE_PIPE] = ACTIONS(1638), - [anon_sym_void] = ACTIONS(1636), - [anon_sym_bool] = ACTIONS(1636), - [anon_sym_char] = ACTIONS(1636), - [anon_sym_ichar] = ACTIONS(1636), - [anon_sym_short] = ACTIONS(1636), - [anon_sym_ushort] = ACTIONS(1636), - [anon_sym_uint] = ACTIONS(1636), - [anon_sym_long] = ACTIONS(1636), - [anon_sym_ulong] = ACTIONS(1636), - [anon_sym_int128] = ACTIONS(1636), - [anon_sym_uint128] = ACTIONS(1636), - [anon_sym_float] = ACTIONS(1636), - [anon_sym_double] = ACTIONS(1636), - [anon_sym_float16] = ACTIONS(1636), - [anon_sym_bfloat16] = ACTIONS(1636), - [anon_sym_float128] = ACTIONS(1636), - [anon_sym_iptr] = ACTIONS(1636), - [anon_sym_uptr] = ACTIONS(1636), - [anon_sym_isz] = ACTIONS(1636), - [anon_sym_usz] = ACTIONS(1636), - [anon_sym_anyfault] = ACTIONS(1636), - [anon_sym_any] = ACTIONS(1636), - [anon_sym_DOLLARtypeof] = ACTIONS(1636), - [anon_sym_DOLLARtypefrom] = ACTIONS(1636), - [anon_sym_DOLLARvatype] = ACTIONS(1636), - [anon_sym_DOLLARevaltype] = ACTIONS(1636), - [sym_real_literal] = ACTIONS(1638), + [sym_ident] = ACTIONS(1553), + [sym_integer_literal] = ACTIONS(1555), + [anon_sym_SQUOTE] = ACTIONS(1555), + [anon_sym_DQUOTE] = ACTIONS(1555), + [anon_sym_BQUOTE] = ACTIONS(1555), + [sym_bytes_literal] = ACTIONS(1555), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1553), + [sym_at_ident] = ACTIONS(1555), + [sym_hash_ident] = ACTIONS(1555), + [sym_type_ident] = ACTIONS(1555), + [sym_ct_type_ident] = ACTIONS(1555), + [sym_const_ident] = ACTIONS(1553), + [sym_builtin] = ACTIONS(1555), + [anon_sym_LPAREN] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1553), + [anon_sym_static] = ACTIONS(1553), + [anon_sym_tlocal] = ACTIONS(1553), + [anon_sym_SEMI] = ACTIONS(1555), + [anon_sym_fn] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1553), + [anon_sym_const] = ACTIONS(1553), + [anon_sym_var] = ACTIONS(1553), + [anon_sym_return] = ACTIONS(1553), + [anon_sym_continue] = ACTIONS(1553), + [anon_sym_break] = ACTIONS(1553), + [anon_sym_defer] = ACTIONS(1553), + [anon_sym_assert] = ACTIONS(1553), + [anon_sym_nextcase] = ACTIONS(1553), + [anon_sym_switch] = ACTIONS(1553), + [anon_sym_AMP_AMP] = ACTIONS(1555), + [anon_sym_if] = ACTIONS(1553), + [anon_sym_for] = ACTIONS(1553), + [anon_sym_foreach] = ACTIONS(1553), + [anon_sym_foreach_r] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1553), + [anon_sym_do] = ACTIONS(1553), + [anon_sym_int] = ACTIONS(1553), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1555), + [anon_sym_asm] = ACTIONS(1553), + [anon_sym_DOLLARassert] = ACTIONS(1553), + [anon_sym_DOLLARerror] = ACTIONS(1553), + [anon_sym_DOLLARecho] = ACTIONS(1553), + [anon_sym_DOLLARif] = ACTIONS(1553), + [anon_sym_DOLLARendif] = ACTIONS(1553), + [anon_sym_DOLLARswitch] = ACTIONS(1553), + [anon_sym_DOLLARfor] = ACTIONS(1553), + [anon_sym_DOLLARforeach] = ACTIONS(1553), + [anon_sym_DOLLARalignof] = ACTIONS(1553), + [anon_sym_DOLLARextnameof] = ACTIONS(1553), + [anon_sym_DOLLARnameof] = ACTIONS(1553), + [anon_sym_DOLLARoffsetof] = ACTIONS(1553), + [anon_sym_DOLLARqnameof] = ACTIONS(1553), + [anon_sym_DOLLARvaconst] = ACTIONS(1553), + [anon_sym_DOLLARvaarg] = ACTIONS(1553), + [anon_sym_DOLLARvaref] = ACTIONS(1553), + [anon_sym_DOLLARvaexpr] = ACTIONS(1553), + [anon_sym_true] = ACTIONS(1553), + [anon_sym_false] = ACTIONS(1553), + [anon_sym_null] = ACTIONS(1553), + [anon_sym_DOLLARvacount] = ACTIONS(1553), + [anon_sym_DOLLARappend] = ACTIONS(1553), + [anon_sym_DOLLARconcat] = ACTIONS(1553), + [anon_sym_DOLLAReval] = ACTIONS(1553), + [anon_sym_DOLLARis_const] = ACTIONS(1553), + [anon_sym_DOLLARsizeof] = ACTIONS(1553), + [anon_sym_DOLLARstringify] = ACTIONS(1553), + [anon_sym_DOLLARand] = ACTIONS(1553), + [anon_sym_DOLLARdefined] = ACTIONS(1553), + [anon_sym_DOLLARembed] = ACTIONS(1553), + [anon_sym_DOLLARor] = ACTIONS(1553), + [anon_sym_DOLLARfeature] = ACTIONS(1553), + [anon_sym_DOLLARassignable] = ACTIONS(1553), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_TILDE] = ACTIONS(1555), + [anon_sym_PLUS_PLUS] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(1555), + [anon_sym_typeid] = ACTIONS(1553), + [anon_sym_LBRACE_PIPE] = ACTIONS(1555), + [anon_sym_void] = ACTIONS(1553), + [anon_sym_bool] = ACTIONS(1553), + [anon_sym_char] = ACTIONS(1553), + [anon_sym_ichar] = ACTIONS(1553), + [anon_sym_short] = ACTIONS(1553), + [anon_sym_ushort] = ACTIONS(1553), + [anon_sym_uint] = ACTIONS(1553), + [anon_sym_long] = ACTIONS(1553), + [anon_sym_ulong] = ACTIONS(1553), + [anon_sym_int128] = ACTIONS(1553), + [anon_sym_uint128] = ACTIONS(1553), + [anon_sym_float] = ACTIONS(1553), + [anon_sym_double] = ACTIONS(1553), + [anon_sym_float16] = ACTIONS(1553), + [anon_sym_bfloat16] = ACTIONS(1553), + [anon_sym_float128] = ACTIONS(1553), + [anon_sym_iptr] = ACTIONS(1553), + [anon_sym_uptr] = ACTIONS(1553), + [anon_sym_isz] = ACTIONS(1553), + [anon_sym_usz] = ACTIONS(1553), + [anon_sym_anyfault] = ACTIONS(1553), + [anon_sym_any] = ACTIONS(1553), + [anon_sym_DOLLARtypeof] = ACTIONS(1553), + [anon_sym_DOLLARtypefrom] = ACTIONS(1553), + [anon_sym_DOLLARvatype] = ACTIONS(1553), + [anon_sym_DOLLARevaltype] = ACTIONS(1553), + [sym_real_literal] = ACTIONS(1555), }, [750] = { [sym_line_comment] = STATE(750), [sym_doc_comment] = STATE(750), [sym_block_comment] = STATE(750), - [sym_ident] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(1618), - [anon_sym_SQUOTE] = ACTIONS(1618), - [anon_sym_DQUOTE] = ACTIONS(1618), - [anon_sym_BQUOTE] = ACTIONS(1618), - [sym_bytes_literal] = ACTIONS(1618), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1616), - [sym_at_ident] = ACTIONS(1618), - [sym_hash_ident] = ACTIONS(1618), - [sym_type_ident] = ACTIONS(1618), - [sym_ct_type_ident] = ACTIONS(1618), - [sym_const_ident] = ACTIONS(1616), - [sym_builtin] = ACTIONS(1618), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_static] = ACTIONS(1616), - [anon_sym_tlocal] = ACTIONS(1616), - [anon_sym_SEMI] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1616), - [anon_sym_LBRACE] = ACTIONS(1616), - [anon_sym_const] = ACTIONS(1616), - [anon_sym_var] = ACTIONS(1616), - [anon_sym_return] = ACTIONS(1616), - [anon_sym_continue] = ACTIONS(1616), - [anon_sym_break] = ACTIONS(1616), - [anon_sym_defer] = ACTIONS(1616), - [anon_sym_assert] = ACTIONS(1616), - [anon_sym_nextcase] = ACTIONS(1616), - [anon_sym_switch] = ACTIONS(1616), - [anon_sym_AMP_AMP] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1616), - [anon_sym_for] = ACTIONS(1616), - [anon_sym_foreach] = ACTIONS(1616), - [anon_sym_foreach_r] = ACTIONS(1616), - [anon_sym_while] = ACTIONS(1616), - [anon_sym_do] = ACTIONS(1616), - [anon_sym_int] = ACTIONS(1616), - [anon_sym_PLUS] = ACTIONS(1616), - [anon_sym_DASH] = ACTIONS(1616), - [anon_sym_STAR] = ACTIONS(1618), - [anon_sym_asm] = ACTIONS(1616), - [anon_sym_DOLLARassert] = ACTIONS(1616), - [anon_sym_DOLLARerror] = ACTIONS(1616), - [anon_sym_DOLLARecho] = ACTIONS(1616), - [anon_sym_DOLLARif] = ACTIONS(1616), - [anon_sym_DOLLARswitch] = ACTIONS(1616), - [anon_sym_DOLLARfor] = ACTIONS(1616), - [anon_sym_DOLLARendfor] = ACTIONS(1616), - [anon_sym_DOLLARforeach] = ACTIONS(1616), - [anon_sym_DOLLARalignof] = ACTIONS(1616), - [anon_sym_DOLLARextnameof] = ACTIONS(1616), - [anon_sym_DOLLARnameof] = ACTIONS(1616), - [anon_sym_DOLLARoffsetof] = ACTIONS(1616), - [anon_sym_DOLLARqnameof] = ACTIONS(1616), - [anon_sym_DOLLARvaconst] = ACTIONS(1616), - [anon_sym_DOLLARvaarg] = ACTIONS(1616), - [anon_sym_DOLLARvaref] = ACTIONS(1616), - [anon_sym_DOLLARvaexpr] = ACTIONS(1616), - [anon_sym_true] = ACTIONS(1616), - [anon_sym_false] = ACTIONS(1616), - [anon_sym_null] = ACTIONS(1616), - [anon_sym_DOLLARvacount] = ACTIONS(1616), - [anon_sym_DOLLARappend] = ACTIONS(1616), - [anon_sym_DOLLARconcat] = ACTIONS(1616), - [anon_sym_DOLLAReval] = ACTIONS(1616), - [anon_sym_DOLLARis_const] = ACTIONS(1616), - [anon_sym_DOLLARsizeof] = ACTIONS(1616), - [anon_sym_DOLLARstringify] = ACTIONS(1616), - [anon_sym_DOLLARand] = ACTIONS(1616), - [anon_sym_DOLLARdefined] = ACTIONS(1616), - [anon_sym_DOLLARembed] = ACTIONS(1616), - [anon_sym_DOLLARor] = ACTIONS(1616), - [anon_sym_DOLLARfeature] = ACTIONS(1616), - [anon_sym_DOLLARassignable] = ACTIONS(1616), - [anon_sym_BANG] = ACTIONS(1618), - [anon_sym_TILDE] = ACTIONS(1618), - [anon_sym_PLUS_PLUS] = ACTIONS(1618), - [anon_sym_DASH_DASH] = ACTIONS(1618), - [anon_sym_typeid] = ACTIONS(1616), - [anon_sym_LBRACE_PIPE] = ACTIONS(1618), - [anon_sym_void] = ACTIONS(1616), - [anon_sym_bool] = ACTIONS(1616), - [anon_sym_char] = ACTIONS(1616), - [anon_sym_ichar] = ACTIONS(1616), - [anon_sym_short] = ACTIONS(1616), - [anon_sym_ushort] = ACTIONS(1616), - [anon_sym_uint] = ACTIONS(1616), - [anon_sym_long] = ACTIONS(1616), - [anon_sym_ulong] = ACTIONS(1616), - [anon_sym_int128] = ACTIONS(1616), - [anon_sym_uint128] = ACTIONS(1616), - [anon_sym_float] = ACTIONS(1616), - [anon_sym_double] = ACTIONS(1616), - [anon_sym_float16] = ACTIONS(1616), - [anon_sym_bfloat16] = ACTIONS(1616), - [anon_sym_float128] = ACTIONS(1616), - [anon_sym_iptr] = ACTIONS(1616), - [anon_sym_uptr] = ACTIONS(1616), - [anon_sym_isz] = ACTIONS(1616), - [anon_sym_usz] = ACTIONS(1616), - [anon_sym_anyfault] = ACTIONS(1616), - [anon_sym_any] = ACTIONS(1616), - [anon_sym_DOLLARtypeof] = ACTIONS(1616), - [anon_sym_DOLLARtypefrom] = ACTIONS(1616), - [anon_sym_DOLLARvatype] = ACTIONS(1616), - [anon_sym_DOLLARevaltype] = ACTIONS(1616), - [sym_real_literal] = ACTIONS(1618), + [sym_ident] = ACTIONS(1541), + [sym_integer_literal] = ACTIONS(1543), + [anon_sym_SQUOTE] = ACTIONS(1543), + [anon_sym_DQUOTE] = ACTIONS(1543), + [anon_sym_BQUOTE] = ACTIONS(1543), + [sym_bytes_literal] = ACTIONS(1543), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1541), + [sym_at_ident] = ACTIONS(1543), + [sym_hash_ident] = ACTIONS(1543), + [sym_type_ident] = ACTIONS(1543), + [sym_ct_type_ident] = ACTIONS(1543), + [sym_const_ident] = ACTIONS(1541), + [sym_builtin] = ACTIONS(1543), + [anon_sym_LPAREN] = ACTIONS(1543), + [anon_sym_AMP] = ACTIONS(1541), + [anon_sym_static] = ACTIONS(1541), + [anon_sym_tlocal] = ACTIONS(1541), + [anon_sym_SEMI] = ACTIONS(1543), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1541), + [anon_sym_const] = ACTIONS(1541), + [anon_sym_var] = ACTIONS(1541), + [anon_sym_return] = ACTIONS(1541), + [anon_sym_continue] = ACTIONS(1541), + [anon_sym_break] = ACTIONS(1541), + [anon_sym_defer] = ACTIONS(1541), + [anon_sym_assert] = ACTIONS(1541), + [anon_sym_nextcase] = ACTIONS(1541), + [anon_sym_switch] = ACTIONS(1541), + [anon_sym_AMP_AMP] = ACTIONS(1543), + [anon_sym_if] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1541), + [anon_sym_foreach] = ACTIONS(1541), + [anon_sym_foreach_r] = ACTIONS(1541), + [anon_sym_while] = ACTIONS(1541), + [anon_sym_do] = ACTIONS(1541), + [anon_sym_int] = ACTIONS(1541), + [anon_sym_PLUS] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_asm] = ACTIONS(1541), + [anon_sym_DOLLARassert] = ACTIONS(1541), + [anon_sym_DOLLARerror] = ACTIONS(1541), + [anon_sym_DOLLARecho] = ACTIONS(1541), + [anon_sym_DOLLARif] = ACTIONS(1541), + [anon_sym_DOLLARendif] = ACTIONS(1541), + [anon_sym_DOLLARswitch] = ACTIONS(1541), + [anon_sym_DOLLARfor] = ACTIONS(1541), + [anon_sym_DOLLARforeach] = ACTIONS(1541), + [anon_sym_DOLLARalignof] = ACTIONS(1541), + [anon_sym_DOLLARextnameof] = ACTIONS(1541), + [anon_sym_DOLLARnameof] = ACTIONS(1541), + [anon_sym_DOLLARoffsetof] = ACTIONS(1541), + [anon_sym_DOLLARqnameof] = ACTIONS(1541), + [anon_sym_DOLLARvaconst] = ACTIONS(1541), + [anon_sym_DOLLARvaarg] = ACTIONS(1541), + [anon_sym_DOLLARvaref] = ACTIONS(1541), + [anon_sym_DOLLARvaexpr] = ACTIONS(1541), + [anon_sym_true] = ACTIONS(1541), + [anon_sym_false] = ACTIONS(1541), + [anon_sym_null] = ACTIONS(1541), + [anon_sym_DOLLARvacount] = ACTIONS(1541), + [anon_sym_DOLLARappend] = ACTIONS(1541), + [anon_sym_DOLLARconcat] = ACTIONS(1541), + [anon_sym_DOLLAReval] = ACTIONS(1541), + [anon_sym_DOLLARis_const] = ACTIONS(1541), + [anon_sym_DOLLARsizeof] = ACTIONS(1541), + [anon_sym_DOLLARstringify] = ACTIONS(1541), + [anon_sym_DOLLARand] = ACTIONS(1541), + [anon_sym_DOLLARdefined] = ACTIONS(1541), + [anon_sym_DOLLARembed] = ACTIONS(1541), + [anon_sym_DOLLARor] = ACTIONS(1541), + [anon_sym_DOLLARfeature] = ACTIONS(1541), + [anon_sym_DOLLARassignable] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_PLUS_PLUS] = ACTIONS(1543), + [anon_sym_DASH_DASH] = ACTIONS(1543), + [anon_sym_typeid] = ACTIONS(1541), + [anon_sym_LBRACE_PIPE] = ACTIONS(1543), + [anon_sym_void] = ACTIONS(1541), + [anon_sym_bool] = ACTIONS(1541), + [anon_sym_char] = ACTIONS(1541), + [anon_sym_ichar] = ACTIONS(1541), + [anon_sym_short] = ACTIONS(1541), + [anon_sym_ushort] = ACTIONS(1541), + [anon_sym_uint] = ACTIONS(1541), + [anon_sym_long] = ACTIONS(1541), + [anon_sym_ulong] = ACTIONS(1541), + [anon_sym_int128] = ACTIONS(1541), + [anon_sym_uint128] = ACTIONS(1541), + [anon_sym_float] = ACTIONS(1541), + [anon_sym_double] = ACTIONS(1541), + [anon_sym_float16] = ACTIONS(1541), + [anon_sym_bfloat16] = ACTIONS(1541), + [anon_sym_float128] = ACTIONS(1541), + [anon_sym_iptr] = ACTIONS(1541), + [anon_sym_uptr] = ACTIONS(1541), + [anon_sym_isz] = ACTIONS(1541), + [anon_sym_usz] = ACTIONS(1541), + [anon_sym_anyfault] = ACTIONS(1541), + [anon_sym_any] = ACTIONS(1541), + [anon_sym_DOLLARtypeof] = ACTIONS(1541), + [anon_sym_DOLLARtypefrom] = ACTIONS(1541), + [anon_sym_DOLLARvatype] = ACTIONS(1541), + [anon_sym_DOLLARevaltype] = ACTIONS(1541), + [sym_real_literal] = ACTIONS(1543), }, [751] = { [sym_line_comment] = STATE(751), [sym_doc_comment] = STATE(751), [sym_block_comment] = STATE(751), - [sym_ident] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(1622), - [anon_sym_SQUOTE] = ACTIONS(1622), - [anon_sym_DQUOTE] = ACTIONS(1622), - [anon_sym_BQUOTE] = ACTIONS(1622), - [sym_bytes_literal] = ACTIONS(1622), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1620), - [sym_at_ident] = ACTIONS(1622), - [sym_hash_ident] = ACTIONS(1622), - [sym_type_ident] = ACTIONS(1622), - [sym_ct_type_ident] = ACTIONS(1622), - [sym_const_ident] = ACTIONS(1620), - [sym_builtin] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(1622), - [anon_sym_AMP] = ACTIONS(1620), - [anon_sym_static] = ACTIONS(1620), - [anon_sym_tlocal] = ACTIONS(1620), - [anon_sym_SEMI] = ACTIONS(1622), - [anon_sym_fn] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1620), - [anon_sym_const] = ACTIONS(1620), - [anon_sym_var] = ACTIONS(1620), - [anon_sym_return] = ACTIONS(1620), - [anon_sym_continue] = ACTIONS(1620), - [anon_sym_break] = ACTIONS(1620), - [anon_sym_defer] = ACTIONS(1620), - [anon_sym_assert] = ACTIONS(1620), - [anon_sym_nextcase] = ACTIONS(1620), - [anon_sym_switch] = ACTIONS(1620), - [anon_sym_AMP_AMP] = ACTIONS(1622), - [anon_sym_if] = ACTIONS(1620), - [anon_sym_for] = ACTIONS(1620), - [anon_sym_foreach] = ACTIONS(1620), - [anon_sym_foreach_r] = ACTIONS(1620), - [anon_sym_while] = ACTIONS(1620), - [anon_sym_do] = ACTIONS(1620), - [anon_sym_int] = ACTIONS(1620), - [anon_sym_PLUS] = ACTIONS(1620), - [anon_sym_DASH] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1622), - [anon_sym_asm] = ACTIONS(1620), - [anon_sym_DOLLARassert] = ACTIONS(1620), - [anon_sym_DOLLARerror] = ACTIONS(1620), - [anon_sym_DOLLARecho] = ACTIONS(1620), - [anon_sym_DOLLARif] = ACTIONS(1620), - [anon_sym_DOLLARendif] = ACTIONS(1620), - [anon_sym_DOLLARswitch] = ACTIONS(1620), - [anon_sym_DOLLARfor] = ACTIONS(1620), - [anon_sym_DOLLARforeach] = ACTIONS(1620), - [anon_sym_DOLLARalignof] = ACTIONS(1620), - [anon_sym_DOLLARextnameof] = ACTIONS(1620), - [anon_sym_DOLLARnameof] = ACTIONS(1620), - [anon_sym_DOLLARoffsetof] = ACTIONS(1620), - [anon_sym_DOLLARqnameof] = ACTIONS(1620), - [anon_sym_DOLLARvaconst] = ACTIONS(1620), - [anon_sym_DOLLARvaarg] = ACTIONS(1620), - [anon_sym_DOLLARvaref] = ACTIONS(1620), - [anon_sym_DOLLARvaexpr] = ACTIONS(1620), - [anon_sym_true] = ACTIONS(1620), - [anon_sym_false] = ACTIONS(1620), - [anon_sym_null] = ACTIONS(1620), - [anon_sym_DOLLARvacount] = ACTIONS(1620), - [anon_sym_DOLLARappend] = ACTIONS(1620), - [anon_sym_DOLLARconcat] = ACTIONS(1620), - [anon_sym_DOLLAReval] = ACTIONS(1620), - [anon_sym_DOLLARis_const] = ACTIONS(1620), - [anon_sym_DOLLARsizeof] = ACTIONS(1620), - [anon_sym_DOLLARstringify] = ACTIONS(1620), - [anon_sym_DOLLARand] = ACTIONS(1620), - [anon_sym_DOLLARdefined] = ACTIONS(1620), - [anon_sym_DOLLARembed] = ACTIONS(1620), - [anon_sym_DOLLARor] = ACTIONS(1620), - [anon_sym_DOLLARfeature] = ACTIONS(1620), - [anon_sym_DOLLARassignable] = ACTIONS(1620), - [anon_sym_BANG] = ACTIONS(1622), - [anon_sym_TILDE] = ACTIONS(1622), - [anon_sym_PLUS_PLUS] = ACTIONS(1622), - [anon_sym_DASH_DASH] = ACTIONS(1622), - [anon_sym_typeid] = ACTIONS(1620), - [anon_sym_LBRACE_PIPE] = ACTIONS(1622), - [anon_sym_void] = ACTIONS(1620), - [anon_sym_bool] = ACTIONS(1620), - [anon_sym_char] = ACTIONS(1620), - [anon_sym_ichar] = ACTIONS(1620), - [anon_sym_short] = ACTIONS(1620), - [anon_sym_ushort] = ACTIONS(1620), - [anon_sym_uint] = ACTIONS(1620), - [anon_sym_long] = ACTIONS(1620), - [anon_sym_ulong] = ACTIONS(1620), - [anon_sym_int128] = ACTIONS(1620), - [anon_sym_uint128] = ACTIONS(1620), - [anon_sym_float] = ACTIONS(1620), - [anon_sym_double] = ACTIONS(1620), - [anon_sym_float16] = ACTIONS(1620), - [anon_sym_bfloat16] = ACTIONS(1620), - [anon_sym_float128] = ACTIONS(1620), - [anon_sym_iptr] = ACTIONS(1620), - [anon_sym_uptr] = ACTIONS(1620), - [anon_sym_isz] = ACTIONS(1620), - [anon_sym_usz] = ACTIONS(1620), - [anon_sym_anyfault] = ACTIONS(1620), - [anon_sym_any] = ACTIONS(1620), - [anon_sym_DOLLARtypeof] = ACTIONS(1620), - [anon_sym_DOLLARtypefrom] = ACTIONS(1620), - [anon_sym_DOLLARvatype] = ACTIONS(1620), - [anon_sym_DOLLARevaltype] = ACTIONS(1620), - [sym_real_literal] = ACTIONS(1622), + [sym_ident] = ACTIONS(1517), + [sym_integer_literal] = ACTIONS(1519), + [anon_sym_SQUOTE] = ACTIONS(1519), + [anon_sym_DQUOTE] = ACTIONS(1519), + [anon_sym_BQUOTE] = ACTIONS(1519), + [sym_bytes_literal] = ACTIONS(1519), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1517), + [sym_at_ident] = ACTIONS(1519), + [sym_hash_ident] = ACTIONS(1519), + [sym_type_ident] = ACTIONS(1519), + [sym_ct_type_ident] = ACTIONS(1519), + [sym_const_ident] = ACTIONS(1517), + [sym_builtin] = ACTIONS(1519), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_static] = ACTIONS(1517), + [anon_sym_tlocal] = ACTIONS(1517), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_fn] = ACTIONS(1517), + [anon_sym_LBRACE] = ACTIONS(1517), + [anon_sym_const] = ACTIONS(1517), + [anon_sym_var] = ACTIONS(1517), + [anon_sym_return] = ACTIONS(1517), + [anon_sym_continue] = ACTIONS(1517), + [anon_sym_break] = ACTIONS(1517), + [anon_sym_defer] = ACTIONS(1517), + [anon_sym_assert] = ACTIONS(1517), + [anon_sym_nextcase] = ACTIONS(1517), + [anon_sym_switch] = ACTIONS(1517), + [anon_sym_AMP_AMP] = ACTIONS(1519), + [anon_sym_if] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1517), + [anon_sym_foreach] = ACTIONS(1517), + [anon_sym_foreach_r] = ACTIONS(1517), + [anon_sym_while] = ACTIONS(1517), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_int] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1517), + [anon_sym_DASH] = ACTIONS(1517), + [anon_sym_STAR] = ACTIONS(1519), + [anon_sym_asm] = ACTIONS(1517), + [anon_sym_DOLLARassert] = ACTIONS(1517), + [anon_sym_DOLLARerror] = ACTIONS(1517), + [anon_sym_DOLLARecho] = ACTIONS(1517), + [anon_sym_DOLLARif] = ACTIONS(1517), + [anon_sym_DOLLARendif] = ACTIONS(1517), + [anon_sym_DOLLARswitch] = ACTIONS(1517), + [anon_sym_DOLLARfor] = ACTIONS(1517), + [anon_sym_DOLLARforeach] = ACTIONS(1517), + [anon_sym_DOLLARalignof] = ACTIONS(1517), + [anon_sym_DOLLARextnameof] = ACTIONS(1517), + [anon_sym_DOLLARnameof] = ACTIONS(1517), + [anon_sym_DOLLARoffsetof] = ACTIONS(1517), + [anon_sym_DOLLARqnameof] = ACTIONS(1517), + [anon_sym_DOLLARvaconst] = ACTIONS(1517), + [anon_sym_DOLLARvaarg] = ACTIONS(1517), + [anon_sym_DOLLARvaref] = ACTIONS(1517), + [anon_sym_DOLLARvaexpr] = ACTIONS(1517), + [anon_sym_true] = ACTIONS(1517), + [anon_sym_false] = ACTIONS(1517), + [anon_sym_null] = ACTIONS(1517), + [anon_sym_DOLLARvacount] = ACTIONS(1517), + [anon_sym_DOLLARappend] = ACTIONS(1517), + [anon_sym_DOLLARconcat] = ACTIONS(1517), + [anon_sym_DOLLAReval] = ACTIONS(1517), + [anon_sym_DOLLARis_const] = ACTIONS(1517), + [anon_sym_DOLLARsizeof] = ACTIONS(1517), + [anon_sym_DOLLARstringify] = ACTIONS(1517), + [anon_sym_DOLLARand] = ACTIONS(1517), + [anon_sym_DOLLARdefined] = ACTIONS(1517), + [anon_sym_DOLLARembed] = ACTIONS(1517), + [anon_sym_DOLLARor] = ACTIONS(1517), + [anon_sym_DOLLARfeature] = ACTIONS(1517), + [anon_sym_DOLLARassignable] = ACTIONS(1517), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1519), + [anon_sym_PLUS_PLUS] = ACTIONS(1519), + [anon_sym_DASH_DASH] = ACTIONS(1519), + [anon_sym_typeid] = ACTIONS(1517), + [anon_sym_LBRACE_PIPE] = ACTIONS(1519), + [anon_sym_void] = ACTIONS(1517), + [anon_sym_bool] = ACTIONS(1517), + [anon_sym_char] = ACTIONS(1517), + [anon_sym_ichar] = ACTIONS(1517), + [anon_sym_short] = ACTIONS(1517), + [anon_sym_ushort] = ACTIONS(1517), + [anon_sym_uint] = ACTIONS(1517), + [anon_sym_long] = ACTIONS(1517), + [anon_sym_ulong] = ACTIONS(1517), + [anon_sym_int128] = ACTIONS(1517), + [anon_sym_uint128] = ACTIONS(1517), + [anon_sym_float] = ACTIONS(1517), + [anon_sym_double] = ACTIONS(1517), + [anon_sym_float16] = ACTIONS(1517), + [anon_sym_bfloat16] = ACTIONS(1517), + [anon_sym_float128] = ACTIONS(1517), + [anon_sym_iptr] = ACTIONS(1517), + [anon_sym_uptr] = ACTIONS(1517), + [anon_sym_isz] = ACTIONS(1517), + [anon_sym_usz] = ACTIONS(1517), + [anon_sym_anyfault] = ACTIONS(1517), + [anon_sym_any] = ACTIONS(1517), + [anon_sym_DOLLARtypeof] = ACTIONS(1517), + [anon_sym_DOLLARtypefrom] = ACTIONS(1517), + [anon_sym_DOLLARvatype] = ACTIONS(1517), + [anon_sym_DOLLARevaltype] = ACTIONS(1517), + [sym_real_literal] = ACTIONS(1519), }, [752] = { [sym_line_comment] = STATE(752), [sym_doc_comment] = STATE(752), [sym_block_comment] = STATE(752), - [sym_ident] = ACTIONS(1572), - [sym_integer_literal] = ACTIONS(1574), - [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_DQUOTE] = ACTIONS(1574), - [anon_sym_BQUOTE] = ACTIONS(1574), - [sym_bytes_literal] = ACTIONS(1574), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1572), - [sym_at_ident] = ACTIONS(1574), - [sym_hash_ident] = ACTIONS(1574), - [sym_type_ident] = ACTIONS(1574), - [sym_ct_type_ident] = ACTIONS(1574), - [sym_const_ident] = ACTIONS(1572), - [sym_builtin] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1574), - [anon_sym_AMP] = ACTIONS(1572), - [anon_sym_static] = ACTIONS(1572), - [anon_sym_tlocal] = ACTIONS(1572), - [anon_sym_SEMI] = ACTIONS(1574), - [anon_sym_fn] = ACTIONS(1572), - [anon_sym_LBRACE] = ACTIONS(1572), - [anon_sym_const] = ACTIONS(1572), - [anon_sym_var] = ACTIONS(1572), - [anon_sym_return] = ACTIONS(1572), - [anon_sym_continue] = ACTIONS(1572), - [anon_sym_break] = ACTIONS(1572), - [anon_sym_defer] = ACTIONS(1572), - [anon_sym_assert] = ACTIONS(1572), - [anon_sym_nextcase] = ACTIONS(1572), - [anon_sym_switch] = ACTIONS(1572), - [anon_sym_AMP_AMP] = ACTIONS(1574), - [anon_sym_if] = ACTIONS(1572), - [anon_sym_for] = ACTIONS(1572), - [anon_sym_foreach] = ACTIONS(1572), - [anon_sym_foreach_r] = ACTIONS(1572), - [anon_sym_while] = ACTIONS(1572), - [anon_sym_do] = ACTIONS(1572), - [anon_sym_int] = ACTIONS(1572), - [anon_sym_PLUS] = ACTIONS(1572), - [anon_sym_DASH] = ACTIONS(1572), - [anon_sym_STAR] = ACTIONS(1574), - [anon_sym_asm] = ACTIONS(1572), - [anon_sym_DOLLARassert] = ACTIONS(1572), - [anon_sym_DOLLARerror] = ACTIONS(1572), - [anon_sym_DOLLARecho] = ACTIONS(1572), - [anon_sym_DOLLARif] = ACTIONS(1572), - [anon_sym_DOLLARswitch] = ACTIONS(1572), - [anon_sym_DOLLARfor] = ACTIONS(1572), - [anon_sym_DOLLARforeach] = ACTIONS(1572), - [anon_sym_DOLLARendforeach] = ACTIONS(1572), - [anon_sym_DOLLARalignof] = ACTIONS(1572), - [anon_sym_DOLLARextnameof] = ACTIONS(1572), - [anon_sym_DOLLARnameof] = ACTIONS(1572), - [anon_sym_DOLLARoffsetof] = ACTIONS(1572), - [anon_sym_DOLLARqnameof] = ACTIONS(1572), - [anon_sym_DOLLARvaconst] = ACTIONS(1572), - [anon_sym_DOLLARvaarg] = ACTIONS(1572), - [anon_sym_DOLLARvaref] = ACTIONS(1572), - [anon_sym_DOLLARvaexpr] = ACTIONS(1572), - [anon_sym_true] = ACTIONS(1572), - [anon_sym_false] = ACTIONS(1572), - [anon_sym_null] = ACTIONS(1572), - [anon_sym_DOLLARvacount] = ACTIONS(1572), - [anon_sym_DOLLARappend] = ACTIONS(1572), - [anon_sym_DOLLARconcat] = ACTIONS(1572), - [anon_sym_DOLLAReval] = ACTIONS(1572), - [anon_sym_DOLLARis_const] = ACTIONS(1572), - [anon_sym_DOLLARsizeof] = ACTIONS(1572), - [anon_sym_DOLLARstringify] = ACTIONS(1572), - [anon_sym_DOLLARand] = ACTIONS(1572), - [anon_sym_DOLLARdefined] = ACTIONS(1572), - [anon_sym_DOLLARembed] = ACTIONS(1572), - [anon_sym_DOLLARor] = ACTIONS(1572), - [anon_sym_DOLLARfeature] = ACTIONS(1572), - [anon_sym_DOLLARassignable] = ACTIONS(1572), - [anon_sym_BANG] = ACTIONS(1574), - [anon_sym_TILDE] = ACTIONS(1574), - [anon_sym_PLUS_PLUS] = ACTIONS(1574), - [anon_sym_DASH_DASH] = ACTIONS(1574), - [anon_sym_typeid] = ACTIONS(1572), - [anon_sym_LBRACE_PIPE] = ACTIONS(1574), - [anon_sym_void] = ACTIONS(1572), - [anon_sym_bool] = ACTIONS(1572), - [anon_sym_char] = ACTIONS(1572), - [anon_sym_ichar] = ACTIONS(1572), - [anon_sym_short] = ACTIONS(1572), - [anon_sym_ushort] = ACTIONS(1572), - [anon_sym_uint] = ACTIONS(1572), - [anon_sym_long] = ACTIONS(1572), - [anon_sym_ulong] = ACTIONS(1572), - [anon_sym_int128] = ACTIONS(1572), - [anon_sym_uint128] = ACTIONS(1572), - [anon_sym_float] = ACTIONS(1572), - [anon_sym_double] = ACTIONS(1572), - [anon_sym_float16] = ACTIONS(1572), - [anon_sym_bfloat16] = ACTIONS(1572), - [anon_sym_float128] = ACTIONS(1572), - [anon_sym_iptr] = ACTIONS(1572), - [anon_sym_uptr] = ACTIONS(1572), - [anon_sym_isz] = ACTIONS(1572), - [anon_sym_usz] = ACTIONS(1572), - [anon_sym_anyfault] = ACTIONS(1572), - [anon_sym_any] = ACTIONS(1572), - [anon_sym_DOLLARtypeof] = ACTIONS(1572), - [anon_sym_DOLLARtypefrom] = ACTIONS(1572), - [anon_sym_DOLLARvatype] = ACTIONS(1572), - [anon_sym_DOLLARevaltype] = ACTIONS(1572), - [sym_real_literal] = ACTIONS(1574), + [sym_ident] = ACTIONS(1501), + [sym_integer_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1503), + [anon_sym_BQUOTE] = ACTIONS(1503), + [sym_bytes_literal] = ACTIONS(1503), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1501), + [sym_at_ident] = ACTIONS(1503), + [sym_hash_ident] = ACTIONS(1503), + [sym_type_ident] = ACTIONS(1503), + [sym_ct_type_ident] = ACTIONS(1503), + [sym_const_ident] = ACTIONS(1501), + [sym_builtin] = ACTIONS(1503), + [anon_sym_LPAREN] = ACTIONS(1503), + [anon_sym_AMP] = ACTIONS(1501), + [anon_sym_static] = ACTIONS(1501), + [anon_sym_tlocal] = ACTIONS(1501), + [anon_sym_SEMI] = ACTIONS(1503), + [anon_sym_fn] = ACTIONS(1501), + [anon_sym_LBRACE] = ACTIONS(1501), + [anon_sym_const] = ACTIONS(1501), + [anon_sym_var] = ACTIONS(1501), + [anon_sym_return] = ACTIONS(1501), + [anon_sym_continue] = ACTIONS(1501), + [anon_sym_break] = ACTIONS(1501), + [anon_sym_defer] = ACTIONS(1501), + [anon_sym_assert] = ACTIONS(1501), + [anon_sym_nextcase] = ACTIONS(1501), + [anon_sym_switch] = ACTIONS(1501), + [anon_sym_AMP_AMP] = ACTIONS(1503), + [anon_sym_if] = ACTIONS(1501), + [anon_sym_for] = ACTIONS(1501), + [anon_sym_foreach] = ACTIONS(1501), + [anon_sym_foreach_r] = ACTIONS(1501), + [anon_sym_while] = ACTIONS(1501), + [anon_sym_do] = ACTIONS(1501), + [anon_sym_int] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_asm] = ACTIONS(1501), + [anon_sym_DOLLARassert] = ACTIONS(1501), + [anon_sym_DOLLARerror] = ACTIONS(1501), + [anon_sym_DOLLARecho] = ACTIONS(1501), + [anon_sym_DOLLARif] = ACTIONS(1501), + [anon_sym_DOLLARendif] = ACTIONS(1501), + [anon_sym_DOLLARswitch] = ACTIONS(1501), + [anon_sym_DOLLARfor] = ACTIONS(1501), + [anon_sym_DOLLARforeach] = ACTIONS(1501), + [anon_sym_DOLLARalignof] = ACTIONS(1501), + [anon_sym_DOLLARextnameof] = ACTIONS(1501), + [anon_sym_DOLLARnameof] = ACTIONS(1501), + [anon_sym_DOLLARoffsetof] = ACTIONS(1501), + [anon_sym_DOLLARqnameof] = ACTIONS(1501), + [anon_sym_DOLLARvaconst] = ACTIONS(1501), + [anon_sym_DOLLARvaarg] = ACTIONS(1501), + [anon_sym_DOLLARvaref] = ACTIONS(1501), + [anon_sym_DOLLARvaexpr] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1501), + [anon_sym_false] = ACTIONS(1501), + [anon_sym_null] = ACTIONS(1501), + [anon_sym_DOLLARvacount] = ACTIONS(1501), + [anon_sym_DOLLARappend] = ACTIONS(1501), + [anon_sym_DOLLARconcat] = ACTIONS(1501), + [anon_sym_DOLLAReval] = ACTIONS(1501), + [anon_sym_DOLLARis_const] = ACTIONS(1501), + [anon_sym_DOLLARsizeof] = ACTIONS(1501), + [anon_sym_DOLLARstringify] = ACTIONS(1501), + [anon_sym_DOLLARand] = ACTIONS(1501), + [anon_sym_DOLLARdefined] = ACTIONS(1501), + [anon_sym_DOLLARembed] = ACTIONS(1501), + [anon_sym_DOLLARor] = ACTIONS(1501), + [anon_sym_DOLLARfeature] = ACTIONS(1501), + [anon_sym_DOLLARassignable] = ACTIONS(1501), + [anon_sym_BANG] = ACTIONS(1503), + [anon_sym_TILDE] = ACTIONS(1503), + [anon_sym_PLUS_PLUS] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1503), + [anon_sym_typeid] = ACTIONS(1501), + [anon_sym_LBRACE_PIPE] = ACTIONS(1503), + [anon_sym_void] = ACTIONS(1501), + [anon_sym_bool] = ACTIONS(1501), + [anon_sym_char] = ACTIONS(1501), + [anon_sym_ichar] = ACTIONS(1501), + [anon_sym_short] = ACTIONS(1501), + [anon_sym_ushort] = ACTIONS(1501), + [anon_sym_uint] = ACTIONS(1501), + [anon_sym_long] = ACTIONS(1501), + [anon_sym_ulong] = ACTIONS(1501), + [anon_sym_int128] = ACTIONS(1501), + [anon_sym_uint128] = ACTIONS(1501), + [anon_sym_float] = ACTIONS(1501), + [anon_sym_double] = ACTIONS(1501), + [anon_sym_float16] = ACTIONS(1501), + [anon_sym_bfloat16] = ACTIONS(1501), + [anon_sym_float128] = ACTIONS(1501), + [anon_sym_iptr] = ACTIONS(1501), + [anon_sym_uptr] = ACTIONS(1501), + [anon_sym_isz] = ACTIONS(1501), + [anon_sym_usz] = ACTIONS(1501), + [anon_sym_anyfault] = ACTIONS(1501), + [anon_sym_any] = ACTIONS(1501), + [anon_sym_DOLLARtypeof] = ACTIONS(1501), + [anon_sym_DOLLARtypefrom] = ACTIONS(1501), + [anon_sym_DOLLARvatype] = ACTIONS(1501), + [anon_sym_DOLLARevaltype] = ACTIONS(1501), + [sym_real_literal] = ACTIONS(1503), }, [753] = { [sym_line_comment] = STATE(753), [sym_doc_comment] = STATE(753), [sym_block_comment] = STATE(753), - [sym_ident] = ACTIONS(1544), - [sym_integer_literal] = ACTIONS(1546), - [anon_sym_SQUOTE] = ACTIONS(1546), - [anon_sym_DQUOTE] = ACTIONS(1546), - [anon_sym_BQUOTE] = ACTIONS(1546), - [sym_bytes_literal] = ACTIONS(1546), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1544), - [sym_at_ident] = ACTIONS(1546), - [sym_hash_ident] = ACTIONS(1546), - [sym_type_ident] = ACTIONS(1546), - [sym_ct_type_ident] = ACTIONS(1546), - [sym_const_ident] = ACTIONS(1544), - [sym_builtin] = ACTIONS(1546), - [anon_sym_LPAREN] = ACTIONS(1546), - [anon_sym_AMP] = ACTIONS(1544), - [anon_sym_static] = ACTIONS(1544), - [anon_sym_tlocal] = ACTIONS(1544), - [anon_sym_SEMI] = ACTIONS(1546), - [anon_sym_fn] = ACTIONS(1544), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_const] = ACTIONS(1544), - [anon_sym_var] = ACTIONS(1544), - [anon_sym_return] = ACTIONS(1544), - [anon_sym_continue] = ACTIONS(1544), - [anon_sym_break] = ACTIONS(1544), - [anon_sym_defer] = ACTIONS(1544), - [anon_sym_assert] = ACTIONS(1544), - [anon_sym_nextcase] = ACTIONS(1544), - [anon_sym_switch] = ACTIONS(1544), - [anon_sym_AMP_AMP] = ACTIONS(1546), - [anon_sym_if] = ACTIONS(1544), - [anon_sym_for] = ACTIONS(1544), - [anon_sym_foreach] = ACTIONS(1544), - [anon_sym_foreach_r] = ACTIONS(1544), - [anon_sym_while] = ACTIONS(1544), - [anon_sym_do] = ACTIONS(1544), - [anon_sym_int] = ACTIONS(1544), - [anon_sym_PLUS] = ACTIONS(1544), - [anon_sym_DASH] = ACTIONS(1544), - [anon_sym_STAR] = ACTIONS(1546), - [anon_sym_asm] = ACTIONS(1544), - [anon_sym_DOLLARassert] = ACTIONS(1544), - [anon_sym_DOLLARerror] = ACTIONS(1544), - [anon_sym_DOLLARecho] = ACTIONS(1544), - [anon_sym_DOLLARif] = ACTIONS(1544), - [anon_sym_DOLLARswitch] = ACTIONS(1544), - [anon_sym_DOLLARfor] = ACTIONS(1544), - [anon_sym_DOLLARendfor] = ACTIONS(1544), - [anon_sym_DOLLARforeach] = ACTIONS(1544), - [anon_sym_DOLLARalignof] = ACTIONS(1544), - [anon_sym_DOLLARextnameof] = ACTIONS(1544), - [anon_sym_DOLLARnameof] = ACTIONS(1544), - [anon_sym_DOLLARoffsetof] = ACTIONS(1544), - [anon_sym_DOLLARqnameof] = ACTIONS(1544), - [anon_sym_DOLLARvaconst] = ACTIONS(1544), - [anon_sym_DOLLARvaarg] = ACTIONS(1544), - [anon_sym_DOLLARvaref] = ACTIONS(1544), - [anon_sym_DOLLARvaexpr] = ACTIONS(1544), - [anon_sym_true] = ACTIONS(1544), - [anon_sym_false] = ACTIONS(1544), - [anon_sym_null] = ACTIONS(1544), - [anon_sym_DOLLARvacount] = ACTIONS(1544), - [anon_sym_DOLLARappend] = ACTIONS(1544), - [anon_sym_DOLLARconcat] = ACTIONS(1544), - [anon_sym_DOLLAReval] = ACTIONS(1544), - [anon_sym_DOLLARis_const] = ACTIONS(1544), - [anon_sym_DOLLARsizeof] = ACTIONS(1544), - [anon_sym_DOLLARstringify] = ACTIONS(1544), - [anon_sym_DOLLARand] = ACTIONS(1544), - [anon_sym_DOLLARdefined] = ACTIONS(1544), - [anon_sym_DOLLARembed] = ACTIONS(1544), - [anon_sym_DOLLARor] = ACTIONS(1544), - [anon_sym_DOLLARfeature] = ACTIONS(1544), - [anon_sym_DOLLARassignable] = ACTIONS(1544), - [anon_sym_BANG] = ACTIONS(1546), - [anon_sym_TILDE] = ACTIONS(1546), - [anon_sym_PLUS_PLUS] = ACTIONS(1546), - [anon_sym_DASH_DASH] = ACTIONS(1546), - [anon_sym_typeid] = ACTIONS(1544), - [anon_sym_LBRACE_PIPE] = ACTIONS(1546), - [anon_sym_void] = ACTIONS(1544), - [anon_sym_bool] = ACTIONS(1544), - [anon_sym_char] = ACTIONS(1544), - [anon_sym_ichar] = ACTIONS(1544), - [anon_sym_short] = ACTIONS(1544), - [anon_sym_ushort] = ACTIONS(1544), - [anon_sym_uint] = ACTIONS(1544), - [anon_sym_long] = ACTIONS(1544), - [anon_sym_ulong] = ACTIONS(1544), - [anon_sym_int128] = ACTIONS(1544), - [anon_sym_uint128] = ACTIONS(1544), - [anon_sym_float] = ACTIONS(1544), - [anon_sym_double] = ACTIONS(1544), - [anon_sym_float16] = ACTIONS(1544), - [anon_sym_bfloat16] = ACTIONS(1544), - [anon_sym_float128] = ACTIONS(1544), - [anon_sym_iptr] = ACTIONS(1544), - [anon_sym_uptr] = ACTIONS(1544), - [anon_sym_isz] = ACTIONS(1544), - [anon_sym_usz] = ACTIONS(1544), - [anon_sym_anyfault] = ACTIONS(1544), - [anon_sym_any] = ACTIONS(1544), - [anon_sym_DOLLARtypeof] = ACTIONS(1544), - [anon_sym_DOLLARtypefrom] = ACTIONS(1544), - [anon_sym_DOLLARvatype] = ACTIONS(1544), - [anon_sym_DOLLARevaltype] = ACTIONS(1544), - [sym_real_literal] = ACTIONS(1546), + [sym_ident] = ACTIONS(1469), + [sym_integer_literal] = ACTIONS(1471), + [anon_sym_SQUOTE] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(1471), + [anon_sym_BQUOTE] = ACTIONS(1471), + [sym_bytes_literal] = ACTIONS(1471), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1469), + [sym_at_ident] = ACTIONS(1471), + [sym_hash_ident] = ACTIONS(1471), + [sym_type_ident] = ACTIONS(1471), + [sym_ct_type_ident] = ACTIONS(1471), + [sym_const_ident] = ACTIONS(1469), + [sym_builtin] = ACTIONS(1471), + [anon_sym_LPAREN] = ACTIONS(1471), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_static] = ACTIONS(1469), + [anon_sym_tlocal] = ACTIONS(1469), + [anon_sym_SEMI] = ACTIONS(1471), + [anon_sym_fn] = ACTIONS(1469), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_const] = ACTIONS(1469), + [anon_sym_var] = ACTIONS(1469), + [anon_sym_return] = ACTIONS(1469), + [anon_sym_continue] = ACTIONS(1469), + [anon_sym_break] = ACTIONS(1469), + [anon_sym_defer] = ACTIONS(1469), + [anon_sym_assert] = ACTIONS(1469), + [anon_sym_nextcase] = ACTIONS(1469), + [anon_sym_switch] = ACTIONS(1469), + [anon_sym_AMP_AMP] = ACTIONS(1471), + [anon_sym_if] = ACTIONS(1469), + [anon_sym_for] = ACTIONS(1469), + [anon_sym_foreach] = ACTIONS(1469), + [anon_sym_foreach_r] = ACTIONS(1469), + [anon_sym_while] = ACTIONS(1469), + [anon_sym_do] = ACTIONS(1469), + [anon_sym_int] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1469), + [anon_sym_DASH] = ACTIONS(1469), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_asm] = ACTIONS(1469), + [anon_sym_DOLLARassert] = ACTIONS(1469), + [anon_sym_DOLLARerror] = ACTIONS(1469), + [anon_sym_DOLLARecho] = ACTIONS(1469), + [anon_sym_DOLLARif] = ACTIONS(1469), + [anon_sym_DOLLARendif] = ACTIONS(1469), + [anon_sym_DOLLARswitch] = ACTIONS(1469), + [anon_sym_DOLLARfor] = ACTIONS(1469), + [anon_sym_DOLLARforeach] = ACTIONS(1469), + [anon_sym_DOLLARalignof] = ACTIONS(1469), + [anon_sym_DOLLARextnameof] = ACTIONS(1469), + [anon_sym_DOLLARnameof] = ACTIONS(1469), + [anon_sym_DOLLARoffsetof] = ACTIONS(1469), + [anon_sym_DOLLARqnameof] = ACTIONS(1469), + [anon_sym_DOLLARvaconst] = ACTIONS(1469), + [anon_sym_DOLLARvaarg] = ACTIONS(1469), + [anon_sym_DOLLARvaref] = ACTIONS(1469), + [anon_sym_DOLLARvaexpr] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1469), + [anon_sym_false] = ACTIONS(1469), + [anon_sym_null] = ACTIONS(1469), + [anon_sym_DOLLARvacount] = ACTIONS(1469), + [anon_sym_DOLLARappend] = ACTIONS(1469), + [anon_sym_DOLLARconcat] = ACTIONS(1469), + [anon_sym_DOLLAReval] = ACTIONS(1469), + [anon_sym_DOLLARis_const] = ACTIONS(1469), + [anon_sym_DOLLARsizeof] = ACTIONS(1469), + [anon_sym_DOLLARstringify] = ACTIONS(1469), + [anon_sym_DOLLARand] = ACTIONS(1469), + [anon_sym_DOLLARdefined] = ACTIONS(1469), + [anon_sym_DOLLARembed] = ACTIONS(1469), + [anon_sym_DOLLARor] = ACTIONS(1469), + [anon_sym_DOLLARfeature] = ACTIONS(1469), + [anon_sym_DOLLARassignable] = ACTIONS(1469), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1471), + [anon_sym_PLUS_PLUS] = ACTIONS(1471), + [anon_sym_DASH_DASH] = ACTIONS(1471), + [anon_sym_typeid] = ACTIONS(1469), + [anon_sym_LBRACE_PIPE] = ACTIONS(1471), + [anon_sym_void] = ACTIONS(1469), + [anon_sym_bool] = ACTIONS(1469), + [anon_sym_char] = ACTIONS(1469), + [anon_sym_ichar] = ACTIONS(1469), + [anon_sym_short] = ACTIONS(1469), + [anon_sym_ushort] = ACTIONS(1469), + [anon_sym_uint] = ACTIONS(1469), + [anon_sym_long] = ACTIONS(1469), + [anon_sym_ulong] = ACTIONS(1469), + [anon_sym_int128] = ACTIONS(1469), + [anon_sym_uint128] = ACTIONS(1469), + [anon_sym_float] = ACTIONS(1469), + [anon_sym_double] = ACTIONS(1469), + [anon_sym_float16] = ACTIONS(1469), + [anon_sym_bfloat16] = ACTIONS(1469), + [anon_sym_float128] = ACTIONS(1469), + [anon_sym_iptr] = ACTIONS(1469), + [anon_sym_uptr] = ACTIONS(1469), + [anon_sym_isz] = ACTIONS(1469), + [anon_sym_usz] = ACTIONS(1469), + [anon_sym_anyfault] = ACTIONS(1469), + [anon_sym_any] = ACTIONS(1469), + [anon_sym_DOLLARtypeof] = ACTIONS(1469), + [anon_sym_DOLLARtypefrom] = ACTIONS(1469), + [anon_sym_DOLLARvatype] = ACTIONS(1469), + [anon_sym_DOLLARevaltype] = ACTIONS(1469), + [sym_real_literal] = ACTIONS(1471), }, [754] = { [sym_line_comment] = STATE(754), [sym_doc_comment] = STATE(754), [sym_block_comment] = STATE(754), - [sym_ident] = ACTIONS(1394), - [sym_integer_literal] = ACTIONS(1396), - [anon_sym_SQUOTE] = ACTIONS(1396), - [anon_sym_DQUOTE] = ACTIONS(1396), - [anon_sym_BQUOTE] = ACTIONS(1396), - [sym_bytes_literal] = ACTIONS(1396), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1394), - [sym_at_ident] = ACTIONS(1396), - [sym_hash_ident] = ACTIONS(1396), - [sym_type_ident] = ACTIONS(1396), - [sym_ct_type_ident] = ACTIONS(1396), - [sym_const_ident] = ACTIONS(1394), - [sym_builtin] = ACTIONS(1396), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_AMP] = ACTIONS(1394), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_tlocal] = ACTIONS(1394), - [anon_sym_SEMI] = ACTIONS(1396), - [anon_sym_fn] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1394), - [anon_sym_const] = ACTIONS(1394), - [anon_sym_var] = ACTIONS(1394), - [anon_sym_return] = ACTIONS(1394), - [anon_sym_continue] = ACTIONS(1394), - [anon_sym_break] = ACTIONS(1394), - [anon_sym_defer] = ACTIONS(1394), - [anon_sym_assert] = ACTIONS(1394), - [anon_sym_nextcase] = ACTIONS(1394), - [anon_sym_switch] = ACTIONS(1394), - [anon_sym_AMP_AMP] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1394), - [anon_sym_for] = ACTIONS(1394), - [anon_sym_foreach] = ACTIONS(1394), - [anon_sym_foreach_r] = ACTIONS(1394), - [anon_sym_while] = ACTIONS(1394), - [anon_sym_do] = ACTIONS(1394), - [anon_sym_int] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1394), - [anon_sym_DASH] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(1396), - [anon_sym_asm] = ACTIONS(1394), - [anon_sym_DOLLARassert] = ACTIONS(1394), - [anon_sym_DOLLARerror] = ACTIONS(1394), - [anon_sym_DOLLARecho] = ACTIONS(1394), - [anon_sym_DOLLARif] = ACTIONS(1394), - [anon_sym_DOLLARswitch] = ACTIONS(1394), - [anon_sym_DOLLARfor] = ACTIONS(1394), - [anon_sym_DOLLARendfor] = ACTIONS(1394), - [anon_sym_DOLLARforeach] = ACTIONS(1394), - [anon_sym_DOLLARalignof] = ACTIONS(1394), - [anon_sym_DOLLARextnameof] = ACTIONS(1394), - [anon_sym_DOLLARnameof] = ACTIONS(1394), - [anon_sym_DOLLARoffsetof] = ACTIONS(1394), - [anon_sym_DOLLARqnameof] = ACTIONS(1394), - [anon_sym_DOLLARvaconst] = ACTIONS(1394), - [anon_sym_DOLLARvaarg] = ACTIONS(1394), - [anon_sym_DOLLARvaref] = ACTIONS(1394), - [anon_sym_DOLLARvaexpr] = ACTIONS(1394), - [anon_sym_true] = ACTIONS(1394), - [anon_sym_false] = ACTIONS(1394), - [anon_sym_null] = ACTIONS(1394), - [anon_sym_DOLLARvacount] = ACTIONS(1394), - [anon_sym_DOLLARappend] = ACTIONS(1394), - [anon_sym_DOLLARconcat] = ACTIONS(1394), - [anon_sym_DOLLAReval] = ACTIONS(1394), - [anon_sym_DOLLARis_const] = ACTIONS(1394), - [anon_sym_DOLLARsizeof] = ACTIONS(1394), - [anon_sym_DOLLARstringify] = ACTIONS(1394), - [anon_sym_DOLLARand] = ACTIONS(1394), - [anon_sym_DOLLARdefined] = ACTIONS(1394), - [anon_sym_DOLLARembed] = ACTIONS(1394), - [anon_sym_DOLLARor] = ACTIONS(1394), - [anon_sym_DOLLARfeature] = ACTIONS(1394), - [anon_sym_DOLLARassignable] = ACTIONS(1394), - [anon_sym_BANG] = ACTIONS(1396), - [anon_sym_TILDE] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1396), - [anon_sym_DASH_DASH] = ACTIONS(1396), - [anon_sym_typeid] = ACTIONS(1394), - [anon_sym_LBRACE_PIPE] = ACTIONS(1396), - [anon_sym_void] = ACTIONS(1394), - [anon_sym_bool] = ACTIONS(1394), - [anon_sym_char] = ACTIONS(1394), - [anon_sym_ichar] = ACTIONS(1394), - [anon_sym_short] = ACTIONS(1394), - [anon_sym_ushort] = ACTIONS(1394), - [anon_sym_uint] = ACTIONS(1394), - [anon_sym_long] = ACTIONS(1394), - [anon_sym_ulong] = ACTIONS(1394), - [anon_sym_int128] = ACTIONS(1394), - [anon_sym_uint128] = ACTIONS(1394), - [anon_sym_float] = ACTIONS(1394), - [anon_sym_double] = ACTIONS(1394), - [anon_sym_float16] = ACTIONS(1394), - [anon_sym_bfloat16] = ACTIONS(1394), - [anon_sym_float128] = ACTIONS(1394), - [anon_sym_iptr] = ACTIONS(1394), - [anon_sym_uptr] = ACTIONS(1394), - [anon_sym_isz] = ACTIONS(1394), - [anon_sym_usz] = ACTIONS(1394), - [anon_sym_anyfault] = ACTIONS(1394), - [anon_sym_any] = ACTIONS(1394), - [anon_sym_DOLLARtypeof] = ACTIONS(1394), - [anon_sym_DOLLARtypefrom] = ACTIONS(1394), - [anon_sym_DOLLARvatype] = ACTIONS(1394), - [anon_sym_DOLLARevaltype] = ACTIONS(1394), - [sym_real_literal] = ACTIONS(1396), + [sym_ident] = ACTIONS(1461), + [sym_integer_literal] = ACTIONS(1463), + [anon_sym_SQUOTE] = ACTIONS(1463), + [anon_sym_DQUOTE] = ACTIONS(1463), + [anon_sym_BQUOTE] = ACTIONS(1463), + [sym_bytes_literal] = ACTIONS(1463), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1461), + [sym_at_ident] = ACTIONS(1463), + [sym_hash_ident] = ACTIONS(1463), + [sym_type_ident] = ACTIONS(1463), + [sym_ct_type_ident] = ACTIONS(1463), + [sym_const_ident] = ACTIONS(1461), + [sym_builtin] = ACTIONS(1463), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_static] = ACTIONS(1461), + [anon_sym_tlocal] = ACTIONS(1461), + [anon_sym_SEMI] = ACTIONS(1463), + [anon_sym_fn] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_const] = ACTIONS(1461), + [anon_sym_var] = ACTIONS(1461), + [anon_sym_return] = ACTIONS(1461), + [anon_sym_continue] = ACTIONS(1461), + [anon_sym_break] = ACTIONS(1461), + [anon_sym_defer] = ACTIONS(1461), + [anon_sym_assert] = ACTIONS(1461), + [anon_sym_nextcase] = ACTIONS(1461), + [anon_sym_switch] = ACTIONS(1461), + [anon_sym_AMP_AMP] = ACTIONS(1463), + [anon_sym_if] = ACTIONS(1461), + [anon_sym_for] = ACTIONS(1461), + [anon_sym_foreach] = ACTIONS(1461), + [anon_sym_foreach_r] = ACTIONS(1461), + [anon_sym_while] = ACTIONS(1461), + [anon_sym_do] = ACTIONS(1461), + [anon_sym_int] = ACTIONS(1461), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_STAR] = ACTIONS(1463), + [anon_sym_asm] = ACTIONS(1461), + [anon_sym_DOLLARassert] = ACTIONS(1461), + [anon_sym_DOLLARerror] = ACTIONS(1461), + [anon_sym_DOLLARecho] = ACTIONS(1461), + [anon_sym_DOLLARif] = ACTIONS(1461), + [anon_sym_DOLLARendif] = ACTIONS(1461), + [anon_sym_DOLLARswitch] = ACTIONS(1461), + [anon_sym_DOLLARfor] = ACTIONS(1461), + [anon_sym_DOLLARforeach] = ACTIONS(1461), + [anon_sym_DOLLARalignof] = ACTIONS(1461), + [anon_sym_DOLLARextnameof] = ACTIONS(1461), + [anon_sym_DOLLARnameof] = ACTIONS(1461), + [anon_sym_DOLLARoffsetof] = ACTIONS(1461), + [anon_sym_DOLLARqnameof] = ACTIONS(1461), + [anon_sym_DOLLARvaconst] = ACTIONS(1461), + [anon_sym_DOLLARvaarg] = ACTIONS(1461), + [anon_sym_DOLLARvaref] = ACTIONS(1461), + [anon_sym_DOLLARvaexpr] = ACTIONS(1461), + [anon_sym_true] = ACTIONS(1461), + [anon_sym_false] = ACTIONS(1461), + [anon_sym_null] = ACTIONS(1461), + [anon_sym_DOLLARvacount] = ACTIONS(1461), + [anon_sym_DOLLARappend] = ACTIONS(1461), + [anon_sym_DOLLARconcat] = ACTIONS(1461), + [anon_sym_DOLLAReval] = ACTIONS(1461), + [anon_sym_DOLLARis_const] = ACTIONS(1461), + [anon_sym_DOLLARsizeof] = ACTIONS(1461), + [anon_sym_DOLLARstringify] = ACTIONS(1461), + [anon_sym_DOLLARand] = ACTIONS(1461), + [anon_sym_DOLLARdefined] = ACTIONS(1461), + [anon_sym_DOLLARembed] = ACTIONS(1461), + [anon_sym_DOLLARor] = ACTIONS(1461), + [anon_sym_DOLLARfeature] = ACTIONS(1461), + [anon_sym_DOLLARassignable] = ACTIONS(1461), + [anon_sym_BANG] = ACTIONS(1463), + [anon_sym_TILDE] = ACTIONS(1463), + [anon_sym_PLUS_PLUS] = ACTIONS(1463), + [anon_sym_DASH_DASH] = ACTIONS(1463), + [anon_sym_typeid] = ACTIONS(1461), + [anon_sym_LBRACE_PIPE] = ACTIONS(1463), + [anon_sym_void] = ACTIONS(1461), + [anon_sym_bool] = ACTIONS(1461), + [anon_sym_char] = ACTIONS(1461), + [anon_sym_ichar] = ACTIONS(1461), + [anon_sym_short] = ACTIONS(1461), + [anon_sym_ushort] = ACTIONS(1461), + [anon_sym_uint] = ACTIONS(1461), + [anon_sym_long] = ACTIONS(1461), + [anon_sym_ulong] = ACTIONS(1461), + [anon_sym_int128] = ACTIONS(1461), + [anon_sym_uint128] = ACTIONS(1461), + [anon_sym_float] = ACTIONS(1461), + [anon_sym_double] = ACTIONS(1461), + [anon_sym_float16] = ACTIONS(1461), + [anon_sym_bfloat16] = ACTIONS(1461), + [anon_sym_float128] = ACTIONS(1461), + [anon_sym_iptr] = ACTIONS(1461), + [anon_sym_uptr] = ACTIONS(1461), + [anon_sym_isz] = ACTIONS(1461), + [anon_sym_usz] = ACTIONS(1461), + [anon_sym_anyfault] = ACTIONS(1461), + [anon_sym_any] = ACTIONS(1461), + [anon_sym_DOLLARtypeof] = ACTIONS(1461), + [anon_sym_DOLLARtypefrom] = ACTIONS(1461), + [anon_sym_DOLLARvatype] = ACTIONS(1461), + [anon_sym_DOLLARevaltype] = ACTIONS(1461), + [sym_real_literal] = ACTIONS(1463), }, [755] = { [sym_line_comment] = STATE(755), [sym_doc_comment] = STATE(755), [sym_block_comment] = STATE(755), - [sym_ident] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(1618), - [anon_sym_SQUOTE] = ACTIONS(1618), - [anon_sym_DQUOTE] = ACTIONS(1618), - [anon_sym_BQUOTE] = ACTIONS(1618), - [sym_bytes_literal] = ACTIONS(1618), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1616), - [sym_at_ident] = ACTIONS(1618), - [sym_hash_ident] = ACTIONS(1618), - [sym_type_ident] = ACTIONS(1618), - [sym_ct_type_ident] = ACTIONS(1618), - [sym_const_ident] = ACTIONS(1616), - [sym_builtin] = ACTIONS(1618), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_static] = ACTIONS(1616), - [anon_sym_tlocal] = ACTIONS(1616), - [anon_sym_SEMI] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1616), - [anon_sym_LBRACE] = ACTIONS(1616), - [anon_sym_const] = ACTIONS(1616), - [anon_sym_var] = ACTIONS(1616), - [anon_sym_return] = ACTIONS(1616), - [anon_sym_continue] = ACTIONS(1616), - [anon_sym_break] = ACTIONS(1616), - [anon_sym_defer] = ACTIONS(1616), - [anon_sym_assert] = ACTIONS(1616), - [anon_sym_nextcase] = ACTIONS(1616), - [anon_sym_switch] = ACTIONS(1616), - [anon_sym_AMP_AMP] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1616), - [anon_sym_for] = ACTIONS(1616), - [anon_sym_foreach] = ACTIONS(1616), - [anon_sym_foreach_r] = ACTIONS(1616), - [anon_sym_while] = ACTIONS(1616), - [anon_sym_do] = ACTIONS(1616), - [anon_sym_int] = ACTIONS(1616), - [anon_sym_PLUS] = ACTIONS(1616), - [anon_sym_DASH] = ACTIONS(1616), - [anon_sym_STAR] = ACTIONS(1618), - [anon_sym_asm] = ACTIONS(1616), - [anon_sym_DOLLARassert] = ACTIONS(1616), - [anon_sym_DOLLARerror] = ACTIONS(1616), - [anon_sym_DOLLARecho] = ACTIONS(1616), - [anon_sym_DOLLARif] = ACTIONS(1616), - [anon_sym_DOLLARendif] = ACTIONS(1616), - [anon_sym_DOLLARswitch] = ACTIONS(1616), - [anon_sym_DOLLARfor] = ACTIONS(1616), - [anon_sym_DOLLARforeach] = ACTIONS(1616), - [anon_sym_DOLLARalignof] = ACTIONS(1616), - [anon_sym_DOLLARextnameof] = ACTIONS(1616), - [anon_sym_DOLLARnameof] = ACTIONS(1616), - [anon_sym_DOLLARoffsetof] = ACTIONS(1616), - [anon_sym_DOLLARqnameof] = ACTIONS(1616), - [anon_sym_DOLLARvaconst] = ACTIONS(1616), - [anon_sym_DOLLARvaarg] = ACTIONS(1616), - [anon_sym_DOLLARvaref] = ACTIONS(1616), - [anon_sym_DOLLARvaexpr] = ACTIONS(1616), - [anon_sym_true] = ACTIONS(1616), - [anon_sym_false] = ACTIONS(1616), - [anon_sym_null] = ACTIONS(1616), - [anon_sym_DOLLARvacount] = ACTIONS(1616), - [anon_sym_DOLLARappend] = ACTIONS(1616), - [anon_sym_DOLLARconcat] = ACTIONS(1616), - [anon_sym_DOLLAReval] = ACTIONS(1616), - [anon_sym_DOLLARis_const] = ACTIONS(1616), - [anon_sym_DOLLARsizeof] = ACTIONS(1616), - [anon_sym_DOLLARstringify] = ACTIONS(1616), - [anon_sym_DOLLARand] = ACTIONS(1616), - [anon_sym_DOLLARdefined] = ACTIONS(1616), - [anon_sym_DOLLARembed] = ACTIONS(1616), - [anon_sym_DOLLARor] = ACTIONS(1616), - [anon_sym_DOLLARfeature] = ACTIONS(1616), - [anon_sym_DOLLARassignable] = ACTIONS(1616), - [anon_sym_BANG] = ACTIONS(1618), - [anon_sym_TILDE] = ACTIONS(1618), - [anon_sym_PLUS_PLUS] = ACTIONS(1618), - [anon_sym_DASH_DASH] = ACTIONS(1618), - [anon_sym_typeid] = ACTIONS(1616), - [anon_sym_LBRACE_PIPE] = ACTIONS(1618), - [anon_sym_void] = ACTIONS(1616), - [anon_sym_bool] = ACTIONS(1616), - [anon_sym_char] = ACTIONS(1616), - [anon_sym_ichar] = ACTIONS(1616), - [anon_sym_short] = ACTIONS(1616), - [anon_sym_ushort] = ACTIONS(1616), - [anon_sym_uint] = ACTIONS(1616), - [anon_sym_long] = ACTIONS(1616), - [anon_sym_ulong] = ACTIONS(1616), - [anon_sym_int128] = ACTIONS(1616), - [anon_sym_uint128] = ACTIONS(1616), - [anon_sym_float] = ACTIONS(1616), - [anon_sym_double] = ACTIONS(1616), - [anon_sym_float16] = ACTIONS(1616), - [anon_sym_bfloat16] = ACTIONS(1616), - [anon_sym_float128] = ACTIONS(1616), - [anon_sym_iptr] = ACTIONS(1616), - [anon_sym_uptr] = ACTIONS(1616), - [anon_sym_isz] = ACTIONS(1616), - [anon_sym_usz] = ACTIONS(1616), - [anon_sym_anyfault] = ACTIONS(1616), - [anon_sym_any] = ACTIONS(1616), - [anon_sym_DOLLARtypeof] = ACTIONS(1616), - [anon_sym_DOLLARtypefrom] = ACTIONS(1616), - [anon_sym_DOLLARvatype] = ACTIONS(1616), - [anon_sym_DOLLARevaltype] = ACTIONS(1616), - [sym_real_literal] = ACTIONS(1618), + [sym_ident] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1447), + [anon_sym_SQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [anon_sym_BQUOTE] = ACTIONS(1447), + [sym_bytes_literal] = ACTIONS(1447), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1445), + [sym_at_ident] = ACTIONS(1447), + [sym_hash_ident] = ACTIONS(1447), + [sym_type_ident] = ACTIONS(1447), + [sym_ct_type_ident] = ACTIONS(1447), + [sym_const_ident] = ACTIONS(1445), + [sym_builtin] = ACTIONS(1447), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_AMP] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_tlocal] = ACTIONS(1445), + [anon_sym_SEMI] = ACTIONS(1447), + [anon_sym_fn] = ACTIONS(1445), + [anon_sym_LBRACE] = ACTIONS(1445), + [anon_sym_const] = ACTIONS(1445), + [anon_sym_var] = ACTIONS(1445), + [anon_sym_return] = ACTIONS(1445), + [anon_sym_continue] = ACTIONS(1445), + [anon_sym_break] = ACTIONS(1445), + [anon_sym_defer] = ACTIONS(1445), + [anon_sym_assert] = ACTIONS(1445), + [anon_sym_nextcase] = ACTIONS(1445), + [anon_sym_switch] = ACTIONS(1445), + [anon_sym_AMP_AMP] = ACTIONS(1447), + [anon_sym_if] = ACTIONS(1445), + [anon_sym_for] = ACTIONS(1445), + [anon_sym_foreach] = ACTIONS(1445), + [anon_sym_foreach_r] = ACTIONS(1445), + [anon_sym_while] = ACTIONS(1445), + [anon_sym_do] = ACTIONS(1445), + [anon_sym_int] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_STAR] = ACTIONS(1447), + [anon_sym_asm] = ACTIONS(1445), + [anon_sym_DOLLARassert] = ACTIONS(1445), + [anon_sym_DOLLARerror] = ACTIONS(1445), + [anon_sym_DOLLARecho] = ACTIONS(1445), + [anon_sym_DOLLARif] = ACTIONS(1445), + [anon_sym_DOLLARendif] = ACTIONS(1445), + [anon_sym_DOLLARswitch] = ACTIONS(1445), + [anon_sym_DOLLARfor] = ACTIONS(1445), + [anon_sym_DOLLARforeach] = ACTIONS(1445), + [anon_sym_DOLLARalignof] = ACTIONS(1445), + [anon_sym_DOLLARextnameof] = ACTIONS(1445), + [anon_sym_DOLLARnameof] = ACTIONS(1445), + [anon_sym_DOLLARoffsetof] = ACTIONS(1445), + [anon_sym_DOLLARqnameof] = ACTIONS(1445), + [anon_sym_DOLLARvaconst] = ACTIONS(1445), + [anon_sym_DOLLARvaarg] = ACTIONS(1445), + [anon_sym_DOLLARvaref] = ACTIONS(1445), + [anon_sym_DOLLARvaexpr] = ACTIONS(1445), + [anon_sym_true] = ACTIONS(1445), + [anon_sym_false] = ACTIONS(1445), + [anon_sym_null] = ACTIONS(1445), + [anon_sym_DOLLARvacount] = ACTIONS(1445), + [anon_sym_DOLLARappend] = ACTIONS(1445), + [anon_sym_DOLLARconcat] = ACTIONS(1445), + [anon_sym_DOLLAReval] = ACTIONS(1445), + [anon_sym_DOLLARis_const] = ACTIONS(1445), + [anon_sym_DOLLARsizeof] = ACTIONS(1445), + [anon_sym_DOLLARstringify] = ACTIONS(1445), + [anon_sym_DOLLARand] = ACTIONS(1445), + [anon_sym_DOLLARdefined] = ACTIONS(1445), + [anon_sym_DOLLARembed] = ACTIONS(1445), + [anon_sym_DOLLARor] = ACTIONS(1445), + [anon_sym_DOLLARfeature] = ACTIONS(1445), + [anon_sym_DOLLARassignable] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(1447), + [anon_sym_TILDE] = ACTIONS(1447), + [anon_sym_PLUS_PLUS] = ACTIONS(1447), + [anon_sym_DASH_DASH] = ACTIONS(1447), + [anon_sym_typeid] = ACTIONS(1445), + [anon_sym_LBRACE_PIPE] = ACTIONS(1447), + [anon_sym_void] = ACTIONS(1445), + [anon_sym_bool] = ACTIONS(1445), + [anon_sym_char] = ACTIONS(1445), + [anon_sym_ichar] = ACTIONS(1445), + [anon_sym_short] = ACTIONS(1445), + [anon_sym_ushort] = ACTIONS(1445), + [anon_sym_uint] = ACTIONS(1445), + [anon_sym_long] = ACTIONS(1445), + [anon_sym_ulong] = ACTIONS(1445), + [anon_sym_int128] = ACTIONS(1445), + [anon_sym_uint128] = ACTIONS(1445), + [anon_sym_float] = ACTIONS(1445), + [anon_sym_double] = ACTIONS(1445), + [anon_sym_float16] = ACTIONS(1445), + [anon_sym_bfloat16] = ACTIONS(1445), + [anon_sym_float128] = ACTIONS(1445), + [anon_sym_iptr] = ACTIONS(1445), + [anon_sym_uptr] = ACTIONS(1445), + [anon_sym_isz] = ACTIONS(1445), + [anon_sym_usz] = ACTIONS(1445), + [anon_sym_anyfault] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_DOLLARtypeof] = ACTIONS(1445), + [anon_sym_DOLLARtypefrom] = ACTIONS(1445), + [anon_sym_DOLLARvatype] = ACTIONS(1445), + [anon_sym_DOLLARevaltype] = ACTIONS(1445), + [sym_real_literal] = ACTIONS(1447), }, [756] = { [sym_line_comment] = STATE(756), [sym_doc_comment] = STATE(756), [sym_block_comment] = STATE(756), - [sym_ident] = ACTIONS(1398), - [sym_integer_literal] = ACTIONS(1400), - [anon_sym_SQUOTE] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [anon_sym_BQUOTE] = ACTIONS(1400), - [sym_bytes_literal] = ACTIONS(1400), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1398), - [sym_at_ident] = ACTIONS(1400), - [sym_hash_ident] = ACTIONS(1400), - [sym_type_ident] = ACTIONS(1400), - [sym_ct_type_ident] = ACTIONS(1400), - [sym_const_ident] = ACTIONS(1398), - [sym_builtin] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1400), - [anon_sym_AMP] = ACTIONS(1398), - [anon_sym_static] = ACTIONS(1398), - [anon_sym_tlocal] = ACTIONS(1398), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym_fn] = ACTIONS(1398), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_const] = ACTIONS(1398), - [anon_sym_var] = ACTIONS(1398), - [anon_sym_return] = ACTIONS(1398), - [anon_sym_continue] = ACTIONS(1398), - [anon_sym_break] = ACTIONS(1398), - [anon_sym_defer] = ACTIONS(1398), - [anon_sym_assert] = ACTIONS(1398), - [anon_sym_nextcase] = ACTIONS(1398), - [anon_sym_switch] = ACTIONS(1398), - [anon_sym_AMP_AMP] = ACTIONS(1400), - [anon_sym_if] = ACTIONS(1398), - [anon_sym_for] = ACTIONS(1398), - [anon_sym_foreach] = ACTIONS(1398), - [anon_sym_foreach_r] = ACTIONS(1398), - [anon_sym_while] = ACTIONS(1398), - [anon_sym_do] = ACTIONS(1398), - [anon_sym_int] = ACTIONS(1398), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_asm] = ACTIONS(1398), - [anon_sym_DOLLARassert] = ACTIONS(1398), - [anon_sym_DOLLARerror] = ACTIONS(1398), - [anon_sym_DOLLARecho] = ACTIONS(1398), - [anon_sym_DOLLARif] = ACTIONS(1398), - [anon_sym_DOLLARswitch] = ACTIONS(1398), - [anon_sym_DOLLARfor] = ACTIONS(1398), - [anon_sym_DOLLARendfor] = ACTIONS(1398), - [anon_sym_DOLLARforeach] = ACTIONS(1398), - [anon_sym_DOLLARalignof] = ACTIONS(1398), - [anon_sym_DOLLARextnameof] = ACTIONS(1398), - [anon_sym_DOLLARnameof] = ACTIONS(1398), - [anon_sym_DOLLARoffsetof] = ACTIONS(1398), - [anon_sym_DOLLARqnameof] = ACTIONS(1398), - [anon_sym_DOLLARvaconst] = ACTIONS(1398), - [anon_sym_DOLLARvaarg] = ACTIONS(1398), - [anon_sym_DOLLARvaref] = ACTIONS(1398), - [anon_sym_DOLLARvaexpr] = ACTIONS(1398), - [anon_sym_true] = ACTIONS(1398), - [anon_sym_false] = ACTIONS(1398), - [anon_sym_null] = ACTIONS(1398), - [anon_sym_DOLLARvacount] = ACTIONS(1398), - [anon_sym_DOLLARappend] = ACTIONS(1398), - [anon_sym_DOLLARconcat] = ACTIONS(1398), - [anon_sym_DOLLAReval] = ACTIONS(1398), - [anon_sym_DOLLARis_const] = ACTIONS(1398), - [anon_sym_DOLLARsizeof] = ACTIONS(1398), - [anon_sym_DOLLARstringify] = ACTIONS(1398), - [anon_sym_DOLLARand] = ACTIONS(1398), - [anon_sym_DOLLARdefined] = ACTIONS(1398), - [anon_sym_DOLLARembed] = ACTIONS(1398), - [anon_sym_DOLLARor] = ACTIONS(1398), - [anon_sym_DOLLARfeature] = ACTIONS(1398), - [anon_sym_DOLLARassignable] = ACTIONS(1398), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [anon_sym_typeid] = ACTIONS(1398), - [anon_sym_LBRACE_PIPE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1398), - [anon_sym_bool] = ACTIONS(1398), - [anon_sym_char] = ACTIONS(1398), - [anon_sym_ichar] = ACTIONS(1398), - [anon_sym_short] = ACTIONS(1398), - [anon_sym_ushort] = ACTIONS(1398), - [anon_sym_uint] = ACTIONS(1398), - [anon_sym_long] = ACTIONS(1398), - [anon_sym_ulong] = ACTIONS(1398), - [anon_sym_int128] = ACTIONS(1398), - [anon_sym_uint128] = ACTIONS(1398), - [anon_sym_float] = ACTIONS(1398), - [anon_sym_double] = ACTIONS(1398), - [anon_sym_float16] = ACTIONS(1398), - [anon_sym_bfloat16] = ACTIONS(1398), - [anon_sym_float128] = ACTIONS(1398), - [anon_sym_iptr] = ACTIONS(1398), - [anon_sym_uptr] = ACTIONS(1398), - [anon_sym_isz] = ACTIONS(1398), - [anon_sym_usz] = ACTIONS(1398), - [anon_sym_anyfault] = ACTIONS(1398), - [anon_sym_any] = ACTIONS(1398), - [anon_sym_DOLLARtypeof] = ACTIONS(1398), - [anon_sym_DOLLARtypefrom] = ACTIONS(1398), - [anon_sym_DOLLARvatype] = ACTIONS(1398), - [anon_sym_DOLLARevaltype] = ACTIONS(1398), - [sym_real_literal] = ACTIONS(1400), + [sym_ident] = ACTIONS(1419), + [sym_integer_literal] = ACTIONS(1421), + [anon_sym_SQUOTE] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1421), + [anon_sym_BQUOTE] = ACTIONS(1421), + [sym_bytes_literal] = ACTIONS(1421), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1419), + [sym_at_ident] = ACTIONS(1421), + [sym_hash_ident] = ACTIONS(1421), + [sym_type_ident] = ACTIONS(1421), + [sym_ct_type_ident] = ACTIONS(1421), + [sym_const_ident] = ACTIONS(1419), + [sym_builtin] = ACTIONS(1421), + [anon_sym_LPAREN] = ACTIONS(1421), + [anon_sym_AMP] = ACTIONS(1419), + [anon_sym_static] = ACTIONS(1419), + [anon_sym_tlocal] = ACTIONS(1419), + [anon_sym_SEMI] = ACTIONS(1421), + [anon_sym_fn] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(1419), + [anon_sym_const] = ACTIONS(1419), + [anon_sym_var] = ACTIONS(1419), + [anon_sym_return] = ACTIONS(1419), + [anon_sym_continue] = ACTIONS(1419), + [anon_sym_break] = ACTIONS(1419), + [anon_sym_defer] = ACTIONS(1419), + [anon_sym_assert] = ACTIONS(1419), + [anon_sym_nextcase] = ACTIONS(1419), + [anon_sym_switch] = ACTIONS(1419), + [anon_sym_AMP_AMP] = ACTIONS(1421), + [anon_sym_if] = ACTIONS(1419), + [anon_sym_for] = ACTIONS(1419), + [anon_sym_foreach] = ACTIONS(1419), + [anon_sym_foreach_r] = ACTIONS(1419), + [anon_sym_while] = ACTIONS(1419), + [anon_sym_do] = ACTIONS(1419), + [anon_sym_int] = ACTIONS(1419), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_DASH] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1421), + [anon_sym_asm] = ACTIONS(1419), + [anon_sym_DOLLARassert] = ACTIONS(1419), + [anon_sym_DOLLARerror] = ACTIONS(1419), + [anon_sym_DOLLARecho] = ACTIONS(1419), + [anon_sym_DOLLARif] = ACTIONS(1419), + [anon_sym_DOLLARendif] = ACTIONS(1419), + [anon_sym_DOLLARswitch] = ACTIONS(1419), + [anon_sym_DOLLARfor] = ACTIONS(1419), + [anon_sym_DOLLARforeach] = ACTIONS(1419), + [anon_sym_DOLLARalignof] = ACTIONS(1419), + [anon_sym_DOLLARextnameof] = ACTIONS(1419), + [anon_sym_DOLLARnameof] = ACTIONS(1419), + [anon_sym_DOLLARoffsetof] = ACTIONS(1419), + [anon_sym_DOLLARqnameof] = ACTIONS(1419), + [anon_sym_DOLLARvaconst] = ACTIONS(1419), + [anon_sym_DOLLARvaarg] = ACTIONS(1419), + [anon_sym_DOLLARvaref] = ACTIONS(1419), + [anon_sym_DOLLARvaexpr] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1419), + [anon_sym_false] = ACTIONS(1419), + [anon_sym_null] = ACTIONS(1419), + [anon_sym_DOLLARvacount] = ACTIONS(1419), + [anon_sym_DOLLARappend] = ACTIONS(1419), + [anon_sym_DOLLARconcat] = ACTIONS(1419), + [anon_sym_DOLLAReval] = ACTIONS(1419), + [anon_sym_DOLLARis_const] = ACTIONS(1419), + [anon_sym_DOLLARsizeof] = ACTIONS(1419), + [anon_sym_DOLLARstringify] = ACTIONS(1419), + [anon_sym_DOLLARand] = ACTIONS(1419), + [anon_sym_DOLLARdefined] = ACTIONS(1419), + [anon_sym_DOLLARembed] = ACTIONS(1419), + [anon_sym_DOLLARor] = ACTIONS(1419), + [anon_sym_DOLLARfeature] = ACTIONS(1419), + [anon_sym_DOLLARassignable] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_PLUS_PLUS] = ACTIONS(1421), + [anon_sym_DASH_DASH] = ACTIONS(1421), + [anon_sym_typeid] = ACTIONS(1419), + [anon_sym_LBRACE_PIPE] = ACTIONS(1421), + [anon_sym_void] = ACTIONS(1419), + [anon_sym_bool] = ACTIONS(1419), + [anon_sym_char] = ACTIONS(1419), + [anon_sym_ichar] = ACTIONS(1419), + [anon_sym_short] = ACTIONS(1419), + [anon_sym_ushort] = ACTIONS(1419), + [anon_sym_uint] = ACTIONS(1419), + [anon_sym_long] = ACTIONS(1419), + [anon_sym_ulong] = ACTIONS(1419), + [anon_sym_int128] = ACTIONS(1419), + [anon_sym_uint128] = ACTIONS(1419), + [anon_sym_float] = ACTIONS(1419), + [anon_sym_double] = ACTIONS(1419), + [anon_sym_float16] = ACTIONS(1419), + [anon_sym_bfloat16] = ACTIONS(1419), + [anon_sym_float128] = ACTIONS(1419), + [anon_sym_iptr] = ACTIONS(1419), + [anon_sym_uptr] = ACTIONS(1419), + [anon_sym_isz] = ACTIONS(1419), + [anon_sym_usz] = ACTIONS(1419), + [anon_sym_anyfault] = ACTIONS(1419), + [anon_sym_any] = ACTIONS(1419), + [anon_sym_DOLLARtypeof] = ACTIONS(1419), + [anon_sym_DOLLARtypefrom] = ACTIONS(1419), + [anon_sym_DOLLARvatype] = ACTIONS(1419), + [anon_sym_DOLLARevaltype] = ACTIONS(1419), + [sym_real_literal] = ACTIONS(1421), }, [757] = { [sym_line_comment] = STATE(757), [sym_doc_comment] = STATE(757), [sym_block_comment] = STATE(757), - [sym_ident] = ACTIONS(1464), - [sym_integer_literal] = ACTIONS(1466), - [anon_sym_SQUOTE] = ACTIONS(1466), - [anon_sym_DQUOTE] = ACTIONS(1466), - [anon_sym_BQUOTE] = ACTIONS(1466), - [sym_bytes_literal] = ACTIONS(1466), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1464), - [sym_at_ident] = ACTIONS(1466), - [sym_hash_ident] = ACTIONS(1466), - [sym_type_ident] = ACTIONS(1466), - [sym_ct_type_ident] = ACTIONS(1466), - [sym_const_ident] = ACTIONS(1464), - [sym_builtin] = ACTIONS(1466), - [anon_sym_LPAREN] = ACTIONS(1466), - [anon_sym_AMP] = ACTIONS(1464), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_tlocal] = ACTIONS(1464), - [anon_sym_SEMI] = ACTIONS(1466), - [anon_sym_fn] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1464), - [anon_sym_const] = ACTIONS(1464), - [anon_sym_var] = ACTIONS(1464), - [anon_sym_return] = ACTIONS(1464), - [anon_sym_continue] = ACTIONS(1464), - [anon_sym_break] = ACTIONS(1464), - [anon_sym_defer] = ACTIONS(1464), - [anon_sym_assert] = ACTIONS(1464), - [anon_sym_nextcase] = ACTIONS(1464), - [anon_sym_switch] = ACTIONS(1464), - [anon_sym_AMP_AMP] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1464), - [anon_sym_for] = ACTIONS(1464), - [anon_sym_foreach] = ACTIONS(1464), - [anon_sym_foreach_r] = ACTIONS(1464), - [anon_sym_while] = ACTIONS(1464), - [anon_sym_do] = ACTIONS(1464), - [anon_sym_int] = ACTIONS(1464), - [anon_sym_PLUS] = ACTIONS(1464), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1466), - [anon_sym_asm] = ACTIONS(1464), - [anon_sym_DOLLARassert] = ACTIONS(1464), - [anon_sym_DOLLARerror] = ACTIONS(1464), - [anon_sym_DOLLARecho] = ACTIONS(1464), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_DOLLARswitch] = ACTIONS(1464), - [anon_sym_DOLLARfor] = ACTIONS(1464), - [anon_sym_DOLLARendfor] = ACTIONS(1464), - [anon_sym_DOLLARforeach] = ACTIONS(1464), - [anon_sym_DOLLARalignof] = ACTIONS(1464), - [anon_sym_DOLLARextnameof] = ACTIONS(1464), - [anon_sym_DOLLARnameof] = ACTIONS(1464), - [anon_sym_DOLLARoffsetof] = ACTIONS(1464), - [anon_sym_DOLLARqnameof] = ACTIONS(1464), - [anon_sym_DOLLARvaconst] = ACTIONS(1464), - [anon_sym_DOLLARvaarg] = ACTIONS(1464), - [anon_sym_DOLLARvaref] = ACTIONS(1464), - [anon_sym_DOLLARvaexpr] = ACTIONS(1464), - [anon_sym_true] = ACTIONS(1464), - [anon_sym_false] = ACTIONS(1464), - [anon_sym_null] = ACTIONS(1464), - [anon_sym_DOLLARvacount] = ACTIONS(1464), - [anon_sym_DOLLARappend] = ACTIONS(1464), - [anon_sym_DOLLARconcat] = ACTIONS(1464), - [anon_sym_DOLLAReval] = ACTIONS(1464), - [anon_sym_DOLLARis_const] = ACTIONS(1464), - [anon_sym_DOLLARsizeof] = ACTIONS(1464), - [anon_sym_DOLLARstringify] = ACTIONS(1464), - [anon_sym_DOLLARand] = ACTIONS(1464), - [anon_sym_DOLLARdefined] = ACTIONS(1464), - [anon_sym_DOLLARembed] = ACTIONS(1464), - [anon_sym_DOLLARor] = ACTIONS(1464), - [anon_sym_DOLLARfeature] = ACTIONS(1464), - [anon_sym_DOLLARassignable] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_TILDE] = ACTIONS(1466), - [anon_sym_PLUS_PLUS] = ACTIONS(1466), - [anon_sym_DASH_DASH] = ACTIONS(1466), - [anon_sym_typeid] = ACTIONS(1464), - [anon_sym_LBRACE_PIPE] = ACTIONS(1466), - [anon_sym_void] = ACTIONS(1464), - [anon_sym_bool] = ACTIONS(1464), - [anon_sym_char] = ACTIONS(1464), - [anon_sym_ichar] = ACTIONS(1464), - [anon_sym_short] = ACTIONS(1464), - [anon_sym_ushort] = ACTIONS(1464), - [anon_sym_uint] = ACTIONS(1464), - [anon_sym_long] = ACTIONS(1464), - [anon_sym_ulong] = ACTIONS(1464), - [anon_sym_int128] = ACTIONS(1464), - [anon_sym_uint128] = ACTIONS(1464), - [anon_sym_float] = ACTIONS(1464), - [anon_sym_double] = ACTIONS(1464), - [anon_sym_float16] = ACTIONS(1464), - [anon_sym_bfloat16] = ACTIONS(1464), - [anon_sym_float128] = ACTIONS(1464), - [anon_sym_iptr] = ACTIONS(1464), - [anon_sym_uptr] = ACTIONS(1464), - [anon_sym_isz] = ACTIONS(1464), - [anon_sym_usz] = ACTIONS(1464), - [anon_sym_anyfault] = ACTIONS(1464), - [anon_sym_any] = ACTIONS(1464), - [anon_sym_DOLLARtypeof] = ACTIONS(1464), - [anon_sym_DOLLARtypefrom] = ACTIONS(1464), - [anon_sym_DOLLARvatype] = ACTIONS(1464), - [anon_sym_DOLLARevaltype] = ACTIONS(1464), - [sym_real_literal] = ACTIONS(1466), + [sym_ident] = ACTIONS(1399), + [sym_integer_literal] = ACTIONS(1401), + [anon_sym_SQUOTE] = ACTIONS(1401), + [anon_sym_DQUOTE] = ACTIONS(1401), + [anon_sym_BQUOTE] = ACTIONS(1401), + [sym_bytes_literal] = ACTIONS(1401), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1399), + [sym_at_ident] = ACTIONS(1401), + [sym_hash_ident] = ACTIONS(1401), + [sym_type_ident] = ACTIONS(1401), + [sym_ct_type_ident] = ACTIONS(1401), + [sym_const_ident] = ACTIONS(1399), + [sym_builtin] = ACTIONS(1401), + [anon_sym_LPAREN] = ACTIONS(1401), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_static] = ACTIONS(1399), + [anon_sym_tlocal] = ACTIONS(1399), + [anon_sym_SEMI] = ACTIONS(1401), + [anon_sym_fn] = ACTIONS(1399), + [anon_sym_LBRACE] = ACTIONS(1399), + [anon_sym_const] = ACTIONS(1399), + [anon_sym_var] = ACTIONS(1399), + [anon_sym_return] = ACTIONS(1399), + [anon_sym_continue] = ACTIONS(1399), + [anon_sym_break] = ACTIONS(1399), + [anon_sym_defer] = ACTIONS(1399), + [anon_sym_assert] = ACTIONS(1399), + [anon_sym_nextcase] = ACTIONS(1399), + [anon_sym_switch] = ACTIONS(1399), + [anon_sym_AMP_AMP] = ACTIONS(1401), + [anon_sym_if] = ACTIONS(1399), + [anon_sym_for] = ACTIONS(1399), + [anon_sym_foreach] = ACTIONS(1399), + [anon_sym_foreach_r] = ACTIONS(1399), + [anon_sym_while] = ACTIONS(1399), + [anon_sym_do] = ACTIONS(1399), + [anon_sym_int] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1399), + [anon_sym_DASH] = ACTIONS(1399), + [anon_sym_STAR] = ACTIONS(1401), + [anon_sym_asm] = ACTIONS(1399), + [anon_sym_DOLLARassert] = ACTIONS(1399), + [anon_sym_DOLLARerror] = ACTIONS(1399), + [anon_sym_DOLLARecho] = ACTIONS(1399), + [anon_sym_DOLLARif] = ACTIONS(1399), + [anon_sym_DOLLARswitch] = ACTIONS(1399), + [anon_sym_DOLLARfor] = ACTIONS(1399), + [anon_sym_DOLLARforeach] = ACTIONS(1399), + [anon_sym_DOLLARendforeach] = ACTIONS(1399), + [anon_sym_DOLLARalignof] = ACTIONS(1399), + [anon_sym_DOLLARextnameof] = ACTIONS(1399), + [anon_sym_DOLLARnameof] = ACTIONS(1399), + [anon_sym_DOLLARoffsetof] = ACTIONS(1399), + [anon_sym_DOLLARqnameof] = ACTIONS(1399), + [anon_sym_DOLLARvaconst] = ACTIONS(1399), + [anon_sym_DOLLARvaarg] = ACTIONS(1399), + [anon_sym_DOLLARvaref] = ACTIONS(1399), + [anon_sym_DOLLARvaexpr] = ACTIONS(1399), + [anon_sym_true] = ACTIONS(1399), + [anon_sym_false] = ACTIONS(1399), + [anon_sym_null] = ACTIONS(1399), + [anon_sym_DOLLARvacount] = ACTIONS(1399), + [anon_sym_DOLLARappend] = ACTIONS(1399), + [anon_sym_DOLLARconcat] = ACTIONS(1399), + [anon_sym_DOLLAReval] = ACTIONS(1399), + [anon_sym_DOLLARis_const] = ACTIONS(1399), + [anon_sym_DOLLARsizeof] = ACTIONS(1399), + [anon_sym_DOLLARstringify] = ACTIONS(1399), + [anon_sym_DOLLARand] = ACTIONS(1399), + [anon_sym_DOLLARdefined] = ACTIONS(1399), + [anon_sym_DOLLARembed] = ACTIONS(1399), + [anon_sym_DOLLARor] = ACTIONS(1399), + [anon_sym_DOLLARfeature] = ACTIONS(1399), + [anon_sym_DOLLARassignable] = ACTIONS(1399), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_TILDE] = ACTIONS(1401), + [anon_sym_PLUS_PLUS] = ACTIONS(1401), + [anon_sym_DASH_DASH] = ACTIONS(1401), + [anon_sym_typeid] = ACTIONS(1399), + [anon_sym_LBRACE_PIPE] = ACTIONS(1401), + [anon_sym_void] = ACTIONS(1399), + [anon_sym_bool] = ACTIONS(1399), + [anon_sym_char] = ACTIONS(1399), + [anon_sym_ichar] = ACTIONS(1399), + [anon_sym_short] = ACTIONS(1399), + [anon_sym_ushort] = ACTIONS(1399), + [anon_sym_uint] = ACTIONS(1399), + [anon_sym_long] = ACTIONS(1399), + [anon_sym_ulong] = ACTIONS(1399), + [anon_sym_int128] = ACTIONS(1399), + [anon_sym_uint128] = ACTIONS(1399), + [anon_sym_float] = ACTIONS(1399), + [anon_sym_double] = ACTIONS(1399), + [anon_sym_float16] = ACTIONS(1399), + [anon_sym_bfloat16] = ACTIONS(1399), + [anon_sym_float128] = ACTIONS(1399), + [anon_sym_iptr] = ACTIONS(1399), + [anon_sym_uptr] = ACTIONS(1399), + [anon_sym_isz] = ACTIONS(1399), + [anon_sym_usz] = ACTIONS(1399), + [anon_sym_anyfault] = ACTIONS(1399), + [anon_sym_any] = ACTIONS(1399), + [anon_sym_DOLLARtypeof] = ACTIONS(1399), + [anon_sym_DOLLARtypefrom] = ACTIONS(1399), + [anon_sym_DOLLARvatype] = ACTIONS(1399), + [anon_sym_DOLLARevaltype] = ACTIONS(1399), + [sym_real_literal] = ACTIONS(1401), }, [758] = { [sym_line_comment] = STATE(758), [sym_doc_comment] = STATE(758), [sym_block_comment] = STATE(758), - [sym_ident] = ACTIONS(1544), - [sym_integer_literal] = ACTIONS(1546), - [anon_sym_SQUOTE] = ACTIONS(1546), - [anon_sym_DQUOTE] = ACTIONS(1546), - [anon_sym_BQUOTE] = ACTIONS(1546), - [sym_bytes_literal] = ACTIONS(1546), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1544), - [sym_at_ident] = ACTIONS(1546), - [sym_hash_ident] = ACTIONS(1546), - [sym_type_ident] = ACTIONS(1546), - [sym_ct_type_ident] = ACTIONS(1546), - [sym_const_ident] = ACTIONS(1544), - [sym_builtin] = ACTIONS(1546), - [anon_sym_LPAREN] = ACTIONS(1546), - [anon_sym_AMP] = ACTIONS(1544), - [anon_sym_static] = ACTIONS(1544), - [anon_sym_tlocal] = ACTIONS(1544), - [anon_sym_SEMI] = ACTIONS(1546), - [anon_sym_fn] = ACTIONS(1544), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_const] = ACTIONS(1544), - [anon_sym_var] = ACTIONS(1544), - [anon_sym_return] = ACTIONS(1544), - [anon_sym_continue] = ACTIONS(1544), - [anon_sym_break] = ACTIONS(1544), - [anon_sym_defer] = ACTIONS(1544), - [anon_sym_assert] = ACTIONS(1544), - [anon_sym_nextcase] = ACTIONS(1544), - [anon_sym_switch] = ACTIONS(1544), - [anon_sym_AMP_AMP] = ACTIONS(1546), - [anon_sym_if] = ACTIONS(1544), - [anon_sym_for] = ACTIONS(1544), - [anon_sym_foreach] = ACTIONS(1544), - [anon_sym_foreach_r] = ACTIONS(1544), - [anon_sym_while] = ACTIONS(1544), - [anon_sym_do] = ACTIONS(1544), - [anon_sym_int] = ACTIONS(1544), - [anon_sym_PLUS] = ACTIONS(1544), - [anon_sym_DASH] = ACTIONS(1544), - [anon_sym_STAR] = ACTIONS(1546), - [anon_sym_asm] = ACTIONS(1544), - [anon_sym_DOLLARassert] = ACTIONS(1544), - [anon_sym_DOLLARerror] = ACTIONS(1544), - [anon_sym_DOLLARecho] = ACTIONS(1544), - [anon_sym_DOLLARif] = ACTIONS(1544), - [anon_sym_DOLLARendif] = ACTIONS(1544), - [anon_sym_DOLLARswitch] = ACTIONS(1544), - [anon_sym_DOLLARfor] = ACTIONS(1544), - [anon_sym_DOLLARforeach] = ACTIONS(1544), - [anon_sym_DOLLARalignof] = ACTIONS(1544), - [anon_sym_DOLLARextnameof] = ACTIONS(1544), - [anon_sym_DOLLARnameof] = ACTIONS(1544), - [anon_sym_DOLLARoffsetof] = ACTIONS(1544), - [anon_sym_DOLLARqnameof] = ACTIONS(1544), - [anon_sym_DOLLARvaconst] = ACTIONS(1544), - [anon_sym_DOLLARvaarg] = ACTIONS(1544), - [anon_sym_DOLLARvaref] = ACTIONS(1544), - [anon_sym_DOLLARvaexpr] = ACTIONS(1544), - [anon_sym_true] = ACTIONS(1544), - [anon_sym_false] = ACTIONS(1544), - [anon_sym_null] = ACTIONS(1544), - [anon_sym_DOLLARvacount] = ACTIONS(1544), - [anon_sym_DOLLARappend] = ACTIONS(1544), - [anon_sym_DOLLARconcat] = ACTIONS(1544), - [anon_sym_DOLLAReval] = ACTIONS(1544), - [anon_sym_DOLLARis_const] = ACTIONS(1544), - [anon_sym_DOLLARsizeof] = ACTIONS(1544), - [anon_sym_DOLLARstringify] = ACTIONS(1544), - [anon_sym_DOLLARand] = ACTIONS(1544), - [anon_sym_DOLLARdefined] = ACTIONS(1544), - [anon_sym_DOLLARembed] = ACTIONS(1544), - [anon_sym_DOLLARor] = ACTIONS(1544), - [anon_sym_DOLLARfeature] = ACTIONS(1544), - [anon_sym_DOLLARassignable] = ACTIONS(1544), - [anon_sym_BANG] = ACTIONS(1546), - [anon_sym_TILDE] = ACTIONS(1546), - [anon_sym_PLUS_PLUS] = ACTIONS(1546), - [anon_sym_DASH_DASH] = ACTIONS(1546), - [anon_sym_typeid] = ACTIONS(1544), - [anon_sym_LBRACE_PIPE] = ACTIONS(1546), - [anon_sym_void] = ACTIONS(1544), - [anon_sym_bool] = ACTIONS(1544), - [anon_sym_char] = ACTIONS(1544), - [anon_sym_ichar] = ACTIONS(1544), - [anon_sym_short] = ACTIONS(1544), - [anon_sym_ushort] = ACTIONS(1544), - [anon_sym_uint] = ACTIONS(1544), - [anon_sym_long] = ACTIONS(1544), - [anon_sym_ulong] = ACTIONS(1544), - [anon_sym_int128] = ACTIONS(1544), - [anon_sym_uint128] = ACTIONS(1544), - [anon_sym_float] = ACTIONS(1544), - [anon_sym_double] = ACTIONS(1544), - [anon_sym_float16] = ACTIONS(1544), - [anon_sym_bfloat16] = ACTIONS(1544), - [anon_sym_float128] = ACTIONS(1544), - [anon_sym_iptr] = ACTIONS(1544), - [anon_sym_uptr] = ACTIONS(1544), - [anon_sym_isz] = ACTIONS(1544), - [anon_sym_usz] = ACTIONS(1544), - [anon_sym_anyfault] = ACTIONS(1544), - [anon_sym_any] = ACTIONS(1544), - [anon_sym_DOLLARtypeof] = ACTIONS(1544), - [anon_sym_DOLLARtypefrom] = ACTIONS(1544), - [anon_sym_DOLLARvatype] = ACTIONS(1544), - [anon_sym_DOLLARevaltype] = ACTIONS(1544), - [sym_real_literal] = ACTIONS(1546), + [sym_ident] = ACTIONS(1371), + [sym_integer_literal] = ACTIONS(1373), + [anon_sym_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE] = ACTIONS(1373), + [anon_sym_BQUOTE] = ACTIONS(1373), + [sym_bytes_literal] = ACTIONS(1373), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1371), + [sym_at_ident] = ACTIONS(1373), + [sym_hash_ident] = ACTIONS(1373), + [sym_type_ident] = ACTIONS(1373), + [sym_ct_type_ident] = ACTIONS(1373), + [sym_const_ident] = ACTIONS(1371), + [sym_builtin] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(1373), + [anon_sym_AMP] = ACTIONS(1371), + [anon_sym_static] = ACTIONS(1371), + [anon_sym_tlocal] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_fn] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1371), + [anon_sym_const] = ACTIONS(1371), + [anon_sym_var] = ACTIONS(1371), + [anon_sym_return] = ACTIONS(1371), + [anon_sym_continue] = ACTIONS(1371), + [anon_sym_break] = ACTIONS(1371), + [anon_sym_defer] = ACTIONS(1371), + [anon_sym_assert] = ACTIONS(1371), + [anon_sym_nextcase] = ACTIONS(1371), + [anon_sym_switch] = ACTIONS(1371), + [anon_sym_AMP_AMP] = ACTIONS(1373), + [anon_sym_if] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1371), + [anon_sym_foreach] = ACTIONS(1371), + [anon_sym_foreach_r] = ACTIONS(1371), + [anon_sym_while] = ACTIONS(1371), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_int] = ACTIONS(1371), + [anon_sym_PLUS] = ACTIONS(1371), + [anon_sym_DASH] = ACTIONS(1371), + [anon_sym_STAR] = ACTIONS(1373), + [anon_sym_asm] = ACTIONS(1371), + [anon_sym_DOLLARassert] = ACTIONS(1371), + [anon_sym_DOLLARerror] = ACTIONS(1371), + [anon_sym_DOLLARecho] = ACTIONS(1371), + [anon_sym_DOLLARif] = ACTIONS(1371), + [anon_sym_DOLLARswitch] = ACTIONS(1371), + [anon_sym_DOLLARfor] = ACTIONS(1371), + [anon_sym_DOLLARforeach] = ACTIONS(1371), + [anon_sym_DOLLARendforeach] = ACTIONS(1371), + [anon_sym_DOLLARalignof] = ACTIONS(1371), + [anon_sym_DOLLARextnameof] = ACTIONS(1371), + [anon_sym_DOLLARnameof] = ACTIONS(1371), + [anon_sym_DOLLARoffsetof] = ACTIONS(1371), + [anon_sym_DOLLARqnameof] = ACTIONS(1371), + [anon_sym_DOLLARvaconst] = ACTIONS(1371), + [anon_sym_DOLLARvaarg] = ACTIONS(1371), + [anon_sym_DOLLARvaref] = ACTIONS(1371), + [anon_sym_DOLLARvaexpr] = ACTIONS(1371), + [anon_sym_true] = ACTIONS(1371), + [anon_sym_false] = ACTIONS(1371), + [anon_sym_null] = ACTIONS(1371), + [anon_sym_DOLLARvacount] = ACTIONS(1371), + [anon_sym_DOLLARappend] = ACTIONS(1371), + [anon_sym_DOLLARconcat] = ACTIONS(1371), + [anon_sym_DOLLAReval] = ACTIONS(1371), + [anon_sym_DOLLARis_const] = ACTIONS(1371), + [anon_sym_DOLLARsizeof] = ACTIONS(1371), + [anon_sym_DOLLARstringify] = ACTIONS(1371), + [anon_sym_DOLLARand] = ACTIONS(1371), + [anon_sym_DOLLARdefined] = ACTIONS(1371), + [anon_sym_DOLLARembed] = ACTIONS(1371), + [anon_sym_DOLLARor] = ACTIONS(1371), + [anon_sym_DOLLARfeature] = ACTIONS(1371), + [anon_sym_DOLLARassignable] = ACTIONS(1371), + [anon_sym_BANG] = ACTIONS(1373), + [anon_sym_TILDE] = ACTIONS(1373), + [anon_sym_PLUS_PLUS] = ACTIONS(1373), + [anon_sym_DASH_DASH] = ACTIONS(1373), + [anon_sym_typeid] = ACTIONS(1371), + [anon_sym_LBRACE_PIPE] = ACTIONS(1373), + [anon_sym_void] = ACTIONS(1371), + [anon_sym_bool] = ACTIONS(1371), + [anon_sym_char] = ACTIONS(1371), + [anon_sym_ichar] = ACTIONS(1371), + [anon_sym_short] = ACTIONS(1371), + [anon_sym_ushort] = ACTIONS(1371), + [anon_sym_uint] = ACTIONS(1371), + [anon_sym_long] = ACTIONS(1371), + [anon_sym_ulong] = ACTIONS(1371), + [anon_sym_int128] = ACTIONS(1371), + [anon_sym_uint128] = ACTIONS(1371), + [anon_sym_float] = ACTIONS(1371), + [anon_sym_double] = ACTIONS(1371), + [anon_sym_float16] = ACTIONS(1371), + [anon_sym_bfloat16] = ACTIONS(1371), + [anon_sym_float128] = ACTIONS(1371), + [anon_sym_iptr] = ACTIONS(1371), + [anon_sym_uptr] = ACTIONS(1371), + [anon_sym_isz] = ACTIONS(1371), + [anon_sym_usz] = ACTIONS(1371), + [anon_sym_anyfault] = ACTIONS(1371), + [anon_sym_any] = ACTIONS(1371), + [anon_sym_DOLLARtypeof] = ACTIONS(1371), + [anon_sym_DOLLARtypefrom] = ACTIONS(1371), + [anon_sym_DOLLARvatype] = ACTIONS(1371), + [anon_sym_DOLLARevaltype] = ACTIONS(1371), + [sym_real_literal] = ACTIONS(1373), }, [759] = { [sym_line_comment] = STATE(759), [sym_doc_comment] = STATE(759), [sym_block_comment] = STATE(759), - [sym_ident] = ACTIONS(1468), - [sym_integer_literal] = ACTIONS(1470), - [anon_sym_SQUOTE] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [anon_sym_BQUOTE] = ACTIONS(1470), - [sym_bytes_literal] = ACTIONS(1470), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1468), - [sym_at_ident] = ACTIONS(1470), - [sym_hash_ident] = ACTIONS(1470), - [sym_type_ident] = ACTIONS(1470), - [sym_ct_type_ident] = ACTIONS(1470), - [sym_const_ident] = ACTIONS(1468), - [sym_builtin] = ACTIONS(1470), - [anon_sym_LPAREN] = ACTIONS(1470), - [anon_sym_AMP] = ACTIONS(1468), - [anon_sym_static] = ACTIONS(1468), - [anon_sym_tlocal] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1470), - [anon_sym_fn] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1468), - [anon_sym_const] = ACTIONS(1468), - [anon_sym_var] = ACTIONS(1468), - [anon_sym_return] = ACTIONS(1468), - [anon_sym_continue] = ACTIONS(1468), - [anon_sym_break] = ACTIONS(1468), - [anon_sym_defer] = ACTIONS(1468), - [anon_sym_assert] = ACTIONS(1468), - [anon_sym_nextcase] = ACTIONS(1468), - [anon_sym_switch] = ACTIONS(1468), - [anon_sym_AMP_AMP] = ACTIONS(1470), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_for] = ACTIONS(1468), - [anon_sym_foreach] = ACTIONS(1468), - [anon_sym_foreach_r] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1468), - [anon_sym_do] = ACTIONS(1468), - [anon_sym_int] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1468), - [anon_sym_DASH] = ACTIONS(1468), - [anon_sym_STAR] = ACTIONS(1470), - [anon_sym_asm] = ACTIONS(1468), - [anon_sym_DOLLARassert] = ACTIONS(1468), - [anon_sym_DOLLARerror] = ACTIONS(1468), - [anon_sym_DOLLARecho] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1468), - [anon_sym_DOLLARswitch] = ACTIONS(1468), - [anon_sym_DOLLARfor] = ACTIONS(1468), - [anon_sym_DOLLARendfor] = ACTIONS(1468), - [anon_sym_DOLLARforeach] = ACTIONS(1468), - [anon_sym_DOLLARalignof] = ACTIONS(1468), - [anon_sym_DOLLARextnameof] = ACTIONS(1468), - [anon_sym_DOLLARnameof] = ACTIONS(1468), - [anon_sym_DOLLARoffsetof] = ACTIONS(1468), - [anon_sym_DOLLARqnameof] = ACTIONS(1468), - [anon_sym_DOLLARvaconst] = ACTIONS(1468), - [anon_sym_DOLLARvaarg] = ACTIONS(1468), - [anon_sym_DOLLARvaref] = ACTIONS(1468), - [anon_sym_DOLLARvaexpr] = ACTIONS(1468), - [anon_sym_true] = ACTIONS(1468), - [anon_sym_false] = ACTIONS(1468), - [anon_sym_null] = ACTIONS(1468), - [anon_sym_DOLLARvacount] = ACTIONS(1468), - [anon_sym_DOLLARappend] = ACTIONS(1468), - [anon_sym_DOLLARconcat] = ACTIONS(1468), - [anon_sym_DOLLAReval] = ACTIONS(1468), - [anon_sym_DOLLARis_const] = ACTIONS(1468), - [anon_sym_DOLLARsizeof] = ACTIONS(1468), - [anon_sym_DOLLARstringify] = ACTIONS(1468), - [anon_sym_DOLLARand] = ACTIONS(1468), - [anon_sym_DOLLARdefined] = ACTIONS(1468), - [anon_sym_DOLLARembed] = ACTIONS(1468), - [anon_sym_DOLLARor] = ACTIONS(1468), - [anon_sym_DOLLARfeature] = ACTIONS(1468), - [anon_sym_DOLLARassignable] = ACTIONS(1468), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1470), - [anon_sym_DASH_DASH] = ACTIONS(1470), - [anon_sym_typeid] = ACTIONS(1468), - [anon_sym_LBRACE_PIPE] = ACTIONS(1470), - [anon_sym_void] = ACTIONS(1468), - [anon_sym_bool] = ACTIONS(1468), - [anon_sym_char] = ACTIONS(1468), - [anon_sym_ichar] = ACTIONS(1468), - [anon_sym_short] = ACTIONS(1468), - [anon_sym_ushort] = ACTIONS(1468), - [anon_sym_uint] = ACTIONS(1468), - [anon_sym_long] = ACTIONS(1468), - [anon_sym_ulong] = ACTIONS(1468), - [anon_sym_int128] = ACTIONS(1468), - [anon_sym_uint128] = ACTIONS(1468), - [anon_sym_float] = ACTIONS(1468), - [anon_sym_double] = ACTIONS(1468), - [anon_sym_float16] = ACTIONS(1468), - [anon_sym_bfloat16] = ACTIONS(1468), - [anon_sym_float128] = ACTIONS(1468), - [anon_sym_iptr] = ACTIONS(1468), - [anon_sym_uptr] = ACTIONS(1468), - [anon_sym_isz] = ACTIONS(1468), - [anon_sym_usz] = ACTIONS(1468), - [anon_sym_anyfault] = ACTIONS(1468), - [anon_sym_any] = ACTIONS(1468), - [anon_sym_DOLLARtypeof] = ACTIONS(1468), - [anon_sym_DOLLARtypefrom] = ACTIONS(1468), - [anon_sym_DOLLARvatype] = ACTIONS(1468), - [anon_sym_DOLLARevaltype] = ACTIONS(1468), - [sym_real_literal] = ACTIONS(1470), + [sym_ident] = ACTIONS(1415), + [sym_integer_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1417), + [anon_sym_DQUOTE] = ACTIONS(1417), + [anon_sym_BQUOTE] = ACTIONS(1417), + [sym_bytes_literal] = ACTIONS(1417), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1415), + [sym_at_ident] = ACTIONS(1417), + [sym_hash_ident] = ACTIONS(1417), + [sym_type_ident] = ACTIONS(1417), + [sym_ct_type_ident] = ACTIONS(1417), + [sym_const_ident] = ACTIONS(1415), + [sym_builtin] = ACTIONS(1417), + [anon_sym_LPAREN] = ACTIONS(1417), + [anon_sym_AMP] = ACTIONS(1415), + [anon_sym_static] = ACTIONS(1415), + [anon_sym_tlocal] = ACTIONS(1415), + [anon_sym_SEMI] = ACTIONS(1417), + [anon_sym_fn] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1415), + [anon_sym_const] = ACTIONS(1415), + [anon_sym_var] = ACTIONS(1415), + [anon_sym_return] = ACTIONS(1415), + [anon_sym_continue] = ACTIONS(1415), + [anon_sym_break] = ACTIONS(1415), + [anon_sym_defer] = ACTIONS(1415), + [anon_sym_assert] = ACTIONS(1415), + [anon_sym_nextcase] = ACTIONS(1415), + [anon_sym_switch] = ACTIONS(1415), + [anon_sym_AMP_AMP] = ACTIONS(1417), + [anon_sym_if] = ACTIONS(1415), + [anon_sym_for] = ACTIONS(1415), + [anon_sym_foreach] = ACTIONS(1415), + [anon_sym_foreach_r] = ACTIONS(1415), + [anon_sym_while] = ACTIONS(1415), + [anon_sym_do] = ACTIONS(1415), + [anon_sym_int] = ACTIONS(1415), + [anon_sym_PLUS] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1415), + [anon_sym_STAR] = ACTIONS(1417), + [anon_sym_asm] = ACTIONS(1415), + [anon_sym_DOLLARassert] = ACTIONS(1415), + [anon_sym_DOLLARerror] = ACTIONS(1415), + [anon_sym_DOLLARecho] = ACTIONS(1415), + [anon_sym_DOLLARif] = ACTIONS(1415), + [anon_sym_DOLLARendif] = ACTIONS(1415), + [anon_sym_DOLLARswitch] = ACTIONS(1415), + [anon_sym_DOLLARfor] = ACTIONS(1415), + [anon_sym_DOLLARforeach] = ACTIONS(1415), + [anon_sym_DOLLARalignof] = ACTIONS(1415), + [anon_sym_DOLLARextnameof] = ACTIONS(1415), + [anon_sym_DOLLARnameof] = ACTIONS(1415), + [anon_sym_DOLLARoffsetof] = ACTIONS(1415), + [anon_sym_DOLLARqnameof] = ACTIONS(1415), + [anon_sym_DOLLARvaconst] = ACTIONS(1415), + [anon_sym_DOLLARvaarg] = ACTIONS(1415), + [anon_sym_DOLLARvaref] = ACTIONS(1415), + [anon_sym_DOLLARvaexpr] = ACTIONS(1415), + [anon_sym_true] = ACTIONS(1415), + [anon_sym_false] = ACTIONS(1415), + [anon_sym_null] = ACTIONS(1415), + [anon_sym_DOLLARvacount] = ACTIONS(1415), + [anon_sym_DOLLARappend] = ACTIONS(1415), + [anon_sym_DOLLARconcat] = ACTIONS(1415), + [anon_sym_DOLLAReval] = ACTIONS(1415), + [anon_sym_DOLLARis_const] = ACTIONS(1415), + [anon_sym_DOLLARsizeof] = ACTIONS(1415), + [anon_sym_DOLLARstringify] = ACTIONS(1415), + [anon_sym_DOLLARand] = ACTIONS(1415), + [anon_sym_DOLLARdefined] = ACTIONS(1415), + [anon_sym_DOLLARembed] = ACTIONS(1415), + [anon_sym_DOLLARor] = ACTIONS(1415), + [anon_sym_DOLLARfeature] = ACTIONS(1415), + [anon_sym_DOLLARassignable] = ACTIONS(1415), + [anon_sym_BANG] = ACTIONS(1417), + [anon_sym_TILDE] = ACTIONS(1417), + [anon_sym_PLUS_PLUS] = ACTIONS(1417), + [anon_sym_DASH_DASH] = ACTIONS(1417), + [anon_sym_typeid] = ACTIONS(1415), + [anon_sym_LBRACE_PIPE] = ACTIONS(1417), + [anon_sym_void] = ACTIONS(1415), + [anon_sym_bool] = ACTIONS(1415), + [anon_sym_char] = ACTIONS(1415), + [anon_sym_ichar] = ACTIONS(1415), + [anon_sym_short] = ACTIONS(1415), + [anon_sym_ushort] = ACTIONS(1415), + [anon_sym_uint] = ACTIONS(1415), + [anon_sym_long] = ACTIONS(1415), + [anon_sym_ulong] = ACTIONS(1415), + [anon_sym_int128] = ACTIONS(1415), + [anon_sym_uint128] = ACTIONS(1415), + [anon_sym_float] = ACTIONS(1415), + [anon_sym_double] = ACTIONS(1415), + [anon_sym_float16] = ACTIONS(1415), + [anon_sym_bfloat16] = ACTIONS(1415), + [anon_sym_float128] = ACTIONS(1415), + [anon_sym_iptr] = ACTIONS(1415), + [anon_sym_uptr] = ACTIONS(1415), + [anon_sym_isz] = ACTIONS(1415), + [anon_sym_usz] = ACTIONS(1415), + [anon_sym_anyfault] = ACTIONS(1415), + [anon_sym_any] = ACTIONS(1415), + [anon_sym_DOLLARtypeof] = ACTIONS(1415), + [anon_sym_DOLLARtypefrom] = ACTIONS(1415), + [anon_sym_DOLLARvatype] = ACTIONS(1415), + [anon_sym_DOLLARevaltype] = ACTIONS(1415), + [sym_real_literal] = ACTIONS(1417), }, [760] = { [sym_line_comment] = STATE(760), [sym_doc_comment] = STATE(760), [sym_block_comment] = STATE(760), - [sym_ident] = ACTIONS(1504), - [sym_integer_literal] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1506), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_BQUOTE] = ACTIONS(1506), - [sym_bytes_literal] = ACTIONS(1506), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1504), - [sym_at_ident] = ACTIONS(1506), - [sym_hash_ident] = ACTIONS(1506), - [sym_type_ident] = ACTIONS(1506), - [sym_ct_type_ident] = ACTIONS(1506), - [sym_const_ident] = ACTIONS(1504), - [sym_builtin] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_AMP] = ACTIONS(1504), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_tlocal] = ACTIONS(1504), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym_fn] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(1504), - [anon_sym_var] = ACTIONS(1504), - [anon_sym_return] = ACTIONS(1504), - [anon_sym_continue] = ACTIONS(1504), - [anon_sym_break] = ACTIONS(1504), - [anon_sym_defer] = ACTIONS(1504), - [anon_sym_assert] = ACTIONS(1504), - [anon_sym_nextcase] = ACTIONS(1504), - [anon_sym_switch] = ACTIONS(1504), - [anon_sym_AMP_AMP] = ACTIONS(1506), - [anon_sym_if] = ACTIONS(1504), - [anon_sym_for] = ACTIONS(1504), - [anon_sym_foreach] = ACTIONS(1504), - [anon_sym_foreach_r] = ACTIONS(1504), - [anon_sym_while] = ACTIONS(1504), - [anon_sym_do] = ACTIONS(1504), - [anon_sym_int] = ACTIONS(1504), - [anon_sym_PLUS] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1504), - [anon_sym_STAR] = ACTIONS(1506), - [anon_sym_asm] = ACTIONS(1504), - [anon_sym_DOLLARassert] = ACTIONS(1504), - [anon_sym_DOLLARerror] = ACTIONS(1504), - [anon_sym_DOLLARecho] = ACTIONS(1504), - [anon_sym_DOLLARif] = ACTIONS(1504), - [anon_sym_DOLLARswitch] = ACTIONS(1504), - [anon_sym_DOLLARfor] = ACTIONS(1504), - [anon_sym_DOLLARendfor] = ACTIONS(1504), - [anon_sym_DOLLARforeach] = ACTIONS(1504), - [anon_sym_DOLLARalignof] = ACTIONS(1504), - [anon_sym_DOLLARextnameof] = ACTIONS(1504), - [anon_sym_DOLLARnameof] = ACTIONS(1504), - [anon_sym_DOLLARoffsetof] = ACTIONS(1504), - [anon_sym_DOLLARqnameof] = ACTIONS(1504), - [anon_sym_DOLLARvaconst] = ACTIONS(1504), - [anon_sym_DOLLARvaarg] = ACTIONS(1504), - [anon_sym_DOLLARvaref] = ACTIONS(1504), - [anon_sym_DOLLARvaexpr] = ACTIONS(1504), - [anon_sym_true] = ACTIONS(1504), - [anon_sym_false] = ACTIONS(1504), - [anon_sym_null] = ACTIONS(1504), - [anon_sym_DOLLARvacount] = ACTIONS(1504), - [anon_sym_DOLLARappend] = ACTIONS(1504), - [anon_sym_DOLLARconcat] = ACTIONS(1504), - [anon_sym_DOLLAReval] = ACTIONS(1504), - [anon_sym_DOLLARis_const] = ACTIONS(1504), - [anon_sym_DOLLARsizeof] = ACTIONS(1504), - [anon_sym_DOLLARstringify] = ACTIONS(1504), - [anon_sym_DOLLARand] = ACTIONS(1504), - [anon_sym_DOLLARdefined] = ACTIONS(1504), - [anon_sym_DOLLARembed] = ACTIONS(1504), - [anon_sym_DOLLARor] = ACTIONS(1504), - [anon_sym_DOLLARfeature] = ACTIONS(1504), - [anon_sym_DOLLARassignable] = ACTIONS(1504), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1506), - [anon_sym_typeid] = ACTIONS(1504), - [anon_sym_LBRACE_PIPE] = ACTIONS(1506), - [anon_sym_void] = ACTIONS(1504), - [anon_sym_bool] = ACTIONS(1504), - [anon_sym_char] = ACTIONS(1504), - [anon_sym_ichar] = ACTIONS(1504), - [anon_sym_short] = ACTIONS(1504), - [anon_sym_ushort] = ACTIONS(1504), - [anon_sym_uint] = ACTIONS(1504), - [anon_sym_long] = ACTIONS(1504), - [anon_sym_ulong] = ACTIONS(1504), - [anon_sym_int128] = ACTIONS(1504), - [anon_sym_uint128] = ACTIONS(1504), - [anon_sym_float] = ACTIONS(1504), - [anon_sym_double] = ACTIONS(1504), - [anon_sym_float16] = ACTIONS(1504), - [anon_sym_bfloat16] = ACTIONS(1504), - [anon_sym_float128] = ACTIONS(1504), - [anon_sym_iptr] = ACTIONS(1504), - [anon_sym_uptr] = ACTIONS(1504), - [anon_sym_isz] = ACTIONS(1504), - [anon_sym_usz] = ACTIONS(1504), - [anon_sym_anyfault] = ACTIONS(1504), - [anon_sym_any] = ACTIONS(1504), - [anon_sym_DOLLARtypeof] = ACTIONS(1504), - [anon_sym_DOLLARtypefrom] = ACTIONS(1504), - [anon_sym_DOLLARvatype] = ACTIONS(1504), - [anon_sym_DOLLARevaltype] = ACTIONS(1504), - [sym_real_literal] = ACTIONS(1506), + [sym_ident] = ACTIONS(1593), + [sym_integer_literal] = ACTIONS(1595), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_DQUOTE] = ACTIONS(1595), + [anon_sym_BQUOTE] = ACTIONS(1595), + [sym_bytes_literal] = ACTIONS(1595), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1593), + [sym_at_ident] = ACTIONS(1595), + [sym_hash_ident] = ACTIONS(1595), + [sym_type_ident] = ACTIONS(1595), + [sym_ct_type_ident] = ACTIONS(1595), + [sym_const_ident] = ACTIONS(1593), + [sym_builtin] = ACTIONS(1595), + [anon_sym_LPAREN] = ACTIONS(1595), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_static] = ACTIONS(1593), + [anon_sym_tlocal] = ACTIONS(1593), + [anon_sym_SEMI] = ACTIONS(1595), + [anon_sym_fn] = ACTIONS(1593), + [anon_sym_LBRACE] = ACTIONS(1593), + [anon_sym_const] = ACTIONS(1593), + [anon_sym_var] = ACTIONS(1593), + [anon_sym_return] = ACTIONS(1593), + [anon_sym_continue] = ACTIONS(1593), + [anon_sym_break] = ACTIONS(1593), + [anon_sym_defer] = ACTIONS(1593), + [anon_sym_assert] = ACTIONS(1593), + [anon_sym_nextcase] = ACTIONS(1593), + [anon_sym_switch] = ACTIONS(1593), + [anon_sym_AMP_AMP] = ACTIONS(1595), + [anon_sym_if] = ACTIONS(1593), + [anon_sym_for] = ACTIONS(1593), + [anon_sym_foreach] = ACTIONS(1593), + [anon_sym_foreach_r] = ACTIONS(1593), + [anon_sym_while] = ACTIONS(1593), + [anon_sym_do] = ACTIONS(1593), + [anon_sym_int] = ACTIONS(1593), + [anon_sym_PLUS] = ACTIONS(1593), + [anon_sym_DASH] = ACTIONS(1593), + [anon_sym_STAR] = ACTIONS(1595), + [anon_sym_asm] = ACTIONS(1593), + [anon_sym_DOLLARassert] = ACTIONS(1593), + [anon_sym_DOLLARerror] = ACTIONS(1593), + [anon_sym_DOLLARecho] = ACTIONS(1593), + [anon_sym_DOLLARif] = ACTIONS(1593), + [anon_sym_DOLLARendif] = ACTIONS(1593), + [anon_sym_DOLLARswitch] = ACTIONS(1593), + [anon_sym_DOLLARfor] = ACTIONS(1593), + [anon_sym_DOLLARforeach] = ACTIONS(1593), + [anon_sym_DOLLARalignof] = ACTIONS(1593), + [anon_sym_DOLLARextnameof] = ACTIONS(1593), + [anon_sym_DOLLARnameof] = ACTIONS(1593), + [anon_sym_DOLLARoffsetof] = ACTIONS(1593), + [anon_sym_DOLLARqnameof] = ACTIONS(1593), + [anon_sym_DOLLARvaconst] = ACTIONS(1593), + [anon_sym_DOLLARvaarg] = ACTIONS(1593), + [anon_sym_DOLLARvaref] = ACTIONS(1593), + [anon_sym_DOLLARvaexpr] = ACTIONS(1593), + [anon_sym_true] = ACTIONS(1593), + [anon_sym_false] = ACTIONS(1593), + [anon_sym_null] = ACTIONS(1593), + [anon_sym_DOLLARvacount] = ACTIONS(1593), + [anon_sym_DOLLARappend] = ACTIONS(1593), + [anon_sym_DOLLARconcat] = ACTIONS(1593), + [anon_sym_DOLLAReval] = ACTIONS(1593), + [anon_sym_DOLLARis_const] = ACTIONS(1593), + [anon_sym_DOLLARsizeof] = ACTIONS(1593), + [anon_sym_DOLLARstringify] = ACTIONS(1593), + [anon_sym_DOLLARand] = ACTIONS(1593), + [anon_sym_DOLLARdefined] = ACTIONS(1593), + [anon_sym_DOLLARembed] = ACTIONS(1593), + [anon_sym_DOLLARor] = ACTIONS(1593), + [anon_sym_DOLLARfeature] = ACTIONS(1593), + [anon_sym_DOLLARassignable] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1595), + [anon_sym_TILDE] = ACTIONS(1595), + [anon_sym_PLUS_PLUS] = ACTIONS(1595), + [anon_sym_DASH_DASH] = ACTIONS(1595), + [anon_sym_typeid] = ACTIONS(1593), + [anon_sym_LBRACE_PIPE] = ACTIONS(1595), + [anon_sym_void] = ACTIONS(1593), + [anon_sym_bool] = ACTIONS(1593), + [anon_sym_char] = ACTIONS(1593), + [anon_sym_ichar] = ACTIONS(1593), + [anon_sym_short] = ACTIONS(1593), + [anon_sym_ushort] = ACTIONS(1593), + [anon_sym_uint] = ACTIONS(1593), + [anon_sym_long] = ACTIONS(1593), + [anon_sym_ulong] = ACTIONS(1593), + [anon_sym_int128] = ACTIONS(1593), + [anon_sym_uint128] = ACTIONS(1593), + [anon_sym_float] = ACTIONS(1593), + [anon_sym_double] = ACTIONS(1593), + [anon_sym_float16] = ACTIONS(1593), + [anon_sym_bfloat16] = ACTIONS(1593), + [anon_sym_float128] = ACTIONS(1593), + [anon_sym_iptr] = ACTIONS(1593), + [anon_sym_uptr] = ACTIONS(1593), + [anon_sym_isz] = ACTIONS(1593), + [anon_sym_usz] = ACTIONS(1593), + [anon_sym_anyfault] = ACTIONS(1593), + [anon_sym_any] = ACTIONS(1593), + [anon_sym_DOLLARtypeof] = ACTIONS(1593), + [anon_sym_DOLLARtypefrom] = ACTIONS(1593), + [anon_sym_DOLLARvatype] = ACTIONS(1593), + [anon_sym_DOLLARevaltype] = ACTIONS(1593), + [sym_real_literal] = ACTIONS(1595), }, [761] = { [sym_line_comment] = STATE(761), [sym_doc_comment] = STATE(761), [sym_block_comment] = STATE(761), - [sym_ident] = ACTIONS(1524), - [sym_integer_literal] = ACTIONS(1526), - [anon_sym_SQUOTE] = ACTIONS(1526), - [anon_sym_DQUOTE] = ACTIONS(1526), - [anon_sym_BQUOTE] = ACTIONS(1526), - [sym_bytes_literal] = ACTIONS(1526), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1524), - [sym_at_ident] = ACTIONS(1526), - [sym_hash_ident] = ACTIONS(1526), - [sym_type_ident] = ACTIONS(1526), - [sym_ct_type_ident] = ACTIONS(1526), - [sym_const_ident] = ACTIONS(1524), - [sym_builtin] = ACTIONS(1526), - [anon_sym_LPAREN] = ACTIONS(1526), - [anon_sym_AMP] = ACTIONS(1524), - [anon_sym_static] = ACTIONS(1524), - [anon_sym_tlocal] = ACTIONS(1524), - [anon_sym_SEMI] = ACTIONS(1526), - [anon_sym_fn] = ACTIONS(1524), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_const] = ACTIONS(1524), - [anon_sym_var] = ACTIONS(1524), - [anon_sym_return] = ACTIONS(1524), - [anon_sym_continue] = ACTIONS(1524), - [anon_sym_break] = ACTIONS(1524), - [anon_sym_defer] = ACTIONS(1524), - [anon_sym_assert] = ACTIONS(1524), - [anon_sym_nextcase] = ACTIONS(1524), - [anon_sym_switch] = ACTIONS(1524), - [anon_sym_AMP_AMP] = ACTIONS(1526), - [anon_sym_if] = ACTIONS(1524), - [anon_sym_for] = ACTIONS(1524), - [anon_sym_foreach] = ACTIONS(1524), - [anon_sym_foreach_r] = ACTIONS(1524), - [anon_sym_while] = ACTIONS(1524), - [anon_sym_do] = ACTIONS(1524), - [anon_sym_int] = ACTIONS(1524), - [anon_sym_PLUS] = ACTIONS(1524), - [anon_sym_DASH] = ACTIONS(1524), - [anon_sym_STAR] = ACTIONS(1526), - [anon_sym_asm] = ACTIONS(1524), - [anon_sym_DOLLARassert] = ACTIONS(1524), - [anon_sym_DOLLARerror] = ACTIONS(1524), - [anon_sym_DOLLARecho] = ACTIONS(1524), - [anon_sym_DOLLARif] = ACTIONS(1524), - [anon_sym_DOLLARswitch] = ACTIONS(1524), - [anon_sym_DOLLARfor] = ACTIONS(1524), - [anon_sym_DOLLARendfor] = ACTIONS(1524), - [anon_sym_DOLLARforeach] = ACTIONS(1524), - [anon_sym_DOLLARalignof] = ACTIONS(1524), - [anon_sym_DOLLARextnameof] = ACTIONS(1524), - [anon_sym_DOLLARnameof] = ACTIONS(1524), - [anon_sym_DOLLARoffsetof] = ACTIONS(1524), - [anon_sym_DOLLARqnameof] = ACTIONS(1524), - [anon_sym_DOLLARvaconst] = ACTIONS(1524), - [anon_sym_DOLLARvaarg] = ACTIONS(1524), - [anon_sym_DOLLARvaref] = ACTIONS(1524), - [anon_sym_DOLLARvaexpr] = ACTIONS(1524), - [anon_sym_true] = ACTIONS(1524), - [anon_sym_false] = ACTIONS(1524), - [anon_sym_null] = ACTIONS(1524), - [anon_sym_DOLLARvacount] = ACTIONS(1524), - [anon_sym_DOLLARappend] = ACTIONS(1524), - [anon_sym_DOLLARconcat] = ACTIONS(1524), - [anon_sym_DOLLAReval] = ACTIONS(1524), - [anon_sym_DOLLARis_const] = ACTIONS(1524), - [anon_sym_DOLLARsizeof] = ACTIONS(1524), - [anon_sym_DOLLARstringify] = ACTIONS(1524), - [anon_sym_DOLLARand] = ACTIONS(1524), - [anon_sym_DOLLARdefined] = ACTIONS(1524), - [anon_sym_DOLLARembed] = ACTIONS(1524), - [anon_sym_DOLLARor] = ACTIONS(1524), - [anon_sym_DOLLARfeature] = ACTIONS(1524), - [anon_sym_DOLLARassignable] = ACTIONS(1524), - [anon_sym_BANG] = ACTIONS(1526), - [anon_sym_TILDE] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1526), - [anon_sym_DASH_DASH] = ACTIONS(1526), - [anon_sym_typeid] = ACTIONS(1524), - [anon_sym_LBRACE_PIPE] = ACTIONS(1526), - [anon_sym_void] = ACTIONS(1524), - [anon_sym_bool] = ACTIONS(1524), - [anon_sym_char] = ACTIONS(1524), - [anon_sym_ichar] = ACTIONS(1524), - [anon_sym_short] = ACTIONS(1524), - [anon_sym_ushort] = ACTIONS(1524), - [anon_sym_uint] = ACTIONS(1524), - [anon_sym_long] = ACTIONS(1524), - [anon_sym_ulong] = ACTIONS(1524), - [anon_sym_int128] = ACTIONS(1524), - [anon_sym_uint128] = ACTIONS(1524), - [anon_sym_float] = ACTIONS(1524), - [anon_sym_double] = ACTIONS(1524), - [anon_sym_float16] = ACTIONS(1524), - [anon_sym_bfloat16] = ACTIONS(1524), - [anon_sym_float128] = ACTIONS(1524), - [anon_sym_iptr] = ACTIONS(1524), - [anon_sym_uptr] = ACTIONS(1524), - [anon_sym_isz] = ACTIONS(1524), - [anon_sym_usz] = ACTIONS(1524), - [anon_sym_anyfault] = ACTIONS(1524), - [anon_sym_any] = ACTIONS(1524), - [anon_sym_DOLLARtypeof] = ACTIONS(1524), - [anon_sym_DOLLARtypefrom] = ACTIONS(1524), - [anon_sym_DOLLARvatype] = ACTIONS(1524), - [anon_sym_DOLLARevaltype] = ACTIONS(1524), - [sym_real_literal] = ACTIONS(1526), + [sym_ident] = ACTIONS(1585), + [sym_integer_literal] = ACTIONS(1587), + [anon_sym_SQUOTE] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1587), + [anon_sym_BQUOTE] = ACTIONS(1587), + [sym_bytes_literal] = ACTIONS(1587), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1585), + [sym_at_ident] = ACTIONS(1587), + [sym_hash_ident] = ACTIONS(1587), + [sym_type_ident] = ACTIONS(1587), + [sym_ct_type_ident] = ACTIONS(1587), + [sym_const_ident] = ACTIONS(1585), + [sym_builtin] = ACTIONS(1587), + [anon_sym_LPAREN] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_static] = ACTIONS(1585), + [anon_sym_tlocal] = ACTIONS(1585), + [anon_sym_SEMI] = ACTIONS(1587), + [anon_sym_fn] = ACTIONS(1585), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_const] = ACTIONS(1585), + [anon_sym_var] = ACTIONS(1585), + [anon_sym_return] = ACTIONS(1585), + [anon_sym_continue] = ACTIONS(1585), + [anon_sym_break] = ACTIONS(1585), + [anon_sym_defer] = ACTIONS(1585), + [anon_sym_assert] = ACTIONS(1585), + [anon_sym_nextcase] = ACTIONS(1585), + [anon_sym_switch] = ACTIONS(1585), + [anon_sym_AMP_AMP] = ACTIONS(1587), + [anon_sym_if] = ACTIONS(1585), + [anon_sym_for] = ACTIONS(1585), + [anon_sym_foreach] = ACTIONS(1585), + [anon_sym_foreach_r] = ACTIONS(1585), + [anon_sym_while] = ACTIONS(1585), + [anon_sym_do] = ACTIONS(1585), + [anon_sym_int] = ACTIONS(1585), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1587), + [anon_sym_asm] = ACTIONS(1585), + [anon_sym_DOLLARassert] = ACTIONS(1585), + [anon_sym_DOLLARerror] = ACTIONS(1585), + [anon_sym_DOLLARecho] = ACTIONS(1585), + [anon_sym_DOLLARif] = ACTIONS(1585), + [anon_sym_DOLLARendif] = ACTIONS(1585), + [anon_sym_DOLLARswitch] = ACTIONS(1585), + [anon_sym_DOLLARfor] = ACTIONS(1585), + [anon_sym_DOLLARforeach] = ACTIONS(1585), + [anon_sym_DOLLARalignof] = ACTIONS(1585), + [anon_sym_DOLLARextnameof] = ACTIONS(1585), + [anon_sym_DOLLARnameof] = ACTIONS(1585), + [anon_sym_DOLLARoffsetof] = ACTIONS(1585), + [anon_sym_DOLLARqnameof] = ACTIONS(1585), + [anon_sym_DOLLARvaconst] = ACTIONS(1585), + [anon_sym_DOLLARvaarg] = ACTIONS(1585), + [anon_sym_DOLLARvaref] = ACTIONS(1585), + [anon_sym_DOLLARvaexpr] = ACTIONS(1585), + [anon_sym_true] = ACTIONS(1585), + [anon_sym_false] = ACTIONS(1585), + [anon_sym_null] = ACTIONS(1585), + [anon_sym_DOLLARvacount] = ACTIONS(1585), + [anon_sym_DOLLARappend] = ACTIONS(1585), + [anon_sym_DOLLARconcat] = ACTIONS(1585), + [anon_sym_DOLLAReval] = ACTIONS(1585), + [anon_sym_DOLLARis_const] = ACTIONS(1585), + [anon_sym_DOLLARsizeof] = ACTIONS(1585), + [anon_sym_DOLLARstringify] = ACTIONS(1585), + [anon_sym_DOLLARand] = ACTIONS(1585), + [anon_sym_DOLLARdefined] = ACTIONS(1585), + [anon_sym_DOLLARembed] = ACTIONS(1585), + [anon_sym_DOLLARor] = ACTIONS(1585), + [anon_sym_DOLLARfeature] = ACTIONS(1585), + [anon_sym_DOLLARassignable] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), + [anon_sym_typeid] = ACTIONS(1585), + [anon_sym_LBRACE_PIPE] = ACTIONS(1587), + [anon_sym_void] = ACTIONS(1585), + [anon_sym_bool] = ACTIONS(1585), + [anon_sym_char] = ACTIONS(1585), + [anon_sym_ichar] = ACTIONS(1585), + [anon_sym_short] = ACTIONS(1585), + [anon_sym_ushort] = ACTIONS(1585), + [anon_sym_uint] = ACTIONS(1585), + [anon_sym_long] = ACTIONS(1585), + [anon_sym_ulong] = ACTIONS(1585), + [anon_sym_int128] = ACTIONS(1585), + [anon_sym_uint128] = ACTIONS(1585), + [anon_sym_float] = ACTIONS(1585), + [anon_sym_double] = ACTIONS(1585), + [anon_sym_float16] = ACTIONS(1585), + [anon_sym_bfloat16] = ACTIONS(1585), + [anon_sym_float128] = ACTIONS(1585), + [anon_sym_iptr] = ACTIONS(1585), + [anon_sym_uptr] = ACTIONS(1585), + [anon_sym_isz] = ACTIONS(1585), + [anon_sym_usz] = ACTIONS(1585), + [anon_sym_anyfault] = ACTIONS(1585), + [anon_sym_any] = ACTIONS(1585), + [anon_sym_DOLLARtypeof] = ACTIONS(1585), + [anon_sym_DOLLARtypefrom] = ACTIONS(1585), + [anon_sym_DOLLARvatype] = ACTIONS(1585), + [anon_sym_DOLLARevaltype] = ACTIONS(1585), + [sym_real_literal] = ACTIONS(1587), }, [762] = { [sym_line_comment] = STATE(762), [sym_doc_comment] = STATE(762), [sym_block_comment] = STATE(762), - [sym_ident] = ACTIONS(1608), - [sym_integer_literal] = ACTIONS(1610), - [anon_sym_SQUOTE] = ACTIONS(1610), - [anon_sym_DQUOTE] = ACTIONS(1610), - [anon_sym_BQUOTE] = ACTIONS(1610), - [sym_bytes_literal] = ACTIONS(1610), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1608), - [sym_at_ident] = ACTIONS(1610), - [sym_hash_ident] = ACTIONS(1610), - [sym_type_ident] = ACTIONS(1610), - [sym_ct_type_ident] = ACTIONS(1610), - [sym_const_ident] = ACTIONS(1608), - [sym_builtin] = ACTIONS(1610), - [anon_sym_LPAREN] = ACTIONS(1610), - [anon_sym_AMP] = ACTIONS(1608), - [anon_sym_static] = ACTIONS(1608), - [anon_sym_tlocal] = ACTIONS(1608), - [anon_sym_SEMI] = ACTIONS(1610), - [anon_sym_fn] = ACTIONS(1608), - [anon_sym_LBRACE] = ACTIONS(1608), - [anon_sym_const] = ACTIONS(1608), - [anon_sym_var] = ACTIONS(1608), - [anon_sym_return] = ACTIONS(1608), - [anon_sym_continue] = ACTIONS(1608), - [anon_sym_break] = ACTIONS(1608), - [anon_sym_defer] = ACTIONS(1608), - [anon_sym_assert] = ACTIONS(1608), - [anon_sym_nextcase] = ACTIONS(1608), - [anon_sym_switch] = ACTIONS(1608), - [anon_sym_AMP_AMP] = ACTIONS(1610), - [anon_sym_if] = ACTIONS(1608), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_foreach] = ACTIONS(1608), - [anon_sym_foreach_r] = ACTIONS(1608), - [anon_sym_while] = ACTIONS(1608), - [anon_sym_do] = ACTIONS(1608), - [anon_sym_int] = ACTIONS(1608), - [anon_sym_PLUS] = ACTIONS(1608), - [anon_sym_DASH] = ACTIONS(1608), - [anon_sym_STAR] = ACTIONS(1610), - [anon_sym_asm] = ACTIONS(1608), - [anon_sym_DOLLARassert] = ACTIONS(1608), - [anon_sym_DOLLARerror] = ACTIONS(1608), - [anon_sym_DOLLARecho] = ACTIONS(1608), - [anon_sym_DOLLARif] = ACTIONS(1608), - [anon_sym_DOLLARswitch] = ACTIONS(1608), - [anon_sym_DOLLARfor] = ACTIONS(1608), - [anon_sym_DOLLARendfor] = ACTIONS(1608), - [anon_sym_DOLLARforeach] = ACTIONS(1608), - [anon_sym_DOLLARalignof] = ACTIONS(1608), - [anon_sym_DOLLARextnameof] = ACTIONS(1608), - [anon_sym_DOLLARnameof] = ACTIONS(1608), - [anon_sym_DOLLARoffsetof] = ACTIONS(1608), - [anon_sym_DOLLARqnameof] = ACTIONS(1608), - [anon_sym_DOLLARvaconst] = ACTIONS(1608), - [anon_sym_DOLLARvaarg] = ACTIONS(1608), - [anon_sym_DOLLARvaref] = ACTIONS(1608), - [anon_sym_DOLLARvaexpr] = ACTIONS(1608), - [anon_sym_true] = ACTIONS(1608), - [anon_sym_false] = ACTIONS(1608), - [anon_sym_null] = ACTIONS(1608), - [anon_sym_DOLLARvacount] = ACTIONS(1608), - [anon_sym_DOLLARappend] = ACTIONS(1608), - [anon_sym_DOLLARconcat] = ACTIONS(1608), - [anon_sym_DOLLAReval] = ACTIONS(1608), - [anon_sym_DOLLARis_const] = ACTIONS(1608), - [anon_sym_DOLLARsizeof] = ACTIONS(1608), - [anon_sym_DOLLARstringify] = ACTIONS(1608), - [anon_sym_DOLLARand] = ACTIONS(1608), - [anon_sym_DOLLARdefined] = ACTIONS(1608), - [anon_sym_DOLLARembed] = ACTIONS(1608), - [anon_sym_DOLLARor] = ACTIONS(1608), - [anon_sym_DOLLARfeature] = ACTIONS(1608), - [anon_sym_DOLLARassignable] = ACTIONS(1608), - [anon_sym_BANG] = ACTIONS(1610), - [anon_sym_TILDE] = ACTIONS(1610), - [anon_sym_PLUS_PLUS] = ACTIONS(1610), - [anon_sym_DASH_DASH] = ACTIONS(1610), - [anon_sym_typeid] = ACTIONS(1608), - [anon_sym_LBRACE_PIPE] = ACTIONS(1610), - [anon_sym_void] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_ichar] = ACTIONS(1608), - [anon_sym_short] = ACTIONS(1608), - [anon_sym_ushort] = ACTIONS(1608), - [anon_sym_uint] = ACTIONS(1608), - [anon_sym_long] = ACTIONS(1608), - [anon_sym_ulong] = ACTIONS(1608), - [anon_sym_int128] = ACTIONS(1608), - [anon_sym_uint128] = ACTIONS(1608), - [anon_sym_float] = ACTIONS(1608), - [anon_sym_double] = ACTIONS(1608), - [anon_sym_float16] = ACTIONS(1608), - [anon_sym_bfloat16] = ACTIONS(1608), - [anon_sym_float128] = ACTIONS(1608), - [anon_sym_iptr] = ACTIONS(1608), - [anon_sym_uptr] = ACTIONS(1608), - [anon_sym_isz] = ACTIONS(1608), - [anon_sym_usz] = ACTIONS(1608), - [anon_sym_anyfault] = ACTIONS(1608), - [anon_sym_any] = ACTIONS(1608), - [anon_sym_DOLLARtypeof] = ACTIONS(1608), - [anon_sym_DOLLARtypefrom] = ACTIONS(1608), - [anon_sym_DOLLARvatype] = ACTIONS(1608), - [anon_sym_DOLLARevaltype] = ACTIONS(1608), - [sym_real_literal] = ACTIONS(1610), + [sym_ident] = ACTIONS(1489), + [sym_integer_literal] = ACTIONS(1491), + [anon_sym_SQUOTE] = ACTIONS(1491), + [anon_sym_DQUOTE] = ACTIONS(1491), + [anon_sym_BQUOTE] = ACTIONS(1491), + [sym_bytes_literal] = ACTIONS(1491), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1489), + [sym_at_ident] = ACTIONS(1491), + [sym_hash_ident] = ACTIONS(1491), + [sym_type_ident] = ACTIONS(1491), + [sym_ct_type_ident] = ACTIONS(1491), + [sym_const_ident] = ACTIONS(1489), + [sym_builtin] = ACTIONS(1491), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_AMP] = ACTIONS(1489), + [anon_sym_static] = ACTIONS(1489), + [anon_sym_tlocal] = ACTIONS(1489), + [anon_sym_SEMI] = ACTIONS(1491), + [anon_sym_fn] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1489), + [anon_sym_const] = ACTIONS(1489), + [anon_sym_var] = ACTIONS(1489), + [anon_sym_return] = ACTIONS(1489), + [anon_sym_continue] = ACTIONS(1489), + [anon_sym_break] = ACTIONS(1489), + [anon_sym_defer] = ACTIONS(1489), + [anon_sym_assert] = ACTIONS(1489), + [anon_sym_nextcase] = ACTIONS(1489), + [anon_sym_switch] = ACTIONS(1489), + [anon_sym_AMP_AMP] = ACTIONS(1491), + [anon_sym_if] = ACTIONS(1489), + [anon_sym_for] = ACTIONS(1489), + [anon_sym_foreach] = ACTIONS(1489), + [anon_sym_foreach_r] = ACTIONS(1489), + [anon_sym_while] = ACTIONS(1489), + [anon_sym_do] = ACTIONS(1489), + [anon_sym_int] = ACTIONS(1489), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_STAR] = ACTIONS(1491), + [anon_sym_asm] = ACTIONS(1489), + [anon_sym_DOLLARassert] = ACTIONS(1489), + [anon_sym_DOLLARerror] = ACTIONS(1489), + [anon_sym_DOLLARecho] = ACTIONS(1489), + [anon_sym_DOLLARif] = ACTIONS(1489), + [anon_sym_DOLLARendif] = ACTIONS(1489), + [anon_sym_DOLLARswitch] = ACTIONS(1489), + [anon_sym_DOLLARfor] = ACTIONS(1489), + [anon_sym_DOLLARforeach] = ACTIONS(1489), + [anon_sym_DOLLARalignof] = ACTIONS(1489), + [anon_sym_DOLLARextnameof] = ACTIONS(1489), + [anon_sym_DOLLARnameof] = ACTIONS(1489), + [anon_sym_DOLLARoffsetof] = ACTIONS(1489), + [anon_sym_DOLLARqnameof] = ACTIONS(1489), + [anon_sym_DOLLARvaconst] = ACTIONS(1489), + [anon_sym_DOLLARvaarg] = ACTIONS(1489), + [anon_sym_DOLLARvaref] = ACTIONS(1489), + [anon_sym_DOLLARvaexpr] = ACTIONS(1489), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), + [anon_sym_null] = ACTIONS(1489), + [anon_sym_DOLLARvacount] = ACTIONS(1489), + [anon_sym_DOLLARappend] = ACTIONS(1489), + [anon_sym_DOLLARconcat] = ACTIONS(1489), + [anon_sym_DOLLAReval] = ACTIONS(1489), + [anon_sym_DOLLARis_const] = ACTIONS(1489), + [anon_sym_DOLLARsizeof] = ACTIONS(1489), + [anon_sym_DOLLARstringify] = ACTIONS(1489), + [anon_sym_DOLLARand] = ACTIONS(1489), + [anon_sym_DOLLARdefined] = ACTIONS(1489), + [anon_sym_DOLLARembed] = ACTIONS(1489), + [anon_sym_DOLLARor] = ACTIONS(1489), + [anon_sym_DOLLARfeature] = ACTIONS(1489), + [anon_sym_DOLLARassignable] = ACTIONS(1489), + [anon_sym_BANG] = ACTIONS(1491), + [anon_sym_TILDE] = ACTIONS(1491), + [anon_sym_PLUS_PLUS] = ACTIONS(1491), + [anon_sym_DASH_DASH] = ACTIONS(1491), + [anon_sym_typeid] = ACTIONS(1489), + [anon_sym_LBRACE_PIPE] = ACTIONS(1491), + [anon_sym_void] = ACTIONS(1489), + [anon_sym_bool] = ACTIONS(1489), + [anon_sym_char] = ACTIONS(1489), + [anon_sym_ichar] = ACTIONS(1489), + [anon_sym_short] = ACTIONS(1489), + [anon_sym_ushort] = ACTIONS(1489), + [anon_sym_uint] = ACTIONS(1489), + [anon_sym_long] = ACTIONS(1489), + [anon_sym_ulong] = ACTIONS(1489), + [anon_sym_int128] = ACTIONS(1489), + [anon_sym_uint128] = ACTIONS(1489), + [anon_sym_float] = ACTIONS(1489), + [anon_sym_double] = ACTIONS(1489), + [anon_sym_float16] = ACTIONS(1489), + [anon_sym_bfloat16] = ACTIONS(1489), + [anon_sym_float128] = ACTIONS(1489), + [anon_sym_iptr] = ACTIONS(1489), + [anon_sym_uptr] = ACTIONS(1489), + [anon_sym_isz] = ACTIONS(1489), + [anon_sym_usz] = ACTIONS(1489), + [anon_sym_anyfault] = ACTIONS(1489), + [anon_sym_any] = ACTIONS(1489), + [anon_sym_DOLLARtypeof] = ACTIONS(1489), + [anon_sym_DOLLARtypefrom] = ACTIONS(1489), + [anon_sym_DOLLARvatype] = ACTIONS(1489), + [anon_sym_DOLLARevaltype] = ACTIONS(1489), + [sym_real_literal] = ACTIONS(1491), }, [763] = { [sym_line_comment] = STATE(763), [sym_doc_comment] = STATE(763), [sym_block_comment] = STATE(763), - [sym_ident] = ACTIONS(1394), - [sym_integer_literal] = ACTIONS(1396), - [anon_sym_SQUOTE] = ACTIONS(1396), - [anon_sym_DQUOTE] = ACTIONS(1396), - [anon_sym_BQUOTE] = ACTIONS(1396), - [sym_bytes_literal] = ACTIONS(1396), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1394), - [sym_at_ident] = ACTIONS(1396), - [sym_hash_ident] = ACTIONS(1396), - [sym_type_ident] = ACTIONS(1396), - [sym_ct_type_ident] = ACTIONS(1396), - [sym_const_ident] = ACTIONS(1394), - [sym_builtin] = ACTIONS(1396), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_AMP] = ACTIONS(1394), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_tlocal] = ACTIONS(1394), - [anon_sym_SEMI] = ACTIONS(1396), - [anon_sym_fn] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1394), - [anon_sym_const] = ACTIONS(1394), - [anon_sym_var] = ACTIONS(1394), - [anon_sym_return] = ACTIONS(1394), - [anon_sym_continue] = ACTIONS(1394), - [anon_sym_break] = ACTIONS(1394), - [anon_sym_defer] = ACTIONS(1394), - [anon_sym_assert] = ACTIONS(1394), - [anon_sym_nextcase] = ACTIONS(1394), - [anon_sym_switch] = ACTIONS(1394), - [anon_sym_AMP_AMP] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1394), - [anon_sym_for] = ACTIONS(1394), - [anon_sym_foreach] = ACTIONS(1394), - [anon_sym_foreach_r] = ACTIONS(1394), - [anon_sym_while] = ACTIONS(1394), - [anon_sym_do] = ACTIONS(1394), - [anon_sym_int] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1394), - [anon_sym_DASH] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(1396), - [anon_sym_asm] = ACTIONS(1394), - [anon_sym_DOLLARassert] = ACTIONS(1394), - [anon_sym_DOLLARerror] = ACTIONS(1394), - [anon_sym_DOLLARecho] = ACTIONS(1394), - [anon_sym_DOLLARif] = ACTIONS(1394), - [anon_sym_DOLLARendif] = ACTIONS(1394), - [anon_sym_DOLLARswitch] = ACTIONS(1394), - [anon_sym_DOLLARfor] = ACTIONS(1394), - [anon_sym_DOLLARforeach] = ACTIONS(1394), - [anon_sym_DOLLARalignof] = ACTIONS(1394), - [anon_sym_DOLLARextnameof] = ACTIONS(1394), - [anon_sym_DOLLARnameof] = ACTIONS(1394), - [anon_sym_DOLLARoffsetof] = ACTIONS(1394), - [anon_sym_DOLLARqnameof] = ACTIONS(1394), - [anon_sym_DOLLARvaconst] = ACTIONS(1394), - [anon_sym_DOLLARvaarg] = ACTIONS(1394), - [anon_sym_DOLLARvaref] = ACTIONS(1394), - [anon_sym_DOLLARvaexpr] = ACTIONS(1394), - [anon_sym_true] = ACTIONS(1394), - [anon_sym_false] = ACTIONS(1394), - [anon_sym_null] = ACTIONS(1394), - [anon_sym_DOLLARvacount] = ACTIONS(1394), - [anon_sym_DOLLARappend] = ACTIONS(1394), - [anon_sym_DOLLARconcat] = ACTIONS(1394), - [anon_sym_DOLLAReval] = ACTIONS(1394), - [anon_sym_DOLLARis_const] = ACTIONS(1394), - [anon_sym_DOLLARsizeof] = ACTIONS(1394), - [anon_sym_DOLLARstringify] = ACTIONS(1394), - [anon_sym_DOLLARand] = ACTIONS(1394), - [anon_sym_DOLLARdefined] = ACTIONS(1394), - [anon_sym_DOLLARembed] = ACTIONS(1394), - [anon_sym_DOLLARor] = ACTIONS(1394), - [anon_sym_DOLLARfeature] = ACTIONS(1394), - [anon_sym_DOLLARassignable] = ACTIONS(1394), - [anon_sym_BANG] = ACTIONS(1396), - [anon_sym_TILDE] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1396), - [anon_sym_DASH_DASH] = ACTIONS(1396), - [anon_sym_typeid] = ACTIONS(1394), - [anon_sym_LBRACE_PIPE] = ACTIONS(1396), - [anon_sym_void] = ACTIONS(1394), - [anon_sym_bool] = ACTIONS(1394), - [anon_sym_char] = ACTIONS(1394), - [anon_sym_ichar] = ACTIONS(1394), - [anon_sym_short] = ACTIONS(1394), - [anon_sym_ushort] = ACTIONS(1394), - [anon_sym_uint] = ACTIONS(1394), - [anon_sym_long] = ACTIONS(1394), - [anon_sym_ulong] = ACTIONS(1394), - [anon_sym_int128] = ACTIONS(1394), - [anon_sym_uint128] = ACTIONS(1394), - [anon_sym_float] = ACTIONS(1394), - [anon_sym_double] = ACTIONS(1394), - [anon_sym_float16] = ACTIONS(1394), - [anon_sym_bfloat16] = ACTIONS(1394), - [anon_sym_float128] = ACTIONS(1394), - [anon_sym_iptr] = ACTIONS(1394), - [anon_sym_uptr] = ACTIONS(1394), - [anon_sym_isz] = ACTIONS(1394), - [anon_sym_usz] = ACTIONS(1394), - [anon_sym_anyfault] = ACTIONS(1394), - [anon_sym_any] = ACTIONS(1394), - [anon_sym_DOLLARtypeof] = ACTIONS(1394), - [anon_sym_DOLLARtypefrom] = ACTIONS(1394), - [anon_sym_DOLLARvatype] = ACTIONS(1394), - [anon_sym_DOLLARevaltype] = ACTIONS(1394), - [sym_real_literal] = ACTIONS(1396), + [sym_ident] = ACTIONS(1367), + [sym_integer_literal] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1369), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_BQUOTE] = ACTIONS(1369), + [sym_bytes_literal] = ACTIONS(1369), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1367), + [sym_at_ident] = ACTIONS(1369), + [sym_hash_ident] = ACTIONS(1369), + [sym_type_ident] = ACTIONS(1369), + [sym_ct_type_ident] = ACTIONS(1369), + [sym_const_ident] = ACTIONS(1367), + [sym_builtin] = ACTIONS(1369), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(1367), + [anon_sym_static] = ACTIONS(1367), + [anon_sym_tlocal] = ACTIONS(1367), + [anon_sym_SEMI] = ACTIONS(1369), + [anon_sym_fn] = ACTIONS(1367), + [anon_sym_LBRACE] = ACTIONS(1367), + [anon_sym_const] = ACTIONS(1367), + [anon_sym_var] = ACTIONS(1367), + [anon_sym_return] = ACTIONS(1367), + [anon_sym_continue] = ACTIONS(1367), + [anon_sym_break] = ACTIONS(1367), + [anon_sym_defer] = ACTIONS(1367), + [anon_sym_assert] = ACTIONS(1367), + [anon_sym_nextcase] = ACTIONS(1367), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_AMP_AMP] = ACTIONS(1369), + [anon_sym_if] = ACTIONS(1367), + [anon_sym_for] = ACTIONS(1367), + [anon_sym_foreach] = ACTIONS(1367), + [anon_sym_foreach_r] = ACTIONS(1367), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_do] = ACTIONS(1367), + [anon_sym_int] = ACTIONS(1367), + [anon_sym_PLUS] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_asm] = ACTIONS(1367), + [anon_sym_DOLLARassert] = ACTIONS(1367), + [anon_sym_DOLLARerror] = ACTIONS(1367), + [anon_sym_DOLLARecho] = ACTIONS(1367), + [anon_sym_DOLLARif] = ACTIONS(1367), + [anon_sym_DOLLARendif] = ACTIONS(1367), + [anon_sym_DOLLARswitch] = ACTIONS(1367), + [anon_sym_DOLLARfor] = ACTIONS(1367), + [anon_sym_DOLLARforeach] = ACTIONS(1367), + [anon_sym_DOLLARalignof] = ACTIONS(1367), + [anon_sym_DOLLARextnameof] = ACTIONS(1367), + [anon_sym_DOLLARnameof] = ACTIONS(1367), + [anon_sym_DOLLARoffsetof] = ACTIONS(1367), + [anon_sym_DOLLARqnameof] = ACTIONS(1367), + [anon_sym_DOLLARvaconst] = ACTIONS(1367), + [anon_sym_DOLLARvaarg] = ACTIONS(1367), + [anon_sym_DOLLARvaref] = ACTIONS(1367), + [anon_sym_DOLLARvaexpr] = ACTIONS(1367), + [anon_sym_true] = ACTIONS(1367), + [anon_sym_false] = ACTIONS(1367), + [anon_sym_null] = ACTIONS(1367), + [anon_sym_DOLLARvacount] = ACTIONS(1367), + [anon_sym_DOLLARappend] = ACTIONS(1367), + [anon_sym_DOLLARconcat] = ACTIONS(1367), + [anon_sym_DOLLAReval] = ACTIONS(1367), + [anon_sym_DOLLARis_const] = ACTIONS(1367), + [anon_sym_DOLLARsizeof] = ACTIONS(1367), + [anon_sym_DOLLARstringify] = ACTIONS(1367), + [anon_sym_DOLLARand] = ACTIONS(1367), + [anon_sym_DOLLARdefined] = ACTIONS(1367), + [anon_sym_DOLLARembed] = ACTIONS(1367), + [anon_sym_DOLLARor] = ACTIONS(1367), + [anon_sym_DOLLARfeature] = ACTIONS(1367), + [anon_sym_DOLLARassignable] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(1369), + [anon_sym_PLUS_PLUS] = ACTIONS(1369), + [anon_sym_DASH_DASH] = ACTIONS(1369), + [anon_sym_typeid] = ACTIONS(1367), + [anon_sym_LBRACE_PIPE] = ACTIONS(1369), + [anon_sym_void] = ACTIONS(1367), + [anon_sym_bool] = ACTIONS(1367), + [anon_sym_char] = ACTIONS(1367), + [anon_sym_ichar] = ACTIONS(1367), + [anon_sym_short] = ACTIONS(1367), + [anon_sym_ushort] = ACTIONS(1367), + [anon_sym_uint] = ACTIONS(1367), + [anon_sym_long] = ACTIONS(1367), + [anon_sym_ulong] = ACTIONS(1367), + [anon_sym_int128] = ACTIONS(1367), + [anon_sym_uint128] = ACTIONS(1367), + [anon_sym_float] = ACTIONS(1367), + [anon_sym_double] = ACTIONS(1367), + [anon_sym_float16] = ACTIONS(1367), + [anon_sym_bfloat16] = ACTIONS(1367), + [anon_sym_float128] = ACTIONS(1367), + [anon_sym_iptr] = ACTIONS(1367), + [anon_sym_uptr] = ACTIONS(1367), + [anon_sym_isz] = ACTIONS(1367), + [anon_sym_usz] = ACTIONS(1367), + [anon_sym_anyfault] = ACTIONS(1367), + [anon_sym_any] = ACTIONS(1367), + [anon_sym_DOLLARtypeof] = ACTIONS(1367), + [anon_sym_DOLLARtypefrom] = ACTIONS(1367), + [anon_sym_DOLLARvatype] = ACTIONS(1367), + [anon_sym_DOLLARevaltype] = ACTIONS(1367), + [sym_real_literal] = ACTIONS(1369), }, [764] = { [sym_line_comment] = STATE(764), [sym_doc_comment] = STATE(764), [sym_block_comment] = STATE(764), - [sym_ident] = ACTIONS(1398), - [sym_integer_literal] = ACTIONS(1400), - [anon_sym_SQUOTE] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [anon_sym_BQUOTE] = ACTIONS(1400), - [sym_bytes_literal] = ACTIONS(1400), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1398), - [sym_at_ident] = ACTIONS(1400), - [sym_hash_ident] = ACTIONS(1400), - [sym_type_ident] = ACTIONS(1400), - [sym_ct_type_ident] = ACTIONS(1400), - [sym_const_ident] = ACTIONS(1398), - [sym_builtin] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1400), - [anon_sym_AMP] = ACTIONS(1398), - [anon_sym_static] = ACTIONS(1398), - [anon_sym_tlocal] = ACTIONS(1398), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym_fn] = ACTIONS(1398), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_const] = ACTIONS(1398), - [anon_sym_var] = ACTIONS(1398), - [anon_sym_return] = ACTIONS(1398), - [anon_sym_continue] = ACTIONS(1398), - [anon_sym_break] = ACTIONS(1398), - [anon_sym_defer] = ACTIONS(1398), - [anon_sym_assert] = ACTIONS(1398), - [anon_sym_nextcase] = ACTIONS(1398), - [anon_sym_switch] = ACTIONS(1398), - [anon_sym_AMP_AMP] = ACTIONS(1400), - [anon_sym_if] = ACTIONS(1398), - [anon_sym_for] = ACTIONS(1398), - [anon_sym_foreach] = ACTIONS(1398), - [anon_sym_foreach_r] = ACTIONS(1398), - [anon_sym_while] = ACTIONS(1398), - [anon_sym_do] = ACTIONS(1398), - [anon_sym_int] = ACTIONS(1398), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_asm] = ACTIONS(1398), - [anon_sym_DOLLARassert] = ACTIONS(1398), - [anon_sym_DOLLARerror] = ACTIONS(1398), - [anon_sym_DOLLARecho] = ACTIONS(1398), - [anon_sym_DOLLARif] = ACTIONS(1398), - [anon_sym_DOLLARendif] = ACTIONS(1398), - [anon_sym_DOLLARswitch] = ACTIONS(1398), - [anon_sym_DOLLARfor] = ACTIONS(1398), - [anon_sym_DOLLARforeach] = ACTIONS(1398), - [anon_sym_DOLLARalignof] = ACTIONS(1398), - [anon_sym_DOLLARextnameof] = ACTIONS(1398), - [anon_sym_DOLLARnameof] = ACTIONS(1398), - [anon_sym_DOLLARoffsetof] = ACTIONS(1398), - [anon_sym_DOLLARqnameof] = ACTIONS(1398), - [anon_sym_DOLLARvaconst] = ACTIONS(1398), - [anon_sym_DOLLARvaarg] = ACTIONS(1398), - [anon_sym_DOLLARvaref] = ACTIONS(1398), - [anon_sym_DOLLARvaexpr] = ACTIONS(1398), - [anon_sym_true] = ACTIONS(1398), - [anon_sym_false] = ACTIONS(1398), - [anon_sym_null] = ACTIONS(1398), - [anon_sym_DOLLARvacount] = ACTIONS(1398), - [anon_sym_DOLLARappend] = ACTIONS(1398), - [anon_sym_DOLLARconcat] = ACTIONS(1398), - [anon_sym_DOLLAReval] = ACTIONS(1398), - [anon_sym_DOLLARis_const] = ACTIONS(1398), - [anon_sym_DOLLARsizeof] = ACTIONS(1398), - [anon_sym_DOLLARstringify] = ACTIONS(1398), - [anon_sym_DOLLARand] = ACTIONS(1398), - [anon_sym_DOLLARdefined] = ACTIONS(1398), - [anon_sym_DOLLARembed] = ACTIONS(1398), - [anon_sym_DOLLARor] = ACTIONS(1398), - [anon_sym_DOLLARfeature] = ACTIONS(1398), - [anon_sym_DOLLARassignable] = ACTIONS(1398), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [anon_sym_typeid] = ACTIONS(1398), - [anon_sym_LBRACE_PIPE] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1398), - [anon_sym_bool] = ACTIONS(1398), - [anon_sym_char] = ACTIONS(1398), - [anon_sym_ichar] = ACTIONS(1398), - [anon_sym_short] = ACTIONS(1398), - [anon_sym_ushort] = ACTIONS(1398), - [anon_sym_uint] = ACTIONS(1398), - [anon_sym_long] = ACTIONS(1398), - [anon_sym_ulong] = ACTIONS(1398), - [anon_sym_int128] = ACTIONS(1398), - [anon_sym_uint128] = ACTIONS(1398), - [anon_sym_float] = ACTIONS(1398), - [anon_sym_double] = ACTIONS(1398), - [anon_sym_float16] = ACTIONS(1398), - [anon_sym_bfloat16] = ACTIONS(1398), - [anon_sym_float128] = ACTIONS(1398), - [anon_sym_iptr] = ACTIONS(1398), - [anon_sym_uptr] = ACTIONS(1398), - [anon_sym_isz] = ACTIONS(1398), - [anon_sym_usz] = ACTIONS(1398), - [anon_sym_anyfault] = ACTIONS(1398), - [anon_sym_any] = ACTIONS(1398), - [anon_sym_DOLLARtypeof] = ACTIONS(1398), - [anon_sym_DOLLARtypefrom] = ACTIONS(1398), - [anon_sym_DOLLARvatype] = ACTIONS(1398), - [anon_sym_DOLLARevaltype] = ACTIONS(1398), - [sym_real_literal] = ACTIONS(1400), + [sym_ident] = ACTIONS(1375), + [sym_integer_literal] = ACTIONS(1377), + [anon_sym_SQUOTE] = ACTIONS(1377), + [anon_sym_DQUOTE] = ACTIONS(1377), + [anon_sym_BQUOTE] = ACTIONS(1377), + [sym_bytes_literal] = ACTIONS(1377), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1375), + [sym_at_ident] = ACTIONS(1377), + [sym_hash_ident] = ACTIONS(1377), + [sym_type_ident] = ACTIONS(1377), + [sym_ct_type_ident] = ACTIONS(1377), + [sym_const_ident] = ACTIONS(1375), + [sym_builtin] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_static] = ACTIONS(1375), + [anon_sym_tlocal] = ACTIONS(1375), + [anon_sym_SEMI] = ACTIONS(1377), + [anon_sym_fn] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1375), + [anon_sym_const] = ACTIONS(1375), + [anon_sym_var] = ACTIONS(1375), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_continue] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1375), + [anon_sym_defer] = ACTIONS(1375), + [anon_sym_assert] = ACTIONS(1375), + [anon_sym_nextcase] = ACTIONS(1375), + [anon_sym_switch] = ACTIONS(1375), + [anon_sym_AMP_AMP] = ACTIONS(1377), + [anon_sym_if] = ACTIONS(1375), + [anon_sym_for] = ACTIONS(1375), + [anon_sym_foreach] = ACTIONS(1375), + [anon_sym_foreach_r] = ACTIONS(1375), + [anon_sym_while] = ACTIONS(1375), + [anon_sym_do] = ACTIONS(1375), + [anon_sym_int] = ACTIONS(1375), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_asm] = ACTIONS(1375), + [anon_sym_DOLLARassert] = ACTIONS(1375), + [anon_sym_DOLLARerror] = ACTIONS(1375), + [anon_sym_DOLLARecho] = ACTIONS(1375), + [anon_sym_DOLLARif] = ACTIONS(1375), + [anon_sym_DOLLARendif] = ACTIONS(1375), + [anon_sym_DOLLARswitch] = ACTIONS(1375), + [anon_sym_DOLLARfor] = ACTIONS(1375), + [anon_sym_DOLLARforeach] = ACTIONS(1375), + [anon_sym_DOLLARalignof] = ACTIONS(1375), + [anon_sym_DOLLARextnameof] = ACTIONS(1375), + [anon_sym_DOLLARnameof] = ACTIONS(1375), + [anon_sym_DOLLARoffsetof] = ACTIONS(1375), + [anon_sym_DOLLARqnameof] = ACTIONS(1375), + [anon_sym_DOLLARvaconst] = ACTIONS(1375), + [anon_sym_DOLLARvaarg] = ACTIONS(1375), + [anon_sym_DOLLARvaref] = ACTIONS(1375), + [anon_sym_DOLLARvaexpr] = ACTIONS(1375), + [anon_sym_true] = ACTIONS(1375), + [anon_sym_false] = ACTIONS(1375), + [anon_sym_null] = ACTIONS(1375), + [anon_sym_DOLLARvacount] = ACTIONS(1375), + [anon_sym_DOLLARappend] = ACTIONS(1375), + [anon_sym_DOLLARconcat] = ACTIONS(1375), + [anon_sym_DOLLAReval] = ACTIONS(1375), + [anon_sym_DOLLARis_const] = ACTIONS(1375), + [anon_sym_DOLLARsizeof] = ACTIONS(1375), + [anon_sym_DOLLARstringify] = ACTIONS(1375), + [anon_sym_DOLLARand] = ACTIONS(1375), + [anon_sym_DOLLARdefined] = ACTIONS(1375), + [anon_sym_DOLLARembed] = ACTIONS(1375), + [anon_sym_DOLLARor] = ACTIONS(1375), + [anon_sym_DOLLARfeature] = ACTIONS(1375), + [anon_sym_DOLLARassignable] = ACTIONS(1375), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_TILDE] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_typeid] = ACTIONS(1375), + [anon_sym_LBRACE_PIPE] = ACTIONS(1377), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_bool] = ACTIONS(1375), + [anon_sym_char] = ACTIONS(1375), + [anon_sym_ichar] = ACTIONS(1375), + [anon_sym_short] = ACTIONS(1375), + [anon_sym_ushort] = ACTIONS(1375), + [anon_sym_uint] = ACTIONS(1375), + [anon_sym_long] = ACTIONS(1375), + [anon_sym_ulong] = ACTIONS(1375), + [anon_sym_int128] = ACTIONS(1375), + [anon_sym_uint128] = ACTIONS(1375), + [anon_sym_float] = ACTIONS(1375), + [anon_sym_double] = ACTIONS(1375), + [anon_sym_float16] = ACTIONS(1375), + [anon_sym_bfloat16] = ACTIONS(1375), + [anon_sym_float128] = ACTIONS(1375), + [anon_sym_iptr] = ACTIONS(1375), + [anon_sym_uptr] = ACTIONS(1375), + [anon_sym_isz] = ACTIONS(1375), + [anon_sym_usz] = ACTIONS(1375), + [anon_sym_anyfault] = ACTIONS(1375), + [anon_sym_any] = ACTIONS(1375), + [anon_sym_DOLLARtypeof] = ACTIONS(1375), + [anon_sym_DOLLARtypefrom] = ACTIONS(1375), + [anon_sym_DOLLARvatype] = ACTIONS(1375), + [anon_sym_DOLLARevaltype] = ACTIONS(1375), + [sym_real_literal] = ACTIONS(1377), }, [765] = { [sym_line_comment] = STATE(765), [sym_doc_comment] = STATE(765), [sym_block_comment] = STATE(765), - [sym_ident] = ACTIONS(1664), - [sym_integer_literal] = ACTIONS(1666), - [anon_sym_SQUOTE] = ACTIONS(1666), - [anon_sym_DQUOTE] = ACTIONS(1666), - [anon_sym_BQUOTE] = ACTIONS(1666), - [sym_bytes_literal] = ACTIONS(1666), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1664), - [sym_at_ident] = ACTIONS(1666), - [sym_hash_ident] = ACTIONS(1666), - [sym_type_ident] = ACTIONS(1666), - [sym_ct_type_ident] = ACTIONS(1666), - [sym_const_ident] = ACTIONS(1664), - [sym_builtin] = ACTIONS(1666), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_static] = ACTIONS(1664), - [anon_sym_tlocal] = ACTIONS(1664), - [anon_sym_SEMI] = ACTIONS(1666), - [anon_sym_fn] = ACTIONS(1664), - [anon_sym_LBRACE] = ACTIONS(1664), - [anon_sym_const] = ACTIONS(1664), - [anon_sym_var] = ACTIONS(1664), - [anon_sym_return] = ACTIONS(1664), - [anon_sym_continue] = ACTIONS(1664), - [anon_sym_break] = ACTIONS(1664), - [anon_sym_defer] = ACTIONS(1664), - [anon_sym_assert] = ACTIONS(1664), - [anon_sym_nextcase] = ACTIONS(1664), - [anon_sym_switch] = ACTIONS(1664), - [anon_sym_AMP_AMP] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_for] = ACTIONS(1664), - [anon_sym_foreach] = ACTIONS(1664), - [anon_sym_foreach_r] = ACTIONS(1664), - [anon_sym_while] = ACTIONS(1664), - [anon_sym_do] = ACTIONS(1664), - [anon_sym_int] = ACTIONS(1664), - [anon_sym_PLUS] = ACTIONS(1664), - [anon_sym_DASH] = ACTIONS(1664), - [anon_sym_STAR] = ACTIONS(1666), - [anon_sym_asm] = ACTIONS(1664), - [anon_sym_DOLLARassert] = ACTIONS(1664), - [anon_sym_DOLLARerror] = ACTIONS(1664), - [anon_sym_DOLLARecho] = ACTIONS(1664), - [anon_sym_DOLLARif] = ACTIONS(1664), - [anon_sym_DOLLARswitch] = ACTIONS(1664), - [anon_sym_DOLLARfor] = ACTIONS(1664), - [anon_sym_DOLLARendfor] = ACTIONS(1664), - [anon_sym_DOLLARforeach] = ACTIONS(1664), - [anon_sym_DOLLARalignof] = ACTIONS(1664), - [anon_sym_DOLLARextnameof] = ACTIONS(1664), - [anon_sym_DOLLARnameof] = ACTIONS(1664), - [anon_sym_DOLLARoffsetof] = ACTIONS(1664), - [anon_sym_DOLLARqnameof] = ACTIONS(1664), - [anon_sym_DOLLARvaconst] = ACTIONS(1664), - [anon_sym_DOLLARvaarg] = ACTIONS(1664), - [anon_sym_DOLLARvaref] = ACTIONS(1664), - [anon_sym_DOLLARvaexpr] = ACTIONS(1664), - [anon_sym_true] = ACTIONS(1664), - [anon_sym_false] = ACTIONS(1664), - [anon_sym_null] = ACTIONS(1664), - [anon_sym_DOLLARvacount] = ACTIONS(1664), - [anon_sym_DOLLARappend] = ACTIONS(1664), - [anon_sym_DOLLARconcat] = ACTIONS(1664), - [anon_sym_DOLLAReval] = ACTIONS(1664), - [anon_sym_DOLLARis_const] = ACTIONS(1664), - [anon_sym_DOLLARsizeof] = ACTIONS(1664), - [anon_sym_DOLLARstringify] = ACTIONS(1664), - [anon_sym_DOLLARand] = ACTIONS(1664), - [anon_sym_DOLLARdefined] = ACTIONS(1664), - [anon_sym_DOLLARembed] = ACTIONS(1664), - [anon_sym_DOLLARor] = ACTIONS(1664), - [anon_sym_DOLLARfeature] = ACTIONS(1664), - [anon_sym_DOLLARassignable] = ACTIONS(1664), - [anon_sym_BANG] = ACTIONS(1666), - [anon_sym_TILDE] = ACTIONS(1666), - [anon_sym_PLUS_PLUS] = ACTIONS(1666), - [anon_sym_DASH_DASH] = ACTIONS(1666), - [anon_sym_typeid] = ACTIONS(1664), - [anon_sym_LBRACE_PIPE] = ACTIONS(1666), - [anon_sym_void] = ACTIONS(1664), - [anon_sym_bool] = ACTIONS(1664), - [anon_sym_char] = ACTIONS(1664), - [anon_sym_ichar] = ACTIONS(1664), - [anon_sym_short] = ACTIONS(1664), - [anon_sym_ushort] = ACTIONS(1664), - [anon_sym_uint] = ACTIONS(1664), - [anon_sym_long] = ACTIONS(1664), - [anon_sym_ulong] = ACTIONS(1664), - [anon_sym_int128] = ACTIONS(1664), - [anon_sym_uint128] = ACTIONS(1664), - [anon_sym_float] = ACTIONS(1664), - [anon_sym_double] = ACTIONS(1664), - [anon_sym_float16] = ACTIONS(1664), - [anon_sym_bfloat16] = ACTIONS(1664), - [anon_sym_float128] = ACTIONS(1664), - [anon_sym_iptr] = ACTIONS(1664), - [anon_sym_uptr] = ACTIONS(1664), - [anon_sym_isz] = ACTIONS(1664), - [anon_sym_usz] = ACTIONS(1664), - [anon_sym_anyfault] = ACTIONS(1664), - [anon_sym_any] = ACTIONS(1664), - [anon_sym_DOLLARtypeof] = ACTIONS(1664), - [anon_sym_DOLLARtypefrom] = ACTIONS(1664), - [anon_sym_DOLLARvatype] = ACTIONS(1664), - [anon_sym_DOLLARevaltype] = ACTIONS(1664), - [sym_real_literal] = ACTIONS(1666), + [sym_ident] = ACTIONS(1379), + [sym_integer_literal] = ACTIONS(1381), + [anon_sym_SQUOTE] = ACTIONS(1381), + [anon_sym_DQUOTE] = ACTIONS(1381), + [anon_sym_BQUOTE] = ACTIONS(1381), + [sym_bytes_literal] = ACTIONS(1381), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1379), + [sym_at_ident] = ACTIONS(1381), + [sym_hash_ident] = ACTIONS(1381), + [sym_type_ident] = ACTIONS(1381), + [sym_ct_type_ident] = ACTIONS(1381), + [sym_const_ident] = ACTIONS(1379), + [sym_builtin] = ACTIONS(1381), + [anon_sym_LPAREN] = ACTIONS(1381), + [anon_sym_AMP] = ACTIONS(1379), + [anon_sym_static] = ACTIONS(1379), + [anon_sym_tlocal] = ACTIONS(1379), + [anon_sym_SEMI] = ACTIONS(1381), + [anon_sym_fn] = ACTIONS(1379), + [anon_sym_LBRACE] = ACTIONS(1379), + [anon_sym_const] = ACTIONS(1379), + [anon_sym_var] = ACTIONS(1379), + [anon_sym_return] = ACTIONS(1379), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_break] = ACTIONS(1379), + [anon_sym_defer] = ACTIONS(1379), + [anon_sym_assert] = ACTIONS(1379), + [anon_sym_nextcase] = ACTIONS(1379), + [anon_sym_switch] = ACTIONS(1379), + [anon_sym_AMP_AMP] = ACTIONS(1381), + [anon_sym_if] = ACTIONS(1379), + [anon_sym_for] = ACTIONS(1379), + [anon_sym_foreach] = ACTIONS(1379), + [anon_sym_foreach_r] = ACTIONS(1379), + [anon_sym_while] = ACTIONS(1379), + [anon_sym_do] = ACTIONS(1379), + [anon_sym_int] = ACTIONS(1379), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(1381), + [anon_sym_asm] = ACTIONS(1379), + [anon_sym_DOLLARassert] = ACTIONS(1379), + [anon_sym_DOLLARerror] = ACTIONS(1379), + [anon_sym_DOLLARecho] = ACTIONS(1379), + [anon_sym_DOLLARif] = ACTIONS(1379), + [anon_sym_DOLLARendif] = ACTIONS(1379), + [anon_sym_DOLLARswitch] = ACTIONS(1379), + [anon_sym_DOLLARfor] = ACTIONS(1379), + [anon_sym_DOLLARforeach] = ACTIONS(1379), + [anon_sym_DOLLARalignof] = ACTIONS(1379), + [anon_sym_DOLLARextnameof] = ACTIONS(1379), + [anon_sym_DOLLARnameof] = ACTIONS(1379), + [anon_sym_DOLLARoffsetof] = ACTIONS(1379), + [anon_sym_DOLLARqnameof] = ACTIONS(1379), + [anon_sym_DOLLARvaconst] = ACTIONS(1379), + [anon_sym_DOLLARvaarg] = ACTIONS(1379), + [anon_sym_DOLLARvaref] = ACTIONS(1379), + [anon_sym_DOLLARvaexpr] = ACTIONS(1379), + [anon_sym_true] = ACTIONS(1379), + [anon_sym_false] = ACTIONS(1379), + [anon_sym_null] = ACTIONS(1379), + [anon_sym_DOLLARvacount] = ACTIONS(1379), + [anon_sym_DOLLARappend] = ACTIONS(1379), + [anon_sym_DOLLARconcat] = ACTIONS(1379), + [anon_sym_DOLLAReval] = ACTIONS(1379), + [anon_sym_DOLLARis_const] = ACTIONS(1379), + [anon_sym_DOLLARsizeof] = ACTIONS(1379), + [anon_sym_DOLLARstringify] = ACTIONS(1379), + [anon_sym_DOLLARand] = ACTIONS(1379), + [anon_sym_DOLLARdefined] = ACTIONS(1379), + [anon_sym_DOLLARembed] = ACTIONS(1379), + [anon_sym_DOLLARor] = ACTIONS(1379), + [anon_sym_DOLLARfeature] = ACTIONS(1379), + [anon_sym_DOLLARassignable] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_PLUS_PLUS] = ACTIONS(1381), + [anon_sym_DASH_DASH] = ACTIONS(1381), + [anon_sym_typeid] = ACTIONS(1379), + [anon_sym_LBRACE_PIPE] = ACTIONS(1381), + [anon_sym_void] = ACTIONS(1379), + [anon_sym_bool] = ACTIONS(1379), + [anon_sym_char] = ACTIONS(1379), + [anon_sym_ichar] = ACTIONS(1379), + [anon_sym_short] = ACTIONS(1379), + [anon_sym_ushort] = ACTIONS(1379), + [anon_sym_uint] = ACTIONS(1379), + [anon_sym_long] = ACTIONS(1379), + [anon_sym_ulong] = ACTIONS(1379), + [anon_sym_int128] = ACTIONS(1379), + [anon_sym_uint128] = ACTIONS(1379), + [anon_sym_float] = ACTIONS(1379), + [anon_sym_double] = ACTIONS(1379), + [anon_sym_float16] = ACTIONS(1379), + [anon_sym_bfloat16] = ACTIONS(1379), + [anon_sym_float128] = ACTIONS(1379), + [anon_sym_iptr] = ACTIONS(1379), + [anon_sym_uptr] = ACTIONS(1379), + [anon_sym_isz] = ACTIONS(1379), + [anon_sym_usz] = ACTIONS(1379), + [anon_sym_anyfault] = ACTIONS(1379), + [anon_sym_any] = ACTIONS(1379), + [anon_sym_DOLLARtypeof] = ACTIONS(1379), + [anon_sym_DOLLARtypefrom] = ACTIONS(1379), + [anon_sym_DOLLARvatype] = ACTIONS(1379), + [anon_sym_DOLLARevaltype] = ACTIONS(1379), + [sym_real_literal] = ACTIONS(1381), }, [766] = { [sym_line_comment] = STATE(766), [sym_doc_comment] = STATE(766), [sym_block_comment] = STATE(766), - [sym_ident] = ACTIONS(1660), - [sym_integer_literal] = ACTIONS(1662), - [anon_sym_SQUOTE] = ACTIONS(1662), - [anon_sym_DQUOTE] = ACTIONS(1662), - [anon_sym_BQUOTE] = ACTIONS(1662), - [sym_bytes_literal] = ACTIONS(1662), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1660), - [sym_at_ident] = ACTIONS(1662), - [sym_hash_ident] = ACTIONS(1662), - [sym_type_ident] = ACTIONS(1662), - [sym_ct_type_ident] = ACTIONS(1662), - [sym_const_ident] = ACTIONS(1660), - [sym_builtin] = ACTIONS(1662), - [anon_sym_LPAREN] = ACTIONS(1662), - [anon_sym_AMP] = ACTIONS(1660), - [anon_sym_static] = ACTIONS(1660), - [anon_sym_tlocal] = ACTIONS(1660), - [anon_sym_SEMI] = ACTIONS(1662), - [anon_sym_fn] = ACTIONS(1660), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_const] = ACTIONS(1660), - [anon_sym_var] = ACTIONS(1660), - [anon_sym_return] = ACTIONS(1660), - [anon_sym_continue] = ACTIONS(1660), - [anon_sym_break] = ACTIONS(1660), - [anon_sym_defer] = ACTIONS(1660), - [anon_sym_assert] = ACTIONS(1660), - [anon_sym_nextcase] = ACTIONS(1660), - [anon_sym_switch] = ACTIONS(1660), - [anon_sym_AMP_AMP] = ACTIONS(1662), - [anon_sym_if] = ACTIONS(1660), - [anon_sym_for] = ACTIONS(1660), - [anon_sym_foreach] = ACTIONS(1660), - [anon_sym_foreach_r] = ACTIONS(1660), - [anon_sym_while] = ACTIONS(1660), - [anon_sym_do] = ACTIONS(1660), - [anon_sym_int] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1660), - [anon_sym_DASH] = ACTIONS(1660), - [anon_sym_STAR] = ACTIONS(1662), - [anon_sym_asm] = ACTIONS(1660), - [anon_sym_DOLLARassert] = ACTIONS(1660), - [anon_sym_DOLLARerror] = ACTIONS(1660), - [anon_sym_DOLLARecho] = ACTIONS(1660), - [anon_sym_DOLLARif] = ACTIONS(1660), - [anon_sym_DOLLARswitch] = ACTIONS(1660), - [anon_sym_DOLLARfor] = ACTIONS(1660), - [anon_sym_DOLLARendfor] = ACTIONS(1660), - [anon_sym_DOLLARforeach] = ACTIONS(1660), - [anon_sym_DOLLARalignof] = ACTIONS(1660), - [anon_sym_DOLLARextnameof] = ACTIONS(1660), - [anon_sym_DOLLARnameof] = ACTIONS(1660), - [anon_sym_DOLLARoffsetof] = ACTIONS(1660), - [anon_sym_DOLLARqnameof] = ACTIONS(1660), - [anon_sym_DOLLARvaconst] = ACTIONS(1660), - [anon_sym_DOLLARvaarg] = ACTIONS(1660), - [anon_sym_DOLLARvaref] = ACTIONS(1660), - [anon_sym_DOLLARvaexpr] = ACTIONS(1660), - [anon_sym_true] = ACTIONS(1660), - [anon_sym_false] = ACTIONS(1660), - [anon_sym_null] = ACTIONS(1660), - [anon_sym_DOLLARvacount] = ACTIONS(1660), - [anon_sym_DOLLARappend] = ACTIONS(1660), - [anon_sym_DOLLARconcat] = ACTIONS(1660), - [anon_sym_DOLLAReval] = ACTIONS(1660), - [anon_sym_DOLLARis_const] = ACTIONS(1660), - [anon_sym_DOLLARsizeof] = ACTIONS(1660), - [anon_sym_DOLLARstringify] = ACTIONS(1660), - [anon_sym_DOLLARand] = ACTIONS(1660), - [anon_sym_DOLLARdefined] = ACTIONS(1660), - [anon_sym_DOLLARembed] = ACTIONS(1660), - [anon_sym_DOLLARor] = ACTIONS(1660), - [anon_sym_DOLLARfeature] = ACTIONS(1660), - [anon_sym_DOLLARassignable] = ACTIONS(1660), - [anon_sym_BANG] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1662), - [anon_sym_PLUS_PLUS] = ACTIONS(1662), - [anon_sym_DASH_DASH] = ACTIONS(1662), - [anon_sym_typeid] = ACTIONS(1660), - [anon_sym_LBRACE_PIPE] = ACTIONS(1662), - [anon_sym_void] = ACTIONS(1660), - [anon_sym_bool] = ACTIONS(1660), - [anon_sym_char] = ACTIONS(1660), - [anon_sym_ichar] = ACTIONS(1660), - [anon_sym_short] = ACTIONS(1660), - [anon_sym_ushort] = ACTIONS(1660), - [anon_sym_uint] = ACTIONS(1660), - [anon_sym_long] = ACTIONS(1660), - [anon_sym_ulong] = ACTIONS(1660), - [anon_sym_int128] = ACTIONS(1660), - [anon_sym_uint128] = ACTIONS(1660), - [anon_sym_float] = ACTIONS(1660), - [anon_sym_double] = ACTIONS(1660), - [anon_sym_float16] = ACTIONS(1660), - [anon_sym_bfloat16] = ACTIONS(1660), - [anon_sym_float128] = ACTIONS(1660), - [anon_sym_iptr] = ACTIONS(1660), - [anon_sym_uptr] = ACTIONS(1660), - [anon_sym_isz] = ACTIONS(1660), - [anon_sym_usz] = ACTIONS(1660), - [anon_sym_anyfault] = ACTIONS(1660), - [anon_sym_any] = ACTIONS(1660), - [anon_sym_DOLLARtypeof] = ACTIONS(1660), - [anon_sym_DOLLARtypefrom] = ACTIONS(1660), - [anon_sym_DOLLARvatype] = ACTIONS(1660), - [anon_sym_DOLLARevaltype] = ACTIONS(1660), - [sym_real_literal] = ACTIONS(1662), + [sym_ident] = ACTIONS(1383), + [sym_integer_literal] = ACTIONS(1385), + [anon_sym_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE] = ACTIONS(1385), + [anon_sym_BQUOTE] = ACTIONS(1385), + [sym_bytes_literal] = ACTIONS(1385), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1383), + [sym_at_ident] = ACTIONS(1385), + [sym_hash_ident] = ACTIONS(1385), + [sym_type_ident] = ACTIONS(1385), + [sym_ct_type_ident] = ACTIONS(1385), + [sym_const_ident] = ACTIONS(1383), + [sym_builtin] = ACTIONS(1385), + [anon_sym_LPAREN] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_static] = ACTIONS(1383), + [anon_sym_tlocal] = ACTIONS(1383), + [anon_sym_SEMI] = ACTIONS(1385), + [anon_sym_fn] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1383), + [anon_sym_const] = ACTIONS(1383), + [anon_sym_var] = ACTIONS(1383), + [anon_sym_return] = ACTIONS(1383), + [anon_sym_continue] = ACTIONS(1383), + [anon_sym_break] = ACTIONS(1383), + [anon_sym_defer] = ACTIONS(1383), + [anon_sym_assert] = ACTIONS(1383), + [anon_sym_nextcase] = ACTIONS(1383), + [anon_sym_switch] = ACTIONS(1383), + [anon_sym_AMP_AMP] = ACTIONS(1385), + [anon_sym_if] = ACTIONS(1383), + [anon_sym_for] = ACTIONS(1383), + [anon_sym_foreach] = ACTIONS(1383), + [anon_sym_foreach_r] = ACTIONS(1383), + [anon_sym_while] = ACTIONS(1383), + [anon_sym_do] = ACTIONS(1383), + [anon_sym_int] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1383), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_STAR] = ACTIONS(1385), + [anon_sym_asm] = ACTIONS(1383), + [anon_sym_DOLLARassert] = ACTIONS(1383), + [anon_sym_DOLLARerror] = ACTIONS(1383), + [anon_sym_DOLLARecho] = ACTIONS(1383), + [anon_sym_DOLLARif] = ACTIONS(1383), + [anon_sym_DOLLARendif] = ACTIONS(1383), + [anon_sym_DOLLARswitch] = ACTIONS(1383), + [anon_sym_DOLLARfor] = ACTIONS(1383), + [anon_sym_DOLLARforeach] = ACTIONS(1383), + [anon_sym_DOLLARalignof] = ACTIONS(1383), + [anon_sym_DOLLARextnameof] = ACTIONS(1383), + [anon_sym_DOLLARnameof] = ACTIONS(1383), + [anon_sym_DOLLARoffsetof] = ACTIONS(1383), + [anon_sym_DOLLARqnameof] = ACTIONS(1383), + [anon_sym_DOLLARvaconst] = ACTIONS(1383), + [anon_sym_DOLLARvaarg] = ACTIONS(1383), + [anon_sym_DOLLARvaref] = ACTIONS(1383), + [anon_sym_DOLLARvaexpr] = ACTIONS(1383), + [anon_sym_true] = ACTIONS(1383), + [anon_sym_false] = ACTIONS(1383), + [anon_sym_null] = ACTIONS(1383), + [anon_sym_DOLLARvacount] = ACTIONS(1383), + [anon_sym_DOLLARappend] = ACTIONS(1383), + [anon_sym_DOLLARconcat] = ACTIONS(1383), + [anon_sym_DOLLAReval] = ACTIONS(1383), + [anon_sym_DOLLARis_const] = ACTIONS(1383), + [anon_sym_DOLLARsizeof] = ACTIONS(1383), + [anon_sym_DOLLARstringify] = ACTIONS(1383), + [anon_sym_DOLLARand] = ACTIONS(1383), + [anon_sym_DOLLARdefined] = ACTIONS(1383), + [anon_sym_DOLLARembed] = ACTIONS(1383), + [anon_sym_DOLLARor] = ACTIONS(1383), + [anon_sym_DOLLARfeature] = ACTIONS(1383), + [anon_sym_DOLLARassignable] = ACTIONS(1383), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_TILDE] = ACTIONS(1385), + [anon_sym_PLUS_PLUS] = ACTIONS(1385), + [anon_sym_DASH_DASH] = ACTIONS(1385), + [anon_sym_typeid] = ACTIONS(1383), + [anon_sym_LBRACE_PIPE] = ACTIONS(1385), + [anon_sym_void] = ACTIONS(1383), + [anon_sym_bool] = ACTIONS(1383), + [anon_sym_char] = ACTIONS(1383), + [anon_sym_ichar] = ACTIONS(1383), + [anon_sym_short] = ACTIONS(1383), + [anon_sym_ushort] = ACTIONS(1383), + [anon_sym_uint] = ACTIONS(1383), + [anon_sym_long] = ACTIONS(1383), + [anon_sym_ulong] = ACTIONS(1383), + [anon_sym_int128] = ACTIONS(1383), + [anon_sym_uint128] = ACTIONS(1383), + [anon_sym_float] = ACTIONS(1383), + [anon_sym_double] = ACTIONS(1383), + [anon_sym_float16] = ACTIONS(1383), + [anon_sym_bfloat16] = ACTIONS(1383), + [anon_sym_float128] = ACTIONS(1383), + [anon_sym_iptr] = ACTIONS(1383), + [anon_sym_uptr] = ACTIONS(1383), + [anon_sym_isz] = ACTIONS(1383), + [anon_sym_usz] = ACTIONS(1383), + [anon_sym_anyfault] = ACTIONS(1383), + [anon_sym_any] = ACTIONS(1383), + [anon_sym_DOLLARtypeof] = ACTIONS(1383), + [anon_sym_DOLLARtypefrom] = ACTIONS(1383), + [anon_sym_DOLLARvatype] = ACTIONS(1383), + [anon_sym_DOLLARevaltype] = ACTIONS(1383), + [sym_real_literal] = ACTIONS(1385), }, [767] = { [sym_line_comment] = STATE(767), [sym_doc_comment] = STATE(767), [sym_block_comment] = STATE(767), - [sym_ident] = ACTIONS(1648), - [sym_integer_literal] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1650), - [anon_sym_BQUOTE] = ACTIONS(1650), - [sym_bytes_literal] = ACTIONS(1650), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1648), - [sym_at_ident] = ACTIONS(1650), - [sym_hash_ident] = ACTIONS(1650), - [sym_type_ident] = ACTIONS(1650), - [sym_ct_type_ident] = ACTIONS(1650), - [sym_const_ident] = ACTIONS(1648), - [sym_builtin] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_AMP] = ACTIONS(1648), - [anon_sym_static] = ACTIONS(1648), - [anon_sym_tlocal] = ACTIONS(1648), - [anon_sym_SEMI] = ACTIONS(1650), - [anon_sym_fn] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_const] = ACTIONS(1648), - [anon_sym_var] = ACTIONS(1648), - [anon_sym_return] = ACTIONS(1648), - [anon_sym_continue] = ACTIONS(1648), - [anon_sym_break] = ACTIONS(1648), - [anon_sym_defer] = ACTIONS(1648), - [anon_sym_assert] = ACTIONS(1648), - [anon_sym_nextcase] = ACTIONS(1648), - [anon_sym_switch] = ACTIONS(1648), - [anon_sym_AMP_AMP] = ACTIONS(1650), - [anon_sym_if] = ACTIONS(1648), - [anon_sym_for] = ACTIONS(1648), - [anon_sym_foreach] = ACTIONS(1648), - [anon_sym_foreach_r] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1648), - [anon_sym_do] = ACTIONS(1648), - [anon_sym_int] = ACTIONS(1648), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_STAR] = ACTIONS(1650), - [anon_sym_asm] = ACTIONS(1648), - [anon_sym_DOLLARassert] = ACTIONS(1648), - [anon_sym_DOLLARerror] = ACTIONS(1648), - [anon_sym_DOLLARecho] = ACTIONS(1648), - [anon_sym_DOLLARif] = ACTIONS(1648), - [anon_sym_DOLLARswitch] = ACTIONS(1648), - [anon_sym_DOLLARfor] = ACTIONS(1648), - [anon_sym_DOLLARendfor] = ACTIONS(1648), - [anon_sym_DOLLARforeach] = ACTIONS(1648), - [anon_sym_DOLLARalignof] = ACTIONS(1648), - [anon_sym_DOLLARextnameof] = ACTIONS(1648), - [anon_sym_DOLLARnameof] = ACTIONS(1648), - [anon_sym_DOLLARoffsetof] = ACTIONS(1648), - [anon_sym_DOLLARqnameof] = ACTIONS(1648), - [anon_sym_DOLLARvaconst] = ACTIONS(1648), - [anon_sym_DOLLARvaarg] = ACTIONS(1648), - [anon_sym_DOLLARvaref] = ACTIONS(1648), - [anon_sym_DOLLARvaexpr] = ACTIONS(1648), - [anon_sym_true] = ACTIONS(1648), - [anon_sym_false] = ACTIONS(1648), - [anon_sym_null] = ACTIONS(1648), - [anon_sym_DOLLARvacount] = ACTIONS(1648), - [anon_sym_DOLLARappend] = ACTIONS(1648), - [anon_sym_DOLLARconcat] = ACTIONS(1648), - [anon_sym_DOLLAReval] = ACTIONS(1648), - [anon_sym_DOLLARis_const] = ACTIONS(1648), - [anon_sym_DOLLARsizeof] = ACTIONS(1648), - [anon_sym_DOLLARstringify] = ACTIONS(1648), - [anon_sym_DOLLARand] = ACTIONS(1648), - [anon_sym_DOLLARdefined] = ACTIONS(1648), - [anon_sym_DOLLARembed] = ACTIONS(1648), - [anon_sym_DOLLARor] = ACTIONS(1648), - [anon_sym_DOLLARfeature] = ACTIONS(1648), - [anon_sym_DOLLARassignable] = ACTIONS(1648), - [anon_sym_BANG] = ACTIONS(1650), - [anon_sym_TILDE] = ACTIONS(1650), - [anon_sym_PLUS_PLUS] = ACTIONS(1650), - [anon_sym_DASH_DASH] = ACTIONS(1650), - [anon_sym_typeid] = ACTIONS(1648), - [anon_sym_LBRACE_PIPE] = ACTIONS(1650), - [anon_sym_void] = ACTIONS(1648), - [anon_sym_bool] = ACTIONS(1648), - [anon_sym_char] = ACTIONS(1648), - [anon_sym_ichar] = ACTIONS(1648), - [anon_sym_short] = ACTIONS(1648), - [anon_sym_ushort] = ACTIONS(1648), - [anon_sym_uint] = ACTIONS(1648), - [anon_sym_long] = ACTIONS(1648), - [anon_sym_ulong] = ACTIONS(1648), - [anon_sym_int128] = ACTIONS(1648), - [anon_sym_uint128] = ACTIONS(1648), - [anon_sym_float] = ACTIONS(1648), - [anon_sym_double] = ACTIONS(1648), - [anon_sym_float16] = ACTIONS(1648), - [anon_sym_bfloat16] = ACTIONS(1648), - [anon_sym_float128] = ACTIONS(1648), - [anon_sym_iptr] = ACTIONS(1648), - [anon_sym_uptr] = ACTIONS(1648), - [anon_sym_isz] = ACTIONS(1648), - [anon_sym_usz] = ACTIONS(1648), - [anon_sym_anyfault] = ACTIONS(1648), - [anon_sym_any] = ACTIONS(1648), - [anon_sym_DOLLARtypeof] = ACTIONS(1648), - [anon_sym_DOLLARtypefrom] = ACTIONS(1648), - [anon_sym_DOLLARvatype] = ACTIONS(1648), - [anon_sym_DOLLARevaltype] = ACTIONS(1648), - [sym_real_literal] = ACTIONS(1650), + [sym_ident] = ACTIONS(1387), + [sym_integer_literal] = ACTIONS(1389), + [anon_sym_SQUOTE] = ACTIONS(1389), + [anon_sym_DQUOTE] = ACTIONS(1389), + [anon_sym_BQUOTE] = ACTIONS(1389), + [sym_bytes_literal] = ACTIONS(1389), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1387), + [sym_at_ident] = ACTIONS(1389), + [sym_hash_ident] = ACTIONS(1389), + [sym_type_ident] = ACTIONS(1389), + [sym_ct_type_ident] = ACTIONS(1389), + [sym_const_ident] = ACTIONS(1387), + [sym_builtin] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_AMP] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1387), + [anon_sym_tlocal] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1389), + [anon_sym_fn] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_defer] = ACTIONS(1387), + [anon_sym_assert] = ACTIONS(1387), + [anon_sym_nextcase] = ACTIONS(1387), + [anon_sym_switch] = ACTIONS(1387), + [anon_sym_AMP_AMP] = ACTIONS(1389), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_foreach] = ACTIONS(1387), + [anon_sym_foreach_r] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_int] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1389), + [anon_sym_asm] = ACTIONS(1387), + [anon_sym_DOLLARassert] = ACTIONS(1387), + [anon_sym_DOLLARerror] = ACTIONS(1387), + [anon_sym_DOLLARecho] = ACTIONS(1387), + [anon_sym_DOLLARif] = ACTIONS(1387), + [anon_sym_DOLLARendif] = ACTIONS(1387), + [anon_sym_DOLLARswitch] = ACTIONS(1387), + [anon_sym_DOLLARfor] = ACTIONS(1387), + [anon_sym_DOLLARforeach] = ACTIONS(1387), + [anon_sym_DOLLARalignof] = ACTIONS(1387), + [anon_sym_DOLLARextnameof] = ACTIONS(1387), + [anon_sym_DOLLARnameof] = ACTIONS(1387), + [anon_sym_DOLLARoffsetof] = ACTIONS(1387), + [anon_sym_DOLLARqnameof] = ACTIONS(1387), + [anon_sym_DOLLARvaconst] = ACTIONS(1387), + [anon_sym_DOLLARvaarg] = ACTIONS(1387), + [anon_sym_DOLLARvaref] = ACTIONS(1387), + [anon_sym_DOLLARvaexpr] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [anon_sym_null] = ACTIONS(1387), + [anon_sym_DOLLARvacount] = ACTIONS(1387), + [anon_sym_DOLLARappend] = ACTIONS(1387), + [anon_sym_DOLLARconcat] = ACTIONS(1387), + [anon_sym_DOLLAReval] = ACTIONS(1387), + [anon_sym_DOLLARis_const] = ACTIONS(1387), + [anon_sym_DOLLARsizeof] = ACTIONS(1387), + [anon_sym_DOLLARstringify] = ACTIONS(1387), + [anon_sym_DOLLARand] = ACTIONS(1387), + [anon_sym_DOLLARdefined] = ACTIONS(1387), + [anon_sym_DOLLARembed] = ACTIONS(1387), + [anon_sym_DOLLARor] = ACTIONS(1387), + [anon_sym_DOLLARfeature] = ACTIONS(1387), + [anon_sym_DOLLARassignable] = ACTIONS(1387), + [anon_sym_BANG] = ACTIONS(1389), + [anon_sym_TILDE] = ACTIONS(1389), + [anon_sym_PLUS_PLUS] = ACTIONS(1389), + [anon_sym_DASH_DASH] = ACTIONS(1389), + [anon_sym_typeid] = ACTIONS(1387), + [anon_sym_LBRACE_PIPE] = ACTIONS(1389), + [anon_sym_void] = ACTIONS(1387), + [anon_sym_bool] = ACTIONS(1387), + [anon_sym_char] = ACTIONS(1387), + [anon_sym_ichar] = ACTIONS(1387), + [anon_sym_short] = ACTIONS(1387), + [anon_sym_ushort] = ACTIONS(1387), + [anon_sym_uint] = ACTIONS(1387), + [anon_sym_long] = ACTIONS(1387), + [anon_sym_ulong] = ACTIONS(1387), + [anon_sym_int128] = ACTIONS(1387), + [anon_sym_uint128] = ACTIONS(1387), + [anon_sym_float] = ACTIONS(1387), + [anon_sym_double] = ACTIONS(1387), + [anon_sym_float16] = ACTIONS(1387), + [anon_sym_bfloat16] = ACTIONS(1387), + [anon_sym_float128] = ACTIONS(1387), + [anon_sym_iptr] = ACTIONS(1387), + [anon_sym_uptr] = ACTIONS(1387), + [anon_sym_isz] = ACTIONS(1387), + [anon_sym_usz] = ACTIONS(1387), + [anon_sym_anyfault] = ACTIONS(1387), + [anon_sym_any] = ACTIONS(1387), + [anon_sym_DOLLARtypeof] = ACTIONS(1387), + [anon_sym_DOLLARtypefrom] = ACTIONS(1387), + [anon_sym_DOLLARvatype] = ACTIONS(1387), + [anon_sym_DOLLARevaltype] = ACTIONS(1387), + [sym_real_literal] = ACTIONS(1389), }, [768] = { [sym_line_comment] = STATE(768), [sym_doc_comment] = STATE(768), [sym_block_comment] = STATE(768), - [sym_ident] = ACTIONS(1464), - [sym_integer_literal] = ACTIONS(1466), - [anon_sym_SQUOTE] = ACTIONS(1466), - [anon_sym_DQUOTE] = ACTIONS(1466), - [anon_sym_BQUOTE] = ACTIONS(1466), - [sym_bytes_literal] = ACTIONS(1466), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1464), - [sym_at_ident] = ACTIONS(1466), - [sym_hash_ident] = ACTIONS(1466), - [sym_type_ident] = ACTIONS(1466), - [sym_ct_type_ident] = ACTIONS(1466), - [sym_const_ident] = ACTIONS(1464), - [sym_builtin] = ACTIONS(1466), - [anon_sym_LPAREN] = ACTIONS(1466), - [anon_sym_AMP] = ACTIONS(1464), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_tlocal] = ACTIONS(1464), - [anon_sym_SEMI] = ACTIONS(1466), - [anon_sym_fn] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1464), - [anon_sym_const] = ACTIONS(1464), - [anon_sym_var] = ACTIONS(1464), - [anon_sym_return] = ACTIONS(1464), - [anon_sym_continue] = ACTIONS(1464), - [anon_sym_break] = ACTIONS(1464), - [anon_sym_defer] = ACTIONS(1464), - [anon_sym_assert] = ACTIONS(1464), - [anon_sym_nextcase] = ACTIONS(1464), - [anon_sym_switch] = ACTIONS(1464), - [anon_sym_AMP_AMP] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1464), - [anon_sym_for] = ACTIONS(1464), - [anon_sym_foreach] = ACTIONS(1464), - [anon_sym_foreach_r] = ACTIONS(1464), - [anon_sym_while] = ACTIONS(1464), - [anon_sym_do] = ACTIONS(1464), - [anon_sym_int] = ACTIONS(1464), - [anon_sym_PLUS] = ACTIONS(1464), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1466), - [anon_sym_asm] = ACTIONS(1464), - [anon_sym_DOLLARassert] = ACTIONS(1464), - [anon_sym_DOLLARerror] = ACTIONS(1464), - [anon_sym_DOLLARecho] = ACTIONS(1464), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_DOLLARendif] = ACTIONS(1464), - [anon_sym_DOLLARswitch] = ACTIONS(1464), - [anon_sym_DOLLARfor] = ACTIONS(1464), - [anon_sym_DOLLARforeach] = ACTIONS(1464), - [anon_sym_DOLLARalignof] = ACTIONS(1464), - [anon_sym_DOLLARextnameof] = ACTIONS(1464), - [anon_sym_DOLLARnameof] = ACTIONS(1464), - [anon_sym_DOLLARoffsetof] = ACTIONS(1464), - [anon_sym_DOLLARqnameof] = ACTIONS(1464), - [anon_sym_DOLLARvaconst] = ACTIONS(1464), - [anon_sym_DOLLARvaarg] = ACTIONS(1464), - [anon_sym_DOLLARvaref] = ACTIONS(1464), - [anon_sym_DOLLARvaexpr] = ACTIONS(1464), - [anon_sym_true] = ACTIONS(1464), - [anon_sym_false] = ACTIONS(1464), - [anon_sym_null] = ACTIONS(1464), - [anon_sym_DOLLARvacount] = ACTIONS(1464), - [anon_sym_DOLLARappend] = ACTIONS(1464), - [anon_sym_DOLLARconcat] = ACTIONS(1464), - [anon_sym_DOLLAReval] = ACTIONS(1464), - [anon_sym_DOLLARis_const] = ACTIONS(1464), - [anon_sym_DOLLARsizeof] = ACTIONS(1464), - [anon_sym_DOLLARstringify] = ACTIONS(1464), - [anon_sym_DOLLARand] = ACTIONS(1464), - [anon_sym_DOLLARdefined] = ACTIONS(1464), - [anon_sym_DOLLARembed] = ACTIONS(1464), - [anon_sym_DOLLARor] = ACTIONS(1464), - [anon_sym_DOLLARfeature] = ACTIONS(1464), - [anon_sym_DOLLARassignable] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_TILDE] = ACTIONS(1466), - [anon_sym_PLUS_PLUS] = ACTIONS(1466), - [anon_sym_DASH_DASH] = ACTIONS(1466), - [anon_sym_typeid] = ACTIONS(1464), - [anon_sym_LBRACE_PIPE] = ACTIONS(1466), - [anon_sym_void] = ACTIONS(1464), - [anon_sym_bool] = ACTIONS(1464), - [anon_sym_char] = ACTIONS(1464), - [anon_sym_ichar] = ACTIONS(1464), - [anon_sym_short] = ACTIONS(1464), - [anon_sym_ushort] = ACTIONS(1464), - [anon_sym_uint] = ACTIONS(1464), - [anon_sym_long] = ACTIONS(1464), - [anon_sym_ulong] = ACTIONS(1464), - [anon_sym_int128] = ACTIONS(1464), - [anon_sym_uint128] = ACTIONS(1464), - [anon_sym_float] = ACTIONS(1464), - [anon_sym_double] = ACTIONS(1464), - [anon_sym_float16] = ACTIONS(1464), - [anon_sym_bfloat16] = ACTIONS(1464), - [anon_sym_float128] = ACTIONS(1464), - [anon_sym_iptr] = ACTIONS(1464), - [anon_sym_uptr] = ACTIONS(1464), - [anon_sym_isz] = ACTIONS(1464), - [anon_sym_usz] = ACTIONS(1464), - [anon_sym_anyfault] = ACTIONS(1464), - [anon_sym_any] = ACTIONS(1464), - [anon_sym_DOLLARtypeof] = ACTIONS(1464), - [anon_sym_DOLLARtypefrom] = ACTIONS(1464), - [anon_sym_DOLLARvatype] = ACTIONS(1464), - [anon_sym_DOLLARevaltype] = ACTIONS(1464), - [sym_real_literal] = ACTIONS(1466), + [sym_ident] = ACTIONS(1391), + [sym_integer_literal] = ACTIONS(1393), + [anon_sym_SQUOTE] = ACTIONS(1393), + [anon_sym_DQUOTE] = ACTIONS(1393), + [anon_sym_BQUOTE] = ACTIONS(1393), + [sym_bytes_literal] = ACTIONS(1393), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1391), + [sym_at_ident] = ACTIONS(1393), + [sym_hash_ident] = ACTIONS(1393), + [sym_type_ident] = ACTIONS(1393), + [sym_ct_type_ident] = ACTIONS(1393), + [sym_const_ident] = ACTIONS(1391), + [sym_builtin] = ACTIONS(1393), + [anon_sym_LPAREN] = ACTIONS(1393), + [anon_sym_AMP] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1391), + [anon_sym_tlocal] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1393), + [anon_sym_fn] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1391), + [anon_sym_var] = ACTIONS(1391), + [anon_sym_return] = ACTIONS(1391), + [anon_sym_continue] = ACTIONS(1391), + [anon_sym_break] = ACTIONS(1391), + [anon_sym_defer] = ACTIONS(1391), + [anon_sym_assert] = ACTIONS(1391), + [anon_sym_nextcase] = ACTIONS(1391), + [anon_sym_switch] = ACTIONS(1391), + [anon_sym_AMP_AMP] = ACTIONS(1393), + [anon_sym_if] = ACTIONS(1391), + [anon_sym_for] = ACTIONS(1391), + [anon_sym_foreach] = ACTIONS(1391), + [anon_sym_foreach_r] = ACTIONS(1391), + [anon_sym_while] = ACTIONS(1391), + [anon_sym_do] = ACTIONS(1391), + [anon_sym_int] = ACTIONS(1391), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1393), + [anon_sym_asm] = ACTIONS(1391), + [anon_sym_DOLLARassert] = ACTIONS(1391), + [anon_sym_DOLLARerror] = ACTIONS(1391), + [anon_sym_DOLLARecho] = ACTIONS(1391), + [anon_sym_DOLLARif] = ACTIONS(1391), + [anon_sym_DOLLARendif] = ACTIONS(1391), + [anon_sym_DOLLARswitch] = ACTIONS(1391), + [anon_sym_DOLLARfor] = ACTIONS(1391), + [anon_sym_DOLLARforeach] = ACTIONS(1391), + [anon_sym_DOLLARalignof] = ACTIONS(1391), + [anon_sym_DOLLARextnameof] = ACTIONS(1391), + [anon_sym_DOLLARnameof] = ACTIONS(1391), + [anon_sym_DOLLARoffsetof] = ACTIONS(1391), + [anon_sym_DOLLARqnameof] = ACTIONS(1391), + [anon_sym_DOLLARvaconst] = ACTIONS(1391), + [anon_sym_DOLLARvaarg] = ACTIONS(1391), + [anon_sym_DOLLARvaref] = ACTIONS(1391), + [anon_sym_DOLLARvaexpr] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(1391), + [anon_sym_false] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1391), + [anon_sym_DOLLARvacount] = ACTIONS(1391), + [anon_sym_DOLLARappend] = ACTIONS(1391), + [anon_sym_DOLLARconcat] = ACTIONS(1391), + [anon_sym_DOLLAReval] = ACTIONS(1391), + [anon_sym_DOLLARis_const] = ACTIONS(1391), + [anon_sym_DOLLARsizeof] = ACTIONS(1391), + [anon_sym_DOLLARstringify] = ACTIONS(1391), + [anon_sym_DOLLARand] = ACTIONS(1391), + [anon_sym_DOLLARdefined] = ACTIONS(1391), + [anon_sym_DOLLARembed] = ACTIONS(1391), + [anon_sym_DOLLARor] = ACTIONS(1391), + [anon_sym_DOLLARfeature] = ACTIONS(1391), + [anon_sym_DOLLARassignable] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1393), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_PLUS_PLUS] = ACTIONS(1393), + [anon_sym_DASH_DASH] = ACTIONS(1393), + [anon_sym_typeid] = ACTIONS(1391), + [anon_sym_LBRACE_PIPE] = ACTIONS(1393), + [anon_sym_void] = ACTIONS(1391), + [anon_sym_bool] = ACTIONS(1391), + [anon_sym_char] = ACTIONS(1391), + [anon_sym_ichar] = ACTIONS(1391), + [anon_sym_short] = ACTIONS(1391), + [anon_sym_ushort] = ACTIONS(1391), + [anon_sym_uint] = ACTIONS(1391), + [anon_sym_long] = ACTIONS(1391), + [anon_sym_ulong] = ACTIONS(1391), + [anon_sym_int128] = ACTIONS(1391), + [anon_sym_uint128] = ACTIONS(1391), + [anon_sym_float] = ACTIONS(1391), + [anon_sym_double] = ACTIONS(1391), + [anon_sym_float16] = ACTIONS(1391), + [anon_sym_bfloat16] = ACTIONS(1391), + [anon_sym_float128] = ACTIONS(1391), + [anon_sym_iptr] = ACTIONS(1391), + [anon_sym_uptr] = ACTIONS(1391), + [anon_sym_isz] = ACTIONS(1391), + [anon_sym_usz] = ACTIONS(1391), + [anon_sym_anyfault] = ACTIONS(1391), + [anon_sym_any] = ACTIONS(1391), + [anon_sym_DOLLARtypeof] = ACTIONS(1391), + [anon_sym_DOLLARtypefrom] = ACTIONS(1391), + [anon_sym_DOLLARvatype] = ACTIONS(1391), + [anon_sym_DOLLARevaltype] = ACTIONS(1391), + [sym_real_literal] = ACTIONS(1393), }, [769] = { [sym_line_comment] = STATE(769), [sym_doc_comment] = STATE(769), [sym_block_comment] = STATE(769), - [sym_ident] = ACTIONS(1628), - [sym_integer_literal] = ACTIONS(1630), - [anon_sym_SQUOTE] = ACTIONS(1630), - [anon_sym_DQUOTE] = ACTIONS(1630), - [anon_sym_BQUOTE] = ACTIONS(1630), - [sym_bytes_literal] = ACTIONS(1630), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1628), - [sym_at_ident] = ACTIONS(1630), - [sym_hash_ident] = ACTIONS(1630), - [sym_type_ident] = ACTIONS(1630), - [sym_ct_type_ident] = ACTIONS(1630), - [sym_const_ident] = ACTIONS(1628), - [sym_builtin] = ACTIONS(1630), - [anon_sym_LPAREN] = ACTIONS(1630), - [anon_sym_AMP] = ACTIONS(1628), - [anon_sym_static] = ACTIONS(1628), - [anon_sym_tlocal] = ACTIONS(1628), - [anon_sym_SEMI] = ACTIONS(1630), - [anon_sym_fn] = ACTIONS(1628), - [anon_sym_LBRACE] = ACTIONS(1628), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_var] = ACTIONS(1628), - [anon_sym_return] = ACTIONS(1628), - [anon_sym_continue] = ACTIONS(1628), - [anon_sym_break] = ACTIONS(1628), - [anon_sym_defer] = ACTIONS(1628), - [anon_sym_assert] = ACTIONS(1628), - [anon_sym_nextcase] = ACTIONS(1628), - [anon_sym_switch] = ACTIONS(1628), - [anon_sym_AMP_AMP] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1628), - [anon_sym_for] = ACTIONS(1628), - [anon_sym_foreach] = ACTIONS(1628), - [anon_sym_foreach_r] = ACTIONS(1628), - [anon_sym_while] = ACTIONS(1628), - [anon_sym_do] = ACTIONS(1628), - [anon_sym_int] = ACTIONS(1628), - [anon_sym_PLUS] = ACTIONS(1628), - [anon_sym_DASH] = ACTIONS(1628), - [anon_sym_STAR] = ACTIONS(1630), - [anon_sym_asm] = ACTIONS(1628), - [anon_sym_DOLLARassert] = ACTIONS(1628), - [anon_sym_DOLLARerror] = ACTIONS(1628), - [anon_sym_DOLLARecho] = ACTIONS(1628), - [anon_sym_DOLLARif] = ACTIONS(1628), - [anon_sym_DOLLARswitch] = ACTIONS(1628), - [anon_sym_DOLLARfor] = ACTIONS(1628), - [anon_sym_DOLLARendfor] = ACTIONS(1628), - [anon_sym_DOLLARforeach] = ACTIONS(1628), - [anon_sym_DOLLARalignof] = ACTIONS(1628), - [anon_sym_DOLLARextnameof] = ACTIONS(1628), - [anon_sym_DOLLARnameof] = ACTIONS(1628), - [anon_sym_DOLLARoffsetof] = ACTIONS(1628), - [anon_sym_DOLLARqnameof] = ACTIONS(1628), - [anon_sym_DOLLARvaconst] = ACTIONS(1628), - [anon_sym_DOLLARvaarg] = ACTIONS(1628), - [anon_sym_DOLLARvaref] = ACTIONS(1628), - [anon_sym_DOLLARvaexpr] = ACTIONS(1628), - [anon_sym_true] = ACTIONS(1628), - [anon_sym_false] = ACTIONS(1628), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_DOLLARvacount] = ACTIONS(1628), - [anon_sym_DOLLARappend] = ACTIONS(1628), - [anon_sym_DOLLARconcat] = ACTIONS(1628), - [anon_sym_DOLLAReval] = ACTIONS(1628), - [anon_sym_DOLLARis_const] = ACTIONS(1628), - [anon_sym_DOLLARsizeof] = ACTIONS(1628), - [anon_sym_DOLLARstringify] = ACTIONS(1628), - [anon_sym_DOLLARand] = ACTIONS(1628), - [anon_sym_DOLLARdefined] = ACTIONS(1628), - [anon_sym_DOLLARembed] = ACTIONS(1628), - [anon_sym_DOLLARor] = ACTIONS(1628), - [anon_sym_DOLLARfeature] = ACTIONS(1628), - [anon_sym_DOLLARassignable] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1630), - [anon_sym_TILDE] = ACTIONS(1630), - [anon_sym_PLUS_PLUS] = ACTIONS(1630), - [anon_sym_DASH_DASH] = ACTIONS(1630), - [anon_sym_typeid] = ACTIONS(1628), - [anon_sym_LBRACE_PIPE] = ACTIONS(1630), - [anon_sym_void] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_ichar] = ACTIONS(1628), - [anon_sym_short] = ACTIONS(1628), - [anon_sym_ushort] = ACTIONS(1628), - [anon_sym_uint] = ACTIONS(1628), - [anon_sym_long] = ACTIONS(1628), - [anon_sym_ulong] = ACTIONS(1628), - [anon_sym_int128] = ACTIONS(1628), - [anon_sym_uint128] = ACTIONS(1628), - [anon_sym_float] = ACTIONS(1628), - [anon_sym_double] = ACTIONS(1628), - [anon_sym_float16] = ACTIONS(1628), - [anon_sym_bfloat16] = ACTIONS(1628), - [anon_sym_float128] = ACTIONS(1628), - [anon_sym_iptr] = ACTIONS(1628), - [anon_sym_uptr] = ACTIONS(1628), - [anon_sym_isz] = ACTIONS(1628), - [anon_sym_usz] = ACTIONS(1628), - [anon_sym_anyfault] = ACTIONS(1628), - [anon_sym_any] = ACTIONS(1628), - [anon_sym_DOLLARtypeof] = ACTIONS(1628), - [anon_sym_DOLLARtypefrom] = ACTIONS(1628), - [anon_sym_DOLLARvatype] = ACTIONS(1628), - [anon_sym_DOLLARevaltype] = ACTIONS(1628), - [sym_real_literal] = ACTIONS(1630), + [sym_ident] = ACTIONS(1395), + [sym_integer_literal] = ACTIONS(1397), + [anon_sym_SQUOTE] = ACTIONS(1397), + [anon_sym_DQUOTE] = ACTIONS(1397), + [anon_sym_BQUOTE] = ACTIONS(1397), + [sym_bytes_literal] = ACTIONS(1397), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1395), + [sym_at_ident] = ACTIONS(1397), + [sym_hash_ident] = ACTIONS(1397), + [sym_type_ident] = ACTIONS(1397), + [sym_ct_type_ident] = ACTIONS(1397), + [sym_const_ident] = ACTIONS(1395), + [sym_builtin] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_AMP] = ACTIONS(1395), + [anon_sym_static] = ACTIONS(1395), + [anon_sym_tlocal] = ACTIONS(1395), + [anon_sym_SEMI] = ACTIONS(1397), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_const] = ACTIONS(1395), + [anon_sym_var] = ACTIONS(1395), + [anon_sym_return] = ACTIONS(1395), + [anon_sym_continue] = ACTIONS(1395), + [anon_sym_break] = ACTIONS(1395), + [anon_sym_defer] = ACTIONS(1395), + [anon_sym_assert] = ACTIONS(1395), + [anon_sym_nextcase] = ACTIONS(1395), + [anon_sym_switch] = ACTIONS(1395), + [anon_sym_AMP_AMP] = ACTIONS(1397), + [anon_sym_if] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1395), + [anon_sym_foreach] = ACTIONS(1395), + [anon_sym_foreach_r] = ACTIONS(1395), + [anon_sym_while] = ACTIONS(1395), + [anon_sym_do] = ACTIONS(1395), + [anon_sym_int] = ACTIONS(1395), + [anon_sym_PLUS] = ACTIONS(1395), + [anon_sym_DASH] = ACTIONS(1395), + [anon_sym_STAR] = ACTIONS(1397), + [anon_sym_asm] = ACTIONS(1395), + [anon_sym_DOLLARassert] = ACTIONS(1395), + [anon_sym_DOLLARerror] = ACTIONS(1395), + [anon_sym_DOLLARecho] = ACTIONS(1395), + [anon_sym_DOLLARif] = ACTIONS(1395), + [anon_sym_DOLLARendif] = ACTIONS(1395), + [anon_sym_DOLLARswitch] = ACTIONS(1395), + [anon_sym_DOLLARfor] = ACTIONS(1395), + [anon_sym_DOLLARforeach] = ACTIONS(1395), + [anon_sym_DOLLARalignof] = ACTIONS(1395), + [anon_sym_DOLLARextnameof] = ACTIONS(1395), + [anon_sym_DOLLARnameof] = ACTIONS(1395), + [anon_sym_DOLLARoffsetof] = ACTIONS(1395), + [anon_sym_DOLLARqnameof] = ACTIONS(1395), + [anon_sym_DOLLARvaconst] = ACTIONS(1395), + [anon_sym_DOLLARvaarg] = ACTIONS(1395), + [anon_sym_DOLLARvaref] = ACTIONS(1395), + [anon_sym_DOLLARvaexpr] = ACTIONS(1395), + [anon_sym_true] = ACTIONS(1395), + [anon_sym_false] = ACTIONS(1395), + [anon_sym_null] = ACTIONS(1395), + [anon_sym_DOLLARvacount] = ACTIONS(1395), + [anon_sym_DOLLARappend] = ACTIONS(1395), + [anon_sym_DOLLARconcat] = ACTIONS(1395), + [anon_sym_DOLLAReval] = ACTIONS(1395), + [anon_sym_DOLLARis_const] = ACTIONS(1395), + [anon_sym_DOLLARsizeof] = ACTIONS(1395), + [anon_sym_DOLLARstringify] = ACTIONS(1395), + [anon_sym_DOLLARand] = ACTIONS(1395), + [anon_sym_DOLLARdefined] = ACTIONS(1395), + [anon_sym_DOLLARembed] = ACTIONS(1395), + [anon_sym_DOLLARor] = ACTIONS(1395), + [anon_sym_DOLLARfeature] = ACTIONS(1395), + [anon_sym_DOLLARassignable] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_PLUS_PLUS] = ACTIONS(1397), + [anon_sym_DASH_DASH] = ACTIONS(1397), + [anon_sym_typeid] = ACTIONS(1395), + [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [anon_sym_void] = ACTIONS(1395), + [anon_sym_bool] = ACTIONS(1395), + [anon_sym_char] = ACTIONS(1395), + [anon_sym_ichar] = ACTIONS(1395), + [anon_sym_short] = ACTIONS(1395), + [anon_sym_ushort] = ACTIONS(1395), + [anon_sym_uint] = ACTIONS(1395), + [anon_sym_long] = ACTIONS(1395), + [anon_sym_ulong] = ACTIONS(1395), + [anon_sym_int128] = ACTIONS(1395), + [anon_sym_uint128] = ACTIONS(1395), + [anon_sym_float] = ACTIONS(1395), + [anon_sym_double] = ACTIONS(1395), + [anon_sym_float16] = ACTIONS(1395), + [anon_sym_bfloat16] = ACTIONS(1395), + [anon_sym_float128] = ACTIONS(1395), + [anon_sym_iptr] = ACTIONS(1395), + [anon_sym_uptr] = ACTIONS(1395), + [anon_sym_isz] = ACTIONS(1395), + [anon_sym_usz] = ACTIONS(1395), + [anon_sym_anyfault] = ACTIONS(1395), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_DOLLARtypeof] = ACTIONS(1395), + [anon_sym_DOLLARtypefrom] = ACTIONS(1395), + [anon_sym_DOLLARvatype] = ACTIONS(1395), + [anon_sym_DOLLARevaltype] = ACTIONS(1395), + [sym_real_literal] = ACTIONS(1397), }, [770] = { [sym_line_comment] = STATE(770), [sym_doc_comment] = STATE(770), [sym_block_comment] = STATE(770), - [sym_ident] = ACTIONS(1564), - [sym_integer_literal] = ACTIONS(1566), - [anon_sym_SQUOTE] = ACTIONS(1566), - [anon_sym_DQUOTE] = ACTIONS(1566), - [anon_sym_BQUOTE] = ACTIONS(1566), - [sym_bytes_literal] = ACTIONS(1566), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1564), - [sym_at_ident] = ACTIONS(1566), - [sym_hash_ident] = ACTIONS(1566), - [sym_type_ident] = ACTIONS(1566), - [sym_ct_type_ident] = ACTIONS(1566), - [sym_const_ident] = ACTIONS(1564), - [sym_builtin] = ACTIONS(1566), - [anon_sym_LPAREN] = ACTIONS(1566), - [anon_sym_AMP] = ACTIONS(1564), - [anon_sym_static] = ACTIONS(1564), - [anon_sym_tlocal] = ACTIONS(1564), - [anon_sym_SEMI] = ACTIONS(1566), - [anon_sym_fn] = ACTIONS(1564), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_const] = ACTIONS(1564), - [anon_sym_var] = ACTIONS(1564), - [anon_sym_return] = ACTIONS(1564), - [anon_sym_continue] = ACTIONS(1564), - [anon_sym_break] = ACTIONS(1564), - [anon_sym_defer] = ACTIONS(1564), - [anon_sym_assert] = ACTIONS(1564), - [anon_sym_nextcase] = ACTIONS(1564), - [anon_sym_switch] = ACTIONS(1564), - [anon_sym_AMP_AMP] = ACTIONS(1566), - [anon_sym_if] = ACTIONS(1564), - [anon_sym_for] = ACTIONS(1564), - [anon_sym_foreach] = ACTIONS(1564), - [anon_sym_foreach_r] = ACTIONS(1564), - [anon_sym_while] = ACTIONS(1564), - [anon_sym_do] = ACTIONS(1564), - [anon_sym_int] = ACTIONS(1564), - [anon_sym_PLUS] = ACTIONS(1564), - [anon_sym_DASH] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1566), - [anon_sym_asm] = ACTIONS(1564), - [anon_sym_DOLLARassert] = ACTIONS(1564), - [anon_sym_DOLLARerror] = ACTIONS(1564), - [anon_sym_DOLLARecho] = ACTIONS(1564), - [anon_sym_DOLLARif] = ACTIONS(1564), - [anon_sym_DOLLARswitch] = ACTIONS(1564), - [anon_sym_DOLLARfor] = ACTIONS(1564), - [anon_sym_DOLLARendfor] = ACTIONS(1564), - [anon_sym_DOLLARforeach] = ACTIONS(1564), - [anon_sym_DOLLARalignof] = ACTIONS(1564), - [anon_sym_DOLLARextnameof] = ACTIONS(1564), - [anon_sym_DOLLARnameof] = ACTIONS(1564), - [anon_sym_DOLLARoffsetof] = ACTIONS(1564), - [anon_sym_DOLLARqnameof] = ACTIONS(1564), - [anon_sym_DOLLARvaconst] = ACTIONS(1564), - [anon_sym_DOLLARvaarg] = ACTIONS(1564), - [anon_sym_DOLLARvaref] = ACTIONS(1564), - [anon_sym_DOLLARvaexpr] = ACTIONS(1564), - [anon_sym_true] = ACTIONS(1564), - [anon_sym_false] = ACTIONS(1564), - [anon_sym_null] = ACTIONS(1564), - [anon_sym_DOLLARvacount] = ACTIONS(1564), - [anon_sym_DOLLARappend] = ACTIONS(1564), - [anon_sym_DOLLARconcat] = ACTIONS(1564), - [anon_sym_DOLLAReval] = ACTIONS(1564), - [anon_sym_DOLLARis_const] = ACTIONS(1564), - [anon_sym_DOLLARsizeof] = ACTIONS(1564), - [anon_sym_DOLLARstringify] = ACTIONS(1564), - [anon_sym_DOLLARand] = ACTIONS(1564), - [anon_sym_DOLLARdefined] = ACTIONS(1564), - [anon_sym_DOLLARembed] = ACTIONS(1564), - [anon_sym_DOLLARor] = ACTIONS(1564), - [anon_sym_DOLLARfeature] = ACTIONS(1564), - [anon_sym_DOLLARassignable] = ACTIONS(1564), - [anon_sym_BANG] = ACTIONS(1566), - [anon_sym_TILDE] = ACTIONS(1566), - [anon_sym_PLUS_PLUS] = ACTIONS(1566), - [anon_sym_DASH_DASH] = ACTIONS(1566), - [anon_sym_typeid] = ACTIONS(1564), - [anon_sym_LBRACE_PIPE] = ACTIONS(1566), - [anon_sym_void] = ACTIONS(1564), - [anon_sym_bool] = ACTIONS(1564), - [anon_sym_char] = ACTIONS(1564), - [anon_sym_ichar] = ACTIONS(1564), - [anon_sym_short] = ACTIONS(1564), - [anon_sym_ushort] = ACTIONS(1564), - [anon_sym_uint] = ACTIONS(1564), - [anon_sym_long] = ACTIONS(1564), - [anon_sym_ulong] = ACTIONS(1564), - [anon_sym_int128] = ACTIONS(1564), - [anon_sym_uint128] = ACTIONS(1564), - [anon_sym_float] = ACTIONS(1564), - [anon_sym_double] = ACTIONS(1564), - [anon_sym_float16] = ACTIONS(1564), - [anon_sym_bfloat16] = ACTIONS(1564), - [anon_sym_float128] = ACTIONS(1564), - [anon_sym_iptr] = ACTIONS(1564), - [anon_sym_uptr] = ACTIONS(1564), - [anon_sym_isz] = ACTIONS(1564), - [anon_sym_usz] = ACTIONS(1564), - [anon_sym_anyfault] = ACTIONS(1564), - [anon_sym_any] = ACTIONS(1564), - [anon_sym_DOLLARtypeof] = ACTIONS(1564), - [anon_sym_DOLLARtypefrom] = ACTIONS(1564), - [anon_sym_DOLLARvatype] = ACTIONS(1564), - [anon_sym_DOLLARevaltype] = ACTIONS(1564), - [sym_real_literal] = ACTIONS(1566), + [sym_ident] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(1405), + [anon_sym_SQUOTE] = ACTIONS(1405), + [anon_sym_DQUOTE] = ACTIONS(1405), + [anon_sym_BQUOTE] = ACTIONS(1405), + [sym_bytes_literal] = ACTIONS(1405), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1403), + [sym_at_ident] = ACTIONS(1405), + [sym_hash_ident] = ACTIONS(1405), + [sym_type_ident] = ACTIONS(1405), + [sym_ct_type_ident] = ACTIONS(1405), + [sym_const_ident] = ACTIONS(1403), + [sym_builtin] = ACTIONS(1405), + [anon_sym_LPAREN] = ACTIONS(1405), + [anon_sym_AMP] = ACTIONS(1403), + [anon_sym_static] = ACTIONS(1403), + [anon_sym_tlocal] = ACTIONS(1403), + [anon_sym_SEMI] = ACTIONS(1405), + [anon_sym_fn] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_const] = ACTIONS(1403), + [anon_sym_var] = ACTIONS(1403), + [anon_sym_return] = ACTIONS(1403), + [anon_sym_continue] = ACTIONS(1403), + [anon_sym_break] = ACTIONS(1403), + [anon_sym_defer] = ACTIONS(1403), + [anon_sym_assert] = ACTIONS(1403), + [anon_sym_nextcase] = ACTIONS(1403), + [anon_sym_switch] = ACTIONS(1403), + [anon_sym_AMP_AMP] = ACTIONS(1405), + [anon_sym_if] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1403), + [anon_sym_foreach] = ACTIONS(1403), + [anon_sym_foreach_r] = ACTIONS(1403), + [anon_sym_while] = ACTIONS(1403), + [anon_sym_do] = ACTIONS(1403), + [anon_sym_int] = ACTIONS(1403), + [anon_sym_PLUS] = ACTIONS(1403), + [anon_sym_DASH] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(1405), + [anon_sym_asm] = ACTIONS(1403), + [anon_sym_DOLLARassert] = ACTIONS(1403), + [anon_sym_DOLLARerror] = ACTIONS(1403), + [anon_sym_DOLLARecho] = ACTIONS(1403), + [anon_sym_DOLLARif] = ACTIONS(1403), + [anon_sym_DOLLARendif] = ACTIONS(1403), + [anon_sym_DOLLARswitch] = ACTIONS(1403), + [anon_sym_DOLLARfor] = ACTIONS(1403), + [anon_sym_DOLLARforeach] = ACTIONS(1403), + [anon_sym_DOLLARalignof] = ACTIONS(1403), + [anon_sym_DOLLARextnameof] = ACTIONS(1403), + [anon_sym_DOLLARnameof] = ACTIONS(1403), + [anon_sym_DOLLARoffsetof] = ACTIONS(1403), + [anon_sym_DOLLARqnameof] = ACTIONS(1403), + [anon_sym_DOLLARvaconst] = ACTIONS(1403), + [anon_sym_DOLLARvaarg] = ACTIONS(1403), + [anon_sym_DOLLARvaref] = ACTIONS(1403), + [anon_sym_DOLLARvaexpr] = ACTIONS(1403), + [anon_sym_true] = ACTIONS(1403), + [anon_sym_false] = ACTIONS(1403), + [anon_sym_null] = ACTIONS(1403), + [anon_sym_DOLLARvacount] = ACTIONS(1403), + [anon_sym_DOLLARappend] = ACTIONS(1403), + [anon_sym_DOLLARconcat] = ACTIONS(1403), + [anon_sym_DOLLAReval] = ACTIONS(1403), + [anon_sym_DOLLARis_const] = ACTIONS(1403), + [anon_sym_DOLLARsizeof] = ACTIONS(1403), + [anon_sym_DOLLARstringify] = ACTIONS(1403), + [anon_sym_DOLLARand] = ACTIONS(1403), + [anon_sym_DOLLARdefined] = ACTIONS(1403), + [anon_sym_DOLLARembed] = ACTIONS(1403), + [anon_sym_DOLLARor] = ACTIONS(1403), + [anon_sym_DOLLARfeature] = ACTIONS(1403), + [anon_sym_DOLLARassignable] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1405), + [anon_sym_PLUS_PLUS] = ACTIONS(1405), + [anon_sym_DASH_DASH] = ACTIONS(1405), + [anon_sym_typeid] = ACTIONS(1403), + [anon_sym_LBRACE_PIPE] = ACTIONS(1405), + [anon_sym_void] = ACTIONS(1403), + [anon_sym_bool] = ACTIONS(1403), + [anon_sym_char] = ACTIONS(1403), + [anon_sym_ichar] = ACTIONS(1403), + [anon_sym_short] = ACTIONS(1403), + [anon_sym_ushort] = ACTIONS(1403), + [anon_sym_uint] = ACTIONS(1403), + [anon_sym_long] = ACTIONS(1403), + [anon_sym_ulong] = ACTIONS(1403), + [anon_sym_int128] = ACTIONS(1403), + [anon_sym_uint128] = ACTIONS(1403), + [anon_sym_float] = ACTIONS(1403), + [anon_sym_double] = ACTIONS(1403), + [anon_sym_float16] = ACTIONS(1403), + [anon_sym_bfloat16] = ACTIONS(1403), + [anon_sym_float128] = ACTIONS(1403), + [anon_sym_iptr] = ACTIONS(1403), + [anon_sym_uptr] = ACTIONS(1403), + [anon_sym_isz] = ACTIONS(1403), + [anon_sym_usz] = ACTIONS(1403), + [anon_sym_anyfault] = ACTIONS(1403), + [anon_sym_any] = ACTIONS(1403), + [anon_sym_DOLLARtypeof] = ACTIONS(1403), + [anon_sym_DOLLARtypefrom] = ACTIONS(1403), + [anon_sym_DOLLARvatype] = ACTIONS(1403), + [anon_sym_DOLLARevaltype] = ACTIONS(1403), + [sym_real_literal] = ACTIONS(1405), }, [771] = { [sym_line_comment] = STATE(771), [sym_doc_comment] = STATE(771), [sym_block_comment] = STATE(771), - [sym_ident] = ACTIONS(1560), - [sym_integer_literal] = ACTIONS(1562), - [anon_sym_SQUOTE] = ACTIONS(1562), - [anon_sym_DQUOTE] = ACTIONS(1562), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_bytes_literal] = ACTIONS(1562), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1560), - [sym_at_ident] = ACTIONS(1562), - [sym_hash_ident] = ACTIONS(1562), - [sym_type_ident] = ACTIONS(1562), - [sym_ct_type_ident] = ACTIONS(1562), - [sym_const_ident] = ACTIONS(1560), - [sym_builtin] = ACTIONS(1562), - [anon_sym_LPAREN] = ACTIONS(1562), - [anon_sym_AMP] = ACTIONS(1560), - [anon_sym_static] = ACTIONS(1560), - [anon_sym_tlocal] = ACTIONS(1560), - [anon_sym_SEMI] = ACTIONS(1562), - [anon_sym_fn] = ACTIONS(1560), - [anon_sym_LBRACE] = ACTIONS(1560), - [anon_sym_const] = ACTIONS(1560), - [anon_sym_var] = ACTIONS(1560), - [anon_sym_return] = ACTIONS(1560), - [anon_sym_continue] = ACTIONS(1560), - [anon_sym_break] = ACTIONS(1560), - [anon_sym_defer] = ACTIONS(1560), - [anon_sym_assert] = ACTIONS(1560), - [anon_sym_nextcase] = ACTIONS(1560), - [anon_sym_switch] = ACTIONS(1560), - [anon_sym_AMP_AMP] = ACTIONS(1562), - [anon_sym_if] = ACTIONS(1560), - [anon_sym_for] = ACTIONS(1560), - [anon_sym_foreach] = ACTIONS(1560), - [anon_sym_foreach_r] = ACTIONS(1560), - [anon_sym_while] = ACTIONS(1560), - [anon_sym_do] = ACTIONS(1560), - [anon_sym_int] = ACTIONS(1560), - [anon_sym_PLUS] = ACTIONS(1560), - [anon_sym_DASH] = ACTIONS(1560), - [anon_sym_STAR] = ACTIONS(1562), - [anon_sym_asm] = ACTIONS(1560), - [anon_sym_DOLLARassert] = ACTIONS(1560), - [anon_sym_DOLLARerror] = ACTIONS(1560), - [anon_sym_DOLLARecho] = ACTIONS(1560), - [anon_sym_DOLLARif] = ACTIONS(1560), - [anon_sym_DOLLARswitch] = ACTIONS(1560), - [anon_sym_DOLLARfor] = ACTIONS(1560), - [anon_sym_DOLLARendfor] = ACTIONS(1560), - [anon_sym_DOLLARforeach] = ACTIONS(1560), - [anon_sym_DOLLARalignof] = ACTIONS(1560), - [anon_sym_DOLLARextnameof] = ACTIONS(1560), - [anon_sym_DOLLARnameof] = ACTIONS(1560), - [anon_sym_DOLLARoffsetof] = ACTIONS(1560), - [anon_sym_DOLLARqnameof] = ACTIONS(1560), - [anon_sym_DOLLARvaconst] = ACTIONS(1560), - [anon_sym_DOLLARvaarg] = ACTIONS(1560), - [anon_sym_DOLLARvaref] = ACTIONS(1560), - [anon_sym_DOLLARvaexpr] = ACTIONS(1560), - [anon_sym_true] = ACTIONS(1560), - [anon_sym_false] = ACTIONS(1560), - [anon_sym_null] = ACTIONS(1560), - [anon_sym_DOLLARvacount] = ACTIONS(1560), - [anon_sym_DOLLARappend] = ACTIONS(1560), - [anon_sym_DOLLARconcat] = ACTIONS(1560), - [anon_sym_DOLLAReval] = ACTIONS(1560), - [anon_sym_DOLLARis_const] = ACTIONS(1560), - [anon_sym_DOLLARsizeof] = ACTIONS(1560), - [anon_sym_DOLLARstringify] = ACTIONS(1560), - [anon_sym_DOLLARand] = ACTIONS(1560), - [anon_sym_DOLLARdefined] = ACTIONS(1560), - [anon_sym_DOLLARembed] = ACTIONS(1560), - [anon_sym_DOLLARor] = ACTIONS(1560), - [anon_sym_DOLLARfeature] = ACTIONS(1560), - [anon_sym_DOLLARassignable] = ACTIONS(1560), - [anon_sym_BANG] = ACTIONS(1562), - [anon_sym_TILDE] = ACTIONS(1562), - [anon_sym_PLUS_PLUS] = ACTIONS(1562), - [anon_sym_DASH_DASH] = ACTIONS(1562), - [anon_sym_typeid] = ACTIONS(1560), - [anon_sym_LBRACE_PIPE] = ACTIONS(1562), - [anon_sym_void] = ACTIONS(1560), - [anon_sym_bool] = ACTIONS(1560), - [anon_sym_char] = ACTIONS(1560), - [anon_sym_ichar] = ACTIONS(1560), - [anon_sym_short] = ACTIONS(1560), - [anon_sym_ushort] = ACTIONS(1560), - [anon_sym_uint] = ACTIONS(1560), - [anon_sym_long] = ACTIONS(1560), - [anon_sym_ulong] = ACTIONS(1560), - [anon_sym_int128] = ACTIONS(1560), - [anon_sym_uint128] = ACTIONS(1560), - [anon_sym_float] = ACTIONS(1560), - [anon_sym_double] = ACTIONS(1560), - [anon_sym_float16] = ACTIONS(1560), - [anon_sym_bfloat16] = ACTIONS(1560), - [anon_sym_float128] = ACTIONS(1560), - [anon_sym_iptr] = ACTIONS(1560), - [anon_sym_uptr] = ACTIONS(1560), - [anon_sym_isz] = ACTIONS(1560), - [anon_sym_usz] = ACTIONS(1560), - [anon_sym_anyfault] = ACTIONS(1560), - [anon_sym_any] = ACTIONS(1560), - [anon_sym_DOLLARtypeof] = ACTIONS(1560), - [anon_sym_DOLLARtypefrom] = ACTIONS(1560), - [anon_sym_DOLLARvatype] = ACTIONS(1560), - [anon_sym_DOLLARevaltype] = ACTIONS(1560), - [sym_real_literal] = ACTIONS(1562), + [sym_ident] = ACTIONS(1407), + [sym_integer_literal] = ACTIONS(1409), + [anon_sym_SQUOTE] = ACTIONS(1409), + [anon_sym_DQUOTE] = ACTIONS(1409), + [anon_sym_BQUOTE] = ACTIONS(1409), + [sym_bytes_literal] = ACTIONS(1409), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1407), + [sym_at_ident] = ACTIONS(1409), + [sym_hash_ident] = ACTIONS(1409), + [sym_type_ident] = ACTIONS(1409), + [sym_ct_type_ident] = ACTIONS(1409), + [sym_const_ident] = ACTIONS(1407), + [sym_builtin] = ACTIONS(1409), + [anon_sym_LPAREN] = ACTIONS(1409), + [anon_sym_AMP] = ACTIONS(1407), + [anon_sym_static] = ACTIONS(1407), + [anon_sym_tlocal] = ACTIONS(1407), + [anon_sym_SEMI] = ACTIONS(1409), + [anon_sym_fn] = ACTIONS(1407), + [anon_sym_LBRACE] = ACTIONS(1407), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_var] = ACTIONS(1407), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_continue] = ACTIONS(1407), + [anon_sym_break] = ACTIONS(1407), + [anon_sym_defer] = ACTIONS(1407), + [anon_sym_assert] = ACTIONS(1407), + [anon_sym_nextcase] = ACTIONS(1407), + [anon_sym_switch] = ACTIONS(1407), + [anon_sym_AMP_AMP] = ACTIONS(1409), + [anon_sym_if] = ACTIONS(1407), + [anon_sym_for] = ACTIONS(1407), + [anon_sym_foreach] = ACTIONS(1407), + [anon_sym_foreach_r] = ACTIONS(1407), + [anon_sym_while] = ACTIONS(1407), + [anon_sym_do] = ACTIONS(1407), + [anon_sym_int] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1407), + [anon_sym_DASH] = ACTIONS(1407), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_asm] = ACTIONS(1407), + [anon_sym_DOLLARassert] = ACTIONS(1407), + [anon_sym_DOLLARerror] = ACTIONS(1407), + [anon_sym_DOLLARecho] = ACTIONS(1407), + [anon_sym_DOLLARif] = ACTIONS(1407), + [anon_sym_DOLLARendif] = ACTIONS(1407), + [anon_sym_DOLLARswitch] = ACTIONS(1407), + [anon_sym_DOLLARfor] = ACTIONS(1407), + [anon_sym_DOLLARforeach] = ACTIONS(1407), + [anon_sym_DOLLARalignof] = ACTIONS(1407), + [anon_sym_DOLLARextnameof] = ACTIONS(1407), + [anon_sym_DOLLARnameof] = ACTIONS(1407), + [anon_sym_DOLLARoffsetof] = ACTIONS(1407), + [anon_sym_DOLLARqnameof] = ACTIONS(1407), + [anon_sym_DOLLARvaconst] = ACTIONS(1407), + [anon_sym_DOLLARvaarg] = ACTIONS(1407), + [anon_sym_DOLLARvaref] = ACTIONS(1407), + [anon_sym_DOLLARvaexpr] = ACTIONS(1407), + [anon_sym_true] = ACTIONS(1407), + [anon_sym_false] = ACTIONS(1407), + [anon_sym_null] = ACTIONS(1407), + [anon_sym_DOLLARvacount] = ACTIONS(1407), + [anon_sym_DOLLARappend] = ACTIONS(1407), + [anon_sym_DOLLARconcat] = ACTIONS(1407), + [anon_sym_DOLLAReval] = ACTIONS(1407), + [anon_sym_DOLLARis_const] = ACTIONS(1407), + [anon_sym_DOLLARsizeof] = ACTIONS(1407), + [anon_sym_DOLLARstringify] = ACTIONS(1407), + [anon_sym_DOLLARand] = ACTIONS(1407), + [anon_sym_DOLLARdefined] = ACTIONS(1407), + [anon_sym_DOLLARembed] = ACTIONS(1407), + [anon_sym_DOLLARor] = ACTIONS(1407), + [anon_sym_DOLLARfeature] = ACTIONS(1407), + [anon_sym_DOLLARassignable] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1409), + [anon_sym_TILDE] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1409), + [anon_sym_DASH_DASH] = ACTIONS(1409), + [anon_sym_typeid] = ACTIONS(1407), + [anon_sym_LBRACE_PIPE] = ACTIONS(1409), + [anon_sym_void] = ACTIONS(1407), + [anon_sym_bool] = ACTIONS(1407), + [anon_sym_char] = ACTIONS(1407), + [anon_sym_ichar] = ACTIONS(1407), + [anon_sym_short] = ACTIONS(1407), + [anon_sym_ushort] = ACTIONS(1407), + [anon_sym_uint] = ACTIONS(1407), + [anon_sym_long] = ACTIONS(1407), + [anon_sym_ulong] = ACTIONS(1407), + [anon_sym_int128] = ACTIONS(1407), + [anon_sym_uint128] = ACTIONS(1407), + [anon_sym_float] = ACTIONS(1407), + [anon_sym_double] = ACTIONS(1407), + [anon_sym_float16] = ACTIONS(1407), + [anon_sym_bfloat16] = ACTIONS(1407), + [anon_sym_float128] = ACTIONS(1407), + [anon_sym_iptr] = ACTIONS(1407), + [anon_sym_uptr] = ACTIONS(1407), + [anon_sym_isz] = ACTIONS(1407), + [anon_sym_usz] = ACTIONS(1407), + [anon_sym_anyfault] = ACTIONS(1407), + [anon_sym_any] = ACTIONS(1407), + [anon_sym_DOLLARtypeof] = ACTIONS(1407), + [anon_sym_DOLLARtypefrom] = ACTIONS(1407), + [anon_sym_DOLLARvatype] = ACTIONS(1407), + [anon_sym_DOLLARevaltype] = ACTIONS(1407), + [sym_real_literal] = ACTIONS(1409), }, [772] = { [sym_line_comment] = STATE(772), [sym_doc_comment] = STATE(772), [sym_block_comment] = STATE(772), - [sym_ident] = ACTIONS(1468), - [sym_integer_literal] = ACTIONS(1470), - [anon_sym_SQUOTE] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [anon_sym_BQUOTE] = ACTIONS(1470), - [sym_bytes_literal] = ACTIONS(1470), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1468), - [sym_at_ident] = ACTIONS(1470), - [sym_hash_ident] = ACTIONS(1470), - [sym_type_ident] = ACTIONS(1470), - [sym_ct_type_ident] = ACTIONS(1470), - [sym_const_ident] = ACTIONS(1468), - [sym_builtin] = ACTIONS(1470), - [anon_sym_LPAREN] = ACTIONS(1470), - [anon_sym_AMP] = ACTIONS(1468), - [anon_sym_static] = ACTIONS(1468), - [anon_sym_tlocal] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1470), - [anon_sym_fn] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1468), - [anon_sym_const] = ACTIONS(1468), - [anon_sym_var] = ACTIONS(1468), - [anon_sym_return] = ACTIONS(1468), - [anon_sym_continue] = ACTIONS(1468), - [anon_sym_break] = ACTIONS(1468), - [anon_sym_defer] = ACTIONS(1468), - [anon_sym_assert] = ACTIONS(1468), - [anon_sym_nextcase] = ACTIONS(1468), - [anon_sym_switch] = ACTIONS(1468), - [anon_sym_AMP_AMP] = ACTIONS(1470), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_for] = ACTIONS(1468), - [anon_sym_foreach] = ACTIONS(1468), - [anon_sym_foreach_r] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1468), - [anon_sym_do] = ACTIONS(1468), - [anon_sym_int] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1468), - [anon_sym_DASH] = ACTIONS(1468), - [anon_sym_STAR] = ACTIONS(1470), - [anon_sym_asm] = ACTIONS(1468), - [anon_sym_DOLLARassert] = ACTIONS(1468), - [anon_sym_DOLLARerror] = ACTIONS(1468), - [anon_sym_DOLLARecho] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1468), - [anon_sym_DOLLARendif] = ACTIONS(1468), - [anon_sym_DOLLARswitch] = ACTIONS(1468), - [anon_sym_DOLLARfor] = ACTIONS(1468), - [anon_sym_DOLLARforeach] = ACTIONS(1468), - [anon_sym_DOLLARalignof] = ACTIONS(1468), - [anon_sym_DOLLARextnameof] = ACTIONS(1468), - [anon_sym_DOLLARnameof] = ACTIONS(1468), - [anon_sym_DOLLARoffsetof] = ACTIONS(1468), - [anon_sym_DOLLARqnameof] = ACTIONS(1468), - [anon_sym_DOLLARvaconst] = ACTIONS(1468), - [anon_sym_DOLLARvaarg] = ACTIONS(1468), - [anon_sym_DOLLARvaref] = ACTIONS(1468), - [anon_sym_DOLLARvaexpr] = ACTIONS(1468), - [anon_sym_true] = ACTIONS(1468), - [anon_sym_false] = ACTIONS(1468), - [anon_sym_null] = ACTIONS(1468), - [anon_sym_DOLLARvacount] = ACTIONS(1468), - [anon_sym_DOLLARappend] = ACTIONS(1468), - [anon_sym_DOLLARconcat] = ACTIONS(1468), - [anon_sym_DOLLAReval] = ACTIONS(1468), - [anon_sym_DOLLARis_const] = ACTIONS(1468), - [anon_sym_DOLLARsizeof] = ACTIONS(1468), - [anon_sym_DOLLARstringify] = ACTIONS(1468), - [anon_sym_DOLLARand] = ACTIONS(1468), - [anon_sym_DOLLARdefined] = ACTIONS(1468), - [anon_sym_DOLLARembed] = ACTIONS(1468), - [anon_sym_DOLLARor] = ACTIONS(1468), - [anon_sym_DOLLARfeature] = ACTIONS(1468), - [anon_sym_DOLLARassignable] = ACTIONS(1468), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1470), - [anon_sym_DASH_DASH] = ACTIONS(1470), - [anon_sym_typeid] = ACTIONS(1468), - [anon_sym_LBRACE_PIPE] = ACTIONS(1470), - [anon_sym_void] = ACTIONS(1468), - [anon_sym_bool] = ACTIONS(1468), - [anon_sym_char] = ACTIONS(1468), - [anon_sym_ichar] = ACTIONS(1468), - [anon_sym_short] = ACTIONS(1468), - [anon_sym_ushort] = ACTIONS(1468), - [anon_sym_uint] = ACTIONS(1468), - [anon_sym_long] = ACTIONS(1468), - [anon_sym_ulong] = ACTIONS(1468), - [anon_sym_int128] = ACTIONS(1468), - [anon_sym_uint128] = ACTIONS(1468), - [anon_sym_float] = ACTIONS(1468), - [anon_sym_double] = ACTIONS(1468), - [anon_sym_float16] = ACTIONS(1468), - [anon_sym_bfloat16] = ACTIONS(1468), - [anon_sym_float128] = ACTIONS(1468), - [anon_sym_iptr] = ACTIONS(1468), - [anon_sym_uptr] = ACTIONS(1468), - [anon_sym_isz] = ACTIONS(1468), - [anon_sym_usz] = ACTIONS(1468), - [anon_sym_anyfault] = ACTIONS(1468), - [anon_sym_any] = ACTIONS(1468), - [anon_sym_DOLLARtypeof] = ACTIONS(1468), - [anon_sym_DOLLARtypefrom] = ACTIONS(1468), - [anon_sym_DOLLARvatype] = ACTIONS(1468), - [anon_sym_DOLLARevaltype] = ACTIONS(1468), - [sym_real_literal] = ACTIONS(1470), + [sym_ident] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1413), + [anon_sym_SQUOTE] = ACTIONS(1413), + [anon_sym_DQUOTE] = ACTIONS(1413), + [anon_sym_BQUOTE] = ACTIONS(1413), + [sym_bytes_literal] = ACTIONS(1413), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1411), + [sym_at_ident] = ACTIONS(1413), + [sym_hash_ident] = ACTIONS(1413), + [sym_type_ident] = ACTIONS(1413), + [sym_ct_type_ident] = ACTIONS(1413), + [sym_const_ident] = ACTIONS(1411), + [sym_builtin] = ACTIONS(1413), + [anon_sym_LPAREN] = ACTIONS(1413), + [anon_sym_AMP] = ACTIONS(1411), + [anon_sym_static] = ACTIONS(1411), + [anon_sym_tlocal] = ACTIONS(1411), + [anon_sym_SEMI] = ACTIONS(1413), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_LBRACE] = ACTIONS(1411), + [anon_sym_const] = ACTIONS(1411), + [anon_sym_var] = ACTIONS(1411), + [anon_sym_return] = ACTIONS(1411), + [anon_sym_continue] = ACTIONS(1411), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_defer] = ACTIONS(1411), + [anon_sym_assert] = ACTIONS(1411), + [anon_sym_nextcase] = ACTIONS(1411), + [anon_sym_switch] = ACTIONS(1411), + [anon_sym_AMP_AMP] = ACTIONS(1413), + [anon_sym_if] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1411), + [anon_sym_foreach] = ACTIONS(1411), + [anon_sym_foreach_r] = ACTIONS(1411), + [anon_sym_while] = ACTIONS(1411), + [anon_sym_do] = ACTIONS(1411), + [anon_sym_int] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_STAR] = ACTIONS(1413), + [anon_sym_asm] = ACTIONS(1411), + [anon_sym_DOLLARassert] = ACTIONS(1411), + [anon_sym_DOLLARerror] = ACTIONS(1411), + [anon_sym_DOLLARecho] = ACTIONS(1411), + [anon_sym_DOLLARif] = ACTIONS(1411), + [anon_sym_DOLLARendif] = ACTIONS(1411), + [anon_sym_DOLLARswitch] = ACTIONS(1411), + [anon_sym_DOLLARfor] = ACTIONS(1411), + [anon_sym_DOLLARforeach] = ACTIONS(1411), + [anon_sym_DOLLARalignof] = ACTIONS(1411), + [anon_sym_DOLLARextnameof] = ACTIONS(1411), + [anon_sym_DOLLARnameof] = ACTIONS(1411), + [anon_sym_DOLLARoffsetof] = ACTIONS(1411), + [anon_sym_DOLLARqnameof] = ACTIONS(1411), + [anon_sym_DOLLARvaconst] = ACTIONS(1411), + [anon_sym_DOLLARvaarg] = ACTIONS(1411), + [anon_sym_DOLLARvaref] = ACTIONS(1411), + [anon_sym_DOLLARvaexpr] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1411), + [anon_sym_false] = ACTIONS(1411), + [anon_sym_null] = ACTIONS(1411), + [anon_sym_DOLLARvacount] = ACTIONS(1411), + [anon_sym_DOLLARappend] = ACTIONS(1411), + [anon_sym_DOLLARconcat] = ACTIONS(1411), + [anon_sym_DOLLAReval] = ACTIONS(1411), + [anon_sym_DOLLARis_const] = ACTIONS(1411), + [anon_sym_DOLLARsizeof] = ACTIONS(1411), + [anon_sym_DOLLARstringify] = ACTIONS(1411), + [anon_sym_DOLLARand] = ACTIONS(1411), + [anon_sym_DOLLARdefined] = ACTIONS(1411), + [anon_sym_DOLLARembed] = ACTIONS(1411), + [anon_sym_DOLLARor] = ACTIONS(1411), + [anon_sym_DOLLARfeature] = ACTIONS(1411), + [anon_sym_DOLLARassignable] = ACTIONS(1411), + [anon_sym_BANG] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_typeid] = ACTIONS(1411), + [anon_sym_LBRACE_PIPE] = ACTIONS(1413), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_bool] = ACTIONS(1411), + [anon_sym_char] = ACTIONS(1411), + [anon_sym_ichar] = ACTIONS(1411), + [anon_sym_short] = ACTIONS(1411), + [anon_sym_ushort] = ACTIONS(1411), + [anon_sym_uint] = ACTIONS(1411), + [anon_sym_long] = ACTIONS(1411), + [anon_sym_ulong] = ACTIONS(1411), + [anon_sym_int128] = ACTIONS(1411), + [anon_sym_uint128] = ACTIONS(1411), + [anon_sym_float] = ACTIONS(1411), + [anon_sym_double] = ACTIONS(1411), + [anon_sym_float16] = ACTIONS(1411), + [anon_sym_bfloat16] = ACTIONS(1411), + [anon_sym_float128] = ACTIONS(1411), + [anon_sym_iptr] = ACTIONS(1411), + [anon_sym_uptr] = ACTIONS(1411), + [anon_sym_isz] = ACTIONS(1411), + [anon_sym_usz] = ACTIONS(1411), + [anon_sym_anyfault] = ACTIONS(1411), + [anon_sym_any] = ACTIONS(1411), + [anon_sym_DOLLARtypeof] = ACTIONS(1411), + [anon_sym_DOLLARtypefrom] = ACTIONS(1411), + [anon_sym_DOLLARvatype] = ACTIONS(1411), + [anon_sym_DOLLARevaltype] = ACTIONS(1411), + [sym_real_literal] = ACTIONS(1413), }, [773] = { [sym_line_comment] = STATE(773), [sym_doc_comment] = STATE(773), [sym_block_comment] = STATE(773), - [sym_ident] = ACTIONS(1492), - [sym_integer_literal] = ACTIONS(1494), - [anon_sym_SQUOTE] = ACTIONS(1494), - [anon_sym_DQUOTE] = ACTIONS(1494), - [anon_sym_BQUOTE] = ACTIONS(1494), - [sym_bytes_literal] = ACTIONS(1494), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1492), - [sym_at_ident] = ACTIONS(1494), - [sym_hash_ident] = ACTIONS(1494), - [sym_type_ident] = ACTIONS(1494), - [sym_ct_type_ident] = ACTIONS(1494), - [sym_const_ident] = ACTIONS(1492), - [sym_builtin] = ACTIONS(1494), - [anon_sym_LPAREN] = ACTIONS(1494), - [anon_sym_AMP] = ACTIONS(1492), - [anon_sym_static] = ACTIONS(1492), - [anon_sym_tlocal] = ACTIONS(1492), - [anon_sym_SEMI] = ACTIONS(1494), - [anon_sym_fn] = ACTIONS(1492), - [anon_sym_LBRACE] = ACTIONS(1492), - [anon_sym_const] = ACTIONS(1492), - [anon_sym_var] = ACTIONS(1492), - [anon_sym_return] = ACTIONS(1492), - [anon_sym_continue] = ACTIONS(1492), - [anon_sym_break] = ACTIONS(1492), - [anon_sym_defer] = ACTIONS(1492), - [anon_sym_assert] = ACTIONS(1492), - [anon_sym_nextcase] = ACTIONS(1492), - [anon_sym_switch] = ACTIONS(1492), - [anon_sym_AMP_AMP] = ACTIONS(1494), - [anon_sym_if] = ACTIONS(1492), - [anon_sym_for] = ACTIONS(1492), - [anon_sym_foreach] = ACTIONS(1492), - [anon_sym_foreach_r] = ACTIONS(1492), - [anon_sym_while] = ACTIONS(1492), - [anon_sym_do] = ACTIONS(1492), - [anon_sym_int] = ACTIONS(1492), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1492), - [anon_sym_STAR] = ACTIONS(1494), - [anon_sym_asm] = ACTIONS(1492), - [anon_sym_DOLLARassert] = ACTIONS(1492), - [anon_sym_DOLLARerror] = ACTIONS(1492), - [anon_sym_DOLLARecho] = ACTIONS(1492), - [anon_sym_DOLLARif] = ACTIONS(1492), - [anon_sym_DOLLARswitch] = ACTIONS(1492), - [anon_sym_DOLLARfor] = ACTIONS(1492), - [anon_sym_DOLLARforeach] = ACTIONS(1492), - [anon_sym_DOLLARendforeach] = ACTIONS(1492), - [anon_sym_DOLLARalignof] = ACTIONS(1492), - [anon_sym_DOLLARextnameof] = ACTIONS(1492), - [anon_sym_DOLLARnameof] = ACTIONS(1492), - [anon_sym_DOLLARoffsetof] = ACTIONS(1492), - [anon_sym_DOLLARqnameof] = ACTIONS(1492), - [anon_sym_DOLLARvaconst] = ACTIONS(1492), - [anon_sym_DOLLARvaarg] = ACTIONS(1492), - [anon_sym_DOLLARvaref] = ACTIONS(1492), - [anon_sym_DOLLARvaexpr] = ACTIONS(1492), - [anon_sym_true] = ACTIONS(1492), - [anon_sym_false] = ACTIONS(1492), - [anon_sym_null] = ACTIONS(1492), - [anon_sym_DOLLARvacount] = ACTIONS(1492), - [anon_sym_DOLLARappend] = ACTIONS(1492), - [anon_sym_DOLLARconcat] = ACTIONS(1492), - [anon_sym_DOLLAReval] = ACTIONS(1492), - [anon_sym_DOLLARis_const] = ACTIONS(1492), - [anon_sym_DOLLARsizeof] = ACTIONS(1492), - [anon_sym_DOLLARstringify] = ACTIONS(1492), - [anon_sym_DOLLARand] = ACTIONS(1492), - [anon_sym_DOLLARdefined] = ACTIONS(1492), - [anon_sym_DOLLARembed] = ACTIONS(1492), - [anon_sym_DOLLARor] = ACTIONS(1492), - [anon_sym_DOLLARfeature] = ACTIONS(1492), - [anon_sym_DOLLARassignable] = ACTIONS(1492), - [anon_sym_BANG] = ACTIONS(1494), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_DASH_DASH] = ACTIONS(1494), - [anon_sym_typeid] = ACTIONS(1492), - [anon_sym_LBRACE_PIPE] = ACTIONS(1494), - [anon_sym_void] = ACTIONS(1492), - [anon_sym_bool] = ACTIONS(1492), - [anon_sym_char] = ACTIONS(1492), - [anon_sym_ichar] = ACTIONS(1492), - [anon_sym_short] = ACTIONS(1492), - [anon_sym_ushort] = ACTIONS(1492), - [anon_sym_uint] = ACTIONS(1492), - [anon_sym_long] = ACTIONS(1492), - [anon_sym_ulong] = ACTIONS(1492), - [anon_sym_int128] = ACTIONS(1492), - [anon_sym_uint128] = ACTIONS(1492), - [anon_sym_float] = ACTIONS(1492), - [anon_sym_double] = ACTIONS(1492), - [anon_sym_float16] = ACTIONS(1492), - [anon_sym_bfloat16] = ACTIONS(1492), - [anon_sym_float128] = ACTIONS(1492), - [anon_sym_iptr] = ACTIONS(1492), - [anon_sym_uptr] = ACTIONS(1492), - [anon_sym_isz] = ACTIONS(1492), - [anon_sym_usz] = ACTIONS(1492), - [anon_sym_anyfault] = ACTIONS(1492), - [anon_sym_any] = ACTIONS(1492), - [anon_sym_DOLLARtypeof] = ACTIONS(1492), - [anon_sym_DOLLARtypefrom] = ACTIONS(1492), - [anon_sym_DOLLARvatype] = ACTIONS(1492), - [anon_sym_DOLLARevaltype] = ACTIONS(1492), - [sym_real_literal] = ACTIONS(1494), + [sym_ident] = ACTIONS(1427), + [sym_integer_literal] = ACTIONS(1429), + [anon_sym_SQUOTE] = ACTIONS(1429), + [anon_sym_DQUOTE] = ACTIONS(1429), + [anon_sym_BQUOTE] = ACTIONS(1429), + [sym_bytes_literal] = ACTIONS(1429), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1427), + [sym_at_ident] = ACTIONS(1429), + [sym_hash_ident] = ACTIONS(1429), + [sym_type_ident] = ACTIONS(1429), + [sym_ct_type_ident] = ACTIONS(1429), + [sym_const_ident] = ACTIONS(1427), + [sym_builtin] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1429), + [anon_sym_AMP] = ACTIONS(1427), + [anon_sym_static] = ACTIONS(1427), + [anon_sym_tlocal] = ACTIONS(1427), + [anon_sym_SEMI] = ACTIONS(1429), + [anon_sym_fn] = ACTIONS(1427), + [anon_sym_LBRACE] = ACTIONS(1427), + [anon_sym_const] = ACTIONS(1427), + [anon_sym_var] = ACTIONS(1427), + [anon_sym_return] = ACTIONS(1427), + [anon_sym_continue] = ACTIONS(1427), + [anon_sym_break] = ACTIONS(1427), + [anon_sym_defer] = ACTIONS(1427), + [anon_sym_assert] = ACTIONS(1427), + [anon_sym_nextcase] = ACTIONS(1427), + [anon_sym_switch] = ACTIONS(1427), + [anon_sym_AMP_AMP] = ACTIONS(1429), + [anon_sym_if] = ACTIONS(1427), + [anon_sym_for] = ACTIONS(1427), + [anon_sym_foreach] = ACTIONS(1427), + [anon_sym_foreach_r] = ACTIONS(1427), + [anon_sym_while] = ACTIONS(1427), + [anon_sym_do] = ACTIONS(1427), + [anon_sym_int] = ACTIONS(1427), + [anon_sym_PLUS] = ACTIONS(1427), + [anon_sym_DASH] = ACTIONS(1427), + [anon_sym_STAR] = ACTIONS(1429), + [anon_sym_asm] = ACTIONS(1427), + [anon_sym_DOLLARassert] = ACTIONS(1427), + [anon_sym_DOLLARerror] = ACTIONS(1427), + [anon_sym_DOLLARecho] = ACTIONS(1427), + [anon_sym_DOLLARif] = ACTIONS(1427), + [anon_sym_DOLLARendif] = ACTIONS(1427), + [anon_sym_DOLLARswitch] = ACTIONS(1427), + [anon_sym_DOLLARfor] = ACTIONS(1427), + [anon_sym_DOLLARforeach] = ACTIONS(1427), + [anon_sym_DOLLARalignof] = ACTIONS(1427), + [anon_sym_DOLLARextnameof] = ACTIONS(1427), + [anon_sym_DOLLARnameof] = ACTIONS(1427), + [anon_sym_DOLLARoffsetof] = ACTIONS(1427), + [anon_sym_DOLLARqnameof] = ACTIONS(1427), + [anon_sym_DOLLARvaconst] = ACTIONS(1427), + [anon_sym_DOLLARvaarg] = ACTIONS(1427), + [anon_sym_DOLLARvaref] = ACTIONS(1427), + [anon_sym_DOLLARvaexpr] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1427), + [anon_sym_false] = ACTIONS(1427), + [anon_sym_null] = ACTIONS(1427), + [anon_sym_DOLLARvacount] = ACTIONS(1427), + [anon_sym_DOLLARappend] = ACTIONS(1427), + [anon_sym_DOLLARconcat] = ACTIONS(1427), + [anon_sym_DOLLAReval] = ACTIONS(1427), + [anon_sym_DOLLARis_const] = ACTIONS(1427), + [anon_sym_DOLLARsizeof] = ACTIONS(1427), + [anon_sym_DOLLARstringify] = ACTIONS(1427), + [anon_sym_DOLLARand] = ACTIONS(1427), + [anon_sym_DOLLARdefined] = ACTIONS(1427), + [anon_sym_DOLLARembed] = ACTIONS(1427), + [anon_sym_DOLLARor] = ACTIONS(1427), + [anon_sym_DOLLARfeature] = ACTIONS(1427), + [anon_sym_DOLLARassignable] = ACTIONS(1427), + [anon_sym_BANG] = ACTIONS(1429), + [anon_sym_TILDE] = ACTIONS(1429), + [anon_sym_PLUS_PLUS] = ACTIONS(1429), + [anon_sym_DASH_DASH] = ACTIONS(1429), + [anon_sym_typeid] = ACTIONS(1427), + [anon_sym_LBRACE_PIPE] = ACTIONS(1429), + [anon_sym_void] = ACTIONS(1427), + [anon_sym_bool] = ACTIONS(1427), + [anon_sym_char] = ACTIONS(1427), + [anon_sym_ichar] = ACTIONS(1427), + [anon_sym_short] = ACTIONS(1427), + [anon_sym_ushort] = ACTIONS(1427), + [anon_sym_uint] = ACTIONS(1427), + [anon_sym_long] = ACTIONS(1427), + [anon_sym_ulong] = ACTIONS(1427), + [anon_sym_int128] = ACTIONS(1427), + [anon_sym_uint128] = ACTIONS(1427), + [anon_sym_float] = ACTIONS(1427), + [anon_sym_double] = ACTIONS(1427), + [anon_sym_float16] = ACTIONS(1427), + [anon_sym_bfloat16] = ACTIONS(1427), + [anon_sym_float128] = ACTIONS(1427), + [anon_sym_iptr] = ACTIONS(1427), + [anon_sym_uptr] = ACTIONS(1427), + [anon_sym_isz] = ACTIONS(1427), + [anon_sym_usz] = ACTIONS(1427), + [anon_sym_anyfault] = ACTIONS(1427), + [anon_sym_any] = ACTIONS(1427), + [anon_sym_DOLLARtypeof] = ACTIONS(1427), + [anon_sym_DOLLARtypefrom] = ACTIONS(1427), + [anon_sym_DOLLARvatype] = ACTIONS(1427), + [anon_sym_DOLLARevaltype] = ACTIONS(1427), + [sym_real_literal] = ACTIONS(1429), }, [774] = { [sym_line_comment] = STATE(774), [sym_doc_comment] = STATE(774), [sym_block_comment] = STATE(774), - [sym_ident] = ACTIONS(1504), - [sym_integer_literal] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1506), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_BQUOTE] = ACTIONS(1506), - [sym_bytes_literal] = ACTIONS(1506), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1504), - [sym_at_ident] = ACTIONS(1506), - [sym_hash_ident] = ACTIONS(1506), - [sym_type_ident] = ACTIONS(1506), - [sym_ct_type_ident] = ACTIONS(1506), - [sym_const_ident] = ACTIONS(1504), - [sym_builtin] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_AMP] = ACTIONS(1504), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_tlocal] = ACTIONS(1504), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym_fn] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(1504), - [anon_sym_var] = ACTIONS(1504), - [anon_sym_return] = ACTIONS(1504), - [anon_sym_continue] = ACTIONS(1504), - [anon_sym_break] = ACTIONS(1504), - [anon_sym_defer] = ACTIONS(1504), - [anon_sym_assert] = ACTIONS(1504), - [anon_sym_nextcase] = ACTIONS(1504), - [anon_sym_switch] = ACTIONS(1504), - [anon_sym_AMP_AMP] = ACTIONS(1506), - [anon_sym_if] = ACTIONS(1504), - [anon_sym_for] = ACTIONS(1504), - [anon_sym_foreach] = ACTIONS(1504), - [anon_sym_foreach_r] = ACTIONS(1504), - [anon_sym_while] = ACTIONS(1504), - [anon_sym_do] = ACTIONS(1504), - [anon_sym_int] = ACTIONS(1504), - [anon_sym_PLUS] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1504), - [anon_sym_STAR] = ACTIONS(1506), - [anon_sym_asm] = ACTIONS(1504), - [anon_sym_DOLLARassert] = ACTIONS(1504), - [anon_sym_DOLLARerror] = ACTIONS(1504), - [anon_sym_DOLLARecho] = ACTIONS(1504), - [anon_sym_DOLLARif] = ACTIONS(1504), - [anon_sym_DOLLARendif] = ACTIONS(1504), - [anon_sym_DOLLARswitch] = ACTIONS(1504), - [anon_sym_DOLLARfor] = ACTIONS(1504), - [anon_sym_DOLLARforeach] = ACTIONS(1504), - [anon_sym_DOLLARalignof] = ACTIONS(1504), - [anon_sym_DOLLARextnameof] = ACTIONS(1504), - [anon_sym_DOLLARnameof] = ACTIONS(1504), - [anon_sym_DOLLARoffsetof] = ACTIONS(1504), - [anon_sym_DOLLARqnameof] = ACTIONS(1504), - [anon_sym_DOLLARvaconst] = ACTIONS(1504), - [anon_sym_DOLLARvaarg] = ACTIONS(1504), - [anon_sym_DOLLARvaref] = ACTIONS(1504), - [anon_sym_DOLLARvaexpr] = ACTIONS(1504), - [anon_sym_true] = ACTIONS(1504), - [anon_sym_false] = ACTIONS(1504), - [anon_sym_null] = ACTIONS(1504), - [anon_sym_DOLLARvacount] = ACTIONS(1504), - [anon_sym_DOLLARappend] = ACTIONS(1504), - [anon_sym_DOLLARconcat] = ACTIONS(1504), - [anon_sym_DOLLAReval] = ACTIONS(1504), - [anon_sym_DOLLARis_const] = ACTIONS(1504), - [anon_sym_DOLLARsizeof] = ACTIONS(1504), - [anon_sym_DOLLARstringify] = ACTIONS(1504), - [anon_sym_DOLLARand] = ACTIONS(1504), - [anon_sym_DOLLARdefined] = ACTIONS(1504), - [anon_sym_DOLLARembed] = ACTIONS(1504), - [anon_sym_DOLLARor] = ACTIONS(1504), - [anon_sym_DOLLARfeature] = ACTIONS(1504), - [anon_sym_DOLLARassignable] = ACTIONS(1504), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1506), - [anon_sym_typeid] = ACTIONS(1504), - [anon_sym_LBRACE_PIPE] = ACTIONS(1506), - [anon_sym_void] = ACTIONS(1504), - [anon_sym_bool] = ACTIONS(1504), - [anon_sym_char] = ACTIONS(1504), - [anon_sym_ichar] = ACTIONS(1504), - [anon_sym_short] = ACTIONS(1504), - [anon_sym_ushort] = ACTIONS(1504), - [anon_sym_uint] = ACTIONS(1504), - [anon_sym_long] = ACTIONS(1504), - [anon_sym_ulong] = ACTIONS(1504), - [anon_sym_int128] = ACTIONS(1504), - [anon_sym_uint128] = ACTIONS(1504), - [anon_sym_float] = ACTIONS(1504), - [anon_sym_double] = ACTIONS(1504), - [anon_sym_float16] = ACTIONS(1504), - [anon_sym_bfloat16] = ACTIONS(1504), - [anon_sym_float128] = ACTIONS(1504), - [anon_sym_iptr] = ACTIONS(1504), - [anon_sym_uptr] = ACTIONS(1504), - [anon_sym_isz] = ACTIONS(1504), - [anon_sym_usz] = ACTIONS(1504), - [anon_sym_anyfault] = ACTIONS(1504), - [anon_sym_any] = ACTIONS(1504), - [anon_sym_DOLLARtypeof] = ACTIONS(1504), - [anon_sym_DOLLARtypefrom] = ACTIONS(1504), - [anon_sym_DOLLARvatype] = ACTIONS(1504), - [anon_sym_DOLLARevaltype] = ACTIONS(1504), - [sym_real_literal] = ACTIONS(1506), + [sym_ident] = ACTIONS(1431), + [sym_integer_literal] = ACTIONS(1433), + [anon_sym_SQUOTE] = ACTIONS(1433), + [anon_sym_DQUOTE] = ACTIONS(1433), + [anon_sym_BQUOTE] = ACTIONS(1433), + [sym_bytes_literal] = ACTIONS(1433), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1431), + [sym_at_ident] = ACTIONS(1433), + [sym_hash_ident] = ACTIONS(1433), + [sym_type_ident] = ACTIONS(1433), + [sym_ct_type_ident] = ACTIONS(1433), + [sym_const_ident] = ACTIONS(1431), + [sym_builtin] = ACTIONS(1433), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_AMP] = ACTIONS(1431), + [anon_sym_static] = ACTIONS(1431), + [anon_sym_tlocal] = ACTIONS(1431), + [anon_sym_SEMI] = ACTIONS(1433), + [anon_sym_fn] = ACTIONS(1431), + [anon_sym_LBRACE] = ACTIONS(1431), + [anon_sym_const] = ACTIONS(1431), + [anon_sym_var] = ACTIONS(1431), + [anon_sym_return] = ACTIONS(1431), + [anon_sym_continue] = ACTIONS(1431), + [anon_sym_break] = ACTIONS(1431), + [anon_sym_defer] = ACTIONS(1431), + [anon_sym_assert] = ACTIONS(1431), + [anon_sym_nextcase] = ACTIONS(1431), + [anon_sym_switch] = ACTIONS(1431), + [anon_sym_AMP_AMP] = ACTIONS(1433), + [anon_sym_if] = ACTIONS(1431), + [anon_sym_for] = ACTIONS(1431), + [anon_sym_foreach] = ACTIONS(1431), + [anon_sym_foreach_r] = ACTIONS(1431), + [anon_sym_while] = ACTIONS(1431), + [anon_sym_do] = ACTIONS(1431), + [anon_sym_int] = ACTIONS(1431), + [anon_sym_PLUS] = ACTIONS(1431), + [anon_sym_DASH] = ACTIONS(1431), + [anon_sym_STAR] = ACTIONS(1433), + [anon_sym_asm] = ACTIONS(1431), + [anon_sym_DOLLARassert] = ACTIONS(1431), + [anon_sym_DOLLARerror] = ACTIONS(1431), + [anon_sym_DOLLARecho] = ACTIONS(1431), + [anon_sym_DOLLARif] = ACTIONS(1431), + [anon_sym_DOLLARendif] = ACTIONS(1431), + [anon_sym_DOLLARswitch] = ACTIONS(1431), + [anon_sym_DOLLARfor] = ACTIONS(1431), + [anon_sym_DOLLARforeach] = ACTIONS(1431), + [anon_sym_DOLLARalignof] = ACTIONS(1431), + [anon_sym_DOLLARextnameof] = ACTIONS(1431), + [anon_sym_DOLLARnameof] = ACTIONS(1431), + [anon_sym_DOLLARoffsetof] = ACTIONS(1431), + [anon_sym_DOLLARqnameof] = ACTIONS(1431), + [anon_sym_DOLLARvaconst] = ACTIONS(1431), + [anon_sym_DOLLARvaarg] = ACTIONS(1431), + [anon_sym_DOLLARvaref] = ACTIONS(1431), + [anon_sym_DOLLARvaexpr] = ACTIONS(1431), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_null] = ACTIONS(1431), + [anon_sym_DOLLARvacount] = ACTIONS(1431), + [anon_sym_DOLLARappend] = ACTIONS(1431), + [anon_sym_DOLLARconcat] = ACTIONS(1431), + [anon_sym_DOLLAReval] = ACTIONS(1431), + [anon_sym_DOLLARis_const] = ACTIONS(1431), + [anon_sym_DOLLARsizeof] = ACTIONS(1431), + [anon_sym_DOLLARstringify] = ACTIONS(1431), + [anon_sym_DOLLARand] = ACTIONS(1431), + [anon_sym_DOLLARdefined] = ACTIONS(1431), + [anon_sym_DOLLARembed] = ACTIONS(1431), + [anon_sym_DOLLARor] = ACTIONS(1431), + [anon_sym_DOLLARfeature] = ACTIONS(1431), + [anon_sym_DOLLARassignable] = ACTIONS(1431), + [anon_sym_BANG] = ACTIONS(1433), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_PLUS_PLUS] = ACTIONS(1433), + [anon_sym_DASH_DASH] = ACTIONS(1433), + [anon_sym_typeid] = ACTIONS(1431), + [anon_sym_LBRACE_PIPE] = ACTIONS(1433), + [anon_sym_void] = ACTIONS(1431), + [anon_sym_bool] = ACTIONS(1431), + [anon_sym_char] = ACTIONS(1431), + [anon_sym_ichar] = ACTIONS(1431), + [anon_sym_short] = ACTIONS(1431), + [anon_sym_ushort] = ACTIONS(1431), + [anon_sym_uint] = ACTIONS(1431), + [anon_sym_long] = ACTIONS(1431), + [anon_sym_ulong] = ACTIONS(1431), + [anon_sym_int128] = ACTIONS(1431), + [anon_sym_uint128] = ACTIONS(1431), + [anon_sym_float] = ACTIONS(1431), + [anon_sym_double] = ACTIONS(1431), + [anon_sym_float16] = ACTIONS(1431), + [anon_sym_bfloat16] = ACTIONS(1431), + [anon_sym_float128] = ACTIONS(1431), + [anon_sym_iptr] = ACTIONS(1431), + [anon_sym_uptr] = ACTIONS(1431), + [anon_sym_isz] = ACTIONS(1431), + [anon_sym_usz] = ACTIONS(1431), + [anon_sym_anyfault] = ACTIONS(1431), + [anon_sym_any] = ACTIONS(1431), + [anon_sym_DOLLARtypeof] = ACTIONS(1431), + [anon_sym_DOLLARtypefrom] = ACTIONS(1431), + [anon_sym_DOLLARvatype] = ACTIONS(1431), + [anon_sym_DOLLARevaltype] = ACTIONS(1431), + [sym_real_literal] = ACTIONS(1433), }, [775] = { [sym_line_comment] = STATE(775), [sym_doc_comment] = STATE(775), [sym_block_comment] = STATE(775), - [sym_ident] = ACTIONS(1524), - [sym_integer_literal] = ACTIONS(1526), - [anon_sym_SQUOTE] = ACTIONS(1526), - [anon_sym_DQUOTE] = ACTIONS(1526), - [anon_sym_BQUOTE] = ACTIONS(1526), - [sym_bytes_literal] = ACTIONS(1526), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1524), - [sym_at_ident] = ACTIONS(1526), - [sym_hash_ident] = ACTIONS(1526), - [sym_type_ident] = ACTIONS(1526), - [sym_ct_type_ident] = ACTIONS(1526), - [sym_const_ident] = ACTIONS(1524), - [sym_builtin] = ACTIONS(1526), - [anon_sym_LPAREN] = ACTIONS(1526), - [anon_sym_AMP] = ACTIONS(1524), - [anon_sym_static] = ACTIONS(1524), - [anon_sym_tlocal] = ACTIONS(1524), - [anon_sym_SEMI] = ACTIONS(1526), - [anon_sym_fn] = ACTIONS(1524), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_const] = ACTIONS(1524), - [anon_sym_var] = ACTIONS(1524), - [anon_sym_return] = ACTIONS(1524), - [anon_sym_continue] = ACTIONS(1524), - [anon_sym_break] = ACTIONS(1524), - [anon_sym_defer] = ACTIONS(1524), - [anon_sym_assert] = ACTIONS(1524), - [anon_sym_nextcase] = ACTIONS(1524), - [anon_sym_switch] = ACTIONS(1524), - [anon_sym_AMP_AMP] = ACTIONS(1526), - [anon_sym_if] = ACTIONS(1524), - [anon_sym_for] = ACTIONS(1524), - [anon_sym_foreach] = ACTIONS(1524), - [anon_sym_foreach_r] = ACTIONS(1524), - [anon_sym_while] = ACTIONS(1524), - [anon_sym_do] = ACTIONS(1524), - [anon_sym_int] = ACTIONS(1524), - [anon_sym_PLUS] = ACTIONS(1524), - [anon_sym_DASH] = ACTIONS(1524), - [anon_sym_STAR] = ACTIONS(1526), - [anon_sym_asm] = ACTIONS(1524), - [anon_sym_DOLLARassert] = ACTIONS(1524), - [anon_sym_DOLLARerror] = ACTIONS(1524), - [anon_sym_DOLLARecho] = ACTIONS(1524), - [anon_sym_DOLLARif] = ACTIONS(1524), - [anon_sym_DOLLARendif] = ACTIONS(1524), - [anon_sym_DOLLARswitch] = ACTIONS(1524), - [anon_sym_DOLLARfor] = ACTIONS(1524), - [anon_sym_DOLLARforeach] = ACTIONS(1524), - [anon_sym_DOLLARalignof] = ACTIONS(1524), - [anon_sym_DOLLARextnameof] = ACTIONS(1524), - [anon_sym_DOLLARnameof] = ACTIONS(1524), - [anon_sym_DOLLARoffsetof] = ACTIONS(1524), - [anon_sym_DOLLARqnameof] = ACTIONS(1524), - [anon_sym_DOLLARvaconst] = ACTIONS(1524), - [anon_sym_DOLLARvaarg] = ACTIONS(1524), - [anon_sym_DOLLARvaref] = ACTIONS(1524), - [anon_sym_DOLLARvaexpr] = ACTIONS(1524), - [anon_sym_true] = ACTIONS(1524), - [anon_sym_false] = ACTIONS(1524), - [anon_sym_null] = ACTIONS(1524), - [anon_sym_DOLLARvacount] = ACTIONS(1524), - [anon_sym_DOLLARappend] = ACTIONS(1524), - [anon_sym_DOLLARconcat] = ACTIONS(1524), - [anon_sym_DOLLAReval] = ACTIONS(1524), - [anon_sym_DOLLARis_const] = ACTIONS(1524), - [anon_sym_DOLLARsizeof] = ACTIONS(1524), - [anon_sym_DOLLARstringify] = ACTIONS(1524), - [anon_sym_DOLLARand] = ACTIONS(1524), - [anon_sym_DOLLARdefined] = ACTIONS(1524), - [anon_sym_DOLLARembed] = ACTIONS(1524), - [anon_sym_DOLLARor] = ACTIONS(1524), - [anon_sym_DOLLARfeature] = ACTIONS(1524), - [anon_sym_DOLLARassignable] = ACTIONS(1524), - [anon_sym_BANG] = ACTIONS(1526), - [anon_sym_TILDE] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1526), - [anon_sym_DASH_DASH] = ACTIONS(1526), - [anon_sym_typeid] = ACTIONS(1524), - [anon_sym_LBRACE_PIPE] = ACTIONS(1526), - [anon_sym_void] = ACTIONS(1524), - [anon_sym_bool] = ACTIONS(1524), - [anon_sym_char] = ACTIONS(1524), - [anon_sym_ichar] = ACTIONS(1524), - [anon_sym_short] = ACTIONS(1524), - [anon_sym_ushort] = ACTIONS(1524), - [anon_sym_uint] = ACTIONS(1524), - [anon_sym_long] = ACTIONS(1524), - [anon_sym_ulong] = ACTIONS(1524), - [anon_sym_int128] = ACTIONS(1524), - [anon_sym_uint128] = ACTIONS(1524), - [anon_sym_float] = ACTIONS(1524), - [anon_sym_double] = ACTIONS(1524), - [anon_sym_float16] = ACTIONS(1524), - [anon_sym_bfloat16] = ACTIONS(1524), - [anon_sym_float128] = ACTIONS(1524), - [anon_sym_iptr] = ACTIONS(1524), - [anon_sym_uptr] = ACTIONS(1524), - [anon_sym_isz] = ACTIONS(1524), - [anon_sym_usz] = ACTIONS(1524), - [anon_sym_anyfault] = ACTIONS(1524), - [anon_sym_any] = ACTIONS(1524), - [anon_sym_DOLLARtypeof] = ACTIONS(1524), - [anon_sym_DOLLARtypefrom] = ACTIONS(1524), - [anon_sym_DOLLARvatype] = ACTIONS(1524), - [anon_sym_DOLLARevaltype] = ACTIONS(1524), - [sym_real_literal] = ACTIONS(1526), + [sym_ident] = ACTIONS(1437), + [sym_integer_literal] = ACTIONS(1439), + [anon_sym_SQUOTE] = ACTIONS(1439), + [anon_sym_DQUOTE] = ACTIONS(1439), + [anon_sym_BQUOTE] = ACTIONS(1439), + [sym_bytes_literal] = ACTIONS(1439), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1437), + [sym_at_ident] = ACTIONS(1439), + [sym_hash_ident] = ACTIONS(1439), + [sym_type_ident] = ACTIONS(1439), + [sym_ct_type_ident] = ACTIONS(1439), + [sym_const_ident] = ACTIONS(1437), + [sym_builtin] = ACTIONS(1439), + [anon_sym_LPAREN] = ACTIONS(1439), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_static] = ACTIONS(1437), + [anon_sym_tlocal] = ACTIONS(1437), + [anon_sym_SEMI] = ACTIONS(1439), + [anon_sym_fn] = ACTIONS(1437), + [anon_sym_LBRACE] = ACTIONS(1437), + [anon_sym_const] = ACTIONS(1437), + [anon_sym_var] = ACTIONS(1437), + [anon_sym_return] = ACTIONS(1437), + [anon_sym_continue] = ACTIONS(1437), + [anon_sym_break] = ACTIONS(1437), + [anon_sym_defer] = ACTIONS(1437), + [anon_sym_assert] = ACTIONS(1437), + [anon_sym_nextcase] = ACTIONS(1437), + [anon_sym_switch] = ACTIONS(1437), + [anon_sym_AMP_AMP] = ACTIONS(1439), + [anon_sym_if] = ACTIONS(1437), + [anon_sym_for] = ACTIONS(1437), + [anon_sym_foreach] = ACTIONS(1437), + [anon_sym_foreach_r] = ACTIONS(1437), + [anon_sym_while] = ACTIONS(1437), + [anon_sym_do] = ACTIONS(1437), + [anon_sym_int] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_STAR] = ACTIONS(1439), + [anon_sym_asm] = ACTIONS(1437), + [anon_sym_DOLLARassert] = ACTIONS(1437), + [anon_sym_DOLLARerror] = ACTIONS(1437), + [anon_sym_DOLLARecho] = ACTIONS(1437), + [anon_sym_DOLLARif] = ACTIONS(1437), + [anon_sym_DOLLARendif] = ACTIONS(1437), + [anon_sym_DOLLARswitch] = ACTIONS(1437), + [anon_sym_DOLLARfor] = ACTIONS(1437), + [anon_sym_DOLLARforeach] = ACTIONS(1437), + [anon_sym_DOLLARalignof] = ACTIONS(1437), + [anon_sym_DOLLARextnameof] = ACTIONS(1437), + [anon_sym_DOLLARnameof] = ACTIONS(1437), + [anon_sym_DOLLARoffsetof] = ACTIONS(1437), + [anon_sym_DOLLARqnameof] = ACTIONS(1437), + [anon_sym_DOLLARvaconst] = ACTIONS(1437), + [anon_sym_DOLLARvaarg] = ACTIONS(1437), + [anon_sym_DOLLARvaref] = ACTIONS(1437), + [anon_sym_DOLLARvaexpr] = ACTIONS(1437), + [anon_sym_true] = ACTIONS(1437), + [anon_sym_false] = ACTIONS(1437), + [anon_sym_null] = ACTIONS(1437), + [anon_sym_DOLLARvacount] = ACTIONS(1437), + [anon_sym_DOLLARappend] = ACTIONS(1437), + [anon_sym_DOLLARconcat] = ACTIONS(1437), + [anon_sym_DOLLAReval] = ACTIONS(1437), + [anon_sym_DOLLARis_const] = ACTIONS(1437), + [anon_sym_DOLLARsizeof] = ACTIONS(1437), + [anon_sym_DOLLARstringify] = ACTIONS(1437), + [anon_sym_DOLLARand] = ACTIONS(1437), + [anon_sym_DOLLARdefined] = ACTIONS(1437), + [anon_sym_DOLLARembed] = ACTIONS(1437), + [anon_sym_DOLLARor] = ACTIONS(1437), + [anon_sym_DOLLARfeature] = ACTIONS(1437), + [anon_sym_DOLLARassignable] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1439), + [anon_sym_TILDE] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_typeid] = ACTIONS(1437), + [anon_sym_LBRACE_PIPE] = ACTIONS(1439), + [anon_sym_void] = ACTIONS(1437), + [anon_sym_bool] = ACTIONS(1437), + [anon_sym_char] = ACTIONS(1437), + [anon_sym_ichar] = ACTIONS(1437), + [anon_sym_short] = ACTIONS(1437), + [anon_sym_ushort] = ACTIONS(1437), + [anon_sym_uint] = ACTIONS(1437), + [anon_sym_long] = ACTIONS(1437), + [anon_sym_ulong] = ACTIONS(1437), + [anon_sym_int128] = ACTIONS(1437), + [anon_sym_uint128] = ACTIONS(1437), + [anon_sym_float] = ACTIONS(1437), + [anon_sym_double] = ACTIONS(1437), + [anon_sym_float16] = ACTIONS(1437), + [anon_sym_bfloat16] = ACTIONS(1437), + [anon_sym_float128] = ACTIONS(1437), + [anon_sym_iptr] = ACTIONS(1437), + [anon_sym_uptr] = ACTIONS(1437), + [anon_sym_isz] = ACTIONS(1437), + [anon_sym_usz] = ACTIONS(1437), + [anon_sym_anyfault] = ACTIONS(1437), + [anon_sym_any] = ACTIONS(1437), + [anon_sym_DOLLARtypeof] = ACTIONS(1437), + [anon_sym_DOLLARtypefrom] = ACTIONS(1437), + [anon_sym_DOLLARvatype] = ACTIONS(1437), + [anon_sym_DOLLARevaltype] = ACTIONS(1437), + [sym_real_literal] = ACTIONS(1439), }, [776] = { [sym_line_comment] = STATE(776), [sym_doc_comment] = STATE(776), [sym_block_comment] = STATE(776), - [sym_ident] = ACTIONS(1608), - [sym_integer_literal] = ACTIONS(1610), - [anon_sym_SQUOTE] = ACTIONS(1610), - [anon_sym_DQUOTE] = ACTIONS(1610), - [anon_sym_BQUOTE] = ACTIONS(1610), - [sym_bytes_literal] = ACTIONS(1610), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1608), - [sym_at_ident] = ACTIONS(1610), - [sym_hash_ident] = ACTIONS(1610), - [sym_type_ident] = ACTIONS(1610), - [sym_ct_type_ident] = ACTIONS(1610), - [sym_const_ident] = ACTIONS(1608), - [sym_builtin] = ACTIONS(1610), - [anon_sym_LPAREN] = ACTIONS(1610), - [anon_sym_AMP] = ACTIONS(1608), - [anon_sym_static] = ACTIONS(1608), - [anon_sym_tlocal] = ACTIONS(1608), - [anon_sym_SEMI] = ACTIONS(1610), - [anon_sym_fn] = ACTIONS(1608), - [anon_sym_LBRACE] = ACTIONS(1608), - [anon_sym_const] = ACTIONS(1608), - [anon_sym_var] = ACTIONS(1608), - [anon_sym_return] = ACTIONS(1608), - [anon_sym_continue] = ACTIONS(1608), - [anon_sym_break] = ACTIONS(1608), - [anon_sym_defer] = ACTIONS(1608), - [anon_sym_assert] = ACTIONS(1608), - [anon_sym_nextcase] = ACTIONS(1608), - [anon_sym_switch] = ACTIONS(1608), - [anon_sym_AMP_AMP] = ACTIONS(1610), - [anon_sym_if] = ACTIONS(1608), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_foreach] = ACTIONS(1608), - [anon_sym_foreach_r] = ACTIONS(1608), - [anon_sym_while] = ACTIONS(1608), - [anon_sym_do] = ACTIONS(1608), - [anon_sym_int] = ACTIONS(1608), - [anon_sym_PLUS] = ACTIONS(1608), - [anon_sym_DASH] = ACTIONS(1608), - [anon_sym_STAR] = ACTIONS(1610), - [anon_sym_asm] = ACTIONS(1608), - [anon_sym_DOLLARassert] = ACTIONS(1608), - [anon_sym_DOLLARerror] = ACTIONS(1608), - [anon_sym_DOLLARecho] = ACTIONS(1608), - [anon_sym_DOLLARif] = ACTIONS(1608), - [anon_sym_DOLLARendif] = ACTIONS(1608), - [anon_sym_DOLLARswitch] = ACTIONS(1608), - [anon_sym_DOLLARfor] = ACTIONS(1608), - [anon_sym_DOLLARforeach] = ACTIONS(1608), - [anon_sym_DOLLARalignof] = ACTIONS(1608), - [anon_sym_DOLLARextnameof] = ACTIONS(1608), - [anon_sym_DOLLARnameof] = ACTIONS(1608), - [anon_sym_DOLLARoffsetof] = ACTIONS(1608), - [anon_sym_DOLLARqnameof] = ACTIONS(1608), - [anon_sym_DOLLARvaconst] = ACTIONS(1608), - [anon_sym_DOLLARvaarg] = ACTIONS(1608), - [anon_sym_DOLLARvaref] = ACTIONS(1608), - [anon_sym_DOLLARvaexpr] = ACTIONS(1608), - [anon_sym_true] = ACTIONS(1608), - [anon_sym_false] = ACTIONS(1608), - [anon_sym_null] = ACTIONS(1608), - [anon_sym_DOLLARvacount] = ACTIONS(1608), - [anon_sym_DOLLARappend] = ACTIONS(1608), - [anon_sym_DOLLARconcat] = ACTIONS(1608), - [anon_sym_DOLLAReval] = ACTIONS(1608), - [anon_sym_DOLLARis_const] = ACTIONS(1608), - [anon_sym_DOLLARsizeof] = ACTIONS(1608), - [anon_sym_DOLLARstringify] = ACTIONS(1608), - [anon_sym_DOLLARand] = ACTIONS(1608), - [anon_sym_DOLLARdefined] = ACTIONS(1608), - [anon_sym_DOLLARembed] = ACTIONS(1608), - [anon_sym_DOLLARor] = ACTIONS(1608), - [anon_sym_DOLLARfeature] = ACTIONS(1608), - [anon_sym_DOLLARassignable] = ACTIONS(1608), - [anon_sym_BANG] = ACTIONS(1610), - [anon_sym_TILDE] = ACTIONS(1610), - [anon_sym_PLUS_PLUS] = ACTIONS(1610), - [anon_sym_DASH_DASH] = ACTIONS(1610), - [anon_sym_typeid] = ACTIONS(1608), - [anon_sym_LBRACE_PIPE] = ACTIONS(1610), - [anon_sym_void] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_ichar] = ACTIONS(1608), - [anon_sym_short] = ACTIONS(1608), - [anon_sym_ushort] = ACTIONS(1608), - [anon_sym_uint] = ACTIONS(1608), - [anon_sym_long] = ACTIONS(1608), - [anon_sym_ulong] = ACTIONS(1608), - [anon_sym_int128] = ACTIONS(1608), - [anon_sym_uint128] = ACTIONS(1608), - [anon_sym_float] = ACTIONS(1608), - [anon_sym_double] = ACTIONS(1608), - [anon_sym_float16] = ACTIONS(1608), - [anon_sym_bfloat16] = ACTIONS(1608), - [anon_sym_float128] = ACTIONS(1608), - [anon_sym_iptr] = ACTIONS(1608), - [anon_sym_uptr] = ACTIONS(1608), - [anon_sym_isz] = ACTIONS(1608), - [anon_sym_usz] = ACTIONS(1608), - [anon_sym_anyfault] = ACTIONS(1608), - [anon_sym_any] = ACTIONS(1608), - [anon_sym_DOLLARtypeof] = ACTIONS(1608), - [anon_sym_DOLLARtypefrom] = ACTIONS(1608), - [anon_sym_DOLLARvatype] = ACTIONS(1608), - [anon_sym_DOLLARevaltype] = ACTIONS(1608), - [sym_real_literal] = ACTIONS(1610), + [sym_ident] = ACTIONS(1473), + [sym_integer_literal] = ACTIONS(1475), + [anon_sym_SQUOTE] = ACTIONS(1475), + [anon_sym_DQUOTE] = ACTIONS(1475), + [anon_sym_BQUOTE] = ACTIONS(1475), + [sym_bytes_literal] = ACTIONS(1475), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1473), + [sym_at_ident] = ACTIONS(1475), + [sym_hash_ident] = ACTIONS(1475), + [sym_type_ident] = ACTIONS(1475), + [sym_ct_type_ident] = ACTIONS(1475), + [sym_const_ident] = ACTIONS(1473), + [sym_builtin] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1475), + [anon_sym_AMP] = ACTIONS(1473), + [anon_sym_static] = ACTIONS(1473), + [anon_sym_tlocal] = ACTIONS(1473), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_fn] = ACTIONS(1473), + [anon_sym_LBRACE] = ACTIONS(1473), + [anon_sym_const] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(1473), + [anon_sym_return] = ACTIONS(1473), + [anon_sym_continue] = ACTIONS(1473), + [anon_sym_break] = ACTIONS(1473), + [anon_sym_defer] = ACTIONS(1473), + [anon_sym_assert] = ACTIONS(1473), + [anon_sym_nextcase] = ACTIONS(1473), + [anon_sym_switch] = ACTIONS(1473), + [anon_sym_AMP_AMP] = ACTIONS(1475), + [anon_sym_if] = ACTIONS(1473), + [anon_sym_for] = ACTIONS(1473), + [anon_sym_foreach] = ACTIONS(1473), + [anon_sym_foreach_r] = ACTIONS(1473), + [anon_sym_while] = ACTIONS(1473), + [anon_sym_do] = ACTIONS(1473), + [anon_sym_int] = ACTIONS(1473), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1475), + [anon_sym_asm] = ACTIONS(1473), + [anon_sym_DOLLARassert] = ACTIONS(1473), + [anon_sym_DOLLARerror] = ACTIONS(1473), + [anon_sym_DOLLARecho] = ACTIONS(1473), + [anon_sym_DOLLARif] = ACTIONS(1473), + [anon_sym_DOLLARendif] = ACTIONS(1473), + [anon_sym_DOLLARswitch] = ACTIONS(1473), + [anon_sym_DOLLARfor] = ACTIONS(1473), + [anon_sym_DOLLARforeach] = ACTIONS(1473), + [anon_sym_DOLLARalignof] = ACTIONS(1473), + [anon_sym_DOLLARextnameof] = ACTIONS(1473), + [anon_sym_DOLLARnameof] = ACTIONS(1473), + [anon_sym_DOLLARoffsetof] = ACTIONS(1473), + [anon_sym_DOLLARqnameof] = ACTIONS(1473), + [anon_sym_DOLLARvaconst] = ACTIONS(1473), + [anon_sym_DOLLARvaarg] = ACTIONS(1473), + [anon_sym_DOLLARvaref] = ACTIONS(1473), + [anon_sym_DOLLARvaexpr] = ACTIONS(1473), + [anon_sym_true] = ACTIONS(1473), + [anon_sym_false] = ACTIONS(1473), + [anon_sym_null] = ACTIONS(1473), + [anon_sym_DOLLARvacount] = ACTIONS(1473), + [anon_sym_DOLLARappend] = ACTIONS(1473), + [anon_sym_DOLLARconcat] = ACTIONS(1473), + [anon_sym_DOLLAReval] = ACTIONS(1473), + [anon_sym_DOLLARis_const] = ACTIONS(1473), + [anon_sym_DOLLARsizeof] = ACTIONS(1473), + [anon_sym_DOLLARstringify] = ACTIONS(1473), + [anon_sym_DOLLARand] = ACTIONS(1473), + [anon_sym_DOLLARdefined] = ACTIONS(1473), + [anon_sym_DOLLARembed] = ACTIONS(1473), + [anon_sym_DOLLARor] = ACTIONS(1473), + [anon_sym_DOLLARfeature] = ACTIONS(1473), + [anon_sym_DOLLARassignable] = ACTIONS(1473), + [anon_sym_BANG] = ACTIONS(1475), + [anon_sym_TILDE] = ACTIONS(1475), + [anon_sym_PLUS_PLUS] = ACTIONS(1475), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_typeid] = ACTIONS(1473), + [anon_sym_LBRACE_PIPE] = ACTIONS(1475), + [anon_sym_void] = ACTIONS(1473), + [anon_sym_bool] = ACTIONS(1473), + [anon_sym_char] = ACTIONS(1473), + [anon_sym_ichar] = ACTIONS(1473), + [anon_sym_short] = ACTIONS(1473), + [anon_sym_ushort] = ACTIONS(1473), + [anon_sym_uint] = ACTIONS(1473), + [anon_sym_long] = ACTIONS(1473), + [anon_sym_ulong] = ACTIONS(1473), + [anon_sym_int128] = ACTIONS(1473), + [anon_sym_uint128] = ACTIONS(1473), + [anon_sym_float] = ACTIONS(1473), + [anon_sym_double] = ACTIONS(1473), + [anon_sym_float16] = ACTIONS(1473), + [anon_sym_bfloat16] = ACTIONS(1473), + [anon_sym_float128] = ACTIONS(1473), + [anon_sym_iptr] = ACTIONS(1473), + [anon_sym_uptr] = ACTIONS(1473), + [anon_sym_isz] = ACTIONS(1473), + [anon_sym_usz] = ACTIONS(1473), + [anon_sym_anyfault] = ACTIONS(1473), + [anon_sym_any] = ACTIONS(1473), + [anon_sym_DOLLARtypeof] = ACTIONS(1473), + [anon_sym_DOLLARtypefrom] = ACTIONS(1473), + [anon_sym_DOLLARvatype] = ACTIONS(1473), + [anon_sym_DOLLARevaltype] = ACTIONS(1473), + [sym_real_literal] = ACTIONS(1475), }, [777] = { [sym_line_comment] = STATE(777), [sym_doc_comment] = STATE(777), [sym_block_comment] = STATE(777), - [sym_ident] = ACTIONS(1664), - [sym_integer_literal] = ACTIONS(1666), - [anon_sym_SQUOTE] = ACTIONS(1666), - [anon_sym_DQUOTE] = ACTIONS(1666), - [anon_sym_BQUOTE] = ACTIONS(1666), - [sym_bytes_literal] = ACTIONS(1666), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1664), - [sym_at_ident] = ACTIONS(1666), - [sym_hash_ident] = ACTIONS(1666), - [sym_type_ident] = ACTIONS(1666), - [sym_ct_type_ident] = ACTIONS(1666), - [sym_const_ident] = ACTIONS(1664), - [sym_builtin] = ACTIONS(1666), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_static] = ACTIONS(1664), - [anon_sym_tlocal] = ACTIONS(1664), - [anon_sym_SEMI] = ACTIONS(1666), - [anon_sym_fn] = ACTIONS(1664), - [anon_sym_LBRACE] = ACTIONS(1664), - [anon_sym_const] = ACTIONS(1664), - [anon_sym_var] = ACTIONS(1664), - [anon_sym_return] = ACTIONS(1664), - [anon_sym_continue] = ACTIONS(1664), - [anon_sym_break] = ACTIONS(1664), - [anon_sym_defer] = ACTIONS(1664), - [anon_sym_assert] = ACTIONS(1664), - [anon_sym_nextcase] = ACTIONS(1664), - [anon_sym_switch] = ACTIONS(1664), - [anon_sym_AMP_AMP] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_for] = ACTIONS(1664), - [anon_sym_foreach] = ACTIONS(1664), - [anon_sym_foreach_r] = ACTIONS(1664), - [anon_sym_while] = ACTIONS(1664), - [anon_sym_do] = ACTIONS(1664), - [anon_sym_int] = ACTIONS(1664), - [anon_sym_PLUS] = ACTIONS(1664), - [anon_sym_DASH] = ACTIONS(1664), - [anon_sym_STAR] = ACTIONS(1666), - [anon_sym_asm] = ACTIONS(1664), - [anon_sym_DOLLARassert] = ACTIONS(1664), - [anon_sym_DOLLARerror] = ACTIONS(1664), - [anon_sym_DOLLARecho] = ACTIONS(1664), - [anon_sym_DOLLARif] = ACTIONS(1664), - [anon_sym_DOLLARendif] = ACTIONS(1664), - [anon_sym_DOLLARswitch] = ACTIONS(1664), - [anon_sym_DOLLARfor] = ACTIONS(1664), - [anon_sym_DOLLARforeach] = ACTIONS(1664), - [anon_sym_DOLLARalignof] = ACTIONS(1664), - [anon_sym_DOLLARextnameof] = ACTIONS(1664), - [anon_sym_DOLLARnameof] = ACTIONS(1664), - [anon_sym_DOLLARoffsetof] = ACTIONS(1664), - [anon_sym_DOLLARqnameof] = ACTIONS(1664), - [anon_sym_DOLLARvaconst] = ACTIONS(1664), - [anon_sym_DOLLARvaarg] = ACTIONS(1664), - [anon_sym_DOLLARvaref] = ACTIONS(1664), - [anon_sym_DOLLARvaexpr] = ACTIONS(1664), - [anon_sym_true] = ACTIONS(1664), - [anon_sym_false] = ACTIONS(1664), - [anon_sym_null] = ACTIONS(1664), - [anon_sym_DOLLARvacount] = ACTIONS(1664), - [anon_sym_DOLLARappend] = ACTIONS(1664), - [anon_sym_DOLLARconcat] = ACTIONS(1664), - [anon_sym_DOLLAReval] = ACTIONS(1664), - [anon_sym_DOLLARis_const] = ACTIONS(1664), - [anon_sym_DOLLARsizeof] = ACTIONS(1664), - [anon_sym_DOLLARstringify] = ACTIONS(1664), - [anon_sym_DOLLARand] = ACTIONS(1664), - [anon_sym_DOLLARdefined] = ACTIONS(1664), - [anon_sym_DOLLARembed] = ACTIONS(1664), - [anon_sym_DOLLARor] = ACTIONS(1664), - [anon_sym_DOLLARfeature] = ACTIONS(1664), - [anon_sym_DOLLARassignable] = ACTIONS(1664), - [anon_sym_BANG] = ACTIONS(1666), - [anon_sym_TILDE] = ACTIONS(1666), - [anon_sym_PLUS_PLUS] = ACTIONS(1666), - [anon_sym_DASH_DASH] = ACTIONS(1666), - [anon_sym_typeid] = ACTIONS(1664), - [anon_sym_LBRACE_PIPE] = ACTIONS(1666), - [anon_sym_void] = ACTIONS(1664), - [anon_sym_bool] = ACTIONS(1664), - [anon_sym_char] = ACTIONS(1664), - [anon_sym_ichar] = ACTIONS(1664), - [anon_sym_short] = ACTIONS(1664), - [anon_sym_ushort] = ACTIONS(1664), - [anon_sym_uint] = ACTIONS(1664), - [anon_sym_long] = ACTIONS(1664), - [anon_sym_ulong] = ACTIONS(1664), - [anon_sym_int128] = ACTIONS(1664), - [anon_sym_uint128] = ACTIONS(1664), - [anon_sym_float] = ACTIONS(1664), - [anon_sym_double] = ACTIONS(1664), - [anon_sym_float16] = ACTIONS(1664), - [anon_sym_bfloat16] = ACTIONS(1664), - [anon_sym_float128] = ACTIONS(1664), - [anon_sym_iptr] = ACTIONS(1664), - [anon_sym_uptr] = ACTIONS(1664), - [anon_sym_isz] = ACTIONS(1664), - [anon_sym_usz] = ACTIONS(1664), - [anon_sym_anyfault] = ACTIONS(1664), - [anon_sym_any] = ACTIONS(1664), - [anon_sym_DOLLARtypeof] = ACTIONS(1664), - [anon_sym_DOLLARtypefrom] = ACTIONS(1664), - [anon_sym_DOLLARvatype] = ACTIONS(1664), - [anon_sym_DOLLARevaltype] = ACTIONS(1664), - [sym_real_literal] = ACTIONS(1666), + [sym_ident] = ACTIONS(1477), + [sym_integer_literal] = ACTIONS(1479), + [anon_sym_SQUOTE] = ACTIONS(1479), + [anon_sym_DQUOTE] = ACTIONS(1479), + [anon_sym_BQUOTE] = ACTIONS(1479), + [sym_bytes_literal] = ACTIONS(1479), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1477), + [sym_at_ident] = ACTIONS(1479), + [sym_hash_ident] = ACTIONS(1479), + [sym_type_ident] = ACTIONS(1479), + [sym_ct_type_ident] = ACTIONS(1479), + [sym_const_ident] = ACTIONS(1477), + [sym_builtin] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1479), + [anon_sym_AMP] = ACTIONS(1477), + [anon_sym_static] = ACTIONS(1477), + [anon_sym_tlocal] = ACTIONS(1477), + [anon_sym_SEMI] = ACTIONS(1479), + [anon_sym_fn] = ACTIONS(1477), + [anon_sym_LBRACE] = ACTIONS(1477), + [anon_sym_const] = ACTIONS(1477), + [anon_sym_var] = ACTIONS(1477), + [anon_sym_return] = ACTIONS(1477), + [anon_sym_continue] = ACTIONS(1477), + [anon_sym_break] = ACTIONS(1477), + [anon_sym_defer] = ACTIONS(1477), + [anon_sym_assert] = ACTIONS(1477), + [anon_sym_nextcase] = ACTIONS(1477), + [anon_sym_switch] = ACTIONS(1477), + [anon_sym_AMP_AMP] = ACTIONS(1479), + [anon_sym_if] = ACTIONS(1477), + [anon_sym_for] = ACTIONS(1477), + [anon_sym_foreach] = ACTIONS(1477), + [anon_sym_foreach_r] = ACTIONS(1477), + [anon_sym_while] = ACTIONS(1477), + [anon_sym_do] = ACTIONS(1477), + [anon_sym_int] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1477), + [anon_sym_DASH] = ACTIONS(1477), + [anon_sym_STAR] = ACTIONS(1479), + [anon_sym_asm] = ACTIONS(1477), + [anon_sym_DOLLARassert] = ACTIONS(1477), + [anon_sym_DOLLARerror] = ACTIONS(1477), + [anon_sym_DOLLARecho] = ACTIONS(1477), + [anon_sym_DOLLARif] = ACTIONS(1477), + [anon_sym_DOLLARendif] = ACTIONS(1477), + [anon_sym_DOLLARswitch] = ACTIONS(1477), + [anon_sym_DOLLARfor] = ACTIONS(1477), + [anon_sym_DOLLARforeach] = ACTIONS(1477), + [anon_sym_DOLLARalignof] = ACTIONS(1477), + [anon_sym_DOLLARextnameof] = ACTIONS(1477), + [anon_sym_DOLLARnameof] = ACTIONS(1477), + [anon_sym_DOLLARoffsetof] = ACTIONS(1477), + [anon_sym_DOLLARqnameof] = ACTIONS(1477), + [anon_sym_DOLLARvaconst] = ACTIONS(1477), + [anon_sym_DOLLARvaarg] = ACTIONS(1477), + [anon_sym_DOLLARvaref] = ACTIONS(1477), + [anon_sym_DOLLARvaexpr] = ACTIONS(1477), + [anon_sym_true] = ACTIONS(1477), + [anon_sym_false] = ACTIONS(1477), + [anon_sym_null] = ACTIONS(1477), + [anon_sym_DOLLARvacount] = ACTIONS(1477), + [anon_sym_DOLLARappend] = ACTIONS(1477), + [anon_sym_DOLLARconcat] = ACTIONS(1477), + [anon_sym_DOLLAReval] = ACTIONS(1477), + [anon_sym_DOLLARis_const] = ACTIONS(1477), + [anon_sym_DOLLARsizeof] = ACTIONS(1477), + [anon_sym_DOLLARstringify] = ACTIONS(1477), + [anon_sym_DOLLARand] = ACTIONS(1477), + [anon_sym_DOLLARdefined] = ACTIONS(1477), + [anon_sym_DOLLARembed] = ACTIONS(1477), + [anon_sym_DOLLARor] = ACTIONS(1477), + [anon_sym_DOLLARfeature] = ACTIONS(1477), + [anon_sym_DOLLARassignable] = ACTIONS(1477), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_TILDE] = ACTIONS(1479), + [anon_sym_PLUS_PLUS] = ACTIONS(1479), + [anon_sym_DASH_DASH] = ACTIONS(1479), + [anon_sym_typeid] = ACTIONS(1477), + [anon_sym_LBRACE_PIPE] = ACTIONS(1479), + [anon_sym_void] = ACTIONS(1477), + [anon_sym_bool] = ACTIONS(1477), + [anon_sym_char] = ACTIONS(1477), + [anon_sym_ichar] = ACTIONS(1477), + [anon_sym_short] = ACTIONS(1477), + [anon_sym_ushort] = ACTIONS(1477), + [anon_sym_uint] = ACTIONS(1477), + [anon_sym_long] = ACTIONS(1477), + [anon_sym_ulong] = ACTIONS(1477), + [anon_sym_int128] = ACTIONS(1477), + [anon_sym_uint128] = ACTIONS(1477), + [anon_sym_float] = ACTIONS(1477), + [anon_sym_double] = ACTIONS(1477), + [anon_sym_float16] = ACTIONS(1477), + [anon_sym_bfloat16] = ACTIONS(1477), + [anon_sym_float128] = ACTIONS(1477), + [anon_sym_iptr] = ACTIONS(1477), + [anon_sym_uptr] = ACTIONS(1477), + [anon_sym_isz] = ACTIONS(1477), + [anon_sym_usz] = ACTIONS(1477), + [anon_sym_anyfault] = ACTIONS(1477), + [anon_sym_any] = ACTIONS(1477), + [anon_sym_DOLLARtypeof] = ACTIONS(1477), + [anon_sym_DOLLARtypefrom] = ACTIONS(1477), + [anon_sym_DOLLARvatype] = ACTIONS(1477), + [anon_sym_DOLLARevaltype] = ACTIONS(1477), + [sym_real_literal] = ACTIONS(1479), }, [778] = { [sym_line_comment] = STATE(778), [sym_doc_comment] = STATE(778), [sym_block_comment] = STATE(778), - [sym_ident] = ACTIONS(1660), - [sym_integer_literal] = ACTIONS(1662), - [anon_sym_SQUOTE] = ACTIONS(1662), - [anon_sym_DQUOTE] = ACTIONS(1662), - [anon_sym_BQUOTE] = ACTIONS(1662), - [sym_bytes_literal] = ACTIONS(1662), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1660), - [sym_at_ident] = ACTIONS(1662), - [sym_hash_ident] = ACTIONS(1662), - [sym_type_ident] = ACTIONS(1662), - [sym_ct_type_ident] = ACTIONS(1662), - [sym_const_ident] = ACTIONS(1660), - [sym_builtin] = ACTIONS(1662), - [anon_sym_LPAREN] = ACTIONS(1662), - [anon_sym_AMP] = ACTIONS(1660), - [anon_sym_static] = ACTIONS(1660), - [anon_sym_tlocal] = ACTIONS(1660), - [anon_sym_SEMI] = ACTIONS(1662), - [anon_sym_fn] = ACTIONS(1660), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_const] = ACTIONS(1660), - [anon_sym_var] = ACTIONS(1660), - [anon_sym_return] = ACTIONS(1660), - [anon_sym_continue] = ACTIONS(1660), - [anon_sym_break] = ACTIONS(1660), - [anon_sym_defer] = ACTIONS(1660), - [anon_sym_assert] = ACTIONS(1660), - [anon_sym_nextcase] = ACTIONS(1660), - [anon_sym_switch] = ACTIONS(1660), - [anon_sym_AMP_AMP] = ACTIONS(1662), - [anon_sym_if] = ACTIONS(1660), - [anon_sym_for] = ACTIONS(1660), - [anon_sym_foreach] = ACTIONS(1660), - [anon_sym_foreach_r] = ACTIONS(1660), - [anon_sym_while] = ACTIONS(1660), - [anon_sym_do] = ACTIONS(1660), - [anon_sym_int] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1660), - [anon_sym_DASH] = ACTIONS(1660), - [anon_sym_STAR] = ACTIONS(1662), - [anon_sym_asm] = ACTIONS(1660), - [anon_sym_DOLLARassert] = ACTIONS(1660), - [anon_sym_DOLLARerror] = ACTIONS(1660), - [anon_sym_DOLLARecho] = ACTIONS(1660), - [anon_sym_DOLLARif] = ACTIONS(1660), - [anon_sym_DOLLARendif] = ACTIONS(1660), - [anon_sym_DOLLARswitch] = ACTIONS(1660), - [anon_sym_DOLLARfor] = ACTIONS(1660), - [anon_sym_DOLLARforeach] = ACTIONS(1660), - [anon_sym_DOLLARalignof] = ACTIONS(1660), - [anon_sym_DOLLARextnameof] = ACTIONS(1660), - [anon_sym_DOLLARnameof] = ACTIONS(1660), - [anon_sym_DOLLARoffsetof] = ACTIONS(1660), - [anon_sym_DOLLARqnameof] = ACTIONS(1660), - [anon_sym_DOLLARvaconst] = ACTIONS(1660), - [anon_sym_DOLLARvaarg] = ACTIONS(1660), - [anon_sym_DOLLARvaref] = ACTIONS(1660), - [anon_sym_DOLLARvaexpr] = ACTIONS(1660), - [anon_sym_true] = ACTIONS(1660), - [anon_sym_false] = ACTIONS(1660), - [anon_sym_null] = ACTIONS(1660), - [anon_sym_DOLLARvacount] = ACTIONS(1660), - [anon_sym_DOLLARappend] = ACTIONS(1660), - [anon_sym_DOLLARconcat] = ACTIONS(1660), - [anon_sym_DOLLAReval] = ACTIONS(1660), - [anon_sym_DOLLARis_const] = ACTIONS(1660), - [anon_sym_DOLLARsizeof] = ACTIONS(1660), - [anon_sym_DOLLARstringify] = ACTIONS(1660), - [anon_sym_DOLLARand] = ACTIONS(1660), - [anon_sym_DOLLARdefined] = ACTIONS(1660), - [anon_sym_DOLLARembed] = ACTIONS(1660), - [anon_sym_DOLLARor] = ACTIONS(1660), - [anon_sym_DOLLARfeature] = ACTIONS(1660), - [anon_sym_DOLLARassignable] = ACTIONS(1660), - [anon_sym_BANG] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1662), - [anon_sym_PLUS_PLUS] = ACTIONS(1662), - [anon_sym_DASH_DASH] = ACTIONS(1662), - [anon_sym_typeid] = ACTIONS(1660), - [anon_sym_LBRACE_PIPE] = ACTIONS(1662), - [anon_sym_void] = ACTIONS(1660), - [anon_sym_bool] = ACTIONS(1660), - [anon_sym_char] = ACTIONS(1660), - [anon_sym_ichar] = ACTIONS(1660), - [anon_sym_short] = ACTIONS(1660), - [anon_sym_ushort] = ACTIONS(1660), - [anon_sym_uint] = ACTIONS(1660), - [anon_sym_long] = ACTIONS(1660), - [anon_sym_ulong] = ACTIONS(1660), - [anon_sym_int128] = ACTIONS(1660), - [anon_sym_uint128] = ACTIONS(1660), - [anon_sym_float] = ACTIONS(1660), - [anon_sym_double] = ACTIONS(1660), - [anon_sym_float16] = ACTIONS(1660), - [anon_sym_bfloat16] = ACTIONS(1660), - [anon_sym_float128] = ACTIONS(1660), - [anon_sym_iptr] = ACTIONS(1660), - [anon_sym_uptr] = ACTIONS(1660), - [anon_sym_isz] = ACTIONS(1660), - [anon_sym_usz] = ACTIONS(1660), - [anon_sym_anyfault] = ACTIONS(1660), - [anon_sym_any] = ACTIONS(1660), - [anon_sym_DOLLARtypeof] = ACTIONS(1660), - [anon_sym_DOLLARtypefrom] = ACTIONS(1660), - [anon_sym_DOLLARvatype] = ACTIONS(1660), - [anon_sym_DOLLARevaltype] = ACTIONS(1660), - [sym_real_literal] = ACTIONS(1662), + [sym_ident] = ACTIONS(1493), + [sym_integer_literal] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1495), + [anon_sym_DQUOTE] = ACTIONS(1495), + [anon_sym_BQUOTE] = ACTIONS(1495), + [sym_bytes_literal] = ACTIONS(1495), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1493), + [sym_at_ident] = ACTIONS(1495), + [sym_hash_ident] = ACTIONS(1495), + [sym_type_ident] = ACTIONS(1495), + [sym_ct_type_ident] = ACTIONS(1495), + [sym_const_ident] = ACTIONS(1493), + [sym_builtin] = ACTIONS(1495), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1493), + [anon_sym_static] = ACTIONS(1493), + [anon_sym_tlocal] = ACTIONS(1493), + [anon_sym_SEMI] = ACTIONS(1495), + [anon_sym_fn] = ACTIONS(1493), + [anon_sym_LBRACE] = ACTIONS(1493), + [anon_sym_const] = ACTIONS(1493), + [anon_sym_var] = ACTIONS(1493), + [anon_sym_return] = ACTIONS(1493), + [anon_sym_continue] = ACTIONS(1493), + [anon_sym_break] = ACTIONS(1493), + [anon_sym_defer] = ACTIONS(1493), + [anon_sym_assert] = ACTIONS(1493), + [anon_sym_nextcase] = ACTIONS(1493), + [anon_sym_switch] = ACTIONS(1493), + [anon_sym_AMP_AMP] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1493), + [anon_sym_for] = ACTIONS(1493), + [anon_sym_foreach] = ACTIONS(1493), + [anon_sym_foreach_r] = ACTIONS(1493), + [anon_sym_while] = ACTIONS(1493), + [anon_sym_do] = ACTIONS(1493), + [anon_sym_int] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1493), + [anon_sym_DASH] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1495), + [anon_sym_asm] = ACTIONS(1493), + [anon_sym_DOLLARassert] = ACTIONS(1493), + [anon_sym_DOLLARerror] = ACTIONS(1493), + [anon_sym_DOLLARecho] = ACTIONS(1493), + [anon_sym_DOLLARif] = ACTIONS(1493), + [anon_sym_DOLLARendif] = ACTIONS(1493), + [anon_sym_DOLLARswitch] = ACTIONS(1493), + [anon_sym_DOLLARfor] = ACTIONS(1493), + [anon_sym_DOLLARforeach] = ACTIONS(1493), + [anon_sym_DOLLARalignof] = ACTIONS(1493), + [anon_sym_DOLLARextnameof] = ACTIONS(1493), + [anon_sym_DOLLARnameof] = ACTIONS(1493), + [anon_sym_DOLLARoffsetof] = ACTIONS(1493), + [anon_sym_DOLLARqnameof] = ACTIONS(1493), + [anon_sym_DOLLARvaconst] = ACTIONS(1493), + [anon_sym_DOLLARvaarg] = ACTIONS(1493), + [anon_sym_DOLLARvaref] = ACTIONS(1493), + [anon_sym_DOLLARvaexpr] = ACTIONS(1493), + [anon_sym_true] = ACTIONS(1493), + [anon_sym_false] = ACTIONS(1493), + [anon_sym_null] = ACTIONS(1493), + [anon_sym_DOLLARvacount] = ACTIONS(1493), + [anon_sym_DOLLARappend] = ACTIONS(1493), + [anon_sym_DOLLARconcat] = ACTIONS(1493), + [anon_sym_DOLLAReval] = ACTIONS(1493), + [anon_sym_DOLLARis_const] = ACTIONS(1493), + [anon_sym_DOLLARsizeof] = ACTIONS(1493), + [anon_sym_DOLLARstringify] = ACTIONS(1493), + [anon_sym_DOLLARand] = ACTIONS(1493), + [anon_sym_DOLLARdefined] = ACTIONS(1493), + [anon_sym_DOLLARembed] = ACTIONS(1493), + [anon_sym_DOLLARor] = ACTIONS(1493), + [anon_sym_DOLLARfeature] = ACTIONS(1493), + [anon_sym_DOLLARassignable] = ACTIONS(1493), + [anon_sym_BANG] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(1495), + [anon_sym_PLUS_PLUS] = ACTIONS(1495), + [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_typeid] = ACTIONS(1493), + [anon_sym_LBRACE_PIPE] = ACTIONS(1495), + [anon_sym_void] = ACTIONS(1493), + [anon_sym_bool] = ACTIONS(1493), + [anon_sym_char] = ACTIONS(1493), + [anon_sym_ichar] = ACTIONS(1493), + [anon_sym_short] = ACTIONS(1493), + [anon_sym_ushort] = ACTIONS(1493), + [anon_sym_uint] = ACTIONS(1493), + [anon_sym_long] = ACTIONS(1493), + [anon_sym_ulong] = ACTIONS(1493), + [anon_sym_int128] = ACTIONS(1493), + [anon_sym_uint128] = ACTIONS(1493), + [anon_sym_float] = ACTIONS(1493), + [anon_sym_double] = ACTIONS(1493), + [anon_sym_float16] = ACTIONS(1493), + [anon_sym_bfloat16] = ACTIONS(1493), + [anon_sym_float128] = ACTIONS(1493), + [anon_sym_iptr] = ACTIONS(1493), + [anon_sym_uptr] = ACTIONS(1493), + [anon_sym_isz] = ACTIONS(1493), + [anon_sym_usz] = ACTIONS(1493), + [anon_sym_anyfault] = ACTIONS(1493), + [anon_sym_any] = ACTIONS(1493), + [anon_sym_DOLLARtypeof] = ACTIONS(1493), + [anon_sym_DOLLARtypefrom] = ACTIONS(1493), + [anon_sym_DOLLARvatype] = ACTIONS(1493), + [anon_sym_DOLLARevaltype] = ACTIONS(1493), + [sym_real_literal] = ACTIONS(1495), }, [779] = { [sym_line_comment] = STATE(779), [sym_doc_comment] = STATE(779), [sym_block_comment] = STATE(779), - [sym_ident] = ACTIONS(1496), - [sym_integer_literal] = ACTIONS(1498), - [anon_sym_SQUOTE] = ACTIONS(1498), - [anon_sym_DQUOTE] = ACTIONS(1498), - [anon_sym_BQUOTE] = ACTIONS(1498), - [sym_bytes_literal] = ACTIONS(1498), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1496), - [sym_at_ident] = ACTIONS(1498), - [sym_hash_ident] = ACTIONS(1498), - [sym_type_ident] = ACTIONS(1498), - [sym_ct_type_ident] = ACTIONS(1498), - [sym_const_ident] = ACTIONS(1496), - [sym_builtin] = ACTIONS(1498), - [anon_sym_LPAREN] = ACTIONS(1498), - [anon_sym_AMP] = ACTIONS(1496), - [anon_sym_static] = ACTIONS(1496), - [anon_sym_tlocal] = ACTIONS(1496), - [anon_sym_SEMI] = ACTIONS(1498), - [anon_sym_fn] = ACTIONS(1496), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_const] = ACTIONS(1496), - [anon_sym_var] = ACTIONS(1496), - [anon_sym_return] = ACTIONS(1496), - [anon_sym_continue] = ACTIONS(1496), - [anon_sym_break] = ACTIONS(1496), - [anon_sym_defer] = ACTIONS(1496), - [anon_sym_assert] = ACTIONS(1496), - [anon_sym_nextcase] = ACTIONS(1496), - [anon_sym_switch] = ACTIONS(1496), - [anon_sym_AMP_AMP] = ACTIONS(1498), - [anon_sym_if] = ACTIONS(1496), - [anon_sym_for] = ACTIONS(1496), - [anon_sym_foreach] = ACTIONS(1496), - [anon_sym_foreach_r] = ACTIONS(1496), - [anon_sym_while] = ACTIONS(1496), - [anon_sym_do] = ACTIONS(1496), - [anon_sym_int] = ACTIONS(1496), - [anon_sym_PLUS] = ACTIONS(1496), - [anon_sym_DASH] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(1498), - [anon_sym_asm] = ACTIONS(1496), - [anon_sym_DOLLARassert] = ACTIONS(1496), - [anon_sym_DOLLARerror] = ACTIONS(1496), - [anon_sym_DOLLARecho] = ACTIONS(1496), - [anon_sym_DOLLARif] = ACTIONS(1496), - [anon_sym_DOLLARswitch] = ACTIONS(1496), - [anon_sym_DOLLARfor] = ACTIONS(1496), - [anon_sym_DOLLARforeach] = ACTIONS(1496), - [anon_sym_DOLLARendforeach] = ACTIONS(1496), - [anon_sym_DOLLARalignof] = ACTIONS(1496), - [anon_sym_DOLLARextnameof] = ACTIONS(1496), - [anon_sym_DOLLARnameof] = ACTIONS(1496), - [anon_sym_DOLLARoffsetof] = ACTIONS(1496), - [anon_sym_DOLLARqnameof] = ACTIONS(1496), - [anon_sym_DOLLARvaconst] = ACTIONS(1496), - [anon_sym_DOLLARvaarg] = ACTIONS(1496), - [anon_sym_DOLLARvaref] = ACTIONS(1496), - [anon_sym_DOLLARvaexpr] = ACTIONS(1496), - [anon_sym_true] = ACTIONS(1496), - [anon_sym_false] = ACTIONS(1496), - [anon_sym_null] = ACTIONS(1496), - [anon_sym_DOLLARvacount] = ACTIONS(1496), - [anon_sym_DOLLARappend] = ACTIONS(1496), - [anon_sym_DOLLARconcat] = ACTIONS(1496), - [anon_sym_DOLLAReval] = ACTIONS(1496), - [anon_sym_DOLLARis_const] = ACTIONS(1496), - [anon_sym_DOLLARsizeof] = ACTIONS(1496), - [anon_sym_DOLLARstringify] = ACTIONS(1496), - [anon_sym_DOLLARand] = ACTIONS(1496), - [anon_sym_DOLLARdefined] = ACTIONS(1496), - [anon_sym_DOLLARembed] = ACTIONS(1496), - [anon_sym_DOLLARor] = ACTIONS(1496), - [anon_sym_DOLLARfeature] = ACTIONS(1496), - [anon_sym_DOLLARassignable] = ACTIONS(1496), - [anon_sym_BANG] = ACTIONS(1498), - [anon_sym_TILDE] = ACTIONS(1498), - [anon_sym_PLUS_PLUS] = ACTIONS(1498), - [anon_sym_DASH_DASH] = ACTIONS(1498), - [anon_sym_typeid] = ACTIONS(1496), - [anon_sym_LBRACE_PIPE] = ACTIONS(1498), - [anon_sym_void] = ACTIONS(1496), - [anon_sym_bool] = ACTIONS(1496), - [anon_sym_char] = ACTIONS(1496), - [anon_sym_ichar] = ACTIONS(1496), - [anon_sym_short] = ACTIONS(1496), - [anon_sym_ushort] = ACTIONS(1496), - [anon_sym_uint] = ACTIONS(1496), - [anon_sym_long] = ACTIONS(1496), - [anon_sym_ulong] = ACTIONS(1496), - [anon_sym_int128] = ACTIONS(1496), - [anon_sym_uint128] = ACTIONS(1496), - [anon_sym_float] = ACTIONS(1496), - [anon_sym_double] = ACTIONS(1496), - [anon_sym_float16] = ACTIONS(1496), - [anon_sym_bfloat16] = ACTIONS(1496), - [anon_sym_float128] = ACTIONS(1496), - [anon_sym_iptr] = ACTIONS(1496), - [anon_sym_uptr] = ACTIONS(1496), - [anon_sym_isz] = ACTIONS(1496), - [anon_sym_usz] = ACTIONS(1496), - [anon_sym_anyfault] = ACTIONS(1496), - [anon_sym_any] = ACTIONS(1496), - [anon_sym_DOLLARtypeof] = ACTIONS(1496), - [anon_sym_DOLLARtypefrom] = ACTIONS(1496), - [anon_sym_DOLLARvatype] = ACTIONS(1496), - [anon_sym_DOLLARevaltype] = ACTIONS(1496), - [sym_real_literal] = ACTIONS(1498), + [sym_ident] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1515), + [anon_sym_SQUOTE] = ACTIONS(1515), + [anon_sym_DQUOTE] = ACTIONS(1515), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_bytes_literal] = ACTIONS(1515), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1513), + [sym_at_ident] = ACTIONS(1515), + [sym_hash_ident] = ACTIONS(1515), + [sym_type_ident] = ACTIONS(1515), + [sym_ct_type_ident] = ACTIONS(1515), + [sym_const_ident] = ACTIONS(1513), + [sym_builtin] = ACTIONS(1515), + [anon_sym_LPAREN] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1513), + [anon_sym_static] = ACTIONS(1513), + [anon_sym_tlocal] = ACTIONS(1513), + [anon_sym_SEMI] = ACTIONS(1515), + [anon_sym_fn] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1513), + [anon_sym_const] = ACTIONS(1513), + [anon_sym_var] = ACTIONS(1513), + [anon_sym_return] = ACTIONS(1513), + [anon_sym_continue] = ACTIONS(1513), + [anon_sym_break] = ACTIONS(1513), + [anon_sym_defer] = ACTIONS(1513), + [anon_sym_assert] = ACTIONS(1513), + [anon_sym_nextcase] = ACTIONS(1513), + [anon_sym_switch] = ACTIONS(1513), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [anon_sym_if] = ACTIONS(1513), + [anon_sym_for] = ACTIONS(1513), + [anon_sym_foreach] = ACTIONS(1513), + [anon_sym_foreach_r] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1513), + [anon_sym_do] = ACTIONS(1513), + [anon_sym_int] = ACTIONS(1513), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(1515), + [anon_sym_asm] = ACTIONS(1513), + [anon_sym_DOLLARassert] = ACTIONS(1513), + [anon_sym_DOLLARerror] = ACTIONS(1513), + [anon_sym_DOLLARecho] = ACTIONS(1513), + [anon_sym_DOLLARif] = ACTIONS(1513), + [anon_sym_DOLLARendif] = ACTIONS(1513), + [anon_sym_DOLLARswitch] = ACTIONS(1513), + [anon_sym_DOLLARfor] = ACTIONS(1513), + [anon_sym_DOLLARforeach] = ACTIONS(1513), + [anon_sym_DOLLARalignof] = ACTIONS(1513), + [anon_sym_DOLLARextnameof] = ACTIONS(1513), + [anon_sym_DOLLARnameof] = ACTIONS(1513), + [anon_sym_DOLLARoffsetof] = ACTIONS(1513), + [anon_sym_DOLLARqnameof] = ACTIONS(1513), + [anon_sym_DOLLARvaconst] = ACTIONS(1513), + [anon_sym_DOLLARvaarg] = ACTIONS(1513), + [anon_sym_DOLLARvaref] = ACTIONS(1513), + [anon_sym_DOLLARvaexpr] = ACTIONS(1513), + [anon_sym_true] = ACTIONS(1513), + [anon_sym_false] = ACTIONS(1513), + [anon_sym_null] = ACTIONS(1513), + [anon_sym_DOLLARvacount] = ACTIONS(1513), + [anon_sym_DOLLARappend] = ACTIONS(1513), + [anon_sym_DOLLARconcat] = ACTIONS(1513), + [anon_sym_DOLLAReval] = ACTIONS(1513), + [anon_sym_DOLLARis_const] = ACTIONS(1513), + [anon_sym_DOLLARsizeof] = ACTIONS(1513), + [anon_sym_DOLLARstringify] = ACTIONS(1513), + [anon_sym_DOLLARand] = ACTIONS(1513), + [anon_sym_DOLLARdefined] = ACTIONS(1513), + [anon_sym_DOLLARembed] = ACTIONS(1513), + [anon_sym_DOLLARor] = ACTIONS(1513), + [anon_sym_DOLLARfeature] = ACTIONS(1513), + [anon_sym_DOLLARassignable] = ACTIONS(1513), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_typeid] = ACTIONS(1513), + [anon_sym_LBRACE_PIPE] = ACTIONS(1515), + [anon_sym_void] = ACTIONS(1513), + [anon_sym_bool] = ACTIONS(1513), + [anon_sym_char] = ACTIONS(1513), + [anon_sym_ichar] = ACTIONS(1513), + [anon_sym_short] = ACTIONS(1513), + [anon_sym_ushort] = ACTIONS(1513), + [anon_sym_uint] = ACTIONS(1513), + [anon_sym_long] = ACTIONS(1513), + [anon_sym_ulong] = ACTIONS(1513), + [anon_sym_int128] = ACTIONS(1513), + [anon_sym_uint128] = ACTIONS(1513), + [anon_sym_float] = ACTIONS(1513), + [anon_sym_double] = ACTIONS(1513), + [anon_sym_float16] = ACTIONS(1513), + [anon_sym_bfloat16] = ACTIONS(1513), + [anon_sym_float128] = ACTIONS(1513), + [anon_sym_iptr] = ACTIONS(1513), + [anon_sym_uptr] = ACTIONS(1513), + [anon_sym_isz] = ACTIONS(1513), + [anon_sym_usz] = ACTIONS(1513), + [anon_sym_anyfault] = ACTIONS(1513), + [anon_sym_any] = ACTIONS(1513), + [anon_sym_DOLLARtypeof] = ACTIONS(1513), + [anon_sym_DOLLARtypefrom] = ACTIONS(1513), + [anon_sym_DOLLARvatype] = ACTIONS(1513), + [anon_sym_DOLLARevaltype] = ACTIONS(1513), + [sym_real_literal] = ACTIONS(1515), }, [780] = { [sym_line_comment] = STATE(780), [sym_doc_comment] = STATE(780), [sym_block_comment] = STATE(780), - [sym_ident] = ACTIONS(1584), - [sym_integer_literal] = ACTIONS(1586), - [anon_sym_SQUOTE] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1586), - [anon_sym_BQUOTE] = ACTIONS(1586), - [sym_bytes_literal] = ACTIONS(1586), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1584), - [sym_at_ident] = ACTIONS(1586), - [sym_hash_ident] = ACTIONS(1586), - [sym_type_ident] = ACTIONS(1586), - [sym_ct_type_ident] = ACTIONS(1586), - [sym_const_ident] = ACTIONS(1584), - [sym_builtin] = ACTIONS(1586), - [anon_sym_LPAREN] = ACTIONS(1586), - [anon_sym_AMP] = ACTIONS(1584), - [anon_sym_static] = ACTIONS(1584), - [anon_sym_tlocal] = ACTIONS(1584), - [anon_sym_SEMI] = ACTIONS(1586), - [anon_sym_fn] = ACTIONS(1584), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_const] = ACTIONS(1584), - [anon_sym_var] = ACTIONS(1584), - [anon_sym_return] = ACTIONS(1584), - [anon_sym_continue] = ACTIONS(1584), - [anon_sym_break] = ACTIONS(1584), - [anon_sym_defer] = ACTIONS(1584), - [anon_sym_assert] = ACTIONS(1584), - [anon_sym_nextcase] = ACTIONS(1584), - [anon_sym_switch] = ACTIONS(1584), - [anon_sym_AMP_AMP] = ACTIONS(1586), - [anon_sym_if] = ACTIONS(1584), - [anon_sym_for] = ACTIONS(1584), - [anon_sym_foreach] = ACTIONS(1584), - [anon_sym_foreach_r] = ACTIONS(1584), - [anon_sym_while] = ACTIONS(1584), - [anon_sym_do] = ACTIONS(1584), - [anon_sym_int] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1584), - [anon_sym_DASH] = ACTIONS(1584), - [anon_sym_STAR] = ACTIONS(1586), - [anon_sym_asm] = ACTIONS(1584), - [anon_sym_DOLLARassert] = ACTIONS(1584), - [anon_sym_DOLLARerror] = ACTIONS(1584), - [anon_sym_DOLLARecho] = ACTIONS(1584), - [anon_sym_DOLLARif] = ACTIONS(1584), - [anon_sym_DOLLARendif] = ACTIONS(1584), - [anon_sym_DOLLARswitch] = ACTIONS(1584), - [anon_sym_DOLLARfor] = ACTIONS(1584), - [anon_sym_DOLLARforeach] = ACTIONS(1584), - [anon_sym_DOLLARalignof] = ACTIONS(1584), - [anon_sym_DOLLARextnameof] = ACTIONS(1584), - [anon_sym_DOLLARnameof] = ACTIONS(1584), - [anon_sym_DOLLARoffsetof] = ACTIONS(1584), - [anon_sym_DOLLARqnameof] = ACTIONS(1584), - [anon_sym_DOLLARvaconst] = ACTIONS(1584), - [anon_sym_DOLLARvaarg] = ACTIONS(1584), - [anon_sym_DOLLARvaref] = ACTIONS(1584), - [anon_sym_DOLLARvaexpr] = ACTIONS(1584), - [anon_sym_true] = ACTIONS(1584), - [anon_sym_false] = ACTIONS(1584), - [anon_sym_null] = ACTIONS(1584), - [anon_sym_DOLLARvacount] = ACTIONS(1584), - [anon_sym_DOLLARappend] = ACTIONS(1584), - [anon_sym_DOLLARconcat] = ACTIONS(1584), - [anon_sym_DOLLAReval] = ACTIONS(1584), - [anon_sym_DOLLARis_const] = ACTIONS(1584), - [anon_sym_DOLLARsizeof] = ACTIONS(1584), - [anon_sym_DOLLARstringify] = ACTIONS(1584), - [anon_sym_DOLLARand] = ACTIONS(1584), - [anon_sym_DOLLARdefined] = ACTIONS(1584), - [anon_sym_DOLLARembed] = ACTIONS(1584), - [anon_sym_DOLLARor] = ACTIONS(1584), - [anon_sym_DOLLARfeature] = ACTIONS(1584), - [anon_sym_DOLLARassignable] = ACTIONS(1584), - [anon_sym_BANG] = ACTIONS(1586), - [anon_sym_TILDE] = ACTIONS(1586), - [anon_sym_PLUS_PLUS] = ACTIONS(1586), - [anon_sym_DASH_DASH] = ACTIONS(1586), - [anon_sym_typeid] = ACTIONS(1584), - [anon_sym_LBRACE_PIPE] = ACTIONS(1586), - [anon_sym_void] = ACTIONS(1584), - [anon_sym_bool] = ACTIONS(1584), - [anon_sym_char] = ACTIONS(1584), - [anon_sym_ichar] = ACTIONS(1584), - [anon_sym_short] = ACTIONS(1584), - [anon_sym_ushort] = ACTIONS(1584), - [anon_sym_uint] = ACTIONS(1584), - [anon_sym_long] = ACTIONS(1584), - [anon_sym_ulong] = ACTIONS(1584), - [anon_sym_int128] = ACTIONS(1584), - [anon_sym_uint128] = ACTIONS(1584), - [anon_sym_float] = ACTIONS(1584), - [anon_sym_double] = ACTIONS(1584), - [anon_sym_float16] = ACTIONS(1584), - [anon_sym_bfloat16] = ACTIONS(1584), - [anon_sym_float128] = ACTIONS(1584), - [anon_sym_iptr] = ACTIONS(1584), - [anon_sym_uptr] = ACTIONS(1584), - [anon_sym_isz] = ACTIONS(1584), - [anon_sym_usz] = ACTIONS(1584), - [anon_sym_anyfault] = ACTIONS(1584), - [anon_sym_any] = ACTIONS(1584), - [anon_sym_DOLLARtypeof] = ACTIONS(1584), - [anon_sym_DOLLARtypefrom] = ACTIONS(1584), - [anon_sym_DOLLARvatype] = ACTIONS(1584), - [anon_sym_DOLLARevaltype] = ACTIONS(1584), - [sym_real_literal] = ACTIONS(1586), + [sym_ident] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1523), + [anon_sym_SQUOTE] = ACTIONS(1523), + [anon_sym_DQUOTE] = ACTIONS(1523), + [anon_sym_BQUOTE] = ACTIONS(1523), + [sym_bytes_literal] = ACTIONS(1523), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1521), + [sym_at_ident] = ACTIONS(1523), + [sym_hash_ident] = ACTIONS(1523), + [sym_type_ident] = ACTIONS(1523), + [sym_ct_type_ident] = ACTIONS(1523), + [sym_const_ident] = ACTIONS(1521), + [sym_builtin] = ACTIONS(1523), + [anon_sym_LPAREN] = ACTIONS(1523), + [anon_sym_AMP] = ACTIONS(1521), + [anon_sym_static] = ACTIONS(1521), + [anon_sym_tlocal] = ACTIONS(1521), + [anon_sym_SEMI] = ACTIONS(1523), + [anon_sym_fn] = ACTIONS(1521), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_const] = ACTIONS(1521), + [anon_sym_var] = ACTIONS(1521), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_continue] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1521), + [anon_sym_defer] = ACTIONS(1521), + [anon_sym_assert] = ACTIONS(1521), + [anon_sym_nextcase] = ACTIONS(1521), + [anon_sym_switch] = ACTIONS(1521), + [anon_sym_AMP_AMP] = ACTIONS(1523), + [anon_sym_if] = ACTIONS(1521), + [anon_sym_for] = ACTIONS(1521), + [anon_sym_foreach] = ACTIONS(1521), + [anon_sym_foreach_r] = ACTIONS(1521), + [anon_sym_while] = ACTIONS(1521), + [anon_sym_do] = ACTIONS(1521), + [anon_sym_int] = ACTIONS(1521), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), + [anon_sym_asm] = ACTIONS(1521), + [anon_sym_DOLLARassert] = ACTIONS(1521), + [anon_sym_DOLLARerror] = ACTIONS(1521), + [anon_sym_DOLLARecho] = ACTIONS(1521), + [anon_sym_DOLLARif] = ACTIONS(1521), + [anon_sym_DOLLARendif] = ACTIONS(1521), + [anon_sym_DOLLARswitch] = ACTIONS(1521), + [anon_sym_DOLLARfor] = ACTIONS(1521), + [anon_sym_DOLLARforeach] = ACTIONS(1521), + [anon_sym_DOLLARalignof] = ACTIONS(1521), + [anon_sym_DOLLARextnameof] = ACTIONS(1521), + [anon_sym_DOLLARnameof] = ACTIONS(1521), + [anon_sym_DOLLARoffsetof] = ACTIONS(1521), + [anon_sym_DOLLARqnameof] = ACTIONS(1521), + [anon_sym_DOLLARvaconst] = ACTIONS(1521), + [anon_sym_DOLLARvaarg] = ACTIONS(1521), + [anon_sym_DOLLARvaref] = ACTIONS(1521), + [anon_sym_DOLLARvaexpr] = ACTIONS(1521), + [anon_sym_true] = ACTIONS(1521), + [anon_sym_false] = ACTIONS(1521), + [anon_sym_null] = ACTIONS(1521), + [anon_sym_DOLLARvacount] = ACTIONS(1521), + [anon_sym_DOLLARappend] = ACTIONS(1521), + [anon_sym_DOLLARconcat] = ACTIONS(1521), + [anon_sym_DOLLAReval] = ACTIONS(1521), + [anon_sym_DOLLARis_const] = ACTIONS(1521), + [anon_sym_DOLLARsizeof] = ACTIONS(1521), + [anon_sym_DOLLARstringify] = ACTIONS(1521), + [anon_sym_DOLLARand] = ACTIONS(1521), + [anon_sym_DOLLARdefined] = ACTIONS(1521), + [anon_sym_DOLLARembed] = ACTIONS(1521), + [anon_sym_DOLLARor] = ACTIONS(1521), + [anon_sym_DOLLARfeature] = ACTIONS(1521), + [anon_sym_DOLLARassignable] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1523), + [anon_sym_TILDE] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_typeid] = ACTIONS(1521), + [anon_sym_LBRACE_PIPE] = ACTIONS(1523), + [anon_sym_void] = ACTIONS(1521), + [anon_sym_bool] = ACTIONS(1521), + [anon_sym_char] = ACTIONS(1521), + [anon_sym_ichar] = ACTIONS(1521), + [anon_sym_short] = ACTIONS(1521), + [anon_sym_ushort] = ACTIONS(1521), + [anon_sym_uint] = ACTIONS(1521), + [anon_sym_long] = ACTIONS(1521), + [anon_sym_ulong] = ACTIONS(1521), + [anon_sym_int128] = ACTIONS(1521), + [anon_sym_uint128] = ACTIONS(1521), + [anon_sym_float] = ACTIONS(1521), + [anon_sym_double] = ACTIONS(1521), + [anon_sym_float16] = ACTIONS(1521), + [anon_sym_bfloat16] = ACTIONS(1521), + [anon_sym_float128] = ACTIONS(1521), + [anon_sym_iptr] = ACTIONS(1521), + [anon_sym_uptr] = ACTIONS(1521), + [anon_sym_isz] = ACTIONS(1521), + [anon_sym_usz] = ACTIONS(1521), + [anon_sym_anyfault] = ACTIONS(1521), + [anon_sym_any] = ACTIONS(1521), + [anon_sym_DOLLARtypeof] = ACTIONS(1521), + [anon_sym_DOLLARtypefrom] = ACTIONS(1521), + [anon_sym_DOLLARvatype] = ACTIONS(1521), + [anon_sym_DOLLARevaltype] = ACTIONS(1521), + [sym_real_literal] = ACTIONS(1523), }, [781] = { [sym_line_comment] = STATE(781), [sym_doc_comment] = STATE(781), [sym_block_comment] = STATE(781), - [sym_ident] = ACTIONS(1536), - [sym_integer_literal] = ACTIONS(1538), - [anon_sym_SQUOTE] = ACTIONS(1538), - [anon_sym_DQUOTE] = ACTIONS(1538), - [anon_sym_BQUOTE] = ACTIONS(1538), - [sym_bytes_literal] = ACTIONS(1538), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1536), - [sym_at_ident] = ACTIONS(1538), - [sym_hash_ident] = ACTIONS(1538), - [sym_type_ident] = ACTIONS(1538), - [sym_ct_type_ident] = ACTIONS(1538), - [sym_const_ident] = ACTIONS(1536), - [sym_builtin] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1538), - [anon_sym_AMP] = ACTIONS(1536), - [anon_sym_static] = ACTIONS(1536), - [anon_sym_tlocal] = ACTIONS(1536), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_fn] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(1536), - [anon_sym_const] = ACTIONS(1536), - [anon_sym_var] = ACTIONS(1536), - [anon_sym_return] = ACTIONS(1536), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_break] = ACTIONS(1536), - [anon_sym_defer] = ACTIONS(1536), - [anon_sym_assert] = ACTIONS(1536), - [anon_sym_nextcase] = ACTIONS(1536), - [anon_sym_switch] = ACTIONS(1536), - [anon_sym_AMP_AMP] = ACTIONS(1538), - [anon_sym_if] = ACTIONS(1536), - [anon_sym_for] = ACTIONS(1536), - [anon_sym_foreach] = ACTIONS(1536), - [anon_sym_foreach_r] = ACTIONS(1536), - [anon_sym_while] = ACTIONS(1536), - [anon_sym_do] = ACTIONS(1536), - [anon_sym_int] = ACTIONS(1536), - [anon_sym_PLUS] = ACTIONS(1536), - [anon_sym_DASH] = ACTIONS(1536), - [anon_sym_STAR] = ACTIONS(1538), - [anon_sym_asm] = ACTIONS(1536), - [anon_sym_DOLLARassert] = ACTIONS(1536), - [anon_sym_DOLLARerror] = ACTIONS(1536), - [anon_sym_DOLLARecho] = ACTIONS(1536), - [anon_sym_DOLLARif] = ACTIONS(1536), - [anon_sym_DOLLARswitch] = ACTIONS(1536), - [anon_sym_DOLLARfor] = ACTIONS(1536), - [anon_sym_DOLLARendfor] = ACTIONS(1536), - [anon_sym_DOLLARforeach] = ACTIONS(1536), - [anon_sym_DOLLARalignof] = ACTIONS(1536), - [anon_sym_DOLLARextnameof] = ACTIONS(1536), - [anon_sym_DOLLARnameof] = ACTIONS(1536), - [anon_sym_DOLLARoffsetof] = ACTIONS(1536), - [anon_sym_DOLLARqnameof] = ACTIONS(1536), - [anon_sym_DOLLARvaconst] = ACTIONS(1536), - [anon_sym_DOLLARvaarg] = ACTIONS(1536), - [anon_sym_DOLLARvaref] = ACTIONS(1536), - [anon_sym_DOLLARvaexpr] = ACTIONS(1536), - [anon_sym_true] = ACTIONS(1536), - [anon_sym_false] = ACTIONS(1536), - [anon_sym_null] = ACTIONS(1536), - [anon_sym_DOLLARvacount] = ACTIONS(1536), - [anon_sym_DOLLARappend] = ACTIONS(1536), - [anon_sym_DOLLARconcat] = ACTIONS(1536), - [anon_sym_DOLLAReval] = ACTIONS(1536), - [anon_sym_DOLLARis_const] = ACTIONS(1536), - [anon_sym_DOLLARsizeof] = ACTIONS(1536), - [anon_sym_DOLLARstringify] = ACTIONS(1536), - [anon_sym_DOLLARand] = ACTIONS(1536), - [anon_sym_DOLLARdefined] = ACTIONS(1536), - [anon_sym_DOLLARembed] = ACTIONS(1536), - [anon_sym_DOLLARor] = ACTIONS(1536), - [anon_sym_DOLLARfeature] = ACTIONS(1536), - [anon_sym_DOLLARassignable] = ACTIONS(1536), - [anon_sym_BANG] = ACTIONS(1538), - [anon_sym_TILDE] = ACTIONS(1538), - [anon_sym_PLUS_PLUS] = ACTIONS(1538), - [anon_sym_DASH_DASH] = ACTIONS(1538), - [anon_sym_typeid] = ACTIONS(1536), - [anon_sym_LBRACE_PIPE] = ACTIONS(1538), - [anon_sym_void] = ACTIONS(1536), - [anon_sym_bool] = ACTIONS(1536), - [anon_sym_char] = ACTIONS(1536), - [anon_sym_ichar] = ACTIONS(1536), - [anon_sym_short] = ACTIONS(1536), - [anon_sym_ushort] = ACTIONS(1536), - [anon_sym_uint] = ACTIONS(1536), - [anon_sym_long] = ACTIONS(1536), - [anon_sym_ulong] = ACTIONS(1536), - [anon_sym_int128] = ACTIONS(1536), - [anon_sym_uint128] = ACTIONS(1536), - [anon_sym_float] = ACTIONS(1536), - [anon_sym_double] = ACTIONS(1536), - [anon_sym_float16] = ACTIONS(1536), - [anon_sym_bfloat16] = ACTIONS(1536), - [anon_sym_float128] = ACTIONS(1536), - [anon_sym_iptr] = ACTIONS(1536), - [anon_sym_uptr] = ACTIONS(1536), - [anon_sym_isz] = ACTIONS(1536), - [anon_sym_usz] = ACTIONS(1536), - [anon_sym_anyfault] = ACTIONS(1536), - [anon_sym_any] = ACTIONS(1536), - [anon_sym_DOLLARtypeof] = ACTIONS(1536), - [anon_sym_DOLLARtypefrom] = ACTIONS(1536), - [anon_sym_DOLLARvatype] = ACTIONS(1536), - [anon_sym_DOLLARevaltype] = ACTIONS(1536), - [sym_real_literal] = ACTIONS(1538), + [sym_ident] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1527), + [anon_sym_SQUOTE] = ACTIONS(1527), + [anon_sym_DQUOTE] = ACTIONS(1527), + [anon_sym_BQUOTE] = ACTIONS(1527), + [sym_bytes_literal] = ACTIONS(1527), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1525), + [sym_at_ident] = ACTIONS(1527), + [sym_hash_ident] = ACTIONS(1527), + [sym_type_ident] = ACTIONS(1527), + [sym_ct_type_ident] = ACTIONS(1527), + [sym_const_ident] = ACTIONS(1525), + [sym_builtin] = ACTIONS(1527), + [anon_sym_LPAREN] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_static] = ACTIONS(1525), + [anon_sym_tlocal] = ACTIONS(1525), + [anon_sym_SEMI] = ACTIONS(1527), + [anon_sym_fn] = ACTIONS(1525), + [anon_sym_LBRACE] = ACTIONS(1525), + [anon_sym_const] = ACTIONS(1525), + [anon_sym_var] = ACTIONS(1525), + [anon_sym_return] = ACTIONS(1525), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_break] = ACTIONS(1525), + [anon_sym_defer] = ACTIONS(1525), + [anon_sym_assert] = ACTIONS(1525), + [anon_sym_nextcase] = ACTIONS(1525), + [anon_sym_switch] = ACTIONS(1525), + [anon_sym_AMP_AMP] = ACTIONS(1527), + [anon_sym_if] = ACTIONS(1525), + [anon_sym_for] = ACTIONS(1525), + [anon_sym_foreach] = ACTIONS(1525), + [anon_sym_foreach_r] = ACTIONS(1525), + [anon_sym_while] = ACTIONS(1525), + [anon_sym_do] = ACTIONS(1525), + [anon_sym_int] = ACTIONS(1525), + [anon_sym_PLUS] = ACTIONS(1525), + [anon_sym_DASH] = ACTIONS(1525), + [anon_sym_STAR] = ACTIONS(1527), + [anon_sym_asm] = ACTIONS(1525), + [anon_sym_DOLLARassert] = ACTIONS(1525), + [anon_sym_DOLLARerror] = ACTIONS(1525), + [anon_sym_DOLLARecho] = ACTIONS(1525), + [anon_sym_DOLLARif] = ACTIONS(1525), + [anon_sym_DOLLARendif] = ACTIONS(1525), + [anon_sym_DOLLARswitch] = ACTIONS(1525), + [anon_sym_DOLLARfor] = ACTIONS(1525), + [anon_sym_DOLLARforeach] = ACTIONS(1525), + [anon_sym_DOLLARalignof] = ACTIONS(1525), + [anon_sym_DOLLARextnameof] = ACTIONS(1525), + [anon_sym_DOLLARnameof] = ACTIONS(1525), + [anon_sym_DOLLARoffsetof] = ACTIONS(1525), + [anon_sym_DOLLARqnameof] = ACTIONS(1525), + [anon_sym_DOLLARvaconst] = ACTIONS(1525), + [anon_sym_DOLLARvaarg] = ACTIONS(1525), + [anon_sym_DOLLARvaref] = ACTIONS(1525), + [anon_sym_DOLLARvaexpr] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(1525), + [anon_sym_false] = ACTIONS(1525), + [anon_sym_null] = ACTIONS(1525), + [anon_sym_DOLLARvacount] = ACTIONS(1525), + [anon_sym_DOLLARappend] = ACTIONS(1525), + [anon_sym_DOLLARconcat] = ACTIONS(1525), + [anon_sym_DOLLAReval] = ACTIONS(1525), + [anon_sym_DOLLARis_const] = ACTIONS(1525), + [anon_sym_DOLLARsizeof] = ACTIONS(1525), + [anon_sym_DOLLARstringify] = ACTIONS(1525), + [anon_sym_DOLLARand] = ACTIONS(1525), + [anon_sym_DOLLARdefined] = ACTIONS(1525), + [anon_sym_DOLLARembed] = ACTIONS(1525), + [anon_sym_DOLLARor] = ACTIONS(1525), + [anon_sym_DOLLARfeature] = ACTIONS(1525), + [anon_sym_DOLLARassignable] = ACTIONS(1525), + [anon_sym_BANG] = ACTIONS(1527), + [anon_sym_TILDE] = ACTIONS(1527), + [anon_sym_PLUS_PLUS] = ACTIONS(1527), + [anon_sym_DASH_DASH] = ACTIONS(1527), + [anon_sym_typeid] = ACTIONS(1525), + [anon_sym_LBRACE_PIPE] = ACTIONS(1527), + [anon_sym_void] = ACTIONS(1525), + [anon_sym_bool] = ACTIONS(1525), + [anon_sym_char] = ACTIONS(1525), + [anon_sym_ichar] = ACTIONS(1525), + [anon_sym_short] = ACTIONS(1525), + [anon_sym_ushort] = ACTIONS(1525), + [anon_sym_uint] = ACTIONS(1525), + [anon_sym_long] = ACTIONS(1525), + [anon_sym_ulong] = ACTIONS(1525), + [anon_sym_int128] = ACTIONS(1525), + [anon_sym_uint128] = ACTIONS(1525), + [anon_sym_float] = ACTIONS(1525), + [anon_sym_double] = ACTIONS(1525), + [anon_sym_float16] = ACTIONS(1525), + [anon_sym_bfloat16] = ACTIONS(1525), + [anon_sym_float128] = ACTIONS(1525), + [anon_sym_iptr] = ACTIONS(1525), + [anon_sym_uptr] = ACTIONS(1525), + [anon_sym_isz] = ACTIONS(1525), + [anon_sym_usz] = ACTIONS(1525), + [anon_sym_anyfault] = ACTIONS(1525), + [anon_sym_any] = ACTIONS(1525), + [anon_sym_DOLLARtypeof] = ACTIONS(1525), + [anon_sym_DOLLARtypefrom] = ACTIONS(1525), + [anon_sym_DOLLARvatype] = ACTIONS(1525), + [anon_sym_DOLLARevaltype] = ACTIONS(1525), + [sym_real_literal] = ACTIONS(1527), }, [782] = { [sym_line_comment] = STATE(782), [sym_doc_comment] = STATE(782), [sym_block_comment] = STATE(782), - [sym_ident] = ACTIONS(1532), - [sym_integer_literal] = ACTIONS(1534), - [anon_sym_SQUOTE] = ACTIONS(1534), - [anon_sym_DQUOTE] = ACTIONS(1534), - [anon_sym_BQUOTE] = ACTIONS(1534), - [sym_bytes_literal] = ACTIONS(1534), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1532), - [sym_at_ident] = ACTIONS(1534), - [sym_hash_ident] = ACTIONS(1534), - [sym_type_ident] = ACTIONS(1534), - [sym_ct_type_ident] = ACTIONS(1534), - [sym_const_ident] = ACTIONS(1532), - [sym_builtin] = ACTIONS(1534), - [anon_sym_LPAREN] = ACTIONS(1534), - [anon_sym_AMP] = ACTIONS(1532), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_tlocal] = ACTIONS(1532), - [anon_sym_SEMI] = ACTIONS(1534), - [anon_sym_fn] = ACTIONS(1532), - [anon_sym_LBRACE] = ACTIONS(1532), - [anon_sym_const] = ACTIONS(1532), - [anon_sym_var] = ACTIONS(1532), - [anon_sym_return] = ACTIONS(1532), - [anon_sym_continue] = ACTIONS(1532), - [anon_sym_break] = ACTIONS(1532), - [anon_sym_defer] = ACTIONS(1532), - [anon_sym_assert] = ACTIONS(1532), - [anon_sym_nextcase] = ACTIONS(1532), - [anon_sym_switch] = ACTIONS(1532), - [anon_sym_AMP_AMP] = ACTIONS(1534), - [anon_sym_if] = ACTIONS(1532), - [anon_sym_for] = ACTIONS(1532), - [anon_sym_foreach] = ACTIONS(1532), - [anon_sym_foreach_r] = ACTIONS(1532), - [anon_sym_while] = ACTIONS(1532), - [anon_sym_do] = ACTIONS(1532), - [anon_sym_int] = ACTIONS(1532), - [anon_sym_PLUS] = ACTIONS(1532), - [anon_sym_DASH] = ACTIONS(1532), - [anon_sym_STAR] = ACTIONS(1534), - [anon_sym_asm] = ACTIONS(1532), - [anon_sym_DOLLARassert] = ACTIONS(1532), - [anon_sym_DOLLARerror] = ACTIONS(1532), - [anon_sym_DOLLARecho] = ACTIONS(1532), - [anon_sym_DOLLARif] = ACTIONS(1532), - [anon_sym_DOLLARswitch] = ACTIONS(1532), - [anon_sym_DOLLARfor] = ACTIONS(1532), - [anon_sym_DOLLARendfor] = ACTIONS(1532), - [anon_sym_DOLLARforeach] = ACTIONS(1532), - [anon_sym_DOLLARalignof] = ACTIONS(1532), - [anon_sym_DOLLARextnameof] = ACTIONS(1532), - [anon_sym_DOLLARnameof] = ACTIONS(1532), - [anon_sym_DOLLARoffsetof] = ACTIONS(1532), - [anon_sym_DOLLARqnameof] = ACTIONS(1532), - [anon_sym_DOLLARvaconst] = ACTIONS(1532), - [anon_sym_DOLLARvaarg] = ACTIONS(1532), - [anon_sym_DOLLARvaref] = ACTIONS(1532), - [anon_sym_DOLLARvaexpr] = ACTIONS(1532), - [anon_sym_true] = ACTIONS(1532), - [anon_sym_false] = ACTIONS(1532), - [anon_sym_null] = ACTIONS(1532), - [anon_sym_DOLLARvacount] = ACTIONS(1532), - [anon_sym_DOLLARappend] = ACTIONS(1532), - [anon_sym_DOLLARconcat] = ACTIONS(1532), - [anon_sym_DOLLAReval] = ACTIONS(1532), - [anon_sym_DOLLARis_const] = ACTIONS(1532), - [anon_sym_DOLLARsizeof] = ACTIONS(1532), - [anon_sym_DOLLARstringify] = ACTIONS(1532), - [anon_sym_DOLLARand] = ACTIONS(1532), - [anon_sym_DOLLARdefined] = ACTIONS(1532), - [anon_sym_DOLLARembed] = ACTIONS(1532), - [anon_sym_DOLLARor] = ACTIONS(1532), - [anon_sym_DOLLARfeature] = ACTIONS(1532), - [anon_sym_DOLLARassignable] = ACTIONS(1532), - [anon_sym_BANG] = ACTIONS(1534), - [anon_sym_TILDE] = ACTIONS(1534), - [anon_sym_PLUS_PLUS] = ACTIONS(1534), - [anon_sym_DASH_DASH] = ACTIONS(1534), - [anon_sym_typeid] = ACTIONS(1532), - [anon_sym_LBRACE_PIPE] = ACTIONS(1534), - [anon_sym_void] = ACTIONS(1532), - [anon_sym_bool] = ACTIONS(1532), - [anon_sym_char] = ACTIONS(1532), - [anon_sym_ichar] = ACTIONS(1532), - [anon_sym_short] = ACTIONS(1532), - [anon_sym_ushort] = ACTIONS(1532), - [anon_sym_uint] = ACTIONS(1532), - [anon_sym_long] = ACTIONS(1532), - [anon_sym_ulong] = ACTIONS(1532), - [anon_sym_int128] = ACTIONS(1532), - [anon_sym_uint128] = ACTIONS(1532), - [anon_sym_float] = ACTIONS(1532), - [anon_sym_double] = ACTIONS(1532), - [anon_sym_float16] = ACTIONS(1532), - [anon_sym_bfloat16] = ACTIONS(1532), - [anon_sym_float128] = ACTIONS(1532), - [anon_sym_iptr] = ACTIONS(1532), - [anon_sym_uptr] = ACTIONS(1532), - [anon_sym_isz] = ACTIONS(1532), - [anon_sym_usz] = ACTIONS(1532), - [anon_sym_anyfault] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_DOLLARtypeof] = ACTIONS(1532), - [anon_sym_DOLLARtypefrom] = ACTIONS(1532), - [anon_sym_DOLLARvatype] = ACTIONS(1532), - [anon_sym_DOLLARevaltype] = ACTIONS(1532), - [sym_real_literal] = ACTIONS(1534), + [sym_ident] = ACTIONS(1529), + [sym_integer_literal] = ACTIONS(1531), + [anon_sym_SQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [anon_sym_BQUOTE] = ACTIONS(1531), + [sym_bytes_literal] = ACTIONS(1531), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1529), + [sym_at_ident] = ACTIONS(1531), + [sym_hash_ident] = ACTIONS(1531), + [sym_type_ident] = ACTIONS(1531), + [sym_ct_type_ident] = ACTIONS(1531), + [sym_const_ident] = ACTIONS(1529), + [sym_builtin] = ACTIONS(1531), + [anon_sym_LPAREN] = ACTIONS(1531), + [anon_sym_AMP] = ACTIONS(1529), + [anon_sym_static] = ACTIONS(1529), + [anon_sym_tlocal] = ACTIONS(1529), + [anon_sym_SEMI] = ACTIONS(1531), + [anon_sym_fn] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1529), + [anon_sym_const] = ACTIONS(1529), + [anon_sym_var] = ACTIONS(1529), + [anon_sym_return] = ACTIONS(1529), + [anon_sym_continue] = ACTIONS(1529), + [anon_sym_break] = ACTIONS(1529), + [anon_sym_defer] = ACTIONS(1529), + [anon_sym_assert] = ACTIONS(1529), + [anon_sym_nextcase] = ACTIONS(1529), + [anon_sym_switch] = ACTIONS(1529), + [anon_sym_AMP_AMP] = ACTIONS(1531), + [anon_sym_if] = ACTIONS(1529), + [anon_sym_for] = ACTIONS(1529), + [anon_sym_foreach] = ACTIONS(1529), + [anon_sym_foreach_r] = ACTIONS(1529), + [anon_sym_while] = ACTIONS(1529), + [anon_sym_do] = ACTIONS(1529), + [anon_sym_int] = ACTIONS(1529), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_STAR] = ACTIONS(1531), + [anon_sym_asm] = ACTIONS(1529), + [anon_sym_DOLLARassert] = ACTIONS(1529), + [anon_sym_DOLLARerror] = ACTIONS(1529), + [anon_sym_DOLLARecho] = ACTIONS(1529), + [anon_sym_DOLLARif] = ACTIONS(1529), + [anon_sym_DOLLARendif] = ACTIONS(1529), + [anon_sym_DOLLARswitch] = ACTIONS(1529), + [anon_sym_DOLLARfor] = ACTIONS(1529), + [anon_sym_DOLLARforeach] = ACTIONS(1529), + [anon_sym_DOLLARalignof] = ACTIONS(1529), + [anon_sym_DOLLARextnameof] = ACTIONS(1529), + [anon_sym_DOLLARnameof] = ACTIONS(1529), + [anon_sym_DOLLARoffsetof] = ACTIONS(1529), + [anon_sym_DOLLARqnameof] = ACTIONS(1529), + [anon_sym_DOLLARvaconst] = ACTIONS(1529), + [anon_sym_DOLLARvaarg] = ACTIONS(1529), + [anon_sym_DOLLARvaref] = ACTIONS(1529), + [anon_sym_DOLLARvaexpr] = ACTIONS(1529), + [anon_sym_true] = ACTIONS(1529), + [anon_sym_false] = ACTIONS(1529), + [anon_sym_null] = ACTIONS(1529), + [anon_sym_DOLLARvacount] = ACTIONS(1529), + [anon_sym_DOLLARappend] = ACTIONS(1529), + [anon_sym_DOLLARconcat] = ACTIONS(1529), + [anon_sym_DOLLAReval] = ACTIONS(1529), + [anon_sym_DOLLARis_const] = ACTIONS(1529), + [anon_sym_DOLLARsizeof] = ACTIONS(1529), + [anon_sym_DOLLARstringify] = ACTIONS(1529), + [anon_sym_DOLLARand] = ACTIONS(1529), + [anon_sym_DOLLARdefined] = ACTIONS(1529), + [anon_sym_DOLLARembed] = ACTIONS(1529), + [anon_sym_DOLLARor] = ACTIONS(1529), + [anon_sym_DOLLARfeature] = ACTIONS(1529), + [anon_sym_DOLLARassignable] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1531), + [anon_sym_TILDE] = ACTIONS(1531), + [anon_sym_PLUS_PLUS] = ACTIONS(1531), + [anon_sym_DASH_DASH] = ACTIONS(1531), + [anon_sym_typeid] = ACTIONS(1529), + [anon_sym_LBRACE_PIPE] = ACTIONS(1531), + [anon_sym_void] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_ichar] = ACTIONS(1529), + [anon_sym_short] = ACTIONS(1529), + [anon_sym_ushort] = ACTIONS(1529), + [anon_sym_uint] = ACTIONS(1529), + [anon_sym_long] = ACTIONS(1529), + [anon_sym_ulong] = ACTIONS(1529), + [anon_sym_int128] = ACTIONS(1529), + [anon_sym_uint128] = ACTIONS(1529), + [anon_sym_float] = ACTIONS(1529), + [anon_sym_double] = ACTIONS(1529), + [anon_sym_float16] = ACTIONS(1529), + [anon_sym_bfloat16] = ACTIONS(1529), + [anon_sym_float128] = ACTIONS(1529), + [anon_sym_iptr] = ACTIONS(1529), + [anon_sym_uptr] = ACTIONS(1529), + [anon_sym_isz] = ACTIONS(1529), + [anon_sym_usz] = ACTIONS(1529), + [anon_sym_anyfault] = ACTIONS(1529), + [anon_sym_any] = ACTIONS(1529), + [anon_sym_DOLLARtypeof] = ACTIONS(1529), + [anon_sym_DOLLARtypefrom] = ACTIONS(1529), + [anon_sym_DOLLARvatype] = ACTIONS(1529), + [anon_sym_DOLLARevaltype] = ACTIONS(1529), + [sym_real_literal] = ACTIONS(1531), }, [783] = { [sym_line_comment] = STATE(783), [sym_doc_comment] = STATE(783), [sym_block_comment] = STATE(783), - [sym_ident] = ACTIONS(1648), - [sym_integer_literal] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1650), - [anon_sym_BQUOTE] = ACTIONS(1650), - [sym_bytes_literal] = ACTIONS(1650), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1648), - [sym_at_ident] = ACTIONS(1650), - [sym_hash_ident] = ACTIONS(1650), - [sym_type_ident] = ACTIONS(1650), - [sym_ct_type_ident] = ACTIONS(1650), - [sym_const_ident] = ACTIONS(1648), - [sym_builtin] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_AMP] = ACTIONS(1648), - [anon_sym_static] = ACTIONS(1648), - [anon_sym_tlocal] = ACTIONS(1648), - [anon_sym_SEMI] = ACTIONS(1650), - [anon_sym_fn] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_const] = ACTIONS(1648), - [anon_sym_var] = ACTIONS(1648), - [anon_sym_return] = ACTIONS(1648), - [anon_sym_continue] = ACTIONS(1648), - [anon_sym_break] = ACTIONS(1648), - [anon_sym_defer] = ACTIONS(1648), - [anon_sym_assert] = ACTIONS(1648), - [anon_sym_nextcase] = ACTIONS(1648), - [anon_sym_switch] = ACTIONS(1648), - [anon_sym_AMP_AMP] = ACTIONS(1650), - [anon_sym_if] = ACTIONS(1648), - [anon_sym_for] = ACTIONS(1648), - [anon_sym_foreach] = ACTIONS(1648), - [anon_sym_foreach_r] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1648), - [anon_sym_do] = ACTIONS(1648), - [anon_sym_int] = ACTIONS(1648), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_STAR] = ACTIONS(1650), - [anon_sym_asm] = ACTIONS(1648), - [anon_sym_DOLLARassert] = ACTIONS(1648), - [anon_sym_DOLLARerror] = ACTIONS(1648), - [anon_sym_DOLLARecho] = ACTIONS(1648), - [anon_sym_DOLLARif] = ACTIONS(1648), - [anon_sym_DOLLARendif] = ACTIONS(1648), - [anon_sym_DOLLARswitch] = ACTIONS(1648), - [anon_sym_DOLLARfor] = ACTIONS(1648), - [anon_sym_DOLLARforeach] = ACTIONS(1648), - [anon_sym_DOLLARalignof] = ACTIONS(1648), - [anon_sym_DOLLARextnameof] = ACTIONS(1648), - [anon_sym_DOLLARnameof] = ACTIONS(1648), - [anon_sym_DOLLARoffsetof] = ACTIONS(1648), - [anon_sym_DOLLARqnameof] = ACTIONS(1648), - [anon_sym_DOLLARvaconst] = ACTIONS(1648), - [anon_sym_DOLLARvaarg] = ACTIONS(1648), - [anon_sym_DOLLARvaref] = ACTIONS(1648), - [anon_sym_DOLLARvaexpr] = ACTIONS(1648), - [anon_sym_true] = ACTIONS(1648), - [anon_sym_false] = ACTIONS(1648), - [anon_sym_null] = ACTIONS(1648), - [anon_sym_DOLLARvacount] = ACTIONS(1648), - [anon_sym_DOLLARappend] = ACTIONS(1648), - [anon_sym_DOLLARconcat] = ACTIONS(1648), - [anon_sym_DOLLAReval] = ACTIONS(1648), - [anon_sym_DOLLARis_const] = ACTIONS(1648), - [anon_sym_DOLLARsizeof] = ACTIONS(1648), - [anon_sym_DOLLARstringify] = ACTIONS(1648), - [anon_sym_DOLLARand] = ACTIONS(1648), - [anon_sym_DOLLARdefined] = ACTIONS(1648), - [anon_sym_DOLLARembed] = ACTIONS(1648), - [anon_sym_DOLLARor] = ACTIONS(1648), - [anon_sym_DOLLARfeature] = ACTIONS(1648), - [anon_sym_DOLLARassignable] = ACTIONS(1648), - [anon_sym_BANG] = ACTIONS(1650), - [anon_sym_TILDE] = ACTIONS(1650), - [anon_sym_PLUS_PLUS] = ACTIONS(1650), - [anon_sym_DASH_DASH] = ACTIONS(1650), - [anon_sym_typeid] = ACTIONS(1648), - [anon_sym_LBRACE_PIPE] = ACTIONS(1650), - [anon_sym_void] = ACTIONS(1648), - [anon_sym_bool] = ACTIONS(1648), - [anon_sym_char] = ACTIONS(1648), - [anon_sym_ichar] = ACTIONS(1648), - [anon_sym_short] = ACTIONS(1648), - [anon_sym_ushort] = ACTIONS(1648), - [anon_sym_uint] = ACTIONS(1648), - [anon_sym_long] = ACTIONS(1648), - [anon_sym_ulong] = ACTIONS(1648), - [anon_sym_int128] = ACTIONS(1648), - [anon_sym_uint128] = ACTIONS(1648), - [anon_sym_float] = ACTIONS(1648), - [anon_sym_double] = ACTIONS(1648), - [anon_sym_float16] = ACTIONS(1648), - [anon_sym_bfloat16] = ACTIONS(1648), - [anon_sym_float128] = ACTIONS(1648), - [anon_sym_iptr] = ACTIONS(1648), - [anon_sym_uptr] = ACTIONS(1648), - [anon_sym_isz] = ACTIONS(1648), - [anon_sym_usz] = ACTIONS(1648), - [anon_sym_anyfault] = ACTIONS(1648), - [anon_sym_any] = ACTIONS(1648), - [anon_sym_DOLLARtypeof] = ACTIONS(1648), - [anon_sym_DOLLARtypefrom] = ACTIONS(1648), - [anon_sym_DOLLARvatype] = ACTIONS(1648), - [anon_sym_DOLLARevaltype] = ACTIONS(1648), - [sym_real_literal] = ACTIONS(1650), + [sym_ident] = ACTIONS(1565), + [sym_integer_literal] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_DQUOTE] = ACTIONS(1567), + [anon_sym_BQUOTE] = ACTIONS(1567), + [sym_bytes_literal] = ACTIONS(1567), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1565), + [sym_at_ident] = ACTIONS(1567), + [sym_hash_ident] = ACTIONS(1567), + [sym_type_ident] = ACTIONS(1567), + [sym_ct_type_ident] = ACTIONS(1567), + [sym_const_ident] = ACTIONS(1565), + [sym_builtin] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_static] = ACTIONS(1565), + [anon_sym_tlocal] = ACTIONS(1565), + [anon_sym_SEMI] = ACTIONS(1567), + [anon_sym_fn] = ACTIONS(1565), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_const] = ACTIONS(1565), + [anon_sym_var] = ACTIONS(1565), + [anon_sym_return] = ACTIONS(1565), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_break] = ACTIONS(1565), + [anon_sym_defer] = ACTIONS(1565), + [anon_sym_assert] = ACTIONS(1565), + [anon_sym_nextcase] = ACTIONS(1565), + [anon_sym_switch] = ACTIONS(1565), + [anon_sym_AMP_AMP] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(1565), + [anon_sym_for] = ACTIONS(1565), + [anon_sym_foreach] = ACTIONS(1565), + [anon_sym_foreach_r] = ACTIONS(1565), + [anon_sym_while] = ACTIONS(1565), + [anon_sym_do] = ACTIONS(1565), + [anon_sym_int] = ACTIONS(1565), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_STAR] = ACTIONS(1567), + [anon_sym_asm] = ACTIONS(1565), + [anon_sym_DOLLARassert] = ACTIONS(1565), + [anon_sym_DOLLARerror] = ACTIONS(1565), + [anon_sym_DOLLARecho] = ACTIONS(1565), + [anon_sym_DOLLARif] = ACTIONS(1565), + [anon_sym_DOLLARendif] = ACTIONS(1565), + [anon_sym_DOLLARswitch] = ACTIONS(1565), + [anon_sym_DOLLARfor] = ACTIONS(1565), + [anon_sym_DOLLARforeach] = ACTIONS(1565), + [anon_sym_DOLLARalignof] = ACTIONS(1565), + [anon_sym_DOLLARextnameof] = ACTIONS(1565), + [anon_sym_DOLLARnameof] = ACTIONS(1565), + [anon_sym_DOLLARoffsetof] = ACTIONS(1565), + [anon_sym_DOLLARqnameof] = ACTIONS(1565), + [anon_sym_DOLLARvaconst] = ACTIONS(1565), + [anon_sym_DOLLARvaarg] = ACTIONS(1565), + [anon_sym_DOLLARvaref] = ACTIONS(1565), + [anon_sym_DOLLARvaexpr] = ACTIONS(1565), + [anon_sym_true] = ACTIONS(1565), + [anon_sym_false] = ACTIONS(1565), + [anon_sym_null] = ACTIONS(1565), + [anon_sym_DOLLARvacount] = ACTIONS(1565), + [anon_sym_DOLLARappend] = ACTIONS(1565), + [anon_sym_DOLLARconcat] = ACTIONS(1565), + [anon_sym_DOLLAReval] = ACTIONS(1565), + [anon_sym_DOLLARis_const] = ACTIONS(1565), + [anon_sym_DOLLARsizeof] = ACTIONS(1565), + [anon_sym_DOLLARstringify] = ACTIONS(1565), + [anon_sym_DOLLARand] = ACTIONS(1565), + [anon_sym_DOLLARdefined] = ACTIONS(1565), + [anon_sym_DOLLARembed] = ACTIONS(1565), + [anon_sym_DOLLARor] = ACTIONS(1565), + [anon_sym_DOLLARfeature] = ACTIONS(1565), + [anon_sym_DOLLARassignable] = ACTIONS(1565), + [anon_sym_BANG] = ACTIONS(1567), + [anon_sym_TILDE] = ACTIONS(1567), + [anon_sym_PLUS_PLUS] = ACTIONS(1567), + [anon_sym_DASH_DASH] = ACTIONS(1567), + [anon_sym_typeid] = ACTIONS(1565), + [anon_sym_LBRACE_PIPE] = ACTIONS(1567), + [anon_sym_void] = ACTIONS(1565), + [anon_sym_bool] = ACTIONS(1565), + [anon_sym_char] = ACTIONS(1565), + [anon_sym_ichar] = ACTIONS(1565), + [anon_sym_short] = ACTIONS(1565), + [anon_sym_ushort] = ACTIONS(1565), + [anon_sym_uint] = ACTIONS(1565), + [anon_sym_long] = ACTIONS(1565), + [anon_sym_ulong] = ACTIONS(1565), + [anon_sym_int128] = ACTIONS(1565), + [anon_sym_uint128] = ACTIONS(1565), + [anon_sym_float] = ACTIONS(1565), + [anon_sym_double] = ACTIONS(1565), + [anon_sym_float16] = ACTIONS(1565), + [anon_sym_bfloat16] = ACTIONS(1565), + [anon_sym_float128] = ACTIONS(1565), + [anon_sym_iptr] = ACTIONS(1565), + [anon_sym_uptr] = ACTIONS(1565), + [anon_sym_isz] = ACTIONS(1565), + [anon_sym_usz] = ACTIONS(1565), + [anon_sym_anyfault] = ACTIONS(1565), + [anon_sym_any] = ACTIONS(1565), + [anon_sym_DOLLARtypeof] = ACTIONS(1565), + [anon_sym_DOLLARtypefrom] = ACTIONS(1565), + [anon_sym_DOLLARvatype] = ACTIONS(1565), + [anon_sym_DOLLARevaltype] = ACTIONS(1565), + [sym_real_literal] = ACTIONS(1567), }, [784] = { [sym_line_comment] = STATE(784), [sym_doc_comment] = STATE(784), [sym_block_comment] = STATE(784), - [sym_ident] = ACTIONS(1520), - [sym_integer_literal] = ACTIONS(1522), - [anon_sym_SQUOTE] = ACTIONS(1522), - [anon_sym_DQUOTE] = ACTIONS(1522), - [anon_sym_BQUOTE] = ACTIONS(1522), - [sym_bytes_literal] = ACTIONS(1522), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1520), - [sym_at_ident] = ACTIONS(1522), - [sym_hash_ident] = ACTIONS(1522), - [sym_type_ident] = ACTIONS(1522), - [sym_ct_type_ident] = ACTIONS(1522), - [sym_const_ident] = ACTIONS(1520), - [sym_builtin] = ACTIONS(1522), - [anon_sym_LPAREN] = ACTIONS(1522), - [anon_sym_AMP] = ACTIONS(1520), - [anon_sym_static] = ACTIONS(1520), - [anon_sym_tlocal] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1522), - [anon_sym_fn] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1520), - [anon_sym_const] = ACTIONS(1520), - [anon_sym_var] = ACTIONS(1520), - [anon_sym_return] = ACTIONS(1520), - [anon_sym_continue] = ACTIONS(1520), - [anon_sym_break] = ACTIONS(1520), - [anon_sym_defer] = ACTIONS(1520), - [anon_sym_assert] = ACTIONS(1520), - [anon_sym_nextcase] = ACTIONS(1520), - [anon_sym_switch] = ACTIONS(1520), - [anon_sym_AMP_AMP] = ACTIONS(1522), - [anon_sym_if] = ACTIONS(1520), - [anon_sym_for] = ACTIONS(1520), - [anon_sym_foreach] = ACTIONS(1520), - [anon_sym_foreach_r] = ACTIONS(1520), - [anon_sym_while] = ACTIONS(1520), - [anon_sym_do] = ACTIONS(1520), - [anon_sym_int] = ACTIONS(1520), - [anon_sym_PLUS] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1520), - [anon_sym_STAR] = ACTIONS(1522), - [anon_sym_asm] = ACTIONS(1520), - [anon_sym_DOLLARassert] = ACTIONS(1520), - [anon_sym_DOLLARerror] = ACTIONS(1520), - [anon_sym_DOLLARecho] = ACTIONS(1520), - [anon_sym_DOLLARif] = ACTIONS(1520), - [anon_sym_DOLLARswitch] = ACTIONS(1520), - [anon_sym_DOLLARfor] = ACTIONS(1520), - [anon_sym_DOLLARendfor] = ACTIONS(1520), - [anon_sym_DOLLARforeach] = ACTIONS(1520), - [anon_sym_DOLLARalignof] = ACTIONS(1520), - [anon_sym_DOLLARextnameof] = ACTIONS(1520), - [anon_sym_DOLLARnameof] = ACTIONS(1520), - [anon_sym_DOLLARoffsetof] = ACTIONS(1520), - [anon_sym_DOLLARqnameof] = ACTIONS(1520), - [anon_sym_DOLLARvaconst] = ACTIONS(1520), - [anon_sym_DOLLARvaarg] = ACTIONS(1520), - [anon_sym_DOLLARvaref] = ACTIONS(1520), - [anon_sym_DOLLARvaexpr] = ACTIONS(1520), - [anon_sym_true] = ACTIONS(1520), - [anon_sym_false] = ACTIONS(1520), - [anon_sym_null] = ACTIONS(1520), - [anon_sym_DOLLARvacount] = ACTIONS(1520), - [anon_sym_DOLLARappend] = ACTIONS(1520), - [anon_sym_DOLLARconcat] = ACTIONS(1520), - [anon_sym_DOLLAReval] = ACTIONS(1520), - [anon_sym_DOLLARis_const] = ACTIONS(1520), - [anon_sym_DOLLARsizeof] = ACTIONS(1520), - [anon_sym_DOLLARstringify] = ACTIONS(1520), - [anon_sym_DOLLARand] = ACTIONS(1520), - [anon_sym_DOLLARdefined] = ACTIONS(1520), - [anon_sym_DOLLARembed] = ACTIONS(1520), - [anon_sym_DOLLARor] = ACTIONS(1520), - [anon_sym_DOLLARfeature] = ACTIONS(1520), - [anon_sym_DOLLARassignable] = ACTIONS(1520), - [anon_sym_BANG] = ACTIONS(1522), - [anon_sym_TILDE] = ACTIONS(1522), - [anon_sym_PLUS_PLUS] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1522), - [anon_sym_typeid] = ACTIONS(1520), - [anon_sym_LBRACE_PIPE] = ACTIONS(1522), - [anon_sym_void] = ACTIONS(1520), - [anon_sym_bool] = ACTIONS(1520), - [anon_sym_char] = ACTIONS(1520), - [anon_sym_ichar] = ACTIONS(1520), - [anon_sym_short] = ACTIONS(1520), - [anon_sym_ushort] = ACTIONS(1520), - [anon_sym_uint] = ACTIONS(1520), - [anon_sym_long] = ACTIONS(1520), - [anon_sym_ulong] = ACTIONS(1520), - [anon_sym_int128] = ACTIONS(1520), - [anon_sym_uint128] = ACTIONS(1520), - [anon_sym_float] = ACTIONS(1520), - [anon_sym_double] = ACTIONS(1520), - [anon_sym_float16] = ACTIONS(1520), - [anon_sym_bfloat16] = ACTIONS(1520), - [anon_sym_float128] = ACTIONS(1520), - [anon_sym_iptr] = ACTIONS(1520), - [anon_sym_uptr] = ACTIONS(1520), - [anon_sym_isz] = ACTIONS(1520), - [anon_sym_usz] = ACTIONS(1520), - [anon_sym_anyfault] = ACTIONS(1520), - [anon_sym_any] = ACTIONS(1520), - [anon_sym_DOLLARtypeof] = ACTIONS(1520), - [anon_sym_DOLLARtypefrom] = ACTIONS(1520), - [anon_sym_DOLLARvatype] = ACTIONS(1520), - [anon_sym_DOLLARevaltype] = ACTIONS(1520), - [sym_real_literal] = ACTIONS(1522), + [sym_ident] = ACTIONS(1601), + [sym_integer_literal] = ACTIONS(1603), + [anon_sym_SQUOTE] = ACTIONS(1603), + [anon_sym_DQUOTE] = ACTIONS(1603), + [anon_sym_BQUOTE] = ACTIONS(1603), + [sym_bytes_literal] = ACTIONS(1603), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1601), + [sym_at_ident] = ACTIONS(1603), + [sym_hash_ident] = ACTIONS(1603), + [sym_type_ident] = ACTIONS(1603), + [sym_ct_type_ident] = ACTIONS(1603), + [sym_const_ident] = ACTIONS(1601), + [sym_builtin] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_static] = ACTIONS(1601), + [anon_sym_tlocal] = ACTIONS(1601), + [anon_sym_SEMI] = ACTIONS(1603), + [anon_sym_fn] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(1601), + [anon_sym_const] = ACTIONS(1601), + [anon_sym_var] = ACTIONS(1601), + [anon_sym_return] = ACTIONS(1601), + [anon_sym_continue] = ACTIONS(1601), + [anon_sym_break] = ACTIONS(1601), + [anon_sym_defer] = ACTIONS(1601), + [anon_sym_assert] = ACTIONS(1601), + [anon_sym_nextcase] = ACTIONS(1601), + [anon_sym_switch] = ACTIONS(1601), + [anon_sym_AMP_AMP] = ACTIONS(1603), + [anon_sym_if] = ACTIONS(1601), + [anon_sym_for] = ACTIONS(1601), + [anon_sym_foreach] = ACTIONS(1601), + [anon_sym_foreach_r] = ACTIONS(1601), + [anon_sym_while] = ACTIONS(1601), + [anon_sym_do] = ACTIONS(1601), + [anon_sym_int] = ACTIONS(1601), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_asm] = ACTIONS(1601), + [anon_sym_DOLLARassert] = ACTIONS(1601), + [anon_sym_DOLLARerror] = ACTIONS(1601), + [anon_sym_DOLLARecho] = ACTIONS(1601), + [anon_sym_DOLLARif] = ACTIONS(1601), + [anon_sym_DOLLARendif] = ACTIONS(1601), + [anon_sym_DOLLARswitch] = ACTIONS(1601), + [anon_sym_DOLLARfor] = ACTIONS(1601), + [anon_sym_DOLLARforeach] = ACTIONS(1601), + [anon_sym_DOLLARalignof] = ACTIONS(1601), + [anon_sym_DOLLARextnameof] = ACTIONS(1601), + [anon_sym_DOLLARnameof] = ACTIONS(1601), + [anon_sym_DOLLARoffsetof] = ACTIONS(1601), + [anon_sym_DOLLARqnameof] = ACTIONS(1601), + [anon_sym_DOLLARvaconst] = ACTIONS(1601), + [anon_sym_DOLLARvaarg] = ACTIONS(1601), + [anon_sym_DOLLARvaref] = ACTIONS(1601), + [anon_sym_DOLLARvaexpr] = ACTIONS(1601), + [anon_sym_true] = ACTIONS(1601), + [anon_sym_false] = ACTIONS(1601), + [anon_sym_null] = ACTIONS(1601), + [anon_sym_DOLLARvacount] = ACTIONS(1601), + [anon_sym_DOLLARappend] = ACTIONS(1601), + [anon_sym_DOLLARconcat] = ACTIONS(1601), + [anon_sym_DOLLAReval] = ACTIONS(1601), + [anon_sym_DOLLARis_const] = ACTIONS(1601), + [anon_sym_DOLLARsizeof] = ACTIONS(1601), + [anon_sym_DOLLARstringify] = ACTIONS(1601), + [anon_sym_DOLLARand] = ACTIONS(1601), + [anon_sym_DOLLARdefined] = ACTIONS(1601), + [anon_sym_DOLLARembed] = ACTIONS(1601), + [anon_sym_DOLLARor] = ACTIONS(1601), + [anon_sym_DOLLARfeature] = ACTIONS(1601), + [anon_sym_DOLLARassignable] = ACTIONS(1601), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1603), + [anon_sym_DASH_DASH] = ACTIONS(1603), + [anon_sym_typeid] = ACTIONS(1601), + [anon_sym_LBRACE_PIPE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1601), + [anon_sym_bool] = ACTIONS(1601), + [anon_sym_char] = ACTIONS(1601), + [anon_sym_ichar] = ACTIONS(1601), + [anon_sym_short] = ACTIONS(1601), + [anon_sym_ushort] = ACTIONS(1601), + [anon_sym_uint] = ACTIONS(1601), + [anon_sym_long] = ACTIONS(1601), + [anon_sym_ulong] = ACTIONS(1601), + [anon_sym_int128] = ACTIONS(1601), + [anon_sym_uint128] = ACTIONS(1601), + [anon_sym_float] = ACTIONS(1601), + [anon_sym_double] = ACTIONS(1601), + [anon_sym_float16] = ACTIONS(1601), + [anon_sym_bfloat16] = ACTIONS(1601), + [anon_sym_float128] = ACTIONS(1601), + [anon_sym_iptr] = ACTIONS(1601), + [anon_sym_uptr] = ACTIONS(1601), + [anon_sym_isz] = ACTIONS(1601), + [anon_sym_usz] = ACTIONS(1601), + [anon_sym_anyfault] = ACTIONS(1601), + [anon_sym_any] = ACTIONS(1601), + [anon_sym_DOLLARtypeof] = ACTIONS(1601), + [anon_sym_DOLLARtypefrom] = ACTIONS(1601), + [anon_sym_DOLLARvatype] = ACTIONS(1601), + [anon_sym_DOLLARevaltype] = ACTIONS(1601), + [sym_real_literal] = ACTIONS(1603), }, [785] = { [sym_line_comment] = STATE(785), [sym_doc_comment] = STATE(785), [sym_block_comment] = STATE(785), - [sym_ident] = ACTIONS(1588), - [sym_integer_literal] = ACTIONS(1590), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_DQUOTE] = ACTIONS(1590), - [anon_sym_BQUOTE] = ACTIONS(1590), - [sym_bytes_literal] = ACTIONS(1590), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1588), - [sym_at_ident] = ACTIONS(1590), - [sym_hash_ident] = ACTIONS(1590), - [sym_type_ident] = ACTIONS(1590), - [sym_ct_type_ident] = ACTIONS(1590), - [sym_const_ident] = ACTIONS(1588), - [sym_builtin] = ACTIONS(1590), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_AMP] = ACTIONS(1588), - [anon_sym_static] = ACTIONS(1588), - [anon_sym_tlocal] = ACTIONS(1588), - [anon_sym_SEMI] = ACTIONS(1590), - [anon_sym_fn] = ACTIONS(1588), - [anon_sym_LBRACE] = ACTIONS(1588), - [anon_sym_const] = ACTIONS(1588), - [anon_sym_var] = ACTIONS(1588), - [anon_sym_return] = ACTIONS(1588), - [anon_sym_continue] = ACTIONS(1588), - [anon_sym_break] = ACTIONS(1588), - [anon_sym_defer] = ACTIONS(1588), - [anon_sym_assert] = ACTIONS(1588), - [anon_sym_nextcase] = ACTIONS(1588), - [anon_sym_switch] = ACTIONS(1588), - [anon_sym_AMP_AMP] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1588), - [anon_sym_for] = ACTIONS(1588), - [anon_sym_foreach] = ACTIONS(1588), - [anon_sym_foreach_r] = ACTIONS(1588), - [anon_sym_while] = ACTIONS(1588), - [anon_sym_do] = ACTIONS(1588), - [anon_sym_int] = ACTIONS(1588), - [anon_sym_PLUS] = ACTIONS(1588), - [anon_sym_DASH] = ACTIONS(1588), - [anon_sym_STAR] = ACTIONS(1590), - [anon_sym_asm] = ACTIONS(1588), - [anon_sym_DOLLARassert] = ACTIONS(1588), - [anon_sym_DOLLARerror] = ACTIONS(1588), - [anon_sym_DOLLARecho] = ACTIONS(1588), - [anon_sym_DOLLARif] = ACTIONS(1588), - [anon_sym_DOLLARendif] = ACTIONS(1588), - [anon_sym_DOLLARswitch] = ACTIONS(1588), - [anon_sym_DOLLARfor] = ACTIONS(1588), - [anon_sym_DOLLARforeach] = ACTIONS(1588), - [anon_sym_DOLLARalignof] = ACTIONS(1588), - [anon_sym_DOLLARextnameof] = ACTIONS(1588), - [anon_sym_DOLLARnameof] = ACTIONS(1588), - [anon_sym_DOLLARoffsetof] = ACTIONS(1588), - [anon_sym_DOLLARqnameof] = ACTIONS(1588), - [anon_sym_DOLLARvaconst] = ACTIONS(1588), - [anon_sym_DOLLARvaarg] = ACTIONS(1588), - [anon_sym_DOLLARvaref] = ACTIONS(1588), - [anon_sym_DOLLARvaexpr] = ACTIONS(1588), - [anon_sym_true] = ACTIONS(1588), - [anon_sym_false] = ACTIONS(1588), - [anon_sym_null] = ACTIONS(1588), - [anon_sym_DOLLARvacount] = ACTIONS(1588), - [anon_sym_DOLLARappend] = ACTIONS(1588), - [anon_sym_DOLLARconcat] = ACTIONS(1588), - [anon_sym_DOLLAReval] = ACTIONS(1588), - [anon_sym_DOLLARis_const] = ACTIONS(1588), - [anon_sym_DOLLARsizeof] = ACTIONS(1588), - [anon_sym_DOLLARstringify] = ACTIONS(1588), - [anon_sym_DOLLARand] = ACTIONS(1588), - [anon_sym_DOLLARdefined] = ACTIONS(1588), - [anon_sym_DOLLARembed] = ACTIONS(1588), - [anon_sym_DOLLARor] = ACTIONS(1588), - [anon_sym_DOLLARfeature] = ACTIONS(1588), - [anon_sym_DOLLARassignable] = ACTIONS(1588), - [anon_sym_BANG] = ACTIONS(1590), - [anon_sym_TILDE] = ACTIONS(1590), - [anon_sym_PLUS_PLUS] = ACTIONS(1590), - [anon_sym_DASH_DASH] = ACTIONS(1590), - [anon_sym_typeid] = ACTIONS(1588), - [anon_sym_LBRACE_PIPE] = ACTIONS(1590), - [anon_sym_void] = ACTIONS(1588), - [anon_sym_bool] = ACTIONS(1588), - [anon_sym_char] = ACTIONS(1588), - [anon_sym_ichar] = ACTIONS(1588), - [anon_sym_short] = ACTIONS(1588), - [anon_sym_ushort] = ACTIONS(1588), - [anon_sym_uint] = ACTIONS(1588), - [anon_sym_long] = ACTIONS(1588), - [anon_sym_ulong] = ACTIONS(1588), - [anon_sym_int128] = ACTIONS(1588), - [anon_sym_uint128] = ACTIONS(1588), - [anon_sym_float] = ACTIONS(1588), - [anon_sym_double] = ACTIONS(1588), - [anon_sym_float16] = ACTIONS(1588), - [anon_sym_bfloat16] = ACTIONS(1588), - [anon_sym_float128] = ACTIONS(1588), - [anon_sym_iptr] = ACTIONS(1588), - [anon_sym_uptr] = ACTIONS(1588), - [anon_sym_isz] = ACTIONS(1588), - [anon_sym_usz] = ACTIONS(1588), - [anon_sym_anyfault] = ACTIONS(1588), - [anon_sym_any] = ACTIONS(1588), - [anon_sym_DOLLARtypeof] = ACTIONS(1588), - [anon_sym_DOLLARtypefrom] = ACTIONS(1588), - [anon_sym_DOLLARvatype] = ACTIONS(1588), - [anon_sym_DOLLARevaltype] = ACTIONS(1588), - [sym_real_literal] = ACTIONS(1590), + [sym_ident] = ACTIONS(1613), + [sym_integer_literal] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(1615), + [anon_sym_DQUOTE] = ACTIONS(1615), + [anon_sym_BQUOTE] = ACTIONS(1615), + [sym_bytes_literal] = ACTIONS(1615), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1613), + [sym_at_ident] = ACTIONS(1615), + [sym_hash_ident] = ACTIONS(1615), + [sym_type_ident] = ACTIONS(1615), + [sym_ct_type_ident] = ACTIONS(1615), + [sym_const_ident] = ACTIONS(1613), + [sym_builtin] = ACTIONS(1615), + [anon_sym_LPAREN] = ACTIONS(1615), + [anon_sym_AMP] = ACTIONS(1613), + [anon_sym_static] = ACTIONS(1613), + [anon_sym_tlocal] = ACTIONS(1613), + [anon_sym_SEMI] = ACTIONS(1615), + [anon_sym_fn] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(1613), + [anon_sym_const] = ACTIONS(1613), + [anon_sym_var] = ACTIONS(1613), + [anon_sym_return] = ACTIONS(1613), + [anon_sym_continue] = ACTIONS(1613), + [anon_sym_break] = ACTIONS(1613), + [anon_sym_defer] = ACTIONS(1613), + [anon_sym_assert] = ACTIONS(1613), + [anon_sym_nextcase] = ACTIONS(1613), + [anon_sym_switch] = ACTIONS(1613), + [anon_sym_AMP_AMP] = ACTIONS(1615), + [anon_sym_if] = ACTIONS(1613), + [anon_sym_for] = ACTIONS(1613), + [anon_sym_foreach] = ACTIONS(1613), + [anon_sym_foreach_r] = ACTIONS(1613), + [anon_sym_while] = ACTIONS(1613), + [anon_sym_do] = ACTIONS(1613), + [anon_sym_int] = ACTIONS(1613), + [anon_sym_PLUS] = ACTIONS(1613), + [anon_sym_DASH] = ACTIONS(1613), + [anon_sym_STAR] = ACTIONS(1615), + [anon_sym_asm] = ACTIONS(1613), + [anon_sym_DOLLARassert] = ACTIONS(1613), + [anon_sym_DOLLARerror] = ACTIONS(1613), + [anon_sym_DOLLARecho] = ACTIONS(1613), + [anon_sym_DOLLARif] = ACTIONS(1613), + [anon_sym_DOLLARendif] = ACTIONS(1613), + [anon_sym_DOLLARswitch] = ACTIONS(1613), + [anon_sym_DOLLARfor] = ACTIONS(1613), + [anon_sym_DOLLARforeach] = ACTIONS(1613), + [anon_sym_DOLLARalignof] = ACTIONS(1613), + [anon_sym_DOLLARextnameof] = ACTIONS(1613), + [anon_sym_DOLLARnameof] = ACTIONS(1613), + [anon_sym_DOLLARoffsetof] = ACTIONS(1613), + [anon_sym_DOLLARqnameof] = ACTIONS(1613), + [anon_sym_DOLLARvaconst] = ACTIONS(1613), + [anon_sym_DOLLARvaarg] = ACTIONS(1613), + [anon_sym_DOLLARvaref] = ACTIONS(1613), + [anon_sym_DOLLARvaexpr] = ACTIONS(1613), + [anon_sym_true] = ACTIONS(1613), + [anon_sym_false] = ACTIONS(1613), + [anon_sym_null] = ACTIONS(1613), + [anon_sym_DOLLARvacount] = ACTIONS(1613), + [anon_sym_DOLLARappend] = ACTIONS(1613), + [anon_sym_DOLLARconcat] = ACTIONS(1613), + [anon_sym_DOLLAReval] = ACTIONS(1613), + [anon_sym_DOLLARis_const] = ACTIONS(1613), + [anon_sym_DOLLARsizeof] = ACTIONS(1613), + [anon_sym_DOLLARstringify] = ACTIONS(1613), + [anon_sym_DOLLARand] = ACTIONS(1613), + [anon_sym_DOLLARdefined] = ACTIONS(1613), + [anon_sym_DOLLARembed] = ACTIONS(1613), + [anon_sym_DOLLARor] = ACTIONS(1613), + [anon_sym_DOLLARfeature] = ACTIONS(1613), + [anon_sym_DOLLARassignable] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1615), + [anon_sym_TILDE] = ACTIONS(1615), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), + [anon_sym_typeid] = ACTIONS(1613), + [anon_sym_LBRACE_PIPE] = ACTIONS(1615), + [anon_sym_void] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_ichar] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [anon_sym_ushort] = ACTIONS(1613), + [anon_sym_uint] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_ulong] = ACTIONS(1613), + [anon_sym_int128] = ACTIONS(1613), + [anon_sym_uint128] = ACTIONS(1613), + [anon_sym_float] = ACTIONS(1613), + [anon_sym_double] = ACTIONS(1613), + [anon_sym_float16] = ACTIONS(1613), + [anon_sym_bfloat16] = ACTIONS(1613), + [anon_sym_float128] = ACTIONS(1613), + [anon_sym_iptr] = ACTIONS(1613), + [anon_sym_uptr] = ACTIONS(1613), + [anon_sym_isz] = ACTIONS(1613), + [anon_sym_usz] = ACTIONS(1613), + [anon_sym_anyfault] = ACTIONS(1613), + [anon_sym_any] = ACTIONS(1613), + [anon_sym_DOLLARtypeof] = ACTIONS(1613), + [anon_sym_DOLLARtypefrom] = ACTIONS(1613), + [anon_sym_DOLLARvatype] = ACTIONS(1613), + [anon_sym_DOLLARevaltype] = ACTIONS(1613), + [sym_real_literal] = ACTIONS(1615), }, [786] = { [sym_line_comment] = STATE(786), [sym_doc_comment] = STATE(786), [sym_block_comment] = STATE(786), - [sym_ident] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(1594), - [anon_sym_SQUOTE] = ACTIONS(1594), - [anon_sym_DQUOTE] = ACTIONS(1594), - [anon_sym_BQUOTE] = ACTIONS(1594), - [sym_bytes_literal] = ACTIONS(1594), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1592), - [sym_at_ident] = ACTIONS(1594), - [sym_hash_ident] = ACTIONS(1594), - [sym_type_ident] = ACTIONS(1594), - [sym_ct_type_ident] = ACTIONS(1594), - [sym_const_ident] = ACTIONS(1592), - [sym_builtin] = ACTIONS(1594), - [anon_sym_LPAREN] = ACTIONS(1594), - [anon_sym_AMP] = ACTIONS(1592), - [anon_sym_static] = ACTIONS(1592), - [anon_sym_tlocal] = ACTIONS(1592), - [anon_sym_SEMI] = ACTIONS(1594), - [anon_sym_fn] = ACTIONS(1592), - [anon_sym_LBRACE] = ACTIONS(1592), - [anon_sym_const] = ACTIONS(1592), - [anon_sym_var] = ACTIONS(1592), - [anon_sym_return] = ACTIONS(1592), - [anon_sym_continue] = ACTIONS(1592), - [anon_sym_break] = ACTIONS(1592), - [anon_sym_defer] = ACTIONS(1592), - [anon_sym_assert] = ACTIONS(1592), - [anon_sym_nextcase] = ACTIONS(1592), - [anon_sym_switch] = ACTIONS(1592), - [anon_sym_AMP_AMP] = ACTIONS(1594), - [anon_sym_if] = ACTIONS(1592), - [anon_sym_for] = ACTIONS(1592), - [anon_sym_foreach] = ACTIONS(1592), - [anon_sym_foreach_r] = ACTIONS(1592), - [anon_sym_while] = ACTIONS(1592), - [anon_sym_do] = ACTIONS(1592), - [anon_sym_int] = ACTIONS(1592), - [anon_sym_PLUS] = ACTIONS(1592), - [anon_sym_DASH] = ACTIONS(1592), - [anon_sym_STAR] = ACTIONS(1594), - [anon_sym_asm] = ACTIONS(1592), - [anon_sym_DOLLARassert] = ACTIONS(1592), - [anon_sym_DOLLARerror] = ACTIONS(1592), - [anon_sym_DOLLARecho] = ACTIONS(1592), - [anon_sym_DOLLARif] = ACTIONS(1592), - [anon_sym_DOLLARendif] = ACTIONS(1592), - [anon_sym_DOLLARswitch] = ACTIONS(1592), - [anon_sym_DOLLARfor] = ACTIONS(1592), - [anon_sym_DOLLARforeach] = ACTIONS(1592), - [anon_sym_DOLLARalignof] = ACTIONS(1592), - [anon_sym_DOLLARextnameof] = ACTIONS(1592), - [anon_sym_DOLLARnameof] = ACTIONS(1592), - [anon_sym_DOLLARoffsetof] = ACTIONS(1592), - [anon_sym_DOLLARqnameof] = ACTIONS(1592), - [anon_sym_DOLLARvaconst] = ACTIONS(1592), - [anon_sym_DOLLARvaarg] = ACTIONS(1592), - [anon_sym_DOLLARvaref] = ACTIONS(1592), - [anon_sym_DOLLARvaexpr] = ACTIONS(1592), - [anon_sym_true] = ACTIONS(1592), - [anon_sym_false] = ACTIONS(1592), - [anon_sym_null] = ACTIONS(1592), - [anon_sym_DOLLARvacount] = ACTIONS(1592), - [anon_sym_DOLLARappend] = ACTIONS(1592), - [anon_sym_DOLLARconcat] = ACTIONS(1592), - [anon_sym_DOLLAReval] = ACTIONS(1592), - [anon_sym_DOLLARis_const] = ACTIONS(1592), - [anon_sym_DOLLARsizeof] = ACTIONS(1592), - [anon_sym_DOLLARstringify] = ACTIONS(1592), - [anon_sym_DOLLARand] = ACTIONS(1592), - [anon_sym_DOLLARdefined] = ACTIONS(1592), - [anon_sym_DOLLARembed] = ACTIONS(1592), - [anon_sym_DOLLARor] = ACTIONS(1592), - [anon_sym_DOLLARfeature] = ACTIONS(1592), - [anon_sym_DOLLARassignable] = ACTIONS(1592), - [anon_sym_BANG] = ACTIONS(1594), - [anon_sym_TILDE] = ACTIONS(1594), - [anon_sym_PLUS_PLUS] = ACTIONS(1594), - [anon_sym_DASH_DASH] = ACTIONS(1594), - [anon_sym_typeid] = ACTIONS(1592), - [anon_sym_LBRACE_PIPE] = ACTIONS(1594), - [anon_sym_void] = ACTIONS(1592), - [anon_sym_bool] = ACTIONS(1592), - [anon_sym_char] = ACTIONS(1592), - [anon_sym_ichar] = ACTIONS(1592), - [anon_sym_short] = ACTIONS(1592), - [anon_sym_ushort] = ACTIONS(1592), - [anon_sym_uint] = ACTIONS(1592), - [anon_sym_long] = ACTIONS(1592), - [anon_sym_ulong] = ACTIONS(1592), - [anon_sym_int128] = ACTIONS(1592), - [anon_sym_uint128] = ACTIONS(1592), - [anon_sym_float] = ACTIONS(1592), - [anon_sym_double] = ACTIONS(1592), - [anon_sym_float16] = ACTIONS(1592), - [anon_sym_bfloat16] = ACTIONS(1592), - [anon_sym_float128] = ACTIONS(1592), - [anon_sym_iptr] = ACTIONS(1592), - [anon_sym_uptr] = ACTIONS(1592), - [anon_sym_isz] = ACTIONS(1592), - [anon_sym_usz] = ACTIONS(1592), - [anon_sym_anyfault] = ACTIONS(1592), - [anon_sym_any] = ACTIONS(1592), - [anon_sym_DOLLARtypeof] = ACTIONS(1592), - [anon_sym_DOLLARtypefrom] = ACTIONS(1592), - [anon_sym_DOLLARvatype] = ACTIONS(1592), - [anon_sym_DOLLARevaltype] = ACTIONS(1592), - [sym_real_literal] = ACTIONS(1594), + [sym_ident] = ACTIONS(1617), + [sym_integer_literal] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1619), + [anon_sym_BQUOTE] = ACTIONS(1619), + [sym_bytes_literal] = ACTIONS(1619), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1617), + [sym_at_ident] = ACTIONS(1619), + [sym_hash_ident] = ACTIONS(1619), + [sym_type_ident] = ACTIONS(1619), + [sym_ct_type_ident] = ACTIONS(1619), + [sym_const_ident] = ACTIONS(1617), + [sym_builtin] = ACTIONS(1619), + [anon_sym_LPAREN] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1617), + [anon_sym_static] = ACTIONS(1617), + [anon_sym_tlocal] = ACTIONS(1617), + [anon_sym_SEMI] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1617), + [anon_sym_LBRACE] = ACTIONS(1617), + [anon_sym_const] = ACTIONS(1617), + [anon_sym_var] = ACTIONS(1617), + [anon_sym_return] = ACTIONS(1617), + [anon_sym_continue] = ACTIONS(1617), + [anon_sym_break] = ACTIONS(1617), + [anon_sym_defer] = ACTIONS(1617), + [anon_sym_assert] = ACTIONS(1617), + [anon_sym_nextcase] = ACTIONS(1617), + [anon_sym_switch] = ACTIONS(1617), + [anon_sym_AMP_AMP] = ACTIONS(1619), + [anon_sym_if] = ACTIONS(1617), + [anon_sym_for] = ACTIONS(1617), + [anon_sym_foreach] = ACTIONS(1617), + [anon_sym_foreach_r] = ACTIONS(1617), + [anon_sym_while] = ACTIONS(1617), + [anon_sym_do] = ACTIONS(1617), + [anon_sym_int] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_asm] = ACTIONS(1617), + [anon_sym_DOLLARassert] = ACTIONS(1617), + [anon_sym_DOLLARerror] = ACTIONS(1617), + [anon_sym_DOLLARecho] = ACTIONS(1617), + [anon_sym_DOLLARif] = ACTIONS(1617), + [anon_sym_DOLLARendif] = ACTIONS(1617), + [anon_sym_DOLLARswitch] = ACTIONS(1617), + [anon_sym_DOLLARfor] = ACTIONS(1617), + [anon_sym_DOLLARforeach] = ACTIONS(1617), + [anon_sym_DOLLARalignof] = ACTIONS(1617), + [anon_sym_DOLLARextnameof] = ACTIONS(1617), + [anon_sym_DOLLARnameof] = ACTIONS(1617), + [anon_sym_DOLLARoffsetof] = ACTIONS(1617), + [anon_sym_DOLLARqnameof] = ACTIONS(1617), + [anon_sym_DOLLARvaconst] = ACTIONS(1617), + [anon_sym_DOLLARvaarg] = ACTIONS(1617), + [anon_sym_DOLLARvaref] = ACTIONS(1617), + [anon_sym_DOLLARvaexpr] = ACTIONS(1617), + [anon_sym_true] = ACTIONS(1617), + [anon_sym_false] = ACTIONS(1617), + [anon_sym_null] = ACTIONS(1617), + [anon_sym_DOLLARvacount] = ACTIONS(1617), + [anon_sym_DOLLARappend] = ACTIONS(1617), + [anon_sym_DOLLARconcat] = ACTIONS(1617), + [anon_sym_DOLLAReval] = ACTIONS(1617), + [anon_sym_DOLLARis_const] = ACTIONS(1617), + [anon_sym_DOLLARsizeof] = ACTIONS(1617), + [anon_sym_DOLLARstringify] = ACTIONS(1617), + [anon_sym_DOLLARand] = ACTIONS(1617), + [anon_sym_DOLLARdefined] = ACTIONS(1617), + [anon_sym_DOLLARembed] = ACTIONS(1617), + [anon_sym_DOLLARor] = ACTIONS(1617), + [anon_sym_DOLLARfeature] = ACTIONS(1617), + [anon_sym_DOLLARassignable] = ACTIONS(1617), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_typeid] = ACTIONS(1617), + [anon_sym_LBRACE_PIPE] = ACTIONS(1619), + [anon_sym_void] = ACTIONS(1617), + [anon_sym_bool] = ACTIONS(1617), + [anon_sym_char] = ACTIONS(1617), + [anon_sym_ichar] = ACTIONS(1617), + [anon_sym_short] = ACTIONS(1617), + [anon_sym_ushort] = ACTIONS(1617), + [anon_sym_uint] = ACTIONS(1617), + [anon_sym_long] = ACTIONS(1617), + [anon_sym_ulong] = ACTIONS(1617), + [anon_sym_int128] = ACTIONS(1617), + [anon_sym_uint128] = ACTIONS(1617), + [anon_sym_float] = ACTIONS(1617), + [anon_sym_double] = ACTIONS(1617), + [anon_sym_float16] = ACTIONS(1617), + [anon_sym_bfloat16] = ACTIONS(1617), + [anon_sym_float128] = ACTIONS(1617), + [anon_sym_iptr] = ACTIONS(1617), + [anon_sym_uptr] = ACTIONS(1617), + [anon_sym_isz] = ACTIONS(1617), + [anon_sym_usz] = ACTIONS(1617), + [anon_sym_anyfault] = ACTIONS(1617), + [anon_sym_any] = ACTIONS(1617), + [anon_sym_DOLLARtypeof] = ACTIONS(1617), + [anon_sym_DOLLARtypefrom] = ACTIONS(1617), + [anon_sym_DOLLARvatype] = ACTIONS(1617), + [anon_sym_DOLLARevaltype] = ACTIONS(1617), + [sym_real_literal] = ACTIONS(1619), }, [787] = { [sym_line_comment] = STATE(787), [sym_doc_comment] = STATE(787), [sym_block_comment] = STATE(787), - [sym_ident] = ACTIONS(1628), - [sym_integer_literal] = ACTIONS(1630), - [anon_sym_SQUOTE] = ACTIONS(1630), - [anon_sym_DQUOTE] = ACTIONS(1630), - [anon_sym_BQUOTE] = ACTIONS(1630), - [sym_bytes_literal] = ACTIONS(1630), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1628), - [sym_at_ident] = ACTIONS(1630), - [sym_hash_ident] = ACTIONS(1630), - [sym_type_ident] = ACTIONS(1630), - [sym_ct_type_ident] = ACTIONS(1630), - [sym_const_ident] = ACTIONS(1628), - [sym_builtin] = ACTIONS(1630), - [anon_sym_LPAREN] = ACTIONS(1630), - [anon_sym_AMP] = ACTIONS(1628), - [anon_sym_static] = ACTIONS(1628), - [anon_sym_tlocal] = ACTIONS(1628), - [anon_sym_SEMI] = ACTIONS(1630), - [anon_sym_fn] = ACTIONS(1628), - [anon_sym_LBRACE] = ACTIONS(1628), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_var] = ACTIONS(1628), - [anon_sym_return] = ACTIONS(1628), - [anon_sym_continue] = ACTIONS(1628), - [anon_sym_break] = ACTIONS(1628), - [anon_sym_defer] = ACTIONS(1628), - [anon_sym_assert] = ACTIONS(1628), - [anon_sym_nextcase] = ACTIONS(1628), - [anon_sym_switch] = ACTIONS(1628), - [anon_sym_AMP_AMP] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1628), - [anon_sym_for] = ACTIONS(1628), - [anon_sym_foreach] = ACTIONS(1628), - [anon_sym_foreach_r] = ACTIONS(1628), - [anon_sym_while] = ACTIONS(1628), - [anon_sym_do] = ACTIONS(1628), - [anon_sym_int] = ACTIONS(1628), - [anon_sym_PLUS] = ACTIONS(1628), - [anon_sym_DASH] = ACTIONS(1628), - [anon_sym_STAR] = ACTIONS(1630), - [anon_sym_asm] = ACTIONS(1628), - [anon_sym_DOLLARassert] = ACTIONS(1628), - [anon_sym_DOLLARerror] = ACTIONS(1628), - [anon_sym_DOLLARecho] = ACTIONS(1628), - [anon_sym_DOLLARif] = ACTIONS(1628), - [anon_sym_DOLLARendif] = ACTIONS(1628), - [anon_sym_DOLLARswitch] = ACTIONS(1628), - [anon_sym_DOLLARfor] = ACTIONS(1628), - [anon_sym_DOLLARforeach] = ACTIONS(1628), - [anon_sym_DOLLARalignof] = ACTIONS(1628), - [anon_sym_DOLLARextnameof] = ACTIONS(1628), - [anon_sym_DOLLARnameof] = ACTIONS(1628), - [anon_sym_DOLLARoffsetof] = ACTIONS(1628), - [anon_sym_DOLLARqnameof] = ACTIONS(1628), - [anon_sym_DOLLARvaconst] = ACTIONS(1628), - [anon_sym_DOLLARvaarg] = ACTIONS(1628), - [anon_sym_DOLLARvaref] = ACTIONS(1628), - [anon_sym_DOLLARvaexpr] = ACTIONS(1628), - [anon_sym_true] = ACTIONS(1628), - [anon_sym_false] = ACTIONS(1628), - [anon_sym_null] = ACTIONS(1628), - [anon_sym_DOLLARvacount] = ACTIONS(1628), - [anon_sym_DOLLARappend] = ACTIONS(1628), - [anon_sym_DOLLARconcat] = ACTIONS(1628), - [anon_sym_DOLLAReval] = ACTIONS(1628), - [anon_sym_DOLLARis_const] = ACTIONS(1628), - [anon_sym_DOLLARsizeof] = ACTIONS(1628), - [anon_sym_DOLLARstringify] = ACTIONS(1628), - [anon_sym_DOLLARand] = ACTIONS(1628), - [anon_sym_DOLLARdefined] = ACTIONS(1628), - [anon_sym_DOLLARembed] = ACTIONS(1628), - [anon_sym_DOLLARor] = ACTIONS(1628), - [anon_sym_DOLLARfeature] = ACTIONS(1628), - [anon_sym_DOLLARassignable] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1630), - [anon_sym_TILDE] = ACTIONS(1630), - [anon_sym_PLUS_PLUS] = ACTIONS(1630), - [anon_sym_DASH_DASH] = ACTIONS(1630), - [anon_sym_typeid] = ACTIONS(1628), - [anon_sym_LBRACE_PIPE] = ACTIONS(1630), - [anon_sym_void] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_ichar] = ACTIONS(1628), - [anon_sym_short] = ACTIONS(1628), - [anon_sym_ushort] = ACTIONS(1628), - [anon_sym_uint] = ACTIONS(1628), - [anon_sym_long] = ACTIONS(1628), - [anon_sym_ulong] = ACTIONS(1628), - [anon_sym_int128] = ACTIONS(1628), - [anon_sym_uint128] = ACTIONS(1628), - [anon_sym_float] = ACTIONS(1628), - [anon_sym_double] = ACTIONS(1628), - [anon_sym_float16] = ACTIONS(1628), - [anon_sym_bfloat16] = ACTIONS(1628), - [anon_sym_float128] = ACTIONS(1628), - [anon_sym_iptr] = ACTIONS(1628), - [anon_sym_uptr] = ACTIONS(1628), - [anon_sym_isz] = ACTIONS(1628), - [anon_sym_usz] = ACTIONS(1628), - [anon_sym_anyfault] = ACTIONS(1628), - [anon_sym_any] = ACTIONS(1628), - [anon_sym_DOLLARtypeof] = ACTIONS(1628), - [anon_sym_DOLLARtypefrom] = ACTIONS(1628), - [anon_sym_DOLLARvatype] = ACTIONS(1628), - [anon_sym_DOLLARevaltype] = ACTIONS(1628), - [sym_real_literal] = ACTIONS(1630), + [sym_ident] = ACTIONS(1537), + [sym_integer_literal] = ACTIONS(1539), + [anon_sym_SQUOTE] = ACTIONS(1539), + [anon_sym_DQUOTE] = ACTIONS(1539), + [anon_sym_BQUOTE] = ACTIONS(1539), + [sym_bytes_literal] = ACTIONS(1539), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1537), + [sym_at_ident] = ACTIONS(1539), + [sym_hash_ident] = ACTIONS(1539), + [sym_type_ident] = ACTIONS(1539), + [sym_ct_type_ident] = ACTIONS(1539), + [sym_const_ident] = ACTIONS(1537), + [sym_builtin] = ACTIONS(1539), + [anon_sym_LPAREN] = ACTIONS(1539), + [anon_sym_AMP] = ACTIONS(1537), + [anon_sym_static] = ACTIONS(1537), + [anon_sym_tlocal] = ACTIONS(1537), + [anon_sym_SEMI] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1537), + [anon_sym_LBRACE] = ACTIONS(1537), + [anon_sym_const] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(1537), + [anon_sym_return] = ACTIONS(1537), + [anon_sym_continue] = ACTIONS(1537), + [anon_sym_break] = ACTIONS(1537), + [anon_sym_defer] = ACTIONS(1537), + [anon_sym_assert] = ACTIONS(1537), + [anon_sym_nextcase] = ACTIONS(1537), + [anon_sym_switch] = ACTIONS(1537), + [anon_sym_AMP_AMP] = ACTIONS(1539), + [anon_sym_if] = ACTIONS(1537), + [anon_sym_for] = ACTIONS(1537), + [anon_sym_foreach] = ACTIONS(1537), + [anon_sym_foreach_r] = ACTIONS(1537), + [anon_sym_while] = ACTIONS(1537), + [anon_sym_do] = ACTIONS(1537), + [anon_sym_int] = ACTIONS(1537), + [anon_sym_PLUS] = ACTIONS(1537), + [anon_sym_DASH] = ACTIONS(1537), + [anon_sym_STAR] = ACTIONS(1539), + [anon_sym_asm] = ACTIONS(1537), + [anon_sym_DOLLARassert] = ACTIONS(1537), + [anon_sym_DOLLARerror] = ACTIONS(1537), + [anon_sym_DOLLARecho] = ACTIONS(1537), + [anon_sym_DOLLARif] = ACTIONS(1537), + [anon_sym_DOLLARendif] = ACTIONS(1537), + [anon_sym_DOLLARswitch] = ACTIONS(1537), + [anon_sym_DOLLARfor] = ACTIONS(1537), + [anon_sym_DOLLARforeach] = ACTIONS(1537), + [anon_sym_DOLLARalignof] = ACTIONS(1537), + [anon_sym_DOLLARextnameof] = ACTIONS(1537), + [anon_sym_DOLLARnameof] = ACTIONS(1537), + [anon_sym_DOLLARoffsetof] = ACTIONS(1537), + [anon_sym_DOLLARqnameof] = ACTIONS(1537), + [anon_sym_DOLLARvaconst] = ACTIONS(1537), + [anon_sym_DOLLARvaarg] = ACTIONS(1537), + [anon_sym_DOLLARvaref] = ACTIONS(1537), + [anon_sym_DOLLARvaexpr] = ACTIONS(1537), + [anon_sym_true] = ACTIONS(1537), + [anon_sym_false] = ACTIONS(1537), + [anon_sym_null] = ACTIONS(1537), + [anon_sym_DOLLARvacount] = ACTIONS(1537), + [anon_sym_DOLLARappend] = ACTIONS(1537), + [anon_sym_DOLLARconcat] = ACTIONS(1537), + [anon_sym_DOLLAReval] = ACTIONS(1537), + [anon_sym_DOLLARis_const] = ACTIONS(1537), + [anon_sym_DOLLARsizeof] = ACTIONS(1537), + [anon_sym_DOLLARstringify] = ACTIONS(1537), + [anon_sym_DOLLARand] = ACTIONS(1537), + [anon_sym_DOLLARdefined] = ACTIONS(1537), + [anon_sym_DOLLARembed] = ACTIONS(1537), + [anon_sym_DOLLARor] = ACTIONS(1537), + [anon_sym_DOLLARfeature] = ACTIONS(1537), + [anon_sym_DOLLARassignable] = ACTIONS(1537), + [anon_sym_BANG] = ACTIONS(1539), + [anon_sym_TILDE] = ACTIONS(1539), + [anon_sym_PLUS_PLUS] = ACTIONS(1539), + [anon_sym_DASH_DASH] = ACTIONS(1539), + [anon_sym_typeid] = ACTIONS(1537), + [anon_sym_LBRACE_PIPE] = ACTIONS(1539), + [anon_sym_void] = ACTIONS(1537), + [anon_sym_bool] = ACTIONS(1537), + [anon_sym_char] = ACTIONS(1537), + [anon_sym_ichar] = ACTIONS(1537), + [anon_sym_short] = ACTIONS(1537), + [anon_sym_ushort] = ACTIONS(1537), + [anon_sym_uint] = ACTIONS(1537), + [anon_sym_long] = ACTIONS(1537), + [anon_sym_ulong] = ACTIONS(1537), + [anon_sym_int128] = ACTIONS(1537), + [anon_sym_uint128] = ACTIONS(1537), + [anon_sym_float] = ACTIONS(1537), + [anon_sym_double] = ACTIONS(1537), + [anon_sym_float16] = ACTIONS(1537), + [anon_sym_bfloat16] = ACTIONS(1537), + [anon_sym_float128] = ACTIONS(1537), + [anon_sym_iptr] = ACTIONS(1537), + [anon_sym_uptr] = ACTIONS(1537), + [anon_sym_isz] = ACTIONS(1537), + [anon_sym_usz] = ACTIONS(1537), + [anon_sym_anyfault] = ACTIONS(1537), + [anon_sym_any] = ACTIONS(1537), + [anon_sym_DOLLARtypeof] = ACTIONS(1537), + [anon_sym_DOLLARtypefrom] = ACTIONS(1537), + [anon_sym_DOLLARvatype] = ACTIONS(1537), + [anon_sym_DOLLARevaltype] = ACTIONS(1537), + [sym_real_literal] = ACTIONS(1539), }, [788] = { [sym_line_comment] = STATE(788), [sym_doc_comment] = STATE(788), [sym_block_comment] = STATE(788), - [sym_ident] = ACTIONS(1596), - [sym_integer_literal] = ACTIONS(1598), - [anon_sym_SQUOTE] = ACTIONS(1598), - [anon_sym_DQUOTE] = ACTIONS(1598), - [anon_sym_BQUOTE] = ACTIONS(1598), - [sym_bytes_literal] = ACTIONS(1598), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1596), - [sym_at_ident] = ACTIONS(1598), - [sym_hash_ident] = ACTIONS(1598), - [sym_type_ident] = ACTIONS(1598), - [sym_ct_type_ident] = ACTIONS(1598), - [sym_const_ident] = ACTIONS(1596), - [sym_builtin] = ACTIONS(1598), - [anon_sym_LPAREN] = ACTIONS(1598), - [anon_sym_AMP] = ACTIONS(1596), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_tlocal] = ACTIONS(1596), - [anon_sym_SEMI] = ACTIONS(1598), - [anon_sym_fn] = ACTIONS(1596), - [anon_sym_LBRACE] = ACTIONS(1596), - [anon_sym_const] = ACTIONS(1596), - [anon_sym_var] = ACTIONS(1596), - [anon_sym_return] = ACTIONS(1596), - [anon_sym_continue] = ACTIONS(1596), - [anon_sym_break] = ACTIONS(1596), - [anon_sym_defer] = ACTIONS(1596), - [anon_sym_assert] = ACTIONS(1596), - [anon_sym_nextcase] = ACTIONS(1596), - [anon_sym_switch] = ACTIONS(1596), - [anon_sym_AMP_AMP] = ACTIONS(1598), - [anon_sym_if] = ACTIONS(1596), - [anon_sym_for] = ACTIONS(1596), - [anon_sym_foreach] = ACTIONS(1596), - [anon_sym_foreach_r] = ACTIONS(1596), - [anon_sym_while] = ACTIONS(1596), - [anon_sym_do] = ACTIONS(1596), - [anon_sym_int] = ACTIONS(1596), - [anon_sym_PLUS] = ACTIONS(1596), - [anon_sym_DASH] = ACTIONS(1596), - [anon_sym_STAR] = ACTIONS(1598), - [anon_sym_asm] = ACTIONS(1596), - [anon_sym_DOLLARassert] = ACTIONS(1596), - [anon_sym_DOLLARerror] = ACTIONS(1596), - [anon_sym_DOLLARecho] = ACTIONS(1596), - [anon_sym_DOLLARif] = ACTIONS(1596), - [anon_sym_DOLLARendif] = ACTIONS(1596), - [anon_sym_DOLLARswitch] = ACTIONS(1596), - [anon_sym_DOLLARfor] = ACTIONS(1596), - [anon_sym_DOLLARforeach] = ACTIONS(1596), - [anon_sym_DOLLARalignof] = ACTIONS(1596), - [anon_sym_DOLLARextnameof] = ACTIONS(1596), - [anon_sym_DOLLARnameof] = ACTIONS(1596), - [anon_sym_DOLLARoffsetof] = ACTIONS(1596), - [anon_sym_DOLLARqnameof] = ACTIONS(1596), - [anon_sym_DOLLARvaconst] = ACTIONS(1596), - [anon_sym_DOLLARvaarg] = ACTIONS(1596), - [anon_sym_DOLLARvaref] = ACTIONS(1596), - [anon_sym_DOLLARvaexpr] = ACTIONS(1596), - [anon_sym_true] = ACTIONS(1596), - [anon_sym_false] = ACTIONS(1596), - [anon_sym_null] = ACTIONS(1596), - [anon_sym_DOLLARvacount] = ACTIONS(1596), - [anon_sym_DOLLARappend] = ACTIONS(1596), - [anon_sym_DOLLARconcat] = ACTIONS(1596), - [anon_sym_DOLLAReval] = ACTIONS(1596), - [anon_sym_DOLLARis_const] = ACTIONS(1596), - [anon_sym_DOLLARsizeof] = ACTIONS(1596), - [anon_sym_DOLLARstringify] = ACTIONS(1596), - [anon_sym_DOLLARand] = ACTIONS(1596), - [anon_sym_DOLLARdefined] = ACTIONS(1596), - [anon_sym_DOLLARembed] = ACTIONS(1596), - [anon_sym_DOLLARor] = ACTIONS(1596), - [anon_sym_DOLLARfeature] = ACTIONS(1596), - [anon_sym_DOLLARassignable] = ACTIONS(1596), - [anon_sym_BANG] = ACTIONS(1598), - [anon_sym_TILDE] = ACTIONS(1598), - [anon_sym_PLUS_PLUS] = ACTIONS(1598), - [anon_sym_DASH_DASH] = ACTIONS(1598), - [anon_sym_typeid] = ACTIONS(1596), - [anon_sym_LBRACE_PIPE] = ACTIONS(1598), - [anon_sym_void] = ACTIONS(1596), - [anon_sym_bool] = ACTIONS(1596), - [anon_sym_char] = ACTIONS(1596), - [anon_sym_ichar] = ACTIONS(1596), - [anon_sym_short] = ACTIONS(1596), - [anon_sym_ushort] = ACTIONS(1596), - [anon_sym_uint] = ACTIONS(1596), - [anon_sym_long] = ACTIONS(1596), - [anon_sym_ulong] = ACTIONS(1596), - [anon_sym_int128] = ACTIONS(1596), - [anon_sym_uint128] = ACTIONS(1596), - [anon_sym_float] = ACTIONS(1596), - [anon_sym_double] = ACTIONS(1596), - [anon_sym_float16] = ACTIONS(1596), - [anon_sym_bfloat16] = ACTIONS(1596), - [anon_sym_float128] = ACTIONS(1596), - [anon_sym_iptr] = ACTIONS(1596), - [anon_sym_uptr] = ACTIONS(1596), - [anon_sym_isz] = ACTIONS(1596), - [anon_sym_usz] = ACTIONS(1596), - [anon_sym_anyfault] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_DOLLARtypeof] = ACTIONS(1596), - [anon_sym_DOLLARtypefrom] = ACTIONS(1596), - [anon_sym_DOLLARvatype] = ACTIONS(1596), - [anon_sym_DOLLARevaltype] = ACTIONS(1596), - [sym_real_literal] = ACTIONS(1598), + [sym_ident] = ACTIONS(1561), + [sym_integer_literal] = ACTIONS(1563), + [anon_sym_SQUOTE] = ACTIONS(1563), + [anon_sym_DQUOTE] = ACTIONS(1563), + [anon_sym_BQUOTE] = ACTIONS(1563), + [sym_bytes_literal] = ACTIONS(1563), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1561), + [sym_at_ident] = ACTIONS(1563), + [sym_hash_ident] = ACTIONS(1563), + [sym_type_ident] = ACTIONS(1563), + [sym_ct_type_ident] = ACTIONS(1563), + [sym_const_ident] = ACTIONS(1561), + [sym_builtin] = ACTIONS(1563), + [anon_sym_LPAREN] = ACTIONS(1563), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_static] = ACTIONS(1561), + [anon_sym_tlocal] = ACTIONS(1561), + [anon_sym_SEMI] = ACTIONS(1563), + [anon_sym_fn] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_const] = ACTIONS(1561), + [anon_sym_var] = ACTIONS(1561), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_continue] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1561), + [anon_sym_defer] = ACTIONS(1561), + [anon_sym_assert] = ACTIONS(1561), + [anon_sym_nextcase] = ACTIONS(1561), + [anon_sym_switch] = ACTIONS(1561), + [anon_sym_AMP_AMP] = ACTIONS(1563), + [anon_sym_if] = ACTIONS(1561), + [anon_sym_for] = ACTIONS(1561), + [anon_sym_foreach] = ACTIONS(1561), + [anon_sym_foreach_r] = ACTIONS(1561), + [anon_sym_while] = ACTIONS(1561), + [anon_sym_do] = ACTIONS(1561), + [anon_sym_int] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1561), + [anon_sym_STAR] = ACTIONS(1563), + [anon_sym_asm] = ACTIONS(1561), + [anon_sym_DOLLARassert] = ACTIONS(1561), + [anon_sym_DOLLARerror] = ACTIONS(1561), + [anon_sym_DOLLARecho] = ACTIONS(1561), + [anon_sym_DOLLARif] = ACTIONS(1561), + [anon_sym_DOLLARendif] = ACTIONS(1561), + [anon_sym_DOLLARswitch] = ACTIONS(1561), + [anon_sym_DOLLARfor] = ACTIONS(1561), + [anon_sym_DOLLARforeach] = ACTIONS(1561), + [anon_sym_DOLLARalignof] = ACTIONS(1561), + [anon_sym_DOLLARextnameof] = ACTIONS(1561), + [anon_sym_DOLLARnameof] = ACTIONS(1561), + [anon_sym_DOLLARoffsetof] = ACTIONS(1561), + [anon_sym_DOLLARqnameof] = ACTIONS(1561), + [anon_sym_DOLLARvaconst] = ACTIONS(1561), + [anon_sym_DOLLARvaarg] = ACTIONS(1561), + [anon_sym_DOLLARvaref] = ACTIONS(1561), + [anon_sym_DOLLARvaexpr] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1561), + [anon_sym_false] = ACTIONS(1561), + [anon_sym_null] = ACTIONS(1561), + [anon_sym_DOLLARvacount] = ACTIONS(1561), + [anon_sym_DOLLARappend] = ACTIONS(1561), + [anon_sym_DOLLARconcat] = ACTIONS(1561), + [anon_sym_DOLLAReval] = ACTIONS(1561), + [anon_sym_DOLLARis_const] = ACTIONS(1561), + [anon_sym_DOLLARsizeof] = ACTIONS(1561), + [anon_sym_DOLLARstringify] = ACTIONS(1561), + [anon_sym_DOLLARand] = ACTIONS(1561), + [anon_sym_DOLLARdefined] = ACTIONS(1561), + [anon_sym_DOLLARembed] = ACTIONS(1561), + [anon_sym_DOLLARor] = ACTIONS(1561), + [anon_sym_DOLLARfeature] = ACTIONS(1561), + [anon_sym_DOLLARassignable] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1563), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_PLUS_PLUS] = ACTIONS(1563), + [anon_sym_DASH_DASH] = ACTIONS(1563), + [anon_sym_typeid] = ACTIONS(1561), + [anon_sym_LBRACE_PIPE] = ACTIONS(1563), + [anon_sym_void] = ACTIONS(1561), + [anon_sym_bool] = ACTIONS(1561), + [anon_sym_char] = ACTIONS(1561), + [anon_sym_ichar] = ACTIONS(1561), + [anon_sym_short] = ACTIONS(1561), + [anon_sym_ushort] = ACTIONS(1561), + [anon_sym_uint] = ACTIONS(1561), + [anon_sym_long] = ACTIONS(1561), + [anon_sym_ulong] = ACTIONS(1561), + [anon_sym_int128] = ACTIONS(1561), + [anon_sym_uint128] = ACTIONS(1561), + [anon_sym_float] = ACTIONS(1561), + [anon_sym_double] = ACTIONS(1561), + [anon_sym_float16] = ACTIONS(1561), + [anon_sym_bfloat16] = ACTIONS(1561), + [anon_sym_float128] = ACTIONS(1561), + [anon_sym_iptr] = ACTIONS(1561), + [anon_sym_uptr] = ACTIONS(1561), + [anon_sym_isz] = ACTIONS(1561), + [anon_sym_usz] = ACTIONS(1561), + [anon_sym_anyfault] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1561), + [anon_sym_DOLLARtypeof] = ACTIONS(1561), + [anon_sym_DOLLARtypefrom] = ACTIONS(1561), + [anon_sym_DOLLARvatype] = ACTIONS(1561), + [anon_sym_DOLLARevaltype] = ACTIONS(1561), + [sym_real_literal] = ACTIONS(1563), }, [789] = { [sym_line_comment] = STATE(789), [sym_doc_comment] = STATE(789), [sym_block_comment] = STATE(789), - [sym_ident] = ACTIONS(1564), - [sym_integer_literal] = ACTIONS(1566), - [anon_sym_SQUOTE] = ACTIONS(1566), - [anon_sym_DQUOTE] = ACTIONS(1566), - [anon_sym_BQUOTE] = ACTIONS(1566), - [sym_bytes_literal] = ACTIONS(1566), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1564), - [sym_at_ident] = ACTIONS(1566), - [sym_hash_ident] = ACTIONS(1566), - [sym_type_ident] = ACTIONS(1566), - [sym_ct_type_ident] = ACTIONS(1566), - [sym_const_ident] = ACTIONS(1564), - [sym_builtin] = ACTIONS(1566), - [anon_sym_LPAREN] = ACTIONS(1566), - [anon_sym_AMP] = ACTIONS(1564), - [anon_sym_static] = ACTIONS(1564), - [anon_sym_tlocal] = ACTIONS(1564), - [anon_sym_SEMI] = ACTIONS(1566), - [anon_sym_fn] = ACTIONS(1564), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_const] = ACTIONS(1564), - [anon_sym_var] = ACTIONS(1564), - [anon_sym_return] = ACTIONS(1564), - [anon_sym_continue] = ACTIONS(1564), - [anon_sym_break] = ACTIONS(1564), - [anon_sym_defer] = ACTIONS(1564), - [anon_sym_assert] = ACTIONS(1564), - [anon_sym_nextcase] = ACTIONS(1564), - [anon_sym_switch] = ACTIONS(1564), - [anon_sym_AMP_AMP] = ACTIONS(1566), - [anon_sym_if] = ACTIONS(1564), - [anon_sym_for] = ACTIONS(1564), - [anon_sym_foreach] = ACTIONS(1564), - [anon_sym_foreach_r] = ACTIONS(1564), - [anon_sym_while] = ACTIONS(1564), - [anon_sym_do] = ACTIONS(1564), - [anon_sym_int] = ACTIONS(1564), - [anon_sym_PLUS] = ACTIONS(1564), - [anon_sym_DASH] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1566), - [anon_sym_asm] = ACTIONS(1564), - [anon_sym_DOLLARassert] = ACTIONS(1564), - [anon_sym_DOLLARerror] = ACTIONS(1564), - [anon_sym_DOLLARecho] = ACTIONS(1564), - [anon_sym_DOLLARif] = ACTIONS(1564), - [anon_sym_DOLLARendif] = ACTIONS(1564), - [anon_sym_DOLLARswitch] = ACTIONS(1564), - [anon_sym_DOLLARfor] = ACTIONS(1564), - [anon_sym_DOLLARforeach] = ACTIONS(1564), - [anon_sym_DOLLARalignof] = ACTIONS(1564), - [anon_sym_DOLLARextnameof] = ACTIONS(1564), - [anon_sym_DOLLARnameof] = ACTIONS(1564), - [anon_sym_DOLLARoffsetof] = ACTIONS(1564), - [anon_sym_DOLLARqnameof] = ACTIONS(1564), - [anon_sym_DOLLARvaconst] = ACTIONS(1564), - [anon_sym_DOLLARvaarg] = ACTIONS(1564), - [anon_sym_DOLLARvaref] = ACTIONS(1564), - [anon_sym_DOLLARvaexpr] = ACTIONS(1564), - [anon_sym_true] = ACTIONS(1564), - [anon_sym_false] = ACTIONS(1564), - [anon_sym_null] = ACTIONS(1564), - [anon_sym_DOLLARvacount] = ACTIONS(1564), - [anon_sym_DOLLARappend] = ACTIONS(1564), - [anon_sym_DOLLARconcat] = ACTIONS(1564), - [anon_sym_DOLLAReval] = ACTIONS(1564), - [anon_sym_DOLLARis_const] = ACTIONS(1564), - [anon_sym_DOLLARsizeof] = ACTIONS(1564), - [anon_sym_DOLLARstringify] = ACTIONS(1564), - [anon_sym_DOLLARand] = ACTIONS(1564), - [anon_sym_DOLLARdefined] = ACTIONS(1564), - [anon_sym_DOLLARembed] = ACTIONS(1564), - [anon_sym_DOLLARor] = ACTIONS(1564), - [anon_sym_DOLLARfeature] = ACTIONS(1564), - [anon_sym_DOLLARassignable] = ACTIONS(1564), - [anon_sym_BANG] = ACTIONS(1566), - [anon_sym_TILDE] = ACTIONS(1566), - [anon_sym_PLUS_PLUS] = ACTIONS(1566), - [anon_sym_DASH_DASH] = ACTIONS(1566), - [anon_sym_typeid] = ACTIONS(1564), - [anon_sym_LBRACE_PIPE] = ACTIONS(1566), - [anon_sym_void] = ACTIONS(1564), - [anon_sym_bool] = ACTIONS(1564), - [anon_sym_char] = ACTIONS(1564), - [anon_sym_ichar] = ACTIONS(1564), - [anon_sym_short] = ACTIONS(1564), - [anon_sym_ushort] = ACTIONS(1564), - [anon_sym_uint] = ACTIONS(1564), - [anon_sym_long] = ACTIONS(1564), - [anon_sym_ulong] = ACTIONS(1564), - [anon_sym_int128] = ACTIONS(1564), - [anon_sym_uint128] = ACTIONS(1564), - [anon_sym_float] = ACTIONS(1564), - [anon_sym_double] = ACTIONS(1564), - [anon_sym_float16] = ACTIONS(1564), - [anon_sym_bfloat16] = ACTIONS(1564), - [anon_sym_float128] = ACTIONS(1564), - [anon_sym_iptr] = ACTIONS(1564), - [anon_sym_uptr] = ACTIONS(1564), - [anon_sym_isz] = ACTIONS(1564), - [anon_sym_usz] = ACTIONS(1564), - [anon_sym_anyfault] = ACTIONS(1564), - [anon_sym_any] = ACTIONS(1564), - [anon_sym_DOLLARtypeof] = ACTIONS(1564), - [anon_sym_DOLLARtypefrom] = ACTIONS(1564), - [anon_sym_DOLLARvatype] = ACTIONS(1564), - [anon_sym_DOLLARevaltype] = ACTIONS(1564), - [sym_real_literal] = ACTIONS(1566), + [sym_ident] = ACTIONS(1561), + [sym_integer_literal] = ACTIONS(1563), + [anon_sym_SQUOTE] = ACTIONS(1563), + [anon_sym_DQUOTE] = ACTIONS(1563), + [anon_sym_BQUOTE] = ACTIONS(1563), + [sym_bytes_literal] = ACTIONS(1563), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1561), + [sym_at_ident] = ACTIONS(1563), + [sym_hash_ident] = ACTIONS(1563), + [sym_type_ident] = ACTIONS(1563), + [sym_ct_type_ident] = ACTIONS(1563), + [sym_const_ident] = ACTIONS(1561), + [sym_builtin] = ACTIONS(1563), + [anon_sym_LPAREN] = ACTIONS(1563), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_static] = ACTIONS(1561), + [anon_sym_tlocal] = ACTIONS(1561), + [anon_sym_SEMI] = ACTIONS(1563), + [anon_sym_fn] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_const] = ACTIONS(1561), + [anon_sym_var] = ACTIONS(1561), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_continue] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1561), + [anon_sym_defer] = ACTIONS(1561), + [anon_sym_assert] = ACTIONS(1561), + [anon_sym_nextcase] = ACTIONS(1561), + [anon_sym_switch] = ACTIONS(1561), + [anon_sym_AMP_AMP] = ACTIONS(1563), + [anon_sym_if] = ACTIONS(1561), + [anon_sym_for] = ACTIONS(1561), + [anon_sym_foreach] = ACTIONS(1561), + [anon_sym_foreach_r] = ACTIONS(1561), + [anon_sym_while] = ACTIONS(1561), + [anon_sym_do] = ACTIONS(1561), + [anon_sym_int] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1561), + [anon_sym_STAR] = ACTIONS(1563), + [anon_sym_asm] = ACTIONS(1561), + [anon_sym_DOLLARassert] = ACTIONS(1561), + [anon_sym_DOLLARerror] = ACTIONS(1561), + [anon_sym_DOLLARecho] = ACTIONS(1561), + [anon_sym_DOLLARif] = ACTIONS(1561), + [anon_sym_DOLLARendif] = ACTIONS(1561), + [anon_sym_DOLLARswitch] = ACTIONS(1561), + [anon_sym_DOLLARfor] = ACTIONS(1561), + [anon_sym_DOLLARforeach] = ACTIONS(1561), + [anon_sym_DOLLARalignof] = ACTIONS(1561), + [anon_sym_DOLLARextnameof] = ACTIONS(1561), + [anon_sym_DOLLARnameof] = ACTIONS(1561), + [anon_sym_DOLLARoffsetof] = ACTIONS(1561), + [anon_sym_DOLLARqnameof] = ACTIONS(1561), + [anon_sym_DOLLARvaconst] = ACTIONS(1561), + [anon_sym_DOLLARvaarg] = ACTIONS(1561), + [anon_sym_DOLLARvaref] = ACTIONS(1561), + [anon_sym_DOLLARvaexpr] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1561), + [anon_sym_false] = ACTIONS(1561), + [anon_sym_null] = ACTIONS(1561), + [anon_sym_DOLLARvacount] = ACTIONS(1561), + [anon_sym_DOLLARappend] = ACTIONS(1561), + [anon_sym_DOLLARconcat] = ACTIONS(1561), + [anon_sym_DOLLAReval] = ACTIONS(1561), + [anon_sym_DOLLARis_const] = ACTIONS(1561), + [anon_sym_DOLLARsizeof] = ACTIONS(1561), + [anon_sym_DOLLARstringify] = ACTIONS(1561), + [anon_sym_DOLLARand] = ACTIONS(1561), + [anon_sym_DOLLARdefined] = ACTIONS(1561), + [anon_sym_DOLLARembed] = ACTIONS(1561), + [anon_sym_DOLLARor] = ACTIONS(1561), + [anon_sym_DOLLARfeature] = ACTIONS(1561), + [anon_sym_DOLLARassignable] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1563), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_PLUS_PLUS] = ACTIONS(1563), + [anon_sym_DASH_DASH] = ACTIONS(1563), + [anon_sym_typeid] = ACTIONS(1561), + [anon_sym_LBRACE_PIPE] = ACTIONS(1563), + [anon_sym_void] = ACTIONS(1561), + [anon_sym_bool] = ACTIONS(1561), + [anon_sym_char] = ACTIONS(1561), + [anon_sym_ichar] = ACTIONS(1561), + [anon_sym_short] = ACTIONS(1561), + [anon_sym_ushort] = ACTIONS(1561), + [anon_sym_uint] = ACTIONS(1561), + [anon_sym_long] = ACTIONS(1561), + [anon_sym_ulong] = ACTIONS(1561), + [anon_sym_int128] = ACTIONS(1561), + [anon_sym_uint128] = ACTIONS(1561), + [anon_sym_float] = ACTIONS(1561), + [anon_sym_double] = ACTIONS(1561), + [anon_sym_float16] = ACTIONS(1561), + [anon_sym_bfloat16] = ACTIONS(1561), + [anon_sym_float128] = ACTIONS(1561), + [anon_sym_iptr] = ACTIONS(1561), + [anon_sym_uptr] = ACTIONS(1561), + [anon_sym_isz] = ACTIONS(1561), + [anon_sym_usz] = ACTIONS(1561), + [anon_sym_anyfault] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1561), + [anon_sym_DOLLARtypeof] = ACTIONS(1561), + [anon_sym_DOLLARtypefrom] = ACTIONS(1561), + [anon_sym_DOLLARvatype] = ACTIONS(1561), + [anon_sym_DOLLARevaltype] = ACTIONS(1561), + [sym_real_literal] = ACTIONS(1563), }, [790] = { [sym_line_comment] = STATE(790), [sym_doc_comment] = STATE(790), [sym_block_comment] = STATE(790), - [sym_ident] = ACTIONS(1560), - [sym_integer_literal] = ACTIONS(1562), - [anon_sym_SQUOTE] = ACTIONS(1562), - [anon_sym_DQUOTE] = ACTIONS(1562), - [anon_sym_BQUOTE] = ACTIONS(1562), - [sym_bytes_literal] = ACTIONS(1562), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1560), - [sym_at_ident] = ACTIONS(1562), - [sym_hash_ident] = ACTIONS(1562), - [sym_type_ident] = ACTIONS(1562), - [sym_ct_type_ident] = ACTIONS(1562), - [sym_const_ident] = ACTIONS(1560), - [sym_builtin] = ACTIONS(1562), - [anon_sym_LPAREN] = ACTIONS(1562), - [anon_sym_AMP] = ACTIONS(1560), - [anon_sym_static] = ACTIONS(1560), - [anon_sym_tlocal] = ACTIONS(1560), - [anon_sym_SEMI] = ACTIONS(1562), - [anon_sym_fn] = ACTIONS(1560), - [anon_sym_LBRACE] = ACTIONS(1560), - [anon_sym_const] = ACTIONS(1560), - [anon_sym_var] = ACTIONS(1560), - [anon_sym_return] = ACTIONS(1560), - [anon_sym_continue] = ACTIONS(1560), - [anon_sym_break] = ACTIONS(1560), - [anon_sym_defer] = ACTIONS(1560), - [anon_sym_assert] = ACTIONS(1560), - [anon_sym_nextcase] = ACTIONS(1560), - [anon_sym_switch] = ACTIONS(1560), - [anon_sym_AMP_AMP] = ACTIONS(1562), - [anon_sym_if] = ACTIONS(1560), - [anon_sym_for] = ACTIONS(1560), - [anon_sym_foreach] = ACTIONS(1560), - [anon_sym_foreach_r] = ACTIONS(1560), - [anon_sym_while] = ACTIONS(1560), - [anon_sym_do] = ACTIONS(1560), - [anon_sym_int] = ACTIONS(1560), - [anon_sym_PLUS] = ACTIONS(1560), - [anon_sym_DASH] = ACTIONS(1560), - [anon_sym_STAR] = ACTIONS(1562), - [anon_sym_asm] = ACTIONS(1560), - [anon_sym_DOLLARassert] = ACTIONS(1560), - [anon_sym_DOLLARerror] = ACTIONS(1560), - [anon_sym_DOLLARecho] = ACTIONS(1560), - [anon_sym_DOLLARif] = ACTIONS(1560), - [anon_sym_DOLLARendif] = ACTIONS(1560), - [anon_sym_DOLLARswitch] = ACTIONS(1560), - [anon_sym_DOLLARfor] = ACTIONS(1560), - [anon_sym_DOLLARforeach] = ACTIONS(1560), - [anon_sym_DOLLARalignof] = ACTIONS(1560), - [anon_sym_DOLLARextnameof] = ACTIONS(1560), - [anon_sym_DOLLARnameof] = ACTIONS(1560), - [anon_sym_DOLLARoffsetof] = ACTIONS(1560), - [anon_sym_DOLLARqnameof] = ACTIONS(1560), - [anon_sym_DOLLARvaconst] = ACTIONS(1560), - [anon_sym_DOLLARvaarg] = ACTIONS(1560), - [anon_sym_DOLLARvaref] = ACTIONS(1560), - [anon_sym_DOLLARvaexpr] = ACTIONS(1560), - [anon_sym_true] = ACTIONS(1560), - [anon_sym_false] = ACTIONS(1560), - [anon_sym_null] = ACTIONS(1560), - [anon_sym_DOLLARvacount] = ACTIONS(1560), - [anon_sym_DOLLARappend] = ACTIONS(1560), - [anon_sym_DOLLARconcat] = ACTIONS(1560), - [anon_sym_DOLLAReval] = ACTIONS(1560), - [anon_sym_DOLLARis_const] = ACTIONS(1560), - [anon_sym_DOLLARsizeof] = ACTIONS(1560), - [anon_sym_DOLLARstringify] = ACTIONS(1560), - [anon_sym_DOLLARand] = ACTIONS(1560), - [anon_sym_DOLLARdefined] = ACTIONS(1560), - [anon_sym_DOLLARembed] = ACTIONS(1560), - [anon_sym_DOLLARor] = ACTIONS(1560), - [anon_sym_DOLLARfeature] = ACTIONS(1560), - [anon_sym_DOLLARassignable] = ACTIONS(1560), - [anon_sym_BANG] = ACTIONS(1562), - [anon_sym_TILDE] = ACTIONS(1562), - [anon_sym_PLUS_PLUS] = ACTIONS(1562), - [anon_sym_DASH_DASH] = ACTIONS(1562), - [anon_sym_typeid] = ACTIONS(1560), - [anon_sym_LBRACE_PIPE] = ACTIONS(1562), - [anon_sym_void] = ACTIONS(1560), - [anon_sym_bool] = ACTIONS(1560), - [anon_sym_char] = ACTIONS(1560), - [anon_sym_ichar] = ACTIONS(1560), - [anon_sym_short] = ACTIONS(1560), - [anon_sym_ushort] = ACTIONS(1560), - [anon_sym_uint] = ACTIONS(1560), - [anon_sym_long] = ACTIONS(1560), - [anon_sym_ulong] = ACTIONS(1560), - [anon_sym_int128] = ACTIONS(1560), - [anon_sym_uint128] = ACTIONS(1560), - [anon_sym_float] = ACTIONS(1560), - [anon_sym_double] = ACTIONS(1560), - [anon_sym_float16] = ACTIONS(1560), - [anon_sym_bfloat16] = ACTIONS(1560), - [anon_sym_float128] = ACTIONS(1560), - [anon_sym_iptr] = ACTIONS(1560), - [anon_sym_uptr] = ACTIONS(1560), - [anon_sym_isz] = ACTIONS(1560), - [anon_sym_usz] = ACTIONS(1560), - [anon_sym_anyfault] = ACTIONS(1560), - [anon_sym_any] = ACTIONS(1560), - [anon_sym_DOLLARtypeof] = ACTIONS(1560), - [anon_sym_DOLLARtypefrom] = ACTIONS(1560), - [anon_sym_DOLLARvatype] = ACTIONS(1560), - [anon_sym_DOLLARevaltype] = ACTIONS(1560), - [sym_real_literal] = ACTIONS(1562), + [sym_ident] = ACTIONS(1633), + [sym_integer_literal] = ACTIONS(1635), + [anon_sym_SQUOTE] = ACTIONS(1635), + [anon_sym_DQUOTE] = ACTIONS(1635), + [anon_sym_BQUOTE] = ACTIONS(1635), + [sym_bytes_literal] = ACTIONS(1635), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1633), + [sym_at_ident] = ACTIONS(1635), + [sym_hash_ident] = ACTIONS(1635), + [sym_type_ident] = ACTIONS(1635), + [sym_ct_type_ident] = ACTIONS(1635), + [sym_const_ident] = ACTIONS(1633), + [sym_builtin] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1633), + [anon_sym_static] = ACTIONS(1633), + [anon_sym_tlocal] = ACTIONS(1633), + [anon_sym_SEMI] = ACTIONS(1635), + [anon_sym_fn] = ACTIONS(1633), + [anon_sym_LBRACE] = ACTIONS(1633), + [anon_sym_const] = ACTIONS(1633), + [anon_sym_var] = ACTIONS(1633), + [anon_sym_return] = ACTIONS(1633), + [anon_sym_continue] = ACTIONS(1633), + [anon_sym_break] = ACTIONS(1633), + [anon_sym_defer] = ACTIONS(1633), + [anon_sym_assert] = ACTIONS(1633), + [anon_sym_nextcase] = ACTIONS(1633), + [anon_sym_switch] = ACTIONS(1633), + [anon_sym_AMP_AMP] = ACTIONS(1635), + [anon_sym_if] = ACTIONS(1633), + [anon_sym_for] = ACTIONS(1633), + [anon_sym_foreach] = ACTIONS(1633), + [anon_sym_foreach_r] = ACTIONS(1633), + [anon_sym_while] = ACTIONS(1633), + [anon_sym_do] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_PLUS] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1633), + [anon_sym_STAR] = ACTIONS(1635), + [anon_sym_asm] = ACTIONS(1633), + [anon_sym_DOLLARassert] = ACTIONS(1633), + [anon_sym_DOLLARerror] = ACTIONS(1633), + [anon_sym_DOLLARecho] = ACTIONS(1633), + [anon_sym_DOLLARif] = ACTIONS(1633), + [anon_sym_DOLLARendif] = ACTIONS(1633), + [anon_sym_DOLLARswitch] = ACTIONS(1633), + [anon_sym_DOLLARfor] = ACTIONS(1633), + [anon_sym_DOLLARforeach] = ACTIONS(1633), + [anon_sym_DOLLARalignof] = ACTIONS(1633), + [anon_sym_DOLLARextnameof] = ACTIONS(1633), + [anon_sym_DOLLARnameof] = ACTIONS(1633), + [anon_sym_DOLLARoffsetof] = ACTIONS(1633), + [anon_sym_DOLLARqnameof] = ACTIONS(1633), + [anon_sym_DOLLARvaconst] = ACTIONS(1633), + [anon_sym_DOLLARvaarg] = ACTIONS(1633), + [anon_sym_DOLLARvaref] = ACTIONS(1633), + [anon_sym_DOLLARvaexpr] = ACTIONS(1633), + [anon_sym_true] = ACTIONS(1633), + [anon_sym_false] = ACTIONS(1633), + [anon_sym_null] = ACTIONS(1633), + [anon_sym_DOLLARvacount] = ACTIONS(1633), + [anon_sym_DOLLARappend] = ACTIONS(1633), + [anon_sym_DOLLARconcat] = ACTIONS(1633), + [anon_sym_DOLLAReval] = ACTIONS(1633), + [anon_sym_DOLLARis_const] = ACTIONS(1633), + [anon_sym_DOLLARsizeof] = ACTIONS(1633), + [anon_sym_DOLLARstringify] = ACTIONS(1633), + [anon_sym_DOLLARand] = ACTIONS(1633), + [anon_sym_DOLLARdefined] = ACTIONS(1633), + [anon_sym_DOLLARembed] = ACTIONS(1633), + [anon_sym_DOLLARor] = ACTIONS(1633), + [anon_sym_DOLLARfeature] = ACTIONS(1633), + [anon_sym_DOLLARassignable] = ACTIONS(1633), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1635), + [anon_sym_DASH_DASH] = ACTIONS(1635), + [anon_sym_typeid] = ACTIONS(1633), + [anon_sym_LBRACE_PIPE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_char] = ACTIONS(1633), + [anon_sym_ichar] = ACTIONS(1633), + [anon_sym_short] = ACTIONS(1633), + [anon_sym_ushort] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_long] = ACTIONS(1633), + [anon_sym_ulong] = ACTIONS(1633), + [anon_sym_int128] = ACTIONS(1633), + [anon_sym_uint128] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_double] = ACTIONS(1633), + [anon_sym_float16] = ACTIONS(1633), + [anon_sym_bfloat16] = ACTIONS(1633), + [anon_sym_float128] = ACTIONS(1633), + [anon_sym_iptr] = ACTIONS(1633), + [anon_sym_uptr] = ACTIONS(1633), + [anon_sym_isz] = ACTIONS(1633), + [anon_sym_usz] = ACTIONS(1633), + [anon_sym_anyfault] = ACTIONS(1633), + [anon_sym_any] = ACTIONS(1633), + [anon_sym_DOLLARtypeof] = ACTIONS(1633), + [anon_sym_DOLLARtypefrom] = ACTIONS(1633), + [anon_sym_DOLLARvatype] = ACTIONS(1633), + [anon_sym_DOLLARevaltype] = ACTIONS(1633), + [sym_real_literal] = ACTIONS(1635), }, [791] = { [sym_line_comment] = STATE(791), [sym_doc_comment] = STATE(791), [sym_block_comment] = STATE(791), - [sym_ident] = ACTIONS(1600), - [sym_integer_literal] = ACTIONS(1602), - [anon_sym_SQUOTE] = ACTIONS(1602), - [anon_sym_DQUOTE] = ACTIONS(1602), - [anon_sym_BQUOTE] = ACTIONS(1602), - [sym_bytes_literal] = ACTIONS(1602), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1600), - [sym_at_ident] = ACTIONS(1602), - [sym_hash_ident] = ACTIONS(1602), - [sym_type_ident] = ACTIONS(1602), - [sym_ct_type_ident] = ACTIONS(1602), - [sym_const_ident] = ACTIONS(1600), - [sym_builtin] = ACTIONS(1602), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_AMP] = ACTIONS(1600), - [anon_sym_static] = ACTIONS(1600), - [anon_sym_tlocal] = ACTIONS(1600), - [anon_sym_SEMI] = ACTIONS(1602), - [anon_sym_fn] = ACTIONS(1600), - [anon_sym_LBRACE] = ACTIONS(1600), - [anon_sym_const] = ACTIONS(1600), - [anon_sym_var] = ACTIONS(1600), - [anon_sym_return] = ACTIONS(1600), - [anon_sym_continue] = ACTIONS(1600), - [anon_sym_break] = ACTIONS(1600), - [anon_sym_defer] = ACTIONS(1600), - [anon_sym_assert] = ACTIONS(1600), - [anon_sym_nextcase] = ACTIONS(1600), - [anon_sym_switch] = ACTIONS(1600), - [anon_sym_AMP_AMP] = ACTIONS(1602), - [anon_sym_if] = ACTIONS(1600), - [anon_sym_for] = ACTIONS(1600), - [anon_sym_foreach] = ACTIONS(1600), - [anon_sym_foreach_r] = ACTIONS(1600), - [anon_sym_while] = ACTIONS(1600), - [anon_sym_do] = ACTIONS(1600), - [anon_sym_int] = ACTIONS(1600), - [anon_sym_PLUS] = ACTIONS(1600), - [anon_sym_DASH] = ACTIONS(1600), - [anon_sym_STAR] = ACTIONS(1602), - [anon_sym_asm] = ACTIONS(1600), - [anon_sym_DOLLARassert] = ACTIONS(1600), - [anon_sym_DOLLARerror] = ACTIONS(1600), - [anon_sym_DOLLARecho] = ACTIONS(1600), - [anon_sym_DOLLARif] = ACTIONS(1600), - [anon_sym_DOLLARendif] = ACTIONS(1600), - [anon_sym_DOLLARswitch] = ACTIONS(1600), - [anon_sym_DOLLARfor] = ACTIONS(1600), - [anon_sym_DOLLARforeach] = ACTIONS(1600), - [anon_sym_DOLLARalignof] = ACTIONS(1600), - [anon_sym_DOLLARextnameof] = ACTIONS(1600), - [anon_sym_DOLLARnameof] = ACTIONS(1600), - [anon_sym_DOLLARoffsetof] = ACTIONS(1600), - [anon_sym_DOLLARqnameof] = ACTIONS(1600), - [anon_sym_DOLLARvaconst] = ACTIONS(1600), - [anon_sym_DOLLARvaarg] = ACTIONS(1600), - [anon_sym_DOLLARvaref] = ACTIONS(1600), - [anon_sym_DOLLARvaexpr] = ACTIONS(1600), - [anon_sym_true] = ACTIONS(1600), - [anon_sym_false] = ACTIONS(1600), - [anon_sym_null] = ACTIONS(1600), - [anon_sym_DOLLARvacount] = ACTIONS(1600), - [anon_sym_DOLLARappend] = ACTIONS(1600), - [anon_sym_DOLLARconcat] = ACTIONS(1600), - [anon_sym_DOLLAReval] = ACTIONS(1600), - [anon_sym_DOLLARis_const] = ACTIONS(1600), - [anon_sym_DOLLARsizeof] = ACTIONS(1600), - [anon_sym_DOLLARstringify] = ACTIONS(1600), - [anon_sym_DOLLARand] = ACTIONS(1600), - [anon_sym_DOLLARdefined] = ACTIONS(1600), - [anon_sym_DOLLARembed] = ACTIONS(1600), - [anon_sym_DOLLARor] = ACTIONS(1600), - [anon_sym_DOLLARfeature] = ACTIONS(1600), - [anon_sym_DOLLARassignable] = ACTIONS(1600), - [anon_sym_BANG] = ACTIONS(1602), - [anon_sym_TILDE] = ACTIONS(1602), - [anon_sym_PLUS_PLUS] = ACTIONS(1602), - [anon_sym_DASH_DASH] = ACTIONS(1602), - [anon_sym_typeid] = ACTIONS(1600), - [anon_sym_LBRACE_PIPE] = ACTIONS(1602), - [anon_sym_void] = ACTIONS(1600), - [anon_sym_bool] = ACTIONS(1600), - [anon_sym_char] = ACTIONS(1600), - [anon_sym_ichar] = ACTIONS(1600), - [anon_sym_short] = ACTIONS(1600), - [anon_sym_ushort] = ACTIONS(1600), - [anon_sym_uint] = ACTIONS(1600), - [anon_sym_long] = ACTIONS(1600), - [anon_sym_ulong] = ACTIONS(1600), - [anon_sym_int128] = ACTIONS(1600), - [anon_sym_uint128] = ACTIONS(1600), - [anon_sym_float] = ACTIONS(1600), - [anon_sym_double] = ACTIONS(1600), - [anon_sym_float16] = ACTIONS(1600), - [anon_sym_bfloat16] = ACTIONS(1600), - [anon_sym_float128] = ACTIONS(1600), - [anon_sym_iptr] = ACTIONS(1600), - [anon_sym_uptr] = ACTIONS(1600), - [anon_sym_isz] = ACTIONS(1600), - [anon_sym_usz] = ACTIONS(1600), - [anon_sym_anyfault] = ACTIONS(1600), - [anon_sym_any] = ACTIONS(1600), - [anon_sym_DOLLARtypeof] = ACTIONS(1600), - [anon_sym_DOLLARtypefrom] = ACTIONS(1600), - [anon_sym_DOLLARvatype] = ACTIONS(1600), - [anon_sym_DOLLARevaltype] = ACTIONS(1600), - [sym_real_literal] = ACTIONS(1602), + [sym_ident] = ACTIONS(1549), + [sym_integer_literal] = ACTIONS(1551), + [anon_sym_SQUOTE] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [anon_sym_BQUOTE] = ACTIONS(1551), + [sym_bytes_literal] = ACTIONS(1551), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1549), + [sym_at_ident] = ACTIONS(1551), + [sym_hash_ident] = ACTIONS(1551), + [sym_type_ident] = ACTIONS(1551), + [sym_ct_type_ident] = ACTIONS(1551), + [sym_const_ident] = ACTIONS(1549), + [sym_builtin] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_AMP] = ACTIONS(1549), + [anon_sym_static] = ACTIONS(1549), + [anon_sym_tlocal] = ACTIONS(1549), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_fn] = ACTIONS(1549), + [anon_sym_LBRACE] = ACTIONS(1549), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_var] = ACTIONS(1549), + [anon_sym_return] = ACTIONS(1549), + [anon_sym_continue] = ACTIONS(1549), + [anon_sym_break] = ACTIONS(1549), + [anon_sym_defer] = ACTIONS(1549), + [anon_sym_assert] = ACTIONS(1549), + [anon_sym_nextcase] = ACTIONS(1549), + [anon_sym_switch] = ACTIONS(1549), + [anon_sym_AMP_AMP] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1549), + [anon_sym_for] = ACTIONS(1549), + [anon_sym_foreach] = ACTIONS(1549), + [anon_sym_foreach_r] = ACTIONS(1549), + [anon_sym_while] = ACTIONS(1549), + [anon_sym_do] = ACTIONS(1549), + [anon_sym_int] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1551), + [anon_sym_asm] = ACTIONS(1549), + [anon_sym_DOLLARassert] = ACTIONS(1549), + [anon_sym_DOLLARerror] = ACTIONS(1549), + [anon_sym_DOLLARecho] = ACTIONS(1549), + [anon_sym_DOLLARif] = ACTIONS(1549), + [anon_sym_DOLLARendif] = ACTIONS(1549), + [anon_sym_DOLLARswitch] = ACTIONS(1549), + [anon_sym_DOLLARfor] = ACTIONS(1549), + [anon_sym_DOLLARforeach] = ACTIONS(1549), + [anon_sym_DOLLARalignof] = ACTIONS(1549), + [anon_sym_DOLLARextnameof] = ACTIONS(1549), + [anon_sym_DOLLARnameof] = ACTIONS(1549), + [anon_sym_DOLLARoffsetof] = ACTIONS(1549), + [anon_sym_DOLLARqnameof] = ACTIONS(1549), + [anon_sym_DOLLARvaconst] = ACTIONS(1549), + [anon_sym_DOLLARvaarg] = ACTIONS(1549), + [anon_sym_DOLLARvaref] = ACTIONS(1549), + [anon_sym_DOLLARvaexpr] = ACTIONS(1549), + [anon_sym_true] = ACTIONS(1549), + [anon_sym_false] = ACTIONS(1549), + [anon_sym_null] = ACTIONS(1549), + [anon_sym_DOLLARvacount] = ACTIONS(1549), + [anon_sym_DOLLARappend] = ACTIONS(1549), + [anon_sym_DOLLARconcat] = ACTIONS(1549), + [anon_sym_DOLLAReval] = ACTIONS(1549), + [anon_sym_DOLLARis_const] = ACTIONS(1549), + [anon_sym_DOLLARsizeof] = ACTIONS(1549), + [anon_sym_DOLLARstringify] = ACTIONS(1549), + [anon_sym_DOLLARand] = ACTIONS(1549), + [anon_sym_DOLLARdefined] = ACTIONS(1549), + [anon_sym_DOLLARembed] = ACTIONS(1549), + [anon_sym_DOLLARor] = ACTIONS(1549), + [anon_sym_DOLLARfeature] = ACTIONS(1549), + [anon_sym_DOLLARassignable] = ACTIONS(1549), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_PLUS_PLUS] = ACTIONS(1551), + [anon_sym_DASH_DASH] = ACTIONS(1551), + [anon_sym_typeid] = ACTIONS(1549), + [anon_sym_LBRACE_PIPE] = ACTIONS(1551), + [anon_sym_void] = ACTIONS(1549), + [anon_sym_bool] = ACTIONS(1549), + [anon_sym_char] = ACTIONS(1549), + [anon_sym_ichar] = ACTIONS(1549), + [anon_sym_short] = ACTIONS(1549), + [anon_sym_ushort] = ACTIONS(1549), + [anon_sym_uint] = ACTIONS(1549), + [anon_sym_long] = ACTIONS(1549), + [anon_sym_ulong] = ACTIONS(1549), + [anon_sym_int128] = ACTIONS(1549), + [anon_sym_uint128] = ACTIONS(1549), + [anon_sym_float] = ACTIONS(1549), + [anon_sym_double] = ACTIONS(1549), + [anon_sym_float16] = ACTIONS(1549), + [anon_sym_bfloat16] = ACTIONS(1549), + [anon_sym_float128] = ACTIONS(1549), + [anon_sym_iptr] = ACTIONS(1549), + [anon_sym_uptr] = ACTIONS(1549), + [anon_sym_isz] = ACTIONS(1549), + [anon_sym_usz] = ACTIONS(1549), + [anon_sym_anyfault] = ACTIONS(1549), + [anon_sym_any] = ACTIONS(1549), + [anon_sym_DOLLARtypeof] = ACTIONS(1549), + [anon_sym_DOLLARtypefrom] = ACTIONS(1549), + [anon_sym_DOLLARvatype] = ACTIONS(1549), + [anon_sym_DOLLARevaltype] = ACTIONS(1549), + [sym_real_literal] = ACTIONS(1551), }, [792] = { [sym_line_comment] = STATE(792), [sym_doc_comment] = STATE(792), [sym_block_comment] = STATE(792), - [sym_ident] = ACTIONS(1536), - [sym_integer_literal] = ACTIONS(1538), - [anon_sym_SQUOTE] = ACTIONS(1538), - [anon_sym_DQUOTE] = ACTIONS(1538), - [anon_sym_BQUOTE] = ACTIONS(1538), - [sym_bytes_literal] = ACTIONS(1538), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1536), - [sym_at_ident] = ACTIONS(1538), - [sym_hash_ident] = ACTIONS(1538), - [sym_type_ident] = ACTIONS(1538), - [sym_ct_type_ident] = ACTIONS(1538), - [sym_const_ident] = ACTIONS(1536), - [sym_builtin] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1538), - [anon_sym_AMP] = ACTIONS(1536), - [anon_sym_static] = ACTIONS(1536), - [anon_sym_tlocal] = ACTIONS(1536), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_fn] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(1536), - [anon_sym_const] = ACTIONS(1536), - [anon_sym_var] = ACTIONS(1536), - [anon_sym_return] = ACTIONS(1536), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_break] = ACTIONS(1536), - [anon_sym_defer] = ACTIONS(1536), - [anon_sym_assert] = ACTIONS(1536), - [anon_sym_nextcase] = ACTIONS(1536), - [anon_sym_switch] = ACTIONS(1536), - [anon_sym_AMP_AMP] = ACTIONS(1538), - [anon_sym_if] = ACTIONS(1536), - [anon_sym_for] = ACTIONS(1536), - [anon_sym_foreach] = ACTIONS(1536), - [anon_sym_foreach_r] = ACTIONS(1536), - [anon_sym_while] = ACTIONS(1536), - [anon_sym_do] = ACTIONS(1536), - [anon_sym_int] = ACTIONS(1536), - [anon_sym_PLUS] = ACTIONS(1536), - [anon_sym_DASH] = ACTIONS(1536), - [anon_sym_STAR] = ACTIONS(1538), - [anon_sym_asm] = ACTIONS(1536), - [anon_sym_DOLLARassert] = ACTIONS(1536), - [anon_sym_DOLLARerror] = ACTIONS(1536), - [anon_sym_DOLLARecho] = ACTIONS(1536), - [anon_sym_DOLLARif] = ACTIONS(1536), - [anon_sym_DOLLARendif] = ACTIONS(1536), - [anon_sym_DOLLARswitch] = ACTIONS(1536), - [anon_sym_DOLLARfor] = ACTIONS(1536), - [anon_sym_DOLLARforeach] = ACTIONS(1536), - [anon_sym_DOLLARalignof] = ACTIONS(1536), - [anon_sym_DOLLARextnameof] = ACTIONS(1536), - [anon_sym_DOLLARnameof] = ACTIONS(1536), - [anon_sym_DOLLARoffsetof] = ACTIONS(1536), - [anon_sym_DOLLARqnameof] = ACTIONS(1536), - [anon_sym_DOLLARvaconst] = ACTIONS(1536), - [anon_sym_DOLLARvaarg] = ACTIONS(1536), - [anon_sym_DOLLARvaref] = ACTIONS(1536), - [anon_sym_DOLLARvaexpr] = ACTIONS(1536), - [anon_sym_true] = ACTIONS(1536), - [anon_sym_false] = ACTIONS(1536), - [anon_sym_null] = ACTIONS(1536), - [anon_sym_DOLLARvacount] = ACTIONS(1536), - [anon_sym_DOLLARappend] = ACTIONS(1536), - [anon_sym_DOLLARconcat] = ACTIONS(1536), - [anon_sym_DOLLAReval] = ACTIONS(1536), - [anon_sym_DOLLARis_const] = ACTIONS(1536), - [anon_sym_DOLLARsizeof] = ACTIONS(1536), - [anon_sym_DOLLARstringify] = ACTIONS(1536), - [anon_sym_DOLLARand] = ACTIONS(1536), - [anon_sym_DOLLARdefined] = ACTIONS(1536), - [anon_sym_DOLLARembed] = ACTIONS(1536), - [anon_sym_DOLLARor] = ACTIONS(1536), - [anon_sym_DOLLARfeature] = ACTIONS(1536), - [anon_sym_DOLLARassignable] = ACTIONS(1536), - [anon_sym_BANG] = ACTIONS(1538), - [anon_sym_TILDE] = ACTIONS(1538), - [anon_sym_PLUS_PLUS] = ACTIONS(1538), - [anon_sym_DASH_DASH] = ACTIONS(1538), - [anon_sym_typeid] = ACTIONS(1536), - [anon_sym_LBRACE_PIPE] = ACTIONS(1538), - [anon_sym_void] = ACTIONS(1536), - [anon_sym_bool] = ACTIONS(1536), - [anon_sym_char] = ACTIONS(1536), - [anon_sym_ichar] = ACTIONS(1536), - [anon_sym_short] = ACTIONS(1536), - [anon_sym_ushort] = ACTIONS(1536), - [anon_sym_uint] = ACTIONS(1536), - [anon_sym_long] = ACTIONS(1536), - [anon_sym_ulong] = ACTIONS(1536), - [anon_sym_int128] = ACTIONS(1536), - [anon_sym_uint128] = ACTIONS(1536), - [anon_sym_float] = ACTIONS(1536), - [anon_sym_double] = ACTIONS(1536), - [anon_sym_float16] = ACTIONS(1536), - [anon_sym_bfloat16] = ACTIONS(1536), - [anon_sym_float128] = ACTIONS(1536), - [anon_sym_iptr] = ACTIONS(1536), - [anon_sym_uptr] = ACTIONS(1536), - [anon_sym_isz] = ACTIONS(1536), - [anon_sym_usz] = ACTIONS(1536), - [anon_sym_anyfault] = ACTIONS(1536), - [anon_sym_any] = ACTIONS(1536), - [anon_sym_DOLLARtypeof] = ACTIONS(1536), - [anon_sym_DOLLARtypefrom] = ACTIONS(1536), - [anon_sym_DOLLARvatype] = ACTIONS(1536), - [anon_sym_DOLLARevaltype] = ACTIONS(1536), - [sym_real_literal] = ACTIONS(1538), + [sym_ident] = ACTIONS(1569), + [sym_integer_literal] = ACTIONS(1571), + [anon_sym_SQUOTE] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1571), + [anon_sym_BQUOTE] = ACTIONS(1571), + [sym_bytes_literal] = ACTIONS(1571), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1569), + [sym_at_ident] = ACTIONS(1571), + [sym_hash_ident] = ACTIONS(1571), + [sym_type_ident] = ACTIONS(1571), + [sym_ct_type_ident] = ACTIONS(1571), + [sym_const_ident] = ACTIONS(1569), + [sym_builtin] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1571), + [anon_sym_AMP] = ACTIONS(1569), + [anon_sym_static] = ACTIONS(1569), + [anon_sym_tlocal] = ACTIONS(1569), + [anon_sym_SEMI] = ACTIONS(1571), + [anon_sym_fn] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1569), + [anon_sym_const] = ACTIONS(1569), + [anon_sym_var] = ACTIONS(1569), + [anon_sym_return] = ACTIONS(1569), + [anon_sym_continue] = ACTIONS(1569), + [anon_sym_break] = ACTIONS(1569), + [anon_sym_defer] = ACTIONS(1569), + [anon_sym_assert] = ACTIONS(1569), + [anon_sym_nextcase] = ACTIONS(1569), + [anon_sym_switch] = ACTIONS(1569), + [anon_sym_AMP_AMP] = ACTIONS(1571), + [anon_sym_if] = ACTIONS(1569), + [anon_sym_for] = ACTIONS(1569), + [anon_sym_foreach] = ACTIONS(1569), + [anon_sym_foreach_r] = ACTIONS(1569), + [anon_sym_while] = ACTIONS(1569), + [anon_sym_do] = ACTIONS(1569), + [anon_sym_int] = ACTIONS(1569), + [anon_sym_PLUS] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_STAR] = ACTIONS(1571), + [anon_sym_asm] = ACTIONS(1569), + [anon_sym_DOLLARassert] = ACTIONS(1569), + [anon_sym_DOLLARerror] = ACTIONS(1569), + [anon_sym_DOLLARecho] = ACTIONS(1569), + [anon_sym_DOLLARif] = ACTIONS(1569), + [anon_sym_DOLLARendif] = ACTIONS(1569), + [anon_sym_DOLLARswitch] = ACTIONS(1569), + [anon_sym_DOLLARfor] = ACTIONS(1569), + [anon_sym_DOLLARforeach] = ACTIONS(1569), + [anon_sym_DOLLARalignof] = ACTIONS(1569), + [anon_sym_DOLLARextnameof] = ACTIONS(1569), + [anon_sym_DOLLARnameof] = ACTIONS(1569), + [anon_sym_DOLLARoffsetof] = ACTIONS(1569), + [anon_sym_DOLLARqnameof] = ACTIONS(1569), + [anon_sym_DOLLARvaconst] = ACTIONS(1569), + [anon_sym_DOLLARvaarg] = ACTIONS(1569), + [anon_sym_DOLLARvaref] = ACTIONS(1569), + [anon_sym_DOLLARvaexpr] = ACTIONS(1569), + [anon_sym_true] = ACTIONS(1569), + [anon_sym_false] = ACTIONS(1569), + [anon_sym_null] = ACTIONS(1569), + [anon_sym_DOLLARvacount] = ACTIONS(1569), + [anon_sym_DOLLARappend] = ACTIONS(1569), + [anon_sym_DOLLARconcat] = ACTIONS(1569), + [anon_sym_DOLLAReval] = ACTIONS(1569), + [anon_sym_DOLLARis_const] = ACTIONS(1569), + [anon_sym_DOLLARsizeof] = ACTIONS(1569), + [anon_sym_DOLLARstringify] = ACTIONS(1569), + [anon_sym_DOLLARand] = ACTIONS(1569), + [anon_sym_DOLLARdefined] = ACTIONS(1569), + [anon_sym_DOLLARembed] = ACTIONS(1569), + [anon_sym_DOLLARor] = ACTIONS(1569), + [anon_sym_DOLLARfeature] = ACTIONS(1569), + [anon_sym_DOLLARassignable] = ACTIONS(1569), + [anon_sym_BANG] = ACTIONS(1571), + [anon_sym_TILDE] = ACTIONS(1571), + [anon_sym_PLUS_PLUS] = ACTIONS(1571), + [anon_sym_DASH_DASH] = ACTIONS(1571), + [anon_sym_typeid] = ACTIONS(1569), + [anon_sym_LBRACE_PIPE] = ACTIONS(1571), + [anon_sym_void] = ACTIONS(1569), + [anon_sym_bool] = ACTIONS(1569), + [anon_sym_char] = ACTIONS(1569), + [anon_sym_ichar] = ACTIONS(1569), + [anon_sym_short] = ACTIONS(1569), + [anon_sym_ushort] = ACTIONS(1569), + [anon_sym_uint] = ACTIONS(1569), + [anon_sym_long] = ACTIONS(1569), + [anon_sym_ulong] = ACTIONS(1569), + [anon_sym_int128] = ACTIONS(1569), + [anon_sym_uint128] = ACTIONS(1569), + [anon_sym_float] = ACTIONS(1569), + [anon_sym_double] = ACTIONS(1569), + [anon_sym_float16] = ACTIONS(1569), + [anon_sym_bfloat16] = ACTIONS(1569), + [anon_sym_float128] = ACTIONS(1569), + [anon_sym_iptr] = ACTIONS(1569), + [anon_sym_uptr] = ACTIONS(1569), + [anon_sym_isz] = ACTIONS(1569), + [anon_sym_usz] = ACTIONS(1569), + [anon_sym_anyfault] = ACTIONS(1569), + [anon_sym_any] = ACTIONS(1569), + [anon_sym_DOLLARtypeof] = ACTIONS(1569), + [anon_sym_DOLLARtypefrom] = ACTIONS(1569), + [anon_sym_DOLLARvatype] = ACTIONS(1569), + [anon_sym_DOLLARevaltype] = ACTIONS(1569), + [sym_real_literal] = ACTIONS(1571), }, [793] = { [sym_line_comment] = STATE(793), [sym_doc_comment] = STATE(793), [sym_block_comment] = STATE(793), - [sym_ident] = ACTIONS(1480), - [sym_integer_literal] = ACTIONS(1482), - [anon_sym_SQUOTE] = ACTIONS(1482), - [anon_sym_DQUOTE] = ACTIONS(1482), - [anon_sym_BQUOTE] = ACTIONS(1482), - [sym_bytes_literal] = ACTIONS(1482), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1480), - [sym_at_ident] = ACTIONS(1482), - [sym_hash_ident] = ACTIONS(1482), - [sym_type_ident] = ACTIONS(1482), - [sym_ct_type_ident] = ACTIONS(1482), - [sym_const_ident] = ACTIONS(1480), - [sym_builtin] = ACTIONS(1482), - [anon_sym_LPAREN] = ACTIONS(1482), - [anon_sym_AMP] = ACTIONS(1480), - [anon_sym_static] = ACTIONS(1480), - [anon_sym_tlocal] = ACTIONS(1480), - [anon_sym_SEMI] = ACTIONS(1482), - [anon_sym_fn] = ACTIONS(1480), - [anon_sym_LBRACE] = ACTIONS(1480), - [anon_sym_const] = ACTIONS(1480), - [anon_sym_var] = ACTIONS(1480), - [anon_sym_return] = ACTIONS(1480), - [anon_sym_continue] = ACTIONS(1480), - [anon_sym_break] = ACTIONS(1480), - [anon_sym_defer] = ACTIONS(1480), - [anon_sym_assert] = ACTIONS(1480), - [anon_sym_nextcase] = ACTIONS(1480), - [anon_sym_switch] = ACTIONS(1480), - [anon_sym_AMP_AMP] = ACTIONS(1482), - [anon_sym_if] = ACTIONS(1480), - [anon_sym_for] = ACTIONS(1480), - [anon_sym_foreach] = ACTIONS(1480), - [anon_sym_foreach_r] = ACTIONS(1480), - [anon_sym_while] = ACTIONS(1480), - [anon_sym_do] = ACTIONS(1480), - [anon_sym_int] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1480), - [anon_sym_DASH] = ACTIONS(1480), - [anon_sym_STAR] = ACTIONS(1482), - [anon_sym_asm] = ACTIONS(1480), - [anon_sym_DOLLARassert] = ACTIONS(1480), - [anon_sym_DOLLARerror] = ACTIONS(1480), - [anon_sym_DOLLARecho] = ACTIONS(1480), - [anon_sym_DOLLARif] = ACTIONS(1480), - [anon_sym_DOLLARswitch] = ACTIONS(1480), - [anon_sym_DOLLARfor] = ACTIONS(1480), - [anon_sym_DOLLARendfor] = ACTIONS(1480), - [anon_sym_DOLLARforeach] = ACTIONS(1480), - [anon_sym_DOLLARalignof] = ACTIONS(1480), - [anon_sym_DOLLARextnameof] = ACTIONS(1480), - [anon_sym_DOLLARnameof] = ACTIONS(1480), - [anon_sym_DOLLARoffsetof] = ACTIONS(1480), - [anon_sym_DOLLARqnameof] = ACTIONS(1480), - [anon_sym_DOLLARvaconst] = ACTIONS(1480), - [anon_sym_DOLLARvaarg] = ACTIONS(1480), - [anon_sym_DOLLARvaref] = ACTIONS(1480), - [anon_sym_DOLLARvaexpr] = ACTIONS(1480), - [anon_sym_true] = ACTIONS(1480), - [anon_sym_false] = ACTIONS(1480), - [anon_sym_null] = ACTIONS(1480), - [anon_sym_DOLLARvacount] = ACTIONS(1480), - [anon_sym_DOLLARappend] = ACTIONS(1480), - [anon_sym_DOLLARconcat] = ACTIONS(1480), - [anon_sym_DOLLAReval] = ACTIONS(1480), - [anon_sym_DOLLARis_const] = ACTIONS(1480), - [anon_sym_DOLLARsizeof] = ACTIONS(1480), - [anon_sym_DOLLARstringify] = ACTIONS(1480), - [anon_sym_DOLLARand] = ACTIONS(1480), - [anon_sym_DOLLARdefined] = ACTIONS(1480), - [anon_sym_DOLLARembed] = ACTIONS(1480), - [anon_sym_DOLLARor] = ACTIONS(1480), - [anon_sym_DOLLARfeature] = ACTIONS(1480), - [anon_sym_DOLLARassignable] = ACTIONS(1480), - [anon_sym_BANG] = ACTIONS(1482), - [anon_sym_TILDE] = ACTIONS(1482), - [anon_sym_PLUS_PLUS] = ACTIONS(1482), - [anon_sym_DASH_DASH] = ACTIONS(1482), - [anon_sym_typeid] = ACTIONS(1480), - [anon_sym_LBRACE_PIPE] = ACTIONS(1482), - [anon_sym_void] = ACTIONS(1480), - [anon_sym_bool] = ACTIONS(1480), - [anon_sym_char] = ACTIONS(1480), - [anon_sym_ichar] = ACTIONS(1480), - [anon_sym_short] = ACTIONS(1480), - [anon_sym_ushort] = ACTIONS(1480), - [anon_sym_uint] = ACTIONS(1480), - [anon_sym_long] = ACTIONS(1480), - [anon_sym_ulong] = ACTIONS(1480), - [anon_sym_int128] = ACTIONS(1480), - [anon_sym_uint128] = ACTIONS(1480), - [anon_sym_float] = ACTIONS(1480), - [anon_sym_double] = ACTIONS(1480), - [anon_sym_float16] = ACTIONS(1480), - [anon_sym_bfloat16] = ACTIONS(1480), - [anon_sym_float128] = ACTIONS(1480), - [anon_sym_iptr] = ACTIONS(1480), - [anon_sym_uptr] = ACTIONS(1480), - [anon_sym_isz] = ACTIONS(1480), - [anon_sym_usz] = ACTIONS(1480), - [anon_sym_anyfault] = ACTIONS(1480), - [anon_sym_any] = ACTIONS(1480), - [anon_sym_DOLLARtypeof] = ACTIONS(1480), - [anon_sym_DOLLARtypefrom] = ACTIONS(1480), - [anon_sym_DOLLARvatype] = ACTIONS(1480), - [anon_sym_DOLLARevaltype] = ACTIONS(1480), - [sym_real_literal] = ACTIONS(1482), + [sym_ident] = ACTIONS(1637), + [sym_integer_literal] = ACTIONS(1639), + [anon_sym_SQUOTE] = ACTIONS(1639), + [anon_sym_DQUOTE] = ACTIONS(1639), + [anon_sym_BQUOTE] = ACTIONS(1639), + [sym_bytes_literal] = ACTIONS(1639), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1637), + [sym_at_ident] = ACTIONS(1639), + [sym_hash_ident] = ACTIONS(1639), + [sym_type_ident] = ACTIONS(1639), + [sym_ct_type_ident] = ACTIONS(1639), + [sym_const_ident] = ACTIONS(1637), + [sym_builtin] = ACTIONS(1639), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_AMP] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1637), + [anon_sym_tlocal] = ACTIONS(1637), + [anon_sym_SEMI] = ACTIONS(1639), + [anon_sym_fn] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(1637), + [anon_sym_const] = ACTIONS(1637), + [anon_sym_var] = ACTIONS(1637), + [anon_sym_return] = ACTIONS(1637), + [anon_sym_continue] = ACTIONS(1637), + [anon_sym_break] = ACTIONS(1637), + [anon_sym_defer] = ACTIONS(1637), + [anon_sym_assert] = ACTIONS(1637), + [anon_sym_nextcase] = ACTIONS(1637), + [anon_sym_switch] = ACTIONS(1637), + [anon_sym_AMP_AMP] = ACTIONS(1639), + [anon_sym_if] = ACTIONS(1637), + [anon_sym_for] = ACTIONS(1637), + [anon_sym_foreach] = ACTIONS(1637), + [anon_sym_foreach_r] = ACTIONS(1637), + [anon_sym_while] = ACTIONS(1637), + [anon_sym_do] = ACTIONS(1637), + [anon_sym_int] = ACTIONS(1637), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1639), + [anon_sym_asm] = ACTIONS(1637), + [anon_sym_DOLLARassert] = ACTIONS(1637), + [anon_sym_DOLLARerror] = ACTIONS(1637), + [anon_sym_DOLLARecho] = ACTIONS(1637), + [anon_sym_DOLLARif] = ACTIONS(1637), + [anon_sym_DOLLARendif] = ACTIONS(1637), + [anon_sym_DOLLARswitch] = ACTIONS(1637), + [anon_sym_DOLLARfor] = ACTIONS(1637), + [anon_sym_DOLLARforeach] = ACTIONS(1637), + [anon_sym_DOLLARalignof] = ACTIONS(1637), + [anon_sym_DOLLARextnameof] = ACTIONS(1637), + [anon_sym_DOLLARnameof] = ACTIONS(1637), + [anon_sym_DOLLARoffsetof] = ACTIONS(1637), + [anon_sym_DOLLARqnameof] = ACTIONS(1637), + [anon_sym_DOLLARvaconst] = ACTIONS(1637), + [anon_sym_DOLLARvaarg] = ACTIONS(1637), + [anon_sym_DOLLARvaref] = ACTIONS(1637), + [anon_sym_DOLLARvaexpr] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1637), + [anon_sym_false] = ACTIONS(1637), + [anon_sym_null] = ACTIONS(1637), + [anon_sym_DOLLARvacount] = ACTIONS(1637), + [anon_sym_DOLLARappend] = ACTIONS(1637), + [anon_sym_DOLLARconcat] = ACTIONS(1637), + [anon_sym_DOLLAReval] = ACTIONS(1637), + [anon_sym_DOLLARis_const] = ACTIONS(1637), + [anon_sym_DOLLARsizeof] = ACTIONS(1637), + [anon_sym_DOLLARstringify] = ACTIONS(1637), + [anon_sym_DOLLARand] = ACTIONS(1637), + [anon_sym_DOLLARdefined] = ACTIONS(1637), + [anon_sym_DOLLARembed] = ACTIONS(1637), + [anon_sym_DOLLARor] = ACTIONS(1637), + [anon_sym_DOLLARfeature] = ACTIONS(1637), + [anon_sym_DOLLARassignable] = ACTIONS(1637), + [anon_sym_BANG] = ACTIONS(1639), + [anon_sym_TILDE] = ACTIONS(1639), + [anon_sym_PLUS_PLUS] = ACTIONS(1639), + [anon_sym_DASH_DASH] = ACTIONS(1639), + [anon_sym_typeid] = ACTIONS(1637), + [anon_sym_LBRACE_PIPE] = ACTIONS(1639), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_bool] = ACTIONS(1637), + [anon_sym_char] = ACTIONS(1637), + [anon_sym_ichar] = ACTIONS(1637), + [anon_sym_short] = ACTIONS(1637), + [anon_sym_ushort] = ACTIONS(1637), + [anon_sym_uint] = ACTIONS(1637), + [anon_sym_long] = ACTIONS(1637), + [anon_sym_ulong] = ACTIONS(1637), + [anon_sym_int128] = ACTIONS(1637), + [anon_sym_uint128] = ACTIONS(1637), + [anon_sym_float] = ACTIONS(1637), + [anon_sym_double] = ACTIONS(1637), + [anon_sym_float16] = ACTIONS(1637), + [anon_sym_bfloat16] = ACTIONS(1637), + [anon_sym_float128] = ACTIONS(1637), + [anon_sym_iptr] = ACTIONS(1637), + [anon_sym_uptr] = ACTIONS(1637), + [anon_sym_isz] = ACTIONS(1637), + [anon_sym_usz] = ACTIONS(1637), + [anon_sym_anyfault] = ACTIONS(1637), + [anon_sym_any] = ACTIONS(1637), + [anon_sym_DOLLARtypeof] = ACTIONS(1637), + [anon_sym_DOLLARtypefrom] = ACTIONS(1637), + [anon_sym_DOLLARvatype] = ACTIONS(1637), + [anon_sym_DOLLARevaltype] = ACTIONS(1637), + [sym_real_literal] = ACTIONS(1639), }, [794] = { [sym_line_comment] = STATE(794), [sym_doc_comment] = STATE(794), [sym_block_comment] = STATE(794), - [sym_ident] = ACTIONS(1476), - [sym_integer_literal] = ACTIONS(1478), - [anon_sym_SQUOTE] = ACTIONS(1478), - [anon_sym_DQUOTE] = ACTIONS(1478), - [anon_sym_BQUOTE] = ACTIONS(1478), - [sym_bytes_literal] = ACTIONS(1478), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1476), - [sym_at_ident] = ACTIONS(1478), - [sym_hash_ident] = ACTIONS(1478), - [sym_type_ident] = ACTIONS(1478), - [sym_ct_type_ident] = ACTIONS(1478), - [sym_const_ident] = ACTIONS(1476), - [sym_builtin] = ACTIONS(1478), - [anon_sym_LPAREN] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_static] = ACTIONS(1476), - [anon_sym_tlocal] = ACTIONS(1476), - [anon_sym_SEMI] = ACTIONS(1478), - [anon_sym_fn] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1476), - [anon_sym_const] = ACTIONS(1476), - [anon_sym_var] = ACTIONS(1476), - [anon_sym_return] = ACTIONS(1476), - [anon_sym_continue] = ACTIONS(1476), - [anon_sym_break] = ACTIONS(1476), - [anon_sym_defer] = ACTIONS(1476), - [anon_sym_assert] = ACTIONS(1476), - [anon_sym_nextcase] = ACTIONS(1476), - [anon_sym_switch] = ACTIONS(1476), - [anon_sym_AMP_AMP] = ACTIONS(1478), - [anon_sym_if] = ACTIONS(1476), - [anon_sym_for] = ACTIONS(1476), - [anon_sym_foreach] = ACTIONS(1476), - [anon_sym_foreach_r] = ACTIONS(1476), - [anon_sym_while] = ACTIONS(1476), - [anon_sym_do] = ACTIONS(1476), - [anon_sym_int] = ACTIONS(1476), - [anon_sym_PLUS] = ACTIONS(1476), - [anon_sym_DASH] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_asm] = ACTIONS(1476), - [anon_sym_DOLLARassert] = ACTIONS(1476), - [anon_sym_DOLLARerror] = ACTIONS(1476), - [anon_sym_DOLLARecho] = ACTIONS(1476), - [anon_sym_DOLLARif] = ACTIONS(1476), - [anon_sym_DOLLARswitch] = ACTIONS(1476), - [anon_sym_DOLLARfor] = ACTIONS(1476), - [anon_sym_DOLLARendfor] = ACTIONS(1476), - [anon_sym_DOLLARforeach] = ACTIONS(1476), - [anon_sym_DOLLARalignof] = ACTIONS(1476), - [anon_sym_DOLLARextnameof] = ACTIONS(1476), - [anon_sym_DOLLARnameof] = ACTIONS(1476), - [anon_sym_DOLLARoffsetof] = ACTIONS(1476), - [anon_sym_DOLLARqnameof] = ACTIONS(1476), - [anon_sym_DOLLARvaconst] = ACTIONS(1476), - [anon_sym_DOLLARvaarg] = ACTIONS(1476), - [anon_sym_DOLLARvaref] = ACTIONS(1476), - [anon_sym_DOLLARvaexpr] = ACTIONS(1476), - [anon_sym_true] = ACTIONS(1476), - [anon_sym_false] = ACTIONS(1476), - [anon_sym_null] = ACTIONS(1476), - [anon_sym_DOLLARvacount] = ACTIONS(1476), - [anon_sym_DOLLARappend] = ACTIONS(1476), - [anon_sym_DOLLARconcat] = ACTIONS(1476), - [anon_sym_DOLLAReval] = ACTIONS(1476), - [anon_sym_DOLLARis_const] = ACTIONS(1476), - [anon_sym_DOLLARsizeof] = ACTIONS(1476), - [anon_sym_DOLLARstringify] = ACTIONS(1476), - [anon_sym_DOLLARand] = ACTIONS(1476), - [anon_sym_DOLLARdefined] = ACTIONS(1476), - [anon_sym_DOLLARembed] = ACTIONS(1476), - [anon_sym_DOLLARor] = ACTIONS(1476), - [anon_sym_DOLLARfeature] = ACTIONS(1476), - [anon_sym_DOLLARassignable] = ACTIONS(1476), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_TILDE] = ACTIONS(1478), - [anon_sym_PLUS_PLUS] = ACTIONS(1478), - [anon_sym_DASH_DASH] = ACTIONS(1478), - [anon_sym_typeid] = ACTIONS(1476), - [anon_sym_LBRACE_PIPE] = ACTIONS(1478), - [anon_sym_void] = ACTIONS(1476), - [anon_sym_bool] = ACTIONS(1476), - [anon_sym_char] = ACTIONS(1476), - [anon_sym_ichar] = ACTIONS(1476), - [anon_sym_short] = ACTIONS(1476), - [anon_sym_ushort] = ACTIONS(1476), - [anon_sym_uint] = ACTIONS(1476), - [anon_sym_long] = ACTIONS(1476), - [anon_sym_ulong] = ACTIONS(1476), - [anon_sym_int128] = ACTIONS(1476), - [anon_sym_uint128] = ACTIONS(1476), - [anon_sym_float] = ACTIONS(1476), - [anon_sym_double] = ACTIONS(1476), - [anon_sym_float16] = ACTIONS(1476), - [anon_sym_bfloat16] = ACTIONS(1476), - [anon_sym_float128] = ACTIONS(1476), - [anon_sym_iptr] = ACTIONS(1476), - [anon_sym_uptr] = ACTIONS(1476), - [anon_sym_isz] = ACTIONS(1476), - [anon_sym_usz] = ACTIONS(1476), - [anon_sym_anyfault] = ACTIONS(1476), - [anon_sym_any] = ACTIONS(1476), - [anon_sym_DOLLARtypeof] = ACTIONS(1476), - [anon_sym_DOLLARtypefrom] = ACTIONS(1476), - [anon_sym_DOLLARvatype] = ACTIONS(1476), - [anon_sym_DOLLARevaltype] = ACTIONS(1476), - [sym_real_literal] = ACTIONS(1478), + [sym_ident] = ACTIONS(1179), + [sym_integer_literal] = ACTIONS(1181), + [anon_sym_SQUOTE] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1181), + [anon_sym_BQUOTE] = ACTIONS(1181), + [sym_bytes_literal] = ACTIONS(1181), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1179), + [sym_at_ident] = ACTIONS(1181), + [sym_hash_ident] = ACTIONS(1181), + [sym_type_ident] = ACTIONS(1181), + [sym_ct_type_ident] = ACTIONS(1181), + [sym_const_ident] = ACTIONS(1179), + [sym_builtin] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1181), + [anon_sym_AMP] = ACTIONS(1179), + [anon_sym_static] = ACTIONS(1179), + [anon_sym_tlocal] = ACTIONS(1179), + [anon_sym_SEMI] = ACTIONS(1181), + [anon_sym_fn] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [anon_sym_var] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_defer] = ACTIONS(1179), + [anon_sym_assert] = ACTIONS(1179), + [anon_sym_nextcase] = ACTIONS(1179), + [anon_sym_switch] = ACTIONS(1179), + [anon_sym_AMP_AMP] = ACTIONS(1181), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_foreach] = ACTIONS(1179), + [anon_sym_foreach_r] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(1179), + [anon_sym_int] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1181), + [anon_sym_asm] = ACTIONS(1179), + [anon_sym_DOLLARassert] = ACTIONS(1179), + [anon_sym_DOLLARerror] = ACTIONS(1179), + [anon_sym_DOLLARecho] = ACTIONS(1179), + [anon_sym_DOLLARif] = ACTIONS(1179), + [anon_sym_DOLLARendif] = ACTIONS(1179), + [anon_sym_DOLLARswitch] = ACTIONS(1179), + [anon_sym_DOLLARfor] = ACTIONS(1179), + [anon_sym_DOLLARforeach] = ACTIONS(1179), + [anon_sym_DOLLARalignof] = ACTIONS(1179), + [anon_sym_DOLLARextnameof] = ACTIONS(1179), + [anon_sym_DOLLARnameof] = ACTIONS(1179), + [anon_sym_DOLLARoffsetof] = ACTIONS(1179), + [anon_sym_DOLLARqnameof] = ACTIONS(1179), + [anon_sym_DOLLARvaconst] = ACTIONS(1179), + [anon_sym_DOLLARvaarg] = ACTIONS(1179), + [anon_sym_DOLLARvaref] = ACTIONS(1179), + [anon_sym_DOLLARvaexpr] = ACTIONS(1179), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_null] = ACTIONS(1179), + [anon_sym_DOLLARvacount] = ACTIONS(1179), + [anon_sym_DOLLARappend] = ACTIONS(1179), + [anon_sym_DOLLARconcat] = ACTIONS(1179), + [anon_sym_DOLLAReval] = ACTIONS(1179), + [anon_sym_DOLLARis_const] = ACTIONS(1179), + [anon_sym_DOLLARsizeof] = ACTIONS(1179), + [anon_sym_DOLLARstringify] = ACTIONS(1179), + [anon_sym_DOLLARand] = ACTIONS(1179), + [anon_sym_DOLLARdefined] = ACTIONS(1179), + [anon_sym_DOLLARembed] = ACTIONS(1179), + [anon_sym_DOLLARor] = ACTIONS(1179), + [anon_sym_DOLLARfeature] = ACTIONS(1179), + [anon_sym_DOLLARassignable] = ACTIONS(1179), + [anon_sym_BANG] = ACTIONS(1181), + [anon_sym_TILDE] = ACTIONS(1181), + [anon_sym_PLUS_PLUS] = ACTIONS(1181), + [anon_sym_DASH_DASH] = ACTIONS(1181), + [anon_sym_typeid] = ACTIONS(1179), + [anon_sym_LBRACE_PIPE] = ACTIONS(1181), + [anon_sym_void] = ACTIONS(1179), + [anon_sym_bool] = ACTIONS(1179), + [anon_sym_char] = ACTIONS(1179), + [anon_sym_ichar] = ACTIONS(1179), + [anon_sym_short] = ACTIONS(1179), + [anon_sym_ushort] = ACTIONS(1179), + [anon_sym_uint] = ACTIONS(1179), + [anon_sym_long] = ACTIONS(1179), + [anon_sym_ulong] = ACTIONS(1179), + [anon_sym_int128] = ACTIONS(1179), + [anon_sym_uint128] = ACTIONS(1179), + [anon_sym_float] = ACTIONS(1179), + [anon_sym_double] = ACTIONS(1179), + [anon_sym_float16] = ACTIONS(1179), + [anon_sym_bfloat16] = ACTIONS(1179), + [anon_sym_float128] = ACTIONS(1179), + [anon_sym_iptr] = ACTIONS(1179), + [anon_sym_uptr] = ACTIONS(1179), + [anon_sym_isz] = ACTIONS(1179), + [anon_sym_usz] = ACTIONS(1179), + [anon_sym_anyfault] = ACTIONS(1179), + [anon_sym_any] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1179), + [anon_sym_DOLLARtypefrom] = ACTIONS(1179), + [anon_sym_DOLLARvatype] = ACTIONS(1179), + [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [sym_real_literal] = ACTIONS(1181), }, [795] = { [sym_line_comment] = STATE(795), [sym_doc_comment] = STATE(795), [sym_block_comment] = STATE(795), - [sym_ident] = ACTIONS(1532), - [sym_integer_literal] = ACTIONS(1534), - [anon_sym_SQUOTE] = ACTIONS(1534), - [anon_sym_DQUOTE] = ACTIONS(1534), - [anon_sym_BQUOTE] = ACTIONS(1534), - [sym_bytes_literal] = ACTIONS(1534), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1532), - [sym_at_ident] = ACTIONS(1534), - [sym_hash_ident] = ACTIONS(1534), - [sym_type_ident] = ACTIONS(1534), - [sym_ct_type_ident] = ACTIONS(1534), - [sym_const_ident] = ACTIONS(1532), - [sym_builtin] = ACTIONS(1534), - [anon_sym_LPAREN] = ACTIONS(1534), - [anon_sym_AMP] = ACTIONS(1532), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_tlocal] = ACTIONS(1532), - [anon_sym_SEMI] = ACTIONS(1534), - [anon_sym_fn] = ACTIONS(1532), - [anon_sym_LBRACE] = ACTIONS(1532), - [anon_sym_const] = ACTIONS(1532), - [anon_sym_var] = ACTIONS(1532), - [anon_sym_return] = ACTIONS(1532), - [anon_sym_continue] = ACTIONS(1532), - [anon_sym_break] = ACTIONS(1532), - [anon_sym_defer] = ACTIONS(1532), - [anon_sym_assert] = ACTIONS(1532), - [anon_sym_nextcase] = ACTIONS(1532), - [anon_sym_switch] = ACTIONS(1532), - [anon_sym_AMP_AMP] = ACTIONS(1534), - [anon_sym_if] = ACTIONS(1532), - [anon_sym_for] = ACTIONS(1532), - [anon_sym_foreach] = ACTIONS(1532), - [anon_sym_foreach_r] = ACTIONS(1532), - [anon_sym_while] = ACTIONS(1532), - [anon_sym_do] = ACTIONS(1532), - [anon_sym_int] = ACTIONS(1532), - [anon_sym_PLUS] = ACTIONS(1532), - [anon_sym_DASH] = ACTIONS(1532), - [anon_sym_STAR] = ACTIONS(1534), - [anon_sym_asm] = ACTIONS(1532), - [anon_sym_DOLLARassert] = ACTIONS(1532), - [anon_sym_DOLLARerror] = ACTIONS(1532), - [anon_sym_DOLLARecho] = ACTIONS(1532), - [anon_sym_DOLLARif] = ACTIONS(1532), - [anon_sym_DOLLARendif] = ACTIONS(1532), - [anon_sym_DOLLARswitch] = ACTIONS(1532), - [anon_sym_DOLLARfor] = ACTIONS(1532), - [anon_sym_DOLLARforeach] = ACTIONS(1532), - [anon_sym_DOLLARalignof] = ACTIONS(1532), - [anon_sym_DOLLARextnameof] = ACTIONS(1532), - [anon_sym_DOLLARnameof] = ACTIONS(1532), - [anon_sym_DOLLARoffsetof] = ACTIONS(1532), - [anon_sym_DOLLARqnameof] = ACTIONS(1532), - [anon_sym_DOLLARvaconst] = ACTIONS(1532), - [anon_sym_DOLLARvaarg] = ACTIONS(1532), - [anon_sym_DOLLARvaref] = ACTIONS(1532), - [anon_sym_DOLLARvaexpr] = ACTIONS(1532), - [anon_sym_true] = ACTIONS(1532), - [anon_sym_false] = ACTIONS(1532), - [anon_sym_null] = ACTIONS(1532), - [anon_sym_DOLLARvacount] = ACTIONS(1532), - [anon_sym_DOLLARappend] = ACTIONS(1532), - [anon_sym_DOLLARconcat] = ACTIONS(1532), - [anon_sym_DOLLAReval] = ACTIONS(1532), - [anon_sym_DOLLARis_const] = ACTIONS(1532), - [anon_sym_DOLLARsizeof] = ACTIONS(1532), - [anon_sym_DOLLARstringify] = ACTIONS(1532), - [anon_sym_DOLLARand] = ACTIONS(1532), - [anon_sym_DOLLARdefined] = ACTIONS(1532), - [anon_sym_DOLLARembed] = ACTIONS(1532), - [anon_sym_DOLLARor] = ACTIONS(1532), - [anon_sym_DOLLARfeature] = ACTIONS(1532), - [anon_sym_DOLLARassignable] = ACTIONS(1532), - [anon_sym_BANG] = ACTIONS(1534), - [anon_sym_TILDE] = ACTIONS(1534), - [anon_sym_PLUS_PLUS] = ACTIONS(1534), - [anon_sym_DASH_DASH] = ACTIONS(1534), - [anon_sym_typeid] = ACTIONS(1532), - [anon_sym_LBRACE_PIPE] = ACTIONS(1534), - [anon_sym_void] = ACTIONS(1532), - [anon_sym_bool] = ACTIONS(1532), - [anon_sym_char] = ACTIONS(1532), - [anon_sym_ichar] = ACTIONS(1532), - [anon_sym_short] = ACTIONS(1532), - [anon_sym_ushort] = ACTIONS(1532), - [anon_sym_uint] = ACTIONS(1532), - [anon_sym_long] = ACTIONS(1532), - [anon_sym_ulong] = ACTIONS(1532), - [anon_sym_int128] = ACTIONS(1532), - [anon_sym_uint128] = ACTIONS(1532), - [anon_sym_float] = ACTIONS(1532), - [anon_sym_double] = ACTIONS(1532), - [anon_sym_float16] = ACTIONS(1532), - [anon_sym_bfloat16] = ACTIONS(1532), - [anon_sym_float128] = ACTIONS(1532), - [anon_sym_iptr] = ACTIONS(1532), - [anon_sym_uptr] = ACTIONS(1532), - [anon_sym_isz] = ACTIONS(1532), - [anon_sym_usz] = ACTIONS(1532), - [anon_sym_anyfault] = ACTIONS(1532), - [anon_sym_any] = ACTIONS(1532), - [anon_sym_DOLLARtypeof] = ACTIONS(1532), - [anon_sym_DOLLARtypefrom] = ACTIONS(1532), - [anon_sym_DOLLARvatype] = ACTIONS(1532), - [anon_sym_DOLLARevaltype] = ACTIONS(1532), - [sym_real_literal] = ACTIONS(1534), + [sym_ident] = ACTIONS(1481), + [sym_integer_literal] = ACTIONS(1483), + [anon_sym_SQUOTE] = ACTIONS(1483), + [anon_sym_DQUOTE] = ACTIONS(1483), + [anon_sym_BQUOTE] = ACTIONS(1483), + [sym_bytes_literal] = ACTIONS(1483), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1481), + [sym_at_ident] = ACTIONS(1483), + [sym_hash_ident] = ACTIONS(1483), + [sym_type_ident] = ACTIONS(1483), + [sym_ct_type_ident] = ACTIONS(1483), + [sym_const_ident] = ACTIONS(1481), + [sym_builtin] = ACTIONS(1483), + [anon_sym_LPAREN] = ACTIONS(1483), + [anon_sym_AMP] = ACTIONS(1481), + [anon_sym_static] = ACTIONS(1481), + [anon_sym_tlocal] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1483), + [anon_sym_fn] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_const] = ACTIONS(1481), + [anon_sym_var] = ACTIONS(1481), + [anon_sym_return] = ACTIONS(1481), + [anon_sym_continue] = ACTIONS(1481), + [anon_sym_break] = ACTIONS(1481), + [anon_sym_defer] = ACTIONS(1481), + [anon_sym_assert] = ACTIONS(1481), + [anon_sym_nextcase] = ACTIONS(1481), + [anon_sym_switch] = ACTIONS(1481), + [anon_sym_AMP_AMP] = ACTIONS(1483), + [anon_sym_if] = ACTIONS(1481), + [anon_sym_for] = ACTIONS(1481), + [anon_sym_foreach] = ACTIONS(1481), + [anon_sym_foreach_r] = ACTIONS(1481), + [anon_sym_while] = ACTIONS(1481), + [anon_sym_do] = ACTIONS(1481), + [anon_sym_int] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_STAR] = ACTIONS(1483), + [anon_sym_asm] = ACTIONS(1481), + [anon_sym_DOLLARassert] = ACTIONS(1481), + [anon_sym_DOLLARerror] = ACTIONS(1481), + [anon_sym_DOLLARecho] = ACTIONS(1481), + [anon_sym_DOLLARif] = ACTIONS(1481), + [anon_sym_DOLLARendif] = ACTIONS(1481), + [anon_sym_DOLLARswitch] = ACTIONS(1481), + [anon_sym_DOLLARfor] = ACTIONS(1481), + [anon_sym_DOLLARforeach] = ACTIONS(1481), + [anon_sym_DOLLARalignof] = ACTIONS(1481), + [anon_sym_DOLLARextnameof] = ACTIONS(1481), + [anon_sym_DOLLARnameof] = ACTIONS(1481), + [anon_sym_DOLLARoffsetof] = ACTIONS(1481), + [anon_sym_DOLLARqnameof] = ACTIONS(1481), + [anon_sym_DOLLARvaconst] = ACTIONS(1481), + [anon_sym_DOLLARvaarg] = ACTIONS(1481), + [anon_sym_DOLLARvaref] = ACTIONS(1481), + [anon_sym_DOLLARvaexpr] = ACTIONS(1481), + [anon_sym_true] = ACTIONS(1481), + [anon_sym_false] = ACTIONS(1481), + [anon_sym_null] = ACTIONS(1481), + [anon_sym_DOLLARvacount] = ACTIONS(1481), + [anon_sym_DOLLARappend] = ACTIONS(1481), + [anon_sym_DOLLARconcat] = ACTIONS(1481), + [anon_sym_DOLLAReval] = ACTIONS(1481), + [anon_sym_DOLLARis_const] = ACTIONS(1481), + [anon_sym_DOLLARsizeof] = ACTIONS(1481), + [anon_sym_DOLLARstringify] = ACTIONS(1481), + [anon_sym_DOLLARand] = ACTIONS(1481), + [anon_sym_DOLLARdefined] = ACTIONS(1481), + [anon_sym_DOLLARembed] = ACTIONS(1481), + [anon_sym_DOLLARor] = ACTIONS(1481), + [anon_sym_DOLLARfeature] = ACTIONS(1481), + [anon_sym_DOLLARassignable] = ACTIONS(1481), + [anon_sym_BANG] = ACTIONS(1483), + [anon_sym_TILDE] = ACTIONS(1483), + [anon_sym_PLUS_PLUS] = ACTIONS(1483), + [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_typeid] = ACTIONS(1481), + [anon_sym_LBRACE_PIPE] = ACTIONS(1483), + [anon_sym_void] = ACTIONS(1481), + [anon_sym_bool] = ACTIONS(1481), + [anon_sym_char] = ACTIONS(1481), + [anon_sym_ichar] = ACTIONS(1481), + [anon_sym_short] = ACTIONS(1481), + [anon_sym_ushort] = ACTIONS(1481), + [anon_sym_uint] = ACTIONS(1481), + [anon_sym_long] = ACTIONS(1481), + [anon_sym_ulong] = ACTIONS(1481), + [anon_sym_int128] = ACTIONS(1481), + [anon_sym_uint128] = ACTIONS(1481), + [anon_sym_float] = ACTIONS(1481), + [anon_sym_double] = ACTIONS(1481), + [anon_sym_float16] = ACTIONS(1481), + [anon_sym_bfloat16] = ACTIONS(1481), + [anon_sym_float128] = ACTIONS(1481), + [anon_sym_iptr] = ACTIONS(1481), + [anon_sym_uptr] = ACTIONS(1481), + [anon_sym_isz] = ACTIONS(1481), + [anon_sym_usz] = ACTIONS(1481), + [anon_sym_anyfault] = ACTIONS(1481), + [anon_sym_any] = ACTIONS(1481), + [anon_sym_DOLLARtypeof] = ACTIONS(1481), + [anon_sym_DOLLARtypefrom] = ACTIONS(1481), + [anon_sym_DOLLARvatype] = ACTIONS(1481), + [anon_sym_DOLLARevaltype] = ACTIONS(1481), + [sym_real_literal] = ACTIONS(1483), }, [796] = { [sym_line_comment] = STATE(796), [sym_doc_comment] = STATE(796), [sym_block_comment] = STATE(796), - [sym_ident] = ACTIONS(1520), - [sym_integer_literal] = ACTIONS(1522), - [anon_sym_SQUOTE] = ACTIONS(1522), - [anon_sym_DQUOTE] = ACTIONS(1522), - [anon_sym_BQUOTE] = ACTIONS(1522), - [sym_bytes_literal] = ACTIONS(1522), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1520), - [sym_at_ident] = ACTIONS(1522), - [sym_hash_ident] = ACTIONS(1522), - [sym_type_ident] = ACTIONS(1522), - [sym_ct_type_ident] = ACTIONS(1522), - [sym_const_ident] = ACTIONS(1520), - [sym_builtin] = ACTIONS(1522), - [anon_sym_LPAREN] = ACTIONS(1522), - [anon_sym_AMP] = ACTIONS(1520), - [anon_sym_static] = ACTIONS(1520), - [anon_sym_tlocal] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1522), - [anon_sym_fn] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1520), - [anon_sym_const] = ACTIONS(1520), - [anon_sym_var] = ACTIONS(1520), - [anon_sym_return] = ACTIONS(1520), - [anon_sym_continue] = ACTIONS(1520), - [anon_sym_break] = ACTIONS(1520), - [anon_sym_defer] = ACTIONS(1520), - [anon_sym_assert] = ACTIONS(1520), - [anon_sym_nextcase] = ACTIONS(1520), - [anon_sym_switch] = ACTIONS(1520), - [anon_sym_AMP_AMP] = ACTIONS(1522), - [anon_sym_if] = ACTIONS(1520), - [anon_sym_for] = ACTIONS(1520), - [anon_sym_foreach] = ACTIONS(1520), - [anon_sym_foreach_r] = ACTIONS(1520), - [anon_sym_while] = ACTIONS(1520), - [anon_sym_do] = ACTIONS(1520), - [anon_sym_int] = ACTIONS(1520), - [anon_sym_PLUS] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1520), - [anon_sym_STAR] = ACTIONS(1522), - [anon_sym_asm] = ACTIONS(1520), - [anon_sym_DOLLARassert] = ACTIONS(1520), - [anon_sym_DOLLARerror] = ACTIONS(1520), - [anon_sym_DOLLARecho] = ACTIONS(1520), - [anon_sym_DOLLARif] = ACTIONS(1520), - [anon_sym_DOLLARendif] = ACTIONS(1520), - [anon_sym_DOLLARswitch] = ACTIONS(1520), - [anon_sym_DOLLARfor] = ACTIONS(1520), - [anon_sym_DOLLARforeach] = ACTIONS(1520), - [anon_sym_DOLLARalignof] = ACTIONS(1520), - [anon_sym_DOLLARextnameof] = ACTIONS(1520), - [anon_sym_DOLLARnameof] = ACTIONS(1520), - [anon_sym_DOLLARoffsetof] = ACTIONS(1520), - [anon_sym_DOLLARqnameof] = ACTIONS(1520), - [anon_sym_DOLLARvaconst] = ACTIONS(1520), - [anon_sym_DOLLARvaarg] = ACTIONS(1520), - [anon_sym_DOLLARvaref] = ACTIONS(1520), - [anon_sym_DOLLARvaexpr] = ACTIONS(1520), - [anon_sym_true] = ACTIONS(1520), - [anon_sym_false] = ACTIONS(1520), - [anon_sym_null] = ACTIONS(1520), - [anon_sym_DOLLARvacount] = ACTIONS(1520), - [anon_sym_DOLLARappend] = ACTIONS(1520), - [anon_sym_DOLLARconcat] = ACTIONS(1520), - [anon_sym_DOLLAReval] = ACTIONS(1520), - [anon_sym_DOLLARis_const] = ACTIONS(1520), - [anon_sym_DOLLARsizeof] = ACTIONS(1520), - [anon_sym_DOLLARstringify] = ACTIONS(1520), - [anon_sym_DOLLARand] = ACTIONS(1520), - [anon_sym_DOLLARdefined] = ACTIONS(1520), - [anon_sym_DOLLARembed] = ACTIONS(1520), - [anon_sym_DOLLARor] = ACTIONS(1520), - [anon_sym_DOLLARfeature] = ACTIONS(1520), - [anon_sym_DOLLARassignable] = ACTIONS(1520), - [anon_sym_BANG] = ACTIONS(1522), - [anon_sym_TILDE] = ACTIONS(1522), - [anon_sym_PLUS_PLUS] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1522), - [anon_sym_typeid] = ACTIONS(1520), - [anon_sym_LBRACE_PIPE] = ACTIONS(1522), - [anon_sym_void] = ACTIONS(1520), - [anon_sym_bool] = ACTIONS(1520), - [anon_sym_char] = ACTIONS(1520), - [anon_sym_ichar] = ACTIONS(1520), - [anon_sym_short] = ACTIONS(1520), - [anon_sym_ushort] = ACTIONS(1520), - [anon_sym_uint] = ACTIONS(1520), - [anon_sym_long] = ACTIONS(1520), - [anon_sym_ulong] = ACTIONS(1520), - [anon_sym_int128] = ACTIONS(1520), - [anon_sym_uint128] = ACTIONS(1520), - [anon_sym_float] = ACTIONS(1520), - [anon_sym_double] = ACTIONS(1520), - [anon_sym_float16] = ACTIONS(1520), - [anon_sym_bfloat16] = ACTIONS(1520), - [anon_sym_float128] = ACTIONS(1520), - [anon_sym_iptr] = ACTIONS(1520), - [anon_sym_uptr] = ACTIONS(1520), - [anon_sym_isz] = ACTIONS(1520), - [anon_sym_usz] = ACTIONS(1520), - [anon_sym_anyfault] = ACTIONS(1520), - [anon_sym_any] = ACTIONS(1520), - [anon_sym_DOLLARtypeof] = ACTIONS(1520), - [anon_sym_DOLLARtypefrom] = ACTIONS(1520), - [anon_sym_DOLLARvatype] = ACTIONS(1520), - [anon_sym_DOLLARevaltype] = ACTIONS(1520), - [sym_real_literal] = ACTIONS(1522), + [sym_ident] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1459), + [anon_sym_SQUOTE] = ACTIONS(1459), + [anon_sym_DQUOTE] = ACTIONS(1459), + [anon_sym_BQUOTE] = ACTIONS(1459), + [sym_bytes_literal] = ACTIONS(1459), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1457), + [sym_at_ident] = ACTIONS(1459), + [sym_hash_ident] = ACTIONS(1459), + [sym_type_ident] = ACTIONS(1459), + [sym_ct_type_ident] = ACTIONS(1459), + [sym_const_ident] = ACTIONS(1457), + [sym_builtin] = ACTIONS(1459), + [anon_sym_LPAREN] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_tlocal] = ACTIONS(1457), + [anon_sym_SEMI] = ACTIONS(1459), + [anon_sym_fn] = ACTIONS(1457), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_const] = ACTIONS(1457), + [anon_sym_var] = ACTIONS(1457), + [anon_sym_return] = ACTIONS(1457), + [anon_sym_continue] = ACTIONS(1457), + [anon_sym_break] = ACTIONS(1457), + [anon_sym_defer] = ACTIONS(1457), + [anon_sym_assert] = ACTIONS(1457), + [anon_sym_nextcase] = ACTIONS(1457), + [anon_sym_switch] = ACTIONS(1457), + [anon_sym_AMP_AMP] = ACTIONS(1459), + [anon_sym_if] = ACTIONS(1457), + [anon_sym_for] = ACTIONS(1457), + [anon_sym_foreach] = ACTIONS(1457), + [anon_sym_foreach_r] = ACTIONS(1457), + [anon_sym_while] = ACTIONS(1457), + [anon_sym_do] = ACTIONS(1457), + [anon_sym_int] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_asm] = ACTIONS(1457), + [anon_sym_DOLLARassert] = ACTIONS(1457), + [anon_sym_DOLLARerror] = ACTIONS(1457), + [anon_sym_DOLLARecho] = ACTIONS(1457), + [anon_sym_DOLLARif] = ACTIONS(1457), + [anon_sym_DOLLARendif] = ACTIONS(1457), + [anon_sym_DOLLARswitch] = ACTIONS(1457), + [anon_sym_DOLLARfor] = ACTIONS(1457), + [anon_sym_DOLLARforeach] = ACTIONS(1457), + [anon_sym_DOLLARalignof] = ACTIONS(1457), + [anon_sym_DOLLARextnameof] = ACTIONS(1457), + [anon_sym_DOLLARnameof] = ACTIONS(1457), + [anon_sym_DOLLARoffsetof] = ACTIONS(1457), + [anon_sym_DOLLARqnameof] = ACTIONS(1457), + [anon_sym_DOLLARvaconst] = ACTIONS(1457), + [anon_sym_DOLLARvaarg] = ACTIONS(1457), + [anon_sym_DOLLARvaref] = ACTIONS(1457), + [anon_sym_DOLLARvaexpr] = ACTIONS(1457), + [anon_sym_true] = ACTIONS(1457), + [anon_sym_false] = ACTIONS(1457), + [anon_sym_null] = ACTIONS(1457), + [anon_sym_DOLLARvacount] = ACTIONS(1457), + [anon_sym_DOLLARappend] = ACTIONS(1457), + [anon_sym_DOLLARconcat] = ACTIONS(1457), + [anon_sym_DOLLAReval] = ACTIONS(1457), + [anon_sym_DOLLARis_const] = ACTIONS(1457), + [anon_sym_DOLLARsizeof] = ACTIONS(1457), + [anon_sym_DOLLARstringify] = ACTIONS(1457), + [anon_sym_DOLLARand] = ACTIONS(1457), + [anon_sym_DOLLARdefined] = ACTIONS(1457), + [anon_sym_DOLLARembed] = ACTIONS(1457), + [anon_sym_DOLLARor] = ACTIONS(1457), + [anon_sym_DOLLARfeature] = ACTIONS(1457), + [anon_sym_DOLLARassignable] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_TILDE] = ACTIONS(1459), + [anon_sym_PLUS_PLUS] = ACTIONS(1459), + [anon_sym_DASH_DASH] = ACTIONS(1459), + [anon_sym_typeid] = ACTIONS(1457), + [anon_sym_LBRACE_PIPE] = ACTIONS(1459), + [anon_sym_void] = ACTIONS(1457), + [anon_sym_bool] = ACTIONS(1457), + [anon_sym_char] = ACTIONS(1457), + [anon_sym_ichar] = ACTIONS(1457), + [anon_sym_short] = ACTIONS(1457), + [anon_sym_ushort] = ACTIONS(1457), + [anon_sym_uint] = ACTIONS(1457), + [anon_sym_long] = ACTIONS(1457), + [anon_sym_ulong] = ACTIONS(1457), + [anon_sym_int128] = ACTIONS(1457), + [anon_sym_uint128] = ACTIONS(1457), + [anon_sym_float] = ACTIONS(1457), + [anon_sym_double] = ACTIONS(1457), + [anon_sym_float16] = ACTIONS(1457), + [anon_sym_bfloat16] = ACTIONS(1457), + [anon_sym_float128] = ACTIONS(1457), + [anon_sym_iptr] = ACTIONS(1457), + [anon_sym_uptr] = ACTIONS(1457), + [anon_sym_isz] = ACTIONS(1457), + [anon_sym_usz] = ACTIONS(1457), + [anon_sym_anyfault] = ACTIONS(1457), + [anon_sym_any] = ACTIONS(1457), + [anon_sym_DOLLARtypeof] = ACTIONS(1457), + [anon_sym_DOLLARtypefrom] = ACTIONS(1457), + [anon_sym_DOLLARvatype] = ACTIONS(1457), + [anon_sym_DOLLARevaltype] = ACTIONS(1457), + [sym_real_literal] = ACTIONS(1459), }, [797] = { [sym_line_comment] = STATE(797), [sym_doc_comment] = STATE(797), [sym_block_comment] = STATE(797), - [sym_ident] = ACTIONS(1390), - [sym_integer_literal] = ACTIONS(1392), - [anon_sym_SQUOTE] = ACTIONS(1392), - [anon_sym_DQUOTE] = ACTIONS(1392), - [anon_sym_BQUOTE] = ACTIONS(1392), - [sym_bytes_literal] = ACTIONS(1392), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1390), - [sym_at_ident] = ACTIONS(1392), - [sym_hash_ident] = ACTIONS(1392), - [sym_type_ident] = ACTIONS(1392), - [sym_ct_type_ident] = ACTIONS(1392), - [sym_const_ident] = ACTIONS(1390), - [sym_builtin] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1392), - [anon_sym_AMP] = ACTIONS(1390), - [anon_sym_static] = ACTIONS(1390), - [anon_sym_tlocal] = ACTIONS(1390), - [anon_sym_SEMI] = ACTIONS(1392), - [anon_sym_fn] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1390), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_var] = ACTIONS(1390), - [anon_sym_return] = ACTIONS(1390), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_break] = ACTIONS(1390), - [anon_sym_defer] = ACTIONS(1390), - [anon_sym_assert] = ACTIONS(1390), - [anon_sym_nextcase] = ACTIONS(1390), - [anon_sym_switch] = ACTIONS(1390), - [anon_sym_AMP_AMP] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1390), - [anon_sym_for] = ACTIONS(1390), - [anon_sym_foreach] = ACTIONS(1390), - [anon_sym_foreach_r] = ACTIONS(1390), - [anon_sym_while] = ACTIONS(1390), - [anon_sym_do] = ACTIONS(1390), - [anon_sym_int] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1390), - [anon_sym_DASH] = ACTIONS(1390), - [anon_sym_STAR] = ACTIONS(1392), - [anon_sym_asm] = ACTIONS(1390), - [anon_sym_DOLLARassert] = ACTIONS(1390), - [anon_sym_DOLLARerror] = ACTIONS(1390), - [anon_sym_DOLLARecho] = ACTIONS(1390), - [anon_sym_DOLLARif] = ACTIONS(1390), - [anon_sym_DOLLARswitch] = ACTIONS(1390), - [anon_sym_DOLLARfor] = ACTIONS(1390), - [anon_sym_DOLLARforeach] = ACTIONS(1390), - [anon_sym_DOLLARendforeach] = ACTIONS(1390), - [anon_sym_DOLLARalignof] = ACTIONS(1390), - [anon_sym_DOLLARextnameof] = ACTIONS(1390), - [anon_sym_DOLLARnameof] = ACTIONS(1390), - [anon_sym_DOLLARoffsetof] = ACTIONS(1390), - [anon_sym_DOLLARqnameof] = ACTIONS(1390), - [anon_sym_DOLLARvaconst] = ACTIONS(1390), - [anon_sym_DOLLARvaarg] = ACTIONS(1390), - [anon_sym_DOLLARvaref] = ACTIONS(1390), - [anon_sym_DOLLARvaexpr] = ACTIONS(1390), - [anon_sym_true] = ACTIONS(1390), - [anon_sym_false] = ACTIONS(1390), - [anon_sym_null] = ACTIONS(1390), - [anon_sym_DOLLARvacount] = ACTIONS(1390), - [anon_sym_DOLLARappend] = ACTIONS(1390), - [anon_sym_DOLLARconcat] = ACTIONS(1390), - [anon_sym_DOLLAReval] = ACTIONS(1390), - [anon_sym_DOLLARis_const] = ACTIONS(1390), - [anon_sym_DOLLARsizeof] = ACTIONS(1390), - [anon_sym_DOLLARstringify] = ACTIONS(1390), - [anon_sym_DOLLARand] = ACTIONS(1390), - [anon_sym_DOLLARdefined] = ACTIONS(1390), - [anon_sym_DOLLARembed] = ACTIONS(1390), - [anon_sym_DOLLARor] = ACTIONS(1390), - [anon_sym_DOLLARfeature] = ACTIONS(1390), - [anon_sym_DOLLARassignable] = ACTIONS(1390), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_PLUS_PLUS] = ACTIONS(1392), - [anon_sym_DASH_DASH] = ACTIONS(1392), - [anon_sym_typeid] = ACTIONS(1390), - [anon_sym_LBRACE_PIPE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1390), - [anon_sym_bool] = ACTIONS(1390), - [anon_sym_char] = ACTIONS(1390), - [anon_sym_ichar] = ACTIONS(1390), - [anon_sym_short] = ACTIONS(1390), - [anon_sym_ushort] = ACTIONS(1390), - [anon_sym_uint] = ACTIONS(1390), - [anon_sym_long] = ACTIONS(1390), - [anon_sym_ulong] = ACTIONS(1390), - [anon_sym_int128] = ACTIONS(1390), - [anon_sym_uint128] = ACTIONS(1390), - [anon_sym_float] = ACTIONS(1390), - [anon_sym_double] = ACTIONS(1390), - [anon_sym_float16] = ACTIONS(1390), - [anon_sym_bfloat16] = ACTIONS(1390), - [anon_sym_float128] = ACTIONS(1390), - [anon_sym_iptr] = ACTIONS(1390), - [anon_sym_uptr] = ACTIONS(1390), - [anon_sym_isz] = ACTIONS(1390), - [anon_sym_usz] = ACTIONS(1390), - [anon_sym_anyfault] = ACTIONS(1390), - [anon_sym_any] = ACTIONS(1390), - [anon_sym_DOLLARtypeof] = ACTIONS(1390), - [anon_sym_DOLLARtypefrom] = ACTIONS(1390), - [anon_sym_DOLLARvatype] = ACTIONS(1390), - [anon_sym_DOLLARevaltype] = ACTIONS(1390), - [sym_real_literal] = ACTIONS(1392), + [sym_ident] = ACTIONS(1453), + [sym_integer_literal] = ACTIONS(1455), + [anon_sym_SQUOTE] = ACTIONS(1455), + [anon_sym_DQUOTE] = ACTIONS(1455), + [anon_sym_BQUOTE] = ACTIONS(1455), + [sym_bytes_literal] = ACTIONS(1455), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1453), + [sym_at_ident] = ACTIONS(1455), + [sym_hash_ident] = ACTIONS(1455), + [sym_type_ident] = ACTIONS(1455), + [sym_ct_type_ident] = ACTIONS(1455), + [sym_const_ident] = ACTIONS(1453), + [sym_builtin] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_AMP] = ACTIONS(1453), + [anon_sym_static] = ACTIONS(1453), + [anon_sym_tlocal] = ACTIONS(1453), + [anon_sym_SEMI] = ACTIONS(1455), + [anon_sym_fn] = ACTIONS(1453), + [anon_sym_LBRACE] = ACTIONS(1453), + [anon_sym_const] = ACTIONS(1453), + [anon_sym_var] = ACTIONS(1453), + [anon_sym_return] = ACTIONS(1453), + [anon_sym_continue] = ACTIONS(1453), + [anon_sym_break] = ACTIONS(1453), + [anon_sym_defer] = ACTIONS(1453), + [anon_sym_assert] = ACTIONS(1453), + [anon_sym_nextcase] = ACTIONS(1453), + [anon_sym_switch] = ACTIONS(1453), + [anon_sym_AMP_AMP] = ACTIONS(1455), + [anon_sym_if] = ACTIONS(1453), + [anon_sym_for] = ACTIONS(1453), + [anon_sym_foreach] = ACTIONS(1453), + [anon_sym_foreach_r] = ACTIONS(1453), + [anon_sym_while] = ACTIONS(1453), + [anon_sym_do] = ACTIONS(1453), + [anon_sym_int] = ACTIONS(1453), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_STAR] = ACTIONS(1455), + [anon_sym_asm] = ACTIONS(1453), + [anon_sym_DOLLARassert] = ACTIONS(1453), + [anon_sym_DOLLARerror] = ACTIONS(1453), + [anon_sym_DOLLARecho] = ACTIONS(1453), + [anon_sym_DOLLARif] = ACTIONS(1453), + [anon_sym_DOLLARendif] = ACTIONS(1453), + [anon_sym_DOLLARswitch] = ACTIONS(1453), + [anon_sym_DOLLARfor] = ACTIONS(1453), + [anon_sym_DOLLARforeach] = ACTIONS(1453), + [anon_sym_DOLLARalignof] = ACTIONS(1453), + [anon_sym_DOLLARextnameof] = ACTIONS(1453), + [anon_sym_DOLLARnameof] = ACTIONS(1453), + [anon_sym_DOLLARoffsetof] = ACTIONS(1453), + [anon_sym_DOLLARqnameof] = ACTIONS(1453), + [anon_sym_DOLLARvaconst] = ACTIONS(1453), + [anon_sym_DOLLARvaarg] = ACTIONS(1453), + [anon_sym_DOLLARvaref] = ACTIONS(1453), + [anon_sym_DOLLARvaexpr] = ACTIONS(1453), + [anon_sym_true] = ACTIONS(1453), + [anon_sym_false] = ACTIONS(1453), + [anon_sym_null] = ACTIONS(1453), + [anon_sym_DOLLARvacount] = ACTIONS(1453), + [anon_sym_DOLLARappend] = ACTIONS(1453), + [anon_sym_DOLLARconcat] = ACTIONS(1453), + [anon_sym_DOLLAReval] = ACTIONS(1453), + [anon_sym_DOLLARis_const] = ACTIONS(1453), + [anon_sym_DOLLARsizeof] = ACTIONS(1453), + [anon_sym_DOLLARstringify] = ACTIONS(1453), + [anon_sym_DOLLARand] = ACTIONS(1453), + [anon_sym_DOLLARdefined] = ACTIONS(1453), + [anon_sym_DOLLARembed] = ACTIONS(1453), + [anon_sym_DOLLARor] = ACTIONS(1453), + [anon_sym_DOLLARfeature] = ACTIONS(1453), + [anon_sym_DOLLARassignable] = ACTIONS(1453), + [anon_sym_BANG] = ACTIONS(1455), + [anon_sym_TILDE] = ACTIONS(1455), + [anon_sym_PLUS_PLUS] = ACTIONS(1455), + [anon_sym_DASH_DASH] = ACTIONS(1455), + [anon_sym_typeid] = ACTIONS(1453), + [anon_sym_LBRACE_PIPE] = ACTIONS(1455), + [anon_sym_void] = ACTIONS(1453), + [anon_sym_bool] = ACTIONS(1453), + [anon_sym_char] = ACTIONS(1453), + [anon_sym_ichar] = ACTIONS(1453), + [anon_sym_short] = ACTIONS(1453), + [anon_sym_ushort] = ACTIONS(1453), + [anon_sym_uint] = ACTIONS(1453), + [anon_sym_long] = ACTIONS(1453), + [anon_sym_ulong] = ACTIONS(1453), + [anon_sym_int128] = ACTIONS(1453), + [anon_sym_uint128] = ACTIONS(1453), + [anon_sym_float] = ACTIONS(1453), + [anon_sym_double] = ACTIONS(1453), + [anon_sym_float16] = ACTIONS(1453), + [anon_sym_bfloat16] = ACTIONS(1453), + [anon_sym_float128] = ACTIONS(1453), + [anon_sym_iptr] = ACTIONS(1453), + [anon_sym_uptr] = ACTIONS(1453), + [anon_sym_isz] = ACTIONS(1453), + [anon_sym_usz] = ACTIONS(1453), + [anon_sym_anyfault] = ACTIONS(1453), + [anon_sym_any] = ACTIONS(1453), + [anon_sym_DOLLARtypeof] = ACTIONS(1453), + [anon_sym_DOLLARtypefrom] = ACTIONS(1453), + [anon_sym_DOLLARvatype] = ACTIONS(1453), + [anon_sym_DOLLARevaltype] = ACTIONS(1453), + [sym_real_literal] = ACTIONS(1455), }, [798] = { [sym_line_comment] = STATE(798), [sym_doc_comment] = STATE(798), [sym_block_comment] = STATE(798), - [sym_ident] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(1606), - [anon_sym_SQUOTE] = ACTIONS(1606), - [anon_sym_DQUOTE] = ACTIONS(1606), - [anon_sym_BQUOTE] = ACTIONS(1606), - [sym_bytes_literal] = ACTIONS(1606), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1604), - [sym_at_ident] = ACTIONS(1606), - [sym_hash_ident] = ACTIONS(1606), - [sym_type_ident] = ACTIONS(1606), - [sym_ct_type_ident] = ACTIONS(1606), - [sym_const_ident] = ACTIONS(1604), - [sym_builtin] = ACTIONS(1606), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_AMP] = ACTIONS(1604), - [anon_sym_static] = ACTIONS(1604), - [anon_sym_tlocal] = ACTIONS(1604), - [anon_sym_SEMI] = ACTIONS(1606), - [anon_sym_fn] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(1604), - [anon_sym_const] = ACTIONS(1604), - [anon_sym_var] = ACTIONS(1604), - [anon_sym_return] = ACTIONS(1604), - [anon_sym_continue] = ACTIONS(1604), - [anon_sym_break] = ACTIONS(1604), - [anon_sym_defer] = ACTIONS(1604), - [anon_sym_assert] = ACTIONS(1604), - [anon_sym_nextcase] = ACTIONS(1604), - [anon_sym_switch] = ACTIONS(1604), - [anon_sym_AMP_AMP] = ACTIONS(1606), - [anon_sym_if] = ACTIONS(1604), - [anon_sym_for] = ACTIONS(1604), - [anon_sym_foreach] = ACTIONS(1604), - [anon_sym_foreach_r] = ACTIONS(1604), - [anon_sym_while] = ACTIONS(1604), - [anon_sym_do] = ACTIONS(1604), - [anon_sym_int] = ACTIONS(1604), - [anon_sym_PLUS] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1606), - [anon_sym_asm] = ACTIONS(1604), - [anon_sym_DOLLARassert] = ACTIONS(1604), - [anon_sym_DOLLARerror] = ACTIONS(1604), - [anon_sym_DOLLARecho] = ACTIONS(1604), - [anon_sym_DOLLARif] = ACTIONS(1604), - [anon_sym_DOLLARswitch] = ACTIONS(1604), - [anon_sym_DOLLARfor] = ACTIONS(1604), - [anon_sym_DOLLARforeach] = ACTIONS(1604), - [anon_sym_DOLLARendforeach] = ACTIONS(1604), - [anon_sym_DOLLARalignof] = ACTIONS(1604), - [anon_sym_DOLLARextnameof] = ACTIONS(1604), - [anon_sym_DOLLARnameof] = ACTIONS(1604), - [anon_sym_DOLLARoffsetof] = ACTIONS(1604), - [anon_sym_DOLLARqnameof] = ACTIONS(1604), - [anon_sym_DOLLARvaconst] = ACTIONS(1604), - [anon_sym_DOLLARvaarg] = ACTIONS(1604), - [anon_sym_DOLLARvaref] = ACTIONS(1604), - [anon_sym_DOLLARvaexpr] = ACTIONS(1604), - [anon_sym_true] = ACTIONS(1604), - [anon_sym_false] = ACTIONS(1604), - [anon_sym_null] = ACTIONS(1604), - [anon_sym_DOLLARvacount] = ACTIONS(1604), - [anon_sym_DOLLARappend] = ACTIONS(1604), - [anon_sym_DOLLARconcat] = ACTIONS(1604), - [anon_sym_DOLLAReval] = ACTIONS(1604), - [anon_sym_DOLLARis_const] = ACTIONS(1604), - [anon_sym_DOLLARsizeof] = ACTIONS(1604), - [anon_sym_DOLLARstringify] = ACTIONS(1604), - [anon_sym_DOLLARand] = ACTIONS(1604), - [anon_sym_DOLLARdefined] = ACTIONS(1604), - [anon_sym_DOLLARembed] = ACTIONS(1604), - [anon_sym_DOLLARor] = ACTIONS(1604), - [anon_sym_DOLLARfeature] = ACTIONS(1604), - [anon_sym_DOLLARassignable] = ACTIONS(1604), - [anon_sym_BANG] = ACTIONS(1606), - [anon_sym_TILDE] = ACTIONS(1606), - [anon_sym_PLUS_PLUS] = ACTIONS(1606), - [anon_sym_DASH_DASH] = ACTIONS(1606), - [anon_sym_typeid] = ACTIONS(1604), - [anon_sym_LBRACE_PIPE] = ACTIONS(1606), - [anon_sym_void] = ACTIONS(1604), - [anon_sym_bool] = ACTIONS(1604), - [anon_sym_char] = ACTIONS(1604), - [anon_sym_ichar] = ACTIONS(1604), - [anon_sym_short] = ACTIONS(1604), - [anon_sym_ushort] = ACTIONS(1604), - [anon_sym_uint] = ACTIONS(1604), - [anon_sym_long] = ACTIONS(1604), - [anon_sym_ulong] = ACTIONS(1604), - [anon_sym_int128] = ACTIONS(1604), - [anon_sym_uint128] = ACTIONS(1604), - [anon_sym_float] = ACTIONS(1604), - [anon_sym_double] = ACTIONS(1604), - [anon_sym_float16] = ACTIONS(1604), - [anon_sym_bfloat16] = ACTIONS(1604), - [anon_sym_float128] = ACTIONS(1604), - [anon_sym_iptr] = ACTIONS(1604), - [anon_sym_uptr] = ACTIONS(1604), - [anon_sym_isz] = ACTIONS(1604), - [anon_sym_usz] = ACTIONS(1604), - [anon_sym_anyfault] = ACTIONS(1604), - [anon_sym_any] = ACTIONS(1604), - [anon_sym_DOLLARtypeof] = ACTIONS(1604), - [anon_sym_DOLLARtypefrom] = ACTIONS(1604), - [anon_sym_DOLLARvatype] = ACTIONS(1604), - [anon_sym_DOLLARevaltype] = ACTIONS(1604), - [sym_real_literal] = ACTIONS(1606), + [sym_ident] = ACTIONS(1399), + [sym_integer_literal] = ACTIONS(1401), + [anon_sym_SQUOTE] = ACTIONS(1401), + [anon_sym_DQUOTE] = ACTIONS(1401), + [anon_sym_BQUOTE] = ACTIONS(1401), + [sym_bytes_literal] = ACTIONS(1401), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1399), + [sym_at_ident] = ACTIONS(1401), + [sym_hash_ident] = ACTIONS(1401), + [sym_type_ident] = ACTIONS(1401), + [sym_ct_type_ident] = ACTIONS(1401), + [sym_const_ident] = ACTIONS(1399), + [sym_builtin] = ACTIONS(1401), + [anon_sym_LPAREN] = ACTIONS(1401), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_static] = ACTIONS(1399), + [anon_sym_tlocal] = ACTIONS(1399), + [anon_sym_SEMI] = ACTIONS(1401), + [anon_sym_fn] = ACTIONS(1399), + [anon_sym_LBRACE] = ACTIONS(1399), + [anon_sym_const] = ACTIONS(1399), + [anon_sym_var] = ACTIONS(1399), + [anon_sym_return] = ACTIONS(1399), + [anon_sym_continue] = ACTIONS(1399), + [anon_sym_break] = ACTIONS(1399), + [anon_sym_defer] = ACTIONS(1399), + [anon_sym_assert] = ACTIONS(1399), + [anon_sym_nextcase] = ACTIONS(1399), + [anon_sym_switch] = ACTIONS(1399), + [anon_sym_AMP_AMP] = ACTIONS(1401), + [anon_sym_if] = ACTIONS(1399), + [anon_sym_for] = ACTIONS(1399), + [anon_sym_foreach] = ACTIONS(1399), + [anon_sym_foreach_r] = ACTIONS(1399), + [anon_sym_while] = ACTIONS(1399), + [anon_sym_do] = ACTIONS(1399), + [anon_sym_int] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1399), + [anon_sym_DASH] = ACTIONS(1399), + [anon_sym_STAR] = ACTIONS(1401), + [anon_sym_asm] = ACTIONS(1399), + [anon_sym_DOLLARassert] = ACTIONS(1399), + [anon_sym_DOLLARerror] = ACTIONS(1399), + [anon_sym_DOLLARecho] = ACTIONS(1399), + [anon_sym_DOLLARif] = ACTIONS(1399), + [anon_sym_DOLLARendif] = ACTIONS(1399), + [anon_sym_DOLLARswitch] = ACTIONS(1399), + [anon_sym_DOLLARfor] = ACTIONS(1399), + [anon_sym_DOLLARforeach] = ACTIONS(1399), + [anon_sym_DOLLARalignof] = ACTIONS(1399), + [anon_sym_DOLLARextnameof] = ACTIONS(1399), + [anon_sym_DOLLARnameof] = ACTIONS(1399), + [anon_sym_DOLLARoffsetof] = ACTIONS(1399), + [anon_sym_DOLLARqnameof] = ACTIONS(1399), + [anon_sym_DOLLARvaconst] = ACTIONS(1399), + [anon_sym_DOLLARvaarg] = ACTIONS(1399), + [anon_sym_DOLLARvaref] = ACTIONS(1399), + [anon_sym_DOLLARvaexpr] = ACTIONS(1399), + [anon_sym_true] = ACTIONS(1399), + [anon_sym_false] = ACTIONS(1399), + [anon_sym_null] = ACTIONS(1399), + [anon_sym_DOLLARvacount] = ACTIONS(1399), + [anon_sym_DOLLARappend] = ACTIONS(1399), + [anon_sym_DOLLARconcat] = ACTIONS(1399), + [anon_sym_DOLLAReval] = ACTIONS(1399), + [anon_sym_DOLLARis_const] = ACTIONS(1399), + [anon_sym_DOLLARsizeof] = ACTIONS(1399), + [anon_sym_DOLLARstringify] = ACTIONS(1399), + [anon_sym_DOLLARand] = ACTIONS(1399), + [anon_sym_DOLLARdefined] = ACTIONS(1399), + [anon_sym_DOLLARembed] = ACTIONS(1399), + [anon_sym_DOLLARor] = ACTIONS(1399), + [anon_sym_DOLLARfeature] = ACTIONS(1399), + [anon_sym_DOLLARassignable] = ACTIONS(1399), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_TILDE] = ACTIONS(1401), + [anon_sym_PLUS_PLUS] = ACTIONS(1401), + [anon_sym_DASH_DASH] = ACTIONS(1401), + [anon_sym_typeid] = ACTIONS(1399), + [anon_sym_LBRACE_PIPE] = ACTIONS(1401), + [anon_sym_void] = ACTIONS(1399), + [anon_sym_bool] = ACTIONS(1399), + [anon_sym_char] = ACTIONS(1399), + [anon_sym_ichar] = ACTIONS(1399), + [anon_sym_short] = ACTIONS(1399), + [anon_sym_ushort] = ACTIONS(1399), + [anon_sym_uint] = ACTIONS(1399), + [anon_sym_long] = ACTIONS(1399), + [anon_sym_ulong] = ACTIONS(1399), + [anon_sym_int128] = ACTIONS(1399), + [anon_sym_uint128] = ACTIONS(1399), + [anon_sym_float] = ACTIONS(1399), + [anon_sym_double] = ACTIONS(1399), + [anon_sym_float16] = ACTIONS(1399), + [anon_sym_bfloat16] = ACTIONS(1399), + [anon_sym_float128] = ACTIONS(1399), + [anon_sym_iptr] = ACTIONS(1399), + [anon_sym_uptr] = ACTIONS(1399), + [anon_sym_isz] = ACTIONS(1399), + [anon_sym_usz] = ACTIONS(1399), + [anon_sym_anyfault] = ACTIONS(1399), + [anon_sym_any] = ACTIONS(1399), + [anon_sym_DOLLARtypeof] = ACTIONS(1399), + [anon_sym_DOLLARtypefrom] = ACTIONS(1399), + [anon_sym_DOLLARvatype] = ACTIONS(1399), + [anon_sym_DOLLARevaltype] = ACTIONS(1399), + [sym_real_literal] = ACTIONS(1401), }, [799] = { [sym_line_comment] = STATE(799), [sym_doc_comment] = STATE(799), [sym_block_comment] = STATE(799), - [sym_ident] = ACTIONS(1472), - [sym_integer_literal] = ACTIONS(1474), - [anon_sym_SQUOTE] = ACTIONS(1474), - [anon_sym_DQUOTE] = ACTIONS(1474), - [anon_sym_BQUOTE] = ACTIONS(1474), - [sym_bytes_literal] = ACTIONS(1474), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1472), - [sym_at_ident] = ACTIONS(1474), - [sym_hash_ident] = ACTIONS(1474), - [sym_type_ident] = ACTIONS(1474), - [sym_ct_type_ident] = ACTIONS(1474), - [sym_const_ident] = ACTIONS(1472), - [sym_builtin] = ACTIONS(1474), - [anon_sym_LPAREN] = ACTIONS(1474), - [anon_sym_AMP] = ACTIONS(1472), - [anon_sym_static] = ACTIONS(1472), - [anon_sym_tlocal] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1474), - [anon_sym_fn] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1472), - [anon_sym_const] = ACTIONS(1472), - [anon_sym_var] = ACTIONS(1472), - [anon_sym_return] = ACTIONS(1472), - [anon_sym_continue] = ACTIONS(1472), - [anon_sym_break] = ACTIONS(1472), - [anon_sym_defer] = ACTIONS(1472), - [anon_sym_assert] = ACTIONS(1472), - [anon_sym_nextcase] = ACTIONS(1472), - [anon_sym_switch] = ACTIONS(1472), - [anon_sym_AMP_AMP] = ACTIONS(1474), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_for] = ACTIONS(1472), - [anon_sym_foreach] = ACTIONS(1472), - [anon_sym_foreach_r] = ACTIONS(1472), - [anon_sym_while] = ACTIONS(1472), - [anon_sym_do] = ACTIONS(1472), - [anon_sym_int] = ACTIONS(1472), - [anon_sym_PLUS] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1472), - [anon_sym_STAR] = ACTIONS(1474), - [anon_sym_asm] = ACTIONS(1472), - [anon_sym_DOLLARassert] = ACTIONS(1472), - [anon_sym_DOLLARerror] = ACTIONS(1472), - [anon_sym_DOLLARecho] = ACTIONS(1472), - [anon_sym_DOLLARif] = ACTIONS(1472), - [anon_sym_DOLLARswitch] = ACTIONS(1472), - [anon_sym_DOLLARfor] = ACTIONS(1472), - [anon_sym_DOLLARendfor] = ACTIONS(1472), - [anon_sym_DOLLARforeach] = ACTIONS(1472), - [anon_sym_DOLLARalignof] = ACTIONS(1472), - [anon_sym_DOLLARextnameof] = ACTIONS(1472), - [anon_sym_DOLLARnameof] = ACTIONS(1472), - [anon_sym_DOLLARoffsetof] = ACTIONS(1472), - [anon_sym_DOLLARqnameof] = ACTIONS(1472), - [anon_sym_DOLLARvaconst] = ACTIONS(1472), - [anon_sym_DOLLARvaarg] = ACTIONS(1472), - [anon_sym_DOLLARvaref] = ACTIONS(1472), - [anon_sym_DOLLARvaexpr] = ACTIONS(1472), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_null] = ACTIONS(1472), - [anon_sym_DOLLARvacount] = ACTIONS(1472), - [anon_sym_DOLLARappend] = ACTIONS(1472), - [anon_sym_DOLLARconcat] = ACTIONS(1472), - [anon_sym_DOLLAReval] = ACTIONS(1472), - [anon_sym_DOLLARis_const] = ACTIONS(1472), - [anon_sym_DOLLARsizeof] = ACTIONS(1472), - [anon_sym_DOLLARstringify] = ACTIONS(1472), - [anon_sym_DOLLARand] = ACTIONS(1472), - [anon_sym_DOLLARdefined] = ACTIONS(1472), - [anon_sym_DOLLARembed] = ACTIONS(1472), - [anon_sym_DOLLARor] = ACTIONS(1472), - [anon_sym_DOLLARfeature] = ACTIONS(1472), - [anon_sym_DOLLARassignable] = ACTIONS(1472), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_TILDE] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1474), - [anon_sym_DASH_DASH] = ACTIONS(1474), - [anon_sym_typeid] = ACTIONS(1472), - [anon_sym_LBRACE_PIPE] = ACTIONS(1474), - [anon_sym_void] = ACTIONS(1472), - [anon_sym_bool] = ACTIONS(1472), - [anon_sym_char] = ACTIONS(1472), - [anon_sym_ichar] = ACTIONS(1472), - [anon_sym_short] = ACTIONS(1472), - [anon_sym_ushort] = ACTIONS(1472), - [anon_sym_uint] = ACTIONS(1472), - [anon_sym_long] = ACTIONS(1472), - [anon_sym_ulong] = ACTIONS(1472), - [anon_sym_int128] = ACTIONS(1472), - [anon_sym_uint128] = ACTIONS(1472), - [anon_sym_float] = ACTIONS(1472), - [anon_sym_double] = ACTIONS(1472), - [anon_sym_float16] = ACTIONS(1472), - [anon_sym_bfloat16] = ACTIONS(1472), - [anon_sym_float128] = ACTIONS(1472), - [anon_sym_iptr] = ACTIONS(1472), - [anon_sym_uptr] = ACTIONS(1472), - [anon_sym_isz] = ACTIONS(1472), - [anon_sym_usz] = ACTIONS(1472), - [anon_sym_anyfault] = ACTIONS(1472), - [anon_sym_any] = ACTIONS(1472), - [anon_sym_DOLLARtypeof] = ACTIONS(1472), - [anon_sym_DOLLARtypefrom] = ACTIONS(1472), - [anon_sym_DOLLARvatype] = ACTIONS(1472), - [anon_sym_DOLLARevaltype] = ACTIONS(1472), - [sym_real_literal] = ACTIONS(1474), + [sym_ident] = ACTIONS(1691), + [sym_integer_literal] = ACTIONS(1693), + [anon_sym_SQUOTE] = ACTIONS(1693), + [anon_sym_DQUOTE] = ACTIONS(1693), + [anon_sym_BQUOTE] = ACTIONS(1693), + [sym_bytes_literal] = ACTIONS(1693), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1691), + [sym_at_ident] = ACTIONS(1693), + [sym_hash_ident] = ACTIONS(1693), + [sym_type_ident] = ACTIONS(1693), + [sym_ct_type_ident] = ACTIONS(1693), + [sym_const_ident] = ACTIONS(1691), + [sym_builtin] = ACTIONS(1693), + [anon_sym_LPAREN] = ACTIONS(1693), + [anon_sym_AMP] = ACTIONS(1691), + [anon_sym_static] = ACTIONS(1691), + [anon_sym_tlocal] = ACTIONS(1691), + [anon_sym_SEMI] = ACTIONS(1693), + [anon_sym_fn] = ACTIONS(1691), + [anon_sym_LBRACE] = ACTIONS(1691), + [anon_sym_const] = ACTIONS(1691), + [anon_sym_var] = ACTIONS(1691), + [anon_sym_return] = ACTIONS(1691), + [anon_sym_continue] = ACTIONS(1691), + [anon_sym_break] = ACTIONS(1691), + [anon_sym_defer] = ACTIONS(1691), + [anon_sym_assert] = ACTIONS(1691), + [anon_sym_nextcase] = ACTIONS(1691), + [anon_sym_switch] = ACTIONS(1691), + [anon_sym_AMP_AMP] = ACTIONS(1693), + [anon_sym_if] = ACTIONS(1691), + [anon_sym_for] = ACTIONS(1691), + [anon_sym_foreach] = ACTIONS(1691), + [anon_sym_foreach_r] = ACTIONS(1691), + [anon_sym_while] = ACTIONS(1691), + [anon_sym_do] = ACTIONS(1691), + [anon_sym_int] = ACTIONS(1691), + [anon_sym_PLUS] = ACTIONS(1691), + [anon_sym_DASH] = ACTIONS(1691), + [anon_sym_STAR] = ACTIONS(1693), + [anon_sym_asm] = ACTIONS(1691), + [anon_sym_DOLLARassert] = ACTIONS(1691), + [anon_sym_DOLLARerror] = ACTIONS(1691), + [anon_sym_DOLLARecho] = ACTIONS(1691), + [anon_sym_DOLLARif] = ACTIONS(1691), + [anon_sym_DOLLARswitch] = ACTIONS(1691), + [anon_sym_DOLLARfor] = ACTIONS(1691), + [anon_sym_DOLLARforeach] = ACTIONS(1691), + [anon_sym_DOLLARalignof] = ACTIONS(1691), + [anon_sym_DOLLARextnameof] = ACTIONS(1691), + [anon_sym_DOLLARnameof] = ACTIONS(1691), + [anon_sym_DOLLARoffsetof] = ACTIONS(1691), + [anon_sym_DOLLARqnameof] = ACTIONS(1691), + [anon_sym_DOLLARvaconst] = ACTIONS(1691), + [anon_sym_DOLLARvaarg] = ACTIONS(1691), + [anon_sym_DOLLARvaref] = ACTIONS(1691), + [anon_sym_DOLLARvaexpr] = ACTIONS(1691), + [anon_sym_true] = ACTIONS(1691), + [anon_sym_false] = ACTIONS(1691), + [anon_sym_null] = ACTIONS(1691), + [anon_sym_DOLLARvacount] = ACTIONS(1691), + [anon_sym_DOLLARappend] = ACTIONS(1691), + [anon_sym_DOLLARconcat] = ACTIONS(1691), + [anon_sym_DOLLAReval] = ACTIONS(1691), + [anon_sym_DOLLARis_const] = ACTIONS(1691), + [anon_sym_DOLLARsizeof] = ACTIONS(1691), + [anon_sym_DOLLARstringify] = ACTIONS(1691), + [anon_sym_DOLLARand] = ACTIONS(1691), + [anon_sym_DOLLARdefined] = ACTIONS(1691), + [anon_sym_DOLLARembed] = ACTIONS(1691), + [anon_sym_DOLLARor] = ACTIONS(1691), + [anon_sym_DOLLARfeature] = ACTIONS(1691), + [anon_sym_DOLLARassignable] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(1693), + [anon_sym_TILDE] = ACTIONS(1693), + [anon_sym_PLUS_PLUS] = ACTIONS(1693), + [anon_sym_DASH_DASH] = ACTIONS(1693), + [anon_sym_typeid] = ACTIONS(1691), + [anon_sym_LBRACE_PIPE] = ACTIONS(1693), + [anon_sym_void] = ACTIONS(1691), + [anon_sym_bool] = ACTIONS(1691), + [anon_sym_char] = ACTIONS(1691), + [anon_sym_ichar] = ACTIONS(1691), + [anon_sym_short] = ACTIONS(1691), + [anon_sym_ushort] = ACTIONS(1691), + [anon_sym_uint] = ACTIONS(1691), + [anon_sym_long] = ACTIONS(1691), + [anon_sym_ulong] = ACTIONS(1691), + [anon_sym_int128] = ACTIONS(1691), + [anon_sym_uint128] = ACTIONS(1691), + [anon_sym_float] = ACTIONS(1691), + [anon_sym_double] = ACTIONS(1691), + [anon_sym_float16] = ACTIONS(1691), + [anon_sym_bfloat16] = ACTIONS(1691), + [anon_sym_float128] = ACTIONS(1691), + [anon_sym_iptr] = ACTIONS(1691), + [anon_sym_uptr] = ACTIONS(1691), + [anon_sym_isz] = ACTIONS(1691), + [anon_sym_usz] = ACTIONS(1691), + [anon_sym_anyfault] = ACTIONS(1691), + [anon_sym_any] = ACTIONS(1691), + [anon_sym_DOLLARtypeof] = ACTIONS(1691), + [anon_sym_DOLLARtypefrom] = ACTIONS(1691), + [anon_sym_DOLLARvatype] = ACTIONS(1691), + [anon_sym_DOLLARevaltype] = ACTIONS(1691), + [sym_real_literal] = ACTIONS(1693), }, [800] = { [sym_line_comment] = STATE(800), [sym_doc_comment] = STATE(800), [sym_block_comment] = STATE(800), - [sym_ident] = ACTIONS(1480), - [sym_integer_literal] = ACTIONS(1482), - [anon_sym_SQUOTE] = ACTIONS(1482), - [anon_sym_DQUOTE] = ACTIONS(1482), - [anon_sym_BQUOTE] = ACTIONS(1482), - [sym_bytes_literal] = ACTIONS(1482), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1480), - [sym_at_ident] = ACTIONS(1482), - [sym_hash_ident] = ACTIONS(1482), - [sym_type_ident] = ACTIONS(1482), - [sym_ct_type_ident] = ACTIONS(1482), - [sym_const_ident] = ACTIONS(1480), - [sym_builtin] = ACTIONS(1482), - [anon_sym_LPAREN] = ACTIONS(1482), - [anon_sym_AMP] = ACTIONS(1480), - [anon_sym_static] = ACTIONS(1480), - [anon_sym_tlocal] = ACTIONS(1480), - [anon_sym_SEMI] = ACTIONS(1482), - [anon_sym_fn] = ACTIONS(1480), - [anon_sym_LBRACE] = ACTIONS(1480), - [anon_sym_const] = ACTIONS(1480), - [anon_sym_var] = ACTIONS(1480), - [anon_sym_return] = ACTIONS(1480), - [anon_sym_continue] = ACTIONS(1480), - [anon_sym_break] = ACTIONS(1480), - [anon_sym_defer] = ACTIONS(1480), - [anon_sym_assert] = ACTIONS(1480), - [anon_sym_nextcase] = ACTIONS(1480), - [anon_sym_switch] = ACTIONS(1480), - [anon_sym_AMP_AMP] = ACTIONS(1482), - [anon_sym_if] = ACTIONS(1480), - [anon_sym_for] = ACTIONS(1480), - [anon_sym_foreach] = ACTIONS(1480), - [anon_sym_foreach_r] = ACTIONS(1480), - [anon_sym_while] = ACTIONS(1480), - [anon_sym_do] = ACTIONS(1480), - [anon_sym_int] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1480), - [anon_sym_DASH] = ACTIONS(1480), - [anon_sym_STAR] = ACTIONS(1482), - [anon_sym_asm] = ACTIONS(1480), - [anon_sym_DOLLARassert] = ACTIONS(1480), - [anon_sym_DOLLARerror] = ACTIONS(1480), - [anon_sym_DOLLARecho] = ACTIONS(1480), - [anon_sym_DOLLARif] = ACTIONS(1480), - [anon_sym_DOLLARendif] = ACTIONS(1480), - [anon_sym_DOLLARswitch] = ACTIONS(1480), - [anon_sym_DOLLARfor] = ACTIONS(1480), - [anon_sym_DOLLARforeach] = ACTIONS(1480), - [anon_sym_DOLLARalignof] = ACTIONS(1480), - [anon_sym_DOLLARextnameof] = ACTIONS(1480), - [anon_sym_DOLLARnameof] = ACTIONS(1480), - [anon_sym_DOLLARoffsetof] = ACTIONS(1480), - [anon_sym_DOLLARqnameof] = ACTIONS(1480), - [anon_sym_DOLLARvaconst] = ACTIONS(1480), - [anon_sym_DOLLARvaarg] = ACTIONS(1480), - [anon_sym_DOLLARvaref] = ACTIONS(1480), - [anon_sym_DOLLARvaexpr] = ACTIONS(1480), - [anon_sym_true] = ACTIONS(1480), - [anon_sym_false] = ACTIONS(1480), - [anon_sym_null] = ACTIONS(1480), - [anon_sym_DOLLARvacount] = ACTIONS(1480), - [anon_sym_DOLLARappend] = ACTIONS(1480), - [anon_sym_DOLLARconcat] = ACTIONS(1480), - [anon_sym_DOLLAReval] = ACTIONS(1480), - [anon_sym_DOLLARis_const] = ACTIONS(1480), - [anon_sym_DOLLARsizeof] = ACTIONS(1480), - [anon_sym_DOLLARstringify] = ACTIONS(1480), - [anon_sym_DOLLARand] = ACTIONS(1480), - [anon_sym_DOLLARdefined] = ACTIONS(1480), - [anon_sym_DOLLARembed] = ACTIONS(1480), - [anon_sym_DOLLARor] = ACTIONS(1480), - [anon_sym_DOLLARfeature] = ACTIONS(1480), - [anon_sym_DOLLARassignable] = ACTIONS(1480), - [anon_sym_BANG] = ACTIONS(1482), - [anon_sym_TILDE] = ACTIONS(1482), - [anon_sym_PLUS_PLUS] = ACTIONS(1482), - [anon_sym_DASH_DASH] = ACTIONS(1482), - [anon_sym_typeid] = ACTIONS(1480), - [anon_sym_LBRACE_PIPE] = ACTIONS(1482), - [anon_sym_void] = ACTIONS(1480), - [anon_sym_bool] = ACTIONS(1480), - [anon_sym_char] = ACTIONS(1480), - [anon_sym_ichar] = ACTIONS(1480), - [anon_sym_short] = ACTIONS(1480), - [anon_sym_ushort] = ACTIONS(1480), - [anon_sym_uint] = ACTIONS(1480), - [anon_sym_long] = ACTIONS(1480), - [anon_sym_ulong] = ACTIONS(1480), - [anon_sym_int128] = ACTIONS(1480), - [anon_sym_uint128] = ACTIONS(1480), - [anon_sym_float] = ACTIONS(1480), - [anon_sym_double] = ACTIONS(1480), - [anon_sym_float16] = ACTIONS(1480), - [anon_sym_bfloat16] = ACTIONS(1480), - [anon_sym_float128] = ACTIONS(1480), - [anon_sym_iptr] = ACTIONS(1480), - [anon_sym_uptr] = ACTIONS(1480), - [anon_sym_isz] = ACTIONS(1480), - [anon_sym_usz] = ACTIONS(1480), - [anon_sym_anyfault] = ACTIONS(1480), - [anon_sym_any] = ACTIONS(1480), - [anon_sym_DOLLARtypeof] = ACTIONS(1480), - [anon_sym_DOLLARtypefrom] = ACTIONS(1480), - [anon_sym_DOLLARvatype] = ACTIONS(1480), - [anon_sym_DOLLARevaltype] = ACTIONS(1480), - [sym_real_literal] = ACTIONS(1482), + [sym_ident] = ACTIONS(1675), + [sym_integer_literal] = ACTIONS(1677), + [anon_sym_SQUOTE] = ACTIONS(1677), + [anon_sym_DQUOTE] = ACTIONS(1677), + [anon_sym_BQUOTE] = ACTIONS(1677), + [sym_bytes_literal] = ACTIONS(1677), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1675), + [sym_at_ident] = ACTIONS(1677), + [sym_hash_ident] = ACTIONS(1677), + [sym_type_ident] = ACTIONS(1677), + [sym_ct_type_ident] = ACTIONS(1677), + [sym_const_ident] = ACTIONS(1675), + [sym_builtin] = ACTIONS(1677), + [anon_sym_LPAREN] = ACTIONS(1677), + [anon_sym_AMP] = ACTIONS(1675), + [anon_sym_static] = ACTIONS(1675), + [anon_sym_tlocal] = ACTIONS(1675), + [anon_sym_SEMI] = ACTIONS(1677), + [anon_sym_fn] = ACTIONS(1675), + [anon_sym_LBRACE] = ACTIONS(1675), + [anon_sym_const] = ACTIONS(1675), + [anon_sym_var] = ACTIONS(1675), + [anon_sym_return] = ACTIONS(1675), + [anon_sym_continue] = ACTIONS(1675), + [anon_sym_break] = ACTIONS(1675), + [anon_sym_defer] = ACTIONS(1675), + [anon_sym_assert] = ACTIONS(1675), + [anon_sym_nextcase] = ACTIONS(1675), + [anon_sym_switch] = ACTIONS(1675), + [anon_sym_AMP_AMP] = ACTIONS(1677), + [anon_sym_if] = ACTIONS(1675), + [anon_sym_for] = ACTIONS(1675), + [anon_sym_foreach] = ACTIONS(1675), + [anon_sym_foreach_r] = ACTIONS(1675), + [anon_sym_while] = ACTIONS(1675), + [anon_sym_do] = ACTIONS(1675), + [anon_sym_int] = ACTIONS(1675), + [anon_sym_PLUS] = ACTIONS(1675), + [anon_sym_DASH] = ACTIONS(1675), + [anon_sym_STAR] = ACTIONS(1677), + [anon_sym_asm] = ACTIONS(1675), + [anon_sym_DOLLARassert] = ACTIONS(1675), + [anon_sym_DOLLARerror] = ACTIONS(1675), + [anon_sym_DOLLARecho] = ACTIONS(1675), + [anon_sym_DOLLARif] = ACTIONS(1675), + [anon_sym_DOLLARswitch] = ACTIONS(1675), + [anon_sym_DOLLARfor] = ACTIONS(1675), + [anon_sym_DOLLARforeach] = ACTIONS(1675), + [anon_sym_DOLLARalignof] = ACTIONS(1675), + [anon_sym_DOLLARextnameof] = ACTIONS(1675), + [anon_sym_DOLLARnameof] = ACTIONS(1675), + [anon_sym_DOLLARoffsetof] = ACTIONS(1675), + [anon_sym_DOLLARqnameof] = ACTIONS(1675), + [anon_sym_DOLLARvaconst] = ACTIONS(1675), + [anon_sym_DOLLARvaarg] = ACTIONS(1675), + [anon_sym_DOLLARvaref] = ACTIONS(1675), + [anon_sym_DOLLARvaexpr] = ACTIONS(1675), + [anon_sym_true] = ACTIONS(1675), + [anon_sym_false] = ACTIONS(1675), + [anon_sym_null] = ACTIONS(1675), + [anon_sym_DOLLARvacount] = ACTIONS(1675), + [anon_sym_DOLLARappend] = ACTIONS(1675), + [anon_sym_DOLLARconcat] = ACTIONS(1675), + [anon_sym_DOLLAReval] = ACTIONS(1675), + [anon_sym_DOLLARis_const] = ACTIONS(1675), + [anon_sym_DOLLARsizeof] = ACTIONS(1675), + [anon_sym_DOLLARstringify] = ACTIONS(1675), + [anon_sym_DOLLARand] = ACTIONS(1675), + [anon_sym_DOLLARdefined] = ACTIONS(1675), + [anon_sym_DOLLARembed] = ACTIONS(1675), + [anon_sym_DOLLARor] = ACTIONS(1675), + [anon_sym_DOLLARfeature] = ACTIONS(1675), + [anon_sym_DOLLARassignable] = ACTIONS(1675), + [anon_sym_BANG] = ACTIONS(1677), + [anon_sym_TILDE] = ACTIONS(1677), + [anon_sym_PLUS_PLUS] = ACTIONS(1677), + [anon_sym_DASH_DASH] = ACTIONS(1677), + [anon_sym_typeid] = ACTIONS(1675), + [anon_sym_LBRACE_PIPE] = ACTIONS(1677), + [anon_sym_void] = ACTIONS(1675), + [anon_sym_bool] = ACTIONS(1675), + [anon_sym_char] = ACTIONS(1675), + [anon_sym_ichar] = ACTIONS(1675), + [anon_sym_short] = ACTIONS(1675), + [anon_sym_ushort] = ACTIONS(1675), + [anon_sym_uint] = ACTIONS(1675), + [anon_sym_long] = ACTIONS(1675), + [anon_sym_ulong] = ACTIONS(1675), + [anon_sym_int128] = ACTIONS(1675), + [anon_sym_uint128] = ACTIONS(1675), + [anon_sym_float] = ACTIONS(1675), + [anon_sym_double] = ACTIONS(1675), + [anon_sym_float16] = ACTIONS(1675), + [anon_sym_bfloat16] = ACTIONS(1675), + [anon_sym_float128] = ACTIONS(1675), + [anon_sym_iptr] = ACTIONS(1675), + [anon_sym_uptr] = ACTIONS(1675), + [anon_sym_isz] = ACTIONS(1675), + [anon_sym_usz] = ACTIONS(1675), + [anon_sym_anyfault] = ACTIONS(1675), + [anon_sym_any] = ACTIONS(1675), + [anon_sym_DOLLARtypeof] = ACTIONS(1675), + [anon_sym_DOLLARtypefrom] = ACTIONS(1675), + [anon_sym_DOLLARvatype] = ACTIONS(1675), + [anon_sym_DOLLARevaltype] = ACTIONS(1675), + [sym_real_literal] = ACTIONS(1677), }, [801] = { [sym_line_comment] = STATE(801), [sym_doc_comment] = STATE(801), [sym_block_comment] = STATE(801), - [sym_ident] = ACTIONS(1460), - [sym_integer_literal] = ACTIONS(1462), - [anon_sym_SQUOTE] = ACTIONS(1462), - [anon_sym_DQUOTE] = ACTIONS(1462), - [anon_sym_BQUOTE] = ACTIONS(1462), - [sym_bytes_literal] = ACTIONS(1462), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1460), - [sym_at_ident] = ACTIONS(1462), - [sym_hash_ident] = ACTIONS(1462), - [sym_type_ident] = ACTIONS(1462), - [sym_ct_type_ident] = ACTIONS(1462), - [sym_const_ident] = ACTIONS(1460), - [sym_builtin] = ACTIONS(1462), - [anon_sym_LPAREN] = ACTIONS(1462), - [anon_sym_AMP] = ACTIONS(1460), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_tlocal] = ACTIONS(1460), - [anon_sym_SEMI] = ACTIONS(1462), - [anon_sym_fn] = ACTIONS(1460), - [anon_sym_LBRACE] = ACTIONS(1460), - [anon_sym_const] = ACTIONS(1460), - [anon_sym_var] = ACTIONS(1460), - [anon_sym_return] = ACTIONS(1460), - [anon_sym_continue] = ACTIONS(1460), - [anon_sym_break] = ACTIONS(1460), - [anon_sym_defer] = ACTIONS(1460), - [anon_sym_assert] = ACTIONS(1460), - [anon_sym_nextcase] = ACTIONS(1460), - [anon_sym_switch] = ACTIONS(1460), - [anon_sym_AMP_AMP] = ACTIONS(1462), - [anon_sym_if] = ACTIONS(1460), - [anon_sym_for] = ACTIONS(1460), - [anon_sym_foreach] = ACTIONS(1460), - [anon_sym_foreach_r] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1460), - [anon_sym_do] = ACTIONS(1460), - [anon_sym_int] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1460), - [anon_sym_DASH] = ACTIONS(1460), - [anon_sym_STAR] = ACTIONS(1462), - [anon_sym_asm] = ACTIONS(1460), - [anon_sym_DOLLARassert] = ACTIONS(1460), - [anon_sym_DOLLARerror] = ACTIONS(1460), - [anon_sym_DOLLARecho] = ACTIONS(1460), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_DOLLARswitch] = ACTIONS(1460), - [anon_sym_DOLLARfor] = ACTIONS(1460), - [anon_sym_DOLLARendfor] = ACTIONS(1460), - [anon_sym_DOLLARforeach] = ACTIONS(1460), - [anon_sym_DOLLARalignof] = ACTIONS(1460), - [anon_sym_DOLLARextnameof] = ACTIONS(1460), - [anon_sym_DOLLARnameof] = ACTIONS(1460), - [anon_sym_DOLLARoffsetof] = ACTIONS(1460), - [anon_sym_DOLLARqnameof] = ACTIONS(1460), - [anon_sym_DOLLARvaconst] = ACTIONS(1460), - [anon_sym_DOLLARvaarg] = ACTIONS(1460), - [anon_sym_DOLLARvaref] = ACTIONS(1460), - [anon_sym_DOLLARvaexpr] = ACTIONS(1460), - [anon_sym_true] = ACTIONS(1460), - [anon_sym_false] = ACTIONS(1460), - [anon_sym_null] = ACTIONS(1460), - [anon_sym_DOLLARvacount] = ACTIONS(1460), - [anon_sym_DOLLARappend] = ACTIONS(1460), - [anon_sym_DOLLARconcat] = ACTIONS(1460), - [anon_sym_DOLLAReval] = ACTIONS(1460), - [anon_sym_DOLLARis_const] = ACTIONS(1460), - [anon_sym_DOLLARsizeof] = ACTIONS(1460), - [anon_sym_DOLLARstringify] = ACTIONS(1460), - [anon_sym_DOLLARand] = ACTIONS(1460), - [anon_sym_DOLLARdefined] = ACTIONS(1460), - [anon_sym_DOLLARembed] = ACTIONS(1460), - [anon_sym_DOLLARor] = ACTIONS(1460), - [anon_sym_DOLLARfeature] = ACTIONS(1460), - [anon_sym_DOLLARassignable] = ACTIONS(1460), - [anon_sym_BANG] = ACTIONS(1462), - [anon_sym_TILDE] = ACTIONS(1462), - [anon_sym_PLUS_PLUS] = ACTIONS(1462), - [anon_sym_DASH_DASH] = ACTIONS(1462), - [anon_sym_typeid] = ACTIONS(1460), - [anon_sym_LBRACE_PIPE] = ACTIONS(1462), - [anon_sym_void] = ACTIONS(1460), - [anon_sym_bool] = ACTIONS(1460), - [anon_sym_char] = ACTIONS(1460), - [anon_sym_ichar] = ACTIONS(1460), - [anon_sym_short] = ACTIONS(1460), - [anon_sym_ushort] = ACTIONS(1460), - [anon_sym_uint] = ACTIONS(1460), - [anon_sym_long] = ACTIONS(1460), - [anon_sym_ulong] = ACTIONS(1460), - [anon_sym_int128] = ACTIONS(1460), - [anon_sym_uint128] = ACTIONS(1460), - [anon_sym_float] = ACTIONS(1460), - [anon_sym_double] = ACTIONS(1460), - [anon_sym_float16] = ACTIONS(1460), - [anon_sym_bfloat16] = ACTIONS(1460), - [anon_sym_float128] = ACTIONS(1460), - [anon_sym_iptr] = ACTIONS(1460), - [anon_sym_uptr] = ACTIONS(1460), - [anon_sym_isz] = ACTIONS(1460), - [anon_sym_usz] = ACTIONS(1460), - [anon_sym_anyfault] = ACTIONS(1460), - [anon_sym_any] = ACTIONS(1460), - [anon_sym_DOLLARtypeof] = ACTIONS(1460), - [anon_sym_DOLLARtypefrom] = ACTIONS(1460), - [anon_sym_DOLLARvatype] = ACTIONS(1460), - [anon_sym_DOLLARevaltype] = ACTIONS(1460), - [sym_real_literal] = ACTIONS(1462), + [sym_ident] = ACTIONS(1695), + [sym_integer_literal] = ACTIONS(1697), + [anon_sym_SQUOTE] = ACTIONS(1697), + [anon_sym_DQUOTE] = ACTIONS(1697), + [anon_sym_BQUOTE] = ACTIONS(1697), + [sym_bytes_literal] = ACTIONS(1697), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1695), + [sym_at_ident] = ACTIONS(1697), + [sym_hash_ident] = ACTIONS(1697), + [sym_type_ident] = ACTIONS(1697), + [sym_ct_type_ident] = ACTIONS(1697), + [sym_const_ident] = ACTIONS(1695), + [sym_builtin] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1697), + [anon_sym_AMP] = ACTIONS(1695), + [anon_sym_static] = ACTIONS(1695), + [anon_sym_tlocal] = ACTIONS(1695), + [anon_sym_SEMI] = ACTIONS(1697), + [anon_sym_fn] = ACTIONS(1695), + [anon_sym_LBRACE] = ACTIONS(1695), + [anon_sym_const] = ACTIONS(1695), + [anon_sym_var] = ACTIONS(1695), + [anon_sym_return] = ACTIONS(1695), + [anon_sym_continue] = ACTIONS(1695), + [anon_sym_break] = ACTIONS(1695), + [anon_sym_defer] = ACTIONS(1695), + [anon_sym_assert] = ACTIONS(1695), + [anon_sym_nextcase] = ACTIONS(1695), + [anon_sym_switch] = ACTIONS(1695), + [anon_sym_AMP_AMP] = ACTIONS(1697), + [anon_sym_if] = ACTIONS(1695), + [anon_sym_for] = ACTIONS(1695), + [anon_sym_foreach] = ACTIONS(1695), + [anon_sym_foreach_r] = ACTIONS(1695), + [anon_sym_while] = ACTIONS(1695), + [anon_sym_do] = ACTIONS(1695), + [anon_sym_int] = ACTIONS(1695), + [anon_sym_PLUS] = ACTIONS(1695), + [anon_sym_DASH] = ACTIONS(1695), + [anon_sym_STAR] = ACTIONS(1697), + [anon_sym_asm] = ACTIONS(1695), + [anon_sym_DOLLARassert] = ACTIONS(1695), + [anon_sym_DOLLARerror] = ACTIONS(1695), + [anon_sym_DOLLARecho] = ACTIONS(1695), + [anon_sym_DOLLARif] = ACTIONS(1695), + [anon_sym_DOLLARswitch] = ACTIONS(1695), + [anon_sym_DOLLARfor] = ACTIONS(1695), + [anon_sym_DOLLARforeach] = ACTIONS(1695), + [anon_sym_DOLLARalignof] = ACTIONS(1695), + [anon_sym_DOLLARextnameof] = ACTIONS(1695), + [anon_sym_DOLLARnameof] = ACTIONS(1695), + [anon_sym_DOLLARoffsetof] = ACTIONS(1695), + [anon_sym_DOLLARqnameof] = ACTIONS(1695), + [anon_sym_DOLLARvaconst] = ACTIONS(1695), + [anon_sym_DOLLARvaarg] = ACTIONS(1695), + [anon_sym_DOLLARvaref] = ACTIONS(1695), + [anon_sym_DOLLARvaexpr] = ACTIONS(1695), + [anon_sym_true] = ACTIONS(1695), + [anon_sym_false] = ACTIONS(1695), + [anon_sym_null] = ACTIONS(1695), + [anon_sym_DOLLARvacount] = ACTIONS(1695), + [anon_sym_DOLLARappend] = ACTIONS(1695), + [anon_sym_DOLLARconcat] = ACTIONS(1695), + [anon_sym_DOLLAReval] = ACTIONS(1695), + [anon_sym_DOLLARis_const] = ACTIONS(1695), + [anon_sym_DOLLARsizeof] = ACTIONS(1695), + [anon_sym_DOLLARstringify] = ACTIONS(1695), + [anon_sym_DOLLARand] = ACTIONS(1695), + [anon_sym_DOLLARdefined] = ACTIONS(1695), + [anon_sym_DOLLARembed] = ACTIONS(1695), + [anon_sym_DOLLARor] = ACTIONS(1695), + [anon_sym_DOLLARfeature] = ACTIONS(1695), + [anon_sym_DOLLARassignable] = ACTIONS(1695), + [anon_sym_BANG] = ACTIONS(1697), + [anon_sym_TILDE] = ACTIONS(1697), + [anon_sym_PLUS_PLUS] = ACTIONS(1697), + [anon_sym_DASH_DASH] = ACTIONS(1697), + [anon_sym_typeid] = ACTIONS(1695), + [anon_sym_LBRACE_PIPE] = ACTIONS(1697), + [anon_sym_void] = ACTIONS(1695), + [anon_sym_bool] = ACTIONS(1695), + [anon_sym_char] = ACTIONS(1695), + [anon_sym_ichar] = ACTIONS(1695), + [anon_sym_short] = ACTIONS(1695), + [anon_sym_ushort] = ACTIONS(1695), + [anon_sym_uint] = ACTIONS(1695), + [anon_sym_long] = ACTIONS(1695), + [anon_sym_ulong] = ACTIONS(1695), + [anon_sym_int128] = ACTIONS(1695), + [anon_sym_uint128] = ACTIONS(1695), + [anon_sym_float] = ACTIONS(1695), + [anon_sym_double] = ACTIONS(1695), + [anon_sym_float16] = ACTIONS(1695), + [anon_sym_bfloat16] = ACTIONS(1695), + [anon_sym_float128] = ACTIONS(1695), + [anon_sym_iptr] = ACTIONS(1695), + [anon_sym_uptr] = ACTIONS(1695), + [anon_sym_isz] = ACTIONS(1695), + [anon_sym_usz] = ACTIONS(1695), + [anon_sym_anyfault] = ACTIONS(1695), + [anon_sym_any] = ACTIONS(1695), + [anon_sym_DOLLARtypeof] = ACTIONS(1695), + [anon_sym_DOLLARtypefrom] = ACTIONS(1695), + [anon_sym_DOLLARvatype] = ACTIONS(1695), + [anon_sym_DOLLARevaltype] = ACTIONS(1695), + [sym_real_literal] = ACTIONS(1697), }, [802] = { [sym_line_comment] = STATE(802), [sym_doc_comment] = STATE(802), [sym_block_comment] = STATE(802), - [sym_ident] = ACTIONS(1436), - [sym_integer_literal] = ACTIONS(1438), - [anon_sym_SQUOTE] = ACTIONS(1438), - [anon_sym_DQUOTE] = ACTIONS(1438), - [anon_sym_BQUOTE] = ACTIONS(1438), - [sym_bytes_literal] = ACTIONS(1438), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1436), - [sym_at_ident] = ACTIONS(1438), - [sym_hash_ident] = ACTIONS(1438), - [sym_type_ident] = ACTIONS(1438), - [sym_ct_type_ident] = ACTIONS(1438), - [sym_const_ident] = ACTIONS(1436), - [sym_builtin] = ACTIONS(1438), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1436), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_tlocal] = ACTIONS(1436), - [anon_sym_SEMI] = ACTIONS(1438), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_const] = ACTIONS(1436), - [anon_sym_var] = ACTIONS(1436), - [anon_sym_return] = ACTIONS(1436), - [anon_sym_continue] = ACTIONS(1436), - [anon_sym_break] = ACTIONS(1436), - [anon_sym_defer] = ACTIONS(1436), - [anon_sym_assert] = ACTIONS(1436), - [anon_sym_nextcase] = ACTIONS(1436), - [anon_sym_switch] = ACTIONS(1436), - [anon_sym_AMP_AMP] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1436), - [anon_sym_for] = ACTIONS(1436), - [anon_sym_foreach] = ACTIONS(1436), - [anon_sym_foreach_r] = ACTIONS(1436), - [anon_sym_while] = ACTIONS(1436), - [anon_sym_do] = ACTIONS(1436), - [anon_sym_int] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_asm] = ACTIONS(1436), - [anon_sym_DOLLARassert] = ACTIONS(1436), - [anon_sym_DOLLARerror] = ACTIONS(1436), - [anon_sym_DOLLARecho] = ACTIONS(1436), - [anon_sym_DOLLARif] = ACTIONS(1436), - [anon_sym_DOLLARendif] = ACTIONS(1436), - [anon_sym_DOLLARswitch] = ACTIONS(1436), - [anon_sym_DOLLARfor] = ACTIONS(1436), - [anon_sym_DOLLARforeach] = ACTIONS(1436), - [anon_sym_DOLLARalignof] = ACTIONS(1436), - [anon_sym_DOLLARextnameof] = ACTIONS(1436), - [anon_sym_DOLLARnameof] = ACTIONS(1436), - [anon_sym_DOLLARoffsetof] = ACTIONS(1436), - [anon_sym_DOLLARqnameof] = ACTIONS(1436), - [anon_sym_DOLLARvaconst] = ACTIONS(1436), - [anon_sym_DOLLARvaarg] = ACTIONS(1436), - [anon_sym_DOLLARvaref] = ACTIONS(1436), - [anon_sym_DOLLARvaexpr] = ACTIONS(1436), - [anon_sym_true] = ACTIONS(1436), - [anon_sym_false] = ACTIONS(1436), - [anon_sym_null] = ACTIONS(1436), - [anon_sym_DOLLARvacount] = ACTIONS(1436), - [anon_sym_DOLLARappend] = ACTIONS(1436), - [anon_sym_DOLLARconcat] = ACTIONS(1436), - [anon_sym_DOLLAReval] = ACTIONS(1436), - [anon_sym_DOLLARis_const] = ACTIONS(1436), - [anon_sym_DOLLARsizeof] = ACTIONS(1436), - [anon_sym_DOLLARstringify] = ACTIONS(1436), - [anon_sym_DOLLARand] = ACTIONS(1436), - [anon_sym_DOLLARdefined] = ACTIONS(1436), - [anon_sym_DOLLARembed] = ACTIONS(1436), - [anon_sym_DOLLARor] = ACTIONS(1436), - [anon_sym_DOLLARfeature] = ACTIONS(1436), - [anon_sym_DOLLARassignable] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1438), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_PLUS_PLUS] = ACTIONS(1438), - [anon_sym_DASH_DASH] = ACTIONS(1438), - [anon_sym_typeid] = ACTIONS(1436), - [anon_sym_LBRACE_PIPE] = ACTIONS(1438), - [anon_sym_void] = ACTIONS(1436), - [anon_sym_bool] = ACTIONS(1436), - [anon_sym_char] = ACTIONS(1436), - [anon_sym_ichar] = ACTIONS(1436), - [anon_sym_short] = ACTIONS(1436), - [anon_sym_ushort] = ACTIONS(1436), - [anon_sym_uint] = ACTIONS(1436), - [anon_sym_long] = ACTIONS(1436), - [anon_sym_ulong] = ACTIONS(1436), - [anon_sym_int128] = ACTIONS(1436), - [anon_sym_uint128] = ACTIONS(1436), - [anon_sym_float] = ACTIONS(1436), - [anon_sym_double] = ACTIONS(1436), - [anon_sym_float16] = ACTIONS(1436), - [anon_sym_bfloat16] = ACTIONS(1436), - [anon_sym_float128] = ACTIONS(1436), - [anon_sym_iptr] = ACTIONS(1436), - [anon_sym_uptr] = ACTIONS(1436), - [anon_sym_isz] = ACTIONS(1436), - [anon_sym_usz] = ACTIONS(1436), - [anon_sym_anyfault] = ACTIONS(1436), - [anon_sym_any] = ACTIONS(1436), - [anon_sym_DOLLARtypeof] = ACTIONS(1436), - [anon_sym_DOLLARtypefrom] = ACTIONS(1436), - [anon_sym_DOLLARvatype] = ACTIONS(1436), - [anon_sym_DOLLARevaltype] = ACTIONS(1436), - [sym_real_literal] = ACTIONS(1438), + [sym_ident] = ACTIONS(1651), + [sym_integer_literal] = ACTIONS(1653), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_DQUOTE] = ACTIONS(1653), + [anon_sym_BQUOTE] = ACTIONS(1653), + [sym_bytes_literal] = ACTIONS(1653), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1651), + [sym_at_ident] = ACTIONS(1653), + [sym_hash_ident] = ACTIONS(1653), + [sym_type_ident] = ACTIONS(1653), + [sym_ct_type_ident] = ACTIONS(1653), + [sym_const_ident] = ACTIONS(1651), + [sym_builtin] = ACTIONS(1653), + [anon_sym_LPAREN] = ACTIONS(1653), + [anon_sym_AMP] = ACTIONS(1651), + [anon_sym_static] = ACTIONS(1651), + [anon_sym_tlocal] = ACTIONS(1651), + [anon_sym_SEMI] = ACTIONS(1653), + [anon_sym_fn] = ACTIONS(1651), + [anon_sym_LBRACE] = ACTIONS(1651), + [anon_sym_const] = ACTIONS(1651), + [anon_sym_var] = ACTIONS(1651), + [anon_sym_return] = ACTIONS(1651), + [anon_sym_continue] = ACTIONS(1651), + [anon_sym_break] = ACTIONS(1651), + [anon_sym_defer] = ACTIONS(1651), + [anon_sym_assert] = ACTIONS(1651), + [anon_sym_nextcase] = ACTIONS(1651), + [anon_sym_switch] = ACTIONS(1651), + [anon_sym_AMP_AMP] = ACTIONS(1653), + [anon_sym_if] = ACTIONS(1651), + [anon_sym_for] = ACTIONS(1651), + [anon_sym_foreach] = ACTIONS(1651), + [anon_sym_foreach_r] = ACTIONS(1651), + [anon_sym_while] = ACTIONS(1651), + [anon_sym_do] = ACTIONS(1651), + [anon_sym_int] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1651), + [anon_sym_DASH] = ACTIONS(1651), + [anon_sym_STAR] = ACTIONS(1653), + [anon_sym_asm] = ACTIONS(1651), + [anon_sym_DOLLARassert] = ACTIONS(1651), + [anon_sym_DOLLARerror] = ACTIONS(1651), + [anon_sym_DOLLARecho] = ACTIONS(1651), + [anon_sym_DOLLARif] = ACTIONS(1651), + [anon_sym_DOLLARswitch] = ACTIONS(1651), + [anon_sym_DOLLARfor] = ACTIONS(1651), + [anon_sym_DOLLARforeach] = ACTIONS(1651), + [anon_sym_DOLLARalignof] = ACTIONS(1651), + [anon_sym_DOLLARextnameof] = ACTIONS(1651), + [anon_sym_DOLLARnameof] = ACTIONS(1651), + [anon_sym_DOLLARoffsetof] = ACTIONS(1651), + [anon_sym_DOLLARqnameof] = ACTIONS(1651), + [anon_sym_DOLLARvaconst] = ACTIONS(1651), + [anon_sym_DOLLARvaarg] = ACTIONS(1651), + [anon_sym_DOLLARvaref] = ACTIONS(1651), + [anon_sym_DOLLARvaexpr] = ACTIONS(1651), + [anon_sym_true] = ACTIONS(1651), + [anon_sym_false] = ACTIONS(1651), + [anon_sym_null] = ACTIONS(1651), + [anon_sym_DOLLARvacount] = ACTIONS(1651), + [anon_sym_DOLLARappend] = ACTIONS(1651), + [anon_sym_DOLLARconcat] = ACTIONS(1651), + [anon_sym_DOLLAReval] = ACTIONS(1651), + [anon_sym_DOLLARis_const] = ACTIONS(1651), + [anon_sym_DOLLARsizeof] = ACTIONS(1651), + [anon_sym_DOLLARstringify] = ACTIONS(1651), + [anon_sym_DOLLARand] = ACTIONS(1651), + [anon_sym_DOLLARdefined] = ACTIONS(1651), + [anon_sym_DOLLARembed] = ACTIONS(1651), + [anon_sym_DOLLARor] = ACTIONS(1651), + [anon_sym_DOLLARfeature] = ACTIONS(1651), + [anon_sym_DOLLARassignable] = ACTIONS(1651), + [anon_sym_BANG] = ACTIONS(1653), + [anon_sym_TILDE] = ACTIONS(1653), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), + [anon_sym_typeid] = ACTIONS(1651), + [anon_sym_LBRACE_PIPE] = ACTIONS(1653), + [anon_sym_void] = ACTIONS(1651), + [anon_sym_bool] = ACTIONS(1651), + [anon_sym_char] = ACTIONS(1651), + [anon_sym_ichar] = ACTIONS(1651), + [anon_sym_short] = ACTIONS(1651), + [anon_sym_ushort] = ACTIONS(1651), + [anon_sym_uint] = ACTIONS(1651), + [anon_sym_long] = ACTIONS(1651), + [anon_sym_ulong] = ACTIONS(1651), + [anon_sym_int128] = ACTIONS(1651), + [anon_sym_uint128] = ACTIONS(1651), + [anon_sym_float] = ACTIONS(1651), + [anon_sym_double] = ACTIONS(1651), + [anon_sym_float16] = ACTIONS(1651), + [anon_sym_bfloat16] = ACTIONS(1651), + [anon_sym_float128] = ACTIONS(1651), + [anon_sym_iptr] = ACTIONS(1651), + [anon_sym_uptr] = ACTIONS(1651), + [anon_sym_isz] = ACTIONS(1651), + [anon_sym_usz] = ACTIONS(1651), + [anon_sym_anyfault] = ACTIONS(1651), + [anon_sym_any] = ACTIONS(1651), + [anon_sym_DOLLARtypeof] = ACTIONS(1651), + [anon_sym_DOLLARtypefrom] = ACTIONS(1651), + [anon_sym_DOLLARvatype] = ACTIONS(1651), + [anon_sym_DOLLARevaltype] = ACTIONS(1651), + [sym_real_literal] = ACTIONS(1653), }, [803] = { [sym_line_comment] = STATE(803), [sym_doc_comment] = STATE(803), [sym_block_comment] = STATE(803), - [sym_ident] = ACTIONS(1456), - [sym_integer_literal] = ACTIONS(1458), - [anon_sym_SQUOTE] = ACTIONS(1458), - [anon_sym_DQUOTE] = ACTIONS(1458), - [anon_sym_BQUOTE] = ACTIONS(1458), - [sym_bytes_literal] = ACTIONS(1458), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1456), - [sym_at_ident] = ACTIONS(1458), - [sym_hash_ident] = ACTIONS(1458), - [sym_type_ident] = ACTIONS(1458), - [sym_ct_type_ident] = ACTIONS(1458), - [sym_const_ident] = ACTIONS(1456), - [sym_builtin] = ACTIONS(1458), - [anon_sym_LPAREN] = ACTIONS(1458), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_static] = ACTIONS(1456), - [anon_sym_tlocal] = ACTIONS(1456), - [anon_sym_SEMI] = ACTIONS(1458), - [anon_sym_fn] = ACTIONS(1456), - [anon_sym_LBRACE] = ACTIONS(1456), - [anon_sym_const] = ACTIONS(1456), - [anon_sym_var] = ACTIONS(1456), - [anon_sym_return] = ACTIONS(1456), - [anon_sym_continue] = ACTIONS(1456), - [anon_sym_break] = ACTIONS(1456), - [anon_sym_defer] = ACTIONS(1456), - [anon_sym_assert] = ACTIONS(1456), - [anon_sym_nextcase] = ACTIONS(1456), - [anon_sym_switch] = ACTIONS(1456), - [anon_sym_AMP_AMP] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1456), - [anon_sym_for] = ACTIONS(1456), - [anon_sym_foreach] = ACTIONS(1456), - [anon_sym_foreach_r] = ACTIONS(1456), - [anon_sym_while] = ACTIONS(1456), - [anon_sym_do] = ACTIONS(1456), - [anon_sym_int] = ACTIONS(1456), - [anon_sym_PLUS] = ACTIONS(1456), - [anon_sym_DASH] = ACTIONS(1456), - [anon_sym_STAR] = ACTIONS(1458), - [anon_sym_asm] = ACTIONS(1456), - [anon_sym_DOLLARassert] = ACTIONS(1456), - [anon_sym_DOLLARerror] = ACTIONS(1456), - [anon_sym_DOLLARecho] = ACTIONS(1456), - [anon_sym_DOLLARif] = ACTIONS(1456), - [anon_sym_DOLLARswitch] = ACTIONS(1456), - [anon_sym_DOLLARfor] = ACTIONS(1456), - [anon_sym_DOLLARendfor] = ACTIONS(1456), - [anon_sym_DOLLARforeach] = ACTIONS(1456), - [anon_sym_DOLLARalignof] = ACTIONS(1456), - [anon_sym_DOLLARextnameof] = ACTIONS(1456), - [anon_sym_DOLLARnameof] = ACTIONS(1456), - [anon_sym_DOLLARoffsetof] = ACTIONS(1456), - [anon_sym_DOLLARqnameof] = ACTIONS(1456), - [anon_sym_DOLLARvaconst] = ACTIONS(1456), - [anon_sym_DOLLARvaarg] = ACTIONS(1456), - [anon_sym_DOLLARvaref] = ACTIONS(1456), - [anon_sym_DOLLARvaexpr] = ACTIONS(1456), - [anon_sym_true] = ACTIONS(1456), - [anon_sym_false] = ACTIONS(1456), - [anon_sym_null] = ACTIONS(1456), - [anon_sym_DOLLARvacount] = ACTIONS(1456), - [anon_sym_DOLLARappend] = ACTIONS(1456), - [anon_sym_DOLLARconcat] = ACTIONS(1456), - [anon_sym_DOLLAReval] = ACTIONS(1456), - [anon_sym_DOLLARis_const] = ACTIONS(1456), - [anon_sym_DOLLARsizeof] = ACTIONS(1456), - [anon_sym_DOLLARstringify] = ACTIONS(1456), - [anon_sym_DOLLARand] = ACTIONS(1456), - [anon_sym_DOLLARdefined] = ACTIONS(1456), - [anon_sym_DOLLARembed] = ACTIONS(1456), - [anon_sym_DOLLARor] = ACTIONS(1456), - [anon_sym_DOLLARfeature] = ACTIONS(1456), - [anon_sym_DOLLARassignable] = ACTIONS(1456), - [anon_sym_BANG] = ACTIONS(1458), - [anon_sym_TILDE] = ACTIONS(1458), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [anon_sym_typeid] = ACTIONS(1456), - [anon_sym_LBRACE_PIPE] = ACTIONS(1458), - [anon_sym_void] = ACTIONS(1456), - [anon_sym_bool] = ACTIONS(1456), - [anon_sym_char] = ACTIONS(1456), - [anon_sym_ichar] = ACTIONS(1456), - [anon_sym_short] = ACTIONS(1456), - [anon_sym_ushort] = ACTIONS(1456), - [anon_sym_uint] = ACTIONS(1456), - [anon_sym_long] = ACTIONS(1456), - [anon_sym_ulong] = ACTIONS(1456), - [anon_sym_int128] = ACTIONS(1456), - [anon_sym_uint128] = ACTIONS(1456), - [anon_sym_float] = ACTIONS(1456), - [anon_sym_double] = ACTIONS(1456), - [anon_sym_float16] = ACTIONS(1456), - [anon_sym_bfloat16] = ACTIONS(1456), - [anon_sym_float128] = ACTIONS(1456), - [anon_sym_iptr] = ACTIONS(1456), - [anon_sym_uptr] = ACTIONS(1456), - [anon_sym_isz] = ACTIONS(1456), - [anon_sym_usz] = ACTIONS(1456), - [anon_sym_anyfault] = ACTIONS(1456), - [anon_sym_any] = ACTIONS(1456), - [anon_sym_DOLLARtypeof] = ACTIONS(1456), - [anon_sym_DOLLARtypefrom] = ACTIONS(1456), - [anon_sym_DOLLARvatype] = ACTIONS(1456), - [anon_sym_DOLLARevaltype] = ACTIONS(1456), - [sym_real_literal] = ACTIONS(1458), + [sym_ident] = ACTIONS(1679), + [sym_integer_literal] = ACTIONS(1681), + [anon_sym_SQUOTE] = ACTIONS(1681), + [anon_sym_DQUOTE] = ACTIONS(1681), + [anon_sym_BQUOTE] = ACTIONS(1681), + [sym_bytes_literal] = ACTIONS(1681), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1679), + [sym_at_ident] = ACTIONS(1681), + [sym_hash_ident] = ACTIONS(1681), + [sym_type_ident] = ACTIONS(1681), + [sym_ct_type_ident] = ACTIONS(1681), + [sym_const_ident] = ACTIONS(1679), + [sym_builtin] = ACTIONS(1681), + [anon_sym_LPAREN] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1679), + [anon_sym_static] = ACTIONS(1679), + [anon_sym_tlocal] = ACTIONS(1679), + [anon_sym_SEMI] = ACTIONS(1681), + [anon_sym_fn] = ACTIONS(1679), + [anon_sym_LBRACE] = ACTIONS(1679), + [anon_sym_const] = ACTIONS(1679), + [anon_sym_var] = ACTIONS(1679), + [anon_sym_return] = ACTIONS(1679), + [anon_sym_continue] = ACTIONS(1679), + [anon_sym_break] = ACTIONS(1679), + [anon_sym_defer] = ACTIONS(1679), + [anon_sym_assert] = ACTIONS(1679), + [anon_sym_nextcase] = ACTIONS(1679), + [anon_sym_switch] = ACTIONS(1679), + [anon_sym_AMP_AMP] = ACTIONS(1681), + [anon_sym_if] = ACTIONS(1679), + [anon_sym_for] = ACTIONS(1679), + [anon_sym_foreach] = ACTIONS(1679), + [anon_sym_foreach_r] = ACTIONS(1679), + [anon_sym_while] = ACTIONS(1679), + [anon_sym_do] = ACTIONS(1679), + [anon_sym_int] = ACTIONS(1679), + [anon_sym_PLUS] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1679), + [anon_sym_STAR] = ACTIONS(1681), + [anon_sym_asm] = ACTIONS(1679), + [anon_sym_DOLLARassert] = ACTIONS(1679), + [anon_sym_DOLLARerror] = ACTIONS(1679), + [anon_sym_DOLLARecho] = ACTIONS(1679), + [anon_sym_DOLLARif] = ACTIONS(1679), + [anon_sym_DOLLARswitch] = ACTIONS(1679), + [anon_sym_DOLLARfor] = ACTIONS(1679), + [anon_sym_DOLLARforeach] = ACTIONS(1679), + [anon_sym_DOLLARalignof] = ACTIONS(1679), + [anon_sym_DOLLARextnameof] = ACTIONS(1679), + [anon_sym_DOLLARnameof] = ACTIONS(1679), + [anon_sym_DOLLARoffsetof] = ACTIONS(1679), + [anon_sym_DOLLARqnameof] = ACTIONS(1679), + [anon_sym_DOLLARvaconst] = ACTIONS(1679), + [anon_sym_DOLLARvaarg] = ACTIONS(1679), + [anon_sym_DOLLARvaref] = ACTIONS(1679), + [anon_sym_DOLLARvaexpr] = ACTIONS(1679), + [anon_sym_true] = ACTIONS(1679), + [anon_sym_false] = ACTIONS(1679), + [anon_sym_null] = ACTIONS(1679), + [anon_sym_DOLLARvacount] = ACTIONS(1679), + [anon_sym_DOLLARappend] = ACTIONS(1679), + [anon_sym_DOLLARconcat] = ACTIONS(1679), + [anon_sym_DOLLAReval] = ACTIONS(1679), + [anon_sym_DOLLARis_const] = ACTIONS(1679), + [anon_sym_DOLLARsizeof] = ACTIONS(1679), + [anon_sym_DOLLARstringify] = ACTIONS(1679), + [anon_sym_DOLLARand] = ACTIONS(1679), + [anon_sym_DOLLARdefined] = ACTIONS(1679), + [anon_sym_DOLLARembed] = ACTIONS(1679), + [anon_sym_DOLLARor] = ACTIONS(1679), + [anon_sym_DOLLARfeature] = ACTIONS(1679), + [anon_sym_DOLLARassignable] = ACTIONS(1679), + [anon_sym_BANG] = ACTIONS(1681), + [anon_sym_TILDE] = ACTIONS(1681), + [anon_sym_PLUS_PLUS] = ACTIONS(1681), + [anon_sym_DASH_DASH] = ACTIONS(1681), + [anon_sym_typeid] = ACTIONS(1679), + [anon_sym_LBRACE_PIPE] = ACTIONS(1681), + [anon_sym_void] = ACTIONS(1679), + [anon_sym_bool] = ACTIONS(1679), + [anon_sym_char] = ACTIONS(1679), + [anon_sym_ichar] = ACTIONS(1679), + [anon_sym_short] = ACTIONS(1679), + [anon_sym_ushort] = ACTIONS(1679), + [anon_sym_uint] = ACTIONS(1679), + [anon_sym_long] = ACTIONS(1679), + [anon_sym_ulong] = ACTIONS(1679), + [anon_sym_int128] = ACTIONS(1679), + [anon_sym_uint128] = ACTIONS(1679), + [anon_sym_float] = ACTIONS(1679), + [anon_sym_double] = ACTIONS(1679), + [anon_sym_float16] = ACTIONS(1679), + [anon_sym_bfloat16] = ACTIONS(1679), + [anon_sym_float128] = ACTIONS(1679), + [anon_sym_iptr] = ACTIONS(1679), + [anon_sym_uptr] = ACTIONS(1679), + [anon_sym_isz] = ACTIONS(1679), + [anon_sym_usz] = ACTIONS(1679), + [anon_sym_anyfault] = ACTIONS(1679), + [anon_sym_any] = ACTIONS(1679), + [anon_sym_DOLLARtypeof] = ACTIONS(1679), + [anon_sym_DOLLARtypefrom] = ACTIONS(1679), + [anon_sym_DOLLARvatype] = ACTIONS(1679), + [anon_sym_DOLLARevaltype] = ACTIONS(1679), + [sym_real_literal] = ACTIONS(1681), }, [804] = { [sym_line_comment] = STATE(804), [sym_doc_comment] = STATE(804), [sym_block_comment] = STATE(804), - [sym_ident] = ACTIONS(1448), - [sym_integer_literal] = ACTIONS(1450), - [anon_sym_SQUOTE] = ACTIONS(1450), - [anon_sym_DQUOTE] = ACTIONS(1450), - [anon_sym_BQUOTE] = ACTIONS(1450), - [sym_bytes_literal] = ACTIONS(1450), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1448), - [sym_at_ident] = ACTIONS(1450), - [sym_hash_ident] = ACTIONS(1450), - [sym_type_ident] = ACTIONS(1450), - [sym_ct_type_ident] = ACTIONS(1450), - [sym_const_ident] = ACTIONS(1448), - [sym_builtin] = ACTIONS(1450), - [anon_sym_LPAREN] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1448), - [anon_sym_static] = ACTIONS(1448), - [anon_sym_tlocal] = ACTIONS(1448), - [anon_sym_SEMI] = ACTIONS(1450), - [anon_sym_fn] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(1448), - [anon_sym_const] = ACTIONS(1448), - [anon_sym_var] = ACTIONS(1448), - [anon_sym_return] = ACTIONS(1448), - [anon_sym_continue] = ACTIONS(1448), - [anon_sym_break] = ACTIONS(1448), - [anon_sym_defer] = ACTIONS(1448), - [anon_sym_assert] = ACTIONS(1448), - [anon_sym_nextcase] = ACTIONS(1448), - [anon_sym_switch] = ACTIONS(1448), - [anon_sym_AMP_AMP] = ACTIONS(1450), - [anon_sym_if] = ACTIONS(1448), - [anon_sym_for] = ACTIONS(1448), - [anon_sym_foreach] = ACTIONS(1448), - [anon_sym_foreach_r] = ACTIONS(1448), - [anon_sym_while] = ACTIONS(1448), - [anon_sym_do] = ACTIONS(1448), - [anon_sym_int] = ACTIONS(1448), - [anon_sym_PLUS] = ACTIONS(1448), - [anon_sym_DASH] = ACTIONS(1448), - [anon_sym_STAR] = ACTIONS(1450), - [anon_sym_asm] = ACTIONS(1448), - [anon_sym_DOLLARassert] = ACTIONS(1448), - [anon_sym_DOLLARerror] = ACTIONS(1448), - [anon_sym_DOLLARecho] = ACTIONS(1448), - [anon_sym_DOLLARif] = ACTIONS(1448), - [anon_sym_DOLLARswitch] = ACTIONS(1448), - [anon_sym_DOLLARfor] = ACTIONS(1448), - [anon_sym_DOLLARendfor] = ACTIONS(1448), - [anon_sym_DOLLARforeach] = ACTIONS(1448), - [anon_sym_DOLLARalignof] = ACTIONS(1448), - [anon_sym_DOLLARextnameof] = ACTIONS(1448), - [anon_sym_DOLLARnameof] = ACTIONS(1448), - [anon_sym_DOLLARoffsetof] = ACTIONS(1448), - [anon_sym_DOLLARqnameof] = ACTIONS(1448), - [anon_sym_DOLLARvaconst] = ACTIONS(1448), - [anon_sym_DOLLARvaarg] = ACTIONS(1448), - [anon_sym_DOLLARvaref] = ACTIONS(1448), - [anon_sym_DOLLARvaexpr] = ACTIONS(1448), - [anon_sym_true] = ACTIONS(1448), - [anon_sym_false] = ACTIONS(1448), - [anon_sym_null] = ACTIONS(1448), - [anon_sym_DOLLARvacount] = ACTIONS(1448), - [anon_sym_DOLLARappend] = ACTIONS(1448), - [anon_sym_DOLLARconcat] = ACTIONS(1448), - [anon_sym_DOLLAReval] = ACTIONS(1448), - [anon_sym_DOLLARis_const] = ACTIONS(1448), - [anon_sym_DOLLARsizeof] = ACTIONS(1448), - [anon_sym_DOLLARstringify] = ACTIONS(1448), - [anon_sym_DOLLARand] = ACTIONS(1448), - [anon_sym_DOLLARdefined] = ACTIONS(1448), - [anon_sym_DOLLARembed] = ACTIONS(1448), - [anon_sym_DOLLARor] = ACTIONS(1448), - [anon_sym_DOLLARfeature] = ACTIONS(1448), - [anon_sym_DOLLARassignable] = ACTIONS(1448), - [anon_sym_BANG] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1450), - [anon_sym_PLUS_PLUS] = ACTIONS(1450), - [anon_sym_DASH_DASH] = ACTIONS(1450), - [anon_sym_typeid] = ACTIONS(1448), - [anon_sym_LBRACE_PIPE] = ACTIONS(1450), - [anon_sym_void] = ACTIONS(1448), - [anon_sym_bool] = ACTIONS(1448), - [anon_sym_char] = ACTIONS(1448), - [anon_sym_ichar] = ACTIONS(1448), - [anon_sym_short] = ACTIONS(1448), - [anon_sym_ushort] = ACTIONS(1448), - [anon_sym_uint] = ACTIONS(1448), - [anon_sym_long] = ACTIONS(1448), - [anon_sym_ulong] = ACTIONS(1448), - [anon_sym_int128] = ACTIONS(1448), - [anon_sym_uint128] = ACTIONS(1448), - [anon_sym_float] = ACTIONS(1448), - [anon_sym_double] = ACTIONS(1448), - [anon_sym_float16] = ACTIONS(1448), - [anon_sym_bfloat16] = ACTIONS(1448), - [anon_sym_float128] = ACTIONS(1448), - [anon_sym_iptr] = ACTIONS(1448), - [anon_sym_uptr] = ACTIONS(1448), - [anon_sym_isz] = ACTIONS(1448), - [anon_sym_usz] = ACTIONS(1448), - [anon_sym_anyfault] = ACTIONS(1448), - [anon_sym_any] = ACTIONS(1448), - [anon_sym_DOLLARtypeof] = ACTIONS(1448), - [anon_sym_DOLLARtypefrom] = ACTIONS(1448), - [anon_sym_DOLLARvatype] = ACTIONS(1448), - [anon_sym_DOLLARevaltype] = ACTIONS(1448), - [sym_real_literal] = ACTIONS(1450), + [sym_ident] = ACTIONS(1699), + [sym_integer_literal] = ACTIONS(1701), + [anon_sym_SQUOTE] = ACTIONS(1701), + [anon_sym_DQUOTE] = ACTIONS(1701), + [anon_sym_BQUOTE] = ACTIONS(1701), + [sym_bytes_literal] = ACTIONS(1701), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1699), + [sym_at_ident] = ACTIONS(1701), + [sym_hash_ident] = ACTIONS(1701), + [sym_type_ident] = ACTIONS(1701), + [sym_ct_type_ident] = ACTIONS(1701), + [sym_const_ident] = ACTIONS(1699), + [sym_builtin] = ACTIONS(1701), + [anon_sym_LPAREN] = ACTIONS(1701), + [anon_sym_AMP] = ACTIONS(1699), + [anon_sym_static] = ACTIONS(1699), + [anon_sym_tlocal] = ACTIONS(1699), + [anon_sym_SEMI] = ACTIONS(1701), + [anon_sym_fn] = ACTIONS(1699), + [anon_sym_LBRACE] = ACTIONS(1699), + [anon_sym_const] = ACTIONS(1699), + [anon_sym_var] = ACTIONS(1699), + [anon_sym_return] = ACTIONS(1699), + [anon_sym_continue] = ACTIONS(1699), + [anon_sym_break] = ACTIONS(1699), + [anon_sym_defer] = ACTIONS(1699), + [anon_sym_assert] = ACTIONS(1699), + [anon_sym_nextcase] = ACTIONS(1699), + [anon_sym_switch] = ACTIONS(1699), + [anon_sym_AMP_AMP] = ACTIONS(1701), + [anon_sym_if] = ACTIONS(1699), + [anon_sym_for] = ACTIONS(1699), + [anon_sym_foreach] = ACTIONS(1699), + [anon_sym_foreach_r] = ACTIONS(1699), + [anon_sym_while] = ACTIONS(1699), + [anon_sym_do] = ACTIONS(1699), + [anon_sym_int] = ACTIONS(1699), + [anon_sym_PLUS] = ACTIONS(1699), + [anon_sym_DASH] = ACTIONS(1699), + [anon_sym_STAR] = ACTIONS(1701), + [anon_sym_asm] = ACTIONS(1699), + [anon_sym_DOLLARassert] = ACTIONS(1699), + [anon_sym_DOLLARerror] = ACTIONS(1699), + [anon_sym_DOLLARecho] = ACTIONS(1699), + [anon_sym_DOLLARif] = ACTIONS(1699), + [anon_sym_DOLLARswitch] = ACTIONS(1699), + [anon_sym_DOLLARfor] = ACTIONS(1699), + [anon_sym_DOLLARforeach] = ACTIONS(1699), + [anon_sym_DOLLARalignof] = ACTIONS(1699), + [anon_sym_DOLLARextnameof] = ACTIONS(1699), + [anon_sym_DOLLARnameof] = ACTIONS(1699), + [anon_sym_DOLLARoffsetof] = ACTIONS(1699), + [anon_sym_DOLLARqnameof] = ACTIONS(1699), + [anon_sym_DOLLARvaconst] = ACTIONS(1699), + [anon_sym_DOLLARvaarg] = ACTIONS(1699), + [anon_sym_DOLLARvaref] = ACTIONS(1699), + [anon_sym_DOLLARvaexpr] = ACTIONS(1699), + [anon_sym_true] = ACTIONS(1699), + [anon_sym_false] = ACTIONS(1699), + [anon_sym_null] = ACTIONS(1699), + [anon_sym_DOLLARvacount] = ACTIONS(1699), + [anon_sym_DOLLARappend] = ACTIONS(1699), + [anon_sym_DOLLARconcat] = ACTIONS(1699), + [anon_sym_DOLLAReval] = ACTIONS(1699), + [anon_sym_DOLLARis_const] = ACTIONS(1699), + [anon_sym_DOLLARsizeof] = ACTIONS(1699), + [anon_sym_DOLLARstringify] = ACTIONS(1699), + [anon_sym_DOLLARand] = ACTIONS(1699), + [anon_sym_DOLLARdefined] = ACTIONS(1699), + [anon_sym_DOLLARembed] = ACTIONS(1699), + [anon_sym_DOLLARor] = ACTIONS(1699), + [anon_sym_DOLLARfeature] = ACTIONS(1699), + [anon_sym_DOLLARassignable] = ACTIONS(1699), + [anon_sym_BANG] = ACTIONS(1701), + [anon_sym_TILDE] = ACTIONS(1701), + [anon_sym_PLUS_PLUS] = ACTIONS(1701), + [anon_sym_DASH_DASH] = ACTIONS(1701), + [anon_sym_typeid] = ACTIONS(1699), + [anon_sym_LBRACE_PIPE] = ACTIONS(1701), + [anon_sym_void] = ACTIONS(1699), + [anon_sym_bool] = ACTIONS(1699), + [anon_sym_char] = ACTIONS(1699), + [anon_sym_ichar] = ACTIONS(1699), + [anon_sym_short] = ACTIONS(1699), + [anon_sym_ushort] = ACTIONS(1699), + [anon_sym_uint] = ACTIONS(1699), + [anon_sym_long] = ACTIONS(1699), + [anon_sym_ulong] = ACTIONS(1699), + [anon_sym_int128] = ACTIONS(1699), + [anon_sym_uint128] = ACTIONS(1699), + [anon_sym_float] = ACTIONS(1699), + [anon_sym_double] = ACTIONS(1699), + [anon_sym_float16] = ACTIONS(1699), + [anon_sym_bfloat16] = ACTIONS(1699), + [anon_sym_float128] = ACTIONS(1699), + [anon_sym_iptr] = ACTIONS(1699), + [anon_sym_uptr] = ACTIONS(1699), + [anon_sym_isz] = ACTIONS(1699), + [anon_sym_usz] = ACTIONS(1699), + [anon_sym_anyfault] = ACTIONS(1699), + [anon_sym_any] = ACTIONS(1699), + [anon_sym_DOLLARtypeof] = ACTIONS(1699), + [anon_sym_DOLLARtypefrom] = ACTIONS(1699), + [anon_sym_DOLLARvatype] = ACTIONS(1699), + [anon_sym_DOLLARevaltype] = ACTIONS(1699), + [sym_real_literal] = ACTIONS(1701), }, [805] = { [sym_line_comment] = STATE(805), [sym_doc_comment] = STATE(805), [sym_block_comment] = STATE(805), - [sym_ident] = ACTIONS(1444), - [sym_integer_literal] = ACTIONS(1446), - [anon_sym_SQUOTE] = ACTIONS(1446), - [anon_sym_DQUOTE] = ACTIONS(1446), - [anon_sym_BQUOTE] = ACTIONS(1446), - [sym_bytes_literal] = ACTIONS(1446), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1444), - [sym_at_ident] = ACTIONS(1446), - [sym_hash_ident] = ACTIONS(1446), - [sym_type_ident] = ACTIONS(1446), - [sym_ct_type_ident] = ACTIONS(1446), - [sym_const_ident] = ACTIONS(1444), - [sym_builtin] = ACTIONS(1446), - [anon_sym_LPAREN] = ACTIONS(1446), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_static] = ACTIONS(1444), - [anon_sym_tlocal] = ACTIONS(1444), - [anon_sym_SEMI] = ACTIONS(1446), - [anon_sym_fn] = ACTIONS(1444), - [anon_sym_LBRACE] = ACTIONS(1444), - [anon_sym_const] = ACTIONS(1444), - [anon_sym_var] = ACTIONS(1444), - [anon_sym_return] = ACTIONS(1444), - [anon_sym_continue] = ACTIONS(1444), - [anon_sym_break] = ACTIONS(1444), - [anon_sym_defer] = ACTIONS(1444), - [anon_sym_assert] = ACTIONS(1444), - [anon_sym_nextcase] = ACTIONS(1444), - [anon_sym_switch] = ACTIONS(1444), - [anon_sym_AMP_AMP] = ACTIONS(1446), - [anon_sym_if] = ACTIONS(1444), - [anon_sym_for] = ACTIONS(1444), - [anon_sym_foreach] = ACTIONS(1444), - [anon_sym_foreach_r] = ACTIONS(1444), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_do] = ACTIONS(1444), - [anon_sym_int] = ACTIONS(1444), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_asm] = ACTIONS(1444), - [anon_sym_DOLLARassert] = ACTIONS(1444), - [anon_sym_DOLLARerror] = ACTIONS(1444), - [anon_sym_DOLLARecho] = ACTIONS(1444), - [anon_sym_DOLLARif] = ACTIONS(1444), - [anon_sym_DOLLARswitch] = ACTIONS(1444), - [anon_sym_DOLLARfor] = ACTIONS(1444), - [anon_sym_DOLLARendfor] = ACTIONS(1444), - [anon_sym_DOLLARforeach] = ACTIONS(1444), - [anon_sym_DOLLARalignof] = ACTIONS(1444), - [anon_sym_DOLLARextnameof] = ACTIONS(1444), - [anon_sym_DOLLARnameof] = ACTIONS(1444), - [anon_sym_DOLLARoffsetof] = ACTIONS(1444), - [anon_sym_DOLLARqnameof] = ACTIONS(1444), - [anon_sym_DOLLARvaconst] = ACTIONS(1444), - [anon_sym_DOLLARvaarg] = ACTIONS(1444), - [anon_sym_DOLLARvaref] = ACTIONS(1444), - [anon_sym_DOLLARvaexpr] = ACTIONS(1444), - [anon_sym_true] = ACTIONS(1444), - [anon_sym_false] = ACTIONS(1444), - [anon_sym_null] = ACTIONS(1444), - [anon_sym_DOLLARvacount] = ACTIONS(1444), - [anon_sym_DOLLARappend] = ACTIONS(1444), - [anon_sym_DOLLARconcat] = ACTIONS(1444), - [anon_sym_DOLLAReval] = ACTIONS(1444), - [anon_sym_DOLLARis_const] = ACTIONS(1444), - [anon_sym_DOLLARsizeof] = ACTIONS(1444), - [anon_sym_DOLLARstringify] = ACTIONS(1444), - [anon_sym_DOLLARand] = ACTIONS(1444), - [anon_sym_DOLLARdefined] = ACTIONS(1444), - [anon_sym_DOLLARembed] = ACTIONS(1444), - [anon_sym_DOLLARor] = ACTIONS(1444), - [anon_sym_DOLLARfeature] = ACTIONS(1444), - [anon_sym_DOLLARassignable] = ACTIONS(1444), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_TILDE] = ACTIONS(1446), - [anon_sym_PLUS_PLUS] = ACTIONS(1446), - [anon_sym_DASH_DASH] = ACTIONS(1446), - [anon_sym_typeid] = ACTIONS(1444), - [anon_sym_LBRACE_PIPE] = ACTIONS(1446), - [anon_sym_void] = ACTIONS(1444), - [anon_sym_bool] = ACTIONS(1444), - [anon_sym_char] = ACTIONS(1444), - [anon_sym_ichar] = ACTIONS(1444), - [anon_sym_short] = ACTIONS(1444), - [anon_sym_ushort] = ACTIONS(1444), - [anon_sym_uint] = ACTIONS(1444), - [anon_sym_long] = ACTIONS(1444), - [anon_sym_ulong] = ACTIONS(1444), - [anon_sym_int128] = ACTIONS(1444), - [anon_sym_uint128] = ACTIONS(1444), - [anon_sym_float] = ACTIONS(1444), - [anon_sym_double] = ACTIONS(1444), - [anon_sym_float16] = ACTIONS(1444), - [anon_sym_bfloat16] = ACTIONS(1444), - [anon_sym_float128] = ACTIONS(1444), - [anon_sym_iptr] = ACTIONS(1444), - [anon_sym_uptr] = ACTIONS(1444), - [anon_sym_isz] = ACTIONS(1444), - [anon_sym_usz] = ACTIONS(1444), - [anon_sym_anyfault] = ACTIONS(1444), - [anon_sym_any] = ACTIONS(1444), - [anon_sym_DOLLARtypeof] = ACTIONS(1444), - [anon_sym_DOLLARtypefrom] = ACTIONS(1444), - [anon_sym_DOLLARvatype] = ACTIONS(1444), - [anon_sym_DOLLARevaltype] = ACTIONS(1444), - [sym_real_literal] = ACTIONS(1446), + [sym_ident] = ACTIONS(1655), + [sym_integer_literal] = ACTIONS(1657), + [anon_sym_SQUOTE] = ACTIONS(1657), + [anon_sym_DQUOTE] = ACTIONS(1657), + [anon_sym_BQUOTE] = ACTIONS(1657), + [sym_bytes_literal] = ACTIONS(1657), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1655), + [sym_at_ident] = ACTIONS(1657), + [sym_hash_ident] = ACTIONS(1657), + [sym_type_ident] = ACTIONS(1657), + [sym_ct_type_ident] = ACTIONS(1657), + [sym_const_ident] = ACTIONS(1655), + [sym_builtin] = ACTIONS(1657), + [anon_sym_LPAREN] = ACTIONS(1657), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_static] = ACTIONS(1655), + [anon_sym_tlocal] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1655), + [anon_sym_LBRACE] = ACTIONS(1655), + [anon_sym_const] = ACTIONS(1655), + [anon_sym_var] = ACTIONS(1655), + [anon_sym_return] = ACTIONS(1655), + [anon_sym_continue] = ACTIONS(1655), + [anon_sym_break] = ACTIONS(1655), + [anon_sym_defer] = ACTIONS(1655), + [anon_sym_assert] = ACTIONS(1655), + [anon_sym_nextcase] = ACTIONS(1655), + [anon_sym_switch] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1657), + [anon_sym_if] = ACTIONS(1655), + [anon_sym_for] = ACTIONS(1655), + [anon_sym_foreach] = ACTIONS(1655), + [anon_sym_foreach_r] = ACTIONS(1655), + [anon_sym_while] = ACTIONS(1655), + [anon_sym_do] = ACTIONS(1655), + [anon_sym_int] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_STAR] = ACTIONS(1657), + [anon_sym_asm] = ACTIONS(1655), + [anon_sym_DOLLARassert] = ACTIONS(1655), + [anon_sym_DOLLARerror] = ACTIONS(1655), + [anon_sym_DOLLARecho] = ACTIONS(1655), + [anon_sym_DOLLARif] = ACTIONS(1655), + [anon_sym_DOLLARswitch] = ACTIONS(1655), + [anon_sym_DOLLARfor] = ACTIONS(1655), + [anon_sym_DOLLARforeach] = ACTIONS(1655), + [anon_sym_DOLLARalignof] = ACTIONS(1655), + [anon_sym_DOLLARextnameof] = ACTIONS(1655), + [anon_sym_DOLLARnameof] = ACTIONS(1655), + [anon_sym_DOLLARoffsetof] = ACTIONS(1655), + [anon_sym_DOLLARqnameof] = ACTIONS(1655), + [anon_sym_DOLLARvaconst] = ACTIONS(1655), + [anon_sym_DOLLARvaarg] = ACTIONS(1655), + [anon_sym_DOLLARvaref] = ACTIONS(1655), + [anon_sym_DOLLARvaexpr] = ACTIONS(1655), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_null] = ACTIONS(1655), + [anon_sym_DOLLARvacount] = ACTIONS(1655), + [anon_sym_DOLLARappend] = ACTIONS(1655), + [anon_sym_DOLLARconcat] = ACTIONS(1655), + [anon_sym_DOLLAReval] = ACTIONS(1655), + [anon_sym_DOLLARis_const] = ACTIONS(1655), + [anon_sym_DOLLARsizeof] = ACTIONS(1655), + [anon_sym_DOLLARstringify] = ACTIONS(1655), + [anon_sym_DOLLARand] = ACTIONS(1655), + [anon_sym_DOLLARdefined] = ACTIONS(1655), + [anon_sym_DOLLARembed] = ACTIONS(1655), + [anon_sym_DOLLARor] = ACTIONS(1655), + [anon_sym_DOLLARfeature] = ACTIONS(1655), + [anon_sym_DOLLARassignable] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(1657), + [anon_sym_TILDE] = ACTIONS(1657), + [anon_sym_PLUS_PLUS] = ACTIONS(1657), + [anon_sym_DASH_DASH] = ACTIONS(1657), + [anon_sym_typeid] = ACTIONS(1655), + [anon_sym_LBRACE_PIPE] = ACTIONS(1657), + [anon_sym_void] = ACTIONS(1655), + [anon_sym_bool] = ACTIONS(1655), + [anon_sym_char] = ACTIONS(1655), + [anon_sym_ichar] = ACTIONS(1655), + [anon_sym_short] = ACTIONS(1655), + [anon_sym_ushort] = ACTIONS(1655), + [anon_sym_uint] = ACTIONS(1655), + [anon_sym_long] = ACTIONS(1655), + [anon_sym_ulong] = ACTIONS(1655), + [anon_sym_int128] = ACTIONS(1655), + [anon_sym_uint128] = ACTIONS(1655), + [anon_sym_float] = ACTIONS(1655), + [anon_sym_double] = ACTIONS(1655), + [anon_sym_float16] = ACTIONS(1655), + [anon_sym_bfloat16] = ACTIONS(1655), + [anon_sym_float128] = ACTIONS(1655), + [anon_sym_iptr] = ACTIONS(1655), + [anon_sym_uptr] = ACTIONS(1655), + [anon_sym_isz] = ACTIONS(1655), + [anon_sym_usz] = ACTIONS(1655), + [anon_sym_anyfault] = ACTIONS(1655), + [anon_sym_any] = ACTIONS(1655), + [anon_sym_DOLLARtypeof] = ACTIONS(1655), + [anon_sym_DOLLARtypefrom] = ACTIONS(1655), + [anon_sym_DOLLARvatype] = ACTIONS(1655), + [anon_sym_DOLLARevaltype] = ACTIONS(1655), + [sym_real_literal] = ACTIONS(1657), }, [806] = { [sym_line_comment] = STATE(806), [sym_doc_comment] = STATE(806), [sym_block_comment] = STATE(806), - [sym_ident] = ACTIONS(1428), - [sym_integer_literal] = ACTIONS(1430), - [anon_sym_SQUOTE] = ACTIONS(1430), - [anon_sym_DQUOTE] = ACTIONS(1430), - [anon_sym_BQUOTE] = ACTIONS(1430), - [sym_bytes_literal] = ACTIONS(1430), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1428), - [sym_at_ident] = ACTIONS(1430), - [sym_hash_ident] = ACTIONS(1430), - [sym_type_ident] = ACTIONS(1430), - [sym_ct_type_ident] = ACTIONS(1430), - [sym_const_ident] = ACTIONS(1428), - [sym_builtin] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1430), - [anon_sym_AMP] = ACTIONS(1428), - [anon_sym_static] = ACTIONS(1428), - [anon_sym_tlocal] = ACTIONS(1428), - [anon_sym_SEMI] = ACTIONS(1430), - [anon_sym_fn] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1428), - [anon_sym_const] = ACTIONS(1428), - [anon_sym_var] = ACTIONS(1428), - [anon_sym_return] = ACTIONS(1428), - [anon_sym_continue] = ACTIONS(1428), - [anon_sym_break] = ACTIONS(1428), - [anon_sym_defer] = ACTIONS(1428), - [anon_sym_assert] = ACTIONS(1428), - [anon_sym_nextcase] = ACTIONS(1428), - [anon_sym_switch] = ACTIONS(1428), - [anon_sym_AMP_AMP] = ACTIONS(1430), - [anon_sym_if] = ACTIONS(1428), - [anon_sym_for] = ACTIONS(1428), - [anon_sym_foreach] = ACTIONS(1428), - [anon_sym_foreach_r] = ACTIONS(1428), - [anon_sym_while] = ACTIONS(1428), - [anon_sym_do] = ACTIONS(1428), - [anon_sym_int] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1428), - [anon_sym_DASH] = ACTIONS(1428), - [anon_sym_STAR] = ACTIONS(1430), - [anon_sym_asm] = ACTIONS(1428), - [anon_sym_DOLLARassert] = ACTIONS(1428), - [anon_sym_DOLLARerror] = ACTIONS(1428), - [anon_sym_DOLLARecho] = ACTIONS(1428), - [anon_sym_DOLLARif] = ACTIONS(1428), - [anon_sym_DOLLARswitch] = ACTIONS(1428), - [anon_sym_DOLLARfor] = ACTIONS(1428), - [anon_sym_DOLLARendfor] = ACTIONS(1428), - [anon_sym_DOLLARforeach] = ACTIONS(1428), - [anon_sym_DOLLARalignof] = ACTIONS(1428), - [anon_sym_DOLLARextnameof] = ACTIONS(1428), - [anon_sym_DOLLARnameof] = ACTIONS(1428), - [anon_sym_DOLLARoffsetof] = ACTIONS(1428), - [anon_sym_DOLLARqnameof] = ACTIONS(1428), - [anon_sym_DOLLARvaconst] = ACTIONS(1428), - [anon_sym_DOLLARvaarg] = ACTIONS(1428), - [anon_sym_DOLLARvaref] = ACTIONS(1428), - [anon_sym_DOLLARvaexpr] = ACTIONS(1428), - [anon_sym_true] = ACTIONS(1428), - [anon_sym_false] = ACTIONS(1428), - [anon_sym_null] = ACTIONS(1428), - [anon_sym_DOLLARvacount] = ACTIONS(1428), - [anon_sym_DOLLARappend] = ACTIONS(1428), - [anon_sym_DOLLARconcat] = ACTIONS(1428), - [anon_sym_DOLLAReval] = ACTIONS(1428), - [anon_sym_DOLLARis_const] = ACTIONS(1428), - [anon_sym_DOLLARsizeof] = ACTIONS(1428), - [anon_sym_DOLLARstringify] = ACTIONS(1428), - [anon_sym_DOLLARand] = ACTIONS(1428), - [anon_sym_DOLLARdefined] = ACTIONS(1428), - [anon_sym_DOLLARembed] = ACTIONS(1428), - [anon_sym_DOLLARor] = ACTIONS(1428), - [anon_sym_DOLLARfeature] = ACTIONS(1428), - [anon_sym_DOLLARassignable] = ACTIONS(1428), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_PLUS_PLUS] = ACTIONS(1430), - [anon_sym_DASH_DASH] = ACTIONS(1430), - [anon_sym_typeid] = ACTIONS(1428), - [anon_sym_LBRACE_PIPE] = ACTIONS(1430), - [anon_sym_void] = ACTIONS(1428), - [anon_sym_bool] = ACTIONS(1428), - [anon_sym_char] = ACTIONS(1428), - [anon_sym_ichar] = ACTIONS(1428), - [anon_sym_short] = ACTIONS(1428), - [anon_sym_ushort] = ACTIONS(1428), - [anon_sym_uint] = ACTIONS(1428), - [anon_sym_long] = ACTIONS(1428), - [anon_sym_ulong] = ACTIONS(1428), - [anon_sym_int128] = ACTIONS(1428), - [anon_sym_uint128] = ACTIONS(1428), - [anon_sym_float] = ACTIONS(1428), - [anon_sym_double] = ACTIONS(1428), - [anon_sym_float16] = ACTIONS(1428), - [anon_sym_bfloat16] = ACTIONS(1428), - [anon_sym_float128] = ACTIONS(1428), - [anon_sym_iptr] = ACTIONS(1428), - [anon_sym_uptr] = ACTIONS(1428), - [anon_sym_isz] = ACTIONS(1428), - [anon_sym_usz] = ACTIONS(1428), - [anon_sym_anyfault] = ACTIONS(1428), - [anon_sym_any] = ACTIONS(1428), - [anon_sym_DOLLARtypeof] = ACTIONS(1428), - [anon_sym_DOLLARtypefrom] = ACTIONS(1428), - [anon_sym_DOLLARvatype] = ACTIONS(1428), - [anon_sym_DOLLARevaltype] = ACTIONS(1428), - [sym_real_literal] = ACTIONS(1430), + [sym_ident] = ACTIONS(1659), + [sym_integer_literal] = ACTIONS(1661), + [anon_sym_SQUOTE] = ACTIONS(1661), + [anon_sym_DQUOTE] = ACTIONS(1661), + [anon_sym_BQUOTE] = ACTIONS(1661), + [sym_bytes_literal] = ACTIONS(1661), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1659), + [sym_at_ident] = ACTIONS(1661), + [sym_hash_ident] = ACTIONS(1661), + [sym_type_ident] = ACTIONS(1661), + [sym_ct_type_ident] = ACTIONS(1661), + [sym_const_ident] = ACTIONS(1659), + [sym_builtin] = ACTIONS(1661), + [anon_sym_LPAREN] = ACTIONS(1661), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_static] = ACTIONS(1659), + [anon_sym_tlocal] = ACTIONS(1659), + [anon_sym_SEMI] = ACTIONS(1661), + [anon_sym_fn] = ACTIONS(1659), + [anon_sym_LBRACE] = ACTIONS(1659), + [anon_sym_const] = ACTIONS(1659), + [anon_sym_var] = ACTIONS(1659), + [anon_sym_return] = ACTIONS(1659), + [anon_sym_continue] = ACTIONS(1659), + [anon_sym_break] = ACTIONS(1659), + [anon_sym_defer] = ACTIONS(1659), + [anon_sym_assert] = ACTIONS(1659), + [anon_sym_nextcase] = ACTIONS(1659), + [anon_sym_switch] = ACTIONS(1659), + [anon_sym_AMP_AMP] = ACTIONS(1661), + [anon_sym_if] = ACTIONS(1659), + [anon_sym_for] = ACTIONS(1659), + [anon_sym_foreach] = ACTIONS(1659), + [anon_sym_foreach_r] = ACTIONS(1659), + [anon_sym_while] = ACTIONS(1659), + [anon_sym_do] = ACTIONS(1659), + [anon_sym_int] = ACTIONS(1659), + [anon_sym_PLUS] = ACTIONS(1659), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_STAR] = ACTIONS(1661), + [anon_sym_asm] = ACTIONS(1659), + [anon_sym_DOLLARassert] = ACTIONS(1659), + [anon_sym_DOLLARerror] = ACTIONS(1659), + [anon_sym_DOLLARecho] = ACTIONS(1659), + [anon_sym_DOLLARif] = ACTIONS(1659), + [anon_sym_DOLLARswitch] = ACTIONS(1659), + [anon_sym_DOLLARfor] = ACTIONS(1659), + [anon_sym_DOLLARforeach] = ACTIONS(1659), + [anon_sym_DOLLARalignof] = ACTIONS(1659), + [anon_sym_DOLLARextnameof] = ACTIONS(1659), + [anon_sym_DOLLARnameof] = ACTIONS(1659), + [anon_sym_DOLLARoffsetof] = ACTIONS(1659), + [anon_sym_DOLLARqnameof] = ACTIONS(1659), + [anon_sym_DOLLARvaconst] = ACTIONS(1659), + [anon_sym_DOLLARvaarg] = ACTIONS(1659), + [anon_sym_DOLLARvaref] = ACTIONS(1659), + [anon_sym_DOLLARvaexpr] = ACTIONS(1659), + [anon_sym_true] = ACTIONS(1659), + [anon_sym_false] = ACTIONS(1659), + [anon_sym_null] = ACTIONS(1659), + [anon_sym_DOLLARvacount] = ACTIONS(1659), + [anon_sym_DOLLARappend] = ACTIONS(1659), + [anon_sym_DOLLARconcat] = ACTIONS(1659), + [anon_sym_DOLLAReval] = ACTIONS(1659), + [anon_sym_DOLLARis_const] = ACTIONS(1659), + [anon_sym_DOLLARsizeof] = ACTIONS(1659), + [anon_sym_DOLLARstringify] = ACTIONS(1659), + [anon_sym_DOLLARand] = ACTIONS(1659), + [anon_sym_DOLLARdefined] = ACTIONS(1659), + [anon_sym_DOLLARembed] = ACTIONS(1659), + [anon_sym_DOLLARor] = ACTIONS(1659), + [anon_sym_DOLLARfeature] = ACTIONS(1659), + [anon_sym_DOLLARassignable] = ACTIONS(1659), + [anon_sym_BANG] = ACTIONS(1661), + [anon_sym_TILDE] = ACTIONS(1661), + [anon_sym_PLUS_PLUS] = ACTIONS(1661), + [anon_sym_DASH_DASH] = ACTIONS(1661), + [anon_sym_typeid] = ACTIONS(1659), + [anon_sym_LBRACE_PIPE] = ACTIONS(1661), + [anon_sym_void] = ACTIONS(1659), + [anon_sym_bool] = ACTIONS(1659), + [anon_sym_char] = ACTIONS(1659), + [anon_sym_ichar] = ACTIONS(1659), + [anon_sym_short] = ACTIONS(1659), + [anon_sym_ushort] = ACTIONS(1659), + [anon_sym_uint] = ACTIONS(1659), + [anon_sym_long] = ACTIONS(1659), + [anon_sym_ulong] = ACTIONS(1659), + [anon_sym_int128] = ACTIONS(1659), + [anon_sym_uint128] = ACTIONS(1659), + [anon_sym_float] = ACTIONS(1659), + [anon_sym_double] = ACTIONS(1659), + [anon_sym_float16] = ACTIONS(1659), + [anon_sym_bfloat16] = ACTIONS(1659), + [anon_sym_float128] = ACTIONS(1659), + [anon_sym_iptr] = ACTIONS(1659), + [anon_sym_uptr] = ACTIONS(1659), + [anon_sym_isz] = ACTIONS(1659), + [anon_sym_usz] = ACTIONS(1659), + [anon_sym_anyfault] = ACTIONS(1659), + [anon_sym_any] = ACTIONS(1659), + [anon_sym_DOLLARtypeof] = ACTIONS(1659), + [anon_sym_DOLLARtypefrom] = ACTIONS(1659), + [anon_sym_DOLLARvatype] = ACTIONS(1659), + [anon_sym_DOLLARevaltype] = ACTIONS(1659), + [sym_real_literal] = ACTIONS(1661), }, [807] = { [sym_line_comment] = STATE(807), [sym_doc_comment] = STATE(807), [sym_block_comment] = STATE(807), - [sym_ident] = ACTIONS(1418), - [sym_integer_literal] = ACTIONS(1420), - [anon_sym_SQUOTE] = ACTIONS(1420), - [anon_sym_DQUOTE] = ACTIONS(1420), - [anon_sym_BQUOTE] = ACTIONS(1420), - [sym_bytes_literal] = ACTIONS(1420), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1418), - [sym_at_ident] = ACTIONS(1420), - [sym_hash_ident] = ACTIONS(1420), - [sym_type_ident] = ACTIONS(1420), - [sym_ct_type_ident] = ACTIONS(1420), - [sym_const_ident] = ACTIONS(1418), - [sym_builtin] = ACTIONS(1420), - [anon_sym_LPAREN] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_static] = ACTIONS(1418), - [anon_sym_tlocal] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym_fn] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_const] = ACTIONS(1418), - [anon_sym_var] = ACTIONS(1418), - [anon_sym_return] = ACTIONS(1418), - [anon_sym_continue] = ACTIONS(1418), - [anon_sym_break] = ACTIONS(1418), - [anon_sym_defer] = ACTIONS(1418), - [anon_sym_assert] = ACTIONS(1418), - [anon_sym_nextcase] = ACTIONS(1418), - [anon_sym_switch] = ACTIONS(1418), - [anon_sym_AMP_AMP] = ACTIONS(1420), - [anon_sym_if] = ACTIONS(1418), - [anon_sym_for] = ACTIONS(1418), - [anon_sym_foreach] = ACTIONS(1418), - [anon_sym_foreach_r] = ACTIONS(1418), - [anon_sym_while] = ACTIONS(1418), - [anon_sym_do] = ACTIONS(1418), - [anon_sym_int] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_asm] = ACTIONS(1418), - [anon_sym_DOLLARassert] = ACTIONS(1418), - [anon_sym_DOLLARerror] = ACTIONS(1418), - [anon_sym_DOLLARecho] = ACTIONS(1418), - [anon_sym_DOLLARif] = ACTIONS(1418), - [anon_sym_DOLLARswitch] = ACTIONS(1418), - [anon_sym_DOLLARfor] = ACTIONS(1418), - [anon_sym_DOLLARendfor] = ACTIONS(1418), - [anon_sym_DOLLARforeach] = ACTIONS(1418), - [anon_sym_DOLLARalignof] = ACTIONS(1418), - [anon_sym_DOLLARextnameof] = ACTIONS(1418), - [anon_sym_DOLLARnameof] = ACTIONS(1418), - [anon_sym_DOLLARoffsetof] = ACTIONS(1418), - [anon_sym_DOLLARqnameof] = ACTIONS(1418), - [anon_sym_DOLLARvaconst] = ACTIONS(1418), - [anon_sym_DOLLARvaarg] = ACTIONS(1418), - [anon_sym_DOLLARvaref] = ACTIONS(1418), - [anon_sym_DOLLARvaexpr] = ACTIONS(1418), - [anon_sym_true] = ACTIONS(1418), - [anon_sym_false] = ACTIONS(1418), - [anon_sym_null] = ACTIONS(1418), - [anon_sym_DOLLARvacount] = ACTIONS(1418), - [anon_sym_DOLLARappend] = ACTIONS(1418), - [anon_sym_DOLLARconcat] = ACTIONS(1418), - [anon_sym_DOLLAReval] = ACTIONS(1418), - [anon_sym_DOLLARis_const] = ACTIONS(1418), - [anon_sym_DOLLARsizeof] = ACTIONS(1418), - [anon_sym_DOLLARstringify] = ACTIONS(1418), - [anon_sym_DOLLARand] = ACTIONS(1418), - [anon_sym_DOLLARdefined] = ACTIONS(1418), - [anon_sym_DOLLARembed] = ACTIONS(1418), - [anon_sym_DOLLARor] = ACTIONS(1418), - [anon_sym_DOLLARfeature] = ACTIONS(1418), - [anon_sym_DOLLARassignable] = ACTIONS(1418), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_TILDE] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_typeid] = ACTIONS(1418), - [anon_sym_LBRACE_PIPE] = ACTIONS(1420), - [anon_sym_void] = ACTIONS(1418), - [anon_sym_bool] = ACTIONS(1418), - [anon_sym_char] = ACTIONS(1418), - [anon_sym_ichar] = ACTIONS(1418), - [anon_sym_short] = ACTIONS(1418), - [anon_sym_ushort] = ACTIONS(1418), - [anon_sym_uint] = ACTIONS(1418), - [anon_sym_long] = ACTIONS(1418), - [anon_sym_ulong] = ACTIONS(1418), - [anon_sym_int128] = ACTIONS(1418), - [anon_sym_uint128] = ACTIONS(1418), - [anon_sym_float] = ACTIONS(1418), - [anon_sym_double] = ACTIONS(1418), - [anon_sym_float16] = ACTIONS(1418), - [anon_sym_bfloat16] = ACTIONS(1418), - [anon_sym_float128] = ACTIONS(1418), - [anon_sym_iptr] = ACTIONS(1418), - [anon_sym_uptr] = ACTIONS(1418), - [anon_sym_isz] = ACTIONS(1418), - [anon_sym_usz] = ACTIONS(1418), - [anon_sym_anyfault] = ACTIONS(1418), - [anon_sym_any] = ACTIONS(1418), - [anon_sym_DOLLARtypeof] = ACTIONS(1418), - [anon_sym_DOLLARtypefrom] = ACTIONS(1418), - [anon_sym_DOLLARvatype] = ACTIONS(1418), - [anon_sym_DOLLARevaltype] = ACTIONS(1418), - [sym_real_literal] = ACTIONS(1420), + [sym_ident] = ACTIONS(1671), + [sym_integer_literal] = ACTIONS(1673), + [anon_sym_SQUOTE] = ACTIONS(1673), + [anon_sym_DQUOTE] = ACTIONS(1673), + [anon_sym_BQUOTE] = ACTIONS(1673), + [sym_bytes_literal] = ACTIONS(1673), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1671), + [sym_at_ident] = ACTIONS(1673), + [sym_hash_ident] = ACTIONS(1673), + [sym_type_ident] = ACTIONS(1673), + [sym_ct_type_ident] = ACTIONS(1673), + [sym_const_ident] = ACTIONS(1671), + [sym_builtin] = ACTIONS(1673), + [anon_sym_LPAREN] = ACTIONS(1673), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1671), + [anon_sym_tlocal] = ACTIONS(1671), + [anon_sym_SEMI] = ACTIONS(1673), + [anon_sym_fn] = ACTIONS(1671), + [anon_sym_LBRACE] = ACTIONS(1671), + [anon_sym_const] = ACTIONS(1671), + [anon_sym_var] = ACTIONS(1671), + [anon_sym_return] = ACTIONS(1671), + [anon_sym_continue] = ACTIONS(1671), + [anon_sym_break] = ACTIONS(1671), + [anon_sym_defer] = ACTIONS(1671), + [anon_sym_assert] = ACTIONS(1671), + [anon_sym_nextcase] = ACTIONS(1671), + [anon_sym_switch] = ACTIONS(1671), + [anon_sym_AMP_AMP] = ACTIONS(1673), + [anon_sym_if] = ACTIONS(1671), + [anon_sym_for] = ACTIONS(1671), + [anon_sym_foreach] = ACTIONS(1671), + [anon_sym_foreach_r] = ACTIONS(1671), + [anon_sym_while] = ACTIONS(1671), + [anon_sym_do] = ACTIONS(1671), + [anon_sym_int] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(1673), + [anon_sym_asm] = ACTIONS(1671), + [anon_sym_DOLLARassert] = ACTIONS(1671), + [anon_sym_DOLLARerror] = ACTIONS(1671), + [anon_sym_DOLLARecho] = ACTIONS(1671), + [anon_sym_DOLLARif] = ACTIONS(1671), + [anon_sym_DOLLARswitch] = ACTIONS(1671), + [anon_sym_DOLLARfor] = ACTIONS(1671), + [anon_sym_DOLLARforeach] = ACTIONS(1671), + [anon_sym_DOLLARalignof] = ACTIONS(1671), + [anon_sym_DOLLARextnameof] = ACTIONS(1671), + [anon_sym_DOLLARnameof] = ACTIONS(1671), + [anon_sym_DOLLARoffsetof] = ACTIONS(1671), + [anon_sym_DOLLARqnameof] = ACTIONS(1671), + [anon_sym_DOLLARvaconst] = ACTIONS(1671), + [anon_sym_DOLLARvaarg] = ACTIONS(1671), + [anon_sym_DOLLARvaref] = ACTIONS(1671), + [anon_sym_DOLLARvaexpr] = ACTIONS(1671), + [anon_sym_true] = ACTIONS(1671), + [anon_sym_false] = ACTIONS(1671), + [anon_sym_null] = ACTIONS(1671), + [anon_sym_DOLLARvacount] = ACTIONS(1671), + [anon_sym_DOLLARappend] = ACTIONS(1671), + [anon_sym_DOLLARconcat] = ACTIONS(1671), + [anon_sym_DOLLAReval] = ACTIONS(1671), + [anon_sym_DOLLARis_const] = ACTIONS(1671), + [anon_sym_DOLLARsizeof] = ACTIONS(1671), + [anon_sym_DOLLARstringify] = ACTIONS(1671), + [anon_sym_DOLLARand] = ACTIONS(1671), + [anon_sym_DOLLARdefined] = ACTIONS(1671), + [anon_sym_DOLLARembed] = ACTIONS(1671), + [anon_sym_DOLLARor] = ACTIONS(1671), + [anon_sym_DOLLARfeature] = ACTIONS(1671), + [anon_sym_DOLLARassignable] = ACTIONS(1671), + [anon_sym_BANG] = ACTIONS(1673), + [anon_sym_TILDE] = ACTIONS(1673), + [anon_sym_PLUS_PLUS] = ACTIONS(1673), + [anon_sym_DASH_DASH] = ACTIONS(1673), + [anon_sym_typeid] = ACTIONS(1671), + [anon_sym_LBRACE_PIPE] = ACTIONS(1673), + [anon_sym_void] = ACTIONS(1671), + [anon_sym_bool] = ACTIONS(1671), + [anon_sym_char] = ACTIONS(1671), + [anon_sym_ichar] = ACTIONS(1671), + [anon_sym_short] = ACTIONS(1671), + [anon_sym_ushort] = ACTIONS(1671), + [anon_sym_uint] = ACTIONS(1671), + [anon_sym_long] = ACTIONS(1671), + [anon_sym_ulong] = ACTIONS(1671), + [anon_sym_int128] = ACTIONS(1671), + [anon_sym_uint128] = ACTIONS(1671), + [anon_sym_float] = ACTIONS(1671), + [anon_sym_double] = ACTIONS(1671), + [anon_sym_float16] = ACTIONS(1671), + [anon_sym_bfloat16] = ACTIONS(1671), + [anon_sym_float128] = ACTIONS(1671), + [anon_sym_iptr] = ACTIONS(1671), + [anon_sym_uptr] = ACTIONS(1671), + [anon_sym_isz] = ACTIONS(1671), + [anon_sym_usz] = ACTIONS(1671), + [anon_sym_anyfault] = ACTIONS(1671), + [anon_sym_any] = ACTIONS(1671), + [anon_sym_DOLLARtypeof] = ACTIONS(1671), + [anon_sym_DOLLARtypefrom] = ACTIONS(1671), + [anon_sym_DOLLARvatype] = ACTIONS(1671), + [anon_sym_DOLLARevaltype] = ACTIONS(1671), + [sym_real_literal] = ACTIONS(1673), }, [808] = { [sym_line_comment] = STATE(808), [sym_doc_comment] = STATE(808), [sym_block_comment] = STATE(808), - [sym_ident] = ACTIONS(1414), - [sym_integer_literal] = ACTIONS(1416), - [anon_sym_SQUOTE] = ACTIONS(1416), - [anon_sym_DQUOTE] = ACTIONS(1416), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_bytes_literal] = ACTIONS(1416), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1414), - [sym_at_ident] = ACTIONS(1416), - [sym_hash_ident] = ACTIONS(1416), - [sym_type_ident] = ACTIONS(1416), - [sym_ct_type_ident] = ACTIONS(1416), - [sym_const_ident] = ACTIONS(1414), - [sym_builtin] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(1416), - [anon_sym_AMP] = ACTIONS(1414), - [anon_sym_static] = ACTIONS(1414), - [anon_sym_tlocal] = ACTIONS(1414), - [anon_sym_SEMI] = ACTIONS(1416), - [anon_sym_fn] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1414), - [anon_sym_const] = ACTIONS(1414), - [anon_sym_var] = ACTIONS(1414), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_continue] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1414), - [anon_sym_defer] = ACTIONS(1414), - [anon_sym_assert] = ACTIONS(1414), - [anon_sym_nextcase] = ACTIONS(1414), - [anon_sym_switch] = ACTIONS(1414), - [anon_sym_AMP_AMP] = ACTIONS(1416), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_for] = ACTIONS(1414), - [anon_sym_foreach] = ACTIONS(1414), - [anon_sym_foreach_r] = ACTIONS(1414), - [anon_sym_while] = ACTIONS(1414), - [anon_sym_do] = ACTIONS(1414), - [anon_sym_int] = ACTIONS(1414), - [anon_sym_PLUS] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_STAR] = ACTIONS(1416), - [anon_sym_asm] = ACTIONS(1414), - [anon_sym_DOLLARassert] = ACTIONS(1414), - [anon_sym_DOLLARerror] = ACTIONS(1414), - [anon_sym_DOLLARecho] = ACTIONS(1414), - [anon_sym_DOLLARif] = ACTIONS(1414), - [anon_sym_DOLLARswitch] = ACTIONS(1414), - [anon_sym_DOLLARfor] = ACTIONS(1414), - [anon_sym_DOLLARendfor] = ACTIONS(1414), - [anon_sym_DOLLARforeach] = ACTIONS(1414), - [anon_sym_DOLLARalignof] = ACTIONS(1414), - [anon_sym_DOLLARextnameof] = ACTIONS(1414), - [anon_sym_DOLLARnameof] = ACTIONS(1414), - [anon_sym_DOLLARoffsetof] = ACTIONS(1414), - [anon_sym_DOLLARqnameof] = ACTIONS(1414), - [anon_sym_DOLLARvaconst] = ACTIONS(1414), - [anon_sym_DOLLARvaarg] = ACTIONS(1414), - [anon_sym_DOLLARvaref] = ACTIONS(1414), - [anon_sym_DOLLARvaexpr] = ACTIONS(1414), - [anon_sym_true] = ACTIONS(1414), - [anon_sym_false] = ACTIONS(1414), - [anon_sym_null] = ACTIONS(1414), - [anon_sym_DOLLARvacount] = ACTIONS(1414), - [anon_sym_DOLLARappend] = ACTIONS(1414), - [anon_sym_DOLLARconcat] = ACTIONS(1414), - [anon_sym_DOLLAReval] = ACTIONS(1414), - [anon_sym_DOLLARis_const] = ACTIONS(1414), - [anon_sym_DOLLARsizeof] = ACTIONS(1414), - [anon_sym_DOLLARstringify] = ACTIONS(1414), - [anon_sym_DOLLARand] = ACTIONS(1414), - [anon_sym_DOLLARdefined] = ACTIONS(1414), - [anon_sym_DOLLARembed] = ACTIONS(1414), - [anon_sym_DOLLARor] = ACTIONS(1414), - [anon_sym_DOLLARfeature] = ACTIONS(1414), - [anon_sym_DOLLARassignable] = ACTIONS(1414), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1416), - [anon_sym_DASH_DASH] = ACTIONS(1416), - [anon_sym_typeid] = ACTIONS(1414), - [anon_sym_LBRACE_PIPE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1414), - [anon_sym_bool] = ACTIONS(1414), - [anon_sym_char] = ACTIONS(1414), - [anon_sym_ichar] = ACTIONS(1414), - [anon_sym_short] = ACTIONS(1414), - [anon_sym_ushort] = ACTIONS(1414), - [anon_sym_uint] = ACTIONS(1414), - [anon_sym_long] = ACTIONS(1414), - [anon_sym_ulong] = ACTIONS(1414), - [anon_sym_int128] = ACTIONS(1414), - [anon_sym_uint128] = ACTIONS(1414), - [anon_sym_float] = ACTIONS(1414), - [anon_sym_double] = ACTIONS(1414), - [anon_sym_float16] = ACTIONS(1414), - [anon_sym_bfloat16] = ACTIONS(1414), - [anon_sym_float128] = ACTIONS(1414), - [anon_sym_iptr] = ACTIONS(1414), - [anon_sym_uptr] = ACTIONS(1414), - [anon_sym_isz] = ACTIONS(1414), - [anon_sym_usz] = ACTIONS(1414), - [anon_sym_anyfault] = ACTIONS(1414), - [anon_sym_any] = ACTIONS(1414), - [anon_sym_DOLLARtypeof] = ACTIONS(1414), - [anon_sym_DOLLARtypefrom] = ACTIONS(1414), - [anon_sym_DOLLARvatype] = ACTIONS(1414), - [anon_sym_DOLLARevaltype] = ACTIONS(1414), - [sym_real_literal] = ACTIONS(1416), + [sym_ident] = ACTIONS(1663), + [sym_integer_literal] = ACTIONS(1665), + [anon_sym_SQUOTE] = ACTIONS(1665), + [anon_sym_DQUOTE] = ACTIONS(1665), + [anon_sym_BQUOTE] = ACTIONS(1665), + [sym_bytes_literal] = ACTIONS(1665), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1663), + [sym_at_ident] = ACTIONS(1665), + [sym_hash_ident] = ACTIONS(1665), + [sym_type_ident] = ACTIONS(1665), + [sym_ct_type_ident] = ACTIONS(1665), + [sym_const_ident] = ACTIONS(1663), + [sym_builtin] = ACTIONS(1665), + [anon_sym_LPAREN] = ACTIONS(1665), + [anon_sym_AMP] = ACTIONS(1663), + [anon_sym_static] = ACTIONS(1663), + [anon_sym_tlocal] = ACTIONS(1663), + [anon_sym_SEMI] = ACTIONS(1665), + [anon_sym_fn] = ACTIONS(1663), + [anon_sym_LBRACE] = ACTIONS(1663), + [anon_sym_const] = ACTIONS(1663), + [anon_sym_var] = ACTIONS(1663), + [anon_sym_return] = ACTIONS(1663), + [anon_sym_continue] = ACTIONS(1663), + [anon_sym_break] = ACTIONS(1663), + [anon_sym_defer] = ACTIONS(1663), + [anon_sym_assert] = ACTIONS(1663), + [anon_sym_nextcase] = ACTIONS(1663), + [anon_sym_switch] = ACTIONS(1663), + [anon_sym_AMP_AMP] = ACTIONS(1665), + [anon_sym_if] = ACTIONS(1663), + [anon_sym_for] = ACTIONS(1663), + [anon_sym_foreach] = ACTIONS(1663), + [anon_sym_foreach_r] = ACTIONS(1663), + [anon_sym_while] = ACTIONS(1663), + [anon_sym_do] = ACTIONS(1663), + [anon_sym_int] = ACTIONS(1663), + [anon_sym_PLUS] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1665), + [anon_sym_asm] = ACTIONS(1663), + [anon_sym_DOLLARassert] = ACTIONS(1663), + [anon_sym_DOLLARerror] = ACTIONS(1663), + [anon_sym_DOLLARecho] = ACTIONS(1663), + [anon_sym_DOLLARif] = ACTIONS(1663), + [anon_sym_DOLLARswitch] = ACTIONS(1663), + [anon_sym_DOLLARfor] = ACTIONS(1663), + [anon_sym_DOLLARforeach] = ACTIONS(1663), + [anon_sym_DOLLARalignof] = ACTIONS(1663), + [anon_sym_DOLLARextnameof] = ACTIONS(1663), + [anon_sym_DOLLARnameof] = ACTIONS(1663), + [anon_sym_DOLLARoffsetof] = ACTIONS(1663), + [anon_sym_DOLLARqnameof] = ACTIONS(1663), + [anon_sym_DOLLARvaconst] = ACTIONS(1663), + [anon_sym_DOLLARvaarg] = ACTIONS(1663), + [anon_sym_DOLLARvaref] = ACTIONS(1663), + [anon_sym_DOLLARvaexpr] = ACTIONS(1663), + [anon_sym_true] = ACTIONS(1663), + [anon_sym_false] = ACTIONS(1663), + [anon_sym_null] = ACTIONS(1663), + [anon_sym_DOLLARvacount] = ACTIONS(1663), + [anon_sym_DOLLARappend] = ACTIONS(1663), + [anon_sym_DOLLARconcat] = ACTIONS(1663), + [anon_sym_DOLLAReval] = ACTIONS(1663), + [anon_sym_DOLLARis_const] = ACTIONS(1663), + [anon_sym_DOLLARsizeof] = ACTIONS(1663), + [anon_sym_DOLLARstringify] = ACTIONS(1663), + [anon_sym_DOLLARand] = ACTIONS(1663), + [anon_sym_DOLLARdefined] = ACTIONS(1663), + [anon_sym_DOLLARembed] = ACTIONS(1663), + [anon_sym_DOLLARor] = ACTIONS(1663), + [anon_sym_DOLLARfeature] = ACTIONS(1663), + [anon_sym_DOLLARassignable] = ACTIONS(1663), + [anon_sym_BANG] = ACTIONS(1665), + [anon_sym_TILDE] = ACTIONS(1665), + [anon_sym_PLUS_PLUS] = ACTIONS(1665), + [anon_sym_DASH_DASH] = ACTIONS(1665), + [anon_sym_typeid] = ACTIONS(1663), + [anon_sym_LBRACE_PIPE] = ACTIONS(1665), + [anon_sym_void] = ACTIONS(1663), + [anon_sym_bool] = ACTIONS(1663), + [anon_sym_char] = ACTIONS(1663), + [anon_sym_ichar] = ACTIONS(1663), + [anon_sym_short] = ACTIONS(1663), + [anon_sym_ushort] = ACTIONS(1663), + [anon_sym_uint] = ACTIONS(1663), + [anon_sym_long] = ACTIONS(1663), + [anon_sym_ulong] = ACTIONS(1663), + [anon_sym_int128] = ACTIONS(1663), + [anon_sym_uint128] = ACTIONS(1663), + [anon_sym_float] = ACTIONS(1663), + [anon_sym_double] = ACTIONS(1663), + [anon_sym_float16] = ACTIONS(1663), + [anon_sym_bfloat16] = ACTIONS(1663), + [anon_sym_float128] = ACTIONS(1663), + [anon_sym_iptr] = ACTIONS(1663), + [anon_sym_uptr] = ACTIONS(1663), + [anon_sym_isz] = ACTIONS(1663), + [anon_sym_usz] = ACTIONS(1663), + [anon_sym_anyfault] = ACTIONS(1663), + [anon_sym_any] = ACTIONS(1663), + [anon_sym_DOLLARtypeof] = ACTIONS(1663), + [anon_sym_DOLLARtypefrom] = ACTIONS(1663), + [anon_sym_DOLLARvatype] = ACTIONS(1663), + [anon_sym_DOLLARevaltype] = ACTIONS(1663), + [sym_real_literal] = ACTIONS(1665), }, [809] = { [sym_line_comment] = STATE(809), [sym_doc_comment] = STATE(809), [sym_block_comment] = STATE(809), - [sym_ident] = ACTIONS(1576), - [sym_integer_literal] = ACTIONS(1578), - [anon_sym_SQUOTE] = ACTIONS(1578), - [anon_sym_DQUOTE] = ACTIONS(1578), - [anon_sym_BQUOTE] = ACTIONS(1578), - [sym_bytes_literal] = ACTIONS(1578), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1576), - [sym_at_ident] = ACTIONS(1578), - [sym_hash_ident] = ACTIONS(1578), - [sym_type_ident] = ACTIONS(1578), - [sym_ct_type_ident] = ACTIONS(1578), - [sym_const_ident] = ACTIONS(1576), - [sym_builtin] = ACTIONS(1578), - [anon_sym_LPAREN] = ACTIONS(1578), - [anon_sym_AMP] = ACTIONS(1576), - [anon_sym_static] = ACTIONS(1576), - [anon_sym_tlocal] = ACTIONS(1576), - [anon_sym_SEMI] = ACTIONS(1578), - [anon_sym_fn] = ACTIONS(1576), - [anon_sym_LBRACE] = ACTIONS(1576), - [anon_sym_const] = ACTIONS(1576), - [anon_sym_var] = ACTIONS(1576), - [anon_sym_return] = ACTIONS(1576), - [anon_sym_continue] = ACTIONS(1576), - [anon_sym_break] = ACTIONS(1576), - [anon_sym_defer] = ACTIONS(1576), - [anon_sym_assert] = ACTIONS(1576), - [anon_sym_nextcase] = ACTIONS(1576), - [anon_sym_switch] = ACTIONS(1576), - [anon_sym_AMP_AMP] = ACTIONS(1578), - [anon_sym_if] = ACTIONS(1576), - [anon_sym_for] = ACTIONS(1576), - [anon_sym_foreach] = ACTIONS(1576), - [anon_sym_foreach_r] = ACTIONS(1576), - [anon_sym_while] = ACTIONS(1576), - [anon_sym_do] = ACTIONS(1576), - [anon_sym_int] = ACTIONS(1576), - [anon_sym_PLUS] = ACTIONS(1576), - [anon_sym_DASH] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(1578), - [anon_sym_asm] = ACTIONS(1576), - [anon_sym_DOLLARassert] = ACTIONS(1576), - [anon_sym_DOLLARerror] = ACTIONS(1576), - [anon_sym_DOLLARecho] = ACTIONS(1576), - [anon_sym_DOLLARif] = ACTIONS(1576), - [anon_sym_DOLLARendif] = ACTIONS(1576), - [anon_sym_DOLLARswitch] = ACTIONS(1576), - [anon_sym_DOLLARfor] = ACTIONS(1576), - [anon_sym_DOLLARforeach] = ACTIONS(1576), - [anon_sym_DOLLARalignof] = ACTIONS(1576), - [anon_sym_DOLLARextnameof] = ACTIONS(1576), - [anon_sym_DOLLARnameof] = ACTIONS(1576), - [anon_sym_DOLLARoffsetof] = ACTIONS(1576), - [anon_sym_DOLLARqnameof] = ACTIONS(1576), - [anon_sym_DOLLARvaconst] = ACTIONS(1576), - [anon_sym_DOLLARvaarg] = ACTIONS(1576), - [anon_sym_DOLLARvaref] = ACTIONS(1576), - [anon_sym_DOLLARvaexpr] = ACTIONS(1576), - [anon_sym_true] = ACTIONS(1576), - [anon_sym_false] = ACTIONS(1576), - [anon_sym_null] = ACTIONS(1576), - [anon_sym_DOLLARvacount] = ACTIONS(1576), - [anon_sym_DOLLARappend] = ACTIONS(1576), - [anon_sym_DOLLARconcat] = ACTIONS(1576), - [anon_sym_DOLLAReval] = ACTIONS(1576), - [anon_sym_DOLLARis_const] = ACTIONS(1576), - [anon_sym_DOLLARsizeof] = ACTIONS(1576), - [anon_sym_DOLLARstringify] = ACTIONS(1576), - [anon_sym_DOLLARand] = ACTIONS(1576), - [anon_sym_DOLLARdefined] = ACTIONS(1576), - [anon_sym_DOLLARembed] = ACTIONS(1576), - [anon_sym_DOLLARor] = ACTIONS(1576), - [anon_sym_DOLLARfeature] = ACTIONS(1576), - [anon_sym_DOLLARassignable] = ACTIONS(1576), - [anon_sym_BANG] = ACTIONS(1578), - [anon_sym_TILDE] = ACTIONS(1578), - [anon_sym_PLUS_PLUS] = ACTIONS(1578), - [anon_sym_DASH_DASH] = ACTIONS(1578), - [anon_sym_typeid] = ACTIONS(1576), - [anon_sym_LBRACE_PIPE] = ACTIONS(1578), - [anon_sym_void] = ACTIONS(1576), - [anon_sym_bool] = ACTIONS(1576), - [anon_sym_char] = ACTIONS(1576), - [anon_sym_ichar] = ACTIONS(1576), - [anon_sym_short] = ACTIONS(1576), - [anon_sym_ushort] = ACTIONS(1576), - [anon_sym_uint] = ACTIONS(1576), - [anon_sym_long] = ACTIONS(1576), - [anon_sym_ulong] = ACTIONS(1576), - [anon_sym_int128] = ACTIONS(1576), - [anon_sym_uint128] = ACTIONS(1576), - [anon_sym_float] = ACTIONS(1576), - [anon_sym_double] = ACTIONS(1576), - [anon_sym_float16] = ACTIONS(1576), - [anon_sym_bfloat16] = ACTIONS(1576), - [anon_sym_float128] = ACTIONS(1576), - [anon_sym_iptr] = ACTIONS(1576), - [anon_sym_uptr] = ACTIONS(1576), - [anon_sym_isz] = ACTIONS(1576), - [anon_sym_usz] = ACTIONS(1576), - [anon_sym_anyfault] = ACTIONS(1576), - [anon_sym_any] = ACTIONS(1576), - [anon_sym_DOLLARtypeof] = ACTIONS(1576), - [anon_sym_DOLLARtypefrom] = ACTIONS(1576), - [anon_sym_DOLLARvatype] = ACTIONS(1576), - [anon_sym_DOLLARevaltype] = ACTIONS(1576), - [sym_real_literal] = ACTIONS(1578), + [sym_ident] = ACTIONS(1667), + [sym_integer_literal] = ACTIONS(1669), + [anon_sym_SQUOTE] = ACTIONS(1669), + [anon_sym_DQUOTE] = ACTIONS(1669), + [anon_sym_BQUOTE] = ACTIONS(1669), + [sym_bytes_literal] = ACTIONS(1669), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1667), + [sym_at_ident] = ACTIONS(1669), + [sym_hash_ident] = ACTIONS(1669), + [sym_type_ident] = ACTIONS(1669), + [sym_ct_type_ident] = ACTIONS(1669), + [sym_const_ident] = ACTIONS(1667), + [sym_builtin] = ACTIONS(1669), + [anon_sym_LPAREN] = ACTIONS(1669), + [anon_sym_AMP] = ACTIONS(1667), + [anon_sym_static] = ACTIONS(1667), + [anon_sym_tlocal] = ACTIONS(1667), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LBRACE] = ACTIONS(1667), + [anon_sym_const] = ACTIONS(1667), + [anon_sym_var] = ACTIONS(1667), + [anon_sym_return] = ACTIONS(1667), + [anon_sym_continue] = ACTIONS(1667), + [anon_sym_break] = ACTIONS(1667), + [anon_sym_defer] = ACTIONS(1667), + [anon_sym_assert] = ACTIONS(1667), + [anon_sym_nextcase] = ACTIONS(1667), + [anon_sym_switch] = ACTIONS(1667), + [anon_sym_AMP_AMP] = ACTIONS(1669), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_for] = ACTIONS(1667), + [anon_sym_foreach] = ACTIONS(1667), + [anon_sym_foreach_r] = ACTIONS(1667), + [anon_sym_while] = ACTIONS(1667), + [anon_sym_do] = ACTIONS(1667), + [anon_sym_int] = ACTIONS(1667), + [anon_sym_PLUS] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_STAR] = ACTIONS(1669), + [anon_sym_asm] = ACTIONS(1667), + [anon_sym_DOLLARassert] = ACTIONS(1667), + [anon_sym_DOLLARerror] = ACTIONS(1667), + [anon_sym_DOLLARecho] = ACTIONS(1667), + [anon_sym_DOLLARif] = ACTIONS(1667), + [anon_sym_DOLLARswitch] = ACTIONS(1667), + [anon_sym_DOLLARfor] = ACTIONS(1667), + [anon_sym_DOLLARforeach] = ACTIONS(1667), + [anon_sym_DOLLARalignof] = ACTIONS(1667), + [anon_sym_DOLLARextnameof] = ACTIONS(1667), + [anon_sym_DOLLARnameof] = ACTIONS(1667), + [anon_sym_DOLLARoffsetof] = ACTIONS(1667), + [anon_sym_DOLLARqnameof] = ACTIONS(1667), + [anon_sym_DOLLARvaconst] = ACTIONS(1667), + [anon_sym_DOLLARvaarg] = ACTIONS(1667), + [anon_sym_DOLLARvaref] = ACTIONS(1667), + [anon_sym_DOLLARvaexpr] = ACTIONS(1667), + [anon_sym_true] = ACTIONS(1667), + [anon_sym_false] = ACTIONS(1667), + [anon_sym_null] = ACTIONS(1667), + [anon_sym_DOLLARvacount] = ACTIONS(1667), + [anon_sym_DOLLARappend] = ACTIONS(1667), + [anon_sym_DOLLARconcat] = ACTIONS(1667), + [anon_sym_DOLLAReval] = ACTIONS(1667), + [anon_sym_DOLLARis_const] = ACTIONS(1667), + [anon_sym_DOLLARsizeof] = ACTIONS(1667), + [anon_sym_DOLLARstringify] = ACTIONS(1667), + [anon_sym_DOLLARand] = ACTIONS(1667), + [anon_sym_DOLLARdefined] = ACTIONS(1667), + [anon_sym_DOLLARembed] = ACTIONS(1667), + [anon_sym_DOLLARor] = ACTIONS(1667), + [anon_sym_DOLLARfeature] = ACTIONS(1667), + [anon_sym_DOLLARassignable] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1669), + [anon_sym_TILDE] = ACTIONS(1669), + [anon_sym_PLUS_PLUS] = ACTIONS(1669), + [anon_sym_DASH_DASH] = ACTIONS(1669), + [anon_sym_typeid] = ACTIONS(1667), + [anon_sym_LBRACE_PIPE] = ACTIONS(1669), + [anon_sym_void] = ACTIONS(1667), + [anon_sym_bool] = ACTIONS(1667), + [anon_sym_char] = ACTIONS(1667), + [anon_sym_ichar] = ACTIONS(1667), + [anon_sym_short] = ACTIONS(1667), + [anon_sym_ushort] = ACTIONS(1667), + [anon_sym_uint] = ACTIONS(1667), + [anon_sym_long] = ACTIONS(1667), + [anon_sym_ulong] = ACTIONS(1667), + [anon_sym_int128] = ACTIONS(1667), + [anon_sym_uint128] = ACTIONS(1667), + [anon_sym_float] = ACTIONS(1667), + [anon_sym_double] = ACTIONS(1667), + [anon_sym_float16] = ACTIONS(1667), + [anon_sym_bfloat16] = ACTIONS(1667), + [anon_sym_float128] = ACTIONS(1667), + [anon_sym_iptr] = ACTIONS(1667), + [anon_sym_uptr] = ACTIONS(1667), + [anon_sym_isz] = ACTIONS(1667), + [anon_sym_usz] = ACTIONS(1667), + [anon_sym_anyfault] = ACTIONS(1667), + [anon_sym_any] = ACTIONS(1667), + [anon_sym_DOLLARtypeof] = ACTIONS(1667), + [anon_sym_DOLLARtypefrom] = ACTIONS(1667), + [anon_sym_DOLLARvatype] = ACTIONS(1667), + [anon_sym_DOLLARevaltype] = ACTIONS(1667), + [sym_real_literal] = ACTIONS(1669), }, [810] = { [sym_line_comment] = STATE(810), [sym_doc_comment] = STATE(810), [sym_block_comment] = STATE(810), - [sym_ident] = ACTIONS(1476), - [sym_integer_literal] = ACTIONS(1478), - [anon_sym_SQUOTE] = ACTIONS(1478), - [anon_sym_DQUOTE] = ACTIONS(1478), - [anon_sym_BQUOTE] = ACTIONS(1478), - [sym_bytes_literal] = ACTIONS(1478), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1476), - [sym_at_ident] = ACTIONS(1478), - [sym_hash_ident] = ACTIONS(1478), - [sym_type_ident] = ACTIONS(1478), - [sym_ct_type_ident] = ACTIONS(1478), - [sym_const_ident] = ACTIONS(1476), - [sym_builtin] = ACTIONS(1478), - [anon_sym_LPAREN] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_static] = ACTIONS(1476), - [anon_sym_tlocal] = ACTIONS(1476), - [anon_sym_SEMI] = ACTIONS(1478), - [anon_sym_fn] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1476), - [anon_sym_const] = ACTIONS(1476), - [anon_sym_var] = ACTIONS(1476), - [anon_sym_return] = ACTIONS(1476), - [anon_sym_continue] = ACTIONS(1476), - [anon_sym_break] = ACTIONS(1476), - [anon_sym_defer] = ACTIONS(1476), - [anon_sym_assert] = ACTIONS(1476), - [anon_sym_nextcase] = ACTIONS(1476), - [anon_sym_switch] = ACTIONS(1476), - [anon_sym_AMP_AMP] = ACTIONS(1478), - [anon_sym_if] = ACTIONS(1476), - [anon_sym_for] = ACTIONS(1476), - [anon_sym_foreach] = ACTIONS(1476), - [anon_sym_foreach_r] = ACTIONS(1476), - [anon_sym_while] = ACTIONS(1476), - [anon_sym_do] = ACTIONS(1476), - [anon_sym_int] = ACTIONS(1476), - [anon_sym_PLUS] = ACTIONS(1476), - [anon_sym_DASH] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_asm] = ACTIONS(1476), - [anon_sym_DOLLARassert] = ACTIONS(1476), - [anon_sym_DOLLARerror] = ACTIONS(1476), - [anon_sym_DOLLARecho] = ACTIONS(1476), - [anon_sym_DOLLARif] = ACTIONS(1476), - [anon_sym_DOLLARendif] = ACTIONS(1476), - [anon_sym_DOLLARswitch] = ACTIONS(1476), - [anon_sym_DOLLARfor] = ACTIONS(1476), - [anon_sym_DOLLARforeach] = ACTIONS(1476), - [anon_sym_DOLLARalignof] = ACTIONS(1476), - [anon_sym_DOLLARextnameof] = ACTIONS(1476), - [anon_sym_DOLLARnameof] = ACTIONS(1476), - [anon_sym_DOLLARoffsetof] = ACTIONS(1476), - [anon_sym_DOLLARqnameof] = ACTIONS(1476), - [anon_sym_DOLLARvaconst] = ACTIONS(1476), - [anon_sym_DOLLARvaarg] = ACTIONS(1476), - [anon_sym_DOLLARvaref] = ACTIONS(1476), - [anon_sym_DOLLARvaexpr] = ACTIONS(1476), - [anon_sym_true] = ACTIONS(1476), - [anon_sym_false] = ACTIONS(1476), - [anon_sym_null] = ACTIONS(1476), - [anon_sym_DOLLARvacount] = ACTIONS(1476), - [anon_sym_DOLLARappend] = ACTIONS(1476), - [anon_sym_DOLLARconcat] = ACTIONS(1476), - [anon_sym_DOLLAReval] = ACTIONS(1476), - [anon_sym_DOLLARis_const] = ACTIONS(1476), - [anon_sym_DOLLARsizeof] = ACTIONS(1476), - [anon_sym_DOLLARstringify] = ACTIONS(1476), - [anon_sym_DOLLARand] = ACTIONS(1476), - [anon_sym_DOLLARdefined] = ACTIONS(1476), - [anon_sym_DOLLARembed] = ACTIONS(1476), - [anon_sym_DOLLARor] = ACTIONS(1476), - [anon_sym_DOLLARfeature] = ACTIONS(1476), - [anon_sym_DOLLARassignable] = ACTIONS(1476), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_TILDE] = ACTIONS(1478), - [anon_sym_PLUS_PLUS] = ACTIONS(1478), - [anon_sym_DASH_DASH] = ACTIONS(1478), - [anon_sym_typeid] = ACTIONS(1476), - [anon_sym_LBRACE_PIPE] = ACTIONS(1478), - [anon_sym_void] = ACTIONS(1476), - [anon_sym_bool] = ACTIONS(1476), - [anon_sym_char] = ACTIONS(1476), - [anon_sym_ichar] = ACTIONS(1476), - [anon_sym_short] = ACTIONS(1476), - [anon_sym_ushort] = ACTIONS(1476), - [anon_sym_uint] = ACTIONS(1476), - [anon_sym_long] = ACTIONS(1476), - [anon_sym_ulong] = ACTIONS(1476), - [anon_sym_int128] = ACTIONS(1476), - [anon_sym_uint128] = ACTIONS(1476), - [anon_sym_float] = ACTIONS(1476), - [anon_sym_double] = ACTIONS(1476), - [anon_sym_float16] = ACTIONS(1476), - [anon_sym_bfloat16] = ACTIONS(1476), - [anon_sym_float128] = ACTIONS(1476), - [anon_sym_iptr] = ACTIONS(1476), - [anon_sym_uptr] = ACTIONS(1476), - [anon_sym_isz] = ACTIONS(1476), - [anon_sym_usz] = ACTIONS(1476), - [anon_sym_anyfault] = ACTIONS(1476), - [anon_sym_any] = ACTIONS(1476), - [anon_sym_DOLLARtypeof] = ACTIONS(1476), - [anon_sym_DOLLARtypefrom] = ACTIONS(1476), - [anon_sym_DOLLARvatype] = ACTIONS(1476), - [anon_sym_DOLLARevaltype] = ACTIONS(1476), - [sym_real_literal] = ACTIONS(1478), + [ts_builtin_sym_end] = ACTIONS(1353), + [sym_ident] = ACTIONS(1351), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_type_ident] = ACTIONS(1353), + [sym_ct_type_ident] = ACTIONS(1353), + [anon_sym_COMMA] = ACTIONS(1353), + [anon_sym_LPAREN_LT] = ACTIONS(1353), + [anon_sym_GT_RPAREN] = ACTIONS(1353), + [anon_sym_EQ] = ACTIONS(1351), + [anon_sym_LPAREN] = ACTIONS(1351), + [anon_sym_RPAREN] = ACTIONS(1353), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_LBRACK] = ACTIONS(1353), + [anon_sym_RBRACK] = ACTIONS(1353), + [anon_sym_tlocal] = ACTIONS(1351), + [anon_sym_extern] = ACTIONS(1351), + [anon_sym_module] = ACTIONS(1351), + [anon_sym_SEMI] = ACTIONS(1353), + [anon_sym_import] = ACTIONS(1351), + [anon_sym_fn] = ACTIONS(1351), + [anon_sym_RBRACE] = ACTIONS(1353), + [anon_sym_def] = ACTIONS(1351), + [anon_sym_distinct] = ACTIONS(1351), + [anon_sym_const] = ACTIONS(1351), + [anon_sym_struct] = ACTIONS(1351), + [anon_sym_union] = ACTIONS(1351), + [anon_sym_bitstruct] = ACTIONS(1351), + [anon_sym_COLON] = ACTIONS(1353), + [anon_sym_DOT_DOT] = ACTIONS(1353), + [anon_sym_fault] = ACTIONS(1351), + [anon_sym_enum] = ACTIONS(1351), + [anon_sym_interface] = ACTIONS(1351), + [anon_sym_DOT] = ACTIONS(1351), + [anon_sym_macro] = ACTIONS(1351), + [anon_sym_AMP_AMP] = ACTIONS(1353), + [anon_sym_while] = ACTIONS(1351), + [anon_sym_int] = ACTIONS(1351), + [anon_sym_PLUS] = ACTIONS(1351), + [anon_sym_DASH] = ACTIONS(1351), + [anon_sym_LT_LT] = ACTIONS(1351), + [anon_sym_GT_GT] = ACTIONS(1351), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_DOLLARassert] = ACTIONS(1353), + [anon_sym_DOLLARerror] = ACTIONS(1353), + [anon_sym_DOLLARinclude] = ACTIONS(1353), + [anon_sym_DOLLARexec] = ACTIONS(1353), + [anon_sym_DOLLARecho] = ACTIONS(1353), + [anon_sym_PLUS_EQ] = ACTIONS(1353), + [anon_sym_DASH_EQ] = ACTIONS(1353), + [anon_sym_STAR_EQ] = ACTIONS(1353), + [anon_sym_SLASH_EQ] = ACTIONS(1353), + [anon_sym_PERCENT_EQ] = ACTIONS(1353), + [anon_sym_LT_LT_EQ] = ACTIONS(1353), + [anon_sym_GT_GT_EQ] = ACTIONS(1353), + [anon_sym_AMP_EQ] = ACTIONS(1353), + [anon_sym_CARET_EQ] = ACTIONS(1353), + [anon_sym_PIPE_EQ] = ACTIONS(1353), + [anon_sym_QMARK] = ACTIONS(1351), + [anon_sym_QMARK_COLON] = ACTIONS(1353), + [anon_sym_QMARK_QMARK] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1351), + [anon_sym_PLUS_PLUS] = ACTIONS(1353), + [anon_sym_DASH_DASH] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(1351), + [anon_sym_PERCENT] = ACTIONS(1351), + [anon_sym_PIPE] = ACTIONS(1351), + [anon_sym_CARET] = ACTIONS(1351), + [anon_sym_EQ_EQ] = ACTIONS(1353), + [anon_sym_BANG_EQ] = ACTIONS(1353), + [anon_sym_GT] = ACTIONS(1351), + [anon_sym_GT_EQ] = ACTIONS(1353), + [anon_sym_LT_EQ] = ACTIONS(1353), + [anon_sym_LT] = ACTIONS(1351), + [anon_sym_PIPE_PIPE] = ACTIONS(1353), + [anon_sym_BANG_BANG] = ACTIONS(1353), + [anon_sym_typeid] = ACTIONS(1351), + [anon_sym_void] = ACTIONS(1351), + [anon_sym_bool] = ACTIONS(1351), + [anon_sym_char] = ACTIONS(1351), + [anon_sym_ichar] = ACTIONS(1351), + [anon_sym_short] = ACTIONS(1351), + [anon_sym_ushort] = ACTIONS(1351), + [anon_sym_uint] = ACTIONS(1351), + [anon_sym_long] = ACTIONS(1351), + [anon_sym_ulong] = ACTIONS(1351), + [anon_sym_int128] = ACTIONS(1351), + [anon_sym_uint128] = ACTIONS(1351), + [anon_sym_float] = ACTIONS(1351), + [anon_sym_double] = ACTIONS(1351), + [anon_sym_float16] = ACTIONS(1351), + [anon_sym_bfloat16] = ACTIONS(1351), + [anon_sym_float128] = ACTIONS(1351), + [anon_sym_iptr] = ACTIONS(1351), + [anon_sym_uptr] = ACTIONS(1351), + [anon_sym_isz] = ACTIONS(1351), + [anon_sym_usz] = ACTIONS(1351), + [anon_sym_anyfault] = ACTIONS(1351), + [anon_sym_any] = ACTIONS(1351), + [anon_sym_DOLLARtypeof] = ACTIONS(1353), + [anon_sym_DOLLARtypefrom] = ACTIONS(1353), + [anon_sym_DOLLARvatype] = ACTIONS(1353), + [anon_sym_DOLLARevaltype] = ACTIONS(1353), + [anon_sym_GT_RBRACK] = ACTIONS(1353), }, [811] = { [sym_line_comment] = STATE(811), [sym_doc_comment] = STATE(811), [sym_block_comment] = STATE(811), - [sym_ident] = ACTIONS(1402), - [sym_integer_literal] = ACTIONS(1404), - [anon_sym_SQUOTE] = ACTIONS(1404), - [anon_sym_DQUOTE] = ACTIONS(1404), - [anon_sym_BQUOTE] = ACTIONS(1404), - [sym_bytes_literal] = ACTIONS(1404), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1402), - [sym_at_ident] = ACTIONS(1404), - [sym_hash_ident] = ACTIONS(1404), - [sym_type_ident] = ACTIONS(1404), - [sym_ct_type_ident] = ACTIONS(1404), - [sym_const_ident] = ACTIONS(1402), - [sym_builtin] = ACTIONS(1404), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_AMP] = ACTIONS(1402), - [anon_sym_static] = ACTIONS(1402), - [anon_sym_tlocal] = ACTIONS(1402), - [anon_sym_SEMI] = ACTIONS(1404), - [anon_sym_fn] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1402), - [anon_sym_const] = ACTIONS(1402), - [anon_sym_var] = ACTIONS(1402), - [anon_sym_return] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [anon_sym_break] = ACTIONS(1402), - [anon_sym_defer] = ACTIONS(1402), - [anon_sym_assert] = ACTIONS(1402), - [anon_sym_nextcase] = ACTIONS(1402), - [anon_sym_switch] = ACTIONS(1402), - [anon_sym_AMP_AMP] = ACTIONS(1404), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_for] = ACTIONS(1402), - [anon_sym_foreach] = ACTIONS(1402), - [anon_sym_foreach_r] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1402), - [anon_sym_do] = ACTIONS(1402), - [anon_sym_int] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1402), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_STAR] = ACTIONS(1404), - [anon_sym_asm] = ACTIONS(1402), - [anon_sym_DOLLARassert] = ACTIONS(1402), - [anon_sym_DOLLARerror] = ACTIONS(1402), - [anon_sym_DOLLARecho] = ACTIONS(1402), - [anon_sym_DOLLARif] = ACTIONS(1402), - [anon_sym_DOLLARswitch] = ACTIONS(1402), - [anon_sym_DOLLARfor] = ACTIONS(1402), - [anon_sym_DOLLARendfor] = ACTIONS(1402), - [anon_sym_DOLLARforeach] = ACTIONS(1402), - [anon_sym_DOLLARalignof] = ACTIONS(1402), - [anon_sym_DOLLARextnameof] = ACTIONS(1402), - [anon_sym_DOLLARnameof] = ACTIONS(1402), - [anon_sym_DOLLARoffsetof] = ACTIONS(1402), - [anon_sym_DOLLARqnameof] = ACTIONS(1402), - [anon_sym_DOLLARvaconst] = ACTIONS(1402), - [anon_sym_DOLLARvaarg] = ACTIONS(1402), - [anon_sym_DOLLARvaref] = ACTIONS(1402), - [anon_sym_DOLLARvaexpr] = ACTIONS(1402), - [anon_sym_true] = ACTIONS(1402), - [anon_sym_false] = ACTIONS(1402), - [anon_sym_null] = ACTIONS(1402), - [anon_sym_DOLLARvacount] = ACTIONS(1402), - [anon_sym_DOLLARappend] = ACTIONS(1402), - [anon_sym_DOLLARconcat] = ACTIONS(1402), - [anon_sym_DOLLAReval] = ACTIONS(1402), - [anon_sym_DOLLARis_const] = ACTIONS(1402), - [anon_sym_DOLLARsizeof] = ACTIONS(1402), - [anon_sym_DOLLARstringify] = ACTIONS(1402), - [anon_sym_DOLLARand] = ACTIONS(1402), - [anon_sym_DOLLARdefined] = ACTIONS(1402), - [anon_sym_DOLLARembed] = ACTIONS(1402), - [anon_sym_DOLLARor] = ACTIONS(1402), - [anon_sym_DOLLARfeature] = ACTIONS(1402), - [anon_sym_DOLLARassignable] = ACTIONS(1402), - [anon_sym_BANG] = ACTIONS(1404), - [anon_sym_TILDE] = ACTIONS(1404), - [anon_sym_PLUS_PLUS] = ACTIONS(1404), - [anon_sym_DASH_DASH] = ACTIONS(1404), - [anon_sym_typeid] = ACTIONS(1402), - [anon_sym_LBRACE_PIPE] = ACTIONS(1404), - [anon_sym_void] = ACTIONS(1402), - [anon_sym_bool] = ACTIONS(1402), - [anon_sym_char] = ACTIONS(1402), - [anon_sym_ichar] = ACTIONS(1402), - [anon_sym_short] = ACTIONS(1402), - [anon_sym_ushort] = ACTIONS(1402), - [anon_sym_uint] = ACTIONS(1402), - [anon_sym_long] = ACTIONS(1402), - [anon_sym_ulong] = ACTIONS(1402), - [anon_sym_int128] = ACTIONS(1402), - [anon_sym_uint128] = ACTIONS(1402), - [anon_sym_float] = ACTIONS(1402), - [anon_sym_double] = ACTIONS(1402), - [anon_sym_float16] = ACTIONS(1402), - [anon_sym_bfloat16] = ACTIONS(1402), - [anon_sym_float128] = ACTIONS(1402), - [anon_sym_iptr] = ACTIONS(1402), - [anon_sym_uptr] = ACTIONS(1402), - [anon_sym_isz] = ACTIONS(1402), - [anon_sym_usz] = ACTIONS(1402), - [anon_sym_anyfault] = ACTIONS(1402), - [anon_sym_any] = ACTIONS(1402), - [anon_sym_DOLLARtypeof] = ACTIONS(1402), - [anon_sym_DOLLARtypefrom] = ACTIONS(1402), - [anon_sym_DOLLARvatype] = ACTIONS(1402), - [anon_sym_DOLLARevaltype] = ACTIONS(1402), - [sym_real_literal] = ACTIONS(1404), + [ts_builtin_sym_end] = ACTIONS(1181), + [sym_ident] = ACTIONS(1179), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_type_ident] = ACTIONS(1181), + [sym_ct_type_ident] = ACTIONS(1181), + [anon_sym_COMMA] = ACTIONS(1181), + [anon_sym_LPAREN_LT] = ACTIONS(1181), + [anon_sym_GT_RPAREN] = ACTIONS(1181), + [anon_sym_EQ] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_RPAREN] = ACTIONS(1181), + [anon_sym_AMP] = ACTIONS(1179), + [anon_sym_LBRACK] = ACTIONS(1181), + [anon_sym_RBRACK] = ACTIONS(1181), + [anon_sym_tlocal] = ACTIONS(1179), + [anon_sym_extern] = ACTIONS(1179), + [anon_sym_module] = ACTIONS(1179), + [anon_sym_SEMI] = ACTIONS(1181), + [anon_sym_import] = ACTIONS(1179), + [anon_sym_fn] = ACTIONS(1179), + [anon_sym_RBRACE] = ACTIONS(1181), + [anon_sym_def] = ACTIONS(1179), + [anon_sym_distinct] = ACTIONS(1179), + [anon_sym_const] = ACTIONS(1179), + [anon_sym_struct] = ACTIONS(1179), + [anon_sym_union] = ACTIONS(1179), + [anon_sym_bitstruct] = ACTIONS(1179), + [anon_sym_COLON] = ACTIONS(1181), + [anon_sym_DOT_DOT] = ACTIONS(1181), + [anon_sym_fault] = ACTIONS(1179), + [anon_sym_enum] = ACTIONS(1179), + [anon_sym_interface] = ACTIONS(1179), + [anon_sym_DOT] = ACTIONS(1179), + [anon_sym_macro] = ACTIONS(1179), + [anon_sym_AMP_AMP] = ACTIONS(1181), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_int] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1179), + [anon_sym_LT_LT] = ACTIONS(1179), + [anon_sym_GT_GT] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1179), + [anon_sym_DOLLARassert] = ACTIONS(1181), + [anon_sym_DOLLARerror] = ACTIONS(1181), + [anon_sym_DOLLARinclude] = ACTIONS(1181), + [anon_sym_DOLLARexec] = ACTIONS(1181), + [anon_sym_DOLLARecho] = ACTIONS(1181), + [anon_sym_PLUS_EQ] = ACTIONS(1181), + [anon_sym_DASH_EQ] = ACTIONS(1181), + [anon_sym_STAR_EQ] = ACTIONS(1181), + [anon_sym_SLASH_EQ] = ACTIONS(1181), + [anon_sym_PERCENT_EQ] = ACTIONS(1181), + [anon_sym_LT_LT_EQ] = ACTIONS(1181), + [anon_sym_GT_GT_EQ] = ACTIONS(1181), + [anon_sym_AMP_EQ] = ACTIONS(1181), + [anon_sym_CARET_EQ] = ACTIONS(1181), + [anon_sym_PIPE_EQ] = ACTIONS(1181), + [anon_sym_QMARK] = ACTIONS(1179), + [anon_sym_QMARK_COLON] = ACTIONS(1181), + [anon_sym_QMARK_QMARK] = ACTIONS(1181), + [anon_sym_BANG] = ACTIONS(1179), + [anon_sym_PLUS_PLUS] = ACTIONS(1181), + [anon_sym_DASH_DASH] = ACTIONS(1181), + [anon_sym_SLASH] = ACTIONS(1179), + [anon_sym_PERCENT] = ACTIONS(1179), + [anon_sym_PIPE] = ACTIONS(1179), + [anon_sym_CARET] = ACTIONS(1179), + [anon_sym_EQ_EQ] = ACTIONS(1181), + [anon_sym_BANG_EQ] = ACTIONS(1181), + [anon_sym_GT] = ACTIONS(1179), + [anon_sym_GT_EQ] = ACTIONS(1181), + [anon_sym_LT_EQ] = ACTIONS(1181), + [anon_sym_LT] = ACTIONS(1179), + [anon_sym_PIPE_PIPE] = ACTIONS(1181), + [anon_sym_BANG_BANG] = ACTIONS(1181), + [anon_sym_typeid] = ACTIONS(1179), + [anon_sym_void] = ACTIONS(1179), + [anon_sym_bool] = ACTIONS(1179), + [anon_sym_char] = ACTIONS(1179), + [anon_sym_ichar] = ACTIONS(1179), + [anon_sym_short] = ACTIONS(1179), + [anon_sym_ushort] = ACTIONS(1179), + [anon_sym_uint] = ACTIONS(1179), + [anon_sym_long] = ACTIONS(1179), + [anon_sym_ulong] = ACTIONS(1179), + [anon_sym_int128] = ACTIONS(1179), + [anon_sym_uint128] = ACTIONS(1179), + [anon_sym_float] = ACTIONS(1179), + [anon_sym_double] = ACTIONS(1179), + [anon_sym_float16] = ACTIONS(1179), + [anon_sym_bfloat16] = ACTIONS(1179), + [anon_sym_float128] = ACTIONS(1179), + [anon_sym_iptr] = ACTIONS(1179), + [anon_sym_uptr] = ACTIONS(1179), + [anon_sym_isz] = ACTIONS(1179), + [anon_sym_usz] = ACTIONS(1179), + [anon_sym_anyfault] = ACTIONS(1179), + [anon_sym_any] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1181), + [anon_sym_DOLLARtypefrom] = ACTIONS(1181), + [anon_sym_DOLLARvatype] = ACTIONS(1181), + [anon_sym_DOLLARevaltype] = ACTIONS(1181), + [anon_sym_GT_RBRACK] = ACTIONS(1181), }, [812] = { [sym_line_comment] = STATE(812), [sym_doc_comment] = STATE(812), [sym_block_comment] = STATE(812), - [sym_ident] = ACTIONS(1686), - [sym_integer_literal] = ACTIONS(1688), - [anon_sym_SQUOTE] = ACTIONS(1688), - [anon_sym_DQUOTE] = ACTIONS(1688), - [anon_sym_BQUOTE] = ACTIONS(1688), - [sym_bytes_literal] = ACTIONS(1688), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1686), - [sym_at_ident] = ACTIONS(1688), - [sym_hash_ident] = ACTIONS(1688), - [sym_type_ident] = ACTIONS(1688), - [sym_ct_type_ident] = ACTIONS(1688), - [sym_const_ident] = ACTIONS(1686), - [sym_builtin] = ACTIONS(1688), - [anon_sym_LPAREN] = ACTIONS(1688), - [anon_sym_AMP] = ACTIONS(1686), - [anon_sym_static] = ACTIONS(1686), - [anon_sym_tlocal] = ACTIONS(1686), - [anon_sym_SEMI] = ACTIONS(1688), - [anon_sym_fn] = ACTIONS(1686), - [anon_sym_LBRACE] = ACTIONS(1686), - [anon_sym_const] = ACTIONS(1686), - [anon_sym_var] = ACTIONS(1686), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(1686), - [anon_sym_break] = ACTIONS(1686), - [anon_sym_defer] = ACTIONS(1686), - [anon_sym_assert] = ACTIONS(1686), - [anon_sym_nextcase] = ACTIONS(1686), - [anon_sym_switch] = ACTIONS(1686), - [anon_sym_AMP_AMP] = ACTIONS(1688), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_for] = ACTIONS(1686), - [anon_sym_foreach] = ACTIONS(1686), - [anon_sym_foreach_r] = ACTIONS(1686), - [anon_sym_while] = ACTIONS(1686), - [anon_sym_do] = ACTIONS(1686), - [anon_sym_int] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(1688), - [anon_sym_asm] = ACTIONS(1686), - [anon_sym_DOLLARassert] = ACTIONS(1686), - [anon_sym_DOLLARerror] = ACTIONS(1686), - [anon_sym_DOLLARecho] = ACTIONS(1686), - [anon_sym_DOLLARif] = ACTIONS(1686), - [anon_sym_DOLLARswitch] = ACTIONS(1686), - [anon_sym_DOLLARfor] = ACTIONS(1686), - [anon_sym_DOLLARendfor] = ACTIONS(1686), - [anon_sym_DOLLARforeach] = ACTIONS(1686), - [anon_sym_DOLLARalignof] = ACTIONS(1686), - [anon_sym_DOLLARextnameof] = ACTIONS(1686), - [anon_sym_DOLLARnameof] = ACTIONS(1686), - [anon_sym_DOLLARoffsetof] = ACTIONS(1686), - [anon_sym_DOLLARqnameof] = ACTIONS(1686), - [anon_sym_DOLLARvaconst] = ACTIONS(1686), - [anon_sym_DOLLARvaarg] = ACTIONS(1686), - [anon_sym_DOLLARvaref] = ACTIONS(1686), - [anon_sym_DOLLARvaexpr] = ACTIONS(1686), - [anon_sym_true] = ACTIONS(1686), - [anon_sym_false] = ACTIONS(1686), - [anon_sym_null] = ACTIONS(1686), - [anon_sym_DOLLARvacount] = ACTIONS(1686), - [anon_sym_DOLLARappend] = ACTIONS(1686), - [anon_sym_DOLLARconcat] = ACTIONS(1686), - [anon_sym_DOLLAReval] = ACTIONS(1686), - [anon_sym_DOLLARis_const] = ACTIONS(1686), - [anon_sym_DOLLARsizeof] = ACTIONS(1686), - [anon_sym_DOLLARstringify] = ACTIONS(1686), - [anon_sym_DOLLARand] = ACTIONS(1686), - [anon_sym_DOLLARdefined] = ACTIONS(1686), - [anon_sym_DOLLARembed] = ACTIONS(1686), - [anon_sym_DOLLARor] = ACTIONS(1686), - [anon_sym_DOLLARfeature] = ACTIONS(1686), - [anon_sym_DOLLARassignable] = ACTIONS(1686), - [anon_sym_BANG] = ACTIONS(1688), - [anon_sym_TILDE] = ACTIONS(1688), - [anon_sym_PLUS_PLUS] = ACTIONS(1688), - [anon_sym_DASH_DASH] = ACTIONS(1688), - [anon_sym_typeid] = ACTIONS(1686), - [anon_sym_LBRACE_PIPE] = ACTIONS(1688), - [anon_sym_void] = ACTIONS(1686), - [anon_sym_bool] = ACTIONS(1686), - [anon_sym_char] = ACTIONS(1686), - [anon_sym_ichar] = ACTIONS(1686), - [anon_sym_short] = ACTIONS(1686), - [anon_sym_ushort] = ACTIONS(1686), - [anon_sym_uint] = ACTIONS(1686), - [anon_sym_long] = ACTIONS(1686), - [anon_sym_ulong] = ACTIONS(1686), - [anon_sym_int128] = ACTIONS(1686), - [anon_sym_uint128] = ACTIONS(1686), - [anon_sym_float] = ACTIONS(1686), - [anon_sym_double] = ACTIONS(1686), - [anon_sym_float16] = ACTIONS(1686), - [anon_sym_bfloat16] = ACTIONS(1686), - [anon_sym_float128] = ACTIONS(1686), - [anon_sym_iptr] = ACTIONS(1686), - [anon_sym_uptr] = ACTIONS(1686), - [anon_sym_isz] = ACTIONS(1686), - [anon_sym_usz] = ACTIONS(1686), - [anon_sym_anyfault] = ACTIONS(1686), - [anon_sym_any] = ACTIONS(1686), - [anon_sym_DOLLARtypeof] = ACTIONS(1686), - [anon_sym_DOLLARtypefrom] = ACTIONS(1686), - [anon_sym_DOLLARvatype] = ACTIONS(1686), - [anon_sym_DOLLARevaltype] = ACTIONS(1686), - [sym_real_literal] = ACTIONS(1688), + [sym_ident] = ACTIONS(1703), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_at_ident] = ACTIONS(1705), + [sym_type_ident] = ACTIONS(1705), + [sym_ct_type_ident] = ACTIONS(1705), + [sym_at_type_ident] = ACTIONS(1705), + [anon_sym_COMMA] = ACTIONS(1705), + [anon_sym_LPAREN_LT] = ACTIONS(1705), + [anon_sym_GT_RPAREN] = ACTIONS(1705), + [anon_sym_EQ] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_RPAREN] = ACTIONS(1705), + [anon_sym_AMP] = ACTIONS(1703), + [anon_sym_LBRACK] = ACTIONS(1705), + [anon_sym_RBRACK] = ACTIONS(1705), + [anon_sym_SEMI] = ACTIONS(1705), + [anon_sym_LBRACE] = ACTIONS(1705), + [anon_sym_RBRACE] = ACTIONS(1705), + [anon_sym_COLON] = ACTIONS(1705), + [anon_sym_DOT_DOT] = ACTIONS(1705), + [anon_sym_DOT] = ACTIONS(1703), + [anon_sym_AMP_AMP] = ACTIONS(1705), + [anon_sym_int] = ACTIONS(1703), + [anon_sym_PLUS] = ACTIONS(1703), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_LT_LT] = ACTIONS(1703), + [anon_sym_GT_GT] = ACTIONS(1703), + [anon_sym_STAR] = ACTIONS(1703), + [anon_sym_PLUS_EQ] = ACTIONS(1705), + [anon_sym_DASH_EQ] = ACTIONS(1705), + [anon_sym_STAR_EQ] = ACTIONS(1705), + [anon_sym_SLASH_EQ] = ACTIONS(1705), + [anon_sym_PERCENT_EQ] = ACTIONS(1705), + [anon_sym_LT_LT_EQ] = ACTIONS(1705), + [anon_sym_GT_GT_EQ] = ACTIONS(1705), + [anon_sym_AMP_EQ] = ACTIONS(1705), + [anon_sym_CARET_EQ] = ACTIONS(1705), + [anon_sym_PIPE_EQ] = ACTIONS(1705), + [anon_sym_QMARK] = ACTIONS(1703), + [anon_sym_QMARK_COLON] = ACTIONS(1705), + [anon_sym_QMARK_QMARK] = ACTIONS(1705), + [anon_sym_BANG] = ACTIONS(1703), + [anon_sym_PLUS_PLUS] = ACTIONS(1705), + [anon_sym_DASH_DASH] = ACTIONS(1705), + [anon_sym_SLASH] = ACTIONS(1703), + [anon_sym_PERCENT] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_CARET] = ACTIONS(1703), + [anon_sym_EQ_EQ] = ACTIONS(1705), + [anon_sym_BANG_EQ] = ACTIONS(1705), + [anon_sym_GT] = ACTIONS(1703), + [anon_sym_GT_EQ] = ACTIONS(1705), + [anon_sym_LT_EQ] = ACTIONS(1705), + [anon_sym_LT] = ACTIONS(1703), + [anon_sym_PIPE_PIPE] = ACTIONS(1705), + [anon_sym_BANG_BANG] = ACTIONS(1705), + [anon_sym_typeid] = ACTIONS(1703), + [anon_sym_void] = ACTIONS(1703), + [anon_sym_bool] = ACTIONS(1703), + [anon_sym_char] = ACTIONS(1703), + [anon_sym_ichar] = ACTIONS(1703), + [anon_sym_short] = ACTIONS(1703), + [anon_sym_ushort] = ACTIONS(1703), + [anon_sym_uint] = ACTIONS(1703), + [anon_sym_long] = ACTIONS(1703), + [anon_sym_ulong] = ACTIONS(1703), + [anon_sym_int128] = ACTIONS(1703), + [anon_sym_uint128] = ACTIONS(1703), + [anon_sym_float] = ACTIONS(1703), + [anon_sym_double] = ACTIONS(1703), + [anon_sym_float16] = ACTIONS(1703), + [anon_sym_bfloat16] = ACTIONS(1703), + [anon_sym_float128] = ACTIONS(1703), + [anon_sym_iptr] = ACTIONS(1703), + [anon_sym_uptr] = ACTIONS(1703), + [anon_sym_isz] = ACTIONS(1703), + [anon_sym_usz] = ACTIONS(1703), + [anon_sym_anyfault] = ACTIONS(1703), + [anon_sym_any] = ACTIONS(1703), + [anon_sym_DOLLARtypeof] = ACTIONS(1705), + [anon_sym_DOLLARtypefrom] = ACTIONS(1705), + [anon_sym_DOLLARvatype] = ACTIONS(1705), + [anon_sym_DOLLARevaltype] = ACTIONS(1705), + [anon_sym_GT_RBRACK] = ACTIONS(1705), }, [813] = { [sym_line_comment] = STATE(813), [sym_doc_comment] = STATE(813), [sym_block_comment] = STATE(813), - [sym_ident] = ACTIONS(1472), - [sym_integer_literal] = ACTIONS(1474), - [anon_sym_SQUOTE] = ACTIONS(1474), - [anon_sym_DQUOTE] = ACTIONS(1474), - [anon_sym_BQUOTE] = ACTIONS(1474), - [sym_bytes_literal] = ACTIONS(1474), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1472), - [sym_at_ident] = ACTIONS(1474), - [sym_hash_ident] = ACTIONS(1474), - [sym_type_ident] = ACTIONS(1474), - [sym_ct_type_ident] = ACTIONS(1474), - [sym_const_ident] = ACTIONS(1472), - [sym_builtin] = ACTIONS(1474), - [anon_sym_LPAREN] = ACTIONS(1474), - [anon_sym_AMP] = ACTIONS(1472), - [anon_sym_static] = ACTIONS(1472), - [anon_sym_tlocal] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1474), - [anon_sym_fn] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1472), - [anon_sym_const] = ACTIONS(1472), - [anon_sym_var] = ACTIONS(1472), - [anon_sym_return] = ACTIONS(1472), - [anon_sym_continue] = ACTIONS(1472), - [anon_sym_break] = ACTIONS(1472), - [anon_sym_defer] = ACTIONS(1472), - [anon_sym_assert] = ACTIONS(1472), - [anon_sym_nextcase] = ACTIONS(1472), - [anon_sym_switch] = ACTIONS(1472), - [anon_sym_AMP_AMP] = ACTIONS(1474), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_for] = ACTIONS(1472), - [anon_sym_foreach] = ACTIONS(1472), - [anon_sym_foreach_r] = ACTIONS(1472), - [anon_sym_while] = ACTIONS(1472), - [anon_sym_do] = ACTIONS(1472), - [anon_sym_int] = ACTIONS(1472), - [anon_sym_PLUS] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1472), - [anon_sym_STAR] = ACTIONS(1474), - [anon_sym_asm] = ACTIONS(1472), - [anon_sym_DOLLARassert] = ACTIONS(1472), - [anon_sym_DOLLARerror] = ACTIONS(1472), - [anon_sym_DOLLARecho] = ACTIONS(1472), - [anon_sym_DOLLARif] = ACTIONS(1472), - [anon_sym_DOLLARendif] = ACTIONS(1472), - [anon_sym_DOLLARswitch] = ACTIONS(1472), - [anon_sym_DOLLARfor] = ACTIONS(1472), - [anon_sym_DOLLARforeach] = ACTIONS(1472), - [anon_sym_DOLLARalignof] = ACTIONS(1472), - [anon_sym_DOLLARextnameof] = ACTIONS(1472), - [anon_sym_DOLLARnameof] = ACTIONS(1472), - [anon_sym_DOLLARoffsetof] = ACTIONS(1472), - [anon_sym_DOLLARqnameof] = ACTIONS(1472), - [anon_sym_DOLLARvaconst] = ACTIONS(1472), - [anon_sym_DOLLARvaarg] = ACTIONS(1472), - [anon_sym_DOLLARvaref] = ACTIONS(1472), - [anon_sym_DOLLARvaexpr] = ACTIONS(1472), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_null] = ACTIONS(1472), - [anon_sym_DOLLARvacount] = ACTIONS(1472), - [anon_sym_DOLLARappend] = ACTIONS(1472), - [anon_sym_DOLLARconcat] = ACTIONS(1472), - [anon_sym_DOLLAReval] = ACTIONS(1472), - [anon_sym_DOLLARis_const] = ACTIONS(1472), - [anon_sym_DOLLARsizeof] = ACTIONS(1472), - [anon_sym_DOLLARstringify] = ACTIONS(1472), - [anon_sym_DOLLARand] = ACTIONS(1472), - [anon_sym_DOLLARdefined] = ACTIONS(1472), - [anon_sym_DOLLARembed] = ACTIONS(1472), - [anon_sym_DOLLARor] = ACTIONS(1472), - [anon_sym_DOLLARfeature] = ACTIONS(1472), - [anon_sym_DOLLARassignable] = ACTIONS(1472), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_TILDE] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1474), - [anon_sym_DASH_DASH] = ACTIONS(1474), - [anon_sym_typeid] = ACTIONS(1472), - [anon_sym_LBRACE_PIPE] = ACTIONS(1474), - [anon_sym_void] = ACTIONS(1472), - [anon_sym_bool] = ACTIONS(1472), - [anon_sym_char] = ACTIONS(1472), - [anon_sym_ichar] = ACTIONS(1472), - [anon_sym_short] = ACTIONS(1472), - [anon_sym_ushort] = ACTIONS(1472), - [anon_sym_uint] = ACTIONS(1472), - [anon_sym_long] = ACTIONS(1472), - [anon_sym_ulong] = ACTIONS(1472), - [anon_sym_int128] = ACTIONS(1472), - [anon_sym_uint128] = ACTIONS(1472), - [anon_sym_float] = ACTIONS(1472), - [anon_sym_double] = ACTIONS(1472), - [anon_sym_float16] = ACTIONS(1472), - [anon_sym_bfloat16] = ACTIONS(1472), - [anon_sym_float128] = ACTIONS(1472), - [anon_sym_iptr] = ACTIONS(1472), - [anon_sym_uptr] = ACTIONS(1472), - [anon_sym_isz] = ACTIONS(1472), - [anon_sym_usz] = ACTIONS(1472), - [anon_sym_anyfault] = ACTIONS(1472), - [anon_sym_any] = ACTIONS(1472), - [anon_sym_DOLLARtypeof] = ACTIONS(1472), - [anon_sym_DOLLARtypefrom] = ACTIONS(1472), - [anon_sym_DOLLARvatype] = ACTIONS(1472), - [anon_sym_DOLLARevaltype] = ACTIONS(1472), - [sym_real_literal] = ACTIONS(1474), + [sym_ident] = ACTIONS(1707), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_at_ident] = ACTIONS(1709), + [sym_type_ident] = ACTIONS(1709), + [sym_ct_type_ident] = ACTIONS(1709), + [sym_at_type_ident] = ACTIONS(1709), + [anon_sym_COMMA] = ACTIONS(1709), + [anon_sym_LPAREN_LT] = ACTIONS(1709), + [anon_sym_GT_RPAREN] = ACTIONS(1709), + [anon_sym_EQ] = ACTIONS(1707), + [anon_sym_LPAREN] = ACTIONS(1707), + [anon_sym_RPAREN] = ACTIONS(1709), + [anon_sym_AMP] = ACTIONS(1707), + [anon_sym_LBRACK] = ACTIONS(1709), + [anon_sym_RBRACK] = ACTIONS(1709), + [anon_sym_SEMI] = ACTIONS(1709), + [anon_sym_LBRACE] = ACTIONS(1709), + [anon_sym_RBRACE] = ACTIONS(1709), + [anon_sym_COLON] = ACTIONS(1709), + [anon_sym_DOT_DOT] = ACTIONS(1709), + [anon_sym_DOT] = ACTIONS(1707), + [anon_sym_AMP_AMP] = ACTIONS(1709), + [anon_sym_int] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_LT_LT] = ACTIONS(1707), + [anon_sym_GT_GT] = ACTIONS(1707), + [anon_sym_STAR] = ACTIONS(1707), + [anon_sym_PLUS_EQ] = ACTIONS(1709), + [anon_sym_DASH_EQ] = ACTIONS(1709), + [anon_sym_STAR_EQ] = ACTIONS(1709), + [anon_sym_SLASH_EQ] = ACTIONS(1709), + [anon_sym_PERCENT_EQ] = ACTIONS(1709), + [anon_sym_LT_LT_EQ] = ACTIONS(1709), + [anon_sym_GT_GT_EQ] = ACTIONS(1709), + [anon_sym_AMP_EQ] = ACTIONS(1709), + [anon_sym_CARET_EQ] = ACTIONS(1709), + [anon_sym_PIPE_EQ] = ACTIONS(1709), + [anon_sym_QMARK] = ACTIONS(1707), + [anon_sym_QMARK_COLON] = ACTIONS(1709), + [anon_sym_QMARK_QMARK] = ACTIONS(1709), + [anon_sym_BANG] = ACTIONS(1707), + [anon_sym_PLUS_PLUS] = ACTIONS(1709), + [anon_sym_DASH_DASH] = ACTIONS(1709), + [anon_sym_SLASH] = ACTIONS(1707), + [anon_sym_PERCENT] = ACTIONS(1707), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_CARET] = ACTIONS(1707), + [anon_sym_EQ_EQ] = ACTIONS(1709), + [anon_sym_BANG_EQ] = ACTIONS(1709), + [anon_sym_GT] = ACTIONS(1707), + [anon_sym_GT_EQ] = ACTIONS(1709), + [anon_sym_LT_EQ] = ACTIONS(1709), + [anon_sym_LT] = ACTIONS(1707), + [anon_sym_PIPE_PIPE] = ACTIONS(1709), + [anon_sym_BANG_BANG] = ACTIONS(1709), + [anon_sym_typeid] = ACTIONS(1707), + [anon_sym_void] = ACTIONS(1707), + [anon_sym_bool] = ACTIONS(1707), + [anon_sym_char] = ACTIONS(1707), + [anon_sym_ichar] = ACTIONS(1707), + [anon_sym_short] = ACTIONS(1707), + [anon_sym_ushort] = ACTIONS(1707), + [anon_sym_uint] = ACTIONS(1707), + [anon_sym_long] = ACTIONS(1707), + [anon_sym_ulong] = ACTIONS(1707), + [anon_sym_int128] = ACTIONS(1707), + [anon_sym_uint128] = ACTIONS(1707), + [anon_sym_float] = ACTIONS(1707), + [anon_sym_double] = ACTIONS(1707), + [anon_sym_float16] = ACTIONS(1707), + [anon_sym_bfloat16] = ACTIONS(1707), + [anon_sym_float128] = ACTIONS(1707), + [anon_sym_iptr] = ACTIONS(1707), + [anon_sym_uptr] = ACTIONS(1707), + [anon_sym_isz] = ACTIONS(1707), + [anon_sym_usz] = ACTIONS(1707), + [anon_sym_anyfault] = ACTIONS(1707), + [anon_sym_any] = ACTIONS(1707), + [anon_sym_DOLLARtypeof] = ACTIONS(1709), + [anon_sym_DOLLARtypefrom] = ACTIONS(1709), + [anon_sym_DOLLARvatype] = ACTIONS(1709), + [anon_sym_DOLLARevaltype] = ACTIONS(1709), + [anon_sym_GT_RBRACK] = ACTIONS(1709), }, [814] = { [sym_line_comment] = STATE(814), [sym_doc_comment] = STATE(814), [sym_block_comment] = STATE(814), - [sym_ident] = ACTIONS(1460), - [sym_integer_literal] = ACTIONS(1462), - [anon_sym_SQUOTE] = ACTIONS(1462), - [anon_sym_DQUOTE] = ACTIONS(1462), - [anon_sym_BQUOTE] = ACTIONS(1462), - [sym_bytes_literal] = ACTIONS(1462), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1460), - [sym_at_ident] = ACTIONS(1462), - [sym_hash_ident] = ACTIONS(1462), - [sym_type_ident] = ACTIONS(1462), - [sym_ct_type_ident] = ACTIONS(1462), - [sym_const_ident] = ACTIONS(1460), - [sym_builtin] = ACTIONS(1462), - [anon_sym_LPAREN] = ACTIONS(1462), - [anon_sym_AMP] = ACTIONS(1460), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_tlocal] = ACTIONS(1460), - [anon_sym_SEMI] = ACTIONS(1462), - [anon_sym_fn] = ACTIONS(1460), - [anon_sym_LBRACE] = ACTIONS(1460), - [anon_sym_const] = ACTIONS(1460), - [anon_sym_var] = ACTIONS(1460), - [anon_sym_return] = ACTIONS(1460), - [anon_sym_continue] = ACTIONS(1460), - [anon_sym_break] = ACTIONS(1460), - [anon_sym_defer] = ACTIONS(1460), - [anon_sym_assert] = ACTIONS(1460), - [anon_sym_nextcase] = ACTIONS(1460), - [anon_sym_switch] = ACTIONS(1460), - [anon_sym_AMP_AMP] = ACTIONS(1462), - [anon_sym_if] = ACTIONS(1460), - [anon_sym_for] = ACTIONS(1460), - [anon_sym_foreach] = ACTIONS(1460), - [anon_sym_foreach_r] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1460), - [anon_sym_do] = ACTIONS(1460), - [anon_sym_int] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1460), - [anon_sym_DASH] = ACTIONS(1460), - [anon_sym_STAR] = ACTIONS(1462), - [anon_sym_asm] = ACTIONS(1460), - [anon_sym_DOLLARassert] = ACTIONS(1460), - [anon_sym_DOLLARerror] = ACTIONS(1460), - [anon_sym_DOLLARecho] = ACTIONS(1460), - [anon_sym_DOLLARif] = ACTIONS(1460), - [anon_sym_DOLLARendif] = ACTIONS(1460), - [anon_sym_DOLLARswitch] = ACTIONS(1460), - [anon_sym_DOLLARfor] = ACTIONS(1460), - [anon_sym_DOLLARforeach] = ACTIONS(1460), - [anon_sym_DOLLARalignof] = ACTIONS(1460), - [anon_sym_DOLLARextnameof] = ACTIONS(1460), - [anon_sym_DOLLARnameof] = ACTIONS(1460), - [anon_sym_DOLLARoffsetof] = ACTIONS(1460), - [anon_sym_DOLLARqnameof] = ACTIONS(1460), - [anon_sym_DOLLARvaconst] = ACTIONS(1460), - [anon_sym_DOLLARvaarg] = ACTIONS(1460), - [anon_sym_DOLLARvaref] = ACTIONS(1460), - [anon_sym_DOLLARvaexpr] = ACTIONS(1460), - [anon_sym_true] = ACTIONS(1460), - [anon_sym_false] = ACTIONS(1460), - [anon_sym_null] = ACTIONS(1460), - [anon_sym_DOLLARvacount] = ACTIONS(1460), - [anon_sym_DOLLARappend] = ACTIONS(1460), - [anon_sym_DOLLARconcat] = ACTIONS(1460), - [anon_sym_DOLLAReval] = ACTIONS(1460), - [anon_sym_DOLLARis_const] = ACTIONS(1460), - [anon_sym_DOLLARsizeof] = ACTIONS(1460), - [anon_sym_DOLLARstringify] = ACTIONS(1460), - [anon_sym_DOLLARand] = ACTIONS(1460), - [anon_sym_DOLLARdefined] = ACTIONS(1460), - [anon_sym_DOLLARembed] = ACTIONS(1460), - [anon_sym_DOLLARor] = ACTIONS(1460), - [anon_sym_DOLLARfeature] = ACTIONS(1460), - [anon_sym_DOLLARassignable] = ACTIONS(1460), - [anon_sym_BANG] = ACTIONS(1462), - [anon_sym_TILDE] = ACTIONS(1462), - [anon_sym_PLUS_PLUS] = ACTIONS(1462), - [anon_sym_DASH_DASH] = ACTIONS(1462), - [anon_sym_typeid] = ACTIONS(1460), - [anon_sym_LBRACE_PIPE] = ACTIONS(1462), - [anon_sym_void] = ACTIONS(1460), - [anon_sym_bool] = ACTIONS(1460), - [anon_sym_char] = ACTIONS(1460), - [anon_sym_ichar] = ACTIONS(1460), - [anon_sym_short] = ACTIONS(1460), - [anon_sym_ushort] = ACTIONS(1460), - [anon_sym_uint] = ACTIONS(1460), - [anon_sym_long] = ACTIONS(1460), - [anon_sym_ulong] = ACTIONS(1460), - [anon_sym_int128] = ACTIONS(1460), - [anon_sym_uint128] = ACTIONS(1460), - [anon_sym_float] = ACTIONS(1460), - [anon_sym_double] = ACTIONS(1460), - [anon_sym_float16] = ACTIONS(1460), - [anon_sym_bfloat16] = ACTIONS(1460), - [anon_sym_float128] = ACTIONS(1460), - [anon_sym_iptr] = ACTIONS(1460), - [anon_sym_uptr] = ACTIONS(1460), - [anon_sym_isz] = ACTIONS(1460), - [anon_sym_usz] = ACTIONS(1460), - [anon_sym_anyfault] = ACTIONS(1460), - [anon_sym_any] = ACTIONS(1460), - [anon_sym_DOLLARtypeof] = ACTIONS(1460), - [anon_sym_DOLLARtypefrom] = ACTIONS(1460), - [anon_sym_DOLLARvatype] = ACTIONS(1460), - [anon_sym_DOLLARevaltype] = ACTIONS(1460), - [sym_real_literal] = ACTIONS(1462), + [sym_ident] = ACTIONS(1287), + [sym_integer_literal] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(1289), + [anon_sym_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1289), + [sym_bytes_literal] = ACTIONS(1289), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1287), + [sym_at_ident] = ACTIONS(1289), + [sym_hash_ident] = ACTIONS(1289), + [sym_type_ident] = ACTIONS(1289), + [sym_ct_type_ident] = ACTIONS(1289), + [sym_const_ident] = ACTIONS(1287), + [sym_builtin] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1289), + [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_RBRACK] = ACTIONS(1711), + [anon_sym_fn] = ACTIONS(1287), + [anon_sym_LBRACE] = ACTIONS(1287), + [anon_sym_AMP_AMP] = ACTIONS(1289), + [anon_sym_int] = ACTIONS(1287), + [anon_sym_PLUS] = ACTIONS(1287), + [anon_sym_DASH] = ACTIONS(1287), + [anon_sym_STAR] = ACTIONS(1289), + [anon_sym_DOLLARalignof] = ACTIONS(1287), + [anon_sym_DOLLARextnameof] = ACTIONS(1287), + [anon_sym_DOLLARnameof] = ACTIONS(1287), + [anon_sym_DOLLARoffsetof] = ACTIONS(1287), + [anon_sym_DOLLARqnameof] = ACTIONS(1287), + [anon_sym_DOLLARvaconst] = ACTIONS(1287), + [anon_sym_DOLLARvaarg] = ACTIONS(1287), + [anon_sym_DOLLARvaref] = ACTIONS(1287), + [anon_sym_DOLLARvaexpr] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1287), + [anon_sym_false] = ACTIONS(1287), + [anon_sym_null] = ACTIONS(1287), + [anon_sym_DOLLARvacount] = ACTIONS(1287), + [anon_sym_DOLLARappend] = ACTIONS(1287), + [anon_sym_DOLLARconcat] = ACTIONS(1287), + [anon_sym_DOLLAReval] = ACTIONS(1287), + [anon_sym_DOLLARis_const] = ACTIONS(1287), + [anon_sym_DOLLARsizeof] = ACTIONS(1287), + [anon_sym_DOLLARstringify] = ACTIONS(1287), + [anon_sym_DOLLARand] = ACTIONS(1287), + [anon_sym_DOLLARdefined] = ACTIONS(1287), + [anon_sym_DOLLARembed] = ACTIONS(1287), + [anon_sym_DOLLARor] = ACTIONS(1287), + [anon_sym_DOLLARfeature] = ACTIONS(1287), + [anon_sym_DOLLARassignable] = ACTIONS(1287), + [anon_sym_BANG] = ACTIONS(1289), + [anon_sym_TILDE] = ACTIONS(1289), + [anon_sym_PLUS_PLUS] = ACTIONS(1289), + [anon_sym_DASH_DASH] = ACTIONS(1289), + [anon_sym_typeid] = ACTIONS(1287), + [anon_sym_LBRACE_PIPE] = ACTIONS(1289), + [anon_sym_void] = ACTIONS(1287), + [anon_sym_bool] = ACTIONS(1287), + [anon_sym_char] = ACTIONS(1287), + [anon_sym_ichar] = ACTIONS(1287), + [anon_sym_short] = ACTIONS(1287), + [anon_sym_ushort] = ACTIONS(1287), + [anon_sym_uint] = ACTIONS(1287), + [anon_sym_long] = ACTIONS(1287), + [anon_sym_ulong] = ACTIONS(1287), + [anon_sym_int128] = ACTIONS(1287), + [anon_sym_uint128] = ACTIONS(1287), + [anon_sym_float] = ACTIONS(1287), + [anon_sym_double] = ACTIONS(1287), + [anon_sym_float16] = ACTIONS(1287), + [anon_sym_bfloat16] = ACTIONS(1287), + [anon_sym_float128] = ACTIONS(1287), + [anon_sym_iptr] = ACTIONS(1287), + [anon_sym_uptr] = ACTIONS(1287), + [anon_sym_isz] = ACTIONS(1287), + [anon_sym_usz] = ACTIONS(1287), + [anon_sym_anyfault] = ACTIONS(1287), + [anon_sym_any] = ACTIONS(1287), + [anon_sym_DOLLARtypeof] = ACTIONS(1287), + [anon_sym_DOLLARtypefrom] = ACTIONS(1287), + [anon_sym_DOLLARvatype] = ACTIONS(1287), + [anon_sym_DOLLARevaltype] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1289), }, [815] = { [sym_line_comment] = STATE(815), [sym_doc_comment] = STATE(815), [sym_block_comment] = STATE(815), - [sym_ident] = ACTIONS(1456), - [sym_integer_literal] = ACTIONS(1458), - [anon_sym_SQUOTE] = ACTIONS(1458), - [anon_sym_DQUOTE] = ACTIONS(1458), - [anon_sym_BQUOTE] = ACTIONS(1458), - [sym_bytes_literal] = ACTIONS(1458), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1456), - [sym_at_ident] = ACTIONS(1458), - [sym_hash_ident] = ACTIONS(1458), - [sym_type_ident] = ACTIONS(1458), - [sym_ct_type_ident] = ACTIONS(1458), - [sym_const_ident] = ACTIONS(1456), - [sym_builtin] = ACTIONS(1458), - [anon_sym_LPAREN] = ACTIONS(1458), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_static] = ACTIONS(1456), - [anon_sym_tlocal] = ACTIONS(1456), - [anon_sym_SEMI] = ACTIONS(1458), - [anon_sym_fn] = ACTIONS(1456), - [anon_sym_LBRACE] = ACTIONS(1456), - [anon_sym_const] = ACTIONS(1456), - [anon_sym_var] = ACTIONS(1456), - [anon_sym_return] = ACTIONS(1456), - [anon_sym_continue] = ACTIONS(1456), - [anon_sym_break] = ACTIONS(1456), - [anon_sym_defer] = ACTIONS(1456), - [anon_sym_assert] = ACTIONS(1456), - [anon_sym_nextcase] = ACTIONS(1456), - [anon_sym_switch] = ACTIONS(1456), - [anon_sym_AMP_AMP] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1456), - [anon_sym_for] = ACTIONS(1456), - [anon_sym_foreach] = ACTIONS(1456), - [anon_sym_foreach_r] = ACTIONS(1456), - [anon_sym_while] = ACTIONS(1456), - [anon_sym_do] = ACTIONS(1456), - [anon_sym_int] = ACTIONS(1456), - [anon_sym_PLUS] = ACTIONS(1456), - [anon_sym_DASH] = ACTIONS(1456), - [anon_sym_STAR] = ACTIONS(1458), - [anon_sym_asm] = ACTIONS(1456), - [anon_sym_DOLLARassert] = ACTIONS(1456), - [anon_sym_DOLLARerror] = ACTIONS(1456), - [anon_sym_DOLLARecho] = ACTIONS(1456), - [anon_sym_DOLLARif] = ACTIONS(1456), - [anon_sym_DOLLARendif] = ACTIONS(1456), - [anon_sym_DOLLARswitch] = ACTIONS(1456), - [anon_sym_DOLLARfor] = ACTIONS(1456), - [anon_sym_DOLLARforeach] = ACTIONS(1456), - [anon_sym_DOLLARalignof] = ACTIONS(1456), - [anon_sym_DOLLARextnameof] = ACTIONS(1456), - [anon_sym_DOLLARnameof] = ACTIONS(1456), - [anon_sym_DOLLARoffsetof] = ACTIONS(1456), - [anon_sym_DOLLARqnameof] = ACTIONS(1456), - [anon_sym_DOLLARvaconst] = ACTIONS(1456), - [anon_sym_DOLLARvaarg] = ACTIONS(1456), - [anon_sym_DOLLARvaref] = ACTIONS(1456), - [anon_sym_DOLLARvaexpr] = ACTIONS(1456), - [anon_sym_true] = ACTIONS(1456), - [anon_sym_false] = ACTIONS(1456), - [anon_sym_null] = ACTIONS(1456), - [anon_sym_DOLLARvacount] = ACTIONS(1456), - [anon_sym_DOLLARappend] = ACTIONS(1456), - [anon_sym_DOLLARconcat] = ACTIONS(1456), - [anon_sym_DOLLAReval] = ACTIONS(1456), - [anon_sym_DOLLARis_const] = ACTIONS(1456), - [anon_sym_DOLLARsizeof] = ACTIONS(1456), - [anon_sym_DOLLARstringify] = ACTIONS(1456), - [anon_sym_DOLLARand] = ACTIONS(1456), - [anon_sym_DOLLARdefined] = ACTIONS(1456), - [anon_sym_DOLLARembed] = ACTIONS(1456), - [anon_sym_DOLLARor] = ACTIONS(1456), - [anon_sym_DOLLARfeature] = ACTIONS(1456), - [anon_sym_DOLLARassignable] = ACTIONS(1456), - [anon_sym_BANG] = ACTIONS(1458), - [anon_sym_TILDE] = ACTIONS(1458), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [anon_sym_typeid] = ACTIONS(1456), - [anon_sym_LBRACE_PIPE] = ACTIONS(1458), - [anon_sym_void] = ACTIONS(1456), - [anon_sym_bool] = ACTIONS(1456), - [anon_sym_char] = ACTIONS(1456), - [anon_sym_ichar] = ACTIONS(1456), - [anon_sym_short] = ACTIONS(1456), - [anon_sym_ushort] = ACTIONS(1456), - [anon_sym_uint] = ACTIONS(1456), - [anon_sym_long] = ACTIONS(1456), - [anon_sym_ulong] = ACTIONS(1456), - [anon_sym_int128] = ACTIONS(1456), - [anon_sym_uint128] = ACTIONS(1456), - [anon_sym_float] = ACTIONS(1456), - [anon_sym_double] = ACTIONS(1456), - [anon_sym_float16] = ACTIONS(1456), - [anon_sym_bfloat16] = ACTIONS(1456), - [anon_sym_float128] = ACTIONS(1456), - [anon_sym_iptr] = ACTIONS(1456), - [anon_sym_uptr] = ACTIONS(1456), - [anon_sym_isz] = ACTIONS(1456), - [anon_sym_usz] = ACTIONS(1456), - [anon_sym_anyfault] = ACTIONS(1456), - [anon_sym_any] = ACTIONS(1456), - [anon_sym_DOLLARtypeof] = ACTIONS(1456), - [anon_sym_DOLLARtypefrom] = ACTIONS(1456), - [anon_sym_DOLLARvatype] = ACTIONS(1456), - [anon_sym_DOLLARevaltype] = ACTIONS(1456), - [sym_real_literal] = ACTIONS(1458), + [sym_ident] = ACTIONS(1287), + [sym_integer_literal] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(1289), + [anon_sym_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1289), + [sym_bytes_literal] = ACTIONS(1289), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1287), + [sym_at_ident] = ACTIONS(1289), + [sym_hash_ident] = ACTIONS(1289), + [sym_type_ident] = ACTIONS(1289), + [sym_ct_type_ident] = ACTIONS(1289), + [sym_const_ident] = ACTIONS(1287), + [sym_builtin] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1289), + [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_fn] = ACTIONS(1287), + [anon_sym_LBRACE] = ACTIONS(1287), + [anon_sym_AMP_AMP] = ACTIONS(1289), + [anon_sym_int] = ACTIONS(1287), + [anon_sym_PLUS] = ACTIONS(1287), + [anon_sym_DASH] = ACTIONS(1287), + [anon_sym_STAR] = ACTIONS(1289), + [anon_sym_DOLLARalignof] = ACTIONS(1287), + [anon_sym_DOLLARextnameof] = ACTIONS(1287), + [anon_sym_DOLLARnameof] = ACTIONS(1287), + [anon_sym_DOLLARoffsetof] = ACTIONS(1287), + [anon_sym_DOLLARqnameof] = ACTIONS(1287), + [anon_sym_DOLLARvaconst] = ACTIONS(1287), + [anon_sym_DOLLARvaarg] = ACTIONS(1287), + [anon_sym_DOLLARvaref] = ACTIONS(1287), + [anon_sym_DOLLARvaexpr] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1287), + [anon_sym_false] = ACTIONS(1287), + [anon_sym_null] = ACTIONS(1287), + [anon_sym_DOLLARvacount] = ACTIONS(1287), + [anon_sym_DOLLARappend] = ACTIONS(1287), + [anon_sym_DOLLARconcat] = ACTIONS(1287), + [anon_sym_DOLLAReval] = ACTIONS(1287), + [anon_sym_DOLLARis_const] = ACTIONS(1287), + [anon_sym_DOLLARsizeof] = ACTIONS(1287), + [anon_sym_DOLLARstringify] = ACTIONS(1287), + [anon_sym_DOLLARand] = ACTIONS(1287), + [anon_sym_DOLLARdefined] = ACTIONS(1287), + [anon_sym_DOLLARembed] = ACTIONS(1287), + [anon_sym_DOLLARor] = ACTIONS(1287), + [anon_sym_DOLLARfeature] = ACTIONS(1287), + [anon_sym_DOLLARassignable] = ACTIONS(1287), + [anon_sym_BANG] = ACTIONS(1289), + [anon_sym_TILDE] = ACTIONS(1289), + [anon_sym_PLUS_PLUS] = ACTIONS(1289), + [anon_sym_DASH_DASH] = ACTIONS(1289), + [anon_sym_typeid] = ACTIONS(1287), + [anon_sym_LBRACE_PIPE] = ACTIONS(1289), + [anon_sym_void] = ACTIONS(1287), + [anon_sym_bool] = ACTIONS(1287), + [anon_sym_char] = ACTIONS(1287), + [anon_sym_ichar] = ACTIONS(1287), + [anon_sym_short] = ACTIONS(1287), + [anon_sym_ushort] = ACTIONS(1287), + [anon_sym_uint] = ACTIONS(1287), + [anon_sym_long] = ACTIONS(1287), + [anon_sym_ulong] = ACTIONS(1287), + [anon_sym_int128] = ACTIONS(1287), + [anon_sym_uint128] = ACTIONS(1287), + [anon_sym_float] = ACTIONS(1287), + [anon_sym_double] = ACTIONS(1287), + [anon_sym_float16] = ACTIONS(1287), + [anon_sym_bfloat16] = ACTIONS(1287), + [anon_sym_float128] = ACTIONS(1287), + [anon_sym_iptr] = ACTIONS(1287), + [anon_sym_uptr] = ACTIONS(1287), + [anon_sym_isz] = ACTIONS(1287), + [anon_sym_usz] = ACTIONS(1287), + [anon_sym_anyfault] = ACTIONS(1287), + [anon_sym_any] = ACTIONS(1287), + [anon_sym_DOLLARtypeof] = ACTIONS(1287), + [anon_sym_DOLLARtypefrom] = ACTIONS(1287), + [anon_sym_DOLLARvatype] = ACTIONS(1287), + [anon_sym_DOLLARevaltype] = ACTIONS(1287), + [anon_sym_GT_RBRACK] = ACTIONS(1713), + [sym_real_literal] = ACTIONS(1289), }, [816] = { [sym_line_comment] = STATE(816), [sym_doc_comment] = STATE(816), [sym_block_comment] = STATE(816), - [sym_ident] = ACTIONS(1370), - [sym_integer_literal] = ACTIONS(1372), - [anon_sym_SQUOTE] = ACTIONS(1372), - [anon_sym_DQUOTE] = ACTIONS(1372), - [anon_sym_BQUOTE] = ACTIONS(1372), - [sym_bytes_literal] = ACTIONS(1372), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1370), - [sym_at_ident] = ACTIONS(1372), - [sym_hash_ident] = ACTIONS(1372), - [sym_type_ident] = ACTIONS(1372), - [sym_ct_type_ident] = ACTIONS(1372), - [sym_const_ident] = ACTIONS(1370), - [sym_builtin] = ACTIONS(1372), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_AMP] = ACTIONS(1370), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_tlocal] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_const] = ACTIONS(1370), - [anon_sym_var] = ACTIONS(1370), - [anon_sym_return] = ACTIONS(1370), - [anon_sym_continue] = ACTIONS(1370), - [anon_sym_break] = ACTIONS(1370), - [anon_sym_defer] = ACTIONS(1370), - [anon_sym_assert] = ACTIONS(1370), - [anon_sym_nextcase] = ACTIONS(1370), - [anon_sym_switch] = ACTIONS(1370), - [anon_sym_AMP_AMP] = ACTIONS(1372), - [anon_sym_if] = ACTIONS(1370), - [anon_sym_for] = ACTIONS(1370), - [anon_sym_foreach] = ACTIONS(1370), - [anon_sym_foreach_r] = ACTIONS(1370), - [anon_sym_while] = ACTIONS(1370), - [anon_sym_do] = ACTIONS(1370), - [anon_sym_int] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_asm] = ACTIONS(1370), - [anon_sym_DOLLARassert] = ACTIONS(1370), - [anon_sym_DOLLARerror] = ACTIONS(1370), - [anon_sym_DOLLARecho] = ACTIONS(1370), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_DOLLARswitch] = ACTIONS(1370), - [anon_sym_DOLLARfor] = ACTIONS(1370), - [anon_sym_DOLLARendfor] = ACTIONS(1370), - [anon_sym_DOLLARforeach] = ACTIONS(1370), - [anon_sym_DOLLARalignof] = ACTIONS(1370), - [anon_sym_DOLLARextnameof] = ACTIONS(1370), - [anon_sym_DOLLARnameof] = ACTIONS(1370), - [anon_sym_DOLLARoffsetof] = ACTIONS(1370), - [anon_sym_DOLLARqnameof] = ACTIONS(1370), - [anon_sym_DOLLARvaconst] = ACTIONS(1370), - [anon_sym_DOLLARvaarg] = ACTIONS(1370), - [anon_sym_DOLLARvaref] = ACTIONS(1370), - [anon_sym_DOLLARvaexpr] = ACTIONS(1370), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [anon_sym_null] = ACTIONS(1370), - [anon_sym_DOLLARvacount] = ACTIONS(1370), - [anon_sym_DOLLARappend] = ACTIONS(1370), - [anon_sym_DOLLARconcat] = ACTIONS(1370), - [anon_sym_DOLLAReval] = ACTIONS(1370), - [anon_sym_DOLLARis_const] = ACTIONS(1370), - [anon_sym_DOLLARsizeof] = ACTIONS(1370), - [anon_sym_DOLLARstringify] = ACTIONS(1370), - [anon_sym_DOLLARand] = ACTIONS(1370), - [anon_sym_DOLLARdefined] = ACTIONS(1370), - [anon_sym_DOLLARembed] = ACTIONS(1370), - [anon_sym_DOLLARor] = ACTIONS(1370), - [anon_sym_DOLLARfeature] = ACTIONS(1370), - [anon_sym_DOLLARassignable] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_TILDE] = ACTIONS(1372), - [anon_sym_PLUS_PLUS] = ACTIONS(1372), - [anon_sym_DASH_DASH] = ACTIONS(1372), - [anon_sym_typeid] = ACTIONS(1370), - [anon_sym_LBRACE_PIPE] = ACTIONS(1372), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_bool] = ACTIONS(1370), - [anon_sym_char] = ACTIONS(1370), - [anon_sym_ichar] = ACTIONS(1370), - [anon_sym_short] = ACTIONS(1370), - [anon_sym_ushort] = ACTIONS(1370), - [anon_sym_uint] = ACTIONS(1370), - [anon_sym_long] = ACTIONS(1370), - [anon_sym_ulong] = ACTIONS(1370), - [anon_sym_int128] = ACTIONS(1370), - [anon_sym_uint128] = ACTIONS(1370), - [anon_sym_float] = ACTIONS(1370), - [anon_sym_double] = ACTIONS(1370), - [anon_sym_float16] = ACTIONS(1370), - [anon_sym_bfloat16] = ACTIONS(1370), - [anon_sym_float128] = ACTIONS(1370), - [anon_sym_iptr] = ACTIONS(1370), - [anon_sym_uptr] = ACTIONS(1370), - [anon_sym_isz] = ACTIONS(1370), - [anon_sym_usz] = ACTIONS(1370), - [anon_sym_anyfault] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_DOLLARtypeof] = ACTIONS(1370), - [anon_sym_DOLLARtypefrom] = ACTIONS(1370), - [anon_sym_DOLLARvatype] = ACTIONS(1370), - [anon_sym_DOLLARevaltype] = ACTIONS(1370), - [sym_real_literal] = ACTIONS(1372), + [sym_ident] = ACTIONS(1287), + [sym_integer_literal] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(1289), + [anon_sym_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1289), + [sym_bytes_literal] = ACTIONS(1289), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1287), + [sym_at_ident] = ACTIONS(1289), + [sym_hash_ident] = ACTIONS(1289), + [sym_type_ident] = ACTIONS(1289), + [sym_ct_type_ident] = ACTIONS(1289), + [sym_const_ident] = ACTIONS(1287), + [sym_builtin] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1289), + [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_RBRACK] = ACTIONS(1713), + [anon_sym_fn] = ACTIONS(1287), + [anon_sym_LBRACE] = ACTIONS(1287), + [anon_sym_AMP_AMP] = ACTIONS(1289), + [anon_sym_int] = ACTIONS(1287), + [anon_sym_PLUS] = ACTIONS(1287), + [anon_sym_DASH] = ACTIONS(1287), + [anon_sym_STAR] = ACTIONS(1289), + [anon_sym_DOLLARalignof] = ACTIONS(1287), + [anon_sym_DOLLARextnameof] = ACTIONS(1287), + [anon_sym_DOLLARnameof] = ACTIONS(1287), + [anon_sym_DOLLARoffsetof] = ACTIONS(1287), + [anon_sym_DOLLARqnameof] = ACTIONS(1287), + [anon_sym_DOLLARvaconst] = ACTIONS(1287), + [anon_sym_DOLLARvaarg] = ACTIONS(1287), + [anon_sym_DOLLARvaref] = ACTIONS(1287), + [anon_sym_DOLLARvaexpr] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1287), + [anon_sym_false] = ACTIONS(1287), + [anon_sym_null] = ACTIONS(1287), + [anon_sym_DOLLARvacount] = ACTIONS(1287), + [anon_sym_DOLLARappend] = ACTIONS(1287), + [anon_sym_DOLLARconcat] = ACTIONS(1287), + [anon_sym_DOLLAReval] = ACTIONS(1287), + [anon_sym_DOLLARis_const] = ACTIONS(1287), + [anon_sym_DOLLARsizeof] = ACTIONS(1287), + [anon_sym_DOLLARstringify] = ACTIONS(1287), + [anon_sym_DOLLARand] = ACTIONS(1287), + [anon_sym_DOLLARdefined] = ACTIONS(1287), + [anon_sym_DOLLARembed] = ACTIONS(1287), + [anon_sym_DOLLARor] = ACTIONS(1287), + [anon_sym_DOLLARfeature] = ACTIONS(1287), + [anon_sym_DOLLARassignable] = ACTIONS(1287), + [anon_sym_BANG] = ACTIONS(1289), + [anon_sym_TILDE] = ACTIONS(1289), + [anon_sym_PLUS_PLUS] = ACTIONS(1289), + [anon_sym_DASH_DASH] = ACTIONS(1289), + [anon_sym_typeid] = ACTIONS(1287), + [anon_sym_LBRACE_PIPE] = ACTIONS(1289), + [anon_sym_void] = ACTIONS(1287), + [anon_sym_bool] = ACTIONS(1287), + [anon_sym_char] = ACTIONS(1287), + [anon_sym_ichar] = ACTIONS(1287), + [anon_sym_short] = ACTIONS(1287), + [anon_sym_ushort] = ACTIONS(1287), + [anon_sym_uint] = ACTIONS(1287), + [anon_sym_long] = ACTIONS(1287), + [anon_sym_ulong] = ACTIONS(1287), + [anon_sym_int128] = ACTIONS(1287), + [anon_sym_uint128] = ACTIONS(1287), + [anon_sym_float] = ACTIONS(1287), + [anon_sym_double] = ACTIONS(1287), + [anon_sym_float16] = ACTIONS(1287), + [anon_sym_bfloat16] = ACTIONS(1287), + [anon_sym_float128] = ACTIONS(1287), + [anon_sym_iptr] = ACTIONS(1287), + [anon_sym_uptr] = ACTIONS(1287), + [anon_sym_isz] = ACTIONS(1287), + [anon_sym_usz] = ACTIONS(1287), + [anon_sym_anyfault] = ACTIONS(1287), + [anon_sym_any] = ACTIONS(1287), + [anon_sym_DOLLARtypeof] = ACTIONS(1287), + [anon_sym_DOLLARtypefrom] = ACTIONS(1287), + [anon_sym_DOLLARvatype] = ACTIONS(1287), + [anon_sym_DOLLARevaltype] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1289), }, [817] = { [sym_line_comment] = STATE(817), [sym_doc_comment] = STATE(817), [sym_block_comment] = STATE(817), - [sym_ident] = ACTIONS(1516), - [sym_integer_literal] = ACTIONS(1518), - [anon_sym_SQUOTE] = ACTIONS(1518), - [anon_sym_DQUOTE] = ACTIONS(1518), - [anon_sym_BQUOTE] = ACTIONS(1518), - [sym_bytes_literal] = ACTIONS(1518), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1516), - [sym_at_ident] = ACTIONS(1518), - [sym_hash_ident] = ACTIONS(1518), - [sym_type_ident] = ACTIONS(1518), - [sym_ct_type_ident] = ACTIONS(1518), - [sym_const_ident] = ACTIONS(1516), - [sym_builtin] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1518), - [anon_sym_AMP] = ACTIONS(1516), - [anon_sym_static] = ACTIONS(1516), - [anon_sym_tlocal] = ACTIONS(1516), - [anon_sym_SEMI] = ACTIONS(1518), - [anon_sym_fn] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1516), - [anon_sym_const] = ACTIONS(1516), - [anon_sym_var] = ACTIONS(1516), - [anon_sym_return] = ACTIONS(1516), - [anon_sym_continue] = ACTIONS(1516), - [anon_sym_break] = ACTIONS(1516), - [anon_sym_defer] = ACTIONS(1516), - [anon_sym_assert] = ACTIONS(1516), - [anon_sym_nextcase] = ACTIONS(1516), - [anon_sym_switch] = ACTIONS(1516), - [anon_sym_AMP_AMP] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1516), - [anon_sym_for] = ACTIONS(1516), - [anon_sym_foreach] = ACTIONS(1516), - [anon_sym_foreach_r] = ACTIONS(1516), - [anon_sym_while] = ACTIONS(1516), - [anon_sym_do] = ACTIONS(1516), - [anon_sym_int] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1516), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_STAR] = ACTIONS(1518), - [anon_sym_asm] = ACTIONS(1516), - [anon_sym_DOLLARassert] = ACTIONS(1516), - [anon_sym_DOLLARerror] = ACTIONS(1516), - [anon_sym_DOLLARecho] = ACTIONS(1516), - [anon_sym_DOLLARif] = ACTIONS(1516), - [anon_sym_DOLLARswitch] = ACTIONS(1516), - [anon_sym_DOLLARfor] = ACTIONS(1516), - [anon_sym_DOLLARendfor] = ACTIONS(1516), - [anon_sym_DOLLARforeach] = ACTIONS(1516), - [anon_sym_DOLLARalignof] = ACTIONS(1516), - [anon_sym_DOLLARextnameof] = ACTIONS(1516), - [anon_sym_DOLLARnameof] = ACTIONS(1516), - [anon_sym_DOLLARoffsetof] = ACTIONS(1516), - [anon_sym_DOLLARqnameof] = ACTIONS(1516), - [anon_sym_DOLLARvaconst] = ACTIONS(1516), - [anon_sym_DOLLARvaarg] = ACTIONS(1516), - [anon_sym_DOLLARvaref] = ACTIONS(1516), - [anon_sym_DOLLARvaexpr] = ACTIONS(1516), - [anon_sym_true] = ACTIONS(1516), - [anon_sym_false] = ACTIONS(1516), - [anon_sym_null] = ACTIONS(1516), - [anon_sym_DOLLARvacount] = ACTIONS(1516), - [anon_sym_DOLLARappend] = ACTIONS(1516), - [anon_sym_DOLLARconcat] = ACTIONS(1516), - [anon_sym_DOLLAReval] = ACTIONS(1516), - [anon_sym_DOLLARis_const] = ACTIONS(1516), - [anon_sym_DOLLARsizeof] = ACTIONS(1516), - [anon_sym_DOLLARstringify] = ACTIONS(1516), - [anon_sym_DOLLARand] = ACTIONS(1516), - [anon_sym_DOLLARdefined] = ACTIONS(1516), - [anon_sym_DOLLARembed] = ACTIONS(1516), - [anon_sym_DOLLARor] = ACTIONS(1516), - [anon_sym_DOLLARfeature] = ACTIONS(1516), - [anon_sym_DOLLARassignable] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1518), - [anon_sym_TILDE] = ACTIONS(1518), - [anon_sym_PLUS_PLUS] = ACTIONS(1518), - [anon_sym_DASH_DASH] = ACTIONS(1518), - [anon_sym_typeid] = ACTIONS(1516), - [anon_sym_LBRACE_PIPE] = ACTIONS(1518), - [anon_sym_void] = ACTIONS(1516), - [anon_sym_bool] = ACTIONS(1516), - [anon_sym_char] = ACTIONS(1516), - [anon_sym_ichar] = ACTIONS(1516), - [anon_sym_short] = ACTIONS(1516), - [anon_sym_ushort] = ACTIONS(1516), - [anon_sym_uint] = ACTIONS(1516), - [anon_sym_long] = ACTIONS(1516), - [anon_sym_ulong] = ACTIONS(1516), - [anon_sym_int128] = ACTIONS(1516), - [anon_sym_uint128] = ACTIONS(1516), - [anon_sym_float] = ACTIONS(1516), - [anon_sym_double] = ACTIONS(1516), - [anon_sym_float16] = ACTIONS(1516), - [anon_sym_bfloat16] = ACTIONS(1516), - [anon_sym_float128] = ACTIONS(1516), - [anon_sym_iptr] = ACTIONS(1516), - [anon_sym_uptr] = ACTIONS(1516), - [anon_sym_isz] = ACTIONS(1516), - [anon_sym_usz] = ACTIONS(1516), - [anon_sym_anyfault] = ACTIONS(1516), - [anon_sym_any] = ACTIONS(1516), - [anon_sym_DOLLARtypeof] = ACTIONS(1516), - [anon_sym_DOLLARtypefrom] = ACTIONS(1516), - [anon_sym_DOLLARvatype] = ACTIONS(1516), - [anon_sym_DOLLARevaltype] = ACTIONS(1516), - [sym_real_literal] = ACTIONS(1518), + [sym_ident] = ACTIONS(1287), + [sym_integer_literal] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(1289), + [anon_sym_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1289), + [sym_bytes_literal] = ACTIONS(1289), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1287), + [sym_at_ident] = ACTIONS(1289), + [sym_hash_ident] = ACTIONS(1289), + [sym_type_ident] = ACTIONS(1289), + [sym_ct_type_ident] = ACTIONS(1289), + [sym_const_ident] = ACTIONS(1287), + [sym_builtin] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1289), + [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_fn] = ACTIONS(1287), + [anon_sym_LBRACE] = ACTIONS(1287), + [anon_sym_AMP_AMP] = ACTIONS(1289), + [anon_sym_int] = ACTIONS(1287), + [anon_sym_PLUS] = ACTIONS(1287), + [anon_sym_DASH] = ACTIONS(1287), + [anon_sym_STAR] = ACTIONS(1289), + [anon_sym_DOLLARalignof] = ACTIONS(1287), + [anon_sym_DOLLARextnameof] = ACTIONS(1287), + [anon_sym_DOLLARnameof] = ACTIONS(1287), + [anon_sym_DOLLARoffsetof] = ACTIONS(1287), + [anon_sym_DOLLARqnameof] = ACTIONS(1287), + [anon_sym_DOLLARvaconst] = ACTIONS(1287), + [anon_sym_DOLLARvaarg] = ACTIONS(1287), + [anon_sym_DOLLARvaref] = ACTIONS(1287), + [anon_sym_DOLLARvaexpr] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1287), + [anon_sym_false] = ACTIONS(1287), + [anon_sym_null] = ACTIONS(1287), + [anon_sym_DOLLARvacount] = ACTIONS(1287), + [anon_sym_DOLLARappend] = ACTIONS(1287), + [anon_sym_DOLLARconcat] = ACTIONS(1287), + [anon_sym_DOLLAReval] = ACTIONS(1287), + [anon_sym_DOLLARis_const] = ACTIONS(1287), + [anon_sym_DOLLARsizeof] = ACTIONS(1287), + [anon_sym_DOLLARstringify] = ACTIONS(1287), + [anon_sym_DOLLARand] = ACTIONS(1287), + [anon_sym_DOLLARdefined] = ACTIONS(1287), + [anon_sym_DOLLARembed] = ACTIONS(1287), + [anon_sym_DOLLARor] = ACTIONS(1287), + [anon_sym_DOLLARfeature] = ACTIONS(1287), + [anon_sym_DOLLARassignable] = ACTIONS(1287), + [anon_sym_BANG] = ACTIONS(1289), + [anon_sym_TILDE] = ACTIONS(1289), + [anon_sym_PLUS_PLUS] = ACTIONS(1289), + [anon_sym_DASH_DASH] = ACTIONS(1289), + [anon_sym_typeid] = ACTIONS(1287), + [anon_sym_LBRACE_PIPE] = ACTIONS(1289), + [anon_sym_void] = ACTIONS(1287), + [anon_sym_bool] = ACTIONS(1287), + [anon_sym_char] = ACTIONS(1287), + [anon_sym_ichar] = ACTIONS(1287), + [anon_sym_short] = ACTIONS(1287), + [anon_sym_ushort] = ACTIONS(1287), + [anon_sym_uint] = ACTIONS(1287), + [anon_sym_long] = ACTIONS(1287), + [anon_sym_ulong] = ACTIONS(1287), + [anon_sym_int128] = ACTIONS(1287), + [anon_sym_uint128] = ACTIONS(1287), + [anon_sym_float] = ACTIONS(1287), + [anon_sym_double] = ACTIONS(1287), + [anon_sym_float16] = ACTIONS(1287), + [anon_sym_bfloat16] = ACTIONS(1287), + [anon_sym_float128] = ACTIONS(1287), + [anon_sym_iptr] = ACTIONS(1287), + [anon_sym_uptr] = ACTIONS(1287), + [anon_sym_isz] = ACTIONS(1287), + [anon_sym_usz] = ACTIONS(1287), + [anon_sym_anyfault] = ACTIONS(1287), + [anon_sym_any] = ACTIONS(1287), + [anon_sym_DOLLARtypeof] = ACTIONS(1287), + [anon_sym_DOLLARtypefrom] = ACTIONS(1287), + [anon_sym_DOLLARvatype] = ACTIONS(1287), + [anon_sym_DOLLARevaltype] = ACTIONS(1287), + [anon_sym_GT_RBRACK] = ACTIONS(1711), + [sym_real_literal] = ACTIONS(1289), }, [818] = { [sym_line_comment] = STATE(818), [sym_doc_comment] = STATE(818), [sym_block_comment] = STATE(818), - [sym_ident] = ACTIONS(1500), - [sym_integer_literal] = ACTIONS(1502), - [anon_sym_SQUOTE] = ACTIONS(1502), - [anon_sym_DQUOTE] = ACTIONS(1502), - [anon_sym_BQUOTE] = ACTIONS(1502), - [sym_bytes_literal] = ACTIONS(1502), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1500), - [sym_at_ident] = ACTIONS(1502), - [sym_hash_ident] = ACTIONS(1502), - [sym_type_ident] = ACTIONS(1502), - [sym_ct_type_ident] = ACTIONS(1502), - [sym_const_ident] = ACTIONS(1500), - [sym_builtin] = ACTIONS(1502), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_AMP] = ACTIONS(1500), - [anon_sym_static] = ACTIONS(1500), - [anon_sym_tlocal] = ACTIONS(1500), - [anon_sym_SEMI] = ACTIONS(1502), - [anon_sym_fn] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_const] = ACTIONS(1500), - [anon_sym_var] = ACTIONS(1500), - [anon_sym_return] = ACTIONS(1500), - [anon_sym_continue] = ACTIONS(1500), - [anon_sym_break] = ACTIONS(1500), - [anon_sym_defer] = ACTIONS(1500), - [anon_sym_assert] = ACTIONS(1500), - [anon_sym_nextcase] = ACTIONS(1500), - [anon_sym_switch] = ACTIONS(1500), - [anon_sym_AMP_AMP] = ACTIONS(1502), - [anon_sym_if] = ACTIONS(1500), - [anon_sym_for] = ACTIONS(1500), - [anon_sym_foreach] = ACTIONS(1500), - [anon_sym_foreach_r] = ACTIONS(1500), - [anon_sym_while] = ACTIONS(1500), - [anon_sym_do] = ACTIONS(1500), - [anon_sym_int] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1500), - [anon_sym_DASH] = ACTIONS(1500), - [anon_sym_STAR] = ACTIONS(1502), - [anon_sym_asm] = ACTIONS(1500), - [anon_sym_DOLLARassert] = ACTIONS(1500), - [anon_sym_DOLLARerror] = ACTIONS(1500), - [anon_sym_DOLLARecho] = ACTIONS(1500), - [anon_sym_DOLLARif] = ACTIONS(1500), - [anon_sym_DOLLARswitch] = ACTIONS(1500), - [anon_sym_DOLLARfor] = ACTIONS(1500), - [anon_sym_DOLLARendfor] = ACTIONS(1500), - [anon_sym_DOLLARforeach] = ACTIONS(1500), - [anon_sym_DOLLARalignof] = ACTIONS(1500), - [anon_sym_DOLLARextnameof] = ACTIONS(1500), - [anon_sym_DOLLARnameof] = ACTIONS(1500), - [anon_sym_DOLLARoffsetof] = ACTIONS(1500), - [anon_sym_DOLLARqnameof] = ACTIONS(1500), - [anon_sym_DOLLARvaconst] = ACTIONS(1500), - [anon_sym_DOLLARvaarg] = ACTIONS(1500), - [anon_sym_DOLLARvaref] = ACTIONS(1500), - [anon_sym_DOLLARvaexpr] = ACTIONS(1500), - [anon_sym_true] = ACTIONS(1500), - [anon_sym_false] = ACTIONS(1500), - [anon_sym_null] = ACTIONS(1500), - [anon_sym_DOLLARvacount] = ACTIONS(1500), - [anon_sym_DOLLARappend] = ACTIONS(1500), - [anon_sym_DOLLARconcat] = ACTIONS(1500), - [anon_sym_DOLLAReval] = ACTIONS(1500), - [anon_sym_DOLLARis_const] = ACTIONS(1500), - [anon_sym_DOLLARsizeof] = ACTIONS(1500), - [anon_sym_DOLLARstringify] = ACTIONS(1500), - [anon_sym_DOLLARand] = ACTIONS(1500), - [anon_sym_DOLLARdefined] = ACTIONS(1500), - [anon_sym_DOLLARembed] = ACTIONS(1500), - [anon_sym_DOLLARor] = ACTIONS(1500), - [anon_sym_DOLLARfeature] = ACTIONS(1500), - [anon_sym_DOLLARassignable] = ACTIONS(1500), - [anon_sym_BANG] = ACTIONS(1502), - [anon_sym_TILDE] = ACTIONS(1502), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), - [anon_sym_DASH_DASH] = ACTIONS(1502), - [anon_sym_typeid] = ACTIONS(1500), - [anon_sym_LBRACE_PIPE] = ACTIONS(1502), - [anon_sym_void] = ACTIONS(1500), - [anon_sym_bool] = ACTIONS(1500), - [anon_sym_char] = ACTIONS(1500), - [anon_sym_ichar] = ACTIONS(1500), - [anon_sym_short] = ACTIONS(1500), - [anon_sym_ushort] = ACTIONS(1500), - [anon_sym_uint] = ACTIONS(1500), - [anon_sym_long] = ACTIONS(1500), - [anon_sym_ulong] = ACTIONS(1500), - [anon_sym_int128] = ACTIONS(1500), - [anon_sym_uint128] = ACTIONS(1500), - [anon_sym_float] = ACTIONS(1500), - [anon_sym_double] = ACTIONS(1500), - [anon_sym_float16] = ACTIONS(1500), - [anon_sym_bfloat16] = ACTIONS(1500), - [anon_sym_float128] = ACTIONS(1500), - [anon_sym_iptr] = ACTIONS(1500), - [anon_sym_uptr] = ACTIONS(1500), - [anon_sym_isz] = ACTIONS(1500), - [anon_sym_usz] = ACTIONS(1500), - [anon_sym_anyfault] = ACTIONS(1500), - [anon_sym_any] = ACTIONS(1500), - [anon_sym_DOLLARtypeof] = ACTIONS(1500), - [anon_sym_DOLLARtypefrom] = ACTIONS(1500), - [anon_sym_DOLLARvatype] = ACTIONS(1500), - [anon_sym_DOLLARevaltype] = ACTIONS(1500), - [sym_real_literal] = ACTIONS(1502), + [sym_ident] = ACTIONS(1287), + [sym_integer_literal] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(1289), + [anon_sym_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1289), + [sym_bytes_literal] = ACTIONS(1289), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1287), + [sym_at_ident] = ACTIONS(1289), + [sym_hash_ident] = ACTIONS(1289), + [sym_type_ident] = ACTIONS(1289), + [sym_ct_type_ident] = ACTIONS(1289), + [sym_const_ident] = ACTIONS(1287), + [sym_builtin] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1289), + [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_RBRACK] = ACTIONS(1715), + [anon_sym_fn] = ACTIONS(1287), + [anon_sym_LBRACE] = ACTIONS(1287), + [anon_sym_AMP_AMP] = ACTIONS(1289), + [anon_sym_int] = ACTIONS(1287), + [anon_sym_PLUS] = ACTIONS(1287), + [anon_sym_DASH] = ACTIONS(1287), + [anon_sym_STAR] = ACTIONS(1289), + [anon_sym_DOLLARalignof] = ACTIONS(1287), + [anon_sym_DOLLARextnameof] = ACTIONS(1287), + [anon_sym_DOLLARnameof] = ACTIONS(1287), + [anon_sym_DOLLARoffsetof] = ACTIONS(1287), + [anon_sym_DOLLARqnameof] = ACTIONS(1287), + [anon_sym_DOLLARvaconst] = ACTIONS(1287), + [anon_sym_DOLLARvaarg] = ACTIONS(1287), + [anon_sym_DOLLARvaref] = ACTIONS(1287), + [anon_sym_DOLLARvaexpr] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1287), + [anon_sym_false] = ACTIONS(1287), + [anon_sym_null] = ACTIONS(1287), + [anon_sym_DOLLARvacount] = ACTIONS(1287), + [anon_sym_DOLLARappend] = ACTIONS(1287), + [anon_sym_DOLLARconcat] = ACTIONS(1287), + [anon_sym_DOLLAReval] = ACTIONS(1287), + [anon_sym_DOLLARis_const] = ACTIONS(1287), + [anon_sym_DOLLARsizeof] = ACTIONS(1287), + [anon_sym_DOLLARstringify] = ACTIONS(1287), + [anon_sym_DOLLARand] = ACTIONS(1287), + [anon_sym_DOLLARdefined] = ACTIONS(1287), + [anon_sym_DOLLARembed] = ACTIONS(1287), + [anon_sym_DOLLARor] = ACTIONS(1287), + [anon_sym_DOLLARfeature] = ACTIONS(1287), + [anon_sym_DOLLARassignable] = ACTIONS(1287), + [anon_sym_BANG] = ACTIONS(1289), + [anon_sym_TILDE] = ACTIONS(1289), + [anon_sym_PLUS_PLUS] = ACTIONS(1289), + [anon_sym_DASH_DASH] = ACTIONS(1289), + [anon_sym_typeid] = ACTIONS(1287), + [anon_sym_LBRACE_PIPE] = ACTIONS(1289), + [anon_sym_void] = ACTIONS(1287), + [anon_sym_bool] = ACTIONS(1287), + [anon_sym_char] = ACTIONS(1287), + [anon_sym_ichar] = ACTIONS(1287), + [anon_sym_short] = ACTIONS(1287), + [anon_sym_ushort] = ACTIONS(1287), + [anon_sym_uint] = ACTIONS(1287), + [anon_sym_long] = ACTIONS(1287), + [anon_sym_ulong] = ACTIONS(1287), + [anon_sym_int128] = ACTIONS(1287), + [anon_sym_uint128] = ACTIONS(1287), + [anon_sym_float] = ACTIONS(1287), + [anon_sym_double] = ACTIONS(1287), + [anon_sym_float16] = ACTIONS(1287), + [anon_sym_bfloat16] = ACTIONS(1287), + [anon_sym_float128] = ACTIONS(1287), + [anon_sym_iptr] = ACTIONS(1287), + [anon_sym_uptr] = ACTIONS(1287), + [anon_sym_isz] = ACTIONS(1287), + [anon_sym_usz] = ACTIONS(1287), + [anon_sym_anyfault] = ACTIONS(1287), + [anon_sym_any] = ACTIONS(1287), + [anon_sym_DOLLARtypeof] = ACTIONS(1287), + [anon_sym_DOLLARtypefrom] = ACTIONS(1287), + [anon_sym_DOLLARvatype] = ACTIONS(1287), + [anon_sym_DOLLARevaltype] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1289), }, [819] = { [sym_line_comment] = STATE(819), [sym_doc_comment] = STATE(819), [sym_block_comment] = STATE(819), - [sym_ident] = ACTIONS(1528), - [sym_integer_literal] = ACTIONS(1530), - [anon_sym_SQUOTE] = ACTIONS(1530), - [anon_sym_DQUOTE] = ACTIONS(1530), - [anon_sym_BQUOTE] = ACTIONS(1530), - [sym_bytes_literal] = ACTIONS(1530), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1528), - [sym_at_ident] = ACTIONS(1530), - [sym_hash_ident] = ACTIONS(1530), - [sym_type_ident] = ACTIONS(1530), - [sym_ct_type_ident] = ACTIONS(1530), - [sym_const_ident] = ACTIONS(1528), - [sym_builtin] = ACTIONS(1530), - [anon_sym_LPAREN] = ACTIONS(1530), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_static] = ACTIONS(1528), - [anon_sym_tlocal] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(1530), - [anon_sym_fn] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_var] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(1528), - [anon_sym_continue] = ACTIONS(1528), - [anon_sym_break] = ACTIONS(1528), - [anon_sym_defer] = ACTIONS(1528), - [anon_sym_assert] = ACTIONS(1528), - [anon_sym_nextcase] = ACTIONS(1528), - [anon_sym_switch] = ACTIONS(1528), - [anon_sym_AMP_AMP] = ACTIONS(1530), - [anon_sym_if] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1528), - [anon_sym_foreach] = ACTIONS(1528), - [anon_sym_foreach_r] = ACTIONS(1528), - [anon_sym_while] = ACTIONS(1528), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_int] = ACTIONS(1528), - [anon_sym_PLUS] = ACTIONS(1528), - [anon_sym_DASH] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1530), - [anon_sym_asm] = ACTIONS(1528), - [anon_sym_DOLLARassert] = ACTIONS(1528), - [anon_sym_DOLLARerror] = ACTIONS(1528), - [anon_sym_DOLLARecho] = ACTIONS(1528), - [anon_sym_DOLLARif] = ACTIONS(1528), - [anon_sym_DOLLARswitch] = ACTIONS(1528), - [anon_sym_DOLLARfor] = ACTIONS(1528), - [anon_sym_DOLLARendfor] = ACTIONS(1528), - [anon_sym_DOLLARforeach] = ACTIONS(1528), - [anon_sym_DOLLARalignof] = ACTIONS(1528), - [anon_sym_DOLLARextnameof] = ACTIONS(1528), - [anon_sym_DOLLARnameof] = ACTIONS(1528), - [anon_sym_DOLLARoffsetof] = ACTIONS(1528), - [anon_sym_DOLLARqnameof] = ACTIONS(1528), - [anon_sym_DOLLARvaconst] = ACTIONS(1528), - [anon_sym_DOLLARvaarg] = ACTIONS(1528), - [anon_sym_DOLLARvaref] = ACTIONS(1528), - [anon_sym_DOLLARvaexpr] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [anon_sym_null] = ACTIONS(1528), - [anon_sym_DOLLARvacount] = ACTIONS(1528), - [anon_sym_DOLLARappend] = ACTIONS(1528), - [anon_sym_DOLLARconcat] = ACTIONS(1528), - [anon_sym_DOLLAReval] = ACTIONS(1528), - [anon_sym_DOLLARis_const] = ACTIONS(1528), - [anon_sym_DOLLARsizeof] = ACTIONS(1528), - [anon_sym_DOLLARstringify] = ACTIONS(1528), - [anon_sym_DOLLARand] = ACTIONS(1528), - [anon_sym_DOLLARdefined] = ACTIONS(1528), - [anon_sym_DOLLARembed] = ACTIONS(1528), - [anon_sym_DOLLARor] = ACTIONS(1528), - [anon_sym_DOLLARfeature] = ACTIONS(1528), - [anon_sym_DOLLARassignable] = ACTIONS(1528), - [anon_sym_BANG] = ACTIONS(1530), - [anon_sym_TILDE] = ACTIONS(1530), - [anon_sym_PLUS_PLUS] = ACTIONS(1530), - [anon_sym_DASH_DASH] = ACTIONS(1530), - [anon_sym_typeid] = ACTIONS(1528), - [anon_sym_LBRACE_PIPE] = ACTIONS(1530), - [anon_sym_void] = ACTIONS(1528), - [anon_sym_bool] = ACTIONS(1528), - [anon_sym_char] = ACTIONS(1528), - [anon_sym_ichar] = ACTIONS(1528), - [anon_sym_short] = ACTIONS(1528), - [anon_sym_ushort] = ACTIONS(1528), - [anon_sym_uint] = ACTIONS(1528), - [anon_sym_long] = ACTIONS(1528), - [anon_sym_ulong] = ACTIONS(1528), - [anon_sym_int128] = ACTIONS(1528), - [anon_sym_uint128] = ACTIONS(1528), - [anon_sym_float] = ACTIONS(1528), - [anon_sym_double] = ACTIONS(1528), - [anon_sym_float16] = ACTIONS(1528), - [anon_sym_bfloat16] = ACTIONS(1528), - [anon_sym_float128] = ACTIONS(1528), - [anon_sym_iptr] = ACTIONS(1528), - [anon_sym_uptr] = ACTIONS(1528), - [anon_sym_isz] = ACTIONS(1528), - [anon_sym_usz] = ACTIONS(1528), - [anon_sym_anyfault] = ACTIONS(1528), - [anon_sym_any] = ACTIONS(1528), - [anon_sym_DOLLARtypeof] = ACTIONS(1528), - [anon_sym_DOLLARtypefrom] = ACTIONS(1528), - [anon_sym_DOLLARvatype] = ACTIONS(1528), - [anon_sym_DOLLARevaltype] = ACTIONS(1528), - [sym_real_literal] = ACTIONS(1530), + [sym_ident] = ACTIONS(1287), + [sym_integer_literal] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(1289), + [anon_sym_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1289), + [sym_bytes_literal] = ACTIONS(1289), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1287), + [sym_at_ident] = ACTIONS(1289), + [sym_hash_ident] = ACTIONS(1289), + [sym_type_ident] = ACTIONS(1289), + [sym_ct_type_ident] = ACTIONS(1289), + [sym_const_ident] = ACTIONS(1287), + [sym_builtin] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1289), + [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_fn] = ACTIONS(1287), + [anon_sym_LBRACE] = ACTIONS(1287), + [anon_sym_AMP_AMP] = ACTIONS(1289), + [anon_sym_int] = ACTIONS(1287), + [anon_sym_PLUS] = ACTIONS(1287), + [anon_sym_DASH] = ACTIONS(1287), + [anon_sym_STAR] = ACTIONS(1289), + [anon_sym_DOLLARalignof] = ACTIONS(1287), + [anon_sym_DOLLARextnameof] = ACTIONS(1287), + [anon_sym_DOLLARnameof] = ACTIONS(1287), + [anon_sym_DOLLARoffsetof] = ACTIONS(1287), + [anon_sym_DOLLARqnameof] = ACTIONS(1287), + [anon_sym_DOLLARvaconst] = ACTIONS(1287), + [anon_sym_DOLLARvaarg] = ACTIONS(1287), + [anon_sym_DOLLARvaref] = ACTIONS(1287), + [anon_sym_DOLLARvaexpr] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1287), + [anon_sym_false] = ACTIONS(1287), + [anon_sym_null] = ACTIONS(1287), + [anon_sym_DOLLARvacount] = ACTIONS(1287), + [anon_sym_DOLLARappend] = ACTIONS(1287), + [anon_sym_DOLLARconcat] = ACTIONS(1287), + [anon_sym_DOLLAReval] = ACTIONS(1287), + [anon_sym_DOLLARis_const] = ACTIONS(1287), + [anon_sym_DOLLARsizeof] = ACTIONS(1287), + [anon_sym_DOLLARstringify] = ACTIONS(1287), + [anon_sym_DOLLARand] = ACTIONS(1287), + [anon_sym_DOLLARdefined] = ACTIONS(1287), + [anon_sym_DOLLARembed] = ACTIONS(1287), + [anon_sym_DOLLARor] = ACTIONS(1287), + [anon_sym_DOLLARfeature] = ACTIONS(1287), + [anon_sym_DOLLARassignable] = ACTIONS(1287), + [anon_sym_BANG] = ACTIONS(1289), + [anon_sym_TILDE] = ACTIONS(1289), + [anon_sym_PLUS_PLUS] = ACTIONS(1289), + [anon_sym_DASH_DASH] = ACTIONS(1289), + [anon_sym_typeid] = ACTIONS(1287), + [anon_sym_LBRACE_PIPE] = ACTIONS(1289), + [anon_sym_void] = ACTIONS(1287), + [anon_sym_bool] = ACTIONS(1287), + [anon_sym_char] = ACTIONS(1287), + [anon_sym_ichar] = ACTIONS(1287), + [anon_sym_short] = ACTIONS(1287), + [anon_sym_ushort] = ACTIONS(1287), + [anon_sym_uint] = ACTIONS(1287), + [anon_sym_long] = ACTIONS(1287), + [anon_sym_ulong] = ACTIONS(1287), + [anon_sym_int128] = ACTIONS(1287), + [anon_sym_uint128] = ACTIONS(1287), + [anon_sym_float] = ACTIONS(1287), + [anon_sym_double] = ACTIONS(1287), + [anon_sym_float16] = ACTIONS(1287), + [anon_sym_bfloat16] = ACTIONS(1287), + [anon_sym_float128] = ACTIONS(1287), + [anon_sym_iptr] = ACTIONS(1287), + [anon_sym_uptr] = ACTIONS(1287), + [anon_sym_isz] = ACTIONS(1287), + [anon_sym_usz] = ACTIONS(1287), + [anon_sym_anyfault] = ACTIONS(1287), + [anon_sym_any] = ACTIONS(1287), + [anon_sym_DOLLARtypeof] = ACTIONS(1287), + [anon_sym_DOLLARtypefrom] = ACTIONS(1287), + [anon_sym_DOLLARvatype] = ACTIONS(1287), + [anon_sym_DOLLARevaltype] = ACTIONS(1287), + [anon_sym_GT_RBRACK] = ACTIONS(1715), + [sym_real_literal] = ACTIONS(1289), }, [820] = { [sym_line_comment] = STATE(820), [sym_doc_comment] = STATE(820), [sym_block_comment] = STATE(820), - [sym_ident] = ACTIONS(1576), - [sym_integer_literal] = ACTIONS(1578), - [anon_sym_SQUOTE] = ACTIONS(1578), - [anon_sym_DQUOTE] = ACTIONS(1578), - [anon_sym_BQUOTE] = ACTIONS(1578), - [sym_bytes_literal] = ACTIONS(1578), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1576), - [sym_at_ident] = ACTIONS(1578), - [sym_hash_ident] = ACTIONS(1578), - [sym_type_ident] = ACTIONS(1578), - [sym_ct_type_ident] = ACTIONS(1578), - [sym_const_ident] = ACTIONS(1576), - [sym_builtin] = ACTIONS(1578), - [anon_sym_LPAREN] = ACTIONS(1578), - [anon_sym_AMP] = ACTIONS(1576), - [anon_sym_static] = ACTIONS(1576), - [anon_sym_tlocal] = ACTIONS(1576), - [anon_sym_SEMI] = ACTIONS(1578), - [anon_sym_fn] = ACTIONS(1576), - [anon_sym_LBRACE] = ACTIONS(1576), - [anon_sym_const] = ACTIONS(1576), - [anon_sym_var] = ACTIONS(1576), - [anon_sym_return] = ACTIONS(1576), - [anon_sym_continue] = ACTIONS(1576), - [anon_sym_break] = ACTIONS(1576), - [anon_sym_defer] = ACTIONS(1576), - [anon_sym_assert] = ACTIONS(1576), - [anon_sym_nextcase] = ACTIONS(1576), - [anon_sym_switch] = ACTIONS(1576), - [anon_sym_AMP_AMP] = ACTIONS(1578), - [anon_sym_if] = ACTIONS(1576), - [anon_sym_for] = ACTIONS(1576), - [anon_sym_foreach] = ACTIONS(1576), - [anon_sym_foreach_r] = ACTIONS(1576), - [anon_sym_while] = ACTIONS(1576), - [anon_sym_do] = ACTIONS(1576), - [anon_sym_int] = ACTIONS(1576), - [anon_sym_PLUS] = ACTIONS(1576), - [anon_sym_DASH] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(1578), - [anon_sym_asm] = ACTIONS(1576), - [anon_sym_DOLLARassert] = ACTIONS(1576), - [anon_sym_DOLLARerror] = ACTIONS(1576), - [anon_sym_DOLLARecho] = ACTIONS(1576), - [anon_sym_DOLLARif] = ACTIONS(1576), - [anon_sym_DOLLARswitch] = ACTIONS(1576), - [anon_sym_DOLLARfor] = ACTIONS(1576), - [anon_sym_DOLLARendfor] = ACTIONS(1576), - [anon_sym_DOLLARforeach] = ACTIONS(1576), - [anon_sym_DOLLARalignof] = ACTIONS(1576), - [anon_sym_DOLLARextnameof] = ACTIONS(1576), - [anon_sym_DOLLARnameof] = ACTIONS(1576), - [anon_sym_DOLLARoffsetof] = ACTIONS(1576), - [anon_sym_DOLLARqnameof] = ACTIONS(1576), - [anon_sym_DOLLARvaconst] = ACTIONS(1576), - [anon_sym_DOLLARvaarg] = ACTIONS(1576), - [anon_sym_DOLLARvaref] = ACTIONS(1576), - [anon_sym_DOLLARvaexpr] = ACTIONS(1576), - [anon_sym_true] = ACTIONS(1576), - [anon_sym_false] = ACTIONS(1576), - [anon_sym_null] = ACTIONS(1576), - [anon_sym_DOLLARvacount] = ACTIONS(1576), - [anon_sym_DOLLARappend] = ACTIONS(1576), - [anon_sym_DOLLARconcat] = ACTIONS(1576), - [anon_sym_DOLLAReval] = ACTIONS(1576), - [anon_sym_DOLLARis_const] = ACTIONS(1576), - [anon_sym_DOLLARsizeof] = ACTIONS(1576), - [anon_sym_DOLLARstringify] = ACTIONS(1576), - [anon_sym_DOLLARand] = ACTIONS(1576), - [anon_sym_DOLLARdefined] = ACTIONS(1576), - [anon_sym_DOLLARembed] = ACTIONS(1576), - [anon_sym_DOLLARor] = ACTIONS(1576), - [anon_sym_DOLLARfeature] = ACTIONS(1576), - [anon_sym_DOLLARassignable] = ACTIONS(1576), - [anon_sym_BANG] = ACTIONS(1578), - [anon_sym_TILDE] = ACTIONS(1578), - [anon_sym_PLUS_PLUS] = ACTIONS(1578), - [anon_sym_DASH_DASH] = ACTIONS(1578), - [anon_sym_typeid] = ACTIONS(1576), - [anon_sym_LBRACE_PIPE] = ACTIONS(1578), - [anon_sym_void] = ACTIONS(1576), - [anon_sym_bool] = ACTIONS(1576), - [anon_sym_char] = ACTIONS(1576), - [anon_sym_ichar] = ACTIONS(1576), - [anon_sym_short] = ACTIONS(1576), - [anon_sym_ushort] = ACTIONS(1576), - [anon_sym_uint] = ACTIONS(1576), - [anon_sym_long] = ACTIONS(1576), - [anon_sym_ulong] = ACTIONS(1576), - [anon_sym_int128] = ACTIONS(1576), - [anon_sym_uint128] = ACTIONS(1576), - [anon_sym_float] = ACTIONS(1576), - [anon_sym_double] = ACTIONS(1576), - [anon_sym_float16] = ACTIONS(1576), - [anon_sym_bfloat16] = ACTIONS(1576), - [anon_sym_float128] = ACTIONS(1576), - [anon_sym_iptr] = ACTIONS(1576), - [anon_sym_uptr] = ACTIONS(1576), - [anon_sym_isz] = ACTIONS(1576), - [anon_sym_usz] = ACTIONS(1576), - [anon_sym_anyfault] = ACTIONS(1576), - [anon_sym_any] = ACTIONS(1576), - [anon_sym_DOLLARtypeof] = ACTIONS(1576), - [anon_sym_DOLLARtypefrom] = ACTIONS(1576), - [anon_sym_DOLLARvatype] = ACTIONS(1576), - [anon_sym_DOLLARevaltype] = ACTIONS(1576), - [sym_real_literal] = ACTIONS(1578), + [sym_ident] = ACTIONS(1287), + [sym_integer_literal] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(1289), + [anon_sym_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1289), + [sym_bytes_literal] = ACTIONS(1289), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1287), + [sym_at_ident] = ACTIONS(1289), + [sym_hash_ident] = ACTIONS(1289), + [sym_type_ident] = ACTIONS(1289), + [sym_ct_type_ident] = ACTIONS(1289), + [sym_const_ident] = ACTIONS(1287), + [sym_builtin] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1289), + [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_LBRACK] = ACTIONS(1717), + [anon_sym_fn] = ACTIONS(1287), + [anon_sym_LBRACE] = ACTIONS(1287), + [anon_sym_AMP_AMP] = ACTIONS(1289), + [anon_sym_int] = ACTIONS(1287), + [anon_sym_PLUS] = ACTIONS(1287), + [anon_sym_DASH] = ACTIONS(1287), + [anon_sym_STAR] = ACTIONS(1289), + [anon_sym_DOLLARalignof] = ACTIONS(1287), + [anon_sym_DOLLARextnameof] = ACTIONS(1287), + [anon_sym_DOLLARnameof] = ACTIONS(1287), + [anon_sym_DOLLARoffsetof] = ACTIONS(1287), + [anon_sym_DOLLARqnameof] = ACTIONS(1287), + [anon_sym_DOLLARvaconst] = ACTIONS(1287), + [anon_sym_DOLLARvaarg] = ACTIONS(1287), + [anon_sym_DOLLARvaref] = ACTIONS(1287), + [anon_sym_DOLLARvaexpr] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1287), + [anon_sym_false] = ACTIONS(1287), + [anon_sym_null] = ACTIONS(1287), + [anon_sym_DOLLARvacount] = ACTIONS(1287), + [anon_sym_DOLLARappend] = ACTIONS(1287), + [anon_sym_DOLLARconcat] = ACTIONS(1287), + [anon_sym_DOLLAReval] = ACTIONS(1287), + [anon_sym_DOLLARis_const] = ACTIONS(1287), + [anon_sym_DOLLARsizeof] = ACTIONS(1287), + [anon_sym_DOLLARstringify] = ACTIONS(1287), + [anon_sym_DOLLARand] = ACTIONS(1287), + [anon_sym_DOLLARdefined] = ACTIONS(1287), + [anon_sym_DOLLARembed] = ACTIONS(1287), + [anon_sym_DOLLARor] = ACTIONS(1287), + [anon_sym_DOLLARfeature] = ACTIONS(1287), + [anon_sym_DOLLARassignable] = ACTIONS(1287), + [anon_sym_BANG] = ACTIONS(1289), + [anon_sym_TILDE] = ACTIONS(1289), + [anon_sym_PLUS_PLUS] = ACTIONS(1289), + [anon_sym_DASH_DASH] = ACTIONS(1289), + [anon_sym_typeid] = ACTIONS(1287), + [anon_sym_LBRACE_PIPE] = ACTIONS(1289), + [anon_sym_void] = ACTIONS(1287), + [anon_sym_bool] = ACTIONS(1287), + [anon_sym_char] = ACTIONS(1287), + [anon_sym_ichar] = ACTIONS(1287), + [anon_sym_short] = ACTIONS(1287), + [anon_sym_ushort] = ACTIONS(1287), + [anon_sym_uint] = ACTIONS(1287), + [anon_sym_long] = ACTIONS(1287), + [anon_sym_ulong] = ACTIONS(1287), + [anon_sym_int128] = ACTIONS(1287), + [anon_sym_uint128] = ACTIONS(1287), + [anon_sym_float] = ACTIONS(1287), + [anon_sym_double] = ACTIONS(1287), + [anon_sym_float16] = ACTIONS(1287), + [anon_sym_bfloat16] = ACTIONS(1287), + [anon_sym_float128] = ACTIONS(1287), + [anon_sym_iptr] = ACTIONS(1287), + [anon_sym_uptr] = ACTIONS(1287), + [anon_sym_isz] = ACTIONS(1287), + [anon_sym_usz] = ACTIONS(1287), + [anon_sym_anyfault] = ACTIONS(1287), + [anon_sym_any] = ACTIONS(1287), + [anon_sym_DOLLARtypeof] = ACTIONS(1287), + [anon_sym_DOLLARtypefrom] = ACTIONS(1287), + [anon_sym_DOLLARvatype] = ACTIONS(1287), + [anon_sym_DOLLARevaltype] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1289), }, [821] = { [sym_line_comment] = STATE(821), [sym_doc_comment] = STATE(821), [sym_block_comment] = STATE(821), - [sym_ident] = ACTIONS(1636), - [sym_integer_literal] = ACTIONS(1638), - [anon_sym_SQUOTE] = ACTIONS(1638), - [anon_sym_DQUOTE] = ACTIONS(1638), - [anon_sym_BQUOTE] = ACTIONS(1638), - [sym_bytes_literal] = ACTIONS(1638), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1636), - [sym_at_ident] = ACTIONS(1638), - [sym_hash_ident] = ACTIONS(1638), - [sym_type_ident] = ACTIONS(1638), - [sym_ct_type_ident] = ACTIONS(1638), - [sym_const_ident] = ACTIONS(1636), - [sym_builtin] = ACTIONS(1638), - [anon_sym_LPAREN] = ACTIONS(1638), - [anon_sym_AMP] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(1636), - [anon_sym_tlocal] = ACTIONS(1636), - [anon_sym_SEMI] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1636), - [anon_sym_LBRACE] = ACTIONS(1636), - [anon_sym_const] = ACTIONS(1636), - [anon_sym_var] = ACTIONS(1636), - [anon_sym_return] = ACTIONS(1636), - [anon_sym_continue] = ACTIONS(1636), - [anon_sym_break] = ACTIONS(1636), - [anon_sym_defer] = ACTIONS(1636), - [anon_sym_assert] = ACTIONS(1636), - [anon_sym_nextcase] = ACTIONS(1636), - [anon_sym_switch] = ACTIONS(1636), - [anon_sym_AMP_AMP] = ACTIONS(1638), - [anon_sym_if] = ACTIONS(1636), - [anon_sym_for] = ACTIONS(1636), - [anon_sym_foreach] = ACTIONS(1636), - [anon_sym_foreach_r] = ACTIONS(1636), - [anon_sym_while] = ACTIONS(1636), - [anon_sym_do] = ACTIONS(1636), - [anon_sym_int] = ACTIONS(1636), - [anon_sym_PLUS] = ACTIONS(1636), - [anon_sym_DASH] = ACTIONS(1636), - [anon_sym_STAR] = ACTIONS(1638), - [anon_sym_asm] = ACTIONS(1636), - [anon_sym_DOLLARassert] = ACTIONS(1636), - [anon_sym_DOLLARerror] = ACTIONS(1636), - [anon_sym_DOLLARecho] = ACTIONS(1636), - [anon_sym_DOLLARif] = ACTIONS(1636), - [anon_sym_DOLLARswitch] = ACTIONS(1636), - [anon_sym_DOLLARfor] = ACTIONS(1636), - [anon_sym_DOLLARendfor] = ACTIONS(1636), - [anon_sym_DOLLARforeach] = ACTIONS(1636), - [anon_sym_DOLLARalignof] = ACTIONS(1636), - [anon_sym_DOLLARextnameof] = ACTIONS(1636), - [anon_sym_DOLLARnameof] = ACTIONS(1636), - [anon_sym_DOLLARoffsetof] = ACTIONS(1636), - [anon_sym_DOLLARqnameof] = ACTIONS(1636), - [anon_sym_DOLLARvaconst] = ACTIONS(1636), - [anon_sym_DOLLARvaarg] = ACTIONS(1636), - [anon_sym_DOLLARvaref] = ACTIONS(1636), - [anon_sym_DOLLARvaexpr] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1636), - [anon_sym_false] = ACTIONS(1636), - [anon_sym_null] = ACTIONS(1636), - [anon_sym_DOLLARvacount] = ACTIONS(1636), - [anon_sym_DOLLARappend] = ACTIONS(1636), - [anon_sym_DOLLARconcat] = ACTIONS(1636), - [anon_sym_DOLLAReval] = ACTIONS(1636), - [anon_sym_DOLLARis_const] = ACTIONS(1636), - [anon_sym_DOLLARsizeof] = ACTIONS(1636), - [anon_sym_DOLLARstringify] = ACTIONS(1636), - [anon_sym_DOLLARand] = ACTIONS(1636), - [anon_sym_DOLLARdefined] = ACTIONS(1636), - [anon_sym_DOLLARembed] = ACTIONS(1636), - [anon_sym_DOLLARor] = ACTIONS(1636), - [anon_sym_DOLLARfeature] = ACTIONS(1636), - [anon_sym_DOLLARassignable] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1638), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_PLUS_PLUS] = ACTIONS(1638), - [anon_sym_DASH_DASH] = ACTIONS(1638), - [anon_sym_typeid] = ACTIONS(1636), - [anon_sym_LBRACE_PIPE] = ACTIONS(1638), - [anon_sym_void] = ACTIONS(1636), - [anon_sym_bool] = ACTIONS(1636), - [anon_sym_char] = ACTIONS(1636), - [anon_sym_ichar] = ACTIONS(1636), - [anon_sym_short] = ACTIONS(1636), - [anon_sym_ushort] = ACTIONS(1636), - [anon_sym_uint] = ACTIONS(1636), - [anon_sym_long] = ACTIONS(1636), - [anon_sym_ulong] = ACTIONS(1636), - [anon_sym_int128] = ACTIONS(1636), - [anon_sym_uint128] = ACTIONS(1636), - [anon_sym_float] = ACTIONS(1636), - [anon_sym_double] = ACTIONS(1636), - [anon_sym_float16] = ACTIONS(1636), - [anon_sym_bfloat16] = ACTIONS(1636), - [anon_sym_float128] = ACTIONS(1636), - [anon_sym_iptr] = ACTIONS(1636), - [anon_sym_uptr] = ACTIONS(1636), - [anon_sym_isz] = ACTIONS(1636), - [anon_sym_usz] = ACTIONS(1636), - [anon_sym_anyfault] = ACTIONS(1636), - [anon_sym_any] = ACTIONS(1636), - [anon_sym_DOLLARtypeof] = ACTIONS(1636), - [anon_sym_DOLLARtypefrom] = ACTIONS(1636), - [anon_sym_DOLLARvatype] = ACTIONS(1636), - [anon_sym_DOLLARevaltype] = ACTIONS(1636), - [sym_real_literal] = ACTIONS(1638), + [sym_ident] = ACTIONS(1719), + [sym_integer_literal] = ACTIONS(1721), + [anon_sym_SQUOTE] = ACTIONS(1721), + [anon_sym_DQUOTE] = ACTIONS(1721), + [anon_sym_BQUOTE] = ACTIONS(1721), + [sym_bytes_literal] = ACTIONS(1721), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1719), + [sym_at_ident] = ACTIONS(1721), + [sym_hash_ident] = ACTIONS(1721), + [sym_type_ident] = ACTIONS(1721), + [sym_ct_type_ident] = ACTIONS(1721), + [sym_const_ident] = ACTIONS(1719), + [sym_builtin] = ACTIONS(1721), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_AMP] = ACTIONS(1719), + [anon_sym_fn] = ACTIONS(1719), + [anon_sym_LBRACE] = ACTIONS(1719), + [anon_sym_AMP_AMP] = ACTIONS(1721), + [anon_sym_int] = ACTIONS(1719), + [anon_sym_PLUS] = ACTIONS(1719), + [anon_sym_DASH] = ACTIONS(1719), + [anon_sym_STAR] = ACTIONS(1721), + [anon_sym_DOLLARalignof] = ACTIONS(1719), + [anon_sym_DOLLARextnameof] = ACTIONS(1719), + [anon_sym_DOLLARnameof] = ACTIONS(1719), + [anon_sym_DOLLARoffsetof] = ACTIONS(1719), + [anon_sym_DOLLARqnameof] = ACTIONS(1719), + [anon_sym_DOLLARvaconst] = ACTIONS(1719), + [anon_sym_DOLLARvaarg] = ACTIONS(1719), + [anon_sym_DOLLARvaref] = ACTIONS(1719), + [anon_sym_DOLLARvaexpr] = ACTIONS(1719), + [anon_sym_true] = ACTIONS(1719), + [anon_sym_false] = ACTIONS(1719), + [anon_sym_null] = ACTIONS(1719), + [anon_sym_DOLLARvacount] = ACTIONS(1719), + [anon_sym_DOLLARappend] = ACTIONS(1719), + [anon_sym_DOLLARconcat] = ACTIONS(1719), + [anon_sym_DOLLAReval] = ACTIONS(1719), + [anon_sym_DOLLARis_const] = ACTIONS(1719), + [anon_sym_DOLLARsizeof] = ACTIONS(1719), + [anon_sym_DOLLARstringify] = ACTIONS(1719), + [anon_sym_DOLLARand] = ACTIONS(1719), + [anon_sym_DOLLARdefined] = ACTIONS(1719), + [anon_sym_DOLLARembed] = ACTIONS(1719), + [anon_sym_DOLLARor] = ACTIONS(1719), + [anon_sym_DOLLARfeature] = ACTIONS(1719), + [anon_sym_DOLLARassignable] = ACTIONS(1719), + [anon_sym_BANG] = ACTIONS(1721), + [anon_sym_TILDE] = ACTIONS(1721), + [anon_sym_PLUS_PLUS] = ACTIONS(1721), + [anon_sym_DASH_DASH] = ACTIONS(1721), + [anon_sym_typeid] = ACTIONS(1719), + [anon_sym_LBRACE_PIPE] = ACTIONS(1721), + [anon_sym_void] = ACTIONS(1719), + [anon_sym_bool] = ACTIONS(1719), + [anon_sym_char] = ACTIONS(1719), + [anon_sym_ichar] = ACTIONS(1719), + [anon_sym_short] = ACTIONS(1719), + [anon_sym_ushort] = ACTIONS(1719), + [anon_sym_uint] = ACTIONS(1719), + [anon_sym_long] = ACTIONS(1719), + [anon_sym_ulong] = ACTIONS(1719), + [anon_sym_int128] = ACTIONS(1719), + [anon_sym_uint128] = ACTIONS(1719), + [anon_sym_float] = ACTIONS(1719), + [anon_sym_double] = ACTIONS(1719), + [anon_sym_float16] = ACTIONS(1719), + [anon_sym_bfloat16] = ACTIONS(1719), + [anon_sym_float128] = ACTIONS(1719), + [anon_sym_iptr] = ACTIONS(1719), + [anon_sym_uptr] = ACTIONS(1719), + [anon_sym_isz] = ACTIONS(1719), + [anon_sym_usz] = ACTIONS(1719), + [anon_sym_anyfault] = ACTIONS(1719), + [anon_sym_any] = ACTIONS(1719), + [anon_sym_DOLLARtypeof] = ACTIONS(1719), + [anon_sym_DOLLARtypefrom] = ACTIONS(1719), + [anon_sym_DOLLARvatype] = ACTIONS(1719), + [anon_sym_DOLLARevaltype] = ACTIONS(1719), + [sym_real_literal] = ACTIONS(1721), }, [822] = { [sym_line_comment] = STATE(822), [sym_doc_comment] = STATE(822), [sym_block_comment] = STATE(822), - [sym_ident] = ACTIONS(1600), - [sym_integer_literal] = ACTIONS(1602), - [anon_sym_SQUOTE] = ACTIONS(1602), - [anon_sym_DQUOTE] = ACTIONS(1602), - [anon_sym_BQUOTE] = ACTIONS(1602), - [sym_bytes_literal] = ACTIONS(1602), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1600), - [sym_at_ident] = ACTIONS(1602), - [sym_hash_ident] = ACTIONS(1602), - [sym_type_ident] = ACTIONS(1602), - [sym_ct_type_ident] = ACTIONS(1602), - [sym_const_ident] = ACTIONS(1600), - [sym_builtin] = ACTIONS(1602), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_AMP] = ACTIONS(1600), - [anon_sym_static] = ACTIONS(1600), - [anon_sym_tlocal] = ACTIONS(1600), - [anon_sym_SEMI] = ACTIONS(1602), - [anon_sym_fn] = ACTIONS(1600), - [anon_sym_LBRACE] = ACTIONS(1600), - [anon_sym_const] = ACTIONS(1600), - [anon_sym_var] = ACTIONS(1600), - [anon_sym_return] = ACTIONS(1600), - [anon_sym_continue] = ACTIONS(1600), - [anon_sym_break] = ACTIONS(1600), - [anon_sym_defer] = ACTIONS(1600), - [anon_sym_assert] = ACTIONS(1600), - [anon_sym_nextcase] = ACTIONS(1600), - [anon_sym_switch] = ACTIONS(1600), - [anon_sym_AMP_AMP] = ACTIONS(1602), - [anon_sym_if] = ACTIONS(1600), - [anon_sym_for] = ACTIONS(1600), - [anon_sym_foreach] = ACTIONS(1600), - [anon_sym_foreach_r] = ACTIONS(1600), - [anon_sym_while] = ACTIONS(1600), - [anon_sym_do] = ACTIONS(1600), - [anon_sym_int] = ACTIONS(1600), - [anon_sym_PLUS] = ACTIONS(1600), - [anon_sym_DASH] = ACTIONS(1600), - [anon_sym_STAR] = ACTIONS(1602), - [anon_sym_asm] = ACTIONS(1600), - [anon_sym_DOLLARassert] = ACTIONS(1600), - [anon_sym_DOLLARerror] = ACTIONS(1600), - [anon_sym_DOLLARecho] = ACTIONS(1600), - [anon_sym_DOLLARif] = ACTIONS(1600), - [anon_sym_DOLLARswitch] = ACTIONS(1600), - [anon_sym_DOLLARfor] = ACTIONS(1600), - [anon_sym_DOLLARendfor] = ACTIONS(1600), - [anon_sym_DOLLARforeach] = ACTIONS(1600), - [anon_sym_DOLLARalignof] = ACTIONS(1600), - [anon_sym_DOLLARextnameof] = ACTIONS(1600), - [anon_sym_DOLLARnameof] = ACTIONS(1600), - [anon_sym_DOLLARoffsetof] = ACTIONS(1600), - [anon_sym_DOLLARqnameof] = ACTIONS(1600), - [anon_sym_DOLLARvaconst] = ACTIONS(1600), - [anon_sym_DOLLARvaarg] = ACTIONS(1600), - [anon_sym_DOLLARvaref] = ACTIONS(1600), - [anon_sym_DOLLARvaexpr] = ACTIONS(1600), - [anon_sym_true] = ACTIONS(1600), - [anon_sym_false] = ACTIONS(1600), - [anon_sym_null] = ACTIONS(1600), - [anon_sym_DOLLARvacount] = ACTIONS(1600), - [anon_sym_DOLLARappend] = ACTIONS(1600), - [anon_sym_DOLLARconcat] = ACTIONS(1600), - [anon_sym_DOLLAReval] = ACTIONS(1600), - [anon_sym_DOLLARis_const] = ACTIONS(1600), - [anon_sym_DOLLARsizeof] = ACTIONS(1600), - [anon_sym_DOLLARstringify] = ACTIONS(1600), - [anon_sym_DOLLARand] = ACTIONS(1600), - [anon_sym_DOLLARdefined] = ACTIONS(1600), - [anon_sym_DOLLARembed] = ACTIONS(1600), - [anon_sym_DOLLARor] = ACTIONS(1600), - [anon_sym_DOLLARfeature] = ACTIONS(1600), - [anon_sym_DOLLARassignable] = ACTIONS(1600), - [anon_sym_BANG] = ACTIONS(1602), - [anon_sym_TILDE] = ACTIONS(1602), - [anon_sym_PLUS_PLUS] = ACTIONS(1602), - [anon_sym_DASH_DASH] = ACTIONS(1602), - [anon_sym_typeid] = ACTIONS(1600), - [anon_sym_LBRACE_PIPE] = ACTIONS(1602), - [anon_sym_void] = ACTIONS(1600), - [anon_sym_bool] = ACTIONS(1600), - [anon_sym_char] = ACTIONS(1600), - [anon_sym_ichar] = ACTIONS(1600), - [anon_sym_short] = ACTIONS(1600), - [anon_sym_ushort] = ACTIONS(1600), - [anon_sym_uint] = ACTIONS(1600), - [anon_sym_long] = ACTIONS(1600), - [anon_sym_ulong] = ACTIONS(1600), - [anon_sym_int128] = ACTIONS(1600), - [anon_sym_uint128] = ACTIONS(1600), - [anon_sym_float] = ACTIONS(1600), - [anon_sym_double] = ACTIONS(1600), - [anon_sym_float16] = ACTIONS(1600), - [anon_sym_bfloat16] = ACTIONS(1600), - [anon_sym_float128] = ACTIONS(1600), - [anon_sym_iptr] = ACTIONS(1600), - [anon_sym_uptr] = ACTIONS(1600), - [anon_sym_isz] = ACTIONS(1600), - [anon_sym_usz] = ACTIONS(1600), - [anon_sym_anyfault] = ACTIONS(1600), - [anon_sym_any] = ACTIONS(1600), - [anon_sym_DOLLARtypeof] = ACTIONS(1600), - [anon_sym_DOLLARtypefrom] = ACTIONS(1600), - [anon_sym_DOLLARvatype] = ACTIONS(1600), - [anon_sym_DOLLARevaltype] = ACTIONS(1600), - [sym_real_literal] = ACTIONS(1602), + [sym_ident] = ACTIONS(1287), + [sym_integer_literal] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(1289), + [anon_sym_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1289), + [sym_bytes_literal] = ACTIONS(1289), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1287), + [sym_at_ident] = ACTIONS(1289), + [sym_hash_ident] = ACTIONS(1289), + [sym_type_ident] = ACTIONS(1289), + [sym_ct_type_ident] = ACTIONS(1289), + [sym_const_ident] = ACTIONS(1287), + [sym_builtin] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1289), + [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_fn] = ACTIONS(1287), + [anon_sym_LBRACE] = ACTIONS(1287), + [anon_sym_AMP_AMP] = ACTIONS(1289), + [anon_sym_int] = ACTIONS(1287), + [anon_sym_PLUS] = ACTIONS(1287), + [anon_sym_DASH] = ACTIONS(1287), + [anon_sym_STAR] = ACTIONS(1289), + [anon_sym_DOLLARalignof] = ACTIONS(1287), + [anon_sym_DOLLARextnameof] = ACTIONS(1287), + [anon_sym_DOLLARnameof] = ACTIONS(1287), + [anon_sym_DOLLARoffsetof] = ACTIONS(1287), + [anon_sym_DOLLARqnameof] = ACTIONS(1287), + [anon_sym_DOLLARvaconst] = ACTIONS(1287), + [anon_sym_DOLLARvaarg] = ACTIONS(1287), + [anon_sym_DOLLARvaref] = ACTIONS(1287), + [anon_sym_DOLLARvaexpr] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1287), + [anon_sym_false] = ACTIONS(1287), + [anon_sym_null] = ACTIONS(1287), + [anon_sym_DOLLARvacount] = ACTIONS(1287), + [anon_sym_DOLLARappend] = ACTIONS(1287), + [anon_sym_DOLLARconcat] = ACTIONS(1287), + [anon_sym_DOLLAReval] = ACTIONS(1287), + [anon_sym_DOLLARis_const] = ACTIONS(1287), + [anon_sym_DOLLARsizeof] = ACTIONS(1287), + [anon_sym_DOLLARstringify] = ACTIONS(1287), + [anon_sym_DOLLARand] = ACTIONS(1287), + [anon_sym_DOLLARdefined] = ACTIONS(1287), + [anon_sym_DOLLARembed] = ACTIONS(1287), + [anon_sym_DOLLARor] = ACTIONS(1287), + [anon_sym_DOLLARfeature] = ACTIONS(1287), + [anon_sym_DOLLARassignable] = ACTIONS(1287), + [anon_sym_BANG] = ACTIONS(1289), + [anon_sym_TILDE] = ACTIONS(1289), + [anon_sym_PLUS_PLUS] = ACTIONS(1289), + [anon_sym_DASH_DASH] = ACTIONS(1289), + [anon_sym_typeid] = ACTIONS(1287), + [anon_sym_LBRACE_PIPE] = ACTIONS(1289), + [anon_sym_void] = ACTIONS(1287), + [anon_sym_bool] = ACTIONS(1287), + [anon_sym_char] = ACTIONS(1287), + [anon_sym_ichar] = ACTIONS(1287), + [anon_sym_short] = ACTIONS(1287), + [anon_sym_ushort] = ACTIONS(1287), + [anon_sym_uint] = ACTIONS(1287), + [anon_sym_long] = ACTIONS(1287), + [anon_sym_ulong] = ACTIONS(1287), + [anon_sym_int128] = ACTIONS(1287), + [anon_sym_uint128] = ACTIONS(1287), + [anon_sym_float] = ACTIONS(1287), + [anon_sym_double] = ACTIONS(1287), + [anon_sym_float16] = ACTIONS(1287), + [anon_sym_bfloat16] = ACTIONS(1287), + [anon_sym_float128] = ACTIONS(1287), + [anon_sym_iptr] = ACTIONS(1287), + [anon_sym_uptr] = ACTIONS(1287), + [anon_sym_isz] = ACTIONS(1287), + [anon_sym_usz] = ACTIONS(1287), + [anon_sym_anyfault] = ACTIONS(1287), + [anon_sym_any] = ACTIONS(1287), + [anon_sym_DOLLARtypeof] = ACTIONS(1287), + [anon_sym_DOLLARtypefrom] = ACTIONS(1287), + [anon_sym_DOLLARvatype] = ACTIONS(1287), + [anon_sym_DOLLARevaltype] = ACTIONS(1287), + [sym_real_literal] = ACTIONS(1289), }, [823] = { [sym_line_comment] = STATE(823), [sym_doc_comment] = STATE(823), [sym_block_comment] = STATE(823), - [sym_ident] = ACTIONS(1596), - [sym_integer_literal] = ACTIONS(1598), - [anon_sym_SQUOTE] = ACTIONS(1598), - [anon_sym_DQUOTE] = ACTIONS(1598), - [anon_sym_BQUOTE] = ACTIONS(1598), - [sym_bytes_literal] = ACTIONS(1598), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1596), - [sym_at_ident] = ACTIONS(1598), - [sym_hash_ident] = ACTIONS(1598), - [sym_type_ident] = ACTIONS(1598), - [sym_ct_type_ident] = ACTIONS(1598), - [sym_const_ident] = ACTIONS(1596), - [sym_builtin] = ACTIONS(1598), - [anon_sym_LPAREN] = ACTIONS(1598), - [anon_sym_AMP] = ACTIONS(1596), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_tlocal] = ACTIONS(1596), - [anon_sym_SEMI] = ACTIONS(1598), - [anon_sym_fn] = ACTIONS(1596), - [anon_sym_LBRACE] = ACTIONS(1596), - [anon_sym_const] = ACTIONS(1596), - [anon_sym_var] = ACTIONS(1596), - [anon_sym_return] = ACTIONS(1596), - [anon_sym_continue] = ACTIONS(1596), - [anon_sym_break] = ACTIONS(1596), - [anon_sym_defer] = ACTIONS(1596), - [anon_sym_assert] = ACTIONS(1596), - [anon_sym_nextcase] = ACTIONS(1596), - [anon_sym_switch] = ACTIONS(1596), - [anon_sym_AMP_AMP] = ACTIONS(1598), - [anon_sym_if] = ACTIONS(1596), - [anon_sym_for] = ACTIONS(1596), - [anon_sym_foreach] = ACTIONS(1596), - [anon_sym_foreach_r] = ACTIONS(1596), - [anon_sym_while] = ACTIONS(1596), - [anon_sym_do] = ACTIONS(1596), - [anon_sym_int] = ACTIONS(1596), - [anon_sym_PLUS] = ACTIONS(1596), - [anon_sym_DASH] = ACTIONS(1596), - [anon_sym_STAR] = ACTIONS(1598), - [anon_sym_asm] = ACTIONS(1596), - [anon_sym_DOLLARassert] = ACTIONS(1596), - [anon_sym_DOLLARerror] = ACTIONS(1596), - [anon_sym_DOLLARecho] = ACTIONS(1596), - [anon_sym_DOLLARif] = ACTIONS(1596), - [anon_sym_DOLLARswitch] = ACTIONS(1596), - [anon_sym_DOLLARfor] = ACTIONS(1596), - [anon_sym_DOLLARendfor] = ACTIONS(1596), - [anon_sym_DOLLARforeach] = ACTIONS(1596), - [anon_sym_DOLLARalignof] = ACTIONS(1596), - [anon_sym_DOLLARextnameof] = ACTIONS(1596), - [anon_sym_DOLLARnameof] = ACTIONS(1596), - [anon_sym_DOLLARoffsetof] = ACTIONS(1596), - [anon_sym_DOLLARqnameof] = ACTIONS(1596), - [anon_sym_DOLLARvaconst] = ACTIONS(1596), - [anon_sym_DOLLARvaarg] = ACTIONS(1596), - [anon_sym_DOLLARvaref] = ACTIONS(1596), - [anon_sym_DOLLARvaexpr] = ACTIONS(1596), - [anon_sym_true] = ACTIONS(1596), - [anon_sym_false] = ACTIONS(1596), - [anon_sym_null] = ACTIONS(1596), - [anon_sym_DOLLARvacount] = ACTIONS(1596), - [anon_sym_DOLLARappend] = ACTIONS(1596), - [anon_sym_DOLLARconcat] = ACTIONS(1596), - [anon_sym_DOLLAReval] = ACTIONS(1596), - [anon_sym_DOLLARis_const] = ACTIONS(1596), - [anon_sym_DOLLARsizeof] = ACTIONS(1596), - [anon_sym_DOLLARstringify] = ACTIONS(1596), - [anon_sym_DOLLARand] = ACTIONS(1596), - [anon_sym_DOLLARdefined] = ACTIONS(1596), - [anon_sym_DOLLARembed] = ACTIONS(1596), - [anon_sym_DOLLARor] = ACTIONS(1596), - [anon_sym_DOLLARfeature] = ACTIONS(1596), - [anon_sym_DOLLARassignable] = ACTIONS(1596), - [anon_sym_BANG] = ACTIONS(1598), - [anon_sym_TILDE] = ACTIONS(1598), - [anon_sym_PLUS_PLUS] = ACTIONS(1598), - [anon_sym_DASH_DASH] = ACTIONS(1598), - [anon_sym_typeid] = ACTIONS(1596), - [anon_sym_LBRACE_PIPE] = ACTIONS(1598), - [anon_sym_void] = ACTIONS(1596), - [anon_sym_bool] = ACTIONS(1596), - [anon_sym_char] = ACTIONS(1596), - [anon_sym_ichar] = ACTIONS(1596), - [anon_sym_short] = ACTIONS(1596), - [anon_sym_ushort] = ACTIONS(1596), - [anon_sym_uint] = ACTIONS(1596), - [anon_sym_long] = ACTIONS(1596), - [anon_sym_ulong] = ACTIONS(1596), - [anon_sym_int128] = ACTIONS(1596), - [anon_sym_uint128] = ACTIONS(1596), - [anon_sym_float] = ACTIONS(1596), - [anon_sym_double] = ACTIONS(1596), - [anon_sym_float16] = ACTIONS(1596), - [anon_sym_bfloat16] = ACTIONS(1596), - [anon_sym_float128] = ACTIONS(1596), - [anon_sym_iptr] = ACTIONS(1596), - [anon_sym_uptr] = ACTIONS(1596), - [anon_sym_isz] = ACTIONS(1596), - [anon_sym_usz] = ACTIONS(1596), - [anon_sym_anyfault] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_DOLLARtypeof] = ACTIONS(1596), - [anon_sym_DOLLARtypefrom] = ACTIONS(1596), - [anon_sym_DOLLARvatype] = ACTIONS(1596), - [anon_sym_DOLLARevaltype] = ACTIONS(1596), - [sym_real_literal] = ACTIONS(1598), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1532), + [sym_global_storage] = STATE(1171), + [sym_module] = STATE(909), + [sym_import_declaration] = STATE(909), + [sym_define_declaration] = STATE(909), + [sym_distinct_declaration] = STATE(909), + [sym_const_declaration] = STATE(909), + [sym_global_declaration] = STATE(909), + [sym__struct_or_union] = STATE(2123), + [sym_struct_declaration] = STATE(909), + [sym_bitstruct_declaration] = STATE(909), + [sym_fault_declaration] = STATE(909), + [sym_enum_declaration] = STATE(909), + [sym_interface_declaration] = STATE(909), + [sym_func_declaration] = STATE(909), + [sym_func_definition] = STATE(909), + [sym_macro_declaration] = STATE(909), + [sym_ct_assert_stmt] = STATE(909), + [sym_ct_include_stmt] = STATE(909), + [sym_ct_exec_stmt] = STATE(909), + [sym_ct_echo_stmt] = STATE(909), + [sym_module_type_ident] = STATE(989), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(2110), + [aux_sym_source_file_repeat1] = STATE(823), + [ts_builtin_sym_end] = ACTIONS(1723), + [sym_ident] = ACTIONS(1725), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_type_ident] = ACTIONS(1728), + [sym_ct_type_ident] = ACTIONS(1731), + [anon_sym_tlocal] = ACTIONS(1734), + [anon_sym_extern] = ACTIONS(1737), + [anon_sym_module] = ACTIONS(1740), + [anon_sym_import] = ACTIONS(1743), + [anon_sym_fn] = ACTIONS(1746), + [anon_sym_def] = ACTIONS(1749), + [anon_sym_distinct] = ACTIONS(1752), + [anon_sym_const] = ACTIONS(1755), + [anon_sym_struct] = ACTIONS(1758), + [anon_sym_union] = ACTIONS(1758), + [anon_sym_bitstruct] = ACTIONS(1761), + [anon_sym_fault] = ACTIONS(1764), + [anon_sym_enum] = ACTIONS(1767), + [anon_sym_interface] = ACTIONS(1770), + [anon_sym_macro] = ACTIONS(1773), + [anon_sym_int] = ACTIONS(1776), + [anon_sym_DOLLARassert] = ACTIONS(1779), + [anon_sym_DOLLARerror] = ACTIONS(1782), + [anon_sym_DOLLARinclude] = ACTIONS(1785), + [anon_sym_DOLLARexec] = ACTIONS(1788), + [anon_sym_DOLLARecho] = ACTIONS(1791), + [anon_sym_typeid] = ACTIONS(1776), + [anon_sym_void] = ACTIONS(1776), + [anon_sym_bool] = ACTIONS(1776), + [anon_sym_char] = ACTIONS(1776), + [anon_sym_ichar] = ACTIONS(1776), + [anon_sym_short] = ACTIONS(1776), + [anon_sym_ushort] = ACTIONS(1776), + [anon_sym_uint] = ACTIONS(1776), + [anon_sym_long] = ACTIONS(1776), + [anon_sym_ulong] = ACTIONS(1776), + [anon_sym_int128] = ACTIONS(1776), + [anon_sym_uint128] = ACTIONS(1776), + [anon_sym_float] = ACTIONS(1776), + [anon_sym_double] = ACTIONS(1776), + [anon_sym_float16] = ACTIONS(1776), + [anon_sym_bfloat16] = ACTIONS(1776), + [anon_sym_float128] = ACTIONS(1776), + [anon_sym_iptr] = ACTIONS(1776), + [anon_sym_uptr] = ACTIONS(1776), + [anon_sym_isz] = ACTIONS(1776), + [anon_sym_usz] = ACTIONS(1776), + [anon_sym_anyfault] = ACTIONS(1776), + [anon_sym_any] = ACTIONS(1776), + [anon_sym_DOLLARtypeof] = ACTIONS(1794), + [anon_sym_DOLLARtypefrom] = ACTIONS(1794), + [anon_sym_DOLLARvatype] = ACTIONS(1794), + [anon_sym_DOLLARevaltype] = ACTIONS(1794), }, [824] = { [sym_line_comment] = STATE(824), [sym_doc_comment] = STATE(824), [sym_block_comment] = STATE(824), - [sym_ident] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(1594), - [anon_sym_SQUOTE] = ACTIONS(1594), - [anon_sym_DQUOTE] = ACTIONS(1594), - [anon_sym_BQUOTE] = ACTIONS(1594), - [sym_bytes_literal] = ACTIONS(1594), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1592), - [sym_at_ident] = ACTIONS(1594), - [sym_hash_ident] = ACTIONS(1594), - [sym_type_ident] = ACTIONS(1594), - [sym_ct_type_ident] = ACTIONS(1594), - [sym_const_ident] = ACTIONS(1592), - [sym_builtin] = ACTIONS(1594), - [anon_sym_LPAREN] = ACTIONS(1594), - [anon_sym_AMP] = ACTIONS(1592), - [anon_sym_static] = ACTIONS(1592), - [anon_sym_tlocal] = ACTIONS(1592), - [anon_sym_SEMI] = ACTIONS(1594), - [anon_sym_fn] = ACTIONS(1592), - [anon_sym_LBRACE] = ACTIONS(1592), - [anon_sym_const] = ACTIONS(1592), - [anon_sym_var] = ACTIONS(1592), - [anon_sym_return] = ACTIONS(1592), - [anon_sym_continue] = ACTIONS(1592), - [anon_sym_break] = ACTIONS(1592), - [anon_sym_defer] = ACTIONS(1592), - [anon_sym_assert] = ACTIONS(1592), - [anon_sym_nextcase] = ACTIONS(1592), - [anon_sym_switch] = ACTIONS(1592), - [anon_sym_AMP_AMP] = ACTIONS(1594), - [anon_sym_if] = ACTIONS(1592), - [anon_sym_for] = ACTIONS(1592), - [anon_sym_foreach] = ACTIONS(1592), - [anon_sym_foreach_r] = ACTIONS(1592), - [anon_sym_while] = ACTIONS(1592), - [anon_sym_do] = ACTIONS(1592), - [anon_sym_int] = ACTIONS(1592), - [anon_sym_PLUS] = ACTIONS(1592), - [anon_sym_DASH] = ACTIONS(1592), - [anon_sym_STAR] = ACTIONS(1594), - [anon_sym_asm] = ACTIONS(1592), - [anon_sym_DOLLARassert] = ACTIONS(1592), - [anon_sym_DOLLARerror] = ACTIONS(1592), - [anon_sym_DOLLARecho] = ACTIONS(1592), - [anon_sym_DOLLARif] = ACTIONS(1592), - [anon_sym_DOLLARswitch] = ACTIONS(1592), - [anon_sym_DOLLARfor] = ACTIONS(1592), - [anon_sym_DOLLARendfor] = ACTIONS(1592), - [anon_sym_DOLLARforeach] = ACTIONS(1592), - [anon_sym_DOLLARalignof] = ACTIONS(1592), - [anon_sym_DOLLARextnameof] = ACTIONS(1592), - [anon_sym_DOLLARnameof] = ACTIONS(1592), - [anon_sym_DOLLARoffsetof] = ACTIONS(1592), - [anon_sym_DOLLARqnameof] = ACTIONS(1592), - [anon_sym_DOLLARvaconst] = ACTIONS(1592), - [anon_sym_DOLLARvaarg] = ACTIONS(1592), - [anon_sym_DOLLARvaref] = ACTIONS(1592), - [anon_sym_DOLLARvaexpr] = ACTIONS(1592), - [anon_sym_true] = ACTIONS(1592), - [anon_sym_false] = ACTIONS(1592), - [anon_sym_null] = ACTIONS(1592), - [anon_sym_DOLLARvacount] = ACTIONS(1592), - [anon_sym_DOLLARappend] = ACTIONS(1592), - [anon_sym_DOLLARconcat] = ACTIONS(1592), - [anon_sym_DOLLAReval] = ACTIONS(1592), - [anon_sym_DOLLARis_const] = ACTIONS(1592), - [anon_sym_DOLLARsizeof] = ACTIONS(1592), - [anon_sym_DOLLARstringify] = ACTIONS(1592), - [anon_sym_DOLLARand] = ACTIONS(1592), - [anon_sym_DOLLARdefined] = ACTIONS(1592), - [anon_sym_DOLLARembed] = ACTIONS(1592), - [anon_sym_DOLLARor] = ACTIONS(1592), - [anon_sym_DOLLARfeature] = ACTIONS(1592), - [anon_sym_DOLLARassignable] = ACTIONS(1592), - [anon_sym_BANG] = ACTIONS(1594), - [anon_sym_TILDE] = ACTIONS(1594), - [anon_sym_PLUS_PLUS] = ACTIONS(1594), - [anon_sym_DASH_DASH] = ACTIONS(1594), - [anon_sym_typeid] = ACTIONS(1592), - [anon_sym_LBRACE_PIPE] = ACTIONS(1594), - [anon_sym_void] = ACTIONS(1592), - [anon_sym_bool] = ACTIONS(1592), - [anon_sym_char] = ACTIONS(1592), - [anon_sym_ichar] = ACTIONS(1592), - [anon_sym_short] = ACTIONS(1592), - [anon_sym_ushort] = ACTIONS(1592), - [anon_sym_uint] = ACTIONS(1592), - [anon_sym_long] = ACTIONS(1592), - [anon_sym_ulong] = ACTIONS(1592), - [anon_sym_int128] = ACTIONS(1592), - [anon_sym_uint128] = ACTIONS(1592), - [anon_sym_float] = ACTIONS(1592), - [anon_sym_double] = ACTIONS(1592), - [anon_sym_float16] = ACTIONS(1592), - [anon_sym_bfloat16] = ACTIONS(1592), - [anon_sym_float128] = ACTIONS(1592), - [anon_sym_iptr] = ACTIONS(1592), - [anon_sym_uptr] = ACTIONS(1592), - [anon_sym_isz] = ACTIONS(1592), - [anon_sym_usz] = ACTIONS(1592), - [anon_sym_anyfault] = ACTIONS(1592), - [anon_sym_any] = ACTIONS(1592), - [anon_sym_DOLLARtypeof] = ACTIONS(1592), - [anon_sym_DOLLARtypefrom] = ACTIONS(1592), - [anon_sym_DOLLARvatype] = ACTIONS(1592), - [anon_sym_DOLLARevaltype] = ACTIONS(1592), - [sym_real_literal] = ACTIONS(1594), - }, - [825] = { - [sym_line_comment] = STATE(825), - [sym_doc_comment] = STATE(825), - [sym_block_comment] = STATE(825), - [sym_ident] = ACTIONS(1588), - [sym_integer_literal] = ACTIONS(1590), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_DQUOTE] = ACTIONS(1590), - [anon_sym_BQUOTE] = ACTIONS(1590), - [sym_bytes_literal] = ACTIONS(1590), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1588), - [sym_at_ident] = ACTIONS(1590), - [sym_hash_ident] = ACTIONS(1590), - [sym_type_ident] = ACTIONS(1590), - [sym_ct_type_ident] = ACTIONS(1590), - [sym_const_ident] = ACTIONS(1588), - [sym_builtin] = ACTIONS(1590), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_AMP] = ACTIONS(1588), - [anon_sym_static] = ACTIONS(1588), - [anon_sym_tlocal] = ACTIONS(1588), - [anon_sym_SEMI] = ACTIONS(1590), - [anon_sym_fn] = ACTIONS(1588), - [anon_sym_LBRACE] = ACTIONS(1588), - [anon_sym_const] = ACTIONS(1588), - [anon_sym_var] = ACTIONS(1588), - [anon_sym_return] = ACTIONS(1588), - [anon_sym_continue] = ACTIONS(1588), - [anon_sym_break] = ACTIONS(1588), - [anon_sym_defer] = ACTIONS(1588), - [anon_sym_assert] = ACTIONS(1588), - [anon_sym_nextcase] = ACTIONS(1588), - [anon_sym_switch] = ACTIONS(1588), - [anon_sym_AMP_AMP] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1588), - [anon_sym_for] = ACTIONS(1588), - [anon_sym_foreach] = ACTIONS(1588), - [anon_sym_foreach_r] = ACTIONS(1588), - [anon_sym_while] = ACTIONS(1588), - [anon_sym_do] = ACTIONS(1588), - [anon_sym_int] = ACTIONS(1588), - [anon_sym_PLUS] = ACTIONS(1588), - [anon_sym_DASH] = ACTIONS(1588), - [anon_sym_STAR] = ACTIONS(1590), - [anon_sym_asm] = ACTIONS(1588), - [anon_sym_DOLLARassert] = ACTIONS(1588), - [anon_sym_DOLLARerror] = ACTIONS(1588), - [anon_sym_DOLLARecho] = ACTIONS(1588), - [anon_sym_DOLLARif] = ACTIONS(1588), - [anon_sym_DOLLARswitch] = ACTIONS(1588), - [anon_sym_DOLLARfor] = ACTIONS(1588), - [anon_sym_DOLLARendfor] = ACTIONS(1588), - [anon_sym_DOLLARforeach] = ACTIONS(1588), - [anon_sym_DOLLARalignof] = ACTIONS(1588), - [anon_sym_DOLLARextnameof] = ACTIONS(1588), - [anon_sym_DOLLARnameof] = ACTIONS(1588), - [anon_sym_DOLLARoffsetof] = ACTIONS(1588), - [anon_sym_DOLLARqnameof] = ACTIONS(1588), - [anon_sym_DOLLARvaconst] = ACTIONS(1588), - [anon_sym_DOLLARvaarg] = ACTIONS(1588), - [anon_sym_DOLLARvaref] = ACTIONS(1588), - [anon_sym_DOLLARvaexpr] = ACTIONS(1588), - [anon_sym_true] = ACTIONS(1588), - [anon_sym_false] = ACTIONS(1588), - [anon_sym_null] = ACTIONS(1588), - [anon_sym_DOLLARvacount] = ACTIONS(1588), - [anon_sym_DOLLARappend] = ACTIONS(1588), - [anon_sym_DOLLARconcat] = ACTIONS(1588), - [anon_sym_DOLLAReval] = ACTIONS(1588), - [anon_sym_DOLLARis_const] = ACTIONS(1588), - [anon_sym_DOLLARsizeof] = ACTIONS(1588), - [anon_sym_DOLLARstringify] = ACTIONS(1588), - [anon_sym_DOLLARand] = ACTIONS(1588), - [anon_sym_DOLLARdefined] = ACTIONS(1588), - [anon_sym_DOLLARembed] = ACTIONS(1588), - [anon_sym_DOLLARor] = ACTIONS(1588), - [anon_sym_DOLLARfeature] = ACTIONS(1588), - [anon_sym_DOLLARassignable] = ACTIONS(1588), - [anon_sym_BANG] = ACTIONS(1590), - [anon_sym_TILDE] = ACTIONS(1590), - [anon_sym_PLUS_PLUS] = ACTIONS(1590), - [anon_sym_DASH_DASH] = ACTIONS(1590), - [anon_sym_typeid] = ACTIONS(1588), - [anon_sym_LBRACE_PIPE] = ACTIONS(1590), - [anon_sym_void] = ACTIONS(1588), - [anon_sym_bool] = ACTIONS(1588), - [anon_sym_char] = ACTIONS(1588), - [anon_sym_ichar] = ACTIONS(1588), - [anon_sym_short] = ACTIONS(1588), - [anon_sym_ushort] = ACTIONS(1588), - [anon_sym_uint] = ACTIONS(1588), - [anon_sym_long] = ACTIONS(1588), - [anon_sym_ulong] = ACTIONS(1588), - [anon_sym_int128] = ACTIONS(1588), - [anon_sym_uint128] = ACTIONS(1588), - [anon_sym_float] = ACTIONS(1588), - [anon_sym_double] = ACTIONS(1588), - [anon_sym_float16] = ACTIONS(1588), - [anon_sym_bfloat16] = ACTIONS(1588), - [anon_sym_float128] = ACTIONS(1588), - [anon_sym_iptr] = ACTIONS(1588), - [anon_sym_uptr] = ACTIONS(1588), - [anon_sym_isz] = ACTIONS(1588), - [anon_sym_usz] = ACTIONS(1588), - [anon_sym_anyfault] = ACTIONS(1588), - [anon_sym_any] = ACTIONS(1588), - [anon_sym_DOLLARtypeof] = ACTIONS(1588), - [anon_sym_DOLLARtypefrom] = ACTIONS(1588), - [anon_sym_DOLLARvatype] = ACTIONS(1588), - [anon_sym_DOLLARevaltype] = ACTIONS(1588), - [sym_real_literal] = ACTIONS(1590), - }, - [826] = { - [sym_line_comment] = STATE(826), - [sym_doc_comment] = STATE(826), - [sym_block_comment] = STATE(826), - [sym_ident] = ACTIONS(1584), - [sym_integer_literal] = ACTIONS(1586), - [anon_sym_SQUOTE] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1586), - [anon_sym_BQUOTE] = ACTIONS(1586), - [sym_bytes_literal] = ACTIONS(1586), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1584), - [sym_at_ident] = ACTIONS(1586), - [sym_hash_ident] = ACTIONS(1586), - [sym_type_ident] = ACTIONS(1586), - [sym_ct_type_ident] = ACTIONS(1586), - [sym_const_ident] = ACTIONS(1584), - [sym_builtin] = ACTIONS(1586), - [anon_sym_LPAREN] = ACTIONS(1586), - [anon_sym_AMP] = ACTIONS(1584), - [anon_sym_static] = ACTIONS(1584), - [anon_sym_tlocal] = ACTIONS(1584), - [anon_sym_SEMI] = ACTIONS(1586), - [anon_sym_fn] = ACTIONS(1584), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_const] = ACTIONS(1584), - [anon_sym_var] = ACTIONS(1584), - [anon_sym_return] = ACTIONS(1584), - [anon_sym_continue] = ACTIONS(1584), - [anon_sym_break] = ACTIONS(1584), - [anon_sym_defer] = ACTIONS(1584), - [anon_sym_assert] = ACTIONS(1584), - [anon_sym_nextcase] = ACTIONS(1584), - [anon_sym_switch] = ACTIONS(1584), - [anon_sym_AMP_AMP] = ACTIONS(1586), - [anon_sym_if] = ACTIONS(1584), - [anon_sym_for] = ACTIONS(1584), - [anon_sym_foreach] = ACTIONS(1584), - [anon_sym_foreach_r] = ACTIONS(1584), - [anon_sym_while] = ACTIONS(1584), - [anon_sym_do] = ACTIONS(1584), - [anon_sym_int] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1584), - [anon_sym_DASH] = ACTIONS(1584), - [anon_sym_STAR] = ACTIONS(1586), - [anon_sym_asm] = ACTIONS(1584), - [anon_sym_DOLLARassert] = ACTIONS(1584), - [anon_sym_DOLLARerror] = ACTIONS(1584), - [anon_sym_DOLLARecho] = ACTIONS(1584), - [anon_sym_DOLLARif] = ACTIONS(1584), - [anon_sym_DOLLARswitch] = ACTIONS(1584), - [anon_sym_DOLLARfor] = ACTIONS(1584), - [anon_sym_DOLLARendfor] = ACTIONS(1584), - [anon_sym_DOLLARforeach] = ACTIONS(1584), - [anon_sym_DOLLARalignof] = ACTIONS(1584), - [anon_sym_DOLLARextnameof] = ACTIONS(1584), - [anon_sym_DOLLARnameof] = ACTIONS(1584), - [anon_sym_DOLLARoffsetof] = ACTIONS(1584), - [anon_sym_DOLLARqnameof] = ACTIONS(1584), - [anon_sym_DOLLARvaconst] = ACTIONS(1584), - [anon_sym_DOLLARvaarg] = ACTIONS(1584), - [anon_sym_DOLLARvaref] = ACTIONS(1584), - [anon_sym_DOLLARvaexpr] = ACTIONS(1584), - [anon_sym_true] = ACTIONS(1584), - [anon_sym_false] = ACTIONS(1584), - [anon_sym_null] = ACTIONS(1584), - [anon_sym_DOLLARvacount] = ACTIONS(1584), - [anon_sym_DOLLARappend] = ACTIONS(1584), - [anon_sym_DOLLARconcat] = ACTIONS(1584), - [anon_sym_DOLLAReval] = ACTIONS(1584), - [anon_sym_DOLLARis_const] = ACTIONS(1584), - [anon_sym_DOLLARsizeof] = ACTIONS(1584), - [anon_sym_DOLLARstringify] = ACTIONS(1584), - [anon_sym_DOLLARand] = ACTIONS(1584), - [anon_sym_DOLLARdefined] = ACTIONS(1584), - [anon_sym_DOLLARembed] = ACTIONS(1584), - [anon_sym_DOLLARor] = ACTIONS(1584), - [anon_sym_DOLLARfeature] = ACTIONS(1584), - [anon_sym_DOLLARassignable] = ACTIONS(1584), - [anon_sym_BANG] = ACTIONS(1586), - [anon_sym_TILDE] = ACTIONS(1586), - [anon_sym_PLUS_PLUS] = ACTIONS(1586), - [anon_sym_DASH_DASH] = ACTIONS(1586), - [anon_sym_typeid] = ACTIONS(1584), - [anon_sym_LBRACE_PIPE] = ACTIONS(1586), - [anon_sym_void] = ACTIONS(1584), - [anon_sym_bool] = ACTIONS(1584), - [anon_sym_char] = ACTIONS(1584), - [anon_sym_ichar] = ACTIONS(1584), - [anon_sym_short] = ACTIONS(1584), - [anon_sym_ushort] = ACTIONS(1584), - [anon_sym_uint] = ACTIONS(1584), - [anon_sym_long] = ACTIONS(1584), - [anon_sym_ulong] = ACTIONS(1584), - [anon_sym_int128] = ACTIONS(1584), - [anon_sym_uint128] = ACTIONS(1584), - [anon_sym_float] = ACTIONS(1584), - [anon_sym_double] = ACTIONS(1584), - [anon_sym_float16] = ACTIONS(1584), - [anon_sym_bfloat16] = ACTIONS(1584), - [anon_sym_float128] = ACTIONS(1584), - [anon_sym_iptr] = ACTIONS(1584), - [anon_sym_uptr] = ACTIONS(1584), - [anon_sym_isz] = ACTIONS(1584), - [anon_sym_usz] = ACTIONS(1584), - [anon_sym_anyfault] = ACTIONS(1584), - [anon_sym_any] = ACTIONS(1584), - [anon_sym_DOLLARtypeof] = ACTIONS(1584), - [anon_sym_DOLLARtypefrom] = ACTIONS(1584), - [anon_sym_DOLLARvatype] = ACTIONS(1584), - [anon_sym_DOLLARevaltype] = ACTIONS(1584), - [sym_real_literal] = ACTIONS(1586), - }, - [827] = { - [sym_line_comment] = STATE(827), - [sym_doc_comment] = STATE(827), - [sym_block_comment] = STATE(827), - [sym_ident] = ACTIONS(1528), - [sym_integer_literal] = ACTIONS(1530), - [anon_sym_SQUOTE] = ACTIONS(1530), - [anon_sym_DQUOTE] = ACTIONS(1530), - [anon_sym_BQUOTE] = ACTIONS(1530), - [sym_bytes_literal] = ACTIONS(1530), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1528), - [sym_at_ident] = ACTIONS(1530), - [sym_hash_ident] = ACTIONS(1530), - [sym_type_ident] = ACTIONS(1530), - [sym_ct_type_ident] = ACTIONS(1530), - [sym_const_ident] = ACTIONS(1528), - [sym_builtin] = ACTIONS(1530), - [anon_sym_LPAREN] = ACTIONS(1530), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_static] = ACTIONS(1528), - [anon_sym_tlocal] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(1530), - [anon_sym_fn] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_var] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(1528), - [anon_sym_continue] = ACTIONS(1528), - [anon_sym_break] = ACTIONS(1528), - [anon_sym_defer] = ACTIONS(1528), - [anon_sym_assert] = ACTIONS(1528), - [anon_sym_nextcase] = ACTIONS(1528), - [anon_sym_switch] = ACTIONS(1528), - [anon_sym_AMP_AMP] = ACTIONS(1530), - [anon_sym_if] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1528), - [anon_sym_foreach] = ACTIONS(1528), - [anon_sym_foreach_r] = ACTIONS(1528), - [anon_sym_while] = ACTIONS(1528), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_int] = ACTIONS(1528), - [anon_sym_PLUS] = ACTIONS(1528), - [anon_sym_DASH] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1530), - [anon_sym_asm] = ACTIONS(1528), - [anon_sym_DOLLARassert] = ACTIONS(1528), - [anon_sym_DOLLARerror] = ACTIONS(1528), - [anon_sym_DOLLARecho] = ACTIONS(1528), - [anon_sym_DOLLARif] = ACTIONS(1528), - [anon_sym_DOLLARendif] = ACTIONS(1528), - [anon_sym_DOLLARswitch] = ACTIONS(1528), - [anon_sym_DOLLARfor] = ACTIONS(1528), - [anon_sym_DOLLARforeach] = ACTIONS(1528), - [anon_sym_DOLLARalignof] = ACTIONS(1528), - [anon_sym_DOLLARextnameof] = ACTIONS(1528), - [anon_sym_DOLLARnameof] = ACTIONS(1528), - [anon_sym_DOLLARoffsetof] = ACTIONS(1528), - [anon_sym_DOLLARqnameof] = ACTIONS(1528), - [anon_sym_DOLLARvaconst] = ACTIONS(1528), - [anon_sym_DOLLARvaarg] = ACTIONS(1528), - [anon_sym_DOLLARvaref] = ACTIONS(1528), - [anon_sym_DOLLARvaexpr] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [anon_sym_null] = ACTIONS(1528), - [anon_sym_DOLLARvacount] = ACTIONS(1528), - [anon_sym_DOLLARappend] = ACTIONS(1528), - [anon_sym_DOLLARconcat] = ACTIONS(1528), - [anon_sym_DOLLAReval] = ACTIONS(1528), - [anon_sym_DOLLARis_const] = ACTIONS(1528), - [anon_sym_DOLLARsizeof] = ACTIONS(1528), - [anon_sym_DOLLARstringify] = ACTIONS(1528), - [anon_sym_DOLLARand] = ACTIONS(1528), - [anon_sym_DOLLARdefined] = ACTIONS(1528), - [anon_sym_DOLLARembed] = ACTIONS(1528), - [anon_sym_DOLLARor] = ACTIONS(1528), - [anon_sym_DOLLARfeature] = ACTIONS(1528), - [anon_sym_DOLLARassignable] = ACTIONS(1528), - [anon_sym_BANG] = ACTIONS(1530), - [anon_sym_TILDE] = ACTIONS(1530), - [anon_sym_PLUS_PLUS] = ACTIONS(1530), - [anon_sym_DASH_DASH] = ACTIONS(1530), - [anon_sym_typeid] = ACTIONS(1528), - [anon_sym_LBRACE_PIPE] = ACTIONS(1530), - [anon_sym_void] = ACTIONS(1528), - [anon_sym_bool] = ACTIONS(1528), - [anon_sym_char] = ACTIONS(1528), - [anon_sym_ichar] = ACTIONS(1528), - [anon_sym_short] = ACTIONS(1528), - [anon_sym_ushort] = ACTIONS(1528), - [anon_sym_uint] = ACTIONS(1528), - [anon_sym_long] = ACTIONS(1528), - [anon_sym_ulong] = ACTIONS(1528), - [anon_sym_int128] = ACTIONS(1528), - [anon_sym_uint128] = ACTIONS(1528), - [anon_sym_float] = ACTIONS(1528), - [anon_sym_double] = ACTIONS(1528), - [anon_sym_float16] = ACTIONS(1528), - [anon_sym_bfloat16] = ACTIONS(1528), - [anon_sym_float128] = ACTIONS(1528), - [anon_sym_iptr] = ACTIONS(1528), - [anon_sym_uptr] = ACTIONS(1528), - [anon_sym_isz] = ACTIONS(1528), - [anon_sym_usz] = ACTIONS(1528), - [anon_sym_anyfault] = ACTIONS(1528), - [anon_sym_any] = ACTIONS(1528), - [anon_sym_DOLLARtypeof] = ACTIONS(1528), - [anon_sym_DOLLARtypefrom] = ACTIONS(1528), - [anon_sym_DOLLARvatype] = ACTIONS(1528), - [anon_sym_DOLLARevaltype] = ACTIONS(1528), - [sym_real_literal] = ACTIONS(1530), - }, - [828] = { - [sym_line_comment] = STATE(828), - [sym_doc_comment] = STATE(828), - [sym_block_comment] = STATE(828), - [sym_ident] = ACTIONS(1448), - [sym_integer_literal] = ACTIONS(1450), - [anon_sym_SQUOTE] = ACTIONS(1450), - [anon_sym_DQUOTE] = ACTIONS(1450), - [anon_sym_BQUOTE] = ACTIONS(1450), - [sym_bytes_literal] = ACTIONS(1450), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1448), - [sym_at_ident] = ACTIONS(1450), - [sym_hash_ident] = ACTIONS(1450), - [sym_type_ident] = ACTIONS(1450), - [sym_ct_type_ident] = ACTIONS(1450), - [sym_const_ident] = ACTIONS(1448), - [sym_builtin] = ACTIONS(1450), - [anon_sym_LPAREN] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1448), - [anon_sym_static] = ACTIONS(1448), - [anon_sym_tlocal] = ACTIONS(1448), - [anon_sym_SEMI] = ACTIONS(1450), - [anon_sym_fn] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(1448), - [anon_sym_const] = ACTIONS(1448), - [anon_sym_var] = ACTIONS(1448), - [anon_sym_return] = ACTIONS(1448), - [anon_sym_continue] = ACTIONS(1448), - [anon_sym_break] = ACTIONS(1448), - [anon_sym_defer] = ACTIONS(1448), - [anon_sym_assert] = ACTIONS(1448), - [anon_sym_nextcase] = ACTIONS(1448), - [anon_sym_switch] = ACTIONS(1448), - [anon_sym_AMP_AMP] = ACTIONS(1450), - [anon_sym_if] = ACTIONS(1448), - [anon_sym_for] = ACTIONS(1448), - [anon_sym_foreach] = ACTIONS(1448), - [anon_sym_foreach_r] = ACTIONS(1448), - [anon_sym_while] = ACTIONS(1448), - [anon_sym_do] = ACTIONS(1448), - [anon_sym_int] = ACTIONS(1448), - [anon_sym_PLUS] = ACTIONS(1448), - [anon_sym_DASH] = ACTIONS(1448), - [anon_sym_STAR] = ACTIONS(1450), - [anon_sym_asm] = ACTIONS(1448), - [anon_sym_DOLLARassert] = ACTIONS(1448), - [anon_sym_DOLLARerror] = ACTIONS(1448), - [anon_sym_DOLLARecho] = ACTIONS(1448), - [anon_sym_DOLLARif] = ACTIONS(1448), - [anon_sym_DOLLARendif] = ACTIONS(1448), - [anon_sym_DOLLARswitch] = ACTIONS(1448), - [anon_sym_DOLLARfor] = ACTIONS(1448), - [anon_sym_DOLLARforeach] = ACTIONS(1448), - [anon_sym_DOLLARalignof] = ACTIONS(1448), - [anon_sym_DOLLARextnameof] = ACTIONS(1448), - [anon_sym_DOLLARnameof] = ACTIONS(1448), - [anon_sym_DOLLARoffsetof] = ACTIONS(1448), - [anon_sym_DOLLARqnameof] = ACTIONS(1448), - [anon_sym_DOLLARvaconst] = ACTIONS(1448), - [anon_sym_DOLLARvaarg] = ACTIONS(1448), - [anon_sym_DOLLARvaref] = ACTIONS(1448), - [anon_sym_DOLLARvaexpr] = ACTIONS(1448), - [anon_sym_true] = ACTIONS(1448), - [anon_sym_false] = ACTIONS(1448), - [anon_sym_null] = ACTIONS(1448), - [anon_sym_DOLLARvacount] = ACTIONS(1448), - [anon_sym_DOLLARappend] = ACTIONS(1448), - [anon_sym_DOLLARconcat] = ACTIONS(1448), - [anon_sym_DOLLAReval] = ACTIONS(1448), - [anon_sym_DOLLARis_const] = ACTIONS(1448), - [anon_sym_DOLLARsizeof] = ACTIONS(1448), - [anon_sym_DOLLARstringify] = ACTIONS(1448), - [anon_sym_DOLLARand] = ACTIONS(1448), - [anon_sym_DOLLARdefined] = ACTIONS(1448), - [anon_sym_DOLLARembed] = ACTIONS(1448), - [anon_sym_DOLLARor] = ACTIONS(1448), - [anon_sym_DOLLARfeature] = ACTIONS(1448), - [anon_sym_DOLLARassignable] = ACTIONS(1448), - [anon_sym_BANG] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1450), - [anon_sym_PLUS_PLUS] = ACTIONS(1450), - [anon_sym_DASH_DASH] = ACTIONS(1450), - [anon_sym_typeid] = ACTIONS(1448), - [anon_sym_LBRACE_PIPE] = ACTIONS(1450), - [anon_sym_void] = ACTIONS(1448), - [anon_sym_bool] = ACTIONS(1448), - [anon_sym_char] = ACTIONS(1448), - [anon_sym_ichar] = ACTIONS(1448), - [anon_sym_short] = ACTIONS(1448), - [anon_sym_ushort] = ACTIONS(1448), - [anon_sym_uint] = ACTIONS(1448), - [anon_sym_long] = ACTIONS(1448), - [anon_sym_ulong] = ACTIONS(1448), - [anon_sym_int128] = ACTIONS(1448), - [anon_sym_uint128] = ACTIONS(1448), - [anon_sym_float] = ACTIONS(1448), - [anon_sym_double] = ACTIONS(1448), - [anon_sym_float16] = ACTIONS(1448), - [anon_sym_bfloat16] = ACTIONS(1448), - [anon_sym_float128] = ACTIONS(1448), - [anon_sym_iptr] = ACTIONS(1448), - [anon_sym_uptr] = ACTIONS(1448), - [anon_sym_isz] = ACTIONS(1448), - [anon_sym_usz] = ACTIONS(1448), - [anon_sym_anyfault] = ACTIONS(1448), - [anon_sym_any] = ACTIONS(1448), - [anon_sym_DOLLARtypeof] = ACTIONS(1448), - [anon_sym_DOLLARtypefrom] = ACTIONS(1448), - [anon_sym_DOLLARvatype] = ACTIONS(1448), - [anon_sym_DOLLARevaltype] = ACTIONS(1448), - [sym_real_literal] = ACTIONS(1450), - }, - [829] = { - [sym_line_comment] = STATE(829), - [sym_doc_comment] = STATE(829), - [sym_block_comment] = STATE(829), - [sym_ident] = ACTIONS(1500), - [sym_integer_literal] = ACTIONS(1502), - [anon_sym_SQUOTE] = ACTIONS(1502), - [anon_sym_DQUOTE] = ACTIONS(1502), - [anon_sym_BQUOTE] = ACTIONS(1502), - [sym_bytes_literal] = ACTIONS(1502), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1500), - [sym_at_ident] = ACTIONS(1502), - [sym_hash_ident] = ACTIONS(1502), - [sym_type_ident] = ACTIONS(1502), - [sym_ct_type_ident] = ACTIONS(1502), - [sym_const_ident] = ACTIONS(1500), - [sym_builtin] = ACTIONS(1502), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_AMP] = ACTIONS(1500), - [anon_sym_static] = ACTIONS(1500), - [anon_sym_tlocal] = ACTIONS(1500), - [anon_sym_SEMI] = ACTIONS(1502), - [anon_sym_fn] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_const] = ACTIONS(1500), - [anon_sym_var] = ACTIONS(1500), - [anon_sym_return] = ACTIONS(1500), - [anon_sym_continue] = ACTIONS(1500), - [anon_sym_break] = ACTIONS(1500), - [anon_sym_defer] = ACTIONS(1500), - [anon_sym_assert] = ACTIONS(1500), - [anon_sym_nextcase] = ACTIONS(1500), - [anon_sym_switch] = ACTIONS(1500), - [anon_sym_AMP_AMP] = ACTIONS(1502), - [anon_sym_if] = ACTIONS(1500), - [anon_sym_for] = ACTIONS(1500), - [anon_sym_foreach] = ACTIONS(1500), - [anon_sym_foreach_r] = ACTIONS(1500), - [anon_sym_while] = ACTIONS(1500), - [anon_sym_do] = ACTIONS(1500), - [anon_sym_int] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1500), - [anon_sym_DASH] = ACTIONS(1500), - [anon_sym_STAR] = ACTIONS(1502), - [anon_sym_asm] = ACTIONS(1500), - [anon_sym_DOLLARassert] = ACTIONS(1500), - [anon_sym_DOLLARerror] = ACTIONS(1500), - [anon_sym_DOLLARecho] = ACTIONS(1500), - [anon_sym_DOLLARif] = ACTIONS(1500), - [anon_sym_DOLLARendif] = ACTIONS(1500), - [anon_sym_DOLLARswitch] = ACTIONS(1500), - [anon_sym_DOLLARfor] = ACTIONS(1500), - [anon_sym_DOLLARforeach] = ACTIONS(1500), - [anon_sym_DOLLARalignof] = ACTIONS(1500), - [anon_sym_DOLLARextnameof] = ACTIONS(1500), - [anon_sym_DOLLARnameof] = ACTIONS(1500), - [anon_sym_DOLLARoffsetof] = ACTIONS(1500), - [anon_sym_DOLLARqnameof] = ACTIONS(1500), - [anon_sym_DOLLARvaconst] = ACTIONS(1500), - [anon_sym_DOLLARvaarg] = ACTIONS(1500), - [anon_sym_DOLLARvaref] = ACTIONS(1500), - [anon_sym_DOLLARvaexpr] = ACTIONS(1500), - [anon_sym_true] = ACTIONS(1500), - [anon_sym_false] = ACTIONS(1500), - [anon_sym_null] = ACTIONS(1500), - [anon_sym_DOLLARvacount] = ACTIONS(1500), - [anon_sym_DOLLARappend] = ACTIONS(1500), - [anon_sym_DOLLARconcat] = ACTIONS(1500), - [anon_sym_DOLLAReval] = ACTIONS(1500), - [anon_sym_DOLLARis_const] = ACTIONS(1500), - [anon_sym_DOLLARsizeof] = ACTIONS(1500), - [anon_sym_DOLLARstringify] = ACTIONS(1500), - [anon_sym_DOLLARand] = ACTIONS(1500), - [anon_sym_DOLLARdefined] = ACTIONS(1500), - [anon_sym_DOLLARembed] = ACTIONS(1500), - [anon_sym_DOLLARor] = ACTIONS(1500), - [anon_sym_DOLLARfeature] = ACTIONS(1500), - [anon_sym_DOLLARassignable] = ACTIONS(1500), - [anon_sym_BANG] = ACTIONS(1502), - [anon_sym_TILDE] = ACTIONS(1502), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), - [anon_sym_DASH_DASH] = ACTIONS(1502), - [anon_sym_typeid] = ACTIONS(1500), - [anon_sym_LBRACE_PIPE] = ACTIONS(1502), - [anon_sym_void] = ACTIONS(1500), - [anon_sym_bool] = ACTIONS(1500), - [anon_sym_char] = ACTIONS(1500), - [anon_sym_ichar] = ACTIONS(1500), - [anon_sym_short] = ACTIONS(1500), - [anon_sym_ushort] = ACTIONS(1500), - [anon_sym_uint] = ACTIONS(1500), - [anon_sym_long] = ACTIONS(1500), - [anon_sym_ulong] = ACTIONS(1500), - [anon_sym_int128] = ACTIONS(1500), - [anon_sym_uint128] = ACTIONS(1500), - [anon_sym_float] = ACTIONS(1500), - [anon_sym_double] = ACTIONS(1500), - [anon_sym_float16] = ACTIONS(1500), - [anon_sym_bfloat16] = ACTIONS(1500), - [anon_sym_float128] = ACTIONS(1500), - [anon_sym_iptr] = ACTIONS(1500), - [anon_sym_uptr] = ACTIONS(1500), - [anon_sym_isz] = ACTIONS(1500), - [anon_sym_usz] = ACTIONS(1500), - [anon_sym_anyfault] = ACTIONS(1500), - [anon_sym_any] = ACTIONS(1500), - [anon_sym_DOLLARtypeof] = ACTIONS(1500), - [anon_sym_DOLLARtypefrom] = ACTIONS(1500), - [anon_sym_DOLLARvatype] = ACTIONS(1500), - [anon_sym_DOLLARevaltype] = ACTIONS(1500), - [sym_real_literal] = ACTIONS(1502), - }, - [830] = { - [sym_line_comment] = STATE(830), - [sym_doc_comment] = STATE(830), - [sym_block_comment] = STATE(830), - [sym_ident] = ACTIONS(1690), - [sym_integer_literal] = ACTIONS(1692), - [anon_sym_SQUOTE] = ACTIONS(1692), - [anon_sym_DQUOTE] = ACTIONS(1692), - [anon_sym_BQUOTE] = ACTIONS(1692), - [sym_bytes_literal] = ACTIONS(1692), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1690), - [sym_at_ident] = ACTIONS(1692), - [sym_hash_ident] = ACTIONS(1692), - [sym_type_ident] = ACTIONS(1692), - [sym_ct_type_ident] = ACTIONS(1692), - [sym_const_ident] = ACTIONS(1690), - [sym_builtin] = ACTIONS(1692), - [anon_sym_LPAREN] = ACTIONS(1692), - [anon_sym_AMP] = ACTIONS(1690), - [anon_sym_static] = ACTIONS(1690), - [anon_sym_tlocal] = ACTIONS(1690), - [anon_sym_SEMI] = ACTIONS(1692), - [anon_sym_fn] = ACTIONS(1690), - [anon_sym_LBRACE] = ACTIONS(1690), - [anon_sym_const] = ACTIONS(1690), - [anon_sym_var] = ACTIONS(1690), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(1690), - [anon_sym_break] = ACTIONS(1690), - [anon_sym_defer] = ACTIONS(1690), - [anon_sym_assert] = ACTIONS(1690), - [anon_sym_nextcase] = ACTIONS(1690), - [anon_sym_switch] = ACTIONS(1690), - [anon_sym_AMP_AMP] = ACTIONS(1692), - [anon_sym_if] = ACTIONS(1690), - [anon_sym_for] = ACTIONS(1690), - [anon_sym_foreach] = ACTIONS(1690), - [anon_sym_foreach_r] = ACTIONS(1690), - [anon_sym_while] = ACTIONS(1690), - [anon_sym_do] = ACTIONS(1690), - [anon_sym_int] = ACTIONS(1690), - [anon_sym_PLUS] = ACTIONS(1690), - [anon_sym_DASH] = ACTIONS(1690), - [anon_sym_STAR] = ACTIONS(1692), - [anon_sym_asm] = ACTIONS(1690), - [anon_sym_DOLLARassert] = ACTIONS(1690), - [anon_sym_DOLLARerror] = ACTIONS(1690), - [anon_sym_DOLLARecho] = ACTIONS(1690), - [anon_sym_DOLLARif] = ACTIONS(1690), - [anon_sym_DOLLARswitch] = ACTIONS(1690), - [anon_sym_DOLLARfor] = ACTIONS(1690), - [anon_sym_DOLLARendfor] = ACTIONS(1690), - [anon_sym_DOLLARforeach] = ACTIONS(1690), - [anon_sym_DOLLARalignof] = ACTIONS(1690), - [anon_sym_DOLLARextnameof] = ACTIONS(1690), - [anon_sym_DOLLARnameof] = ACTIONS(1690), - [anon_sym_DOLLARoffsetof] = ACTIONS(1690), - [anon_sym_DOLLARqnameof] = ACTIONS(1690), - [anon_sym_DOLLARvaconst] = ACTIONS(1690), - [anon_sym_DOLLARvaarg] = ACTIONS(1690), - [anon_sym_DOLLARvaref] = ACTIONS(1690), - [anon_sym_DOLLARvaexpr] = ACTIONS(1690), - [anon_sym_true] = ACTIONS(1690), - [anon_sym_false] = ACTIONS(1690), - [anon_sym_null] = ACTIONS(1690), - [anon_sym_DOLLARvacount] = ACTIONS(1690), - [anon_sym_DOLLARappend] = ACTIONS(1690), - [anon_sym_DOLLARconcat] = ACTIONS(1690), - [anon_sym_DOLLAReval] = ACTIONS(1690), - [anon_sym_DOLLARis_const] = ACTIONS(1690), - [anon_sym_DOLLARsizeof] = ACTIONS(1690), - [anon_sym_DOLLARstringify] = ACTIONS(1690), - [anon_sym_DOLLARand] = ACTIONS(1690), - [anon_sym_DOLLARdefined] = ACTIONS(1690), - [anon_sym_DOLLARembed] = ACTIONS(1690), - [anon_sym_DOLLARor] = ACTIONS(1690), - [anon_sym_DOLLARfeature] = ACTIONS(1690), - [anon_sym_DOLLARassignable] = ACTIONS(1690), - [anon_sym_BANG] = ACTIONS(1692), - [anon_sym_TILDE] = ACTIONS(1692), - [anon_sym_PLUS_PLUS] = ACTIONS(1692), - [anon_sym_DASH_DASH] = ACTIONS(1692), - [anon_sym_typeid] = ACTIONS(1690), - [anon_sym_LBRACE_PIPE] = ACTIONS(1692), - [anon_sym_void] = ACTIONS(1690), - [anon_sym_bool] = ACTIONS(1690), - [anon_sym_char] = ACTIONS(1690), - [anon_sym_ichar] = ACTIONS(1690), - [anon_sym_short] = ACTIONS(1690), - [anon_sym_ushort] = ACTIONS(1690), - [anon_sym_uint] = ACTIONS(1690), - [anon_sym_long] = ACTIONS(1690), - [anon_sym_ulong] = ACTIONS(1690), - [anon_sym_int128] = ACTIONS(1690), - [anon_sym_uint128] = ACTIONS(1690), - [anon_sym_float] = ACTIONS(1690), - [anon_sym_double] = ACTIONS(1690), - [anon_sym_float16] = ACTIONS(1690), - [anon_sym_bfloat16] = ACTIONS(1690), - [anon_sym_float128] = ACTIONS(1690), - [anon_sym_iptr] = ACTIONS(1690), - [anon_sym_uptr] = ACTIONS(1690), - [anon_sym_isz] = ACTIONS(1690), - [anon_sym_usz] = ACTIONS(1690), - [anon_sym_anyfault] = ACTIONS(1690), - [anon_sym_any] = ACTIONS(1690), - [anon_sym_DOLLARtypeof] = ACTIONS(1690), - [anon_sym_DOLLARtypefrom] = ACTIONS(1690), - [anon_sym_DOLLARvatype] = ACTIONS(1690), - [anon_sym_DOLLARevaltype] = ACTIONS(1690), - [sym_real_literal] = ACTIONS(1692), - }, - [831] = { - [sym_line_comment] = STATE(831), - [sym_doc_comment] = STATE(831), - [sym_block_comment] = STATE(831), - [sym_ident] = ACTIONS(1694), - [sym_integer_literal] = ACTIONS(1696), - [anon_sym_SQUOTE] = ACTIONS(1696), - [anon_sym_DQUOTE] = ACTIONS(1696), - [anon_sym_BQUOTE] = ACTIONS(1696), - [sym_bytes_literal] = ACTIONS(1696), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1694), - [sym_at_ident] = ACTIONS(1696), - [sym_hash_ident] = ACTIONS(1696), - [sym_type_ident] = ACTIONS(1696), - [sym_ct_type_ident] = ACTIONS(1696), - [sym_const_ident] = ACTIONS(1694), - [sym_builtin] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_AMP] = ACTIONS(1694), - [anon_sym_static] = ACTIONS(1694), - [anon_sym_tlocal] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1696), - [anon_sym_fn] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1694), - [anon_sym_const] = ACTIONS(1694), - [anon_sym_var] = ACTIONS(1694), - [anon_sym_return] = ACTIONS(1694), - [anon_sym_continue] = ACTIONS(1694), - [anon_sym_break] = ACTIONS(1694), - [anon_sym_defer] = ACTIONS(1694), - [anon_sym_assert] = ACTIONS(1694), - [anon_sym_nextcase] = ACTIONS(1694), - [anon_sym_switch] = ACTIONS(1694), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_for] = ACTIONS(1694), - [anon_sym_foreach] = ACTIONS(1694), - [anon_sym_foreach_r] = ACTIONS(1694), - [anon_sym_while] = ACTIONS(1694), - [anon_sym_do] = ACTIONS(1694), - [anon_sym_int] = ACTIONS(1694), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1696), - [anon_sym_asm] = ACTIONS(1694), - [anon_sym_DOLLARassert] = ACTIONS(1694), - [anon_sym_DOLLARerror] = ACTIONS(1694), - [anon_sym_DOLLARecho] = ACTIONS(1694), - [anon_sym_DOLLARif] = ACTIONS(1694), - [anon_sym_DOLLARswitch] = ACTIONS(1694), - [anon_sym_DOLLARfor] = ACTIONS(1694), - [anon_sym_DOLLARendfor] = ACTIONS(1694), - [anon_sym_DOLLARforeach] = ACTIONS(1694), - [anon_sym_DOLLARalignof] = ACTIONS(1694), - [anon_sym_DOLLARextnameof] = ACTIONS(1694), - [anon_sym_DOLLARnameof] = ACTIONS(1694), - [anon_sym_DOLLARoffsetof] = ACTIONS(1694), - [anon_sym_DOLLARqnameof] = ACTIONS(1694), - [anon_sym_DOLLARvaconst] = ACTIONS(1694), - [anon_sym_DOLLARvaarg] = ACTIONS(1694), - [anon_sym_DOLLARvaref] = ACTIONS(1694), - [anon_sym_DOLLARvaexpr] = ACTIONS(1694), - [anon_sym_true] = ACTIONS(1694), - [anon_sym_false] = ACTIONS(1694), - [anon_sym_null] = ACTIONS(1694), - [anon_sym_DOLLARvacount] = ACTIONS(1694), - [anon_sym_DOLLARappend] = ACTIONS(1694), - [anon_sym_DOLLARconcat] = ACTIONS(1694), - [anon_sym_DOLLAReval] = ACTIONS(1694), - [anon_sym_DOLLARis_const] = ACTIONS(1694), - [anon_sym_DOLLARsizeof] = ACTIONS(1694), - [anon_sym_DOLLARstringify] = ACTIONS(1694), - [anon_sym_DOLLARand] = ACTIONS(1694), - [anon_sym_DOLLARdefined] = ACTIONS(1694), - [anon_sym_DOLLARembed] = ACTIONS(1694), - [anon_sym_DOLLARor] = ACTIONS(1694), - [anon_sym_DOLLARfeature] = ACTIONS(1694), - [anon_sym_DOLLARassignable] = ACTIONS(1694), - [anon_sym_BANG] = ACTIONS(1696), - [anon_sym_TILDE] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_typeid] = ACTIONS(1694), - [anon_sym_LBRACE_PIPE] = ACTIONS(1696), - [anon_sym_void] = ACTIONS(1694), - [anon_sym_bool] = ACTIONS(1694), - [anon_sym_char] = ACTIONS(1694), - [anon_sym_ichar] = ACTIONS(1694), - [anon_sym_short] = ACTIONS(1694), - [anon_sym_ushort] = ACTIONS(1694), - [anon_sym_uint] = ACTIONS(1694), - [anon_sym_long] = ACTIONS(1694), - [anon_sym_ulong] = ACTIONS(1694), - [anon_sym_int128] = ACTIONS(1694), - [anon_sym_uint128] = ACTIONS(1694), - [anon_sym_float] = ACTIONS(1694), - [anon_sym_double] = ACTIONS(1694), - [anon_sym_float16] = ACTIONS(1694), - [anon_sym_bfloat16] = ACTIONS(1694), - [anon_sym_float128] = ACTIONS(1694), - [anon_sym_iptr] = ACTIONS(1694), - [anon_sym_uptr] = ACTIONS(1694), - [anon_sym_isz] = ACTIONS(1694), - [anon_sym_usz] = ACTIONS(1694), - [anon_sym_anyfault] = ACTIONS(1694), - [anon_sym_any] = ACTIONS(1694), - [anon_sym_DOLLARtypeof] = ACTIONS(1694), - [anon_sym_DOLLARtypefrom] = ACTIONS(1694), - [anon_sym_DOLLARvatype] = ACTIONS(1694), - [anon_sym_DOLLARevaltype] = ACTIONS(1694), - [sym_real_literal] = ACTIONS(1696), - }, - [832] = { - [sym_line_comment] = STATE(832), - [sym_doc_comment] = STATE(832), - [sym_block_comment] = STATE(832), - [sym_ident] = ACTIONS(1698), - [sym_integer_literal] = ACTIONS(1700), - [anon_sym_SQUOTE] = ACTIONS(1700), - [anon_sym_DQUOTE] = ACTIONS(1700), - [anon_sym_BQUOTE] = ACTIONS(1700), - [sym_bytes_literal] = ACTIONS(1700), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1698), - [sym_at_ident] = ACTIONS(1700), - [sym_hash_ident] = ACTIONS(1700), - [sym_type_ident] = ACTIONS(1700), - [sym_ct_type_ident] = ACTIONS(1700), - [sym_const_ident] = ACTIONS(1698), - [sym_builtin] = ACTIONS(1700), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_AMP] = ACTIONS(1698), - [anon_sym_static] = ACTIONS(1698), - [anon_sym_tlocal] = ACTIONS(1698), - [anon_sym_SEMI] = ACTIONS(1700), - [anon_sym_fn] = ACTIONS(1698), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_const] = ACTIONS(1698), - [anon_sym_var] = ACTIONS(1698), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(1698), - [anon_sym_break] = ACTIONS(1698), - [anon_sym_defer] = ACTIONS(1698), - [anon_sym_assert] = ACTIONS(1698), - [anon_sym_nextcase] = ACTIONS(1698), - [anon_sym_switch] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1700), - [anon_sym_if] = ACTIONS(1698), - [anon_sym_for] = ACTIONS(1698), - [anon_sym_foreach] = ACTIONS(1698), - [anon_sym_foreach_r] = ACTIONS(1698), - [anon_sym_while] = ACTIONS(1698), - [anon_sym_do] = ACTIONS(1698), - [anon_sym_int] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1698), - [anon_sym_DASH] = ACTIONS(1698), - [anon_sym_STAR] = ACTIONS(1700), - [anon_sym_asm] = ACTIONS(1698), - [anon_sym_DOLLARassert] = ACTIONS(1698), - [anon_sym_DOLLARerror] = ACTIONS(1698), - [anon_sym_DOLLARecho] = ACTIONS(1698), - [anon_sym_DOLLARif] = ACTIONS(1698), - [anon_sym_DOLLARswitch] = ACTIONS(1698), - [anon_sym_DOLLARfor] = ACTIONS(1698), - [anon_sym_DOLLARendfor] = ACTIONS(1698), - [anon_sym_DOLLARforeach] = ACTIONS(1698), - [anon_sym_DOLLARalignof] = ACTIONS(1698), - [anon_sym_DOLLARextnameof] = ACTIONS(1698), - [anon_sym_DOLLARnameof] = ACTIONS(1698), - [anon_sym_DOLLARoffsetof] = ACTIONS(1698), - [anon_sym_DOLLARqnameof] = ACTIONS(1698), - [anon_sym_DOLLARvaconst] = ACTIONS(1698), - [anon_sym_DOLLARvaarg] = ACTIONS(1698), - [anon_sym_DOLLARvaref] = ACTIONS(1698), - [anon_sym_DOLLARvaexpr] = ACTIONS(1698), - [anon_sym_true] = ACTIONS(1698), - [anon_sym_false] = ACTIONS(1698), - [anon_sym_null] = ACTIONS(1698), - [anon_sym_DOLLARvacount] = ACTIONS(1698), - [anon_sym_DOLLARappend] = ACTIONS(1698), - [anon_sym_DOLLARconcat] = ACTIONS(1698), - [anon_sym_DOLLAReval] = ACTIONS(1698), - [anon_sym_DOLLARis_const] = ACTIONS(1698), - [anon_sym_DOLLARsizeof] = ACTIONS(1698), - [anon_sym_DOLLARstringify] = ACTIONS(1698), - [anon_sym_DOLLARand] = ACTIONS(1698), - [anon_sym_DOLLARdefined] = ACTIONS(1698), - [anon_sym_DOLLARembed] = ACTIONS(1698), - [anon_sym_DOLLARor] = ACTIONS(1698), - [anon_sym_DOLLARfeature] = ACTIONS(1698), - [anon_sym_DOLLARassignable] = ACTIONS(1698), - [anon_sym_BANG] = ACTIONS(1700), - [anon_sym_TILDE] = ACTIONS(1700), - [anon_sym_PLUS_PLUS] = ACTIONS(1700), - [anon_sym_DASH_DASH] = ACTIONS(1700), - [anon_sym_typeid] = ACTIONS(1698), - [anon_sym_LBRACE_PIPE] = ACTIONS(1700), - [anon_sym_void] = ACTIONS(1698), - [anon_sym_bool] = ACTIONS(1698), - [anon_sym_char] = ACTIONS(1698), - [anon_sym_ichar] = ACTIONS(1698), - [anon_sym_short] = ACTIONS(1698), - [anon_sym_ushort] = ACTIONS(1698), - [anon_sym_uint] = ACTIONS(1698), - [anon_sym_long] = ACTIONS(1698), - [anon_sym_ulong] = ACTIONS(1698), - [anon_sym_int128] = ACTIONS(1698), - [anon_sym_uint128] = ACTIONS(1698), - [anon_sym_float] = ACTIONS(1698), - [anon_sym_double] = ACTIONS(1698), - [anon_sym_float16] = ACTIONS(1698), - [anon_sym_bfloat16] = ACTIONS(1698), - [anon_sym_float128] = ACTIONS(1698), - [anon_sym_iptr] = ACTIONS(1698), - [anon_sym_uptr] = ACTIONS(1698), - [anon_sym_isz] = ACTIONS(1698), - [anon_sym_usz] = ACTIONS(1698), - [anon_sym_anyfault] = ACTIONS(1698), - [anon_sym_any] = ACTIONS(1698), - [anon_sym_DOLLARtypeof] = ACTIONS(1698), - [anon_sym_DOLLARtypefrom] = ACTIONS(1698), - [anon_sym_DOLLARvatype] = ACTIONS(1698), - [anon_sym_DOLLARevaltype] = ACTIONS(1698), - [sym_real_literal] = ACTIONS(1700), - }, - [833] = { - [sym_line_comment] = STATE(833), - [sym_doc_comment] = STATE(833), - [sym_block_comment] = STATE(833), - [sym_ident] = ACTIONS(1444), - [sym_integer_literal] = ACTIONS(1446), - [anon_sym_SQUOTE] = ACTIONS(1446), - [anon_sym_DQUOTE] = ACTIONS(1446), - [anon_sym_BQUOTE] = ACTIONS(1446), - [sym_bytes_literal] = ACTIONS(1446), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1444), - [sym_at_ident] = ACTIONS(1446), - [sym_hash_ident] = ACTIONS(1446), - [sym_type_ident] = ACTIONS(1446), - [sym_ct_type_ident] = ACTIONS(1446), - [sym_const_ident] = ACTIONS(1444), - [sym_builtin] = ACTIONS(1446), - [anon_sym_LPAREN] = ACTIONS(1446), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_static] = ACTIONS(1444), - [anon_sym_tlocal] = ACTIONS(1444), - [anon_sym_SEMI] = ACTIONS(1446), - [anon_sym_fn] = ACTIONS(1444), - [anon_sym_LBRACE] = ACTIONS(1444), - [anon_sym_const] = ACTIONS(1444), - [anon_sym_var] = ACTIONS(1444), - [anon_sym_return] = ACTIONS(1444), - [anon_sym_continue] = ACTIONS(1444), - [anon_sym_break] = ACTIONS(1444), - [anon_sym_defer] = ACTIONS(1444), - [anon_sym_assert] = ACTIONS(1444), - [anon_sym_nextcase] = ACTIONS(1444), - [anon_sym_switch] = ACTIONS(1444), - [anon_sym_AMP_AMP] = ACTIONS(1446), - [anon_sym_if] = ACTIONS(1444), - [anon_sym_for] = ACTIONS(1444), - [anon_sym_foreach] = ACTIONS(1444), - [anon_sym_foreach_r] = ACTIONS(1444), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_do] = ACTIONS(1444), - [anon_sym_int] = ACTIONS(1444), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_asm] = ACTIONS(1444), - [anon_sym_DOLLARassert] = ACTIONS(1444), - [anon_sym_DOLLARerror] = ACTIONS(1444), - [anon_sym_DOLLARecho] = ACTIONS(1444), - [anon_sym_DOLLARif] = ACTIONS(1444), - [anon_sym_DOLLARendif] = ACTIONS(1444), - [anon_sym_DOLLARswitch] = ACTIONS(1444), - [anon_sym_DOLLARfor] = ACTIONS(1444), - [anon_sym_DOLLARforeach] = ACTIONS(1444), - [anon_sym_DOLLARalignof] = ACTIONS(1444), - [anon_sym_DOLLARextnameof] = ACTIONS(1444), - [anon_sym_DOLLARnameof] = ACTIONS(1444), - [anon_sym_DOLLARoffsetof] = ACTIONS(1444), - [anon_sym_DOLLARqnameof] = ACTIONS(1444), - [anon_sym_DOLLARvaconst] = ACTIONS(1444), - [anon_sym_DOLLARvaarg] = ACTIONS(1444), - [anon_sym_DOLLARvaref] = ACTIONS(1444), - [anon_sym_DOLLARvaexpr] = ACTIONS(1444), - [anon_sym_true] = ACTIONS(1444), - [anon_sym_false] = ACTIONS(1444), - [anon_sym_null] = ACTIONS(1444), - [anon_sym_DOLLARvacount] = ACTIONS(1444), - [anon_sym_DOLLARappend] = ACTIONS(1444), - [anon_sym_DOLLARconcat] = ACTIONS(1444), - [anon_sym_DOLLAReval] = ACTIONS(1444), - [anon_sym_DOLLARis_const] = ACTIONS(1444), - [anon_sym_DOLLARsizeof] = ACTIONS(1444), - [anon_sym_DOLLARstringify] = ACTIONS(1444), - [anon_sym_DOLLARand] = ACTIONS(1444), - [anon_sym_DOLLARdefined] = ACTIONS(1444), - [anon_sym_DOLLARembed] = ACTIONS(1444), - [anon_sym_DOLLARor] = ACTIONS(1444), - [anon_sym_DOLLARfeature] = ACTIONS(1444), - [anon_sym_DOLLARassignable] = ACTIONS(1444), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_TILDE] = ACTIONS(1446), - [anon_sym_PLUS_PLUS] = ACTIONS(1446), - [anon_sym_DASH_DASH] = ACTIONS(1446), - [anon_sym_typeid] = ACTIONS(1444), - [anon_sym_LBRACE_PIPE] = ACTIONS(1446), - [anon_sym_void] = ACTIONS(1444), - [anon_sym_bool] = ACTIONS(1444), - [anon_sym_char] = ACTIONS(1444), - [anon_sym_ichar] = ACTIONS(1444), - [anon_sym_short] = ACTIONS(1444), - [anon_sym_ushort] = ACTIONS(1444), - [anon_sym_uint] = ACTIONS(1444), - [anon_sym_long] = ACTIONS(1444), - [anon_sym_ulong] = ACTIONS(1444), - [anon_sym_int128] = ACTIONS(1444), - [anon_sym_uint128] = ACTIONS(1444), - [anon_sym_float] = ACTIONS(1444), - [anon_sym_double] = ACTIONS(1444), - [anon_sym_float16] = ACTIONS(1444), - [anon_sym_bfloat16] = ACTIONS(1444), - [anon_sym_float128] = ACTIONS(1444), - [anon_sym_iptr] = ACTIONS(1444), - [anon_sym_uptr] = ACTIONS(1444), - [anon_sym_isz] = ACTIONS(1444), - [anon_sym_usz] = ACTIONS(1444), - [anon_sym_anyfault] = ACTIONS(1444), - [anon_sym_any] = ACTIONS(1444), - [anon_sym_DOLLARtypeof] = ACTIONS(1444), - [anon_sym_DOLLARtypefrom] = ACTIONS(1444), - [anon_sym_DOLLARvatype] = ACTIONS(1444), - [anon_sym_DOLLARevaltype] = ACTIONS(1444), - [sym_real_literal] = ACTIONS(1446), - }, - [834] = { - [sym_line_comment] = STATE(834), - [sym_doc_comment] = STATE(834), - [sym_block_comment] = STATE(834), - [sym_ident] = ACTIONS(1540), - [sym_integer_literal] = ACTIONS(1542), - [anon_sym_SQUOTE] = ACTIONS(1542), - [anon_sym_DQUOTE] = ACTIONS(1542), - [anon_sym_BQUOTE] = ACTIONS(1542), - [sym_bytes_literal] = ACTIONS(1542), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1540), - [sym_at_ident] = ACTIONS(1542), - [sym_hash_ident] = ACTIONS(1542), - [sym_type_ident] = ACTIONS(1542), - [sym_ct_type_ident] = ACTIONS(1542), - [sym_const_ident] = ACTIONS(1540), - [sym_builtin] = ACTIONS(1542), - [anon_sym_LPAREN] = ACTIONS(1542), - [anon_sym_AMP] = ACTIONS(1540), - [anon_sym_static] = ACTIONS(1540), - [anon_sym_tlocal] = ACTIONS(1540), - [anon_sym_SEMI] = ACTIONS(1542), - [anon_sym_fn] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(1540), - [anon_sym_const] = ACTIONS(1540), - [anon_sym_var] = ACTIONS(1540), - [anon_sym_return] = ACTIONS(1540), - [anon_sym_continue] = ACTIONS(1540), - [anon_sym_break] = ACTIONS(1540), - [anon_sym_defer] = ACTIONS(1540), - [anon_sym_assert] = ACTIONS(1540), - [anon_sym_nextcase] = ACTIONS(1540), - [anon_sym_switch] = ACTIONS(1540), - [anon_sym_AMP_AMP] = ACTIONS(1542), - [anon_sym_if] = ACTIONS(1540), - [anon_sym_for] = ACTIONS(1540), - [anon_sym_foreach] = ACTIONS(1540), - [anon_sym_foreach_r] = ACTIONS(1540), - [anon_sym_while] = ACTIONS(1540), - [anon_sym_do] = ACTIONS(1540), - [anon_sym_int] = ACTIONS(1540), - [anon_sym_PLUS] = ACTIONS(1540), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_STAR] = ACTIONS(1542), - [anon_sym_asm] = ACTIONS(1540), - [anon_sym_DOLLARassert] = ACTIONS(1540), - [anon_sym_DOLLARerror] = ACTIONS(1540), - [anon_sym_DOLLARecho] = ACTIONS(1540), - [anon_sym_DOLLARif] = ACTIONS(1540), - [anon_sym_DOLLARswitch] = ACTIONS(1540), - [anon_sym_DOLLARfor] = ACTIONS(1540), - [anon_sym_DOLLARendfor] = ACTIONS(1540), - [anon_sym_DOLLARforeach] = ACTIONS(1540), - [anon_sym_DOLLARalignof] = ACTIONS(1540), - [anon_sym_DOLLARextnameof] = ACTIONS(1540), - [anon_sym_DOLLARnameof] = ACTIONS(1540), - [anon_sym_DOLLARoffsetof] = ACTIONS(1540), - [anon_sym_DOLLARqnameof] = ACTIONS(1540), - [anon_sym_DOLLARvaconst] = ACTIONS(1540), - [anon_sym_DOLLARvaarg] = ACTIONS(1540), - [anon_sym_DOLLARvaref] = ACTIONS(1540), - [anon_sym_DOLLARvaexpr] = ACTIONS(1540), - [anon_sym_true] = ACTIONS(1540), - [anon_sym_false] = ACTIONS(1540), - [anon_sym_null] = ACTIONS(1540), - [anon_sym_DOLLARvacount] = ACTIONS(1540), - [anon_sym_DOLLARappend] = ACTIONS(1540), - [anon_sym_DOLLARconcat] = ACTIONS(1540), - [anon_sym_DOLLAReval] = ACTIONS(1540), - [anon_sym_DOLLARis_const] = ACTIONS(1540), - [anon_sym_DOLLARsizeof] = ACTIONS(1540), - [anon_sym_DOLLARstringify] = ACTIONS(1540), - [anon_sym_DOLLARand] = ACTIONS(1540), - [anon_sym_DOLLARdefined] = ACTIONS(1540), - [anon_sym_DOLLARembed] = ACTIONS(1540), - [anon_sym_DOLLARor] = ACTIONS(1540), - [anon_sym_DOLLARfeature] = ACTIONS(1540), - [anon_sym_DOLLARassignable] = ACTIONS(1540), - [anon_sym_BANG] = ACTIONS(1542), - [anon_sym_TILDE] = ACTIONS(1542), - [anon_sym_PLUS_PLUS] = ACTIONS(1542), - [anon_sym_DASH_DASH] = ACTIONS(1542), - [anon_sym_typeid] = ACTIONS(1540), - [anon_sym_LBRACE_PIPE] = ACTIONS(1542), - [anon_sym_void] = ACTIONS(1540), - [anon_sym_bool] = ACTIONS(1540), - [anon_sym_char] = ACTIONS(1540), - [anon_sym_ichar] = ACTIONS(1540), - [anon_sym_short] = ACTIONS(1540), - [anon_sym_ushort] = ACTIONS(1540), - [anon_sym_uint] = ACTIONS(1540), - [anon_sym_long] = ACTIONS(1540), - [anon_sym_ulong] = ACTIONS(1540), - [anon_sym_int128] = ACTIONS(1540), - [anon_sym_uint128] = ACTIONS(1540), - [anon_sym_float] = ACTIONS(1540), - [anon_sym_double] = ACTIONS(1540), - [anon_sym_float16] = ACTIONS(1540), - [anon_sym_bfloat16] = ACTIONS(1540), - [anon_sym_float128] = ACTIONS(1540), - [anon_sym_iptr] = ACTIONS(1540), - [anon_sym_uptr] = ACTIONS(1540), - [anon_sym_isz] = ACTIONS(1540), - [anon_sym_usz] = ACTIONS(1540), - [anon_sym_anyfault] = ACTIONS(1540), - [anon_sym_any] = ACTIONS(1540), - [anon_sym_DOLLARtypeof] = ACTIONS(1540), - [anon_sym_DOLLARtypefrom] = ACTIONS(1540), - [anon_sym_DOLLARvatype] = ACTIONS(1540), - [anon_sym_DOLLARevaltype] = ACTIONS(1540), - [sym_real_literal] = ACTIONS(1542), - }, - [835] = { - [sym_line_comment] = STATE(835), - [sym_doc_comment] = STATE(835), - [sym_block_comment] = STATE(835), - [sym_ident] = ACTIONS(1568), - [sym_integer_literal] = ACTIONS(1570), - [anon_sym_SQUOTE] = ACTIONS(1570), - [anon_sym_DQUOTE] = ACTIONS(1570), - [anon_sym_BQUOTE] = ACTIONS(1570), - [sym_bytes_literal] = ACTIONS(1570), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1568), - [sym_at_ident] = ACTIONS(1570), - [sym_hash_ident] = ACTIONS(1570), - [sym_type_ident] = ACTIONS(1570), - [sym_ct_type_ident] = ACTIONS(1570), - [sym_const_ident] = ACTIONS(1568), - [sym_builtin] = ACTIONS(1570), - [anon_sym_LPAREN] = ACTIONS(1570), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_static] = ACTIONS(1568), - [anon_sym_tlocal] = ACTIONS(1568), - [anon_sym_SEMI] = ACTIONS(1570), - [anon_sym_fn] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(1568), - [anon_sym_const] = ACTIONS(1568), - [anon_sym_var] = ACTIONS(1568), - [anon_sym_return] = ACTIONS(1568), - [anon_sym_continue] = ACTIONS(1568), - [anon_sym_break] = ACTIONS(1568), - [anon_sym_defer] = ACTIONS(1568), - [anon_sym_assert] = ACTIONS(1568), - [anon_sym_nextcase] = ACTIONS(1568), - [anon_sym_switch] = ACTIONS(1568), - [anon_sym_AMP_AMP] = ACTIONS(1570), - [anon_sym_if] = ACTIONS(1568), - [anon_sym_for] = ACTIONS(1568), - [anon_sym_foreach] = ACTIONS(1568), - [anon_sym_foreach_r] = ACTIONS(1568), - [anon_sym_while] = ACTIONS(1568), - [anon_sym_do] = ACTIONS(1568), - [anon_sym_int] = ACTIONS(1568), - [anon_sym_PLUS] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1568), - [anon_sym_STAR] = ACTIONS(1570), - [anon_sym_asm] = ACTIONS(1568), - [anon_sym_DOLLARassert] = ACTIONS(1568), - [anon_sym_DOLLARerror] = ACTIONS(1568), - [anon_sym_DOLLARecho] = ACTIONS(1568), - [anon_sym_DOLLARif] = ACTIONS(1568), - [anon_sym_DOLLARswitch] = ACTIONS(1568), - [anon_sym_DOLLARfor] = ACTIONS(1568), - [anon_sym_DOLLARendfor] = ACTIONS(1568), - [anon_sym_DOLLARforeach] = ACTIONS(1568), - [anon_sym_DOLLARalignof] = ACTIONS(1568), - [anon_sym_DOLLARextnameof] = ACTIONS(1568), - [anon_sym_DOLLARnameof] = ACTIONS(1568), - [anon_sym_DOLLARoffsetof] = ACTIONS(1568), - [anon_sym_DOLLARqnameof] = ACTIONS(1568), - [anon_sym_DOLLARvaconst] = ACTIONS(1568), - [anon_sym_DOLLARvaarg] = ACTIONS(1568), - [anon_sym_DOLLARvaref] = ACTIONS(1568), - [anon_sym_DOLLARvaexpr] = ACTIONS(1568), - [anon_sym_true] = ACTIONS(1568), - [anon_sym_false] = ACTIONS(1568), - [anon_sym_null] = ACTIONS(1568), - [anon_sym_DOLLARvacount] = ACTIONS(1568), - [anon_sym_DOLLARappend] = ACTIONS(1568), - [anon_sym_DOLLARconcat] = ACTIONS(1568), - [anon_sym_DOLLAReval] = ACTIONS(1568), - [anon_sym_DOLLARis_const] = ACTIONS(1568), - [anon_sym_DOLLARsizeof] = ACTIONS(1568), - [anon_sym_DOLLARstringify] = ACTIONS(1568), - [anon_sym_DOLLARand] = ACTIONS(1568), - [anon_sym_DOLLARdefined] = ACTIONS(1568), - [anon_sym_DOLLARembed] = ACTIONS(1568), - [anon_sym_DOLLARor] = ACTIONS(1568), - [anon_sym_DOLLARfeature] = ACTIONS(1568), - [anon_sym_DOLLARassignable] = ACTIONS(1568), - [anon_sym_BANG] = ACTIONS(1570), - [anon_sym_TILDE] = ACTIONS(1570), - [anon_sym_PLUS_PLUS] = ACTIONS(1570), - [anon_sym_DASH_DASH] = ACTIONS(1570), - [anon_sym_typeid] = ACTIONS(1568), - [anon_sym_LBRACE_PIPE] = ACTIONS(1570), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_bool] = ACTIONS(1568), - [anon_sym_char] = ACTIONS(1568), - [anon_sym_ichar] = ACTIONS(1568), - [anon_sym_short] = ACTIONS(1568), - [anon_sym_ushort] = ACTIONS(1568), - [anon_sym_uint] = ACTIONS(1568), - [anon_sym_long] = ACTIONS(1568), - [anon_sym_ulong] = ACTIONS(1568), - [anon_sym_int128] = ACTIONS(1568), - [anon_sym_uint128] = ACTIONS(1568), - [anon_sym_float] = ACTIONS(1568), - [anon_sym_double] = ACTIONS(1568), - [anon_sym_float16] = ACTIONS(1568), - [anon_sym_bfloat16] = ACTIONS(1568), - [anon_sym_float128] = ACTIONS(1568), - [anon_sym_iptr] = ACTIONS(1568), - [anon_sym_uptr] = ACTIONS(1568), - [anon_sym_isz] = ACTIONS(1568), - [anon_sym_usz] = ACTIONS(1568), - [anon_sym_anyfault] = ACTIONS(1568), - [anon_sym_any] = ACTIONS(1568), - [anon_sym_DOLLARtypeof] = ACTIONS(1568), - [anon_sym_DOLLARtypefrom] = ACTIONS(1568), - [anon_sym_DOLLARvatype] = ACTIONS(1568), - [anon_sym_DOLLARevaltype] = ACTIONS(1568), - [sym_real_literal] = ACTIONS(1570), - }, - [836] = { - [sym_line_comment] = STATE(836), - [sym_doc_comment] = STATE(836), - [sym_block_comment] = STATE(836), - [sym_ident] = ACTIONS(1428), - [sym_integer_literal] = ACTIONS(1430), - [anon_sym_SQUOTE] = ACTIONS(1430), - [anon_sym_DQUOTE] = ACTIONS(1430), - [anon_sym_BQUOTE] = ACTIONS(1430), - [sym_bytes_literal] = ACTIONS(1430), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1428), - [sym_at_ident] = ACTIONS(1430), - [sym_hash_ident] = ACTIONS(1430), - [sym_type_ident] = ACTIONS(1430), - [sym_ct_type_ident] = ACTIONS(1430), - [sym_const_ident] = ACTIONS(1428), - [sym_builtin] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1430), - [anon_sym_AMP] = ACTIONS(1428), - [anon_sym_static] = ACTIONS(1428), - [anon_sym_tlocal] = ACTIONS(1428), - [anon_sym_SEMI] = ACTIONS(1430), - [anon_sym_fn] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1428), - [anon_sym_const] = ACTIONS(1428), - [anon_sym_var] = ACTIONS(1428), - [anon_sym_return] = ACTIONS(1428), - [anon_sym_continue] = ACTIONS(1428), - [anon_sym_break] = ACTIONS(1428), - [anon_sym_defer] = ACTIONS(1428), - [anon_sym_assert] = ACTIONS(1428), - [anon_sym_nextcase] = ACTIONS(1428), - [anon_sym_switch] = ACTIONS(1428), - [anon_sym_AMP_AMP] = ACTIONS(1430), - [anon_sym_if] = ACTIONS(1428), - [anon_sym_for] = ACTIONS(1428), - [anon_sym_foreach] = ACTIONS(1428), - [anon_sym_foreach_r] = ACTIONS(1428), - [anon_sym_while] = ACTIONS(1428), - [anon_sym_do] = ACTIONS(1428), - [anon_sym_int] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1428), - [anon_sym_DASH] = ACTIONS(1428), - [anon_sym_STAR] = ACTIONS(1430), - [anon_sym_asm] = ACTIONS(1428), - [anon_sym_DOLLARassert] = ACTIONS(1428), - [anon_sym_DOLLARerror] = ACTIONS(1428), - [anon_sym_DOLLARecho] = ACTIONS(1428), - [anon_sym_DOLLARif] = ACTIONS(1428), - [anon_sym_DOLLARendif] = ACTIONS(1428), - [anon_sym_DOLLARswitch] = ACTIONS(1428), - [anon_sym_DOLLARfor] = ACTIONS(1428), - [anon_sym_DOLLARforeach] = ACTIONS(1428), - [anon_sym_DOLLARalignof] = ACTIONS(1428), - [anon_sym_DOLLARextnameof] = ACTIONS(1428), - [anon_sym_DOLLARnameof] = ACTIONS(1428), - [anon_sym_DOLLARoffsetof] = ACTIONS(1428), - [anon_sym_DOLLARqnameof] = ACTIONS(1428), - [anon_sym_DOLLARvaconst] = ACTIONS(1428), - [anon_sym_DOLLARvaarg] = ACTIONS(1428), - [anon_sym_DOLLARvaref] = ACTIONS(1428), - [anon_sym_DOLLARvaexpr] = ACTIONS(1428), - [anon_sym_true] = ACTIONS(1428), - [anon_sym_false] = ACTIONS(1428), - [anon_sym_null] = ACTIONS(1428), - [anon_sym_DOLLARvacount] = ACTIONS(1428), - [anon_sym_DOLLARappend] = ACTIONS(1428), - [anon_sym_DOLLARconcat] = ACTIONS(1428), - [anon_sym_DOLLAReval] = ACTIONS(1428), - [anon_sym_DOLLARis_const] = ACTIONS(1428), - [anon_sym_DOLLARsizeof] = ACTIONS(1428), - [anon_sym_DOLLARstringify] = ACTIONS(1428), - [anon_sym_DOLLARand] = ACTIONS(1428), - [anon_sym_DOLLARdefined] = ACTIONS(1428), - [anon_sym_DOLLARembed] = ACTIONS(1428), - [anon_sym_DOLLARor] = ACTIONS(1428), - [anon_sym_DOLLARfeature] = ACTIONS(1428), - [anon_sym_DOLLARassignable] = ACTIONS(1428), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_PLUS_PLUS] = ACTIONS(1430), - [anon_sym_DASH_DASH] = ACTIONS(1430), - [anon_sym_typeid] = ACTIONS(1428), - [anon_sym_LBRACE_PIPE] = ACTIONS(1430), - [anon_sym_void] = ACTIONS(1428), - [anon_sym_bool] = ACTIONS(1428), - [anon_sym_char] = ACTIONS(1428), - [anon_sym_ichar] = ACTIONS(1428), - [anon_sym_short] = ACTIONS(1428), - [anon_sym_ushort] = ACTIONS(1428), - [anon_sym_uint] = ACTIONS(1428), - [anon_sym_long] = ACTIONS(1428), - [anon_sym_ulong] = ACTIONS(1428), - [anon_sym_int128] = ACTIONS(1428), - [anon_sym_uint128] = ACTIONS(1428), - [anon_sym_float] = ACTIONS(1428), - [anon_sym_double] = ACTIONS(1428), - [anon_sym_float16] = ACTIONS(1428), - [anon_sym_bfloat16] = ACTIONS(1428), - [anon_sym_float128] = ACTIONS(1428), - [anon_sym_iptr] = ACTIONS(1428), - [anon_sym_uptr] = ACTIONS(1428), - [anon_sym_isz] = ACTIONS(1428), - [anon_sym_usz] = ACTIONS(1428), - [anon_sym_anyfault] = ACTIONS(1428), - [anon_sym_any] = ACTIONS(1428), - [anon_sym_DOLLARtypeof] = ACTIONS(1428), - [anon_sym_DOLLARtypefrom] = ACTIONS(1428), - [anon_sym_DOLLARvatype] = ACTIONS(1428), - [anon_sym_DOLLARevaltype] = ACTIONS(1428), - [sym_real_literal] = ACTIONS(1430), - }, - [837] = { - [sym_line_comment] = STATE(837), - [sym_doc_comment] = STATE(837), - [sym_block_comment] = STATE(837), - [sym_ident] = ACTIONS(1652), - [sym_integer_literal] = ACTIONS(1654), - [anon_sym_SQUOTE] = ACTIONS(1654), - [anon_sym_DQUOTE] = ACTIONS(1654), - [anon_sym_BQUOTE] = ACTIONS(1654), - [sym_bytes_literal] = ACTIONS(1654), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1652), - [sym_at_ident] = ACTIONS(1654), - [sym_hash_ident] = ACTIONS(1654), - [sym_type_ident] = ACTIONS(1654), - [sym_ct_type_ident] = ACTIONS(1654), - [sym_const_ident] = ACTIONS(1652), - [sym_builtin] = ACTIONS(1654), - [anon_sym_LPAREN] = ACTIONS(1654), - [anon_sym_AMP] = ACTIONS(1652), - [anon_sym_static] = ACTIONS(1652), - [anon_sym_tlocal] = ACTIONS(1652), - [anon_sym_SEMI] = ACTIONS(1654), - [anon_sym_fn] = ACTIONS(1652), - [anon_sym_LBRACE] = ACTIONS(1652), - [anon_sym_const] = ACTIONS(1652), - [anon_sym_var] = ACTIONS(1652), - [anon_sym_return] = ACTIONS(1652), - [anon_sym_continue] = ACTIONS(1652), - [anon_sym_break] = ACTIONS(1652), - [anon_sym_defer] = ACTIONS(1652), - [anon_sym_assert] = ACTIONS(1652), - [anon_sym_nextcase] = ACTIONS(1652), - [anon_sym_switch] = ACTIONS(1652), - [anon_sym_AMP_AMP] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1652), - [anon_sym_for] = ACTIONS(1652), - [anon_sym_foreach] = ACTIONS(1652), - [anon_sym_foreach_r] = ACTIONS(1652), - [anon_sym_while] = ACTIONS(1652), - [anon_sym_do] = ACTIONS(1652), - [anon_sym_int] = ACTIONS(1652), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_asm] = ACTIONS(1652), - [anon_sym_DOLLARassert] = ACTIONS(1652), - [anon_sym_DOLLARerror] = ACTIONS(1652), - [anon_sym_DOLLARecho] = ACTIONS(1652), - [anon_sym_DOLLARif] = ACTIONS(1652), - [anon_sym_DOLLARswitch] = ACTIONS(1652), - [anon_sym_DOLLARfor] = ACTIONS(1652), - [anon_sym_DOLLARendfor] = ACTIONS(1652), - [anon_sym_DOLLARforeach] = ACTIONS(1652), - [anon_sym_DOLLARalignof] = ACTIONS(1652), - [anon_sym_DOLLARextnameof] = ACTIONS(1652), - [anon_sym_DOLLARnameof] = ACTIONS(1652), - [anon_sym_DOLLARoffsetof] = ACTIONS(1652), - [anon_sym_DOLLARqnameof] = ACTIONS(1652), - [anon_sym_DOLLARvaconst] = ACTIONS(1652), - [anon_sym_DOLLARvaarg] = ACTIONS(1652), - [anon_sym_DOLLARvaref] = ACTIONS(1652), - [anon_sym_DOLLARvaexpr] = ACTIONS(1652), - [anon_sym_true] = ACTIONS(1652), - [anon_sym_false] = ACTIONS(1652), - [anon_sym_null] = ACTIONS(1652), - [anon_sym_DOLLARvacount] = ACTIONS(1652), - [anon_sym_DOLLARappend] = ACTIONS(1652), - [anon_sym_DOLLARconcat] = ACTIONS(1652), - [anon_sym_DOLLAReval] = ACTIONS(1652), - [anon_sym_DOLLARis_const] = ACTIONS(1652), - [anon_sym_DOLLARsizeof] = ACTIONS(1652), - [anon_sym_DOLLARstringify] = ACTIONS(1652), - [anon_sym_DOLLARand] = ACTIONS(1652), - [anon_sym_DOLLARdefined] = ACTIONS(1652), - [anon_sym_DOLLARembed] = ACTIONS(1652), - [anon_sym_DOLLARor] = ACTIONS(1652), - [anon_sym_DOLLARfeature] = ACTIONS(1652), - [anon_sym_DOLLARassignable] = ACTIONS(1652), - [anon_sym_BANG] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1654), - [anon_sym_PLUS_PLUS] = ACTIONS(1654), - [anon_sym_DASH_DASH] = ACTIONS(1654), - [anon_sym_typeid] = ACTIONS(1652), - [anon_sym_LBRACE_PIPE] = ACTIONS(1654), - [anon_sym_void] = ACTIONS(1652), - [anon_sym_bool] = ACTIONS(1652), - [anon_sym_char] = ACTIONS(1652), - [anon_sym_ichar] = ACTIONS(1652), - [anon_sym_short] = ACTIONS(1652), - [anon_sym_ushort] = ACTIONS(1652), - [anon_sym_uint] = ACTIONS(1652), - [anon_sym_long] = ACTIONS(1652), - [anon_sym_ulong] = ACTIONS(1652), - [anon_sym_int128] = ACTIONS(1652), - [anon_sym_uint128] = ACTIONS(1652), - [anon_sym_float] = ACTIONS(1652), - [anon_sym_double] = ACTIONS(1652), - [anon_sym_float16] = ACTIONS(1652), - [anon_sym_bfloat16] = ACTIONS(1652), - [anon_sym_float128] = ACTIONS(1652), - [anon_sym_iptr] = ACTIONS(1652), - [anon_sym_uptr] = ACTIONS(1652), - [anon_sym_isz] = ACTIONS(1652), - [anon_sym_usz] = ACTIONS(1652), - [anon_sym_anyfault] = ACTIONS(1652), - [anon_sym_any] = ACTIONS(1652), - [anon_sym_DOLLARtypeof] = ACTIONS(1652), - [anon_sym_DOLLARtypefrom] = ACTIONS(1652), - [anon_sym_DOLLARvatype] = ACTIONS(1652), - [anon_sym_DOLLARevaltype] = ACTIONS(1652), - [sym_real_literal] = ACTIONS(1654), - }, - [838] = { - [sym_line_comment] = STATE(838), - [sym_doc_comment] = STATE(838), - [sym_block_comment] = STATE(838), - [sym_ident] = ACTIONS(1544), - [sym_integer_literal] = ACTIONS(1546), - [anon_sym_SQUOTE] = ACTIONS(1546), - [anon_sym_DQUOTE] = ACTIONS(1546), - [anon_sym_BQUOTE] = ACTIONS(1546), - [sym_bytes_literal] = ACTIONS(1546), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1544), - [sym_at_ident] = ACTIONS(1546), - [sym_hash_ident] = ACTIONS(1546), - [sym_type_ident] = ACTIONS(1546), - [sym_ct_type_ident] = ACTIONS(1546), - [sym_const_ident] = ACTIONS(1544), - [sym_builtin] = ACTIONS(1546), - [anon_sym_LPAREN] = ACTIONS(1546), - [anon_sym_AMP] = ACTIONS(1544), - [anon_sym_static] = ACTIONS(1544), - [anon_sym_tlocal] = ACTIONS(1544), - [anon_sym_SEMI] = ACTIONS(1546), - [anon_sym_fn] = ACTIONS(1544), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_const] = ACTIONS(1544), - [anon_sym_var] = ACTIONS(1544), - [anon_sym_return] = ACTIONS(1544), - [anon_sym_continue] = ACTIONS(1544), - [anon_sym_break] = ACTIONS(1544), - [anon_sym_defer] = ACTIONS(1544), - [anon_sym_assert] = ACTIONS(1544), - [anon_sym_nextcase] = ACTIONS(1544), - [anon_sym_switch] = ACTIONS(1544), - [anon_sym_AMP_AMP] = ACTIONS(1546), - [anon_sym_if] = ACTIONS(1544), - [anon_sym_for] = ACTIONS(1544), - [anon_sym_foreach] = ACTIONS(1544), - [anon_sym_foreach_r] = ACTIONS(1544), - [anon_sym_while] = ACTIONS(1544), - [anon_sym_do] = ACTIONS(1544), - [anon_sym_int] = ACTIONS(1544), - [anon_sym_PLUS] = ACTIONS(1544), - [anon_sym_DASH] = ACTIONS(1544), - [anon_sym_STAR] = ACTIONS(1546), - [anon_sym_asm] = ACTIONS(1544), - [anon_sym_DOLLARassert] = ACTIONS(1544), - [anon_sym_DOLLARerror] = ACTIONS(1544), - [anon_sym_DOLLARecho] = ACTIONS(1544), - [anon_sym_DOLLARif] = ACTIONS(1544), - [anon_sym_DOLLARswitch] = ACTIONS(1544), - [anon_sym_DOLLARfor] = ACTIONS(1544), - [anon_sym_DOLLARforeach] = ACTIONS(1544), - [anon_sym_DOLLARendforeach] = ACTIONS(1544), - [anon_sym_DOLLARalignof] = ACTIONS(1544), - [anon_sym_DOLLARextnameof] = ACTIONS(1544), - [anon_sym_DOLLARnameof] = ACTIONS(1544), - [anon_sym_DOLLARoffsetof] = ACTIONS(1544), - [anon_sym_DOLLARqnameof] = ACTIONS(1544), - [anon_sym_DOLLARvaconst] = ACTIONS(1544), - [anon_sym_DOLLARvaarg] = ACTIONS(1544), - [anon_sym_DOLLARvaref] = ACTIONS(1544), - [anon_sym_DOLLARvaexpr] = ACTIONS(1544), - [anon_sym_true] = ACTIONS(1544), - [anon_sym_false] = ACTIONS(1544), - [anon_sym_null] = ACTIONS(1544), - [anon_sym_DOLLARvacount] = ACTIONS(1544), - [anon_sym_DOLLARappend] = ACTIONS(1544), - [anon_sym_DOLLARconcat] = ACTIONS(1544), - [anon_sym_DOLLAReval] = ACTIONS(1544), - [anon_sym_DOLLARis_const] = ACTIONS(1544), - [anon_sym_DOLLARsizeof] = ACTIONS(1544), - [anon_sym_DOLLARstringify] = ACTIONS(1544), - [anon_sym_DOLLARand] = ACTIONS(1544), - [anon_sym_DOLLARdefined] = ACTIONS(1544), - [anon_sym_DOLLARembed] = ACTIONS(1544), - [anon_sym_DOLLARor] = ACTIONS(1544), - [anon_sym_DOLLARfeature] = ACTIONS(1544), - [anon_sym_DOLLARassignable] = ACTIONS(1544), - [anon_sym_BANG] = ACTIONS(1546), - [anon_sym_TILDE] = ACTIONS(1546), - [anon_sym_PLUS_PLUS] = ACTIONS(1546), - [anon_sym_DASH_DASH] = ACTIONS(1546), - [anon_sym_typeid] = ACTIONS(1544), - [anon_sym_LBRACE_PIPE] = ACTIONS(1546), - [anon_sym_void] = ACTIONS(1544), - [anon_sym_bool] = ACTIONS(1544), - [anon_sym_char] = ACTIONS(1544), - [anon_sym_ichar] = ACTIONS(1544), - [anon_sym_short] = ACTIONS(1544), - [anon_sym_ushort] = ACTIONS(1544), - [anon_sym_uint] = ACTIONS(1544), - [anon_sym_long] = ACTIONS(1544), - [anon_sym_ulong] = ACTIONS(1544), - [anon_sym_int128] = ACTIONS(1544), - [anon_sym_uint128] = ACTIONS(1544), - [anon_sym_float] = ACTIONS(1544), - [anon_sym_double] = ACTIONS(1544), - [anon_sym_float16] = ACTIONS(1544), - [anon_sym_bfloat16] = ACTIONS(1544), - [anon_sym_float128] = ACTIONS(1544), - [anon_sym_iptr] = ACTIONS(1544), - [anon_sym_uptr] = ACTIONS(1544), - [anon_sym_isz] = ACTIONS(1544), - [anon_sym_usz] = ACTIONS(1544), - [anon_sym_anyfault] = ACTIONS(1544), - [anon_sym_any] = ACTIONS(1544), - [anon_sym_DOLLARtypeof] = ACTIONS(1544), - [anon_sym_DOLLARtypefrom] = ACTIONS(1544), - [anon_sym_DOLLARvatype] = ACTIONS(1544), - [anon_sym_DOLLARevaltype] = ACTIONS(1544), - [sym_real_literal] = ACTIONS(1546), - }, - [839] = { - [sym_line_comment] = STATE(839), - [sym_doc_comment] = STATE(839), - [sym_block_comment] = STATE(839), - [sym_ident] = ACTIONS(1640), - [sym_integer_literal] = ACTIONS(1642), - [anon_sym_SQUOTE] = ACTIONS(1642), - [anon_sym_DQUOTE] = ACTIONS(1642), - [anon_sym_BQUOTE] = ACTIONS(1642), - [sym_bytes_literal] = ACTIONS(1642), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1640), - [sym_at_ident] = ACTIONS(1642), - [sym_hash_ident] = ACTIONS(1642), - [sym_type_ident] = ACTIONS(1642), - [sym_ct_type_ident] = ACTIONS(1642), - [sym_const_ident] = ACTIONS(1640), - [sym_builtin] = ACTIONS(1642), - [anon_sym_LPAREN] = ACTIONS(1642), - [anon_sym_AMP] = ACTIONS(1640), - [anon_sym_static] = ACTIONS(1640), - [anon_sym_tlocal] = ACTIONS(1640), - [anon_sym_SEMI] = ACTIONS(1642), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_LBRACE] = ACTIONS(1640), - [anon_sym_const] = ACTIONS(1640), - [anon_sym_var] = ACTIONS(1640), - [anon_sym_return] = ACTIONS(1640), - [anon_sym_continue] = ACTIONS(1640), - [anon_sym_break] = ACTIONS(1640), - [anon_sym_defer] = ACTIONS(1640), - [anon_sym_assert] = ACTIONS(1640), - [anon_sym_nextcase] = ACTIONS(1640), - [anon_sym_switch] = ACTIONS(1640), - [anon_sym_AMP_AMP] = ACTIONS(1642), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1640), - [anon_sym_foreach] = ACTIONS(1640), - [anon_sym_foreach_r] = ACTIONS(1640), - [anon_sym_while] = ACTIONS(1640), - [anon_sym_do] = ACTIONS(1640), - [anon_sym_int] = ACTIONS(1640), - [anon_sym_PLUS] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1640), - [anon_sym_STAR] = ACTIONS(1642), - [anon_sym_asm] = ACTIONS(1640), - [anon_sym_DOLLARassert] = ACTIONS(1640), - [anon_sym_DOLLARerror] = ACTIONS(1640), - [anon_sym_DOLLARecho] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1640), - [anon_sym_DOLLARswitch] = ACTIONS(1640), - [anon_sym_DOLLARfor] = ACTIONS(1640), - [anon_sym_DOLLARendfor] = ACTIONS(1640), - [anon_sym_DOLLARforeach] = ACTIONS(1640), - [anon_sym_DOLLARalignof] = ACTIONS(1640), - [anon_sym_DOLLARextnameof] = ACTIONS(1640), - [anon_sym_DOLLARnameof] = ACTIONS(1640), - [anon_sym_DOLLARoffsetof] = ACTIONS(1640), - [anon_sym_DOLLARqnameof] = ACTIONS(1640), - [anon_sym_DOLLARvaconst] = ACTIONS(1640), - [anon_sym_DOLLARvaarg] = ACTIONS(1640), - [anon_sym_DOLLARvaref] = ACTIONS(1640), - [anon_sym_DOLLARvaexpr] = ACTIONS(1640), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_null] = ACTIONS(1640), - [anon_sym_DOLLARvacount] = ACTIONS(1640), - [anon_sym_DOLLARappend] = ACTIONS(1640), - [anon_sym_DOLLARconcat] = ACTIONS(1640), - [anon_sym_DOLLAReval] = ACTIONS(1640), - [anon_sym_DOLLARis_const] = ACTIONS(1640), - [anon_sym_DOLLARsizeof] = ACTIONS(1640), - [anon_sym_DOLLARstringify] = ACTIONS(1640), - [anon_sym_DOLLARand] = ACTIONS(1640), - [anon_sym_DOLLARdefined] = ACTIONS(1640), - [anon_sym_DOLLARembed] = ACTIONS(1640), - [anon_sym_DOLLARor] = ACTIONS(1640), - [anon_sym_DOLLARfeature] = ACTIONS(1640), - [anon_sym_DOLLARassignable] = ACTIONS(1640), - [anon_sym_BANG] = ACTIONS(1642), - [anon_sym_TILDE] = ACTIONS(1642), - [anon_sym_PLUS_PLUS] = ACTIONS(1642), - [anon_sym_DASH_DASH] = ACTIONS(1642), - [anon_sym_typeid] = ACTIONS(1640), - [anon_sym_LBRACE_PIPE] = ACTIONS(1642), - [anon_sym_void] = ACTIONS(1640), - [anon_sym_bool] = ACTIONS(1640), - [anon_sym_char] = ACTIONS(1640), - [anon_sym_ichar] = ACTIONS(1640), - [anon_sym_short] = ACTIONS(1640), - [anon_sym_ushort] = ACTIONS(1640), - [anon_sym_uint] = ACTIONS(1640), - [anon_sym_long] = ACTIONS(1640), - [anon_sym_ulong] = ACTIONS(1640), - [anon_sym_int128] = ACTIONS(1640), - [anon_sym_uint128] = ACTIONS(1640), - [anon_sym_float] = ACTIONS(1640), - [anon_sym_double] = ACTIONS(1640), - [anon_sym_float16] = ACTIONS(1640), - [anon_sym_bfloat16] = ACTIONS(1640), - [anon_sym_float128] = ACTIONS(1640), - [anon_sym_iptr] = ACTIONS(1640), - [anon_sym_uptr] = ACTIONS(1640), - [anon_sym_isz] = ACTIONS(1640), - [anon_sym_usz] = ACTIONS(1640), - [anon_sym_anyfault] = ACTIONS(1640), - [anon_sym_any] = ACTIONS(1640), - [anon_sym_DOLLARtypeof] = ACTIONS(1640), - [anon_sym_DOLLARtypefrom] = ACTIONS(1640), - [anon_sym_DOLLARvatype] = ACTIONS(1640), - [anon_sym_DOLLARevaltype] = ACTIONS(1640), - [sym_real_literal] = ACTIONS(1642), - }, - [840] = { - [sym_line_comment] = STATE(840), - [sym_doc_comment] = STATE(840), - [sym_block_comment] = STATE(840), - [sym_ident] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(1634), - [anon_sym_DQUOTE] = ACTIONS(1634), - [anon_sym_BQUOTE] = ACTIONS(1634), - [sym_bytes_literal] = ACTIONS(1634), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1632), - [sym_at_ident] = ACTIONS(1634), - [sym_hash_ident] = ACTIONS(1634), - [sym_type_ident] = ACTIONS(1634), - [sym_ct_type_ident] = ACTIONS(1634), - [sym_const_ident] = ACTIONS(1632), - [sym_builtin] = ACTIONS(1634), - [anon_sym_LPAREN] = ACTIONS(1634), - [anon_sym_AMP] = ACTIONS(1632), - [anon_sym_static] = ACTIONS(1632), - [anon_sym_tlocal] = ACTIONS(1632), - [anon_sym_SEMI] = ACTIONS(1634), - [anon_sym_fn] = ACTIONS(1632), - [anon_sym_LBRACE] = ACTIONS(1632), - [anon_sym_const] = ACTIONS(1632), - [anon_sym_var] = ACTIONS(1632), - [anon_sym_return] = ACTIONS(1632), - [anon_sym_continue] = ACTIONS(1632), - [anon_sym_break] = ACTIONS(1632), - [anon_sym_defer] = ACTIONS(1632), - [anon_sym_assert] = ACTIONS(1632), - [anon_sym_nextcase] = ACTIONS(1632), - [anon_sym_switch] = ACTIONS(1632), - [anon_sym_AMP_AMP] = ACTIONS(1634), - [anon_sym_if] = ACTIONS(1632), - [anon_sym_for] = ACTIONS(1632), - [anon_sym_foreach] = ACTIONS(1632), - [anon_sym_foreach_r] = ACTIONS(1632), - [anon_sym_while] = ACTIONS(1632), - [anon_sym_do] = ACTIONS(1632), - [anon_sym_int] = ACTIONS(1632), - [anon_sym_PLUS] = ACTIONS(1632), - [anon_sym_DASH] = ACTIONS(1632), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_asm] = ACTIONS(1632), - [anon_sym_DOLLARassert] = ACTIONS(1632), - [anon_sym_DOLLARerror] = ACTIONS(1632), - [anon_sym_DOLLARecho] = ACTIONS(1632), - [anon_sym_DOLLARif] = ACTIONS(1632), - [anon_sym_DOLLARswitch] = ACTIONS(1632), - [anon_sym_DOLLARfor] = ACTIONS(1632), - [anon_sym_DOLLARendfor] = ACTIONS(1632), - [anon_sym_DOLLARforeach] = ACTIONS(1632), - [anon_sym_DOLLARalignof] = ACTIONS(1632), - [anon_sym_DOLLARextnameof] = ACTIONS(1632), - [anon_sym_DOLLARnameof] = ACTIONS(1632), - [anon_sym_DOLLARoffsetof] = ACTIONS(1632), - [anon_sym_DOLLARqnameof] = ACTIONS(1632), - [anon_sym_DOLLARvaconst] = ACTIONS(1632), - [anon_sym_DOLLARvaarg] = ACTIONS(1632), - [anon_sym_DOLLARvaref] = ACTIONS(1632), - [anon_sym_DOLLARvaexpr] = ACTIONS(1632), - [anon_sym_true] = ACTIONS(1632), - [anon_sym_false] = ACTIONS(1632), - [anon_sym_null] = ACTIONS(1632), - [anon_sym_DOLLARvacount] = ACTIONS(1632), - [anon_sym_DOLLARappend] = ACTIONS(1632), - [anon_sym_DOLLARconcat] = ACTIONS(1632), - [anon_sym_DOLLAReval] = ACTIONS(1632), - [anon_sym_DOLLARis_const] = ACTIONS(1632), - [anon_sym_DOLLARsizeof] = ACTIONS(1632), - [anon_sym_DOLLARstringify] = ACTIONS(1632), - [anon_sym_DOLLARand] = ACTIONS(1632), - [anon_sym_DOLLARdefined] = ACTIONS(1632), - [anon_sym_DOLLARembed] = ACTIONS(1632), - [anon_sym_DOLLARor] = ACTIONS(1632), - [anon_sym_DOLLARfeature] = ACTIONS(1632), - [anon_sym_DOLLARassignable] = ACTIONS(1632), - [anon_sym_BANG] = ACTIONS(1634), - [anon_sym_TILDE] = ACTIONS(1634), - [anon_sym_PLUS_PLUS] = ACTIONS(1634), - [anon_sym_DASH_DASH] = ACTIONS(1634), - [anon_sym_typeid] = ACTIONS(1632), - [anon_sym_LBRACE_PIPE] = ACTIONS(1634), - [anon_sym_void] = ACTIONS(1632), - [anon_sym_bool] = ACTIONS(1632), - [anon_sym_char] = ACTIONS(1632), - [anon_sym_ichar] = ACTIONS(1632), - [anon_sym_short] = ACTIONS(1632), - [anon_sym_ushort] = ACTIONS(1632), - [anon_sym_uint] = ACTIONS(1632), - [anon_sym_long] = ACTIONS(1632), - [anon_sym_ulong] = ACTIONS(1632), - [anon_sym_int128] = ACTIONS(1632), - [anon_sym_uint128] = ACTIONS(1632), - [anon_sym_float] = ACTIONS(1632), - [anon_sym_double] = ACTIONS(1632), - [anon_sym_float16] = ACTIONS(1632), - [anon_sym_bfloat16] = ACTIONS(1632), - [anon_sym_float128] = ACTIONS(1632), - [anon_sym_iptr] = ACTIONS(1632), - [anon_sym_uptr] = ACTIONS(1632), - [anon_sym_isz] = ACTIONS(1632), - [anon_sym_usz] = ACTIONS(1632), - [anon_sym_anyfault] = ACTIONS(1632), - [anon_sym_any] = ACTIONS(1632), - [anon_sym_DOLLARtypeof] = ACTIONS(1632), - [anon_sym_DOLLARtypefrom] = ACTIONS(1632), - [anon_sym_DOLLARvatype] = ACTIONS(1632), - [anon_sym_DOLLARevaltype] = ACTIONS(1632), - [sym_real_literal] = ACTIONS(1634), - }, - [841] = { - [sym_line_comment] = STATE(841), - [sym_doc_comment] = STATE(841), - [sym_block_comment] = STATE(841), - [sym_ident] = ACTIONS(1624), - [sym_integer_literal] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1626), - [anon_sym_DQUOTE] = ACTIONS(1626), - [anon_sym_BQUOTE] = ACTIONS(1626), - [sym_bytes_literal] = ACTIONS(1626), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1624), - [sym_at_ident] = ACTIONS(1626), - [sym_hash_ident] = ACTIONS(1626), - [sym_type_ident] = ACTIONS(1626), - [sym_ct_type_ident] = ACTIONS(1626), - [sym_const_ident] = ACTIONS(1624), - [sym_builtin] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(1626), - [anon_sym_AMP] = ACTIONS(1624), - [anon_sym_static] = ACTIONS(1624), - [anon_sym_tlocal] = ACTIONS(1624), - [anon_sym_SEMI] = ACTIONS(1626), - [anon_sym_fn] = ACTIONS(1624), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_const] = ACTIONS(1624), - [anon_sym_var] = ACTIONS(1624), - [anon_sym_return] = ACTIONS(1624), - [anon_sym_continue] = ACTIONS(1624), - [anon_sym_break] = ACTIONS(1624), - [anon_sym_defer] = ACTIONS(1624), - [anon_sym_assert] = ACTIONS(1624), - [anon_sym_nextcase] = ACTIONS(1624), - [anon_sym_switch] = ACTIONS(1624), - [anon_sym_AMP_AMP] = ACTIONS(1626), - [anon_sym_if] = ACTIONS(1624), - [anon_sym_for] = ACTIONS(1624), - [anon_sym_foreach] = ACTIONS(1624), - [anon_sym_foreach_r] = ACTIONS(1624), - [anon_sym_while] = ACTIONS(1624), - [anon_sym_do] = ACTIONS(1624), - [anon_sym_int] = ACTIONS(1624), - [anon_sym_PLUS] = ACTIONS(1624), - [anon_sym_DASH] = ACTIONS(1624), - [anon_sym_STAR] = ACTIONS(1626), - [anon_sym_asm] = ACTIONS(1624), - [anon_sym_DOLLARassert] = ACTIONS(1624), - [anon_sym_DOLLARerror] = ACTIONS(1624), - [anon_sym_DOLLARecho] = ACTIONS(1624), - [anon_sym_DOLLARif] = ACTIONS(1624), - [anon_sym_DOLLARswitch] = ACTIONS(1624), - [anon_sym_DOLLARfor] = ACTIONS(1624), - [anon_sym_DOLLARendfor] = ACTIONS(1624), - [anon_sym_DOLLARforeach] = ACTIONS(1624), - [anon_sym_DOLLARalignof] = ACTIONS(1624), - [anon_sym_DOLLARextnameof] = ACTIONS(1624), - [anon_sym_DOLLARnameof] = ACTIONS(1624), - [anon_sym_DOLLARoffsetof] = ACTIONS(1624), - [anon_sym_DOLLARqnameof] = ACTIONS(1624), - [anon_sym_DOLLARvaconst] = ACTIONS(1624), - [anon_sym_DOLLARvaarg] = ACTIONS(1624), - [anon_sym_DOLLARvaref] = ACTIONS(1624), - [anon_sym_DOLLARvaexpr] = ACTIONS(1624), - [anon_sym_true] = ACTIONS(1624), - [anon_sym_false] = ACTIONS(1624), - [anon_sym_null] = ACTIONS(1624), - [anon_sym_DOLLARvacount] = ACTIONS(1624), - [anon_sym_DOLLARappend] = ACTIONS(1624), - [anon_sym_DOLLARconcat] = ACTIONS(1624), - [anon_sym_DOLLAReval] = ACTIONS(1624), - [anon_sym_DOLLARis_const] = ACTIONS(1624), - [anon_sym_DOLLARsizeof] = ACTIONS(1624), - [anon_sym_DOLLARstringify] = ACTIONS(1624), - [anon_sym_DOLLARand] = ACTIONS(1624), - [anon_sym_DOLLARdefined] = ACTIONS(1624), - [anon_sym_DOLLARembed] = ACTIONS(1624), - [anon_sym_DOLLARor] = ACTIONS(1624), - [anon_sym_DOLLARfeature] = ACTIONS(1624), - [anon_sym_DOLLARassignable] = ACTIONS(1624), - [anon_sym_BANG] = ACTIONS(1626), - [anon_sym_TILDE] = ACTIONS(1626), - [anon_sym_PLUS_PLUS] = ACTIONS(1626), - [anon_sym_DASH_DASH] = ACTIONS(1626), - [anon_sym_typeid] = ACTIONS(1624), - [anon_sym_LBRACE_PIPE] = ACTIONS(1626), - [anon_sym_void] = ACTIONS(1624), - [anon_sym_bool] = ACTIONS(1624), - [anon_sym_char] = ACTIONS(1624), - [anon_sym_ichar] = ACTIONS(1624), - [anon_sym_short] = ACTIONS(1624), - [anon_sym_ushort] = ACTIONS(1624), - [anon_sym_uint] = ACTIONS(1624), - [anon_sym_long] = ACTIONS(1624), - [anon_sym_ulong] = ACTIONS(1624), - [anon_sym_int128] = ACTIONS(1624), - [anon_sym_uint128] = ACTIONS(1624), - [anon_sym_float] = ACTIONS(1624), - [anon_sym_double] = ACTIONS(1624), - [anon_sym_float16] = ACTIONS(1624), - [anon_sym_bfloat16] = ACTIONS(1624), - [anon_sym_float128] = ACTIONS(1624), - [anon_sym_iptr] = ACTIONS(1624), - [anon_sym_uptr] = ACTIONS(1624), - [anon_sym_isz] = ACTIONS(1624), - [anon_sym_usz] = ACTIONS(1624), - [anon_sym_anyfault] = ACTIONS(1624), - [anon_sym_any] = ACTIONS(1624), - [anon_sym_DOLLARtypeof] = ACTIONS(1624), - [anon_sym_DOLLARtypefrom] = ACTIONS(1624), - [anon_sym_DOLLARvatype] = ACTIONS(1624), - [anon_sym_DOLLARevaltype] = ACTIONS(1624), - [sym_real_literal] = ACTIONS(1626), - }, - [842] = { - [sym_line_comment] = STATE(842), - [sym_doc_comment] = STATE(842), - [sym_block_comment] = STATE(842), - [sym_ident] = ACTIONS(1418), - [sym_integer_literal] = ACTIONS(1420), - [anon_sym_SQUOTE] = ACTIONS(1420), - [anon_sym_DQUOTE] = ACTIONS(1420), - [anon_sym_BQUOTE] = ACTIONS(1420), - [sym_bytes_literal] = ACTIONS(1420), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1418), - [sym_at_ident] = ACTIONS(1420), - [sym_hash_ident] = ACTIONS(1420), - [sym_type_ident] = ACTIONS(1420), - [sym_ct_type_ident] = ACTIONS(1420), - [sym_const_ident] = ACTIONS(1418), - [sym_builtin] = ACTIONS(1420), - [anon_sym_LPAREN] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_static] = ACTIONS(1418), - [anon_sym_tlocal] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym_fn] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_const] = ACTIONS(1418), - [anon_sym_var] = ACTIONS(1418), - [anon_sym_return] = ACTIONS(1418), - [anon_sym_continue] = ACTIONS(1418), - [anon_sym_break] = ACTIONS(1418), - [anon_sym_defer] = ACTIONS(1418), - [anon_sym_assert] = ACTIONS(1418), - [anon_sym_nextcase] = ACTIONS(1418), - [anon_sym_switch] = ACTIONS(1418), - [anon_sym_AMP_AMP] = ACTIONS(1420), - [anon_sym_if] = ACTIONS(1418), - [anon_sym_for] = ACTIONS(1418), - [anon_sym_foreach] = ACTIONS(1418), - [anon_sym_foreach_r] = ACTIONS(1418), - [anon_sym_while] = ACTIONS(1418), - [anon_sym_do] = ACTIONS(1418), - [anon_sym_int] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_asm] = ACTIONS(1418), - [anon_sym_DOLLARassert] = ACTIONS(1418), - [anon_sym_DOLLARerror] = ACTIONS(1418), - [anon_sym_DOLLARecho] = ACTIONS(1418), - [anon_sym_DOLLARif] = ACTIONS(1418), - [anon_sym_DOLLARendif] = ACTIONS(1418), - [anon_sym_DOLLARswitch] = ACTIONS(1418), - [anon_sym_DOLLARfor] = ACTIONS(1418), - [anon_sym_DOLLARforeach] = ACTIONS(1418), - [anon_sym_DOLLARalignof] = ACTIONS(1418), - [anon_sym_DOLLARextnameof] = ACTIONS(1418), - [anon_sym_DOLLARnameof] = ACTIONS(1418), - [anon_sym_DOLLARoffsetof] = ACTIONS(1418), - [anon_sym_DOLLARqnameof] = ACTIONS(1418), - [anon_sym_DOLLARvaconst] = ACTIONS(1418), - [anon_sym_DOLLARvaarg] = ACTIONS(1418), - [anon_sym_DOLLARvaref] = ACTIONS(1418), - [anon_sym_DOLLARvaexpr] = ACTIONS(1418), - [anon_sym_true] = ACTIONS(1418), - [anon_sym_false] = ACTIONS(1418), - [anon_sym_null] = ACTIONS(1418), - [anon_sym_DOLLARvacount] = ACTIONS(1418), - [anon_sym_DOLLARappend] = ACTIONS(1418), - [anon_sym_DOLLARconcat] = ACTIONS(1418), - [anon_sym_DOLLAReval] = ACTIONS(1418), - [anon_sym_DOLLARis_const] = ACTIONS(1418), - [anon_sym_DOLLARsizeof] = ACTIONS(1418), - [anon_sym_DOLLARstringify] = ACTIONS(1418), - [anon_sym_DOLLARand] = ACTIONS(1418), - [anon_sym_DOLLARdefined] = ACTIONS(1418), - [anon_sym_DOLLARembed] = ACTIONS(1418), - [anon_sym_DOLLARor] = ACTIONS(1418), - [anon_sym_DOLLARfeature] = ACTIONS(1418), - [anon_sym_DOLLARassignable] = ACTIONS(1418), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_TILDE] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_typeid] = ACTIONS(1418), - [anon_sym_LBRACE_PIPE] = ACTIONS(1420), - [anon_sym_void] = ACTIONS(1418), - [anon_sym_bool] = ACTIONS(1418), - [anon_sym_char] = ACTIONS(1418), - [anon_sym_ichar] = ACTIONS(1418), - [anon_sym_short] = ACTIONS(1418), - [anon_sym_ushort] = ACTIONS(1418), - [anon_sym_uint] = ACTIONS(1418), - [anon_sym_long] = ACTIONS(1418), - [anon_sym_ulong] = ACTIONS(1418), - [anon_sym_int128] = ACTIONS(1418), - [anon_sym_uint128] = ACTIONS(1418), - [anon_sym_float] = ACTIONS(1418), - [anon_sym_double] = ACTIONS(1418), - [anon_sym_float16] = ACTIONS(1418), - [anon_sym_bfloat16] = ACTIONS(1418), - [anon_sym_float128] = ACTIONS(1418), - [anon_sym_iptr] = ACTIONS(1418), - [anon_sym_uptr] = ACTIONS(1418), - [anon_sym_isz] = ACTIONS(1418), - [anon_sym_usz] = ACTIONS(1418), - [anon_sym_anyfault] = ACTIONS(1418), - [anon_sym_any] = ACTIONS(1418), - [anon_sym_DOLLARtypeof] = ACTIONS(1418), - [anon_sym_DOLLARtypefrom] = ACTIONS(1418), - [anon_sym_DOLLARvatype] = ACTIONS(1418), - [anon_sym_DOLLARevaltype] = ACTIONS(1418), - [sym_real_literal] = ACTIONS(1420), - }, - [843] = { - [sym_line_comment] = STATE(843), - [sym_doc_comment] = STATE(843), - [sym_block_comment] = STATE(843), - [sym_ident] = ACTIONS(1702), - [sym_integer_literal] = ACTIONS(1704), - [anon_sym_SQUOTE] = ACTIONS(1704), - [anon_sym_DQUOTE] = ACTIONS(1704), - [anon_sym_BQUOTE] = ACTIONS(1704), - [sym_bytes_literal] = ACTIONS(1704), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1702), - [sym_at_ident] = ACTIONS(1704), - [sym_hash_ident] = ACTIONS(1704), - [sym_type_ident] = ACTIONS(1704), - [sym_ct_type_ident] = ACTIONS(1704), - [sym_const_ident] = ACTIONS(1702), - [sym_builtin] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(1704), - [anon_sym_AMP] = ACTIONS(1702), - [anon_sym_static] = ACTIONS(1702), - [anon_sym_tlocal] = ACTIONS(1702), - [anon_sym_SEMI] = ACTIONS(1704), - [anon_sym_fn] = ACTIONS(1702), - [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_const] = ACTIONS(1702), - [anon_sym_var] = ACTIONS(1702), - [anon_sym_return] = ACTIONS(1702), - [anon_sym_continue] = ACTIONS(1702), - [anon_sym_break] = ACTIONS(1702), - [anon_sym_defer] = ACTIONS(1702), - [anon_sym_assert] = ACTIONS(1702), - [anon_sym_nextcase] = ACTIONS(1702), - [anon_sym_switch] = ACTIONS(1702), - [anon_sym_AMP_AMP] = ACTIONS(1704), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_for] = ACTIONS(1702), - [anon_sym_foreach] = ACTIONS(1702), - [anon_sym_foreach_r] = ACTIONS(1702), - [anon_sym_while] = ACTIONS(1702), - [anon_sym_do] = ACTIONS(1702), - [anon_sym_int] = ACTIONS(1702), - [anon_sym_PLUS] = ACTIONS(1702), - [anon_sym_DASH] = ACTIONS(1702), - [anon_sym_STAR] = ACTIONS(1704), - [anon_sym_asm] = ACTIONS(1702), - [anon_sym_DOLLARassert] = ACTIONS(1702), - [anon_sym_DOLLARerror] = ACTIONS(1702), - [anon_sym_DOLLARecho] = ACTIONS(1702), - [anon_sym_DOLLARif] = ACTIONS(1702), - [anon_sym_DOLLARswitch] = ACTIONS(1702), - [anon_sym_DOLLARfor] = ACTIONS(1702), - [anon_sym_DOLLARendfor] = ACTIONS(1702), - [anon_sym_DOLLARforeach] = ACTIONS(1702), - [anon_sym_DOLLARalignof] = ACTIONS(1702), - [anon_sym_DOLLARextnameof] = ACTIONS(1702), - [anon_sym_DOLLARnameof] = ACTIONS(1702), - [anon_sym_DOLLARoffsetof] = ACTIONS(1702), - [anon_sym_DOLLARqnameof] = ACTIONS(1702), - [anon_sym_DOLLARvaconst] = ACTIONS(1702), - [anon_sym_DOLLARvaarg] = ACTIONS(1702), - [anon_sym_DOLLARvaref] = ACTIONS(1702), - [anon_sym_DOLLARvaexpr] = ACTIONS(1702), - [anon_sym_true] = ACTIONS(1702), - [anon_sym_false] = ACTIONS(1702), - [anon_sym_null] = ACTIONS(1702), - [anon_sym_DOLLARvacount] = ACTIONS(1702), - [anon_sym_DOLLARappend] = ACTIONS(1702), - [anon_sym_DOLLARconcat] = ACTIONS(1702), - [anon_sym_DOLLAReval] = ACTIONS(1702), - [anon_sym_DOLLARis_const] = ACTIONS(1702), - [anon_sym_DOLLARsizeof] = ACTIONS(1702), - [anon_sym_DOLLARstringify] = ACTIONS(1702), - [anon_sym_DOLLARand] = ACTIONS(1702), - [anon_sym_DOLLARdefined] = ACTIONS(1702), - [anon_sym_DOLLARembed] = ACTIONS(1702), - [anon_sym_DOLLARor] = ACTIONS(1702), - [anon_sym_DOLLARfeature] = ACTIONS(1702), - [anon_sym_DOLLARassignable] = ACTIONS(1702), - [anon_sym_BANG] = ACTIONS(1704), - [anon_sym_TILDE] = ACTIONS(1704), - [anon_sym_PLUS_PLUS] = ACTIONS(1704), - [anon_sym_DASH_DASH] = ACTIONS(1704), - [anon_sym_typeid] = ACTIONS(1702), - [anon_sym_LBRACE_PIPE] = ACTIONS(1704), - [anon_sym_void] = ACTIONS(1702), - [anon_sym_bool] = ACTIONS(1702), - [anon_sym_char] = ACTIONS(1702), - [anon_sym_ichar] = ACTIONS(1702), - [anon_sym_short] = ACTIONS(1702), - [anon_sym_ushort] = ACTIONS(1702), - [anon_sym_uint] = ACTIONS(1702), - [anon_sym_long] = ACTIONS(1702), - [anon_sym_ulong] = ACTIONS(1702), - [anon_sym_int128] = ACTIONS(1702), - [anon_sym_uint128] = ACTIONS(1702), - [anon_sym_float] = ACTIONS(1702), - [anon_sym_double] = ACTIONS(1702), - [anon_sym_float16] = ACTIONS(1702), - [anon_sym_bfloat16] = ACTIONS(1702), - [anon_sym_float128] = ACTIONS(1702), - [anon_sym_iptr] = ACTIONS(1702), - [anon_sym_uptr] = ACTIONS(1702), - [anon_sym_isz] = ACTIONS(1702), - [anon_sym_usz] = ACTIONS(1702), - [anon_sym_anyfault] = ACTIONS(1702), - [anon_sym_any] = ACTIONS(1702), - [anon_sym_DOLLARtypeof] = ACTIONS(1702), - [anon_sym_DOLLARtypefrom] = ACTIONS(1702), - [anon_sym_DOLLARvatype] = ACTIONS(1702), - [anon_sym_DOLLARevaltype] = ACTIONS(1702), - [sym_real_literal] = ACTIONS(1704), - }, - [844] = { - [sym_line_comment] = STATE(844), - [sym_doc_comment] = STATE(844), - [sym_block_comment] = STATE(844), - [sym_ident] = ACTIONS(1612), - [sym_integer_literal] = ACTIONS(1614), - [anon_sym_SQUOTE] = ACTIONS(1614), - [anon_sym_DQUOTE] = ACTIONS(1614), - [anon_sym_BQUOTE] = ACTIONS(1614), - [sym_bytes_literal] = ACTIONS(1614), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1612), - [sym_at_ident] = ACTIONS(1614), - [sym_hash_ident] = ACTIONS(1614), - [sym_type_ident] = ACTIONS(1614), - [sym_ct_type_ident] = ACTIONS(1614), - [sym_const_ident] = ACTIONS(1612), - [sym_builtin] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_static] = ACTIONS(1612), - [anon_sym_tlocal] = ACTIONS(1612), - [anon_sym_SEMI] = ACTIONS(1614), - [anon_sym_fn] = ACTIONS(1612), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_const] = ACTIONS(1612), - [anon_sym_var] = ACTIONS(1612), - [anon_sym_return] = ACTIONS(1612), - [anon_sym_continue] = ACTIONS(1612), - [anon_sym_break] = ACTIONS(1612), - [anon_sym_defer] = ACTIONS(1612), - [anon_sym_assert] = ACTIONS(1612), - [anon_sym_nextcase] = ACTIONS(1612), - [anon_sym_switch] = ACTIONS(1612), - [anon_sym_AMP_AMP] = ACTIONS(1614), - [anon_sym_if] = ACTIONS(1612), - [anon_sym_for] = ACTIONS(1612), - [anon_sym_foreach] = ACTIONS(1612), - [anon_sym_foreach_r] = ACTIONS(1612), - [anon_sym_while] = ACTIONS(1612), - [anon_sym_do] = ACTIONS(1612), - [anon_sym_int] = ACTIONS(1612), - [anon_sym_PLUS] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1612), - [anon_sym_STAR] = ACTIONS(1614), - [anon_sym_asm] = ACTIONS(1612), - [anon_sym_DOLLARassert] = ACTIONS(1612), - [anon_sym_DOLLARerror] = ACTIONS(1612), - [anon_sym_DOLLARecho] = ACTIONS(1612), - [anon_sym_DOLLARif] = ACTIONS(1612), - [anon_sym_DOLLARswitch] = ACTIONS(1612), - [anon_sym_DOLLARfor] = ACTIONS(1612), - [anon_sym_DOLLARendfor] = ACTIONS(1612), - [anon_sym_DOLLARforeach] = ACTIONS(1612), - [anon_sym_DOLLARalignof] = ACTIONS(1612), - [anon_sym_DOLLARextnameof] = ACTIONS(1612), - [anon_sym_DOLLARnameof] = ACTIONS(1612), - [anon_sym_DOLLARoffsetof] = ACTIONS(1612), - [anon_sym_DOLLARqnameof] = ACTIONS(1612), - [anon_sym_DOLLARvaconst] = ACTIONS(1612), - [anon_sym_DOLLARvaarg] = ACTIONS(1612), - [anon_sym_DOLLARvaref] = ACTIONS(1612), - [anon_sym_DOLLARvaexpr] = ACTIONS(1612), - [anon_sym_true] = ACTIONS(1612), - [anon_sym_false] = ACTIONS(1612), - [anon_sym_null] = ACTIONS(1612), - [anon_sym_DOLLARvacount] = ACTIONS(1612), - [anon_sym_DOLLARappend] = ACTIONS(1612), - [anon_sym_DOLLARconcat] = ACTIONS(1612), - [anon_sym_DOLLAReval] = ACTIONS(1612), - [anon_sym_DOLLARis_const] = ACTIONS(1612), - [anon_sym_DOLLARsizeof] = ACTIONS(1612), - [anon_sym_DOLLARstringify] = ACTIONS(1612), - [anon_sym_DOLLARand] = ACTIONS(1612), - [anon_sym_DOLLARdefined] = ACTIONS(1612), - [anon_sym_DOLLARembed] = ACTIONS(1612), - [anon_sym_DOLLARor] = ACTIONS(1612), - [anon_sym_DOLLARfeature] = ACTIONS(1612), - [anon_sym_DOLLARassignable] = ACTIONS(1612), - [anon_sym_BANG] = ACTIONS(1614), - [anon_sym_TILDE] = ACTIONS(1614), - [anon_sym_PLUS_PLUS] = ACTIONS(1614), - [anon_sym_DASH_DASH] = ACTIONS(1614), - [anon_sym_typeid] = ACTIONS(1612), - [anon_sym_LBRACE_PIPE] = ACTIONS(1614), - [anon_sym_void] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_ichar] = ACTIONS(1612), - [anon_sym_short] = ACTIONS(1612), - [anon_sym_ushort] = ACTIONS(1612), - [anon_sym_uint] = ACTIONS(1612), - [anon_sym_long] = ACTIONS(1612), - [anon_sym_ulong] = ACTIONS(1612), - [anon_sym_int128] = ACTIONS(1612), - [anon_sym_uint128] = ACTIONS(1612), - [anon_sym_float] = ACTIONS(1612), - [anon_sym_double] = ACTIONS(1612), - [anon_sym_float16] = ACTIONS(1612), - [anon_sym_bfloat16] = ACTIONS(1612), - [anon_sym_float128] = ACTIONS(1612), - [anon_sym_iptr] = ACTIONS(1612), - [anon_sym_uptr] = ACTIONS(1612), - [anon_sym_isz] = ACTIONS(1612), - [anon_sym_usz] = ACTIONS(1612), - [anon_sym_anyfault] = ACTIONS(1612), - [anon_sym_any] = ACTIONS(1612), - [anon_sym_DOLLARtypeof] = ACTIONS(1612), - [anon_sym_DOLLARtypefrom] = ACTIONS(1612), - [anon_sym_DOLLARvatype] = ACTIONS(1612), - [anon_sym_DOLLARevaltype] = ACTIONS(1612), - [sym_real_literal] = ACTIONS(1614), - }, - [845] = { - [sym_line_comment] = STATE(845), - [sym_doc_comment] = STATE(845), - [sym_block_comment] = STATE(845), - [sym_ident] = ACTIONS(1706), - [sym_integer_literal] = ACTIONS(1708), - [anon_sym_SQUOTE] = ACTIONS(1708), - [anon_sym_DQUOTE] = ACTIONS(1708), - [anon_sym_BQUOTE] = ACTIONS(1708), - [sym_bytes_literal] = ACTIONS(1708), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1706), - [sym_at_ident] = ACTIONS(1708), - [sym_hash_ident] = ACTIONS(1708), - [sym_type_ident] = ACTIONS(1708), - [sym_ct_type_ident] = ACTIONS(1708), - [sym_const_ident] = ACTIONS(1706), - [sym_builtin] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1708), - [anon_sym_AMP] = ACTIONS(1706), - [anon_sym_static] = ACTIONS(1706), - [anon_sym_tlocal] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1708), - [anon_sym_fn] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_const] = ACTIONS(1706), - [anon_sym_var] = ACTIONS(1706), - [anon_sym_return] = ACTIONS(1706), - [anon_sym_continue] = ACTIONS(1706), - [anon_sym_break] = ACTIONS(1706), - [anon_sym_defer] = ACTIONS(1706), - [anon_sym_assert] = ACTIONS(1706), - [anon_sym_nextcase] = ACTIONS(1706), - [anon_sym_switch] = ACTIONS(1706), - [anon_sym_AMP_AMP] = ACTIONS(1708), - [anon_sym_if] = ACTIONS(1706), - [anon_sym_for] = ACTIONS(1706), - [anon_sym_foreach] = ACTIONS(1706), - [anon_sym_foreach_r] = ACTIONS(1706), - [anon_sym_while] = ACTIONS(1706), - [anon_sym_do] = ACTIONS(1706), - [anon_sym_int] = ACTIONS(1706), - [anon_sym_PLUS] = ACTIONS(1706), - [anon_sym_DASH] = ACTIONS(1706), - [anon_sym_STAR] = ACTIONS(1708), - [anon_sym_asm] = ACTIONS(1706), - [anon_sym_DOLLARassert] = ACTIONS(1706), - [anon_sym_DOLLARerror] = ACTIONS(1706), - [anon_sym_DOLLARecho] = ACTIONS(1706), - [anon_sym_DOLLARif] = ACTIONS(1706), - [anon_sym_DOLLARswitch] = ACTIONS(1706), - [anon_sym_DOLLARfor] = ACTIONS(1706), - [anon_sym_DOLLARendfor] = ACTIONS(1706), - [anon_sym_DOLLARforeach] = ACTIONS(1706), - [anon_sym_DOLLARalignof] = ACTIONS(1706), - [anon_sym_DOLLARextnameof] = ACTIONS(1706), - [anon_sym_DOLLARnameof] = ACTIONS(1706), - [anon_sym_DOLLARoffsetof] = ACTIONS(1706), - [anon_sym_DOLLARqnameof] = ACTIONS(1706), - [anon_sym_DOLLARvaconst] = ACTIONS(1706), - [anon_sym_DOLLARvaarg] = ACTIONS(1706), - [anon_sym_DOLLARvaref] = ACTIONS(1706), - [anon_sym_DOLLARvaexpr] = ACTIONS(1706), - [anon_sym_true] = ACTIONS(1706), - [anon_sym_false] = ACTIONS(1706), - [anon_sym_null] = ACTIONS(1706), - [anon_sym_DOLLARvacount] = ACTIONS(1706), - [anon_sym_DOLLARappend] = ACTIONS(1706), - [anon_sym_DOLLARconcat] = ACTIONS(1706), - [anon_sym_DOLLAReval] = ACTIONS(1706), - [anon_sym_DOLLARis_const] = ACTIONS(1706), - [anon_sym_DOLLARsizeof] = ACTIONS(1706), - [anon_sym_DOLLARstringify] = ACTIONS(1706), - [anon_sym_DOLLARand] = ACTIONS(1706), - [anon_sym_DOLLARdefined] = ACTIONS(1706), - [anon_sym_DOLLARembed] = ACTIONS(1706), - [anon_sym_DOLLARor] = ACTIONS(1706), - [anon_sym_DOLLARfeature] = ACTIONS(1706), - [anon_sym_DOLLARassignable] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1708), - [anon_sym_TILDE] = ACTIONS(1708), - [anon_sym_PLUS_PLUS] = ACTIONS(1708), - [anon_sym_DASH_DASH] = ACTIONS(1708), - [anon_sym_typeid] = ACTIONS(1706), - [anon_sym_LBRACE_PIPE] = ACTIONS(1708), - [anon_sym_void] = ACTIONS(1706), - [anon_sym_bool] = ACTIONS(1706), - [anon_sym_char] = ACTIONS(1706), - [anon_sym_ichar] = ACTIONS(1706), - [anon_sym_short] = ACTIONS(1706), - [anon_sym_ushort] = ACTIONS(1706), - [anon_sym_uint] = ACTIONS(1706), - [anon_sym_long] = ACTIONS(1706), - [anon_sym_ulong] = ACTIONS(1706), - [anon_sym_int128] = ACTIONS(1706), - [anon_sym_uint128] = ACTIONS(1706), - [anon_sym_float] = ACTIONS(1706), - [anon_sym_double] = ACTIONS(1706), - [anon_sym_float16] = ACTIONS(1706), - [anon_sym_bfloat16] = ACTIONS(1706), - [anon_sym_float128] = ACTIONS(1706), - [anon_sym_iptr] = ACTIONS(1706), - [anon_sym_uptr] = ACTIONS(1706), - [anon_sym_isz] = ACTIONS(1706), - [anon_sym_usz] = ACTIONS(1706), - [anon_sym_anyfault] = ACTIONS(1706), - [anon_sym_any] = ACTIONS(1706), - [anon_sym_DOLLARtypeof] = ACTIONS(1706), - [anon_sym_DOLLARtypefrom] = ACTIONS(1706), - [anon_sym_DOLLARvatype] = ACTIONS(1706), - [anon_sym_DOLLARevaltype] = ACTIONS(1706), - [sym_real_literal] = ACTIONS(1708), - }, - [846] = { - [sym_line_comment] = STATE(846), - [sym_doc_comment] = STATE(846), - [sym_block_comment] = STATE(846), - [sym_ident] = ACTIONS(1710), - [sym_integer_literal] = ACTIONS(1712), - [anon_sym_SQUOTE] = ACTIONS(1712), - [anon_sym_DQUOTE] = ACTIONS(1712), - [anon_sym_BQUOTE] = ACTIONS(1712), - [sym_bytes_literal] = ACTIONS(1712), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1710), - [sym_at_ident] = ACTIONS(1712), - [sym_hash_ident] = ACTIONS(1712), - [sym_type_ident] = ACTIONS(1712), - [sym_ct_type_ident] = ACTIONS(1712), - [sym_const_ident] = ACTIONS(1710), - [sym_builtin] = ACTIONS(1712), - [anon_sym_LPAREN] = ACTIONS(1712), - [anon_sym_AMP] = ACTIONS(1710), - [anon_sym_static] = ACTIONS(1710), - [anon_sym_tlocal] = ACTIONS(1710), - [anon_sym_SEMI] = ACTIONS(1712), - [anon_sym_fn] = ACTIONS(1710), - [anon_sym_LBRACE] = ACTIONS(1710), - [anon_sym_const] = ACTIONS(1710), - [anon_sym_var] = ACTIONS(1710), - [anon_sym_return] = ACTIONS(1710), - [anon_sym_continue] = ACTIONS(1710), - [anon_sym_break] = ACTIONS(1710), - [anon_sym_defer] = ACTIONS(1710), - [anon_sym_assert] = ACTIONS(1710), - [anon_sym_nextcase] = ACTIONS(1710), - [anon_sym_switch] = ACTIONS(1710), - [anon_sym_AMP_AMP] = ACTIONS(1712), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_for] = ACTIONS(1710), - [anon_sym_foreach] = ACTIONS(1710), - [anon_sym_foreach_r] = ACTIONS(1710), - [anon_sym_while] = ACTIONS(1710), - [anon_sym_do] = ACTIONS(1710), - [anon_sym_int] = ACTIONS(1710), - [anon_sym_PLUS] = ACTIONS(1710), - [anon_sym_DASH] = ACTIONS(1710), - [anon_sym_STAR] = ACTIONS(1712), - [anon_sym_asm] = ACTIONS(1710), - [anon_sym_DOLLARassert] = ACTIONS(1710), - [anon_sym_DOLLARerror] = ACTIONS(1710), - [anon_sym_DOLLARecho] = ACTIONS(1710), - [anon_sym_DOLLARif] = ACTIONS(1710), - [anon_sym_DOLLARswitch] = ACTIONS(1710), - [anon_sym_DOLLARfor] = ACTIONS(1710), - [anon_sym_DOLLARendfor] = ACTIONS(1710), - [anon_sym_DOLLARforeach] = ACTIONS(1710), - [anon_sym_DOLLARalignof] = ACTIONS(1710), - [anon_sym_DOLLARextnameof] = ACTIONS(1710), - [anon_sym_DOLLARnameof] = ACTIONS(1710), - [anon_sym_DOLLARoffsetof] = ACTIONS(1710), - [anon_sym_DOLLARqnameof] = ACTIONS(1710), - [anon_sym_DOLLARvaconst] = ACTIONS(1710), - [anon_sym_DOLLARvaarg] = ACTIONS(1710), - [anon_sym_DOLLARvaref] = ACTIONS(1710), - [anon_sym_DOLLARvaexpr] = ACTIONS(1710), - [anon_sym_true] = ACTIONS(1710), - [anon_sym_false] = ACTIONS(1710), - [anon_sym_null] = ACTIONS(1710), - [anon_sym_DOLLARvacount] = ACTIONS(1710), - [anon_sym_DOLLARappend] = ACTIONS(1710), - [anon_sym_DOLLARconcat] = ACTIONS(1710), - [anon_sym_DOLLAReval] = ACTIONS(1710), - [anon_sym_DOLLARis_const] = ACTIONS(1710), - [anon_sym_DOLLARsizeof] = ACTIONS(1710), - [anon_sym_DOLLARstringify] = ACTIONS(1710), - [anon_sym_DOLLARand] = ACTIONS(1710), - [anon_sym_DOLLARdefined] = ACTIONS(1710), - [anon_sym_DOLLARembed] = ACTIONS(1710), - [anon_sym_DOLLARor] = ACTIONS(1710), - [anon_sym_DOLLARfeature] = ACTIONS(1710), - [anon_sym_DOLLARassignable] = ACTIONS(1710), - [anon_sym_BANG] = ACTIONS(1712), - [anon_sym_TILDE] = ACTIONS(1712), - [anon_sym_PLUS_PLUS] = ACTIONS(1712), - [anon_sym_DASH_DASH] = ACTIONS(1712), - [anon_sym_typeid] = ACTIONS(1710), - [anon_sym_LBRACE_PIPE] = ACTIONS(1712), - [anon_sym_void] = ACTIONS(1710), - [anon_sym_bool] = ACTIONS(1710), - [anon_sym_char] = ACTIONS(1710), - [anon_sym_ichar] = ACTIONS(1710), - [anon_sym_short] = ACTIONS(1710), - [anon_sym_ushort] = ACTIONS(1710), - [anon_sym_uint] = ACTIONS(1710), - [anon_sym_long] = ACTIONS(1710), - [anon_sym_ulong] = ACTIONS(1710), - [anon_sym_int128] = ACTIONS(1710), - [anon_sym_uint128] = ACTIONS(1710), - [anon_sym_float] = ACTIONS(1710), - [anon_sym_double] = ACTIONS(1710), - [anon_sym_float16] = ACTIONS(1710), - [anon_sym_bfloat16] = ACTIONS(1710), - [anon_sym_float128] = ACTIONS(1710), - [anon_sym_iptr] = ACTIONS(1710), - [anon_sym_uptr] = ACTIONS(1710), - [anon_sym_isz] = ACTIONS(1710), - [anon_sym_usz] = ACTIONS(1710), - [anon_sym_anyfault] = ACTIONS(1710), - [anon_sym_any] = ACTIONS(1710), - [anon_sym_DOLLARtypeof] = ACTIONS(1710), - [anon_sym_DOLLARtypefrom] = ACTIONS(1710), - [anon_sym_DOLLARvatype] = ACTIONS(1710), - [anon_sym_DOLLARevaltype] = ACTIONS(1710), - [sym_real_literal] = ACTIONS(1712), - }, - [847] = { - [sym_line_comment] = STATE(847), - [sym_doc_comment] = STATE(847), - [sym_block_comment] = STATE(847), - [sym_ident] = ACTIONS(1714), - [sym_integer_literal] = ACTIONS(1716), - [anon_sym_SQUOTE] = ACTIONS(1716), - [anon_sym_DQUOTE] = ACTIONS(1716), - [anon_sym_BQUOTE] = ACTIONS(1716), - [sym_bytes_literal] = ACTIONS(1716), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1714), - [sym_at_ident] = ACTIONS(1716), - [sym_hash_ident] = ACTIONS(1716), - [sym_type_ident] = ACTIONS(1716), - [sym_ct_type_ident] = ACTIONS(1716), - [sym_const_ident] = ACTIONS(1714), - [sym_builtin] = ACTIONS(1716), - [anon_sym_LPAREN] = ACTIONS(1716), - [anon_sym_AMP] = ACTIONS(1714), - [anon_sym_static] = ACTIONS(1714), - [anon_sym_tlocal] = ACTIONS(1714), - [anon_sym_SEMI] = ACTIONS(1716), - [anon_sym_fn] = ACTIONS(1714), - [anon_sym_LBRACE] = ACTIONS(1714), - [anon_sym_const] = ACTIONS(1714), - [anon_sym_var] = ACTIONS(1714), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(1714), - [anon_sym_break] = ACTIONS(1714), - [anon_sym_defer] = ACTIONS(1714), - [anon_sym_assert] = ACTIONS(1714), - [anon_sym_nextcase] = ACTIONS(1714), - [anon_sym_switch] = ACTIONS(1714), - [anon_sym_AMP_AMP] = ACTIONS(1716), - [anon_sym_if] = ACTIONS(1714), - [anon_sym_for] = ACTIONS(1714), - [anon_sym_foreach] = ACTIONS(1714), - [anon_sym_foreach_r] = ACTIONS(1714), - [anon_sym_while] = ACTIONS(1714), - [anon_sym_do] = ACTIONS(1714), - [anon_sym_int] = ACTIONS(1714), - [anon_sym_PLUS] = ACTIONS(1714), - [anon_sym_DASH] = ACTIONS(1714), - [anon_sym_STAR] = ACTIONS(1716), - [anon_sym_asm] = ACTIONS(1714), - [anon_sym_DOLLARassert] = ACTIONS(1714), - [anon_sym_DOLLARerror] = ACTIONS(1714), - [anon_sym_DOLLARecho] = ACTIONS(1714), - [anon_sym_DOLLARif] = ACTIONS(1714), - [anon_sym_DOLLARswitch] = ACTIONS(1714), - [anon_sym_DOLLARfor] = ACTIONS(1714), - [anon_sym_DOLLARendfor] = ACTIONS(1714), - [anon_sym_DOLLARforeach] = ACTIONS(1714), - [anon_sym_DOLLARalignof] = ACTIONS(1714), - [anon_sym_DOLLARextnameof] = ACTIONS(1714), - [anon_sym_DOLLARnameof] = ACTIONS(1714), - [anon_sym_DOLLARoffsetof] = ACTIONS(1714), - [anon_sym_DOLLARqnameof] = ACTIONS(1714), - [anon_sym_DOLLARvaconst] = ACTIONS(1714), - [anon_sym_DOLLARvaarg] = ACTIONS(1714), - [anon_sym_DOLLARvaref] = ACTIONS(1714), - [anon_sym_DOLLARvaexpr] = ACTIONS(1714), - [anon_sym_true] = ACTIONS(1714), - [anon_sym_false] = ACTIONS(1714), - [anon_sym_null] = ACTIONS(1714), - [anon_sym_DOLLARvacount] = ACTIONS(1714), - [anon_sym_DOLLARappend] = ACTIONS(1714), - [anon_sym_DOLLARconcat] = ACTIONS(1714), - [anon_sym_DOLLAReval] = ACTIONS(1714), - [anon_sym_DOLLARis_const] = ACTIONS(1714), - [anon_sym_DOLLARsizeof] = ACTIONS(1714), - [anon_sym_DOLLARstringify] = ACTIONS(1714), - [anon_sym_DOLLARand] = ACTIONS(1714), - [anon_sym_DOLLARdefined] = ACTIONS(1714), - [anon_sym_DOLLARembed] = ACTIONS(1714), - [anon_sym_DOLLARor] = ACTIONS(1714), - [anon_sym_DOLLARfeature] = ACTIONS(1714), - [anon_sym_DOLLARassignable] = ACTIONS(1714), - [anon_sym_BANG] = ACTIONS(1716), - [anon_sym_TILDE] = ACTIONS(1716), - [anon_sym_PLUS_PLUS] = ACTIONS(1716), - [anon_sym_DASH_DASH] = ACTIONS(1716), - [anon_sym_typeid] = ACTIONS(1714), - [anon_sym_LBRACE_PIPE] = ACTIONS(1716), - [anon_sym_void] = ACTIONS(1714), - [anon_sym_bool] = ACTIONS(1714), - [anon_sym_char] = ACTIONS(1714), - [anon_sym_ichar] = ACTIONS(1714), - [anon_sym_short] = ACTIONS(1714), - [anon_sym_ushort] = ACTIONS(1714), - [anon_sym_uint] = ACTIONS(1714), - [anon_sym_long] = ACTIONS(1714), - [anon_sym_ulong] = ACTIONS(1714), - [anon_sym_int128] = ACTIONS(1714), - [anon_sym_uint128] = ACTIONS(1714), - [anon_sym_float] = ACTIONS(1714), - [anon_sym_double] = ACTIONS(1714), - [anon_sym_float16] = ACTIONS(1714), - [anon_sym_bfloat16] = ACTIONS(1714), - [anon_sym_float128] = ACTIONS(1714), - [anon_sym_iptr] = ACTIONS(1714), - [anon_sym_uptr] = ACTIONS(1714), - [anon_sym_isz] = ACTIONS(1714), - [anon_sym_usz] = ACTIONS(1714), - [anon_sym_anyfault] = ACTIONS(1714), - [anon_sym_any] = ACTIONS(1714), - [anon_sym_DOLLARtypeof] = ACTIONS(1714), - [anon_sym_DOLLARtypefrom] = ACTIONS(1714), - [anon_sym_DOLLARvatype] = ACTIONS(1714), - [anon_sym_DOLLARevaltype] = ACTIONS(1714), - [sym_real_literal] = ACTIONS(1716), - }, - [848] = { - [sym_line_comment] = STATE(848), - [sym_doc_comment] = STATE(848), - [sym_block_comment] = STATE(848), - [sym_ident] = ACTIONS(1516), - [sym_integer_literal] = ACTIONS(1518), - [anon_sym_SQUOTE] = ACTIONS(1518), - [anon_sym_DQUOTE] = ACTIONS(1518), - [anon_sym_BQUOTE] = ACTIONS(1518), - [sym_bytes_literal] = ACTIONS(1518), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1516), - [sym_at_ident] = ACTIONS(1518), - [sym_hash_ident] = ACTIONS(1518), - [sym_type_ident] = ACTIONS(1518), - [sym_ct_type_ident] = ACTIONS(1518), - [sym_const_ident] = ACTIONS(1516), - [sym_builtin] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1518), - [anon_sym_AMP] = ACTIONS(1516), - [anon_sym_static] = ACTIONS(1516), - [anon_sym_tlocal] = ACTIONS(1516), - [anon_sym_SEMI] = ACTIONS(1518), - [anon_sym_fn] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1516), - [anon_sym_const] = ACTIONS(1516), - [anon_sym_var] = ACTIONS(1516), - [anon_sym_return] = ACTIONS(1516), - [anon_sym_continue] = ACTIONS(1516), - [anon_sym_break] = ACTIONS(1516), - [anon_sym_defer] = ACTIONS(1516), - [anon_sym_assert] = ACTIONS(1516), - [anon_sym_nextcase] = ACTIONS(1516), - [anon_sym_switch] = ACTIONS(1516), - [anon_sym_AMP_AMP] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1516), - [anon_sym_for] = ACTIONS(1516), - [anon_sym_foreach] = ACTIONS(1516), - [anon_sym_foreach_r] = ACTIONS(1516), - [anon_sym_while] = ACTIONS(1516), - [anon_sym_do] = ACTIONS(1516), - [anon_sym_int] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1516), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_STAR] = ACTIONS(1518), - [anon_sym_asm] = ACTIONS(1516), - [anon_sym_DOLLARassert] = ACTIONS(1516), - [anon_sym_DOLLARerror] = ACTIONS(1516), - [anon_sym_DOLLARecho] = ACTIONS(1516), - [anon_sym_DOLLARif] = ACTIONS(1516), - [anon_sym_DOLLARendif] = ACTIONS(1516), - [anon_sym_DOLLARswitch] = ACTIONS(1516), - [anon_sym_DOLLARfor] = ACTIONS(1516), - [anon_sym_DOLLARforeach] = ACTIONS(1516), - [anon_sym_DOLLARalignof] = ACTIONS(1516), - [anon_sym_DOLLARextnameof] = ACTIONS(1516), - [anon_sym_DOLLARnameof] = ACTIONS(1516), - [anon_sym_DOLLARoffsetof] = ACTIONS(1516), - [anon_sym_DOLLARqnameof] = ACTIONS(1516), - [anon_sym_DOLLARvaconst] = ACTIONS(1516), - [anon_sym_DOLLARvaarg] = ACTIONS(1516), - [anon_sym_DOLLARvaref] = ACTIONS(1516), - [anon_sym_DOLLARvaexpr] = ACTIONS(1516), - [anon_sym_true] = ACTIONS(1516), - [anon_sym_false] = ACTIONS(1516), - [anon_sym_null] = ACTIONS(1516), - [anon_sym_DOLLARvacount] = ACTIONS(1516), - [anon_sym_DOLLARappend] = ACTIONS(1516), - [anon_sym_DOLLARconcat] = ACTIONS(1516), - [anon_sym_DOLLAReval] = ACTIONS(1516), - [anon_sym_DOLLARis_const] = ACTIONS(1516), - [anon_sym_DOLLARsizeof] = ACTIONS(1516), - [anon_sym_DOLLARstringify] = ACTIONS(1516), - [anon_sym_DOLLARand] = ACTIONS(1516), - [anon_sym_DOLLARdefined] = ACTIONS(1516), - [anon_sym_DOLLARembed] = ACTIONS(1516), - [anon_sym_DOLLARor] = ACTIONS(1516), - [anon_sym_DOLLARfeature] = ACTIONS(1516), - [anon_sym_DOLLARassignable] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1518), - [anon_sym_TILDE] = ACTIONS(1518), - [anon_sym_PLUS_PLUS] = ACTIONS(1518), - [anon_sym_DASH_DASH] = ACTIONS(1518), - [anon_sym_typeid] = ACTIONS(1516), - [anon_sym_LBRACE_PIPE] = ACTIONS(1518), - [anon_sym_void] = ACTIONS(1516), - [anon_sym_bool] = ACTIONS(1516), - [anon_sym_char] = ACTIONS(1516), - [anon_sym_ichar] = ACTIONS(1516), - [anon_sym_short] = ACTIONS(1516), - [anon_sym_ushort] = ACTIONS(1516), - [anon_sym_uint] = ACTIONS(1516), - [anon_sym_long] = ACTIONS(1516), - [anon_sym_ulong] = ACTIONS(1516), - [anon_sym_int128] = ACTIONS(1516), - [anon_sym_uint128] = ACTIONS(1516), - [anon_sym_float] = ACTIONS(1516), - [anon_sym_double] = ACTIONS(1516), - [anon_sym_float16] = ACTIONS(1516), - [anon_sym_bfloat16] = ACTIONS(1516), - [anon_sym_float128] = ACTIONS(1516), - [anon_sym_iptr] = ACTIONS(1516), - [anon_sym_uptr] = ACTIONS(1516), - [anon_sym_isz] = ACTIONS(1516), - [anon_sym_usz] = ACTIONS(1516), - [anon_sym_anyfault] = ACTIONS(1516), - [anon_sym_any] = ACTIONS(1516), - [anon_sym_DOLLARtypeof] = ACTIONS(1516), - [anon_sym_DOLLARtypefrom] = ACTIONS(1516), - [anon_sym_DOLLARvatype] = ACTIONS(1516), - [anon_sym_DOLLARevaltype] = ACTIONS(1516), - [sym_real_literal] = ACTIONS(1518), - }, - [849] = { - [sym_line_comment] = STATE(849), - [sym_doc_comment] = STATE(849), - [sym_block_comment] = STATE(849), - [sym_ident] = ACTIONS(1370), - [sym_integer_literal] = ACTIONS(1372), - [anon_sym_SQUOTE] = ACTIONS(1372), - [anon_sym_DQUOTE] = ACTIONS(1372), - [anon_sym_BQUOTE] = ACTIONS(1372), - [sym_bytes_literal] = ACTIONS(1372), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1370), - [sym_at_ident] = ACTIONS(1372), - [sym_hash_ident] = ACTIONS(1372), - [sym_type_ident] = ACTIONS(1372), - [sym_ct_type_ident] = ACTIONS(1372), - [sym_const_ident] = ACTIONS(1370), - [sym_builtin] = ACTIONS(1372), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_AMP] = ACTIONS(1370), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_tlocal] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_const] = ACTIONS(1370), - [anon_sym_var] = ACTIONS(1370), - [anon_sym_return] = ACTIONS(1370), - [anon_sym_continue] = ACTIONS(1370), - [anon_sym_break] = ACTIONS(1370), - [anon_sym_defer] = ACTIONS(1370), - [anon_sym_assert] = ACTIONS(1370), - [anon_sym_nextcase] = ACTIONS(1370), - [anon_sym_switch] = ACTIONS(1370), - [anon_sym_AMP_AMP] = ACTIONS(1372), - [anon_sym_if] = ACTIONS(1370), - [anon_sym_for] = ACTIONS(1370), - [anon_sym_foreach] = ACTIONS(1370), - [anon_sym_foreach_r] = ACTIONS(1370), - [anon_sym_while] = ACTIONS(1370), - [anon_sym_do] = ACTIONS(1370), - [anon_sym_int] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_asm] = ACTIONS(1370), - [anon_sym_DOLLARassert] = ACTIONS(1370), - [anon_sym_DOLLARerror] = ACTIONS(1370), - [anon_sym_DOLLARecho] = ACTIONS(1370), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_DOLLARendif] = ACTIONS(1370), - [anon_sym_DOLLARswitch] = ACTIONS(1370), - [anon_sym_DOLLARfor] = ACTIONS(1370), - [anon_sym_DOLLARforeach] = ACTIONS(1370), - [anon_sym_DOLLARalignof] = ACTIONS(1370), - [anon_sym_DOLLARextnameof] = ACTIONS(1370), - [anon_sym_DOLLARnameof] = ACTIONS(1370), - [anon_sym_DOLLARoffsetof] = ACTIONS(1370), - [anon_sym_DOLLARqnameof] = ACTIONS(1370), - [anon_sym_DOLLARvaconst] = ACTIONS(1370), - [anon_sym_DOLLARvaarg] = ACTIONS(1370), - [anon_sym_DOLLARvaref] = ACTIONS(1370), - [anon_sym_DOLLARvaexpr] = ACTIONS(1370), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [anon_sym_null] = ACTIONS(1370), - [anon_sym_DOLLARvacount] = ACTIONS(1370), - [anon_sym_DOLLARappend] = ACTIONS(1370), - [anon_sym_DOLLARconcat] = ACTIONS(1370), - [anon_sym_DOLLAReval] = ACTIONS(1370), - [anon_sym_DOLLARis_const] = ACTIONS(1370), - [anon_sym_DOLLARsizeof] = ACTIONS(1370), - [anon_sym_DOLLARstringify] = ACTIONS(1370), - [anon_sym_DOLLARand] = ACTIONS(1370), - [anon_sym_DOLLARdefined] = ACTIONS(1370), - [anon_sym_DOLLARembed] = ACTIONS(1370), - [anon_sym_DOLLARor] = ACTIONS(1370), - [anon_sym_DOLLARfeature] = ACTIONS(1370), - [anon_sym_DOLLARassignable] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_TILDE] = ACTIONS(1372), - [anon_sym_PLUS_PLUS] = ACTIONS(1372), - [anon_sym_DASH_DASH] = ACTIONS(1372), - [anon_sym_typeid] = ACTIONS(1370), - [anon_sym_LBRACE_PIPE] = ACTIONS(1372), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_bool] = ACTIONS(1370), - [anon_sym_char] = ACTIONS(1370), - [anon_sym_ichar] = ACTIONS(1370), - [anon_sym_short] = ACTIONS(1370), - [anon_sym_ushort] = ACTIONS(1370), - [anon_sym_uint] = ACTIONS(1370), - [anon_sym_long] = ACTIONS(1370), - [anon_sym_ulong] = ACTIONS(1370), - [anon_sym_int128] = ACTIONS(1370), - [anon_sym_uint128] = ACTIONS(1370), - [anon_sym_float] = ACTIONS(1370), - [anon_sym_double] = ACTIONS(1370), - [anon_sym_float16] = ACTIONS(1370), - [anon_sym_bfloat16] = ACTIONS(1370), - [anon_sym_float128] = ACTIONS(1370), - [anon_sym_iptr] = ACTIONS(1370), - [anon_sym_uptr] = ACTIONS(1370), - [anon_sym_isz] = ACTIONS(1370), - [anon_sym_usz] = ACTIONS(1370), - [anon_sym_anyfault] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_DOLLARtypeof] = ACTIONS(1370), - [anon_sym_DOLLARtypefrom] = ACTIONS(1370), - [anon_sym_DOLLARvatype] = ACTIONS(1370), - [anon_sym_DOLLARevaltype] = ACTIONS(1370), - [sym_real_literal] = ACTIONS(1372), - }, - [850] = { - [sym_line_comment] = STATE(850), - [sym_doc_comment] = STATE(850), - [sym_block_comment] = STATE(850), - [sym_ident] = ACTIONS(1414), - [sym_integer_literal] = ACTIONS(1416), - [anon_sym_SQUOTE] = ACTIONS(1416), - [anon_sym_DQUOTE] = ACTIONS(1416), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_bytes_literal] = ACTIONS(1416), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1414), - [sym_at_ident] = ACTIONS(1416), - [sym_hash_ident] = ACTIONS(1416), - [sym_type_ident] = ACTIONS(1416), - [sym_ct_type_ident] = ACTIONS(1416), - [sym_const_ident] = ACTIONS(1414), - [sym_builtin] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(1416), - [anon_sym_AMP] = ACTIONS(1414), - [anon_sym_static] = ACTIONS(1414), - [anon_sym_tlocal] = ACTIONS(1414), - [anon_sym_SEMI] = ACTIONS(1416), - [anon_sym_fn] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1414), - [anon_sym_const] = ACTIONS(1414), - [anon_sym_var] = ACTIONS(1414), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_continue] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1414), - [anon_sym_defer] = ACTIONS(1414), - [anon_sym_assert] = ACTIONS(1414), - [anon_sym_nextcase] = ACTIONS(1414), - [anon_sym_switch] = ACTIONS(1414), - [anon_sym_AMP_AMP] = ACTIONS(1416), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_for] = ACTIONS(1414), - [anon_sym_foreach] = ACTIONS(1414), - [anon_sym_foreach_r] = ACTIONS(1414), - [anon_sym_while] = ACTIONS(1414), - [anon_sym_do] = ACTIONS(1414), - [anon_sym_int] = ACTIONS(1414), - [anon_sym_PLUS] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_STAR] = ACTIONS(1416), - [anon_sym_asm] = ACTIONS(1414), - [anon_sym_DOLLARassert] = ACTIONS(1414), - [anon_sym_DOLLARerror] = ACTIONS(1414), - [anon_sym_DOLLARecho] = ACTIONS(1414), - [anon_sym_DOLLARif] = ACTIONS(1414), - [anon_sym_DOLLARendif] = ACTIONS(1414), - [anon_sym_DOLLARswitch] = ACTIONS(1414), - [anon_sym_DOLLARfor] = ACTIONS(1414), - [anon_sym_DOLLARforeach] = ACTIONS(1414), - [anon_sym_DOLLARalignof] = ACTIONS(1414), - [anon_sym_DOLLARextnameof] = ACTIONS(1414), - [anon_sym_DOLLARnameof] = ACTIONS(1414), - [anon_sym_DOLLARoffsetof] = ACTIONS(1414), - [anon_sym_DOLLARqnameof] = ACTIONS(1414), - [anon_sym_DOLLARvaconst] = ACTIONS(1414), - [anon_sym_DOLLARvaarg] = ACTIONS(1414), - [anon_sym_DOLLARvaref] = ACTIONS(1414), - [anon_sym_DOLLARvaexpr] = ACTIONS(1414), - [anon_sym_true] = ACTIONS(1414), - [anon_sym_false] = ACTIONS(1414), - [anon_sym_null] = ACTIONS(1414), - [anon_sym_DOLLARvacount] = ACTIONS(1414), - [anon_sym_DOLLARappend] = ACTIONS(1414), - [anon_sym_DOLLARconcat] = ACTIONS(1414), - [anon_sym_DOLLAReval] = ACTIONS(1414), - [anon_sym_DOLLARis_const] = ACTIONS(1414), - [anon_sym_DOLLARsizeof] = ACTIONS(1414), - [anon_sym_DOLLARstringify] = ACTIONS(1414), - [anon_sym_DOLLARand] = ACTIONS(1414), - [anon_sym_DOLLARdefined] = ACTIONS(1414), - [anon_sym_DOLLARembed] = ACTIONS(1414), - [anon_sym_DOLLARor] = ACTIONS(1414), - [anon_sym_DOLLARfeature] = ACTIONS(1414), - [anon_sym_DOLLARassignable] = ACTIONS(1414), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1416), - [anon_sym_DASH_DASH] = ACTIONS(1416), - [anon_sym_typeid] = ACTIONS(1414), - [anon_sym_LBRACE_PIPE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1414), - [anon_sym_bool] = ACTIONS(1414), - [anon_sym_char] = ACTIONS(1414), - [anon_sym_ichar] = ACTIONS(1414), - [anon_sym_short] = ACTIONS(1414), - [anon_sym_ushort] = ACTIONS(1414), - [anon_sym_uint] = ACTIONS(1414), - [anon_sym_long] = ACTIONS(1414), - [anon_sym_ulong] = ACTIONS(1414), - [anon_sym_int128] = ACTIONS(1414), - [anon_sym_uint128] = ACTIONS(1414), - [anon_sym_float] = ACTIONS(1414), - [anon_sym_double] = ACTIONS(1414), - [anon_sym_float16] = ACTIONS(1414), - [anon_sym_bfloat16] = ACTIONS(1414), - [anon_sym_float128] = ACTIONS(1414), - [anon_sym_iptr] = ACTIONS(1414), - [anon_sym_uptr] = ACTIONS(1414), - [anon_sym_isz] = ACTIONS(1414), - [anon_sym_usz] = ACTIONS(1414), - [anon_sym_anyfault] = ACTIONS(1414), - [anon_sym_any] = ACTIONS(1414), - [anon_sym_DOLLARtypeof] = ACTIONS(1414), - [anon_sym_DOLLARtypefrom] = ACTIONS(1414), - [anon_sym_DOLLARvatype] = ACTIONS(1414), - [anon_sym_DOLLARevaltype] = ACTIONS(1414), - [sym_real_literal] = ACTIONS(1416), - }, - [851] = { - [sym_line_comment] = STATE(851), - [sym_doc_comment] = STATE(851), - [sym_block_comment] = STATE(851), - [sym_ident] = ACTIONS(1552), - [sym_integer_literal] = ACTIONS(1554), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_DQUOTE] = ACTIONS(1554), - [anon_sym_BQUOTE] = ACTIONS(1554), - [sym_bytes_literal] = ACTIONS(1554), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1552), - [sym_at_ident] = ACTIONS(1554), - [sym_hash_ident] = ACTIONS(1554), - [sym_type_ident] = ACTIONS(1554), - [sym_ct_type_ident] = ACTIONS(1554), - [sym_const_ident] = ACTIONS(1552), - [sym_builtin] = ACTIONS(1554), - [anon_sym_LPAREN] = ACTIONS(1554), - [anon_sym_AMP] = ACTIONS(1552), - [anon_sym_static] = ACTIONS(1552), - [anon_sym_tlocal] = ACTIONS(1552), - [anon_sym_SEMI] = ACTIONS(1554), - [anon_sym_fn] = ACTIONS(1552), - [anon_sym_LBRACE] = ACTIONS(1552), - [anon_sym_const] = ACTIONS(1552), - [anon_sym_var] = ACTIONS(1552), - [anon_sym_return] = ACTIONS(1552), - [anon_sym_continue] = ACTIONS(1552), - [anon_sym_break] = ACTIONS(1552), - [anon_sym_defer] = ACTIONS(1552), - [anon_sym_assert] = ACTIONS(1552), - [anon_sym_nextcase] = ACTIONS(1552), - [anon_sym_switch] = ACTIONS(1552), - [anon_sym_AMP_AMP] = ACTIONS(1554), - [anon_sym_if] = ACTIONS(1552), - [anon_sym_for] = ACTIONS(1552), - [anon_sym_foreach] = ACTIONS(1552), - [anon_sym_foreach_r] = ACTIONS(1552), - [anon_sym_while] = ACTIONS(1552), - [anon_sym_do] = ACTIONS(1552), - [anon_sym_int] = ACTIONS(1552), - [anon_sym_PLUS] = ACTIONS(1552), - [anon_sym_DASH] = ACTIONS(1552), - [anon_sym_STAR] = ACTIONS(1554), - [anon_sym_asm] = ACTIONS(1552), - [anon_sym_DOLLARassert] = ACTIONS(1552), - [anon_sym_DOLLARerror] = ACTIONS(1552), - [anon_sym_DOLLARecho] = ACTIONS(1552), - [anon_sym_DOLLARif] = ACTIONS(1552), - [anon_sym_DOLLARswitch] = ACTIONS(1552), - [anon_sym_DOLLARfor] = ACTIONS(1552), - [anon_sym_DOLLARendfor] = ACTIONS(1552), - [anon_sym_DOLLARforeach] = ACTIONS(1552), - [anon_sym_DOLLARalignof] = ACTIONS(1552), - [anon_sym_DOLLARextnameof] = ACTIONS(1552), - [anon_sym_DOLLARnameof] = ACTIONS(1552), - [anon_sym_DOLLARoffsetof] = ACTIONS(1552), - [anon_sym_DOLLARqnameof] = ACTIONS(1552), - [anon_sym_DOLLARvaconst] = ACTIONS(1552), - [anon_sym_DOLLARvaarg] = ACTIONS(1552), - [anon_sym_DOLLARvaref] = ACTIONS(1552), - [anon_sym_DOLLARvaexpr] = ACTIONS(1552), - [anon_sym_true] = ACTIONS(1552), - [anon_sym_false] = ACTIONS(1552), - [anon_sym_null] = ACTIONS(1552), - [anon_sym_DOLLARvacount] = ACTIONS(1552), - [anon_sym_DOLLARappend] = ACTIONS(1552), - [anon_sym_DOLLARconcat] = ACTIONS(1552), - [anon_sym_DOLLAReval] = ACTIONS(1552), - [anon_sym_DOLLARis_const] = ACTIONS(1552), - [anon_sym_DOLLARsizeof] = ACTIONS(1552), - [anon_sym_DOLLARstringify] = ACTIONS(1552), - [anon_sym_DOLLARand] = ACTIONS(1552), - [anon_sym_DOLLARdefined] = ACTIONS(1552), - [anon_sym_DOLLARembed] = ACTIONS(1552), - [anon_sym_DOLLARor] = ACTIONS(1552), - [anon_sym_DOLLARfeature] = ACTIONS(1552), - [anon_sym_DOLLARassignable] = ACTIONS(1552), - [anon_sym_BANG] = ACTIONS(1554), - [anon_sym_TILDE] = ACTIONS(1554), - [anon_sym_PLUS_PLUS] = ACTIONS(1554), - [anon_sym_DASH_DASH] = ACTIONS(1554), - [anon_sym_typeid] = ACTIONS(1552), - [anon_sym_LBRACE_PIPE] = ACTIONS(1554), - [anon_sym_void] = ACTIONS(1552), - [anon_sym_bool] = ACTIONS(1552), - [anon_sym_char] = ACTIONS(1552), - [anon_sym_ichar] = ACTIONS(1552), - [anon_sym_short] = ACTIONS(1552), - [anon_sym_ushort] = ACTIONS(1552), - [anon_sym_uint] = ACTIONS(1552), - [anon_sym_long] = ACTIONS(1552), - [anon_sym_ulong] = ACTIONS(1552), - [anon_sym_int128] = ACTIONS(1552), - [anon_sym_uint128] = ACTIONS(1552), - [anon_sym_float] = ACTIONS(1552), - [anon_sym_double] = ACTIONS(1552), - [anon_sym_float16] = ACTIONS(1552), - [anon_sym_bfloat16] = ACTIONS(1552), - [anon_sym_float128] = ACTIONS(1552), - [anon_sym_iptr] = ACTIONS(1552), - [anon_sym_uptr] = ACTIONS(1552), - [anon_sym_isz] = ACTIONS(1552), - [anon_sym_usz] = ACTIONS(1552), - [anon_sym_anyfault] = ACTIONS(1552), - [anon_sym_any] = ACTIONS(1552), - [anon_sym_DOLLARtypeof] = ACTIONS(1552), - [anon_sym_DOLLARtypefrom] = ACTIONS(1552), - [anon_sym_DOLLARvatype] = ACTIONS(1552), - [anon_sym_DOLLARevaltype] = ACTIONS(1552), - [sym_real_literal] = ACTIONS(1554), - }, - [852] = { - [sym_line_comment] = STATE(852), - [sym_doc_comment] = STATE(852), - [sym_block_comment] = STATE(852), - [sym_ident] = ACTIONS(1580), - [sym_integer_literal] = ACTIONS(1582), - [anon_sym_SQUOTE] = ACTIONS(1582), - [anon_sym_DQUOTE] = ACTIONS(1582), - [anon_sym_BQUOTE] = ACTIONS(1582), - [sym_bytes_literal] = ACTIONS(1582), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1580), - [sym_at_ident] = ACTIONS(1582), - [sym_hash_ident] = ACTIONS(1582), - [sym_type_ident] = ACTIONS(1582), - [sym_ct_type_ident] = ACTIONS(1582), - [sym_const_ident] = ACTIONS(1580), - [sym_builtin] = ACTIONS(1582), - [anon_sym_LPAREN] = ACTIONS(1582), - [anon_sym_AMP] = ACTIONS(1580), - [anon_sym_static] = ACTIONS(1580), - [anon_sym_tlocal] = ACTIONS(1580), - [anon_sym_SEMI] = ACTIONS(1582), - [anon_sym_fn] = ACTIONS(1580), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_const] = ACTIONS(1580), - [anon_sym_var] = ACTIONS(1580), - [anon_sym_return] = ACTIONS(1580), - [anon_sym_continue] = ACTIONS(1580), - [anon_sym_break] = ACTIONS(1580), - [anon_sym_defer] = ACTIONS(1580), - [anon_sym_assert] = ACTIONS(1580), - [anon_sym_nextcase] = ACTIONS(1580), - [anon_sym_switch] = ACTIONS(1580), - [anon_sym_AMP_AMP] = ACTIONS(1582), - [anon_sym_if] = ACTIONS(1580), - [anon_sym_for] = ACTIONS(1580), - [anon_sym_foreach] = ACTIONS(1580), - [anon_sym_foreach_r] = ACTIONS(1580), - [anon_sym_while] = ACTIONS(1580), - [anon_sym_do] = ACTIONS(1580), - [anon_sym_int] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1580), - [anon_sym_DASH] = ACTIONS(1580), - [anon_sym_STAR] = ACTIONS(1582), - [anon_sym_asm] = ACTIONS(1580), - [anon_sym_DOLLARassert] = ACTIONS(1580), - [anon_sym_DOLLARerror] = ACTIONS(1580), - [anon_sym_DOLLARecho] = ACTIONS(1580), - [anon_sym_DOLLARif] = ACTIONS(1580), - [anon_sym_DOLLARswitch] = ACTIONS(1580), - [anon_sym_DOLLARfor] = ACTIONS(1580), - [anon_sym_DOLLARendfor] = ACTIONS(1580), - [anon_sym_DOLLARforeach] = ACTIONS(1580), - [anon_sym_DOLLARalignof] = ACTIONS(1580), - [anon_sym_DOLLARextnameof] = ACTIONS(1580), - [anon_sym_DOLLARnameof] = ACTIONS(1580), - [anon_sym_DOLLARoffsetof] = ACTIONS(1580), - [anon_sym_DOLLARqnameof] = ACTIONS(1580), - [anon_sym_DOLLARvaconst] = ACTIONS(1580), - [anon_sym_DOLLARvaarg] = ACTIONS(1580), - [anon_sym_DOLLARvaref] = ACTIONS(1580), - [anon_sym_DOLLARvaexpr] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1580), - [anon_sym_false] = ACTIONS(1580), - [anon_sym_null] = ACTIONS(1580), - [anon_sym_DOLLARvacount] = ACTIONS(1580), - [anon_sym_DOLLARappend] = ACTIONS(1580), - [anon_sym_DOLLARconcat] = ACTIONS(1580), - [anon_sym_DOLLAReval] = ACTIONS(1580), - [anon_sym_DOLLARis_const] = ACTIONS(1580), - [anon_sym_DOLLARsizeof] = ACTIONS(1580), - [anon_sym_DOLLARstringify] = ACTIONS(1580), - [anon_sym_DOLLARand] = ACTIONS(1580), - [anon_sym_DOLLARdefined] = ACTIONS(1580), - [anon_sym_DOLLARembed] = ACTIONS(1580), - [anon_sym_DOLLARor] = ACTIONS(1580), - [anon_sym_DOLLARfeature] = ACTIONS(1580), - [anon_sym_DOLLARassignable] = ACTIONS(1580), - [anon_sym_BANG] = ACTIONS(1582), - [anon_sym_TILDE] = ACTIONS(1582), - [anon_sym_PLUS_PLUS] = ACTIONS(1582), - [anon_sym_DASH_DASH] = ACTIONS(1582), - [anon_sym_typeid] = ACTIONS(1580), - [anon_sym_LBRACE_PIPE] = ACTIONS(1582), - [anon_sym_void] = ACTIONS(1580), - [anon_sym_bool] = ACTIONS(1580), - [anon_sym_char] = ACTIONS(1580), - [anon_sym_ichar] = ACTIONS(1580), - [anon_sym_short] = ACTIONS(1580), - [anon_sym_ushort] = ACTIONS(1580), - [anon_sym_uint] = ACTIONS(1580), - [anon_sym_long] = ACTIONS(1580), - [anon_sym_ulong] = ACTIONS(1580), - [anon_sym_int128] = ACTIONS(1580), - [anon_sym_uint128] = ACTIONS(1580), - [anon_sym_float] = ACTIONS(1580), - [anon_sym_double] = ACTIONS(1580), - [anon_sym_float16] = ACTIONS(1580), - [anon_sym_bfloat16] = ACTIONS(1580), - [anon_sym_float128] = ACTIONS(1580), - [anon_sym_iptr] = ACTIONS(1580), - [anon_sym_uptr] = ACTIONS(1580), - [anon_sym_isz] = ACTIONS(1580), - [anon_sym_usz] = ACTIONS(1580), - [anon_sym_anyfault] = ACTIONS(1580), - [anon_sym_any] = ACTIONS(1580), - [anon_sym_DOLLARtypeof] = ACTIONS(1580), - [anon_sym_DOLLARtypefrom] = ACTIONS(1580), - [anon_sym_DOLLARvatype] = ACTIONS(1580), - [anon_sym_DOLLARevaltype] = ACTIONS(1580), - [sym_real_literal] = ACTIONS(1582), - }, - [853] = { - [sym_line_comment] = STATE(853), - [sym_doc_comment] = STATE(853), - [sym_block_comment] = STATE(853), - [sym_ident] = ACTIONS(1402), - [sym_integer_literal] = ACTIONS(1404), - [anon_sym_SQUOTE] = ACTIONS(1404), - [anon_sym_DQUOTE] = ACTIONS(1404), - [anon_sym_BQUOTE] = ACTIONS(1404), - [sym_bytes_literal] = ACTIONS(1404), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1402), - [sym_at_ident] = ACTIONS(1404), - [sym_hash_ident] = ACTIONS(1404), - [sym_type_ident] = ACTIONS(1404), - [sym_ct_type_ident] = ACTIONS(1404), - [sym_const_ident] = ACTIONS(1402), - [sym_builtin] = ACTIONS(1404), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_AMP] = ACTIONS(1402), - [anon_sym_static] = ACTIONS(1402), - [anon_sym_tlocal] = ACTIONS(1402), - [anon_sym_SEMI] = ACTIONS(1404), - [anon_sym_fn] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1402), - [anon_sym_const] = ACTIONS(1402), - [anon_sym_var] = ACTIONS(1402), - [anon_sym_return] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [anon_sym_break] = ACTIONS(1402), - [anon_sym_defer] = ACTIONS(1402), - [anon_sym_assert] = ACTIONS(1402), - [anon_sym_nextcase] = ACTIONS(1402), - [anon_sym_switch] = ACTIONS(1402), - [anon_sym_AMP_AMP] = ACTIONS(1404), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_for] = ACTIONS(1402), - [anon_sym_foreach] = ACTIONS(1402), - [anon_sym_foreach_r] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1402), - [anon_sym_do] = ACTIONS(1402), - [anon_sym_int] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1402), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_STAR] = ACTIONS(1404), - [anon_sym_asm] = ACTIONS(1402), - [anon_sym_DOLLARassert] = ACTIONS(1402), - [anon_sym_DOLLARerror] = ACTIONS(1402), - [anon_sym_DOLLARecho] = ACTIONS(1402), - [anon_sym_DOLLARif] = ACTIONS(1402), - [anon_sym_DOLLARendif] = ACTIONS(1402), - [anon_sym_DOLLARswitch] = ACTIONS(1402), - [anon_sym_DOLLARfor] = ACTIONS(1402), - [anon_sym_DOLLARforeach] = ACTIONS(1402), - [anon_sym_DOLLARalignof] = ACTIONS(1402), - [anon_sym_DOLLARextnameof] = ACTIONS(1402), - [anon_sym_DOLLARnameof] = ACTIONS(1402), - [anon_sym_DOLLARoffsetof] = ACTIONS(1402), - [anon_sym_DOLLARqnameof] = ACTIONS(1402), - [anon_sym_DOLLARvaconst] = ACTIONS(1402), - [anon_sym_DOLLARvaarg] = ACTIONS(1402), - [anon_sym_DOLLARvaref] = ACTIONS(1402), - [anon_sym_DOLLARvaexpr] = ACTIONS(1402), - [anon_sym_true] = ACTIONS(1402), - [anon_sym_false] = ACTIONS(1402), - [anon_sym_null] = ACTIONS(1402), - [anon_sym_DOLLARvacount] = ACTIONS(1402), - [anon_sym_DOLLARappend] = ACTIONS(1402), - [anon_sym_DOLLARconcat] = ACTIONS(1402), - [anon_sym_DOLLAReval] = ACTIONS(1402), - [anon_sym_DOLLARis_const] = ACTIONS(1402), - [anon_sym_DOLLARsizeof] = ACTIONS(1402), - [anon_sym_DOLLARstringify] = ACTIONS(1402), - [anon_sym_DOLLARand] = ACTIONS(1402), - [anon_sym_DOLLARdefined] = ACTIONS(1402), - [anon_sym_DOLLARembed] = ACTIONS(1402), - [anon_sym_DOLLARor] = ACTIONS(1402), - [anon_sym_DOLLARfeature] = ACTIONS(1402), - [anon_sym_DOLLARassignable] = ACTIONS(1402), - [anon_sym_BANG] = ACTIONS(1404), - [anon_sym_TILDE] = ACTIONS(1404), - [anon_sym_PLUS_PLUS] = ACTIONS(1404), - [anon_sym_DASH_DASH] = ACTIONS(1404), - [anon_sym_typeid] = ACTIONS(1402), - [anon_sym_LBRACE_PIPE] = ACTIONS(1404), - [anon_sym_void] = ACTIONS(1402), - [anon_sym_bool] = ACTIONS(1402), - [anon_sym_char] = ACTIONS(1402), - [anon_sym_ichar] = ACTIONS(1402), - [anon_sym_short] = ACTIONS(1402), - [anon_sym_ushort] = ACTIONS(1402), - [anon_sym_uint] = ACTIONS(1402), - [anon_sym_long] = ACTIONS(1402), - [anon_sym_ulong] = ACTIONS(1402), - [anon_sym_int128] = ACTIONS(1402), - [anon_sym_uint128] = ACTIONS(1402), - [anon_sym_float] = ACTIONS(1402), - [anon_sym_double] = ACTIONS(1402), - [anon_sym_float16] = ACTIONS(1402), - [anon_sym_bfloat16] = ACTIONS(1402), - [anon_sym_float128] = ACTIONS(1402), - [anon_sym_iptr] = ACTIONS(1402), - [anon_sym_uptr] = ACTIONS(1402), - [anon_sym_isz] = ACTIONS(1402), - [anon_sym_usz] = ACTIONS(1402), - [anon_sym_anyfault] = ACTIONS(1402), - [anon_sym_any] = ACTIONS(1402), - [anon_sym_DOLLARtypeof] = ACTIONS(1402), - [anon_sym_DOLLARtypefrom] = ACTIONS(1402), - [anon_sym_DOLLARvatype] = ACTIONS(1402), - [anon_sym_DOLLARevaltype] = ACTIONS(1402), - [sym_real_literal] = ACTIONS(1404), - }, - [854] = { - [sym_line_comment] = STATE(854), - [sym_doc_comment] = STATE(854), - [sym_block_comment] = STATE(854), - [sym_ident] = ACTIONS(1714), - [sym_integer_literal] = ACTIONS(1716), - [anon_sym_SQUOTE] = ACTIONS(1716), - [anon_sym_DQUOTE] = ACTIONS(1716), - [anon_sym_BQUOTE] = ACTIONS(1716), - [sym_bytes_literal] = ACTIONS(1716), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1714), - [sym_at_ident] = ACTIONS(1716), - [sym_hash_ident] = ACTIONS(1716), - [sym_type_ident] = ACTIONS(1716), - [sym_ct_type_ident] = ACTIONS(1716), - [sym_const_ident] = ACTIONS(1714), - [sym_builtin] = ACTIONS(1716), - [anon_sym_LPAREN] = ACTIONS(1716), - [anon_sym_AMP] = ACTIONS(1714), - [anon_sym_static] = ACTIONS(1714), - [anon_sym_tlocal] = ACTIONS(1714), - [anon_sym_SEMI] = ACTIONS(1716), - [anon_sym_fn] = ACTIONS(1714), - [anon_sym_LBRACE] = ACTIONS(1714), - [anon_sym_const] = ACTIONS(1714), - [anon_sym_var] = ACTIONS(1714), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(1714), - [anon_sym_break] = ACTIONS(1714), - [anon_sym_defer] = ACTIONS(1714), - [anon_sym_assert] = ACTIONS(1714), - [anon_sym_nextcase] = ACTIONS(1714), - [anon_sym_switch] = ACTIONS(1714), - [anon_sym_AMP_AMP] = ACTIONS(1716), - [anon_sym_if] = ACTIONS(1714), - [anon_sym_for] = ACTIONS(1714), - [anon_sym_foreach] = ACTIONS(1714), - [anon_sym_foreach_r] = ACTIONS(1714), - [anon_sym_while] = ACTIONS(1714), - [anon_sym_do] = ACTIONS(1714), - [anon_sym_int] = ACTIONS(1714), - [anon_sym_PLUS] = ACTIONS(1714), - [anon_sym_DASH] = ACTIONS(1714), - [anon_sym_STAR] = ACTIONS(1716), - [anon_sym_asm] = ACTIONS(1714), - [anon_sym_DOLLARassert] = ACTIONS(1714), - [anon_sym_DOLLARerror] = ACTIONS(1714), - [anon_sym_DOLLARecho] = ACTIONS(1714), - [anon_sym_DOLLARif] = ACTIONS(1714), - [anon_sym_DOLLARswitch] = ACTIONS(1714), - [anon_sym_DOLLARfor] = ACTIONS(1714), - [anon_sym_DOLLARforeach] = ACTIONS(1714), - [anon_sym_DOLLARalignof] = ACTIONS(1714), - [anon_sym_DOLLARextnameof] = ACTIONS(1714), - [anon_sym_DOLLARnameof] = ACTIONS(1714), - [anon_sym_DOLLARoffsetof] = ACTIONS(1714), - [anon_sym_DOLLARqnameof] = ACTIONS(1714), - [anon_sym_DOLLARvaconst] = ACTIONS(1714), - [anon_sym_DOLLARvaarg] = ACTIONS(1714), - [anon_sym_DOLLARvaref] = ACTIONS(1714), - [anon_sym_DOLLARvaexpr] = ACTIONS(1714), - [anon_sym_true] = ACTIONS(1714), - [anon_sym_false] = ACTIONS(1714), - [anon_sym_null] = ACTIONS(1714), - [anon_sym_DOLLARvacount] = ACTIONS(1714), - [anon_sym_DOLLARappend] = ACTIONS(1714), - [anon_sym_DOLLARconcat] = ACTIONS(1714), - [anon_sym_DOLLAReval] = ACTIONS(1714), - [anon_sym_DOLLARis_const] = ACTIONS(1714), - [anon_sym_DOLLARsizeof] = ACTIONS(1714), - [anon_sym_DOLLARstringify] = ACTIONS(1714), - [anon_sym_DOLLARand] = ACTIONS(1714), - [anon_sym_DOLLARdefined] = ACTIONS(1714), - [anon_sym_DOLLARembed] = ACTIONS(1714), - [anon_sym_DOLLARor] = ACTIONS(1714), - [anon_sym_DOLLARfeature] = ACTIONS(1714), - [anon_sym_DOLLARassignable] = ACTIONS(1714), - [anon_sym_BANG] = ACTIONS(1716), - [anon_sym_TILDE] = ACTIONS(1716), - [anon_sym_PLUS_PLUS] = ACTIONS(1716), - [anon_sym_DASH_DASH] = ACTIONS(1716), - [anon_sym_typeid] = ACTIONS(1714), - [anon_sym_LBRACE_PIPE] = ACTIONS(1716), - [anon_sym_void] = ACTIONS(1714), - [anon_sym_bool] = ACTIONS(1714), - [anon_sym_char] = ACTIONS(1714), - [anon_sym_ichar] = ACTIONS(1714), - [anon_sym_short] = ACTIONS(1714), - [anon_sym_ushort] = ACTIONS(1714), - [anon_sym_uint] = ACTIONS(1714), - [anon_sym_long] = ACTIONS(1714), - [anon_sym_ulong] = ACTIONS(1714), - [anon_sym_int128] = ACTIONS(1714), - [anon_sym_uint128] = ACTIONS(1714), - [anon_sym_float] = ACTIONS(1714), - [anon_sym_double] = ACTIONS(1714), - [anon_sym_float16] = ACTIONS(1714), - [anon_sym_bfloat16] = ACTIONS(1714), - [anon_sym_float128] = ACTIONS(1714), - [anon_sym_iptr] = ACTIONS(1714), - [anon_sym_uptr] = ACTIONS(1714), - [anon_sym_isz] = ACTIONS(1714), - [anon_sym_usz] = ACTIONS(1714), - [anon_sym_anyfault] = ACTIONS(1714), - [anon_sym_any] = ACTIONS(1714), - [anon_sym_DOLLARtypeof] = ACTIONS(1714), - [anon_sym_DOLLARtypefrom] = ACTIONS(1714), - [anon_sym_DOLLARvatype] = ACTIONS(1714), - [anon_sym_DOLLARevaltype] = ACTIONS(1714), - [sym_real_literal] = ACTIONS(1716), - }, - [855] = { - [sym_line_comment] = STATE(855), - [sym_doc_comment] = STATE(855), - [sym_block_comment] = STATE(855), - [sym_ident] = ACTIONS(1718), - [sym_integer_literal] = ACTIONS(1720), - [anon_sym_SQUOTE] = ACTIONS(1720), - [anon_sym_DQUOTE] = ACTIONS(1720), - [anon_sym_BQUOTE] = ACTIONS(1720), - [sym_bytes_literal] = ACTIONS(1720), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1718), - [sym_at_ident] = ACTIONS(1720), - [sym_hash_ident] = ACTIONS(1720), - [sym_type_ident] = ACTIONS(1720), - [sym_ct_type_ident] = ACTIONS(1720), - [sym_const_ident] = ACTIONS(1718), - [sym_builtin] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1718), - [anon_sym_static] = ACTIONS(1718), - [anon_sym_tlocal] = ACTIONS(1718), - [anon_sym_SEMI] = ACTIONS(1720), - [anon_sym_fn] = ACTIONS(1718), - [anon_sym_LBRACE] = ACTIONS(1718), - [anon_sym_const] = ACTIONS(1718), - [anon_sym_var] = ACTIONS(1718), - [anon_sym_return] = ACTIONS(1718), - [anon_sym_continue] = ACTIONS(1718), - [anon_sym_break] = ACTIONS(1718), - [anon_sym_defer] = ACTIONS(1718), - [anon_sym_assert] = ACTIONS(1718), - [anon_sym_nextcase] = ACTIONS(1718), - [anon_sym_switch] = ACTIONS(1718), - [anon_sym_AMP_AMP] = ACTIONS(1720), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_for] = ACTIONS(1718), - [anon_sym_foreach] = ACTIONS(1718), - [anon_sym_foreach_r] = ACTIONS(1718), - [anon_sym_while] = ACTIONS(1718), - [anon_sym_do] = ACTIONS(1718), - [anon_sym_int] = ACTIONS(1718), - [anon_sym_PLUS] = ACTIONS(1718), - [anon_sym_DASH] = ACTIONS(1718), - [anon_sym_STAR] = ACTIONS(1720), - [anon_sym_asm] = ACTIONS(1718), - [anon_sym_DOLLARassert] = ACTIONS(1718), - [anon_sym_DOLLARerror] = ACTIONS(1718), - [anon_sym_DOLLARecho] = ACTIONS(1718), - [anon_sym_DOLLARif] = ACTIONS(1718), - [anon_sym_DOLLARswitch] = ACTIONS(1718), - [anon_sym_DOLLARfor] = ACTIONS(1718), - [anon_sym_DOLLARforeach] = ACTIONS(1718), - [anon_sym_DOLLARalignof] = ACTIONS(1718), - [anon_sym_DOLLARextnameof] = ACTIONS(1718), - [anon_sym_DOLLARnameof] = ACTIONS(1718), - [anon_sym_DOLLARoffsetof] = ACTIONS(1718), - [anon_sym_DOLLARqnameof] = ACTIONS(1718), - [anon_sym_DOLLARvaconst] = ACTIONS(1718), - [anon_sym_DOLLARvaarg] = ACTIONS(1718), - [anon_sym_DOLLARvaref] = ACTIONS(1718), - [anon_sym_DOLLARvaexpr] = ACTIONS(1718), - [anon_sym_true] = ACTIONS(1718), - [anon_sym_false] = ACTIONS(1718), - [anon_sym_null] = ACTIONS(1718), - [anon_sym_DOLLARvacount] = ACTIONS(1718), - [anon_sym_DOLLARappend] = ACTIONS(1718), - [anon_sym_DOLLARconcat] = ACTIONS(1718), - [anon_sym_DOLLAReval] = ACTIONS(1718), - [anon_sym_DOLLARis_const] = ACTIONS(1718), - [anon_sym_DOLLARsizeof] = ACTIONS(1718), - [anon_sym_DOLLARstringify] = ACTIONS(1718), - [anon_sym_DOLLARand] = ACTIONS(1718), - [anon_sym_DOLLARdefined] = ACTIONS(1718), - [anon_sym_DOLLARembed] = ACTIONS(1718), - [anon_sym_DOLLARor] = ACTIONS(1718), - [anon_sym_DOLLARfeature] = ACTIONS(1718), - [anon_sym_DOLLARassignable] = ACTIONS(1718), - [anon_sym_BANG] = ACTIONS(1720), - [anon_sym_TILDE] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1720), - [anon_sym_DASH_DASH] = ACTIONS(1720), - [anon_sym_typeid] = ACTIONS(1718), - [anon_sym_LBRACE_PIPE] = ACTIONS(1720), - [anon_sym_void] = ACTIONS(1718), - [anon_sym_bool] = ACTIONS(1718), - [anon_sym_char] = ACTIONS(1718), - [anon_sym_ichar] = ACTIONS(1718), - [anon_sym_short] = ACTIONS(1718), - [anon_sym_ushort] = ACTIONS(1718), - [anon_sym_uint] = ACTIONS(1718), - [anon_sym_long] = ACTIONS(1718), - [anon_sym_ulong] = ACTIONS(1718), - [anon_sym_int128] = ACTIONS(1718), - [anon_sym_uint128] = ACTIONS(1718), - [anon_sym_float] = ACTIONS(1718), - [anon_sym_double] = ACTIONS(1718), - [anon_sym_float16] = ACTIONS(1718), - [anon_sym_bfloat16] = ACTIONS(1718), - [anon_sym_float128] = ACTIONS(1718), - [anon_sym_iptr] = ACTIONS(1718), - [anon_sym_uptr] = ACTIONS(1718), - [anon_sym_isz] = ACTIONS(1718), - [anon_sym_usz] = ACTIONS(1718), - [anon_sym_anyfault] = ACTIONS(1718), - [anon_sym_any] = ACTIONS(1718), - [anon_sym_DOLLARtypeof] = ACTIONS(1718), - [anon_sym_DOLLARtypefrom] = ACTIONS(1718), - [anon_sym_DOLLARvatype] = ACTIONS(1718), - [anon_sym_DOLLARevaltype] = ACTIONS(1718), - [sym_real_literal] = ACTIONS(1720), - }, - [856] = { - [sym_line_comment] = STATE(856), - [sym_doc_comment] = STATE(856), - [sym_block_comment] = STATE(856), - [sym_ident] = ACTIONS(1686), - [sym_integer_literal] = ACTIONS(1688), - [anon_sym_SQUOTE] = ACTIONS(1688), - [anon_sym_DQUOTE] = ACTIONS(1688), - [anon_sym_BQUOTE] = ACTIONS(1688), - [sym_bytes_literal] = ACTIONS(1688), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1686), - [sym_at_ident] = ACTIONS(1688), - [sym_hash_ident] = ACTIONS(1688), - [sym_type_ident] = ACTIONS(1688), - [sym_ct_type_ident] = ACTIONS(1688), - [sym_const_ident] = ACTIONS(1686), - [sym_builtin] = ACTIONS(1688), - [anon_sym_LPAREN] = ACTIONS(1688), - [anon_sym_AMP] = ACTIONS(1686), - [anon_sym_static] = ACTIONS(1686), - [anon_sym_tlocal] = ACTIONS(1686), - [anon_sym_SEMI] = ACTIONS(1688), - [anon_sym_fn] = ACTIONS(1686), - [anon_sym_LBRACE] = ACTIONS(1686), - [anon_sym_const] = ACTIONS(1686), - [anon_sym_var] = ACTIONS(1686), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(1686), - [anon_sym_break] = ACTIONS(1686), - [anon_sym_defer] = ACTIONS(1686), - [anon_sym_assert] = ACTIONS(1686), - [anon_sym_nextcase] = ACTIONS(1686), - [anon_sym_switch] = ACTIONS(1686), - [anon_sym_AMP_AMP] = ACTIONS(1688), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_for] = ACTIONS(1686), - [anon_sym_foreach] = ACTIONS(1686), - [anon_sym_foreach_r] = ACTIONS(1686), - [anon_sym_while] = ACTIONS(1686), - [anon_sym_do] = ACTIONS(1686), - [anon_sym_int] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(1688), - [anon_sym_asm] = ACTIONS(1686), - [anon_sym_DOLLARassert] = ACTIONS(1686), - [anon_sym_DOLLARerror] = ACTIONS(1686), - [anon_sym_DOLLARecho] = ACTIONS(1686), - [anon_sym_DOLLARif] = ACTIONS(1686), - [anon_sym_DOLLARswitch] = ACTIONS(1686), - [anon_sym_DOLLARfor] = ACTIONS(1686), - [anon_sym_DOLLARforeach] = ACTIONS(1686), - [anon_sym_DOLLARalignof] = ACTIONS(1686), - [anon_sym_DOLLARextnameof] = ACTIONS(1686), - [anon_sym_DOLLARnameof] = ACTIONS(1686), - [anon_sym_DOLLARoffsetof] = ACTIONS(1686), - [anon_sym_DOLLARqnameof] = ACTIONS(1686), - [anon_sym_DOLLARvaconst] = ACTIONS(1686), - [anon_sym_DOLLARvaarg] = ACTIONS(1686), - [anon_sym_DOLLARvaref] = ACTIONS(1686), - [anon_sym_DOLLARvaexpr] = ACTIONS(1686), - [anon_sym_true] = ACTIONS(1686), - [anon_sym_false] = ACTIONS(1686), - [anon_sym_null] = ACTIONS(1686), - [anon_sym_DOLLARvacount] = ACTIONS(1686), - [anon_sym_DOLLARappend] = ACTIONS(1686), - [anon_sym_DOLLARconcat] = ACTIONS(1686), - [anon_sym_DOLLAReval] = ACTIONS(1686), - [anon_sym_DOLLARis_const] = ACTIONS(1686), - [anon_sym_DOLLARsizeof] = ACTIONS(1686), - [anon_sym_DOLLARstringify] = ACTIONS(1686), - [anon_sym_DOLLARand] = ACTIONS(1686), - [anon_sym_DOLLARdefined] = ACTIONS(1686), - [anon_sym_DOLLARembed] = ACTIONS(1686), - [anon_sym_DOLLARor] = ACTIONS(1686), - [anon_sym_DOLLARfeature] = ACTIONS(1686), - [anon_sym_DOLLARassignable] = ACTIONS(1686), - [anon_sym_BANG] = ACTIONS(1688), - [anon_sym_TILDE] = ACTIONS(1688), - [anon_sym_PLUS_PLUS] = ACTIONS(1688), - [anon_sym_DASH_DASH] = ACTIONS(1688), - [anon_sym_typeid] = ACTIONS(1686), - [anon_sym_LBRACE_PIPE] = ACTIONS(1688), - [anon_sym_void] = ACTIONS(1686), - [anon_sym_bool] = ACTIONS(1686), - [anon_sym_char] = ACTIONS(1686), - [anon_sym_ichar] = ACTIONS(1686), - [anon_sym_short] = ACTIONS(1686), - [anon_sym_ushort] = ACTIONS(1686), - [anon_sym_uint] = ACTIONS(1686), - [anon_sym_long] = ACTIONS(1686), - [anon_sym_ulong] = ACTIONS(1686), - [anon_sym_int128] = ACTIONS(1686), - [anon_sym_uint128] = ACTIONS(1686), - [anon_sym_float] = ACTIONS(1686), - [anon_sym_double] = ACTIONS(1686), - [anon_sym_float16] = ACTIONS(1686), - [anon_sym_bfloat16] = ACTIONS(1686), - [anon_sym_float128] = ACTIONS(1686), - [anon_sym_iptr] = ACTIONS(1686), - [anon_sym_uptr] = ACTIONS(1686), - [anon_sym_isz] = ACTIONS(1686), - [anon_sym_usz] = ACTIONS(1686), - [anon_sym_anyfault] = ACTIONS(1686), - [anon_sym_any] = ACTIONS(1686), - [anon_sym_DOLLARtypeof] = ACTIONS(1686), - [anon_sym_DOLLARtypefrom] = ACTIONS(1686), - [anon_sym_DOLLARvatype] = ACTIONS(1686), - [anon_sym_DOLLARevaltype] = ACTIONS(1686), - [sym_real_literal] = ACTIONS(1688), - }, - [857] = { - [sym_line_comment] = STATE(857), - [sym_doc_comment] = STATE(857), - [sym_block_comment] = STATE(857), - [sym_ident] = ACTIONS(1698), - [sym_integer_literal] = ACTIONS(1700), - [anon_sym_SQUOTE] = ACTIONS(1700), - [anon_sym_DQUOTE] = ACTIONS(1700), - [anon_sym_BQUOTE] = ACTIONS(1700), - [sym_bytes_literal] = ACTIONS(1700), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1698), - [sym_at_ident] = ACTIONS(1700), - [sym_hash_ident] = ACTIONS(1700), - [sym_type_ident] = ACTIONS(1700), - [sym_ct_type_ident] = ACTIONS(1700), - [sym_const_ident] = ACTIONS(1698), - [sym_builtin] = ACTIONS(1700), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_AMP] = ACTIONS(1698), - [anon_sym_static] = ACTIONS(1698), - [anon_sym_tlocal] = ACTIONS(1698), - [anon_sym_SEMI] = ACTIONS(1700), - [anon_sym_fn] = ACTIONS(1698), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_const] = ACTIONS(1698), - [anon_sym_var] = ACTIONS(1698), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(1698), - [anon_sym_break] = ACTIONS(1698), - [anon_sym_defer] = ACTIONS(1698), - [anon_sym_assert] = ACTIONS(1698), - [anon_sym_nextcase] = ACTIONS(1698), - [anon_sym_switch] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1700), - [anon_sym_if] = ACTIONS(1698), - [anon_sym_for] = ACTIONS(1698), - [anon_sym_foreach] = ACTIONS(1698), - [anon_sym_foreach_r] = ACTIONS(1698), - [anon_sym_while] = ACTIONS(1698), - [anon_sym_do] = ACTIONS(1698), - [anon_sym_int] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1698), - [anon_sym_DASH] = ACTIONS(1698), - [anon_sym_STAR] = ACTIONS(1700), - [anon_sym_asm] = ACTIONS(1698), - [anon_sym_DOLLARassert] = ACTIONS(1698), - [anon_sym_DOLLARerror] = ACTIONS(1698), - [anon_sym_DOLLARecho] = ACTIONS(1698), - [anon_sym_DOLLARif] = ACTIONS(1698), - [anon_sym_DOLLARswitch] = ACTIONS(1698), - [anon_sym_DOLLARfor] = ACTIONS(1698), - [anon_sym_DOLLARforeach] = ACTIONS(1698), - [anon_sym_DOLLARalignof] = ACTIONS(1698), - [anon_sym_DOLLARextnameof] = ACTIONS(1698), - [anon_sym_DOLLARnameof] = ACTIONS(1698), - [anon_sym_DOLLARoffsetof] = ACTIONS(1698), - [anon_sym_DOLLARqnameof] = ACTIONS(1698), - [anon_sym_DOLLARvaconst] = ACTIONS(1698), - [anon_sym_DOLLARvaarg] = ACTIONS(1698), - [anon_sym_DOLLARvaref] = ACTIONS(1698), - [anon_sym_DOLLARvaexpr] = ACTIONS(1698), - [anon_sym_true] = ACTIONS(1698), - [anon_sym_false] = ACTIONS(1698), - [anon_sym_null] = ACTIONS(1698), - [anon_sym_DOLLARvacount] = ACTIONS(1698), - [anon_sym_DOLLARappend] = ACTIONS(1698), - [anon_sym_DOLLARconcat] = ACTIONS(1698), - [anon_sym_DOLLAReval] = ACTIONS(1698), - [anon_sym_DOLLARis_const] = ACTIONS(1698), - [anon_sym_DOLLARsizeof] = ACTIONS(1698), - [anon_sym_DOLLARstringify] = ACTIONS(1698), - [anon_sym_DOLLARand] = ACTIONS(1698), - [anon_sym_DOLLARdefined] = ACTIONS(1698), - [anon_sym_DOLLARembed] = ACTIONS(1698), - [anon_sym_DOLLARor] = ACTIONS(1698), - [anon_sym_DOLLARfeature] = ACTIONS(1698), - [anon_sym_DOLLARassignable] = ACTIONS(1698), - [anon_sym_BANG] = ACTIONS(1700), - [anon_sym_TILDE] = ACTIONS(1700), - [anon_sym_PLUS_PLUS] = ACTIONS(1700), - [anon_sym_DASH_DASH] = ACTIONS(1700), - [anon_sym_typeid] = ACTIONS(1698), - [anon_sym_LBRACE_PIPE] = ACTIONS(1700), - [anon_sym_void] = ACTIONS(1698), - [anon_sym_bool] = ACTIONS(1698), - [anon_sym_char] = ACTIONS(1698), - [anon_sym_ichar] = ACTIONS(1698), - [anon_sym_short] = ACTIONS(1698), - [anon_sym_ushort] = ACTIONS(1698), - [anon_sym_uint] = ACTIONS(1698), - [anon_sym_long] = ACTIONS(1698), - [anon_sym_ulong] = ACTIONS(1698), - [anon_sym_int128] = ACTIONS(1698), - [anon_sym_uint128] = ACTIONS(1698), - [anon_sym_float] = ACTIONS(1698), - [anon_sym_double] = ACTIONS(1698), - [anon_sym_float16] = ACTIONS(1698), - [anon_sym_bfloat16] = ACTIONS(1698), - [anon_sym_float128] = ACTIONS(1698), - [anon_sym_iptr] = ACTIONS(1698), - [anon_sym_uptr] = ACTIONS(1698), - [anon_sym_isz] = ACTIONS(1698), - [anon_sym_usz] = ACTIONS(1698), - [anon_sym_anyfault] = ACTIONS(1698), - [anon_sym_any] = ACTIONS(1698), - [anon_sym_DOLLARtypeof] = ACTIONS(1698), - [anon_sym_DOLLARtypefrom] = ACTIONS(1698), - [anon_sym_DOLLARvatype] = ACTIONS(1698), - [anon_sym_DOLLARevaltype] = ACTIONS(1698), - [sym_real_literal] = ACTIONS(1700), - }, - [858] = { - [sym_line_comment] = STATE(858), - [sym_doc_comment] = STATE(858), - [sym_block_comment] = STATE(858), - [sym_ident] = ACTIONS(1690), - [sym_integer_literal] = ACTIONS(1692), - [anon_sym_SQUOTE] = ACTIONS(1692), - [anon_sym_DQUOTE] = ACTIONS(1692), - [anon_sym_BQUOTE] = ACTIONS(1692), - [sym_bytes_literal] = ACTIONS(1692), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1690), - [sym_at_ident] = ACTIONS(1692), - [sym_hash_ident] = ACTIONS(1692), - [sym_type_ident] = ACTIONS(1692), - [sym_ct_type_ident] = ACTIONS(1692), - [sym_const_ident] = ACTIONS(1690), - [sym_builtin] = ACTIONS(1692), - [anon_sym_LPAREN] = ACTIONS(1692), - [anon_sym_AMP] = ACTIONS(1690), - [anon_sym_static] = ACTIONS(1690), - [anon_sym_tlocal] = ACTIONS(1690), - [anon_sym_SEMI] = ACTIONS(1692), - [anon_sym_fn] = ACTIONS(1690), - [anon_sym_LBRACE] = ACTIONS(1690), - [anon_sym_const] = ACTIONS(1690), - [anon_sym_var] = ACTIONS(1690), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(1690), - [anon_sym_break] = ACTIONS(1690), - [anon_sym_defer] = ACTIONS(1690), - [anon_sym_assert] = ACTIONS(1690), - [anon_sym_nextcase] = ACTIONS(1690), - [anon_sym_switch] = ACTIONS(1690), - [anon_sym_AMP_AMP] = ACTIONS(1692), - [anon_sym_if] = ACTIONS(1690), - [anon_sym_for] = ACTIONS(1690), - [anon_sym_foreach] = ACTIONS(1690), - [anon_sym_foreach_r] = ACTIONS(1690), - [anon_sym_while] = ACTIONS(1690), - [anon_sym_do] = ACTIONS(1690), - [anon_sym_int] = ACTIONS(1690), - [anon_sym_PLUS] = ACTIONS(1690), - [anon_sym_DASH] = ACTIONS(1690), - [anon_sym_STAR] = ACTIONS(1692), - [anon_sym_asm] = ACTIONS(1690), - [anon_sym_DOLLARassert] = ACTIONS(1690), - [anon_sym_DOLLARerror] = ACTIONS(1690), - [anon_sym_DOLLARecho] = ACTIONS(1690), - [anon_sym_DOLLARif] = ACTIONS(1690), - [anon_sym_DOLLARswitch] = ACTIONS(1690), - [anon_sym_DOLLARfor] = ACTIONS(1690), - [anon_sym_DOLLARforeach] = ACTIONS(1690), - [anon_sym_DOLLARalignof] = ACTIONS(1690), - [anon_sym_DOLLARextnameof] = ACTIONS(1690), - [anon_sym_DOLLARnameof] = ACTIONS(1690), - [anon_sym_DOLLARoffsetof] = ACTIONS(1690), - [anon_sym_DOLLARqnameof] = ACTIONS(1690), - [anon_sym_DOLLARvaconst] = ACTIONS(1690), - [anon_sym_DOLLARvaarg] = ACTIONS(1690), - [anon_sym_DOLLARvaref] = ACTIONS(1690), - [anon_sym_DOLLARvaexpr] = ACTIONS(1690), - [anon_sym_true] = ACTIONS(1690), - [anon_sym_false] = ACTIONS(1690), - [anon_sym_null] = ACTIONS(1690), - [anon_sym_DOLLARvacount] = ACTIONS(1690), - [anon_sym_DOLLARappend] = ACTIONS(1690), - [anon_sym_DOLLARconcat] = ACTIONS(1690), - [anon_sym_DOLLAReval] = ACTIONS(1690), - [anon_sym_DOLLARis_const] = ACTIONS(1690), - [anon_sym_DOLLARsizeof] = ACTIONS(1690), - [anon_sym_DOLLARstringify] = ACTIONS(1690), - [anon_sym_DOLLARand] = ACTIONS(1690), - [anon_sym_DOLLARdefined] = ACTIONS(1690), - [anon_sym_DOLLARembed] = ACTIONS(1690), - [anon_sym_DOLLARor] = ACTIONS(1690), - [anon_sym_DOLLARfeature] = ACTIONS(1690), - [anon_sym_DOLLARassignable] = ACTIONS(1690), - [anon_sym_BANG] = ACTIONS(1692), - [anon_sym_TILDE] = ACTIONS(1692), - [anon_sym_PLUS_PLUS] = ACTIONS(1692), - [anon_sym_DASH_DASH] = ACTIONS(1692), - [anon_sym_typeid] = ACTIONS(1690), - [anon_sym_LBRACE_PIPE] = ACTIONS(1692), - [anon_sym_void] = ACTIONS(1690), - [anon_sym_bool] = ACTIONS(1690), - [anon_sym_char] = ACTIONS(1690), - [anon_sym_ichar] = ACTIONS(1690), - [anon_sym_short] = ACTIONS(1690), - [anon_sym_ushort] = ACTIONS(1690), - [anon_sym_uint] = ACTIONS(1690), - [anon_sym_long] = ACTIONS(1690), - [anon_sym_ulong] = ACTIONS(1690), - [anon_sym_int128] = ACTIONS(1690), - [anon_sym_uint128] = ACTIONS(1690), - [anon_sym_float] = ACTIONS(1690), - [anon_sym_double] = ACTIONS(1690), - [anon_sym_float16] = ACTIONS(1690), - [anon_sym_bfloat16] = ACTIONS(1690), - [anon_sym_float128] = ACTIONS(1690), - [anon_sym_iptr] = ACTIONS(1690), - [anon_sym_uptr] = ACTIONS(1690), - [anon_sym_isz] = ACTIONS(1690), - [anon_sym_usz] = ACTIONS(1690), - [anon_sym_anyfault] = ACTIONS(1690), - [anon_sym_any] = ACTIONS(1690), - [anon_sym_DOLLARtypeof] = ACTIONS(1690), - [anon_sym_DOLLARtypefrom] = ACTIONS(1690), - [anon_sym_DOLLARvatype] = ACTIONS(1690), - [anon_sym_DOLLARevaltype] = ACTIONS(1690), - [sym_real_literal] = ACTIONS(1692), - }, - [859] = { - [sym_line_comment] = STATE(859), - [sym_doc_comment] = STATE(859), - [sym_block_comment] = STATE(859), - [sym_ident] = ACTIONS(1694), - [sym_integer_literal] = ACTIONS(1696), - [anon_sym_SQUOTE] = ACTIONS(1696), - [anon_sym_DQUOTE] = ACTIONS(1696), - [anon_sym_BQUOTE] = ACTIONS(1696), - [sym_bytes_literal] = ACTIONS(1696), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1694), - [sym_at_ident] = ACTIONS(1696), - [sym_hash_ident] = ACTIONS(1696), - [sym_type_ident] = ACTIONS(1696), - [sym_ct_type_ident] = ACTIONS(1696), - [sym_const_ident] = ACTIONS(1694), - [sym_builtin] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_AMP] = ACTIONS(1694), - [anon_sym_static] = ACTIONS(1694), - [anon_sym_tlocal] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1696), - [anon_sym_fn] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1694), - [anon_sym_const] = ACTIONS(1694), - [anon_sym_var] = ACTIONS(1694), - [anon_sym_return] = ACTIONS(1694), - [anon_sym_continue] = ACTIONS(1694), - [anon_sym_break] = ACTIONS(1694), - [anon_sym_defer] = ACTIONS(1694), - [anon_sym_assert] = ACTIONS(1694), - [anon_sym_nextcase] = ACTIONS(1694), - [anon_sym_switch] = ACTIONS(1694), - [anon_sym_AMP_AMP] = ACTIONS(1696), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_for] = ACTIONS(1694), - [anon_sym_foreach] = ACTIONS(1694), - [anon_sym_foreach_r] = ACTIONS(1694), - [anon_sym_while] = ACTIONS(1694), - [anon_sym_do] = ACTIONS(1694), - [anon_sym_int] = ACTIONS(1694), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1696), - [anon_sym_asm] = ACTIONS(1694), - [anon_sym_DOLLARassert] = ACTIONS(1694), - [anon_sym_DOLLARerror] = ACTIONS(1694), - [anon_sym_DOLLARecho] = ACTIONS(1694), - [anon_sym_DOLLARif] = ACTIONS(1694), - [anon_sym_DOLLARswitch] = ACTIONS(1694), - [anon_sym_DOLLARfor] = ACTIONS(1694), - [anon_sym_DOLLARforeach] = ACTIONS(1694), - [anon_sym_DOLLARalignof] = ACTIONS(1694), - [anon_sym_DOLLARextnameof] = ACTIONS(1694), - [anon_sym_DOLLARnameof] = ACTIONS(1694), - [anon_sym_DOLLARoffsetof] = ACTIONS(1694), - [anon_sym_DOLLARqnameof] = ACTIONS(1694), - [anon_sym_DOLLARvaconst] = ACTIONS(1694), - [anon_sym_DOLLARvaarg] = ACTIONS(1694), - [anon_sym_DOLLARvaref] = ACTIONS(1694), - [anon_sym_DOLLARvaexpr] = ACTIONS(1694), - [anon_sym_true] = ACTIONS(1694), - [anon_sym_false] = ACTIONS(1694), - [anon_sym_null] = ACTIONS(1694), - [anon_sym_DOLLARvacount] = ACTIONS(1694), - [anon_sym_DOLLARappend] = ACTIONS(1694), - [anon_sym_DOLLARconcat] = ACTIONS(1694), - [anon_sym_DOLLAReval] = ACTIONS(1694), - [anon_sym_DOLLARis_const] = ACTIONS(1694), - [anon_sym_DOLLARsizeof] = ACTIONS(1694), - [anon_sym_DOLLARstringify] = ACTIONS(1694), - [anon_sym_DOLLARand] = ACTIONS(1694), - [anon_sym_DOLLARdefined] = ACTIONS(1694), - [anon_sym_DOLLARembed] = ACTIONS(1694), - [anon_sym_DOLLARor] = ACTIONS(1694), - [anon_sym_DOLLARfeature] = ACTIONS(1694), - [anon_sym_DOLLARassignable] = ACTIONS(1694), - [anon_sym_BANG] = ACTIONS(1696), - [anon_sym_TILDE] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_typeid] = ACTIONS(1694), - [anon_sym_LBRACE_PIPE] = ACTIONS(1696), - [anon_sym_void] = ACTIONS(1694), - [anon_sym_bool] = ACTIONS(1694), - [anon_sym_char] = ACTIONS(1694), - [anon_sym_ichar] = ACTIONS(1694), - [anon_sym_short] = ACTIONS(1694), - [anon_sym_ushort] = ACTIONS(1694), - [anon_sym_uint] = ACTIONS(1694), - [anon_sym_long] = ACTIONS(1694), - [anon_sym_ulong] = ACTIONS(1694), - [anon_sym_int128] = ACTIONS(1694), - [anon_sym_uint128] = ACTIONS(1694), - [anon_sym_float] = ACTIONS(1694), - [anon_sym_double] = ACTIONS(1694), - [anon_sym_float16] = ACTIONS(1694), - [anon_sym_bfloat16] = ACTIONS(1694), - [anon_sym_float128] = ACTIONS(1694), - [anon_sym_iptr] = ACTIONS(1694), - [anon_sym_uptr] = ACTIONS(1694), - [anon_sym_isz] = ACTIONS(1694), - [anon_sym_usz] = ACTIONS(1694), - [anon_sym_anyfault] = ACTIONS(1694), - [anon_sym_any] = ACTIONS(1694), - [anon_sym_DOLLARtypeof] = ACTIONS(1694), - [anon_sym_DOLLARtypefrom] = ACTIONS(1694), - [anon_sym_DOLLARvatype] = ACTIONS(1694), - [anon_sym_DOLLARevaltype] = ACTIONS(1694), - [sym_real_literal] = ACTIONS(1696), - }, - [860] = { - [sym_line_comment] = STATE(860), - [sym_doc_comment] = STATE(860), - [sym_block_comment] = STATE(860), - [sym_ident] = ACTIONS(1722), - [sym_integer_literal] = ACTIONS(1724), - [anon_sym_SQUOTE] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [anon_sym_BQUOTE] = ACTIONS(1724), - [sym_bytes_literal] = ACTIONS(1724), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1722), - [sym_at_ident] = ACTIONS(1724), - [sym_hash_ident] = ACTIONS(1724), - [sym_type_ident] = ACTIONS(1724), - [sym_ct_type_ident] = ACTIONS(1724), - [sym_const_ident] = ACTIONS(1722), - [sym_builtin] = ACTIONS(1724), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_tlocal] = ACTIONS(1722), - [anon_sym_SEMI] = ACTIONS(1724), - [anon_sym_fn] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1722), - [anon_sym_const] = ACTIONS(1722), - [anon_sym_var] = ACTIONS(1722), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(1722), - [anon_sym_break] = ACTIONS(1722), - [anon_sym_defer] = ACTIONS(1722), - [anon_sym_assert] = ACTIONS(1722), - [anon_sym_nextcase] = ACTIONS(1722), - [anon_sym_switch] = ACTIONS(1722), - [anon_sym_AMP_AMP] = ACTIONS(1724), - [anon_sym_if] = ACTIONS(1722), - [anon_sym_for] = ACTIONS(1722), - [anon_sym_foreach] = ACTIONS(1722), - [anon_sym_foreach_r] = ACTIONS(1722), - [anon_sym_while] = ACTIONS(1722), - [anon_sym_do] = ACTIONS(1722), - [anon_sym_int] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_STAR] = ACTIONS(1724), - [anon_sym_asm] = ACTIONS(1722), - [anon_sym_DOLLARassert] = ACTIONS(1722), - [anon_sym_DOLLARerror] = ACTIONS(1722), - [anon_sym_DOLLARecho] = ACTIONS(1722), - [anon_sym_DOLLARif] = ACTIONS(1722), - [anon_sym_DOLLARswitch] = ACTIONS(1722), - [anon_sym_DOLLARfor] = ACTIONS(1722), - [anon_sym_DOLLARforeach] = ACTIONS(1722), - [anon_sym_DOLLARalignof] = ACTIONS(1722), - [anon_sym_DOLLARextnameof] = ACTIONS(1722), - [anon_sym_DOLLARnameof] = ACTIONS(1722), - [anon_sym_DOLLARoffsetof] = ACTIONS(1722), - [anon_sym_DOLLARqnameof] = ACTIONS(1722), - [anon_sym_DOLLARvaconst] = ACTIONS(1722), - [anon_sym_DOLLARvaarg] = ACTIONS(1722), - [anon_sym_DOLLARvaref] = ACTIONS(1722), - [anon_sym_DOLLARvaexpr] = ACTIONS(1722), - [anon_sym_true] = ACTIONS(1722), - [anon_sym_false] = ACTIONS(1722), - [anon_sym_null] = ACTIONS(1722), - [anon_sym_DOLLARvacount] = ACTIONS(1722), - [anon_sym_DOLLARappend] = ACTIONS(1722), - [anon_sym_DOLLARconcat] = ACTIONS(1722), - [anon_sym_DOLLAReval] = ACTIONS(1722), - [anon_sym_DOLLARis_const] = ACTIONS(1722), - [anon_sym_DOLLARsizeof] = ACTIONS(1722), - [anon_sym_DOLLARstringify] = ACTIONS(1722), - [anon_sym_DOLLARand] = ACTIONS(1722), - [anon_sym_DOLLARdefined] = ACTIONS(1722), - [anon_sym_DOLLARembed] = ACTIONS(1722), - [anon_sym_DOLLARor] = ACTIONS(1722), - [anon_sym_DOLLARfeature] = ACTIONS(1722), - [anon_sym_DOLLARassignable] = ACTIONS(1722), - [anon_sym_BANG] = ACTIONS(1724), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_PLUS_PLUS] = ACTIONS(1724), - [anon_sym_DASH_DASH] = ACTIONS(1724), - [anon_sym_typeid] = ACTIONS(1722), - [anon_sym_LBRACE_PIPE] = ACTIONS(1724), - [anon_sym_void] = ACTIONS(1722), - [anon_sym_bool] = ACTIONS(1722), - [anon_sym_char] = ACTIONS(1722), - [anon_sym_ichar] = ACTIONS(1722), - [anon_sym_short] = ACTIONS(1722), - [anon_sym_ushort] = ACTIONS(1722), - [anon_sym_uint] = ACTIONS(1722), - [anon_sym_long] = ACTIONS(1722), - [anon_sym_ulong] = ACTIONS(1722), - [anon_sym_int128] = ACTIONS(1722), - [anon_sym_uint128] = ACTIONS(1722), - [anon_sym_float] = ACTIONS(1722), - [anon_sym_double] = ACTIONS(1722), - [anon_sym_float16] = ACTIONS(1722), - [anon_sym_bfloat16] = ACTIONS(1722), - [anon_sym_float128] = ACTIONS(1722), - [anon_sym_iptr] = ACTIONS(1722), - [anon_sym_uptr] = ACTIONS(1722), - [anon_sym_isz] = ACTIONS(1722), - [anon_sym_usz] = ACTIONS(1722), - [anon_sym_anyfault] = ACTIONS(1722), - [anon_sym_any] = ACTIONS(1722), - [anon_sym_DOLLARtypeof] = ACTIONS(1722), - [anon_sym_DOLLARtypefrom] = ACTIONS(1722), - [anon_sym_DOLLARvatype] = ACTIONS(1722), - [anon_sym_DOLLARevaltype] = ACTIONS(1722), - [sym_real_literal] = ACTIONS(1724), - }, - [861] = { - [sym_line_comment] = STATE(861), - [sym_doc_comment] = STATE(861), - [sym_block_comment] = STATE(861), - [sym_ident] = ACTIONS(1702), - [sym_integer_literal] = ACTIONS(1704), - [anon_sym_SQUOTE] = ACTIONS(1704), - [anon_sym_DQUOTE] = ACTIONS(1704), - [anon_sym_BQUOTE] = ACTIONS(1704), - [sym_bytes_literal] = ACTIONS(1704), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1702), - [sym_at_ident] = ACTIONS(1704), - [sym_hash_ident] = ACTIONS(1704), - [sym_type_ident] = ACTIONS(1704), - [sym_ct_type_ident] = ACTIONS(1704), - [sym_const_ident] = ACTIONS(1702), - [sym_builtin] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(1704), - [anon_sym_AMP] = ACTIONS(1702), - [anon_sym_static] = ACTIONS(1702), - [anon_sym_tlocal] = ACTIONS(1702), - [anon_sym_SEMI] = ACTIONS(1704), - [anon_sym_fn] = ACTIONS(1702), - [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_const] = ACTIONS(1702), - [anon_sym_var] = ACTIONS(1702), - [anon_sym_return] = ACTIONS(1702), - [anon_sym_continue] = ACTIONS(1702), - [anon_sym_break] = ACTIONS(1702), - [anon_sym_defer] = ACTIONS(1702), - [anon_sym_assert] = ACTIONS(1702), - [anon_sym_nextcase] = ACTIONS(1702), - [anon_sym_switch] = ACTIONS(1702), - [anon_sym_AMP_AMP] = ACTIONS(1704), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_for] = ACTIONS(1702), - [anon_sym_foreach] = ACTIONS(1702), - [anon_sym_foreach_r] = ACTIONS(1702), - [anon_sym_while] = ACTIONS(1702), - [anon_sym_do] = ACTIONS(1702), - [anon_sym_int] = ACTIONS(1702), - [anon_sym_PLUS] = ACTIONS(1702), - [anon_sym_DASH] = ACTIONS(1702), - [anon_sym_STAR] = ACTIONS(1704), - [anon_sym_asm] = ACTIONS(1702), - [anon_sym_DOLLARassert] = ACTIONS(1702), - [anon_sym_DOLLARerror] = ACTIONS(1702), - [anon_sym_DOLLARecho] = ACTIONS(1702), - [anon_sym_DOLLARif] = ACTIONS(1702), - [anon_sym_DOLLARswitch] = ACTIONS(1702), - [anon_sym_DOLLARfor] = ACTIONS(1702), - [anon_sym_DOLLARforeach] = ACTIONS(1702), - [anon_sym_DOLLARalignof] = ACTIONS(1702), - [anon_sym_DOLLARextnameof] = ACTIONS(1702), - [anon_sym_DOLLARnameof] = ACTIONS(1702), - [anon_sym_DOLLARoffsetof] = ACTIONS(1702), - [anon_sym_DOLLARqnameof] = ACTIONS(1702), - [anon_sym_DOLLARvaconst] = ACTIONS(1702), - [anon_sym_DOLLARvaarg] = ACTIONS(1702), - [anon_sym_DOLLARvaref] = ACTIONS(1702), - [anon_sym_DOLLARvaexpr] = ACTIONS(1702), - [anon_sym_true] = ACTIONS(1702), - [anon_sym_false] = ACTIONS(1702), - [anon_sym_null] = ACTIONS(1702), - [anon_sym_DOLLARvacount] = ACTIONS(1702), - [anon_sym_DOLLARappend] = ACTIONS(1702), - [anon_sym_DOLLARconcat] = ACTIONS(1702), - [anon_sym_DOLLAReval] = ACTIONS(1702), - [anon_sym_DOLLARis_const] = ACTIONS(1702), - [anon_sym_DOLLARsizeof] = ACTIONS(1702), - [anon_sym_DOLLARstringify] = ACTIONS(1702), - [anon_sym_DOLLARand] = ACTIONS(1702), - [anon_sym_DOLLARdefined] = ACTIONS(1702), - [anon_sym_DOLLARembed] = ACTIONS(1702), - [anon_sym_DOLLARor] = ACTIONS(1702), - [anon_sym_DOLLARfeature] = ACTIONS(1702), - [anon_sym_DOLLARassignable] = ACTIONS(1702), - [anon_sym_BANG] = ACTIONS(1704), - [anon_sym_TILDE] = ACTIONS(1704), - [anon_sym_PLUS_PLUS] = ACTIONS(1704), - [anon_sym_DASH_DASH] = ACTIONS(1704), - [anon_sym_typeid] = ACTIONS(1702), - [anon_sym_LBRACE_PIPE] = ACTIONS(1704), - [anon_sym_void] = ACTIONS(1702), - [anon_sym_bool] = ACTIONS(1702), - [anon_sym_char] = ACTIONS(1702), - [anon_sym_ichar] = ACTIONS(1702), - [anon_sym_short] = ACTIONS(1702), - [anon_sym_ushort] = ACTIONS(1702), - [anon_sym_uint] = ACTIONS(1702), - [anon_sym_long] = ACTIONS(1702), - [anon_sym_ulong] = ACTIONS(1702), - [anon_sym_int128] = ACTIONS(1702), - [anon_sym_uint128] = ACTIONS(1702), - [anon_sym_float] = ACTIONS(1702), - [anon_sym_double] = ACTIONS(1702), - [anon_sym_float16] = ACTIONS(1702), - [anon_sym_bfloat16] = ACTIONS(1702), - [anon_sym_float128] = ACTIONS(1702), - [anon_sym_iptr] = ACTIONS(1702), - [anon_sym_uptr] = ACTIONS(1702), - [anon_sym_isz] = ACTIONS(1702), - [anon_sym_usz] = ACTIONS(1702), - [anon_sym_anyfault] = ACTIONS(1702), - [anon_sym_any] = ACTIONS(1702), - [anon_sym_DOLLARtypeof] = ACTIONS(1702), - [anon_sym_DOLLARtypefrom] = ACTIONS(1702), - [anon_sym_DOLLARvatype] = ACTIONS(1702), - [anon_sym_DOLLARevaltype] = ACTIONS(1702), - [sym_real_literal] = ACTIONS(1704), - }, - [862] = { - [sym_line_comment] = STATE(862), - [sym_doc_comment] = STATE(862), - [sym_block_comment] = STATE(862), - [sym_ident] = ACTIONS(1710), - [sym_integer_literal] = ACTIONS(1712), - [anon_sym_SQUOTE] = ACTIONS(1712), - [anon_sym_DQUOTE] = ACTIONS(1712), - [anon_sym_BQUOTE] = ACTIONS(1712), - [sym_bytes_literal] = ACTIONS(1712), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1710), - [sym_at_ident] = ACTIONS(1712), - [sym_hash_ident] = ACTIONS(1712), - [sym_type_ident] = ACTIONS(1712), - [sym_ct_type_ident] = ACTIONS(1712), - [sym_const_ident] = ACTIONS(1710), - [sym_builtin] = ACTIONS(1712), - [anon_sym_LPAREN] = ACTIONS(1712), - [anon_sym_AMP] = ACTIONS(1710), - [anon_sym_static] = ACTIONS(1710), - [anon_sym_tlocal] = ACTIONS(1710), - [anon_sym_SEMI] = ACTIONS(1712), - [anon_sym_fn] = ACTIONS(1710), - [anon_sym_LBRACE] = ACTIONS(1710), - [anon_sym_const] = ACTIONS(1710), - [anon_sym_var] = ACTIONS(1710), - [anon_sym_return] = ACTIONS(1710), - [anon_sym_continue] = ACTIONS(1710), - [anon_sym_break] = ACTIONS(1710), - [anon_sym_defer] = ACTIONS(1710), - [anon_sym_assert] = ACTIONS(1710), - [anon_sym_nextcase] = ACTIONS(1710), - [anon_sym_switch] = ACTIONS(1710), - [anon_sym_AMP_AMP] = ACTIONS(1712), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_for] = ACTIONS(1710), - [anon_sym_foreach] = ACTIONS(1710), - [anon_sym_foreach_r] = ACTIONS(1710), - [anon_sym_while] = ACTIONS(1710), - [anon_sym_do] = ACTIONS(1710), - [anon_sym_int] = ACTIONS(1710), - [anon_sym_PLUS] = ACTIONS(1710), - [anon_sym_DASH] = ACTIONS(1710), - [anon_sym_STAR] = ACTIONS(1712), - [anon_sym_asm] = ACTIONS(1710), - [anon_sym_DOLLARassert] = ACTIONS(1710), - [anon_sym_DOLLARerror] = ACTIONS(1710), - [anon_sym_DOLLARecho] = ACTIONS(1710), - [anon_sym_DOLLARif] = ACTIONS(1710), - [anon_sym_DOLLARswitch] = ACTIONS(1710), - [anon_sym_DOLLARfor] = ACTIONS(1710), - [anon_sym_DOLLARforeach] = ACTIONS(1710), - [anon_sym_DOLLARalignof] = ACTIONS(1710), - [anon_sym_DOLLARextnameof] = ACTIONS(1710), - [anon_sym_DOLLARnameof] = ACTIONS(1710), - [anon_sym_DOLLARoffsetof] = ACTIONS(1710), - [anon_sym_DOLLARqnameof] = ACTIONS(1710), - [anon_sym_DOLLARvaconst] = ACTIONS(1710), - [anon_sym_DOLLARvaarg] = ACTIONS(1710), - [anon_sym_DOLLARvaref] = ACTIONS(1710), - [anon_sym_DOLLARvaexpr] = ACTIONS(1710), - [anon_sym_true] = ACTIONS(1710), - [anon_sym_false] = ACTIONS(1710), - [anon_sym_null] = ACTIONS(1710), - [anon_sym_DOLLARvacount] = ACTIONS(1710), - [anon_sym_DOLLARappend] = ACTIONS(1710), - [anon_sym_DOLLARconcat] = ACTIONS(1710), - [anon_sym_DOLLAReval] = ACTIONS(1710), - [anon_sym_DOLLARis_const] = ACTIONS(1710), - [anon_sym_DOLLARsizeof] = ACTIONS(1710), - [anon_sym_DOLLARstringify] = ACTIONS(1710), - [anon_sym_DOLLARand] = ACTIONS(1710), - [anon_sym_DOLLARdefined] = ACTIONS(1710), - [anon_sym_DOLLARembed] = ACTIONS(1710), - [anon_sym_DOLLARor] = ACTIONS(1710), - [anon_sym_DOLLARfeature] = ACTIONS(1710), - [anon_sym_DOLLARassignable] = ACTIONS(1710), - [anon_sym_BANG] = ACTIONS(1712), - [anon_sym_TILDE] = ACTIONS(1712), - [anon_sym_PLUS_PLUS] = ACTIONS(1712), - [anon_sym_DASH_DASH] = ACTIONS(1712), - [anon_sym_typeid] = ACTIONS(1710), - [anon_sym_LBRACE_PIPE] = ACTIONS(1712), - [anon_sym_void] = ACTIONS(1710), - [anon_sym_bool] = ACTIONS(1710), - [anon_sym_char] = ACTIONS(1710), - [anon_sym_ichar] = ACTIONS(1710), - [anon_sym_short] = ACTIONS(1710), - [anon_sym_ushort] = ACTIONS(1710), - [anon_sym_uint] = ACTIONS(1710), - [anon_sym_long] = ACTIONS(1710), - [anon_sym_ulong] = ACTIONS(1710), - [anon_sym_int128] = ACTIONS(1710), - [anon_sym_uint128] = ACTIONS(1710), - [anon_sym_float] = ACTIONS(1710), - [anon_sym_double] = ACTIONS(1710), - [anon_sym_float16] = ACTIONS(1710), - [anon_sym_bfloat16] = ACTIONS(1710), - [anon_sym_float128] = ACTIONS(1710), - [anon_sym_iptr] = ACTIONS(1710), - [anon_sym_uptr] = ACTIONS(1710), - [anon_sym_isz] = ACTIONS(1710), - [anon_sym_usz] = ACTIONS(1710), - [anon_sym_anyfault] = ACTIONS(1710), - [anon_sym_any] = ACTIONS(1710), - [anon_sym_DOLLARtypeof] = ACTIONS(1710), - [anon_sym_DOLLARtypefrom] = ACTIONS(1710), - [anon_sym_DOLLARvatype] = ACTIONS(1710), - [anon_sym_DOLLARevaltype] = ACTIONS(1710), - [sym_real_literal] = ACTIONS(1712), - }, - [863] = { - [sym_line_comment] = STATE(863), - [sym_doc_comment] = STATE(863), - [sym_block_comment] = STATE(863), - [sym_ident] = ACTIONS(1706), - [sym_integer_literal] = ACTIONS(1708), - [anon_sym_SQUOTE] = ACTIONS(1708), - [anon_sym_DQUOTE] = ACTIONS(1708), - [anon_sym_BQUOTE] = ACTIONS(1708), - [sym_bytes_literal] = ACTIONS(1708), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1706), - [sym_at_ident] = ACTIONS(1708), - [sym_hash_ident] = ACTIONS(1708), - [sym_type_ident] = ACTIONS(1708), - [sym_ct_type_ident] = ACTIONS(1708), - [sym_const_ident] = ACTIONS(1706), - [sym_builtin] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1708), - [anon_sym_AMP] = ACTIONS(1706), - [anon_sym_static] = ACTIONS(1706), - [anon_sym_tlocal] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1708), - [anon_sym_fn] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_const] = ACTIONS(1706), - [anon_sym_var] = ACTIONS(1706), - [anon_sym_return] = ACTIONS(1706), - [anon_sym_continue] = ACTIONS(1706), - [anon_sym_break] = ACTIONS(1706), - [anon_sym_defer] = ACTIONS(1706), - [anon_sym_assert] = ACTIONS(1706), - [anon_sym_nextcase] = ACTIONS(1706), - [anon_sym_switch] = ACTIONS(1706), - [anon_sym_AMP_AMP] = ACTIONS(1708), - [anon_sym_if] = ACTIONS(1706), - [anon_sym_for] = ACTIONS(1706), - [anon_sym_foreach] = ACTIONS(1706), - [anon_sym_foreach_r] = ACTIONS(1706), - [anon_sym_while] = ACTIONS(1706), - [anon_sym_do] = ACTIONS(1706), - [anon_sym_int] = ACTIONS(1706), - [anon_sym_PLUS] = ACTIONS(1706), - [anon_sym_DASH] = ACTIONS(1706), - [anon_sym_STAR] = ACTIONS(1708), - [anon_sym_asm] = ACTIONS(1706), - [anon_sym_DOLLARassert] = ACTIONS(1706), - [anon_sym_DOLLARerror] = ACTIONS(1706), - [anon_sym_DOLLARecho] = ACTIONS(1706), - [anon_sym_DOLLARif] = ACTIONS(1706), - [anon_sym_DOLLARswitch] = ACTIONS(1706), - [anon_sym_DOLLARfor] = ACTIONS(1706), - [anon_sym_DOLLARforeach] = ACTIONS(1706), - [anon_sym_DOLLARalignof] = ACTIONS(1706), - [anon_sym_DOLLARextnameof] = ACTIONS(1706), - [anon_sym_DOLLARnameof] = ACTIONS(1706), - [anon_sym_DOLLARoffsetof] = ACTIONS(1706), - [anon_sym_DOLLARqnameof] = ACTIONS(1706), - [anon_sym_DOLLARvaconst] = ACTIONS(1706), - [anon_sym_DOLLARvaarg] = ACTIONS(1706), - [anon_sym_DOLLARvaref] = ACTIONS(1706), - [anon_sym_DOLLARvaexpr] = ACTIONS(1706), - [anon_sym_true] = ACTIONS(1706), - [anon_sym_false] = ACTIONS(1706), - [anon_sym_null] = ACTIONS(1706), - [anon_sym_DOLLARvacount] = ACTIONS(1706), - [anon_sym_DOLLARappend] = ACTIONS(1706), - [anon_sym_DOLLARconcat] = ACTIONS(1706), - [anon_sym_DOLLAReval] = ACTIONS(1706), - [anon_sym_DOLLARis_const] = ACTIONS(1706), - [anon_sym_DOLLARsizeof] = ACTIONS(1706), - [anon_sym_DOLLARstringify] = ACTIONS(1706), - [anon_sym_DOLLARand] = ACTIONS(1706), - [anon_sym_DOLLARdefined] = ACTIONS(1706), - [anon_sym_DOLLARembed] = ACTIONS(1706), - [anon_sym_DOLLARor] = ACTIONS(1706), - [anon_sym_DOLLARfeature] = ACTIONS(1706), - [anon_sym_DOLLARassignable] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1708), - [anon_sym_TILDE] = ACTIONS(1708), - [anon_sym_PLUS_PLUS] = ACTIONS(1708), - [anon_sym_DASH_DASH] = ACTIONS(1708), - [anon_sym_typeid] = ACTIONS(1706), - [anon_sym_LBRACE_PIPE] = ACTIONS(1708), - [anon_sym_void] = ACTIONS(1706), - [anon_sym_bool] = ACTIONS(1706), - [anon_sym_char] = ACTIONS(1706), - [anon_sym_ichar] = ACTIONS(1706), - [anon_sym_short] = ACTIONS(1706), - [anon_sym_ushort] = ACTIONS(1706), - [anon_sym_uint] = ACTIONS(1706), - [anon_sym_long] = ACTIONS(1706), - [anon_sym_ulong] = ACTIONS(1706), - [anon_sym_int128] = ACTIONS(1706), - [anon_sym_uint128] = ACTIONS(1706), - [anon_sym_float] = ACTIONS(1706), - [anon_sym_double] = ACTIONS(1706), - [anon_sym_float16] = ACTIONS(1706), - [anon_sym_bfloat16] = ACTIONS(1706), - [anon_sym_float128] = ACTIONS(1706), - [anon_sym_iptr] = ACTIONS(1706), - [anon_sym_uptr] = ACTIONS(1706), - [anon_sym_isz] = ACTIONS(1706), - [anon_sym_usz] = ACTIONS(1706), - [anon_sym_anyfault] = ACTIONS(1706), - [anon_sym_any] = ACTIONS(1706), - [anon_sym_DOLLARtypeof] = ACTIONS(1706), - [anon_sym_DOLLARtypefrom] = ACTIONS(1706), - [anon_sym_DOLLARvatype] = ACTIONS(1706), - [anon_sym_DOLLARevaltype] = ACTIONS(1706), - [sym_real_literal] = ACTIONS(1708), - }, - [864] = { - [sym_line_comment] = STATE(864), - [sym_doc_comment] = STATE(864), - [sym_block_comment] = STATE(864), - [sym_ident] = ACTIONS(1726), - [sym_integer_literal] = ACTIONS(1728), - [anon_sym_SQUOTE] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(1728), - [anon_sym_BQUOTE] = ACTIONS(1728), - [sym_bytes_literal] = ACTIONS(1728), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1726), - [sym_at_ident] = ACTIONS(1728), - [sym_hash_ident] = ACTIONS(1728), - [sym_type_ident] = ACTIONS(1728), - [sym_ct_type_ident] = ACTIONS(1728), - [sym_const_ident] = ACTIONS(1726), - [sym_builtin] = ACTIONS(1728), - [anon_sym_LPAREN] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1726), - [anon_sym_static] = ACTIONS(1726), - [anon_sym_tlocal] = ACTIONS(1726), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_fn] = ACTIONS(1726), - [anon_sym_LBRACE] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1726), - [anon_sym_var] = ACTIONS(1726), - [anon_sym_return] = ACTIONS(1726), - [anon_sym_continue] = ACTIONS(1726), - [anon_sym_break] = ACTIONS(1726), - [anon_sym_defer] = ACTIONS(1726), - [anon_sym_assert] = ACTIONS(1726), - [anon_sym_nextcase] = ACTIONS(1726), - [anon_sym_switch] = ACTIONS(1726), - [anon_sym_AMP_AMP] = ACTIONS(1728), - [anon_sym_if] = ACTIONS(1726), - [anon_sym_for] = ACTIONS(1726), - [anon_sym_foreach] = ACTIONS(1726), - [anon_sym_foreach_r] = ACTIONS(1726), - [anon_sym_while] = ACTIONS(1726), - [anon_sym_do] = ACTIONS(1726), - [anon_sym_int] = ACTIONS(1726), - [anon_sym_PLUS] = ACTIONS(1726), - [anon_sym_DASH] = ACTIONS(1726), - [anon_sym_STAR] = ACTIONS(1728), - [anon_sym_asm] = ACTIONS(1726), - [anon_sym_DOLLARassert] = ACTIONS(1726), - [anon_sym_DOLLARerror] = ACTIONS(1726), - [anon_sym_DOLLARecho] = ACTIONS(1726), - [anon_sym_DOLLARif] = ACTIONS(1726), - [anon_sym_DOLLARswitch] = ACTIONS(1726), - [anon_sym_DOLLARfor] = ACTIONS(1726), - [anon_sym_DOLLARforeach] = ACTIONS(1726), - [anon_sym_DOLLARalignof] = ACTIONS(1726), - [anon_sym_DOLLARextnameof] = ACTIONS(1726), - [anon_sym_DOLLARnameof] = ACTIONS(1726), - [anon_sym_DOLLARoffsetof] = ACTIONS(1726), - [anon_sym_DOLLARqnameof] = ACTIONS(1726), - [anon_sym_DOLLARvaconst] = ACTIONS(1726), - [anon_sym_DOLLARvaarg] = ACTIONS(1726), - [anon_sym_DOLLARvaref] = ACTIONS(1726), - [anon_sym_DOLLARvaexpr] = ACTIONS(1726), - [anon_sym_true] = ACTIONS(1726), - [anon_sym_false] = ACTIONS(1726), - [anon_sym_null] = ACTIONS(1726), - [anon_sym_DOLLARvacount] = ACTIONS(1726), - [anon_sym_DOLLARappend] = ACTIONS(1726), - [anon_sym_DOLLARconcat] = ACTIONS(1726), - [anon_sym_DOLLAReval] = ACTIONS(1726), - [anon_sym_DOLLARis_const] = ACTIONS(1726), - [anon_sym_DOLLARsizeof] = ACTIONS(1726), - [anon_sym_DOLLARstringify] = ACTIONS(1726), - [anon_sym_DOLLARand] = ACTIONS(1726), - [anon_sym_DOLLARdefined] = ACTIONS(1726), - [anon_sym_DOLLARembed] = ACTIONS(1726), - [anon_sym_DOLLARor] = ACTIONS(1726), - [anon_sym_DOLLARfeature] = ACTIONS(1726), - [anon_sym_DOLLARassignable] = ACTIONS(1726), - [anon_sym_BANG] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1728), - [anon_sym_PLUS_PLUS] = ACTIONS(1728), - [anon_sym_DASH_DASH] = ACTIONS(1728), - [anon_sym_typeid] = ACTIONS(1726), - [anon_sym_LBRACE_PIPE] = ACTIONS(1728), - [anon_sym_void] = ACTIONS(1726), - [anon_sym_bool] = ACTIONS(1726), - [anon_sym_char] = ACTIONS(1726), - [anon_sym_ichar] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [anon_sym_ushort] = ACTIONS(1726), - [anon_sym_uint] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_ulong] = ACTIONS(1726), - [anon_sym_int128] = ACTIONS(1726), - [anon_sym_uint128] = ACTIONS(1726), - [anon_sym_float] = ACTIONS(1726), - [anon_sym_double] = ACTIONS(1726), - [anon_sym_float16] = ACTIONS(1726), - [anon_sym_bfloat16] = ACTIONS(1726), - [anon_sym_float128] = ACTIONS(1726), - [anon_sym_iptr] = ACTIONS(1726), - [anon_sym_uptr] = ACTIONS(1726), - [anon_sym_isz] = ACTIONS(1726), - [anon_sym_usz] = ACTIONS(1726), - [anon_sym_anyfault] = ACTIONS(1726), - [anon_sym_any] = ACTIONS(1726), - [anon_sym_DOLLARtypeof] = ACTIONS(1726), - [anon_sym_DOLLARtypefrom] = ACTIONS(1726), - [anon_sym_DOLLARvatype] = ACTIONS(1726), - [anon_sym_DOLLARevaltype] = ACTIONS(1726), - [sym_real_literal] = ACTIONS(1728), - }, - [865] = { - [sym_line_comment] = STATE(865), - [sym_doc_comment] = STATE(865), - [sym_block_comment] = STATE(865), - [ts_builtin_sym_end] = ACTIONS(1188), - [sym_ident] = ACTIONS(1186), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_type_ident] = ACTIONS(1188), - [sym_ct_type_ident] = ACTIONS(1188), - [anon_sym_COMMA] = ACTIONS(1188), - [anon_sym_LPAREN_LT] = ACTIONS(1188), - [anon_sym_GT_RPAREN] = ACTIONS(1188), - [anon_sym_EQ] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(1186), - [anon_sym_RPAREN] = ACTIONS(1188), - [anon_sym_AMP] = ACTIONS(1186), - [anon_sym_LBRACK] = ACTIONS(1188), - [anon_sym_RBRACK] = ACTIONS(1188), - [anon_sym_tlocal] = ACTIONS(1186), - [anon_sym_extern] = ACTIONS(1186), - [anon_sym_module] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1188), - [anon_sym_import] = ACTIONS(1186), - [anon_sym_fn] = ACTIONS(1186), - [anon_sym_RBRACE] = ACTIONS(1188), - [anon_sym_def] = ACTIONS(1186), - [anon_sym_distinct] = ACTIONS(1186), - [anon_sym_const] = ACTIONS(1186), - [anon_sym_struct] = ACTIONS(1186), - [anon_sym_union] = ACTIONS(1186), - [anon_sym_bitstruct] = ACTIONS(1186), - [anon_sym_COLON] = ACTIONS(1188), - [anon_sym_DOT_DOT] = ACTIONS(1188), - [anon_sym_fault] = ACTIONS(1186), - [anon_sym_enum] = ACTIONS(1186), - [anon_sym_interface] = ACTIONS(1186), - [anon_sym_DOT] = ACTIONS(1186), - [anon_sym_macro] = ACTIONS(1186), - [anon_sym_AMP_AMP] = ACTIONS(1188), - [anon_sym_while] = ACTIONS(1186), - [anon_sym_int] = ACTIONS(1186), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_LT_LT] = ACTIONS(1186), - [anon_sym_GT_GT] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_DOLLARassert] = ACTIONS(1188), - [anon_sym_DOLLARerror] = ACTIONS(1188), - [anon_sym_DOLLARinclude] = ACTIONS(1188), - [anon_sym_DOLLARexec] = ACTIONS(1188), - [anon_sym_DOLLARecho] = ACTIONS(1188), - [anon_sym_PLUS_EQ] = ACTIONS(1188), - [anon_sym_DASH_EQ] = ACTIONS(1188), - [anon_sym_STAR_EQ] = ACTIONS(1188), - [anon_sym_SLASH_EQ] = ACTIONS(1188), - [anon_sym_PERCENT_EQ] = ACTIONS(1188), - [anon_sym_LT_LT_EQ] = ACTIONS(1188), - [anon_sym_GT_GT_EQ] = ACTIONS(1188), - [anon_sym_AMP_EQ] = ACTIONS(1188), - [anon_sym_CARET_EQ] = ACTIONS(1188), - [anon_sym_PIPE_EQ] = ACTIONS(1188), - [anon_sym_QMARK] = ACTIONS(1186), - [anon_sym_QMARK_COLON] = ACTIONS(1188), - [anon_sym_QMARK_QMARK] = ACTIONS(1188), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_PLUS_PLUS] = ACTIONS(1188), - [anon_sym_DASH_DASH] = ACTIONS(1188), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_PERCENT] = ACTIONS(1186), - [anon_sym_PIPE] = ACTIONS(1186), - [anon_sym_CARET] = ACTIONS(1186), - [anon_sym_EQ_EQ] = ACTIONS(1188), - [anon_sym_BANG_EQ] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_GT_EQ] = ACTIONS(1188), - [anon_sym_LT_EQ] = ACTIONS(1188), - [anon_sym_LT] = ACTIONS(1186), - [anon_sym_PIPE_PIPE] = ACTIONS(1188), - [anon_sym_BANG_BANG] = ACTIONS(1188), - [anon_sym_typeid] = ACTIONS(1186), - [anon_sym_void] = ACTIONS(1186), - [anon_sym_bool] = ACTIONS(1186), - [anon_sym_char] = ACTIONS(1186), - [anon_sym_ichar] = ACTIONS(1186), - [anon_sym_short] = ACTIONS(1186), - [anon_sym_ushort] = ACTIONS(1186), - [anon_sym_uint] = ACTIONS(1186), - [anon_sym_long] = ACTIONS(1186), - [anon_sym_ulong] = ACTIONS(1186), - [anon_sym_int128] = ACTIONS(1186), - [anon_sym_uint128] = ACTIONS(1186), - [anon_sym_float] = ACTIONS(1186), - [anon_sym_double] = ACTIONS(1186), - [anon_sym_float16] = ACTIONS(1186), - [anon_sym_bfloat16] = ACTIONS(1186), - [anon_sym_float128] = ACTIONS(1186), - [anon_sym_iptr] = ACTIONS(1186), - [anon_sym_uptr] = ACTIONS(1186), - [anon_sym_isz] = ACTIONS(1186), - [anon_sym_usz] = ACTIONS(1186), - [anon_sym_anyfault] = ACTIONS(1186), - [anon_sym_any] = ACTIONS(1186), - [anon_sym_DOLLARtypeof] = ACTIONS(1188), - [anon_sym_DOLLARtypefrom] = ACTIONS(1188), - [anon_sym_DOLLARvatype] = ACTIONS(1188), - [anon_sym_DOLLARevaltype] = ACTIONS(1188), - [anon_sym_GT_RBRACK] = ACTIONS(1188), - }, - [866] = { - [sym_line_comment] = STATE(866), - [sym_doc_comment] = STATE(866), - [sym_block_comment] = STATE(866), - [ts_builtin_sym_end] = ACTIONS(1384), - [sym_ident] = ACTIONS(1382), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_type_ident] = ACTIONS(1384), - [sym_ct_type_ident] = ACTIONS(1384), - [anon_sym_COMMA] = ACTIONS(1384), - [anon_sym_LPAREN_LT] = ACTIONS(1384), - [anon_sym_GT_RPAREN] = ACTIONS(1384), - [anon_sym_EQ] = ACTIONS(1382), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_RPAREN] = ACTIONS(1384), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(1384), - [anon_sym_RBRACK] = ACTIONS(1384), - [anon_sym_tlocal] = ACTIONS(1382), - [anon_sym_extern] = ACTIONS(1382), - [anon_sym_module] = ACTIONS(1382), - [anon_sym_SEMI] = ACTIONS(1384), - [anon_sym_import] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1382), - [anon_sym_RBRACE] = ACTIONS(1384), - [anon_sym_def] = ACTIONS(1382), - [anon_sym_distinct] = ACTIONS(1382), - [anon_sym_const] = ACTIONS(1382), - [anon_sym_struct] = ACTIONS(1382), - [anon_sym_union] = ACTIONS(1382), - [anon_sym_bitstruct] = ACTIONS(1382), - [anon_sym_COLON] = ACTIONS(1384), - [anon_sym_DOT_DOT] = ACTIONS(1384), - [anon_sym_fault] = ACTIONS(1382), - [anon_sym_enum] = ACTIONS(1382), - [anon_sym_interface] = ACTIONS(1382), - [anon_sym_DOT] = ACTIONS(1382), - [anon_sym_macro] = ACTIONS(1382), - [anon_sym_AMP_AMP] = ACTIONS(1384), - [anon_sym_while] = ACTIONS(1382), - [anon_sym_int] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_LT_LT] = ACTIONS(1382), - [anon_sym_GT_GT] = ACTIONS(1382), - [anon_sym_STAR] = ACTIONS(1382), - [anon_sym_DOLLARassert] = ACTIONS(1384), - [anon_sym_DOLLARerror] = ACTIONS(1384), - [anon_sym_DOLLARinclude] = ACTIONS(1384), - [anon_sym_DOLLARexec] = ACTIONS(1384), - [anon_sym_DOLLARecho] = ACTIONS(1384), - [anon_sym_PLUS_EQ] = ACTIONS(1384), - [anon_sym_DASH_EQ] = ACTIONS(1384), - [anon_sym_STAR_EQ] = ACTIONS(1384), - [anon_sym_SLASH_EQ] = ACTIONS(1384), - [anon_sym_PERCENT_EQ] = ACTIONS(1384), - [anon_sym_LT_LT_EQ] = ACTIONS(1384), - [anon_sym_GT_GT_EQ] = ACTIONS(1384), - [anon_sym_AMP_EQ] = ACTIONS(1384), - [anon_sym_CARET_EQ] = ACTIONS(1384), - [anon_sym_PIPE_EQ] = ACTIONS(1384), - [anon_sym_QMARK] = ACTIONS(1382), - [anon_sym_QMARK_COLON] = ACTIONS(1384), - [anon_sym_QMARK_QMARK] = ACTIONS(1384), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_PLUS_PLUS] = ACTIONS(1384), - [anon_sym_DASH_DASH] = ACTIONS(1384), - [anon_sym_SLASH] = ACTIONS(1382), - [anon_sym_PERCENT] = ACTIONS(1382), - [anon_sym_PIPE] = ACTIONS(1382), - [anon_sym_CARET] = ACTIONS(1382), - [anon_sym_EQ_EQ] = ACTIONS(1384), - [anon_sym_BANG_EQ] = ACTIONS(1384), - [anon_sym_GT] = ACTIONS(1382), - [anon_sym_GT_EQ] = ACTIONS(1384), - [anon_sym_LT_EQ] = ACTIONS(1384), - [anon_sym_LT] = ACTIONS(1382), - [anon_sym_PIPE_PIPE] = ACTIONS(1384), - [anon_sym_BANG_BANG] = ACTIONS(1384), - [anon_sym_typeid] = ACTIONS(1382), - [anon_sym_void] = ACTIONS(1382), - [anon_sym_bool] = ACTIONS(1382), - [anon_sym_char] = ACTIONS(1382), - [anon_sym_ichar] = ACTIONS(1382), - [anon_sym_short] = ACTIONS(1382), - [anon_sym_ushort] = ACTIONS(1382), - [anon_sym_uint] = ACTIONS(1382), - [anon_sym_long] = ACTIONS(1382), - [anon_sym_ulong] = ACTIONS(1382), - [anon_sym_int128] = ACTIONS(1382), - [anon_sym_uint128] = ACTIONS(1382), - [anon_sym_float] = ACTIONS(1382), - [anon_sym_double] = ACTIONS(1382), - [anon_sym_float16] = ACTIONS(1382), - [anon_sym_bfloat16] = ACTIONS(1382), - [anon_sym_float128] = ACTIONS(1382), - [anon_sym_iptr] = ACTIONS(1382), - [anon_sym_uptr] = ACTIONS(1382), - [anon_sym_isz] = ACTIONS(1382), - [anon_sym_usz] = ACTIONS(1382), - [anon_sym_anyfault] = ACTIONS(1382), - [anon_sym_any] = ACTIONS(1382), - [anon_sym_DOLLARtypeof] = ACTIONS(1384), - [anon_sym_DOLLARtypefrom] = ACTIONS(1384), - [anon_sym_DOLLARvatype] = ACTIONS(1384), - [anon_sym_DOLLARevaltype] = ACTIONS(1384), - [anon_sym_GT_RBRACK] = ACTIONS(1384), - }, - [867] = { - [sym_line_comment] = STATE(867), - [sym_doc_comment] = STATE(867), - [sym_block_comment] = STATE(867), - [sym_ident] = ACTIONS(1362), - [sym_integer_literal] = ACTIONS(1364), - [anon_sym_SQUOTE] = ACTIONS(1364), - [anon_sym_DQUOTE] = ACTIONS(1364), - [anon_sym_BQUOTE] = ACTIONS(1364), - [sym_bytes_literal] = ACTIONS(1364), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1362), - [sym_at_ident] = ACTIONS(1364), - [sym_hash_ident] = ACTIONS(1364), - [sym_type_ident] = ACTIONS(1364), - [sym_ct_type_ident] = ACTIONS(1364), - [sym_const_ident] = ACTIONS(1362), - [sym_builtin] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_AMP_AMP] = ACTIONS(1364), - [anon_sym_int] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(1364), - [anon_sym_DOLLARalignof] = ACTIONS(1362), - [anon_sym_DOLLARextnameof] = ACTIONS(1362), - [anon_sym_DOLLARnameof] = ACTIONS(1362), - [anon_sym_DOLLARoffsetof] = ACTIONS(1362), - [anon_sym_DOLLARqnameof] = ACTIONS(1362), - [anon_sym_DOLLARvaconst] = ACTIONS(1362), - [anon_sym_DOLLARvaarg] = ACTIONS(1362), - [anon_sym_DOLLARvaref] = ACTIONS(1362), - [anon_sym_DOLLARvaexpr] = ACTIONS(1362), - [anon_sym_true] = ACTIONS(1362), - [anon_sym_false] = ACTIONS(1362), - [anon_sym_null] = ACTIONS(1362), - [anon_sym_DOLLARvacount] = ACTIONS(1362), - [anon_sym_DOLLARappend] = ACTIONS(1362), - [anon_sym_DOLLARconcat] = ACTIONS(1362), - [anon_sym_DOLLAReval] = ACTIONS(1362), - [anon_sym_DOLLARis_const] = ACTIONS(1362), - [anon_sym_DOLLARsizeof] = ACTIONS(1362), - [anon_sym_DOLLARstringify] = ACTIONS(1362), - [anon_sym_DOLLARand] = ACTIONS(1362), - [anon_sym_DOLLARdefined] = ACTIONS(1362), - [anon_sym_DOLLARembed] = ACTIONS(1362), - [anon_sym_DOLLARor] = ACTIONS(1362), - [anon_sym_DOLLARfeature] = ACTIONS(1362), - [anon_sym_DOLLARassignable] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1364), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_PLUS_PLUS] = ACTIONS(1364), - [anon_sym_DASH_DASH] = ACTIONS(1364), - [anon_sym_typeid] = ACTIONS(1362), - [anon_sym_LBRACE_PIPE] = ACTIONS(1364), - [anon_sym_void] = ACTIONS(1362), - [anon_sym_bool] = ACTIONS(1362), - [anon_sym_char] = ACTIONS(1362), - [anon_sym_ichar] = ACTIONS(1362), - [anon_sym_short] = ACTIONS(1362), - [anon_sym_ushort] = ACTIONS(1362), - [anon_sym_uint] = ACTIONS(1362), - [anon_sym_long] = ACTIONS(1362), - [anon_sym_ulong] = ACTIONS(1362), - [anon_sym_int128] = ACTIONS(1362), - [anon_sym_uint128] = ACTIONS(1362), - [anon_sym_float] = ACTIONS(1362), - [anon_sym_double] = ACTIONS(1362), - [anon_sym_float16] = ACTIONS(1362), - [anon_sym_bfloat16] = ACTIONS(1362), - [anon_sym_float128] = ACTIONS(1362), - [anon_sym_iptr] = ACTIONS(1362), - [anon_sym_uptr] = ACTIONS(1362), - [anon_sym_isz] = ACTIONS(1362), - [anon_sym_usz] = ACTIONS(1362), - [anon_sym_anyfault] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_DOLLARtypeof] = ACTIONS(1362), - [anon_sym_DOLLARtypefrom] = ACTIONS(1362), - [anon_sym_DOLLARvatype] = ACTIONS(1362), - [anon_sym_DOLLARevaltype] = ACTIONS(1362), - [anon_sym_GT_RBRACK] = ACTIONS(1730), - [sym_real_literal] = ACTIONS(1364), - }, - [868] = { - [sym_line_comment] = STATE(868), - [sym_doc_comment] = STATE(868), - [sym_block_comment] = STATE(868), - [sym_ident] = ACTIONS(1362), - [sym_integer_literal] = ACTIONS(1364), - [anon_sym_SQUOTE] = ACTIONS(1364), - [anon_sym_DQUOTE] = ACTIONS(1364), - [anon_sym_BQUOTE] = ACTIONS(1364), - [sym_bytes_literal] = ACTIONS(1364), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1362), - [sym_at_ident] = ACTIONS(1364), - [sym_hash_ident] = ACTIONS(1364), - [sym_type_ident] = ACTIONS(1364), - [sym_ct_type_ident] = ACTIONS(1364), - [sym_const_ident] = ACTIONS(1362), - [sym_builtin] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_RBRACK] = ACTIONS(1730), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_AMP_AMP] = ACTIONS(1364), - [anon_sym_int] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(1364), - [anon_sym_DOLLARalignof] = ACTIONS(1362), - [anon_sym_DOLLARextnameof] = ACTIONS(1362), - [anon_sym_DOLLARnameof] = ACTIONS(1362), - [anon_sym_DOLLARoffsetof] = ACTIONS(1362), - [anon_sym_DOLLARqnameof] = ACTIONS(1362), - [anon_sym_DOLLARvaconst] = ACTIONS(1362), - [anon_sym_DOLLARvaarg] = ACTIONS(1362), - [anon_sym_DOLLARvaref] = ACTIONS(1362), - [anon_sym_DOLLARvaexpr] = ACTIONS(1362), - [anon_sym_true] = ACTIONS(1362), - [anon_sym_false] = ACTIONS(1362), - [anon_sym_null] = ACTIONS(1362), - [anon_sym_DOLLARvacount] = ACTIONS(1362), - [anon_sym_DOLLARappend] = ACTIONS(1362), - [anon_sym_DOLLARconcat] = ACTIONS(1362), - [anon_sym_DOLLAReval] = ACTIONS(1362), - [anon_sym_DOLLARis_const] = ACTIONS(1362), - [anon_sym_DOLLARsizeof] = ACTIONS(1362), - [anon_sym_DOLLARstringify] = ACTIONS(1362), - [anon_sym_DOLLARand] = ACTIONS(1362), - [anon_sym_DOLLARdefined] = ACTIONS(1362), - [anon_sym_DOLLARembed] = ACTIONS(1362), - [anon_sym_DOLLARor] = ACTIONS(1362), - [anon_sym_DOLLARfeature] = ACTIONS(1362), - [anon_sym_DOLLARassignable] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1364), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_PLUS_PLUS] = ACTIONS(1364), - [anon_sym_DASH_DASH] = ACTIONS(1364), - [anon_sym_typeid] = ACTIONS(1362), - [anon_sym_LBRACE_PIPE] = ACTIONS(1364), - [anon_sym_void] = ACTIONS(1362), - [anon_sym_bool] = ACTIONS(1362), - [anon_sym_char] = ACTIONS(1362), - [anon_sym_ichar] = ACTIONS(1362), - [anon_sym_short] = ACTIONS(1362), - [anon_sym_ushort] = ACTIONS(1362), - [anon_sym_uint] = ACTIONS(1362), - [anon_sym_long] = ACTIONS(1362), - [anon_sym_ulong] = ACTIONS(1362), - [anon_sym_int128] = ACTIONS(1362), - [anon_sym_uint128] = ACTIONS(1362), - [anon_sym_float] = ACTIONS(1362), - [anon_sym_double] = ACTIONS(1362), - [anon_sym_float16] = ACTIONS(1362), - [anon_sym_bfloat16] = ACTIONS(1362), - [anon_sym_float128] = ACTIONS(1362), - [anon_sym_iptr] = ACTIONS(1362), - [anon_sym_uptr] = ACTIONS(1362), - [anon_sym_isz] = ACTIONS(1362), - [anon_sym_usz] = ACTIONS(1362), - [anon_sym_anyfault] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_DOLLARtypeof] = ACTIONS(1362), - [anon_sym_DOLLARtypefrom] = ACTIONS(1362), - [anon_sym_DOLLARvatype] = ACTIONS(1362), - [anon_sym_DOLLARevaltype] = ACTIONS(1362), - [sym_real_literal] = ACTIONS(1364), - }, - [869] = { - [sym_line_comment] = STATE(869), - [sym_doc_comment] = STATE(869), - [sym_block_comment] = STATE(869), - [sym_ident] = ACTIONS(1362), - [sym_integer_literal] = ACTIONS(1364), - [anon_sym_SQUOTE] = ACTIONS(1364), - [anon_sym_DQUOTE] = ACTIONS(1364), - [anon_sym_BQUOTE] = ACTIONS(1364), - [sym_bytes_literal] = ACTIONS(1364), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1362), - [sym_at_ident] = ACTIONS(1364), - [sym_hash_ident] = ACTIONS(1364), - [sym_type_ident] = ACTIONS(1364), - [sym_ct_type_ident] = ACTIONS(1364), - [sym_const_ident] = ACTIONS(1362), - [sym_builtin] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_AMP_AMP] = ACTIONS(1364), - [anon_sym_int] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(1364), - [anon_sym_DOLLARalignof] = ACTIONS(1362), - [anon_sym_DOLLARextnameof] = ACTIONS(1362), - [anon_sym_DOLLARnameof] = ACTIONS(1362), - [anon_sym_DOLLARoffsetof] = ACTIONS(1362), - [anon_sym_DOLLARqnameof] = ACTIONS(1362), - [anon_sym_DOLLARvaconst] = ACTIONS(1362), - [anon_sym_DOLLARvaarg] = ACTIONS(1362), - [anon_sym_DOLLARvaref] = ACTIONS(1362), - [anon_sym_DOLLARvaexpr] = ACTIONS(1362), - [anon_sym_true] = ACTIONS(1362), - [anon_sym_false] = ACTIONS(1362), - [anon_sym_null] = ACTIONS(1362), - [anon_sym_DOLLARvacount] = ACTIONS(1362), - [anon_sym_DOLLARappend] = ACTIONS(1362), - [anon_sym_DOLLARconcat] = ACTIONS(1362), - [anon_sym_DOLLAReval] = ACTIONS(1362), - [anon_sym_DOLLARis_const] = ACTIONS(1362), - [anon_sym_DOLLARsizeof] = ACTIONS(1362), - [anon_sym_DOLLARstringify] = ACTIONS(1362), - [anon_sym_DOLLARand] = ACTIONS(1362), - [anon_sym_DOLLARdefined] = ACTIONS(1362), - [anon_sym_DOLLARembed] = ACTIONS(1362), - [anon_sym_DOLLARor] = ACTIONS(1362), - [anon_sym_DOLLARfeature] = ACTIONS(1362), - [anon_sym_DOLLARassignable] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1364), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_PLUS_PLUS] = ACTIONS(1364), - [anon_sym_DASH_DASH] = ACTIONS(1364), - [anon_sym_typeid] = ACTIONS(1362), - [anon_sym_LBRACE_PIPE] = ACTIONS(1364), - [anon_sym_void] = ACTIONS(1362), - [anon_sym_bool] = ACTIONS(1362), - [anon_sym_char] = ACTIONS(1362), - [anon_sym_ichar] = ACTIONS(1362), - [anon_sym_short] = ACTIONS(1362), - [anon_sym_ushort] = ACTIONS(1362), - [anon_sym_uint] = ACTIONS(1362), - [anon_sym_long] = ACTIONS(1362), - [anon_sym_ulong] = ACTIONS(1362), - [anon_sym_int128] = ACTIONS(1362), - [anon_sym_uint128] = ACTIONS(1362), - [anon_sym_float] = ACTIONS(1362), - [anon_sym_double] = ACTIONS(1362), - [anon_sym_float16] = ACTIONS(1362), - [anon_sym_bfloat16] = ACTIONS(1362), - [anon_sym_float128] = ACTIONS(1362), - [anon_sym_iptr] = ACTIONS(1362), - [anon_sym_uptr] = ACTIONS(1362), - [anon_sym_isz] = ACTIONS(1362), - [anon_sym_usz] = ACTIONS(1362), - [anon_sym_anyfault] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_DOLLARtypeof] = ACTIONS(1362), - [anon_sym_DOLLARtypefrom] = ACTIONS(1362), - [anon_sym_DOLLARvatype] = ACTIONS(1362), - [anon_sym_DOLLARevaltype] = ACTIONS(1362), - [anon_sym_GT_RBRACK] = ACTIONS(1732), - [sym_real_literal] = ACTIONS(1364), - }, - [870] = { - [sym_line_comment] = STATE(870), - [sym_doc_comment] = STATE(870), - [sym_block_comment] = STATE(870), - [sym_ident] = ACTIONS(1362), - [sym_integer_literal] = ACTIONS(1364), - [anon_sym_SQUOTE] = ACTIONS(1364), - [anon_sym_DQUOTE] = ACTIONS(1364), - [anon_sym_BQUOTE] = ACTIONS(1364), - [sym_bytes_literal] = ACTIONS(1364), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1362), - [sym_at_ident] = ACTIONS(1364), - [sym_hash_ident] = ACTIONS(1364), - [sym_type_ident] = ACTIONS(1364), - [sym_ct_type_ident] = ACTIONS(1364), - [sym_const_ident] = ACTIONS(1362), - [sym_builtin] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_RBRACK] = ACTIONS(1734), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_AMP_AMP] = ACTIONS(1364), - [anon_sym_int] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(1364), - [anon_sym_DOLLARalignof] = ACTIONS(1362), - [anon_sym_DOLLARextnameof] = ACTIONS(1362), - [anon_sym_DOLLARnameof] = ACTIONS(1362), - [anon_sym_DOLLARoffsetof] = ACTIONS(1362), - [anon_sym_DOLLARqnameof] = ACTIONS(1362), - [anon_sym_DOLLARvaconst] = ACTIONS(1362), - [anon_sym_DOLLARvaarg] = ACTIONS(1362), - [anon_sym_DOLLARvaref] = ACTIONS(1362), - [anon_sym_DOLLARvaexpr] = ACTIONS(1362), - [anon_sym_true] = ACTIONS(1362), - [anon_sym_false] = ACTIONS(1362), - [anon_sym_null] = ACTIONS(1362), - [anon_sym_DOLLARvacount] = ACTIONS(1362), - [anon_sym_DOLLARappend] = ACTIONS(1362), - [anon_sym_DOLLARconcat] = ACTIONS(1362), - [anon_sym_DOLLAReval] = ACTIONS(1362), - [anon_sym_DOLLARis_const] = ACTIONS(1362), - [anon_sym_DOLLARsizeof] = ACTIONS(1362), - [anon_sym_DOLLARstringify] = ACTIONS(1362), - [anon_sym_DOLLARand] = ACTIONS(1362), - [anon_sym_DOLLARdefined] = ACTIONS(1362), - [anon_sym_DOLLARembed] = ACTIONS(1362), - [anon_sym_DOLLARor] = ACTIONS(1362), - [anon_sym_DOLLARfeature] = ACTIONS(1362), - [anon_sym_DOLLARassignable] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1364), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_PLUS_PLUS] = ACTIONS(1364), - [anon_sym_DASH_DASH] = ACTIONS(1364), - [anon_sym_typeid] = ACTIONS(1362), - [anon_sym_LBRACE_PIPE] = ACTIONS(1364), - [anon_sym_void] = ACTIONS(1362), - [anon_sym_bool] = ACTIONS(1362), - [anon_sym_char] = ACTIONS(1362), - [anon_sym_ichar] = ACTIONS(1362), - [anon_sym_short] = ACTIONS(1362), - [anon_sym_ushort] = ACTIONS(1362), - [anon_sym_uint] = ACTIONS(1362), - [anon_sym_long] = ACTIONS(1362), - [anon_sym_ulong] = ACTIONS(1362), - [anon_sym_int128] = ACTIONS(1362), - [anon_sym_uint128] = ACTIONS(1362), - [anon_sym_float] = ACTIONS(1362), - [anon_sym_double] = ACTIONS(1362), - [anon_sym_float16] = ACTIONS(1362), - [anon_sym_bfloat16] = ACTIONS(1362), - [anon_sym_float128] = ACTIONS(1362), - [anon_sym_iptr] = ACTIONS(1362), - [anon_sym_uptr] = ACTIONS(1362), - [anon_sym_isz] = ACTIONS(1362), - [anon_sym_usz] = ACTIONS(1362), - [anon_sym_anyfault] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_DOLLARtypeof] = ACTIONS(1362), - [anon_sym_DOLLARtypefrom] = ACTIONS(1362), - [anon_sym_DOLLARvatype] = ACTIONS(1362), - [anon_sym_DOLLARevaltype] = ACTIONS(1362), - [sym_real_literal] = ACTIONS(1364), - }, - [871] = { - [sym_line_comment] = STATE(871), - [sym_doc_comment] = STATE(871), - [sym_block_comment] = STATE(871), - [sym_ident] = ACTIONS(1362), - [sym_integer_literal] = ACTIONS(1364), - [anon_sym_SQUOTE] = ACTIONS(1364), - [anon_sym_DQUOTE] = ACTIONS(1364), - [anon_sym_BQUOTE] = ACTIONS(1364), - [sym_bytes_literal] = ACTIONS(1364), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1362), - [sym_at_ident] = ACTIONS(1364), - [sym_hash_ident] = ACTIONS(1364), - [sym_type_ident] = ACTIONS(1364), - [sym_ct_type_ident] = ACTIONS(1364), - [sym_const_ident] = ACTIONS(1362), - [sym_builtin] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_AMP_AMP] = ACTIONS(1364), - [anon_sym_int] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(1364), - [anon_sym_DOLLARalignof] = ACTIONS(1362), - [anon_sym_DOLLARextnameof] = ACTIONS(1362), - [anon_sym_DOLLARnameof] = ACTIONS(1362), - [anon_sym_DOLLARoffsetof] = ACTIONS(1362), - [anon_sym_DOLLARqnameof] = ACTIONS(1362), - [anon_sym_DOLLARvaconst] = ACTIONS(1362), - [anon_sym_DOLLARvaarg] = ACTIONS(1362), - [anon_sym_DOLLARvaref] = ACTIONS(1362), - [anon_sym_DOLLARvaexpr] = ACTIONS(1362), - [anon_sym_true] = ACTIONS(1362), - [anon_sym_false] = ACTIONS(1362), - [anon_sym_null] = ACTIONS(1362), - [anon_sym_DOLLARvacount] = ACTIONS(1362), - [anon_sym_DOLLARappend] = ACTIONS(1362), - [anon_sym_DOLLARconcat] = ACTIONS(1362), - [anon_sym_DOLLAReval] = ACTIONS(1362), - [anon_sym_DOLLARis_const] = ACTIONS(1362), - [anon_sym_DOLLARsizeof] = ACTIONS(1362), - [anon_sym_DOLLARstringify] = ACTIONS(1362), - [anon_sym_DOLLARand] = ACTIONS(1362), - [anon_sym_DOLLARdefined] = ACTIONS(1362), - [anon_sym_DOLLARembed] = ACTIONS(1362), - [anon_sym_DOLLARor] = ACTIONS(1362), - [anon_sym_DOLLARfeature] = ACTIONS(1362), - [anon_sym_DOLLARassignable] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1364), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_PLUS_PLUS] = ACTIONS(1364), - [anon_sym_DASH_DASH] = ACTIONS(1364), - [anon_sym_typeid] = ACTIONS(1362), - [anon_sym_LBRACE_PIPE] = ACTIONS(1364), - [anon_sym_void] = ACTIONS(1362), - [anon_sym_bool] = ACTIONS(1362), - [anon_sym_char] = ACTIONS(1362), - [anon_sym_ichar] = ACTIONS(1362), - [anon_sym_short] = ACTIONS(1362), - [anon_sym_ushort] = ACTIONS(1362), - [anon_sym_uint] = ACTIONS(1362), - [anon_sym_long] = ACTIONS(1362), - [anon_sym_ulong] = ACTIONS(1362), - [anon_sym_int128] = ACTIONS(1362), - [anon_sym_uint128] = ACTIONS(1362), - [anon_sym_float] = ACTIONS(1362), - [anon_sym_double] = ACTIONS(1362), - [anon_sym_float16] = ACTIONS(1362), - [anon_sym_bfloat16] = ACTIONS(1362), - [anon_sym_float128] = ACTIONS(1362), - [anon_sym_iptr] = ACTIONS(1362), - [anon_sym_uptr] = ACTIONS(1362), - [anon_sym_isz] = ACTIONS(1362), - [anon_sym_usz] = ACTIONS(1362), - [anon_sym_anyfault] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_DOLLARtypeof] = ACTIONS(1362), - [anon_sym_DOLLARtypefrom] = ACTIONS(1362), - [anon_sym_DOLLARvatype] = ACTIONS(1362), - [anon_sym_DOLLARevaltype] = ACTIONS(1362), - [anon_sym_GT_RBRACK] = ACTIONS(1734), - [sym_real_literal] = ACTIONS(1364), - }, - [872] = { - [sym_line_comment] = STATE(872), - [sym_doc_comment] = STATE(872), - [sym_block_comment] = STATE(872), - [sym_ident] = ACTIONS(1362), - [sym_integer_literal] = ACTIONS(1364), - [anon_sym_SQUOTE] = ACTIONS(1364), - [anon_sym_DQUOTE] = ACTIONS(1364), - [anon_sym_BQUOTE] = ACTIONS(1364), - [sym_bytes_literal] = ACTIONS(1364), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1362), - [sym_at_ident] = ACTIONS(1364), - [sym_hash_ident] = ACTIONS(1364), - [sym_type_ident] = ACTIONS(1364), - [sym_ct_type_ident] = ACTIONS(1364), - [sym_const_ident] = ACTIONS(1362), - [sym_builtin] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_AMP_AMP] = ACTIONS(1364), - [anon_sym_int] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(1364), - [anon_sym_DOLLARalignof] = ACTIONS(1362), - [anon_sym_DOLLARextnameof] = ACTIONS(1362), - [anon_sym_DOLLARnameof] = ACTIONS(1362), - [anon_sym_DOLLARoffsetof] = ACTIONS(1362), - [anon_sym_DOLLARqnameof] = ACTIONS(1362), - [anon_sym_DOLLARvaconst] = ACTIONS(1362), - [anon_sym_DOLLARvaarg] = ACTIONS(1362), - [anon_sym_DOLLARvaref] = ACTIONS(1362), - [anon_sym_DOLLARvaexpr] = ACTIONS(1362), - [anon_sym_true] = ACTIONS(1362), - [anon_sym_false] = ACTIONS(1362), - [anon_sym_null] = ACTIONS(1362), - [anon_sym_DOLLARvacount] = ACTIONS(1362), - [anon_sym_DOLLARappend] = ACTIONS(1362), - [anon_sym_DOLLARconcat] = ACTIONS(1362), - [anon_sym_DOLLAReval] = ACTIONS(1362), - [anon_sym_DOLLARis_const] = ACTIONS(1362), - [anon_sym_DOLLARsizeof] = ACTIONS(1362), - [anon_sym_DOLLARstringify] = ACTIONS(1362), - [anon_sym_DOLLARand] = ACTIONS(1362), - [anon_sym_DOLLARdefined] = ACTIONS(1362), - [anon_sym_DOLLARembed] = ACTIONS(1362), - [anon_sym_DOLLARor] = ACTIONS(1362), - [anon_sym_DOLLARfeature] = ACTIONS(1362), - [anon_sym_DOLLARassignable] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1364), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_PLUS_PLUS] = ACTIONS(1364), - [anon_sym_DASH_DASH] = ACTIONS(1364), - [anon_sym_typeid] = ACTIONS(1362), - [anon_sym_LBRACE_PIPE] = ACTIONS(1364), - [anon_sym_void] = ACTIONS(1362), - [anon_sym_bool] = ACTIONS(1362), - [anon_sym_char] = ACTIONS(1362), - [anon_sym_ichar] = ACTIONS(1362), - [anon_sym_short] = ACTIONS(1362), - [anon_sym_ushort] = ACTIONS(1362), - [anon_sym_uint] = ACTIONS(1362), - [anon_sym_long] = ACTIONS(1362), - [anon_sym_ulong] = ACTIONS(1362), - [anon_sym_int128] = ACTIONS(1362), - [anon_sym_uint128] = ACTIONS(1362), - [anon_sym_float] = ACTIONS(1362), - [anon_sym_double] = ACTIONS(1362), - [anon_sym_float16] = ACTIONS(1362), - [anon_sym_bfloat16] = ACTIONS(1362), - [anon_sym_float128] = ACTIONS(1362), - [anon_sym_iptr] = ACTIONS(1362), - [anon_sym_uptr] = ACTIONS(1362), - [anon_sym_isz] = ACTIONS(1362), - [anon_sym_usz] = ACTIONS(1362), - [anon_sym_anyfault] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_DOLLARtypeof] = ACTIONS(1362), - [anon_sym_DOLLARtypefrom] = ACTIONS(1362), - [anon_sym_DOLLARvatype] = ACTIONS(1362), - [anon_sym_DOLLARevaltype] = ACTIONS(1362), - [sym_real_literal] = ACTIONS(1364), - }, - [873] = { - [sym_line_comment] = STATE(873), - [sym_doc_comment] = STATE(873), - [sym_block_comment] = STATE(873), - [sym_ident] = ACTIONS(1362), - [sym_integer_literal] = ACTIONS(1364), - [anon_sym_SQUOTE] = ACTIONS(1364), - [anon_sym_DQUOTE] = ACTIONS(1364), - [anon_sym_BQUOTE] = ACTIONS(1364), - [sym_bytes_literal] = ACTIONS(1364), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1362), - [sym_at_ident] = ACTIONS(1364), - [sym_hash_ident] = ACTIONS(1364), - [sym_type_ident] = ACTIONS(1364), - [sym_ct_type_ident] = ACTIONS(1364), - [sym_const_ident] = ACTIONS(1362), - [sym_builtin] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_RBRACK] = ACTIONS(1732), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_AMP_AMP] = ACTIONS(1364), - [anon_sym_int] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(1364), - [anon_sym_DOLLARalignof] = ACTIONS(1362), - [anon_sym_DOLLARextnameof] = ACTIONS(1362), - [anon_sym_DOLLARnameof] = ACTIONS(1362), - [anon_sym_DOLLARoffsetof] = ACTIONS(1362), - [anon_sym_DOLLARqnameof] = ACTIONS(1362), - [anon_sym_DOLLARvaconst] = ACTIONS(1362), - [anon_sym_DOLLARvaarg] = ACTIONS(1362), - [anon_sym_DOLLARvaref] = ACTIONS(1362), - [anon_sym_DOLLARvaexpr] = ACTIONS(1362), - [anon_sym_true] = ACTIONS(1362), - [anon_sym_false] = ACTIONS(1362), - [anon_sym_null] = ACTIONS(1362), - [anon_sym_DOLLARvacount] = ACTIONS(1362), - [anon_sym_DOLLARappend] = ACTIONS(1362), - [anon_sym_DOLLARconcat] = ACTIONS(1362), - [anon_sym_DOLLAReval] = ACTIONS(1362), - [anon_sym_DOLLARis_const] = ACTIONS(1362), - [anon_sym_DOLLARsizeof] = ACTIONS(1362), - [anon_sym_DOLLARstringify] = ACTIONS(1362), - [anon_sym_DOLLARand] = ACTIONS(1362), - [anon_sym_DOLLARdefined] = ACTIONS(1362), - [anon_sym_DOLLARembed] = ACTIONS(1362), - [anon_sym_DOLLARor] = ACTIONS(1362), - [anon_sym_DOLLARfeature] = ACTIONS(1362), - [anon_sym_DOLLARassignable] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1364), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_PLUS_PLUS] = ACTIONS(1364), - [anon_sym_DASH_DASH] = ACTIONS(1364), - [anon_sym_typeid] = ACTIONS(1362), - [anon_sym_LBRACE_PIPE] = ACTIONS(1364), - [anon_sym_void] = ACTIONS(1362), - [anon_sym_bool] = ACTIONS(1362), - [anon_sym_char] = ACTIONS(1362), - [anon_sym_ichar] = ACTIONS(1362), - [anon_sym_short] = ACTIONS(1362), - [anon_sym_ushort] = ACTIONS(1362), - [anon_sym_uint] = ACTIONS(1362), - [anon_sym_long] = ACTIONS(1362), - [anon_sym_ulong] = ACTIONS(1362), - [anon_sym_int128] = ACTIONS(1362), - [anon_sym_uint128] = ACTIONS(1362), - [anon_sym_float] = ACTIONS(1362), - [anon_sym_double] = ACTIONS(1362), - [anon_sym_float16] = ACTIONS(1362), - [anon_sym_bfloat16] = ACTIONS(1362), - [anon_sym_float128] = ACTIONS(1362), - [anon_sym_iptr] = ACTIONS(1362), - [anon_sym_uptr] = ACTIONS(1362), - [anon_sym_isz] = ACTIONS(1362), - [anon_sym_usz] = ACTIONS(1362), - [anon_sym_anyfault] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_DOLLARtypeof] = ACTIONS(1362), - [anon_sym_DOLLARtypefrom] = ACTIONS(1362), - [anon_sym_DOLLARvatype] = ACTIONS(1362), - [anon_sym_DOLLARevaltype] = ACTIONS(1362), - [sym_real_literal] = ACTIONS(1364), - }, - [874] = { - [sym_line_comment] = STATE(874), - [sym_doc_comment] = STATE(874), - [sym_block_comment] = STATE(874), - [sym_ident] = ACTIONS(1738), - [sym_integer_literal] = ACTIONS(1740), - [anon_sym_SQUOTE] = ACTIONS(1740), - [anon_sym_DQUOTE] = ACTIONS(1740), - [anon_sym_BQUOTE] = ACTIONS(1740), - [sym_bytes_literal] = ACTIONS(1740), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1738), - [sym_at_ident] = ACTIONS(1740), - [sym_hash_ident] = ACTIONS(1740), - [sym_type_ident] = ACTIONS(1740), - [sym_ct_type_ident] = ACTIONS(1740), - [sym_const_ident] = ACTIONS(1738), - [sym_builtin] = ACTIONS(1740), - [anon_sym_LPAREN] = ACTIONS(1740), - [anon_sym_AMP] = ACTIONS(1738), - [anon_sym_fn] = ACTIONS(1738), - [anon_sym_LBRACE] = ACTIONS(1738), - [anon_sym_AMP_AMP] = ACTIONS(1740), - [anon_sym_int] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_STAR] = ACTIONS(1740), - [anon_sym_DOLLARalignof] = ACTIONS(1738), - [anon_sym_DOLLARextnameof] = ACTIONS(1738), - [anon_sym_DOLLARnameof] = ACTIONS(1738), - [anon_sym_DOLLARoffsetof] = ACTIONS(1738), - [anon_sym_DOLLARqnameof] = ACTIONS(1738), - [anon_sym_DOLLARvaconst] = ACTIONS(1738), - [anon_sym_DOLLARvaarg] = ACTIONS(1738), - [anon_sym_DOLLARvaref] = ACTIONS(1738), - [anon_sym_DOLLARvaexpr] = ACTIONS(1738), - [anon_sym_true] = ACTIONS(1738), - [anon_sym_false] = ACTIONS(1738), - [anon_sym_null] = ACTIONS(1738), - [anon_sym_DOLLARvacount] = ACTIONS(1738), - [anon_sym_DOLLARappend] = ACTIONS(1738), - [anon_sym_DOLLARconcat] = ACTIONS(1738), - [anon_sym_DOLLAReval] = ACTIONS(1738), - [anon_sym_DOLLARis_const] = ACTIONS(1738), - [anon_sym_DOLLARsizeof] = ACTIONS(1738), - [anon_sym_DOLLARstringify] = ACTIONS(1738), - [anon_sym_DOLLARand] = ACTIONS(1738), - [anon_sym_DOLLARdefined] = ACTIONS(1738), - [anon_sym_DOLLARembed] = ACTIONS(1738), - [anon_sym_DOLLARor] = ACTIONS(1738), - [anon_sym_DOLLARfeature] = ACTIONS(1738), - [anon_sym_DOLLARassignable] = ACTIONS(1738), - [anon_sym_BANG] = ACTIONS(1740), - [anon_sym_TILDE] = ACTIONS(1740), - [anon_sym_PLUS_PLUS] = ACTIONS(1740), - [anon_sym_DASH_DASH] = ACTIONS(1740), - [anon_sym_typeid] = ACTIONS(1738), - [anon_sym_LBRACE_PIPE] = ACTIONS(1740), - [anon_sym_void] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_ichar] = ACTIONS(1738), - [anon_sym_short] = ACTIONS(1738), - [anon_sym_ushort] = ACTIONS(1738), - [anon_sym_uint] = ACTIONS(1738), - [anon_sym_long] = ACTIONS(1738), - [anon_sym_ulong] = ACTIONS(1738), - [anon_sym_int128] = ACTIONS(1738), - [anon_sym_uint128] = ACTIONS(1738), - [anon_sym_float] = ACTIONS(1738), - [anon_sym_double] = ACTIONS(1738), - [anon_sym_float16] = ACTIONS(1738), - [anon_sym_bfloat16] = ACTIONS(1738), - [anon_sym_float128] = ACTIONS(1738), - [anon_sym_iptr] = ACTIONS(1738), - [anon_sym_uptr] = ACTIONS(1738), - [anon_sym_isz] = ACTIONS(1738), - [anon_sym_usz] = ACTIONS(1738), - [anon_sym_anyfault] = ACTIONS(1738), - [anon_sym_any] = ACTIONS(1738), - [anon_sym_DOLLARtypeof] = ACTIONS(1738), - [anon_sym_DOLLARtypefrom] = ACTIONS(1738), - [anon_sym_DOLLARvatype] = ACTIONS(1738), - [anon_sym_DOLLARevaltype] = ACTIONS(1738), - [sym_real_literal] = ACTIONS(1740), - }, - [875] = { - [sym_line_comment] = STATE(875), - [sym_doc_comment] = STATE(875), - [sym_block_comment] = STATE(875), - [sym_ident] = ACTIONS(1362), - [sym_integer_literal] = ACTIONS(1364), - [anon_sym_SQUOTE] = ACTIONS(1364), - [anon_sym_DQUOTE] = ACTIONS(1364), - [anon_sym_BQUOTE] = ACTIONS(1364), - [sym_bytes_literal] = ACTIONS(1364), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1362), - [sym_at_ident] = ACTIONS(1364), - [sym_hash_ident] = ACTIONS(1364), - [sym_type_ident] = ACTIONS(1364), - [sym_ct_type_ident] = ACTIONS(1364), - [sym_const_ident] = ACTIONS(1362), - [sym_builtin] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_AMP_AMP] = ACTIONS(1364), - [anon_sym_int] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(1364), - [anon_sym_DOLLARalignof] = ACTIONS(1362), - [anon_sym_DOLLARextnameof] = ACTIONS(1362), - [anon_sym_DOLLARnameof] = ACTIONS(1362), - [anon_sym_DOLLARoffsetof] = ACTIONS(1362), - [anon_sym_DOLLARqnameof] = ACTIONS(1362), - [anon_sym_DOLLARvaconst] = ACTIONS(1362), - [anon_sym_DOLLARvaarg] = ACTIONS(1362), - [anon_sym_DOLLARvaref] = ACTIONS(1362), - [anon_sym_DOLLARvaexpr] = ACTIONS(1362), - [anon_sym_true] = ACTIONS(1362), - [anon_sym_false] = ACTIONS(1362), - [anon_sym_null] = ACTIONS(1362), - [anon_sym_DOLLARvacount] = ACTIONS(1362), - [anon_sym_DOLLARappend] = ACTIONS(1362), - [anon_sym_DOLLARconcat] = ACTIONS(1362), - [anon_sym_DOLLAReval] = ACTIONS(1362), - [anon_sym_DOLLARis_const] = ACTIONS(1362), - [anon_sym_DOLLARsizeof] = ACTIONS(1362), - [anon_sym_DOLLARstringify] = ACTIONS(1362), - [anon_sym_DOLLARand] = ACTIONS(1362), - [anon_sym_DOLLARdefined] = ACTIONS(1362), - [anon_sym_DOLLARembed] = ACTIONS(1362), - [anon_sym_DOLLARor] = ACTIONS(1362), - [anon_sym_DOLLARfeature] = ACTIONS(1362), - [anon_sym_DOLLARassignable] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1364), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_PLUS_PLUS] = ACTIONS(1364), - [anon_sym_DASH_DASH] = ACTIONS(1364), - [anon_sym_typeid] = ACTIONS(1362), - [anon_sym_LBRACE_PIPE] = ACTIONS(1364), - [anon_sym_void] = ACTIONS(1362), - [anon_sym_bool] = ACTIONS(1362), - [anon_sym_char] = ACTIONS(1362), - [anon_sym_ichar] = ACTIONS(1362), - [anon_sym_short] = ACTIONS(1362), - [anon_sym_ushort] = ACTIONS(1362), - [anon_sym_uint] = ACTIONS(1362), - [anon_sym_long] = ACTIONS(1362), - [anon_sym_ulong] = ACTIONS(1362), - [anon_sym_int128] = ACTIONS(1362), - [anon_sym_uint128] = ACTIONS(1362), - [anon_sym_float] = ACTIONS(1362), - [anon_sym_double] = ACTIONS(1362), - [anon_sym_float16] = ACTIONS(1362), - [anon_sym_bfloat16] = ACTIONS(1362), - [anon_sym_float128] = ACTIONS(1362), - [anon_sym_iptr] = ACTIONS(1362), - [anon_sym_uptr] = ACTIONS(1362), - [anon_sym_isz] = ACTIONS(1362), - [anon_sym_usz] = ACTIONS(1362), - [anon_sym_anyfault] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_DOLLARtypeof] = ACTIONS(1362), - [anon_sym_DOLLARtypefrom] = ACTIONS(1362), - [anon_sym_DOLLARvatype] = ACTIONS(1362), - [anon_sym_DOLLARevaltype] = ACTIONS(1362), - [sym_real_literal] = ACTIONS(1364), - }, - [876] = { - [sym_line_comment] = STATE(876), - [sym_doc_comment] = STATE(876), - [sym_block_comment] = STATE(876), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1627), - [sym_global_storage] = STATE(1165), - [sym_module] = STATE(929), - [sym_import_declaration] = STATE(929), - [sym_define_declaration] = STATE(929), - [sym_distinct_declaration] = STATE(929), - [sym_const_declaration] = STATE(929), - [sym_global_declaration] = STATE(929), - [sym__struct_or_union] = STATE(2296), - [sym_struct_declaration] = STATE(929), - [sym_bitstruct_declaration] = STATE(929), - [sym_fault_declaration] = STATE(929), - [sym_enum_declaration] = STATE(929), - [sym_interface_declaration] = STATE(929), - [sym_func_declaration] = STATE(929), - [sym_func_definition] = STATE(929), - [sym_macro_declaration] = STATE(929), - [sym_ct_assert_stmt] = STATE(929), - [sym_ct_include_stmt] = STATE(929), - [sym_ct_exec_stmt] = STATE(929), - [sym_ct_echo_stmt] = STATE(929), - [sym_module_type_ident] = STATE(1008), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1167), - [sym__type_optional] = STATE(2283), - [aux_sym_source_file_repeat1] = STATE(876), - [ts_builtin_sym_end] = ACTIONS(1742), - [sym_ident] = ACTIONS(1744), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_type_ident] = ACTIONS(1747), - [sym_ct_type_ident] = ACTIONS(1750), - [anon_sym_tlocal] = ACTIONS(1753), - [anon_sym_extern] = ACTIONS(1756), - [anon_sym_module] = ACTIONS(1759), - [anon_sym_import] = ACTIONS(1762), - [anon_sym_fn] = ACTIONS(1765), - [anon_sym_def] = ACTIONS(1768), - [anon_sym_distinct] = ACTIONS(1771), - [anon_sym_const] = ACTIONS(1774), - [anon_sym_struct] = ACTIONS(1777), - [anon_sym_union] = ACTIONS(1777), - [anon_sym_bitstruct] = ACTIONS(1780), - [anon_sym_fault] = ACTIONS(1783), - [anon_sym_enum] = ACTIONS(1786), - [anon_sym_interface] = ACTIONS(1789), - [anon_sym_macro] = ACTIONS(1792), - [anon_sym_int] = ACTIONS(1795), - [anon_sym_DOLLARassert] = ACTIONS(1798), - [anon_sym_DOLLARerror] = ACTIONS(1801), - [anon_sym_DOLLARinclude] = ACTIONS(1804), - [anon_sym_DOLLARexec] = ACTIONS(1807), - [anon_sym_DOLLARecho] = ACTIONS(1810), - [anon_sym_typeid] = ACTIONS(1795), - [anon_sym_void] = ACTIONS(1795), - [anon_sym_bool] = ACTIONS(1795), - [anon_sym_char] = ACTIONS(1795), - [anon_sym_ichar] = ACTIONS(1795), - [anon_sym_short] = ACTIONS(1795), - [anon_sym_ushort] = ACTIONS(1795), - [anon_sym_uint] = ACTIONS(1795), - [anon_sym_long] = ACTIONS(1795), - [anon_sym_ulong] = ACTIONS(1795), - [anon_sym_int128] = ACTIONS(1795), - [anon_sym_uint128] = ACTIONS(1795), - [anon_sym_float] = ACTIONS(1795), - [anon_sym_double] = ACTIONS(1795), - [anon_sym_float16] = ACTIONS(1795), - [anon_sym_bfloat16] = ACTIONS(1795), - [anon_sym_float128] = ACTIONS(1795), - [anon_sym_iptr] = ACTIONS(1795), - [anon_sym_uptr] = ACTIONS(1795), - [anon_sym_isz] = ACTIONS(1795), - [anon_sym_usz] = ACTIONS(1795), - [anon_sym_anyfault] = ACTIONS(1795), - [anon_sym_any] = ACTIONS(1795), - [anon_sym_DOLLARtypeof] = ACTIONS(1813), - [anon_sym_DOLLARtypefrom] = ACTIONS(1816), - [anon_sym_DOLLARvatype] = ACTIONS(1816), - [anon_sym_DOLLARevaltype] = ACTIONS(1816), - }, - [877] = { - [sym_line_comment] = STATE(877), - [sym_doc_comment] = STATE(877), - [sym_block_comment] = STATE(877), - [sym_module_resolution] = STATE(1537), - [aux_sym__module_path] = STATE(1627), - [sym_global_storage] = STATE(1165), - [sym_module] = STATE(929), - [sym_import_declaration] = STATE(929), - [sym_define_declaration] = STATE(929), - [sym_distinct_declaration] = STATE(929), - [sym_const_declaration] = STATE(929), - [sym_global_declaration] = STATE(929), - [sym__struct_or_union] = STATE(2296), - [sym_struct_declaration] = STATE(929), - [sym_bitstruct_declaration] = STATE(929), - [sym_fault_declaration] = STATE(929), - [sym_enum_declaration] = STATE(929), - [sym_interface_declaration] = STATE(929), - [sym_func_declaration] = STATE(929), - [sym_func_definition] = STATE(929), - [sym_macro_declaration] = STATE(929), - [sym_ct_assert_stmt] = STATE(929), - [sym_ct_include_stmt] = STATE(929), - [sym_ct_exec_stmt] = STATE(929), - [sym_ct_echo_stmt] = STATE(929), - [sym_module_type_ident] = STATE(1008), - [sym_base_type_name] = STATE(1043), - [sym_base_type] = STATE(1025), - [sym_type] = STATE(1167), - [sym__type_optional] = STATE(2283), - [aux_sym_source_file_repeat1] = STATE(876), - [ts_builtin_sym_end] = ACTIONS(1819), + [sym_module_resolution] = STATE(1421), + [aux_sym__module_path] = STATE(1532), + [sym_global_storage] = STATE(1171), + [sym_module] = STATE(909), + [sym_import_declaration] = STATE(909), + [sym_define_declaration] = STATE(909), + [sym_distinct_declaration] = STATE(909), + [sym_const_declaration] = STATE(909), + [sym_global_declaration] = STATE(909), + [sym__struct_or_union] = STATE(2123), + [sym_struct_declaration] = STATE(909), + [sym_bitstruct_declaration] = STATE(909), + [sym_fault_declaration] = STATE(909), + [sym_enum_declaration] = STATE(909), + [sym_interface_declaration] = STATE(909), + [sym_func_declaration] = STATE(909), + [sym_func_definition] = STATE(909), + [sym_macro_declaration] = STATE(909), + [sym_ct_assert_stmt] = STATE(909), + [sym_ct_include_stmt] = STATE(909), + [sym_ct_exec_stmt] = STATE(909), + [sym_ct_echo_stmt] = STATE(909), + [sym_module_type_ident] = STATE(989), + [sym_base_type_name] = STATE(1033), + [sym_base_type] = STATE(1018), + [sym_type] = STATE(2110), + [aux_sym_source_file_repeat1] = STATE(823), + [ts_builtin_sym_end] = ACTIONS(1797), [sym_ident] = ACTIONS(11), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), @@ -128297,34 +119859,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), [anon_sym_DOLLARtypeof] = ACTIONS(57), - [anon_sym_DOLLARtypefrom] = ACTIONS(59), - [anon_sym_DOLLARvatype] = ACTIONS(59), - [anon_sym_DOLLARevaltype] = ACTIONS(59), + [anon_sym_DOLLARtypefrom] = ACTIONS(57), + [anon_sym_DOLLARvatype] = ACTIONS(57), + [anon_sym_DOLLARevaltype] = ACTIONS(57), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 10, + [0] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(67), 1, + ACTIONS(1799), 1, anon_sym_DQUOTE, - ACTIONS(69), 1, + ACTIONS(1802), 1, anon_sym_BQUOTE, - STATE(879), 1, - aux_sym_string_expr_repeat1, - STATE(982), 2, + STATE(955), 2, sym_string_literal, sym_raw_string_literal, - STATE(878), 3, + STATE(825), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1823), 17, + aux_sym_string_expr_repeat1, + ACTIONS(1807), 17, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, @@ -128342,7 +119903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(1821), 32, + ACTIONS(1805), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -128375,26 +119936,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [81] = 9, + [79] = 10, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1825), 1, + ACTIONS(65), 1, anon_sym_DQUOTE, - ACTIONS(1828), 1, + ACTIONS(67), 1, anon_sym_BQUOTE, - STATE(982), 2, + STATE(825), 1, + aux_sym_string_expr_repeat1, + STATE(955), 2, sym_string_literal, sym_raw_string_literal, - STATE(879), 4, + STATE(826), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_string_expr_repeat1, - ACTIONS(1833), 17, + ACTIONS(1811), 17, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, @@ -128412,7 +119974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(1831), 32, + ACTIONS(1809), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -128452,17 +120014,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1835), 1, + ACTIONS(1813), 1, sym_at_ident, - STATE(902), 1, + STATE(938), 1, aux_sym_call_inline_attributes_repeat1, - STATE(988), 1, + STATE(962), 1, sym_call_inline_attributes, - STATE(880), 3, + STATE(827), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1839), 17, + ACTIONS(1817), 17, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, @@ -128480,7 +120042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(1837), 33, + ACTIONS(1815), 33, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -128521,11 +120083,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(881), 3, + STATE(828), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1841), 13, + ACTIONS(1819), 13, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -128539,7 +120101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(1843), 40, + ACTIONS(1821), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -128580,18 +120142,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [310] = 6, + [310] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(882), 3, + ACTIONS(1813), 1, + sym_at_ident, + STATE(938), 1, + aux_sym_call_inline_attributes_repeat1, + STATE(975), 1, + sym_call_inline_attributes, + STATE(829), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1825), 17, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1823), 33, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [388] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(830), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1845), 13, + ACTIONS(1827), 13, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -128605,7 +120236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(1847), 40, + ACTIONS(1829), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -128646,54 +120277,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [382] = 9, + [460] = 38, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, ACTIONS(1835), 1, - sym_at_ident, - STATE(902), 1, - aux_sym_call_inline_attributes_repeat1, - STATE(985), 1, - sym_call_inline_attributes, - STATE(883), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(1851), 17, anon_sym_EQ, + ACTIONS(1837), 1, anon_sym_LPAREN, + ACTIONS(1839), 1, anon_sym_AMP, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1843), 1, anon_sym_DOT, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, anon_sym_PLUS, + ACTIONS(1849), 1, anon_sym_DASH, + ACTIONS(1851), 1, anon_sym_LT_LT, + ACTIONS(1853), 1, anon_sym_GT_GT, + ACTIONS(1855), 1, anon_sym_STAR, + ACTIONS(1857), 1, anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, anon_sym_SLASH, + ACTIONS(1871), 1, anon_sym_PERCENT, + ACTIONS(1873), 1, anon_sym_PIPE, + ACTIONS(1875), 1, anon_sym_CARET, + ACTIONS(1877), 1, + anon_sym_EQ_EQ, + ACTIONS(1879), 1, + anon_sym_BANG_EQ, + ACTIONS(1881), 1, anon_sym_GT, + ACTIONS(1883), 1, + anon_sym_GT_EQ, + ACTIONS(1885), 1, + anon_sym_LT_EQ, + ACTIONS(1887), 1, anon_sym_LT, - ACTIONS(1849), 33, + ACTIONS(1889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(831), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1831), 19, anon_sym_COMMA, - anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, anon_sym_DOT_DOT, - anon_sym_AMP_AMP, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -128704,29 +120373,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [460] = 6, + [595] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(884), 3, + STATE(832), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1853), 12, + ACTIONS(1893), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -128739,7 +120398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(1855), 40, + ACTIONS(1895), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -128780,18 +120439,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [531] = 6, + [666] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(885), 3, + STATE(833), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1392), 12, + ACTIONS(1897), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -128804,7 +120463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(1390), 40, + ACTIONS(1899), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -128845,18 +120504,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [602] = 6, + [737] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(886), 3, + STATE(834), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1857), 12, + ACTIONS(1901), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -128869,7 +120528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(1859), 40, + ACTIONS(1903), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -128910,18 +120569,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [673] = 6, + [808] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(887), 3, + STATE(835), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1861), 12, + ACTIONS(1905), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -128934,7 +120593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(1863), 40, + ACTIONS(1907), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -128975,18 +120634,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [744] = 6, + [879] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(888), 3, + STATE(836), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1865), 12, + ACTIONS(1909), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -128999,7 +120658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(1867), 40, + ACTIONS(1911), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -129040,18 +120699,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [815] = 6, + [950] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(889), 3, + STATE(837), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1869), 12, + ACTIONS(1913), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -129064,7 +120723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(1871), 40, + ACTIONS(1915), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -129105,18 +120764,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [886] = 6, + [1021] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(890), 3, + STATE(838), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1742), 12, + ACTIONS(1917), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -129129,7 +120788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(1873), 40, + ACTIONS(1919), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -129170,18 +120829,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [957] = 6, + [1092] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(891), 3, + STATE(839), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1875), 12, + ACTIONS(1921), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -129194,7 +120853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(1877), 40, + ACTIONS(1923), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -129235,18 +120894,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [1028] = 6, + [1163] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(892), 3, + STATE(840), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1879), 12, + ACTIONS(1925), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -129259,7 +120918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(1881), 40, + ACTIONS(1927), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -129300,18 +120959,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [1099] = 6, + [1234] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(893), 3, + STATE(841), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1883), 12, + ACTIONS(1373), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -129324,7 +120983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(1885), 40, + ACTIONS(1371), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -129365,18 +121024,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [1170] = 6, + [1305] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(894), 3, + STATE(842), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1887), 12, + ACTIONS(1929), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -129389,7 +121048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(1889), 40, + ACTIONS(1931), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -129430,18 +121089,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [1241] = 6, + [1376] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(895), 3, + STATE(843), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1891), 12, + ACTIONS(1933), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -129454,7 +121113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(1893), 40, + ACTIONS(1935), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -129495,18 +121154,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [1312] = 6, + [1447] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(896), 3, + STATE(844), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1895), 12, + ACTIONS(1937), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -129519,7 +121178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(1897), 40, + ACTIONS(1939), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -129560,18 +121219,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [1383] = 6, + [1518] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(897), 3, + STATE(845), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1899), 12, + ACTIONS(1941), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -129584,7 +121243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(1901), 40, + ACTIONS(1943), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -129625,18 +121284,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [1454] = 6, + [1589] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(898), 3, + STATE(846), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1903), 12, + ACTIONS(1945), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -129649,7 +121308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(1905), 40, + ACTIONS(1947), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -129690,18 +121349,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [1525] = 6, + [1660] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(899), 3, + STATE(847), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1907), 12, + ACTIONS(1949), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -129714,7 +121373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(1909), 40, + ACTIONS(1951), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -129755,18 +121414,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [1596] = 6, + [1731] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(900), 3, + STATE(848), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1911), 12, + ACTIONS(1953), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -129779,7 +121438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(1913), 40, + ACTIONS(1955), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -129820,18 +121479,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [1667] = 6, + [1802] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(901), 3, + STATE(849), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1915), 12, + ACTIONS(1957), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -129844,7 +121503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(1917), 40, + ACTIONS(1959), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -129885,85 +121544,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [1738] = 8, + [1873] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1835), 1, - sym_at_ident, - STATE(955), 1, - aux_sym_call_inline_attributes_repeat1, - STATE(902), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(1921), 17, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1919), 33, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, - [1813] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(903), 3, + STATE(850), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1923), 12, + ACTIONS(1961), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -129976,7 +121568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(1925), 40, + ACTIONS(1963), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -130017,18 +121609,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [1884] = 6, + [1944] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(904), 3, + STATE(851), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1412), 12, + ACTIONS(1965), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -130041,7 +121633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(1410), 40, + ACTIONS(1967), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -130082,18 +121674,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [1955] = 6, + [2015] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(905), 3, + STATE(852), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1927), 12, + ACTIONS(1455), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -130106,7 +121698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(1929), 40, + ACTIONS(1453), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -130147,18 +121739,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [2026] = 6, + [2086] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(906), 3, + STATE(853), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1931), 12, + ACTIONS(1969), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -130171,7 +121763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(1933), 40, + ACTIONS(1971), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -130212,18 +121804,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [2097] = 6, + [2157] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(907), 3, + STATE(854), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1935), 12, + ACTIONS(1973), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -130236,7 +121828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(1937), 40, + ACTIONS(1975), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -130277,83 +121869,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [2168] = 6, + [2228] = 39, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(908), 3, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, + anon_sym_AMP, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1843), 1, + anon_sym_DOT, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, + anon_sym_PLUS, + ACTIONS(1849), 1, + anon_sym_DASH, + ACTIONS(1851), 1, + anon_sym_LT_LT, + ACTIONS(1853), 1, + anon_sym_GT_GT, + ACTIONS(1855), 1, + anon_sym_STAR, + ACTIONS(1857), 1, + anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, + anon_sym_SLASH, + ACTIONS(1871), 1, + anon_sym_PERCENT, + ACTIONS(1873), 1, + anon_sym_PIPE, + ACTIONS(1875), 1, + anon_sym_CARET, + ACTIONS(1877), 1, + anon_sym_EQ_EQ, + ACTIONS(1879), 1, + anon_sym_BANG_EQ, + ACTIONS(1881), 1, + anon_sym_GT, + ACTIONS(1883), 1, + anon_sym_GT_EQ, + ACTIONS(1885), 1, + anon_sym_LT_EQ, + ACTIONS(1887), 1, + anon_sym_LT, + ACTIONS(1889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, + anon_sym_EQ, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(855), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1606), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(1604), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [2239] = 6, + ACTIONS(1977), 9, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_GT_RBRACK, + ACTIONS(1981), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [2365] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(909), 3, + STATE(856), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1939), 12, + ACTIONS(1983), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -130366,7 +121991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(1941), 40, + ACTIONS(1985), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -130407,83 +122032,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [2310] = 6, + [2436] = 34, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(910), 3, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, + anon_sym_AMP, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1843), 1, + anon_sym_DOT, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, + anon_sym_PLUS, + ACTIONS(1849), 1, + anon_sym_DASH, + ACTIONS(1851), 1, + anon_sym_LT_LT, + ACTIONS(1853), 1, + anon_sym_GT_GT, + ACTIONS(1855), 1, + anon_sym_STAR, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, + anon_sym_SLASH, + ACTIONS(1871), 1, + anon_sym_PERCENT, + ACTIONS(1873), 1, + anon_sym_PIPE, + ACTIONS(1875), 1, + anon_sym_CARET, + ACTIONS(1877), 1, + anon_sym_EQ_EQ, + ACTIONS(1879), 1, + anon_sym_BANG_EQ, + ACTIONS(1881), 1, + anon_sym_GT, + ACTIONS(1883), 1, + anon_sym_GT_EQ, + ACTIONS(1885), 1, + anon_sym_LT_EQ, + ACTIONS(1887), 1, + anon_sym_LT, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + ACTIONS(1989), 2, + anon_sym_EQ, + anon_sym_QMARK, + STATE(857), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1943), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(1945), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [2381] = 6, + ACTIONS(1987), 22, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_GT_RBRACK, + [2563] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(911), 3, + STATE(858), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1947), 12, + ACTIONS(1459), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -130496,7 +122149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(1949), 40, + ACTIONS(1457), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -130537,18 +122190,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [2452] = 6, + [2634] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(912), 3, + STATE(859), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1951), 12, + ACTIONS(1483), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -130561,7 +122214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(1953), 40, + ACTIONS(1481), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -130602,18 +122255,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [2523] = 6, + [2705] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(913), 3, + STATE(860), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1955), 12, + ACTIONS(1991), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -130626,7 +122279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(1957), 40, + ACTIONS(1993), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -130667,18 +122320,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [2594] = 6, + [2776] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(914), 3, + STATE(861), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1959), 12, + ACTIONS(1995), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -130691,7 +122344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(1961), 40, + ACTIONS(1997), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -130732,18 +122385,276 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [2665] = 6, + [2847] = 27, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(915), 3, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, + anon_sym_AMP, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1843), 1, + anon_sym_DOT, + ACTIONS(1847), 1, + anon_sym_PLUS, + ACTIONS(1849), 1, + anon_sym_DASH, + ACTIONS(1851), 1, + anon_sym_LT_LT, + ACTIONS(1853), 1, + anon_sym_GT_GT, + ACTIONS(1855), 1, + anon_sym_STAR, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, + anon_sym_SLASH, + ACTIONS(1871), 1, + anon_sym_PERCENT, + ACTIONS(1873), 1, + anon_sym_PIPE, + ACTIONS(1875), 1, + anon_sym_CARET, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(862), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1989), 4, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1987), 27, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE, + anon_sym_GT_RBRACK, + [2960] = 27, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, + anon_sym_AMP, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1843), 1, + anon_sym_DOT, + ACTIONS(1847), 1, + anon_sym_PLUS, + ACTIONS(1849), 1, + anon_sym_DASH, + ACTIONS(1851), 1, + anon_sym_LT_LT, + ACTIONS(1853), 1, + anon_sym_GT_GT, + ACTIONS(1855), 1, + anon_sym_STAR, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, + anon_sym_SLASH, + ACTIONS(1871), 1, + anon_sym_PERCENT, + ACTIONS(1873), 1, + anon_sym_PIPE, + ACTIONS(1875), 1, + anon_sym_CARET, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(863), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1989), 4, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1987), 27, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE, + anon_sym_GT_RBRACK, + [3073] = 27, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, + anon_sym_AMP, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1843), 1, + anon_sym_DOT, + ACTIONS(1847), 1, + anon_sym_PLUS, + ACTIONS(1849), 1, + anon_sym_DASH, + ACTIONS(1851), 1, + anon_sym_LT_LT, + ACTIONS(1853), 1, + anon_sym_GT_GT, + ACTIONS(1855), 1, + anon_sym_STAR, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, + anon_sym_SLASH, + ACTIONS(1871), 1, + anon_sym_PERCENT, + ACTIONS(1873), 1, + anon_sym_PIPE, + ACTIONS(1875), 1, + anon_sym_CARET, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(864), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1989), 4, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1987), 27, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE, + anon_sym_GT_RBRACK, + [3186] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(865), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1963), 12, + ACTIONS(1999), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -130756,7 +122667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(1965), 40, + ACTIONS(2001), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -130797,18 +122708,438 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [2736] = 6, + [3257] = 27, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(916), 3, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, + anon_sym_AMP, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1843), 1, + anon_sym_DOT, + ACTIONS(1847), 1, + anon_sym_PLUS, + ACTIONS(1849), 1, + anon_sym_DASH, + ACTIONS(1851), 1, + anon_sym_LT_LT, + ACTIONS(1853), 1, + anon_sym_GT_GT, + ACTIONS(1855), 1, + anon_sym_STAR, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, + anon_sym_SLASH, + ACTIONS(1871), 1, + anon_sym_PERCENT, + ACTIONS(1873), 1, + anon_sym_PIPE, + ACTIONS(1875), 1, + anon_sym_CARET, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(866), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1989), 4, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1987), 27, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE, + anon_sym_GT_RBRACK, + [3370] = 27, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, + anon_sym_AMP, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1843), 1, + anon_sym_DOT, + ACTIONS(1847), 1, + anon_sym_PLUS, + ACTIONS(1849), 1, + anon_sym_DASH, + ACTIONS(1851), 1, + anon_sym_LT_LT, + ACTIONS(1853), 1, + anon_sym_GT_GT, + ACTIONS(1855), 1, + anon_sym_STAR, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, + anon_sym_SLASH, + ACTIONS(1871), 1, + anon_sym_PERCENT, + ACTIONS(1873), 1, + anon_sym_PIPE, + ACTIONS(1875), 1, + anon_sym_CARET, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(867), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1989), 4, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1987), 27, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE, + anon_sym_GT_RBRACK, + [3483] = 27, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, + anon_sym_AMP, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1843), 1, + anon_sym_DOT, + ACTIONS(1847), 1, + anon_sym_PLUS, + ACTIONS(1849), 1, + anon_sym_DASH, + ACTIONS(1851), 1, + anon_sym_LT_LT, + ACTIONS(1853), 1, + anon_sym_GT_GT, + ACTIONS(1855), 1, + anon_sym_STAR, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, + anon_sym_SLASH, + ACTIONS(1871), 1, + anon_sym_PERCENT, + ACTIONS(1873), 1, + anon_sym_PIPE, + ACTIONS(1875), 1, + anon_sym_CARET, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(868), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1989), 4, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1987), 27, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE, + anon_sym_GT_RBRACK, + [3596] = 22, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1843), 1, + anon_sym_DOT, + ACTIONS(1851), 1, + anon_sym_LT_LT, + ACTIONS(1853), 1, + anon_sym_GT_GT, + ACTIONS(1855), 1, + anon_sym_STAR, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, + anon_sym_SLASH, + ACTIONS(1871), 1, + anon_sym_PERCENT, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(869), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1989), 9, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1987), 27, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE, + anon_sym_GT_RBRACK, + [3699] = 22, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1843), 1, + anon_sym_DOT, + ACTIONS(1851), 1, + anon_sym_LT_LT, + ACTIONS(1853), 1, + anon_sym_GT_GT, + ACTIONS(1855), 1, + anon_sym_STAR, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, + anon_sym_SLASH, + ACTIONS(1871), 1, + anon_sym_PERCENT, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(870), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1989), 9, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1987), 27, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE, + anon_sym_GT_RBRACK, + [3802] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(871), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1967), 12, + ACTIONS(1723), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -130821,7 +123152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(1969), 40, + ACTIONS(2003), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -130862,83 +123193,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [2807] = 6, + [3873] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(917), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(1971), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(1973), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [2878] = 6, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1843), 1, + anon_sym_DOT, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(872), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1989), 14, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1987), 27, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE, + anon_sym_GT_RBRACK, + [3966] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(918), 3, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1843), 1, + anon_sym_DOT, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(873), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1989), 14, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1987), 27, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE, + anon_sym_GT_RBRACK, + [4059] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(874), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1975), 12, + ACTIONS(2005), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -130951,7 +123369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(1977), 40, + ACTIONS(2007), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -130992,18 +123410,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [2949] = 6, + [4130] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(919), 3, + STATE(875), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1979), 12, + ACTIONS(2009), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -131016,7 +123434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(1981), 40, + ACTIONS(2011), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -131057,18 +123475,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [3020] = 6, + [4201] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(920), 3, + STATE(876), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1983), 12, + ACTIONS(2013), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -131081,7 +123499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(1985), 40, + ACTIONS(2015), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -131122,18 +123540,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [3091] = 6, + [4272] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(921), 3, + STATE(877), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1987), 12, + ACTIONS(2017), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -131146,7 +123564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(1989), 40, + ACTIONS(2019), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -131187,18 +123605,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [3162] = 6, + [4343] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(922), 3, + STATE(878), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1991), 12, + ACTIONS(2021), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -131211,7 +123629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(1993), 40, + ACTIONS(2023), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -131252,18 +123670,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [3233] = 6, + [4414] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(923), 3, + STATE(879), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1995), 12, + ACTIONS(2025), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -131276,7 +123694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(1997), 40, + ACTIONS(2027), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -131317,18 +123735,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [3304] = 6, + [4485] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(924), 3, + STATE(880), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1999), 12, + ACTIONS(2029), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -131341,7 +123759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2001), 40, + ACTIONS(2031), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -131382,18 +123800,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [3375] = 6, + [4556] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(925), 3, + STATE(881), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2003), 12, + ACTIONS(2033), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -131406,7 +123824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2005), 40, + ACTIONS(2035), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -131447,18 +123865,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [3446] = 6, + [4627] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(926), 3, + STATE(882), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2007), 12, + ACTIONS(2037), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -131471,7 +123889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2009), 40, + ACTIONS(2039), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -131512,18 +123930,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [3517] = 6, + [4698] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(927), 3, + STATE(883), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2011), 12, + ACTIONS(2041), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -131536,7 +123954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2013), 40, + ACTIONS(2043), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -131577,18 +123995,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [3588] = 6, + [4769] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(928), 3, + STATE(884), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2015), 12, + ACTIONS(2045), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -131601,7 +124019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2017), 40, + ACTIONS(2047), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -131642,18 +124060,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [3659] = 6, + [4840] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(929), 3, + STATE(885), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2019), 12, + ACTIONS(2049), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -131666,7 +124084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2021), 40, + ACTIONS(2051), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -131707,18 +124125,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [3730] = 6, + [4911] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(930), 3, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1843), 1, + anon_sym_DOT, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(886), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1989), 14, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1987), 27, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE, + anon_sym_GT_RBRACK, + [5004] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(887), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2023), 12, + ACTIONS(2053), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -131731,7 +124225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2025), 40, + ACTIONS(2055), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -131772,83 +124266,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [3801] = 6, + [5075] = 12, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(931), 3, + ACTIONS(2061), 1, + anon_sym_LBRACK, + ACTIONS(2063), 1, + anon_sym_STAR, + ACTIONS(2065), 1, + anon_sym_BANG, + ACTIONS(2067), 1, + anon_sym_LBRACK_LT, + STATE(937), 1, + aux_sym_type_repeat1, + STATE(974), 1, + sym_type_suffix, + STATE(888), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2027), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(2029), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [3872] = 6, + ACTIONS(2059), 15, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2057), 31, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [5158] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(932), 3, + STATE(889), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2031), 12, + ACTIONS(2069), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -131861,7 +124361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2033), 40, + ACTIONS(2071), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -131902,18 +124402,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [3943] = 6, + [5229] = 20, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(933), 3, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1843), 1, + anon_sym_DOT, + ACTIONS(1855), 1, + anon_sym_STAR, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, + anon_sym_SLASH, + ACTIONS(1871), 1, + anon_sym_PERCENT, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(890), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1989), 11, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1987), 27, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE, + anon_sym_GT_RBRACK, + [5328] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(891), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2035), 12, + ACTIONS(2073), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -131926,7 +124505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2037), 40, + ACTIONS(2075), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -131967,18 +124546,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [4014] = 6, + [5399] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(934), 3, + STATE(892), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1408), 12, + ACTIONS(2077), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -131991,7 +124570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(1406), 40, + ACTIONS(2079), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -132032,18 +124611,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [4085] = 6, + [5470] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(935), 3, + STATE(893), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2039), 12, + ACTIONS(2081), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -132056,7 +124635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2041), 40, + ACTIONS(2083), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -132097,18 +124676,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [4156] = 6, + [5541] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(936), 3, + STATE(894), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2043), 12, + ACTIONS(2085), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -132121,7 +124700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2045), 40, + ACTIONS(2087), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -132162,18 +124741,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [4227] = 6, + [5612] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(937), 3, + STATE(895), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2047), 12, + ACTIONS(2089), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -132186,7 +124765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2049), 40, + ACTIONS(2091), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -132227,18 +124806,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [4298] = 6, + [5683] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(938), 3, + STATE(896), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2051), 12, + ACTIONS(2093), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -132251,7 +124830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2053), 40, + ACTIONS(2095), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -132292,18 +124871,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [4369] = 6, + [5754] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(939), 3, + STATE(897), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2055), 12, + ACTIONS(2097), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -132316,7 +124895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2057), 40, + ACTIONS(2099), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -132357,18 +124936,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [4440] = 6, + [5825] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(940), 3, + STATE(898), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1412), 12, + ACTIONS(2101), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -132381,7 +124960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(1410), 40, + ACTIONS(2103), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -132422,18 +125001,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [4511] = 6, + [5896] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(941), 3, + STATE(899), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1574), 12, + ACTIONS(2105), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -132446,7 +125025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(1572), 40, + ACTIONS(2107), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -132487,18 +125066,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [4582] = 6, + [5967] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(942), 3, + STATE(900), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2059), 12, + ACTIONS(2109), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -132511,7 +125090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2061), 40, + ACTIONS(2111), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -132552,18 +125131,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [4653] = 6, + [6038] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(943), 3, + STATE(901), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2063), 12, + ACTIONS(1563), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -132576,7 +125155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2065), 40, + ACTIONS(1561), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -132617,18 +125196,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [4724] = 6, + [6109] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(944), 3, + STATE(902), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2067), 12, + ACTIONS(2113), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -132641,7 +125220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2069), 40, + ACTIONS(2115), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -132682,18 +125261,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [4795] = 6, + [6180] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(945), 3, + STATE(903), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2071), 12, + ACTIONS(2117), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -132706,7 +125285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2073), 40, + ACTIONS(2119), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -132747,18 +125326,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [4866] = 6, + [6251] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(946), 3, + STATE(904), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1498), 12, + ACTIONS(2121), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -132771,7 +125350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(1496), 40, + ACTIONS(2123), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -132812,18 +125391,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [4937] = 6, + [6322] = 20, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(947), 3, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1843), 1, + anon_sym_DOT, + ACTIONS(1855), 1, + anon_sym_STAR, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, + anon_sym_SLASH, + ACTIONS(1871), 1, + anon_sym_PERCENT, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(905), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1989), 11, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1987), 27, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE, + anon_sym_GT_RBRACK, + [6421] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(906), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1494), 12, + ACTIONS(2125), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -132836,7 +125494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(1492), 40, + ACTIONS(2127), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -132877,148 +125535,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [5008] = 6, + [6492] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(948), 3, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1843), 1, + anon_sym_DOT, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(907), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2075), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(2077), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [5079] = 6, + ACTIONS(2131), 14, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2129), 27, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE, + anon_sym_GT_RBRACK, + [6585] = 25, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(949), 3, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, + anon_sym_AMP, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1843), 1, + anon_sym_DOT, + ACTIONS(1851), 1, + anon_sym_LT_LT, + ACTIONS(1853), 1, + anon_sym_GT_GT, + ACTIONS(1855), 1, + anon_sym_STAR, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, + anon_sym_SLASH, + ACTIONS(1871), 1, + anon_sym_PERCENT, + ACTIONS(1873), 1, + anon_sym_PIPE, + ACTIONS(1875), 1, + anon_sym_CARET, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(908), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1454), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(1452), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [5150] = 6, + ACTIONS(1989), 6, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1987), 27, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE, + anon_sym_GT_RBRACK, + [6694] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(950), 3, + STATE(909), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1388), 12, + ACTIONS(2133), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -133031,7 +125719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(1386), 40, + ACTIONS(2135), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -133072,18 +125760,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [5221] = 6, + [6765] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(951), 3, + STATE(910), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1442), 12, + ACTIONS(2137), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -133096,7 +125784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(1440), 40, + ACTIONS(2139), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -133137,18 +125825,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [5292] = 6, + [6836] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(952), 3, + STATE(911), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2079), 12, + ACTIONS(1639), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -133161,7 +125849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2081), 40, + ACTIONS(1637), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -133202,18 +125890,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [5363] = 6, + [6907] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(953), 3, + STATE(912), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2083), 12, + ACTIONS(2141), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -133226,7 +125914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2085), 40, + ACTIONS(2143), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -133267,18 +125955,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [5434] = 6, + [6978] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(954), 3, + STATE(913), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2087), 12, + ACTIONS(2145), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -133291,7 +125979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2089), 40, + ACTIONS(2147), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -133332,84 +126020,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [5505] = 7, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2091), 1, - sym_at_ident, - STATE(955), 4, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - aux_sym_call_inline_attributes_repeat1, - ACTIONS(2096), 17, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2094), 33, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, - [5578] = 6, + [7049] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(956), 3, + STATE(914), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2098), 12, + ACTIONS(2149), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -133422,7 +126044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2100), 40, + ACTIONS(2151), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -133463,18 +126085,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [5649] = 6, + [7120] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(957), 3, + STATE(915), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2102), 12, + ACTIONS(1401), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -133487,7 +126109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2104), 40, + ACTIONS(1399), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -133528,18 +126150,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [5720] = 6, + [7191] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(958), 3, + STATE(916), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2106), 12, + ACTIONS(2153), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -133552,7 +126174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2108), 40, + ACTIONS(2155), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -133593,18 +126215,194 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [5791] = 6, + [7262] = 25, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(959), 3, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, + anon_sym_AMP, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1843), 1, + anon_sym_DOT, + ACTIONS(1851), 1, + anon_sym_LT_LT, + ACTIONS(1853), 1, + anon_sym_GT_GT, + ACTIONS(1855), 1, + anon_sym_STAR, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, + anon_sym_SLASH, + ACTIONS(1871), 1, + anon_sym_PERCENT, + ACTIONS(1873), 1, + anon_sym_PIPE, + ACTIONS(1875), 1, + anon_sym_CARET, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(917), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1989), 6, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1987), 27, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE, + anon_sym_GT_RBRACK, + [7371] = 33, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, + anon_sym_AMP, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1843), 1, + anon_sym_DOT, + ACTIONS(1847), 1, + anon_sym_PLUS, + ACTIONS(1849), 1, + anon_sym_DASH, + ACTIONS(1851), 1, + anon_sym_LT_LT, + ACTIONS(1853), 1, + anon_sym_GT_GT, + ACTIONS(1855), 1, + anon_sym_STAR, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, + anon_sym_SLASH, + ACTIONS(1871), 1, + anon_sym_PERCENT, + ACTIONS(1873), 1, + anon_sym_PIPE, + ACTIONS(1875), 1, + anon_sym_CARET, + ACTIONS(1877), 1, + anon_sym_EQ_EQ, + ACTIONS(1879), 1, + anon_sym_BANG_EQ, + ACTIONS(1881), 1, + anon_sym_GT, + ACTIONS(1883), 1, + anon_sym_GT_EQ, + ACTIONS(1885), 1, + anon_sym_LT_EQ, + ACTIONS(1887), 1, + anon_sym_LT, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + ACTIONS(1989), 2, + anon_sym_EQ, + anon_sym_QMARK, + STATE(918), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1987), 23, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_GT_RBRACK, + [7496] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(919), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2110), 12, + ACTIONS(2157), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -133617,7 +126415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2112), 40, + ACTIONS(2159), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -133658,18 +126456,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [5862] = 6, + [7567] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(960), 3, + STATE(920), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2114), 12, + ACTIONS(2161), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -133682,7 +126480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2116), 40, + ACTIONS(2163), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -133723,18 +126521,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [5933] = 6, + [7638] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(961), 3, + STATE(921), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2118), 12, + ACTIONS(2165), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -133747,7 +126545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2120), 40, + ACTIONS(2167), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -133788,18 +126586,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [6004] = 6, + [7709] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(962), 3, + STATE(922), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2122), 12, + ACTIONS(2169), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -133812,7 +126610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2124), 40, + ACTIONS(2171), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -133853,18 +126651,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [6075] = 6, + [7780] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(963), 3, + STATE(923), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2126), 12, + ACTIONS(1571), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -133877,7 +126675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2128), 40, + ACTIONS(1569), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -133918,18 +126716,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [6146] = 6, + [7851] = 22, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(964), 3, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1843), 1, + anon_sym_DOT, + ACTIONS(1851), 1, + anon_sym_LT_LT, + ACTIONS(1853), 1, + anon_sym_GT_GT, + ACTIONS(1855), 1, + anon_sym_STAR, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, + anon_sym_SLASH, + ACTIONS(1871), 1, + anon_sym_PERCENT, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(924), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1989), 9, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1987), 27, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE, + anon_sym_GT_RBRACK, + [7954] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(925), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2130), 12, + ACTIONS(1563), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -133942,7 +126821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2132), 40, + ACTIONS(1561), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -133983,18 +126862,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [6217] = 6, + [8025] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(965), 3, + STATE(926), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2134), 12, + ACTIONS(2173), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -134007,7 +126886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2136), 40, + ACTIONS(2175), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -134048,18 +126927,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [6288] = 6, + [8096] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(966), 3, + STATE(927), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2138), 12, + ACTIONS(2177), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -134072,7 +126951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2140), 40, + ACTIONS(2179), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -134113,18 +126992,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [6359] = 6, + [8167] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(967), 3, + STATE(928), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2142), 12, + ACTIONS(2181), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -134137,7 +127016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2144), 40, + ACTIONS(2183), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -134178,18 +127057,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [6430] = 6, + [8238] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(968), 3, + STATE(929), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2185), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(2187), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [8309] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(930), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1438), 12, + ACTIONS(2189), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -134202,7 +127146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(1436), 40, + ACTIONS(2191), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -134243,83 +127187,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [6501] = 6, + [8380] = 38, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(969), 3, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1835), 1, + anon_sym_EQ, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, + anon_sym_AMP, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1843), 1, + anon_sym_DOT, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, + anon_sym_PLUS, + ACTIONS(1849), 1, + anon_sym_DASH, + ACTIONS(1851), 1, + anon_sym_LT_LT, + ACTIONS(1853), 1, + anon_sym_GT_GT, + ACTIONS(1855), 1, + anon_sym_STAR, + ACTIONS(1857), 1, + anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, + anon_sym_SLASH, + ACTIONS(1871), 1, + anon_sym_PERCENT, + ACTIONS(1873), 1, + anon_sym_PIPE, + ACTIONS(1875), 1, + anon_sym_CARET, + ACTIONS(1877), 1, + anon_sym_EQ_EQ, + ACTIONS(1879), 1, + anon_sym_BANG_EQ, + ACTIONS(1881), 1, + anon_sym_GT, + ACTIONS(1883), 1, + anon_sym_GT_EQ, + ACTIONS(1885), 1, + anon_sym_LT_EQ, + ACTIONS(1887), 1, + anon_sym_LT, + ACTIONS(1889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(931), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2146), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(2148), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [6572] = 6, + ACTIONS(1831), 19, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_RBRACK, + [8515] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(970), 3, + STATE(932), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2150), 12, + ACTIONS(2193), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -134332,7 +127308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2152), 40, + ACTIONS(2195), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -134373,18 +127349,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [6643] = 6, + [8586] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(971), 3, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1843), 1, + anon_sym_DOT, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(933), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2199), 14, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2197), 27, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE, + anon_sym_GT_RBRACK, + [8679] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(934), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2154), 12, + ACTIONS(2201), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -134397,7 +127449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2156), 40, + ACTIONS(2203), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -134438,18 +127490,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [6714] = 6, + [8750] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(972), 3, + STATE(935), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2158), 12, + ACTIONS(1635), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -134462,7 +127514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2160), 40, + ACTIONS(1633), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -134503,18 +127555,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [6785] = 6, + [8821] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(973), 3, + STATE(936), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2162), 12, + ACTIONS(2205), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -134527,7 +127579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2164), 40, + ACTIONS(2207), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -134568,18 +127620,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [6856] = 6, + [8892] = 12, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(974), 3, + ACTIONS(2061), 1, + anon_sym_LBRACK, + ACTIONS(2063), 1, + anon_sym_STAR, + ACTIONS(2067), 1, + anon_sym_LBRACK_LT, + ACTIONS(2209), 1, + anon_sym_BANG, + STATE(942), 1, + aux_sym_type_repeat1, + STATE(974), 1, + sym_type_suffix, + STATE(937), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1703), 15, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1705), 31, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [8975] = 8, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1813), 1, + sym_at_ident, + STATE(941), 1, + aux_sym_call_inline_attributes_repeat1, + STATE(938), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2213), 17, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2211), 33, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [9050] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(939), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2166), 12, + ACTIONS(2215), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -134592,7 +127782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2168), 40, + ACTIONS(2217), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -134633,18 +127823,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [6927] = 6, + [9121] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(975), 3, + STATE(940), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2170), 12, + ACTIONS(2219), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -134657,7 +127847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2172), 40, + ACTIONS(2221), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -134698,21 +127888,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [6998] = 7, + [9192] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2174), 2, - anon_sym_DQUOTE, - anon_sym_BQUOTE, - STATE(976), 3, + ACTIONS(2223), 1, + sym_at_ident, + STATE(941), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2178), 17, + aux_sym_call_inline_attributes_repeat1, + ACTIONS(2228), 17, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, @@ -134730,7 +127920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2176), 32, + ACTIONS(2226), 33, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -134738,6 +127928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, anon_sym_DOT_DOT, @@ -134763,18 +127954,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [7070] = 6, + [9265] = 10, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(977), 3, + ACTIONS(2234), 1, + anon_sym_LBRACK, + ACTIONS(2237), 1, + anon_sym_STAR, + ACTIONS(2240), 1, + anon_sym_LBRACK_LT, + STATE(974), 1, + sym_type_suffix, + STATE(942), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2182), 17, + aux_sym_type_repeat1, + ACTIONS(2232), 16, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, @@ -134783,7 +127983,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_STAR, anon_sym_QMARK, anon_sym_BANG, anon_sym_SLASH, @@ -134792,14 +127991,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2180), 34, - anon_sym_DQUOTE, - anon_sym_BQUOTE, + ACTIONS(2230), 31, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_SEMI, anon_sym_RBRACE, @@ -134827,113 +128023,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [7140] = 6, + [9344] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(978), 3, + STATE(943), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2186), 17, - anon_sym_EQ, + ACTIONS(2243), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(2245), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [9415] = 35, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, anon_sym_LPAREN, + ACTIONS(1839), 1, anon_sym_AMP, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1843), 1, anon_sym_DOT, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, anon_sym_PLUS, + ACTIONS(1849), 1, anon_sym_DASH, + ACTIONS(1851), 1, anon_sym_LT_LT, + ACTIONS(1853), 1, anon_sym_GT_GT, + ACTIONS(1855), 1, anon_sym_STAR, - anon_sym_QMARK, + ACTIONS(1863), 1, anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, anon_sym_SLASH, + ACTIONS(1871), 1, anon_sym_PERCENT, + ACTIONS(1873), 1, anon_sym_PIPE, + ACTIONS(1875), 1, anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2184), 34, - anon_sym_DQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(1877), 1, anon_sym_EQ_EQ, + ACTIONS(1879), 1, anon_sym_BANG_EQ, + ACTIONS(1881), 1, + anon_sym_GT, + ACTIONS(1883), 1, anon_sym_GT_EQ, + ACTIONS(1885), 1, anon_sym_LT_EQ, + ACTIONS(1887), 1, + anon_sym_LT, + ACTIONS(1889), 1, anon_sym_PIPE_PIPE, + ACTIONS(1891), 1, anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, - [7210] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(979), 3, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + ACTIONS(2249), 2, + anon_sym_EQ, + anon_sym_QMARK, + STATE(944), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2190), 17, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2188), 34, - anon_sym_DQUOTE, - anon_sym_BQUOTE, + ACTIONS(2247), 21, anon_sym_COMMA, - anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, anon_sym_DOT_DOT, - anon_sym_AMP_AMP, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -134946,125 +128181,223 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [7280] = 7, + [9544] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2192), 1, - sym_bytes_literal, - STATE(980), 4, + STATE(945), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_bytes_expr_repeat1, - ACTIONS(2197), 17, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2195), 32, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, - [7352] = 8, + ACTIONS(1539), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(1537), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [9615] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, - sym_bytes_literal, - STATE(980), 1, - aux_sym_bytes_expr_repeat1, - STATE(981), 3, + STATE(946), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2201), 17, - anon_sym_EQ, + ACTIONS(2251), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(2253), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [9686] = 38, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, anon_sym_LPAREN, + ACTIONS(1839), 1, anon_sym_AMP, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1843), 1, anon_sym_DOT, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, anon_sym_PLUS, + ACTIONS(1849), 1, anon_sym_DASH, + ACTIONS(1851), 1, anon_sym_LT_LT, + ACTIONS(1853), 1, anon_sym_GT_GT, + ACTIONS(1855), 1, anon_sym_STAR, + ACTIONS(1857), 1, anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, anon_sym_SLASH, + ACTIONS(1871), 1, anon_sym_PERCENT, + ACTIONS(1873), 1, anon_sym_PIPE, + ACTIONS(1875), 1, anon_sym_CARET, + ACTIONS(1877), 1, + anon_sym_EQ_EQ, + ACTIONS(1879), 1, + anon_sym_BANG_EQ, + ACTIONS(1881), 1, anon_sym_GT, + ACTIONS(1883), 1, + anon_sym_GT_EQ, + ACTIONS(1885), 1, + anon_sym_LT_EQ, + ACTIONS(1887), 1, anon_sym_LT, - ACTIONS(2199), 32, + ACTIONS(1889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(2257), 1, + anon_sym_EQ, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(947), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2255), 19, anon_sym_COMMA, - anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, anon_sym_DOT_DOT, - anon_sym_AMP_AMP, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135075,29 +128408,282 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [7426] = 6, + [9821] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(982), 3, + STATE(948), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2259), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(2261), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [9892] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(949), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2263), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(2265), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [9963] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(950), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2203), 17, + ACTIONS(2267), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(2269), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [10034] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(951), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1551), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(1549), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [10105] = 7, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(2271), 1, + sym_bytes_literal, + STATE(952), 4, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + aux_sym_bytes_expr_repeat1, + ACTIONS(2276), 17, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, @@ -135115,9 +128701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2174), 34, - anon_sym_DQUOTE, - anon_sym_BQUOTE, + ACTIONS(2274), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -135150,25 +128734,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [7496] = 8, + [10177] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2209), 1, - anon_sym_LBRACE, - STATE(1026), 1, - sym_compound_stmt, - STATE(983), 3, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + STATE(971), 1, + sym_generic_arguments, + STATE(953), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2207), 17, + ACTIONS(2280), 18, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -135183,12 +128768,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2205), 32, + ACTIONS(2278), 31, anon_sym_COMMA, - anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_SEMI, anon_sym_RBRACE, @@ -135215,19 +128798,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PIPE_PIPE, anon_sym_BANG_BANG, + anon_sym_LBRACK_LT, anon_sym_GT_RBRACK, - [7570] = 6, + [10251] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(984), 3, + ACTIONS(2286), 1, + anon_sym_LBRACE, + STATE(1014), 1, + sym_compound_stmt, + STATE(954), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2213), 17, + ACTIONS(2284), 17, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, @@ -135245,8 +128833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2211), 34, - sym_at_ident, + ACTIONS(2282), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -135254,7 +128841,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, anon_sym_DOT_DOT, @@ -135280,18 +128866,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [7640] = 6, + [10325] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(985), 3, + STATE(955), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2217), 17, + ACTIONS(2290), 17, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, @@ -135309,7 +128895,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2215), 33, + ACTIONS(2288), 34, + anon_sym_DQUOTE, + anon_sym_BQUOTE, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -135317,7 +128905,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, anon_sym_DOT_DOT, @@ -135343,24 +128930,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [7709] = 7, + [10395] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2219), 1, - anon_sym_COLON_COLON, - STATE(986), 3, + STATE(956), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2223), 18, + ACTIONS(2294), 17, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, - anon_sym_COLON, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -135375,7 +128959,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2221), 31, + ACTIONS(2292), 34, + anon_sym_DQUOTE, + anon_sym_BQUOTE, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -135384,6 +128970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_AMP_AMP, anon_sym_PLUS_EQ, @@ -135407,18 +128994,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [7780] = 6, + [10465] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(987), 3, + ACTIONS(2288), 2, + anon_sym_DQUOTE, + anon_sym_BQUOTE, + STATE(957), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2227), 17, + ACTIONS(2298), 17, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, @@ -135436,8 +129026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2225), 33, - sym_bytes_literal, + ACTIONS(2296), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -135470,18 +129059,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [7849] = 6, + [10537] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(988), 3, + STATE(958), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1851), 17, + ACTIONS(2302), 17, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, @@ -135499,7 +129088,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(1849), 33, + ACTIONS(2300), 34, + sym_at_ident, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -135533,18 +129123,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [7918] = 6, + [10607] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(989), 3, + STATE(959), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2231), 17, + ACTIONS(2306), 17, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, @@ -135562,7 +129152,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2229), 32, + ACTIONS(2304), 34, + anon_sym_DQUOTE, + anon_sym_BQUOTE, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -135595,18 +129187,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [7986] = 6, + [10677] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(990), 3, + ACTIONS(69), 1, + sym_bytes_literal, + STATE(952), 1, + aux_sym_bytes_expr_repeat1, + STATE(960), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2235), 17, + ACTIONS(2310), 17, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, @@ -135624,7 +129220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2233), 32, + ACTIONS(2308), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -135657,18 +129253,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [8054] = 6, + [10751] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(991), 3, + STATE(961), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2239), 17, + ACTIONS(2314), 17, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, @@ -135686,7 +129282,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2237), 32, + ACTIONS(2312), 34, + anon_sym_DQUOTE, + anon_sym_BQUOTE, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -135719,18 +129317,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [8122] = 6, + [10821] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(992), 3, + STATE(962), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2243), 17, + ACTIONS(1825), 17, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, @@ -135748,7 +129346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2241), 32, + ACTIONS(1823), 33, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -135756,6 +129354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, anon_sym_DOT_DOT, @@ -135781,21 +129380,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [8190] = 6, + [10890] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(993), 3, + STATE(963), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2247), 17, + ACTIONS(2318), 18, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -135810,12 +129410,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2245), 32, + ACTIONS(2316), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_SEMI, anon_sym_RBRACE, @@ -135842,22 +129441,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PIPE_PIPE, anon_sym_BANG_BANG, + anon_sym_LBRACK_LT, anon_sym_GT_RBRACK, - [8258] = 6, + [10959] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(994), 3, + STATE(964), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2251), 17, + ACTIONS(2322), 18, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -135872,12 +129473,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2249), 32, + ACTIONS(2320), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_SEMI, anon_sym_RBRACE, @@ -135904,22 +129504,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PIPE_PIPE, anon_sym_BANG_BANG, + anon_sym_LBRACK_LT, anon_sym_GT_RBRACK, - [8326] = 6, + [11028] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(995), 3, + STATE(965), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2255), 17, + ACTIONS(2326), 18, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -135934,12 +129536,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2253), 32, + ACTIONS(2324), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_SEMI, anon_sym_RBRACE, @@ -135966,22 +129567,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PIPE_PIPE, anon_sym_BANG_BANG, + anon_sym_LBRACK_LT, anon_sym_GT_RBRACK, - [8394] = 6, + [11097] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(996), 3, + STATE(966), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2255), 17, + ACTIONS(2330), 18, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -135996,12 +129599,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2253), 32, + ACTIONS(2328), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_SEMI, anon_sym_RBRACE, @@ -136028,22 +129630,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PIPE_PIPE, anon_sym_BANG_BANG, + anon_sym_LBRACK_LT, anon_sym_GT_RBRACK, - [8462] = 6, + [11166] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(997), 3, + STATE(967), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2251), 17, + ACTIONS(2334), 18, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -136058,12 +129662,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2249), 32, + ACTIONS(2332), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_SEMI, anon_sym_RBRACE, @@ -136090,22 +129693,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PIPE_PIPE, anon_sym_BANG_BANG, + anon_sym_LBRACK_LT, anon_sym_GT_RBRACK, - [8530] = 6, + [11235] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(998), 3, + STATE(968), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2259), 17, + ACTIONS(2280), 18, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -136120,12 +129725,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2257), 32, + ACTIONS(2278), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_SEMI, anon_sym_RBRACE, @@ -136152,22 +129756,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PIPE_PIPE, anon_sym_BANG_BANG, + anon_sym_LBRACK_LT, anon_sym_GT_RBRACK, - [8598] = 6, + [11304] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(999), 3, + STATE(969), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2178), 17, + ACTIONS(2338), 18, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -136182,12 +129788,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2176), 32, + ACTIONS(2336), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_SEMI, anon_sym_RBRACE, @@ -136214,46 +129819,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PIPE_PIPE, anon_sym_BANG_BANG, + anon_sym_LBRACK_LT, anon_sym_GT_RBRACK, - [8666] = 9, + [11373] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2269), 1, - anon_sym_QMARK, - ACTIONS(2267), 2, - anon_sym_LPAREN, - anon_sym_BANG, - STATE(1000), 3, + STATE(970), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2263), 5, - anon_sym_LPAREN_LT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - ACTIONS(2265), 14, + ACTIONS(2326), 18, anon_sym_EQ, + anon_sym_LPAREN, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2261), 27, + ACTIONS(2324), 32, anon_sym_COMMA, + anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, anon_sym_RPAREN, anon_sym_RBRACK, @@ -136274,27 +129874,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_PIPE_PIPE, + anon_sym_BANG_BANG, + anon_sym_LBRACK_LT, anon_sym_GT_RBRACK, - [8740] = 6, + [11442] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1001), 3, + STATE(971), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2223), 17, + ACTIONS(2342), 18, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -136309,12 +129914,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2221), 32, + ACTIONS(2340), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_SEMI, anon_sym_RBRACE, @@ -136341,57 +129945,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PIPE_PIPE, anon_sym_BANG_BANG, + anon_sym_LBRACK_LT, anon_sym_GT_RBRACK, - [8808] = 10, + [11511] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2281), 1, - anon_sym_QMARK, - ACTIONS(2277), 2, - anon_sym_LPAREN, - anon_sym_BANG, - STATE(1002), 3, + STATE(972), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2273), 5, - anon_sym_LPAREN_LT, + ACTIONS(2346), 18, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - ACTIONS(2279), 7, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2344), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COLON, anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE, + anon_sym_BANG_BANG, + anon_sym_LBRACK_LT, anon_sym_GT_RBRACK, - ACTIONS(2275), 14, + [11580] = 7, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(2348), 1, + anon_sym_COLON_COLON, + STATE(973), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2352), 18, anon_sym_EQ, + anon_sym_LPAREN, anon_sym_AMP, + anon_sym_COLON, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2271), 20, + ACTIONS(2350), 31, anon_sym_COMMA, + anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_AMP_AMP, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -136403,50 +130063,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_PIPE_PIPE, - [8884] = 9, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [11651] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2281), 1, - anon_sym_QMARK, - ACTIONS(2277), 2, - anon_sym_LPAREN, - anon_sym_BANG, - STATE(1003), 3, + STATE(974), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2273), 5, - anon_sym_LPAREN_LT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - ACTIONS(2283), 14, + ACTIONS(2356), 18, anon_sym_EQ, + anon_sym_LPAREN, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2279), 27, + ACTIONS(2354), 32, anon_sym_COMMA, + anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, anon_sym_RPAREN, anon_sym_RBRACK, @@ -136467,24 +130127,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_PIPE_PIPE, + anon_sym_BANG_BANG, + anon_sym_LBRACK_LT, anon_sym_GT_RBRACK, - [8958] = 6, + [11720] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1004), 3, + STATE(975), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2287), 17, + ACTIONS(2360), 17, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, @@ -136502,7 +130166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2285), 32, + ACTIONS(2358), 33, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -136510,6 +130174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, anon_sym_DOT_DOT, @@ -136535,18 +130200,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [9026] = 6, + [11789] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1005), 3, + STATE(976), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2291), 17, + ACTIONS(2364), 17, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, @@ -136564,7 +130229,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2289), 32, + ACTIONS(2362), 33, + sym_bytes_literal, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -136597,21 +130263,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [9094] = 6, + [11858] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1006), 3, + STATE(977), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2295), 17, + ACTIONS(2368), 18, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -136626,12 +130293,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2293), 32, + ACTIONS(2366), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_SEMI, anon_sym_RBRACE, @@ -136658,19 +130324,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PIPE_PIPE, anon_sym_BANG_BANG, + anon_sym_LBRACK_LT, anon_sym_GT_RBRACK, - [9162] = 6, + [11927] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1007), 3, + STATE(978), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2299), 17, + ACTIONS(2372), 17, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, @@ -136688,7 +130355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2297), 32, + ACTIONS(2370), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -136721,82 +130388,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [9230] = 8, + [11995] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2305), 1, - anon_sym_LPAREN_LT, - STATE(1039), 1, - sym_generic_arguments, - STATE(1008), 3, + STATE(979), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2303), 20, - sym_at_ident, - sym_type_ident, - sym_ct_type_ident, - sym_at_type_ident, + ACTIONS(2376), 17, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2374), 32, anon_sym_COMMA, + anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, anon_sym_RPAREN, - anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - anon_sym_LBRACK_LT, - ACTIONS(2301), 27, - sym_ident, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [9302] = 6, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [12063] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1009), 3, + STATE(980), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2309), 17, + ACTIONS(2380), 17, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, @@ -136814,7 +130479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2307), 32, + ACTIONS(2378), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -136847,18 +130512,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [9370] = 6, + [12131] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1010), 3, + STATE(981), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2313), 17, + ACTIONS(2384), 17, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, @@ -136876,7 +130541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2311), 32, + ACTIONS(2382), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -136909,18 +130574,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [9438] = 6, + [12199] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1011), 3, + STATE(982), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2317), 17, + ACTIONS(2388), 17, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, @@ -136938,7 +130603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2315), 32, + ACTIONS(2386), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -136971,18 +130636,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [9506] = 6, + [12267] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1012), 3, + STATE(983), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2321), 17, + ACTIONS(2388), 17, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, @@ -137000,7 +130665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2319), 32, + ACTIONS(2386), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -137033,18 +130698,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [9574] = 6, + [12335] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1013), 3, + STATE(984), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2325), 17, + ACTIONS(2392), 17, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, @@ -137062,7 +130727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2323), 32, + ACTIONS(2390), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -137095,18 +130760,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [9642] = 6, + [12403] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1014), 3, + STATE(985), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2329), 17, + ACTIONS(2384), 17, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, @@ -137124,7 +130789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2327), 32, + ACTIONS(2382), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -137157,18 +130822,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [9710] = 6, + [12471] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1015), 3, + STATE(986), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2333), 17, + ACTIONS(2396), 17, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, @@ -137186,7 +130851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2331), 32, + ACTIONS(2394), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -137219,18 +130884,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [9778] = 6, + [12539] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1016), 3, + STATE(987), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2337), 17, + ACTIONS(2352), 17, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, @@ -137248,7 +130913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2335), 32, + ACTIONS(2350), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -137281,18 +130946,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [9846] = 6, + [12607] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1017), 3, + STATE(988), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2341), 17, + ACTIONS(2400), 17, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, @@ -137310,7 +130975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2339), 32, + ACTIONS(2398), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -137343,18 +131008,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [9914] = 6, + [12675] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1018), 3, + ACTIONS(2402), 1, + anon_sym_LPAREN_LT, + STATE(1022), 1, + sym_generic_arguments, + STATE(989), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2278), 20, + sym_at_ident, + sym_type_ident, + sym_ct_type_ident, + sym_at_type_ident, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + anon_sym_LBRACK_LT, + ACTIONS(2280), 27, + sym_ident, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [12747] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(990), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2178), 17, + ACTIONS(2406), 17, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, @@ -137372,7 +131101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2176), 32, + ACTIONS(2404), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -137405,18 +131134,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [9982] = 6, + [12815] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1019), 3, + STATE(991), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2345), 17, + ACTIONS(2298), 17, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, @@ -137434,7 +131163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2343), 32, + ACTIONS(2296), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -137467,27 +131196,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [10050] = 10, + [12883] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2351), 1, + STATE(992), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2410), 17, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2408), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - ACTIONS(2354), 1, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [12951] = 10, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(2412), 1, + anon_sym_LBRACK, + ACTIONS(2415), 1, anon_sym_STAR, - ACTIONS(2357), 1, + ACTIONS(2418), 1, anon_sym_LBRACK_LT, - STATE(1036), 1, + STATE(1023), 1, sym_type_suffix, - STATE(1020), 4, + STATE(993), 4, sym_line_comment, sym_doc_comment, sym_block_comment, aux_sym_type_repeat1, - ACTIONS(2349), 19, + ACTIONS(2230), 19, sym_at_ident, sym_type_ident, sym_ct_type_ident, @@ -137507,7 +131298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2347), 25, + ACTIONS(2232), 25, sym_ident, anon_sym_int, anon_sym_typeid, @@ -137533,18 +131324,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [10126] = 6, + [13027] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1021), 3, + STATE(994), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2362), 17, + ACTIONS(2423), 17, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, @@ -137562,7 +131353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2360), 32, + ACTIONS(2421), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -137595,38 +131386,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [10194] = 10, + [13095] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2269), 1, - anon_sym_QMARK, - ACTIONS(2267), 2, - anon_sym_LPAREN, - anon_sym_BANG, - STATE(1022), 3, + STATE(995), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2263), 5, - anon_sym_LPAREN_LT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - ACTIONS(2261), 7, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_GT_RBRACK, - ACTIONS(2366), 14, + ACTIONS(2427), 17, anon_sym_EQ, + anon_sym_LPAREN, anon_sym_AMP, anon_sym_DOT, anon_sym_PLUS, @@ -137634,17 +131407,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2364), 20, + ACTIONS(2425), 32, anon_sym_COMMA, + anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, anon_sym_AMP_AMP, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -137656,23 +131437,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_PIPE_PIPE, - [10270] = 6, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [13163] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1023), 3, + STATE(996), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1192), 17, + ACTIONS(2431), 17, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, @@ -137690,7 +131477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(1190), 32, + ACTIONS(2429), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -137723,18 +131510,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [10338] = 6, + [13231] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1024), 3, + STATE(997), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2370), 17, + ACTIONS(2298), 17, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, @@ -137752,7 +131539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2368), 32, + ACTIONS(2296), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -137785,85 +131572,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [10406] = 11, + [13299] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2376), 1, - anon_sym_LBRACK, - ACTIONS(2378), 1, - anon_sym_STAR, - ACTIONS(2380), 1, - anon_sym_LBRACK_LT, - STATE(1027), 1, - aux_sym_type_repeat1, - STATE(1036), 1, - sym_type_suffix, - STATE(1025), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2374), 19, - sym_at_ident, - sym_type_ident, - sym_ct_type_ident, - sym_at_type_ident, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_BANG, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(2372), 25, - sym_ident, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [10484] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(1026), 3, + STATE(998), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2384), 17, + ACTIONS(1185), 17, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, @@ -137881,7 +131601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2382), 32, + ACTIONS(1183), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -137914,85 +131634,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [10552] = 11, + [13367] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2376), 1, - anon_sym_LBRACK, - ACTIONS(2378), 1, - anon_sym_STAR, - ACTIONS(2380), 1, - anon_sym_LBRACK_LT, - STATE(1020), 1, - aux_sym_type_repeat1, - STATE(1036), 1, - sym_type_suffix, - STATE(1027), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2388), 19, - sym_at_ident, - sym_type_ident, - sym_ct_type_ident, - sym_at_type_ident, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_BANG, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(2386), 25, - sym_ident, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [10630] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(1028), 3, + STATE(999), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2392), 17, + ACTIONS(2435), 17, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, @@ -138010,7 +131663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2390), 32, + ACTIONS(2433), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -138043,18 +131696,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [10698] = 6, + [13435] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1029), 3, + STATE(1000), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2396), 17, + ACTIONS(2439), 17, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, @@ -138072,7 +131725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2394), 32, + ACTIONS(2437), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -138105,18 +131758,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [10766] = 6, + [13503] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1030), 3, + STATE(1001), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2392), 17, + ACTIONS(2443), 17, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, @@ -138134,7 +131787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2390), 32, + ACTIONS(2441), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -138167,94 +131820,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [10834] = 6, + [13571] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1031), 3, + STATE(1002), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2400), 21, - sym_at_ident, - sym_type_ident, - sym_ct_type_ident, - sym_at_type_ident, + ACTIONS(2447), 17, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2445), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, anon_sym_RPAREN, - anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - anon_sym_LBRACK_LT, - ACTIONS(2398), 27, - sym_ident, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [10901] = 10, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [13639] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2269), 1, - anon_sym_QMARK, - ACTIONS(2261), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - ACTIONS(2267), 2, - anon_sym_LPAREN, - anon_sym_BANG, - STATE(1032), 3, + STATE(1003), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2263), 5, - anon_sym_LPAREN_LT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - ACTIONS(2366), 14, + ACTIONS(2451), 17, anon_sym_EQ, + anon_sym_LPAREN, anon_sym_AMP, anon_sym_DOT, anon_sym_PLUS, @@ -138262,15 +131903,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2364), 24, + ACTIONS(2449), 32, anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_SEMI, anon_sym_RBRACE, @@ -138287,39 +131933,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_PIPE_PIPE, + anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [10976] = 10, + [13707] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2281), 1, - anon_sym_QMARK, - ACTIONS(2277), 2, - anon_sym_LPAREN, - anon_sym_BANG, - ACTIONS(2279), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(1033), 3, + STATE(1004), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2273), 5, - anon_sym_LPAREN_LT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - ACTIONS(2275), 14, + ACTIONS(2455), 17, anon_sym_EQ, + anon_sym_LPAREN, anon_sym_AMP, anon_sym_DOT, anon_sym_PLUS, @@ -138327,15 +131965,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2271), 24, + ACTIONS(2453), 32, anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_SEMI, anon_sym_RBRACE, @@ -138352,391 +131995,780 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_PIPE_PIPE, + anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [11051] = 6, + [13775] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1034), 3, + STATE(1005), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2404), 21, - sym_at_ident, - sym_type_ident, - sym_ct_type_ident, - sym_at_type_ident, - anon_sym_COMMA, - anon_sym_GT_RPAREN, + ACTIONS(2459), 17, + anon_sym_EQ, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, anon_sym_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_STAR, + anon_sym_QMARK, anon_sym_BANG, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - anon_sym_LBRACK_LT, - ACTIONS(2402), 26, - sym_ident, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2457), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [11117] = 6, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [13843] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1035), 3, + STATE(1006), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2408), 21, - sym_at_ident, - sym_type_ident, - sym_ct_type_ident, - sym_at_type_ident, - anon_sym_COMMA, - anon_sym_GT_RPAREN, + ACTIONS(2463), 17, + anon_sym_EQ, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, anon_sym_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_STAR, + anon_sym_QMARK, anon_sym_BANG, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - anon_sym_LBRACK_LT, - ACTIONS(2406), 26, - sym_ident, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2461), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [11183] = 6, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [13911] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1036), 3, + STATE(1007), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2412), 21, - sym_at_ident, - sym_type_ident, - sym_ct_type_ident, - sym_at_type_ident, - anon_sym_COMMA, - anon_sym_GT_RPAREN, + ACTIONS(2467), 17, + anon_sym_EQ, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, anon_sym_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_STAR, + anon_sym_QMARK, anon_sym_BANG, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - anon_sym_LBRACK_LT, - ACTIONS(2410), 26, - sym_ident, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2465), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [11249] = 6, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [13979] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1037), 3, + STATE(1008), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2416), 21, - sym_at_ident, - sym_type_ident, - sym_ct_type_ident, - sym_at_type_ident, - anon_sym_COMMA, - anon_sym_GT_RPAREN, + ACTIONS(2471), 17, + anon_sym_EQ, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, anon_sym_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_STAR, + anon_sym_QMARK, anon_sym_BANG, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - anon_sym_LBRACK_LT, - ACTIONS(2414), 26, - sym_ident, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2469), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [11315] = 6, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [14047] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1038), 3, + STATE(1009), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2420), 21, - sym_at_ident, - sym_type_ident, - sym_ct_type_ident, - sym_at_type_ident, + ACTIONS(2475), 17, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2473), 32, anon_sym_COMMA, + anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [14115] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(1010), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2463), 17, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, anon_sym_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_STAR, + anon_sym_QMARK, anon_sym_BANG, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - anon_sym_LBRACK_LT, - ACTIONS(2418), 26, - sym_ident, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2461), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [11381] = 6, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [14183] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1039), 3, + STATE(1011), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2424), 21, - sym_at_ident, - sym_type_ident, - sym_ct_type_ident, - sym_at_type_ident, + ACTIONS(2479), 17, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2477), 32, anon_sym_COMMA, + anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [14251] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(1012), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2483), 17, + anon_sym_EQ, anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2481), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [14319] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(1013), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2487), 17, + anon_sym_EQ, + anon_sym_LPAREN, anon_sym_AMP, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2485), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [14387] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(1014), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2491), 17, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2489), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [14455] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(1015), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2495), 17, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, anon_sym_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_STAR, + anon_sym_QMARK, anon_sym_BANG, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - anon_sym_LBRACK_LT, - ACTIONS(2422), 26, - sym_ident, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2493), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [11447] = 6, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [14523] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1040), 3, + STATE(1016), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2499), 17, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2497), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [14591] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(1017), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2428), 21, + ACTIONS(2336), 21, sym_at_ident, sym_type_ident, sym_ct_type_ident, sym_at_type_ident, anon_sym_COMMA, + anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_AMP, anon_sym_SEMI, @@ -138751,8 +132783,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, anon_sym_LBRACK_LT, - ACTIONS(2426), 26, + ACTIONS(2338), 27, sym_ident, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_int, anon_sym_typeid, @@ -138778,18 +132811,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [11513] = 6, + [14658] = 12, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1041), 3, + ACTIONS(2501), 1, + anon_sym_LBRACK, + ACTIONS(2503), 1, + anon_sym_STAR, + ACTIONS(2505), 1, + anon_sym_BANG, + ACTIONS(2507), 1, + anon_sym_LBRACK_LT, + STATE(1019), 1, + aux_sym_type_repeat1, + STATE(1023), 1, + sym_type_suffix, + STATE(1018), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2432), 21, + ACTIONS(2057), 17, sym_at_ident, sym_type_ident, sym_ct_type_ident, @@ -138798,22 +132843,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_RPAREN, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, anon_sym_DOT, - anon_sym_STAR, - anon_sym_BANG, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - anon_sym_LBRACK_LT, - ACTIONS(2430), 26, + ACTIONS(2059), 25, sym_ident, - anon_sym_LBRACK, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -138838,18 +132878,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [11579] = 6, + [14737] = 12, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1042), 3, + ACTIONS(2501), 1, + anon_sym_LBRACK, + ACTIONS(2503), 1, + anon_sym_STAR, + ACTIONS(2507), 1, + anon_sym_LBRACK_LT, + ACTIONS(2509), 1, + anon_sym_BANG, + STATE(993), 1, + aux_sym_type_repeat1, + STATE(1023), 1, + sym_type_suffix, + STATE(1019), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2432), 21, + ACTIONS(1705), 17, sym_at_ident, sym_type_ident, sym_ct_type_ident, @@ -138858,22 +132910,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_RPAREN, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, anon_sym_DOT, - anon_sym_STAR, - anon_sym_BANG, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - anon_sym_LBRACK_LT, - ACTIONS(2430), 26, + ACTIONS(1703), 25, sym_ident, - anon_sym_LBRACK, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -138898,18 +132945,204 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [11645] = 6, + [14816] = 39, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1043), 3, - sym_line_comment, - sym_doc_comment, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, + anon_sym_AMP, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1843), 1, + anon_sym_DOT, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, + anon_sym_PLUS, + ACTIONS(1849), 1, + anon_sym_DASH, + ACTIONS(1851), 1, + anon_sym_LT_LT, + ACTIONS(1853), 1, + anon_sym_GT_GT, + ACTIONS(1855), 1, + anon_sym_STAR, + ACTIONS(1857), 1, + anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, + anon_sym_SLASH, + ACTIONS(1871), 1, + anon_sym_PERCENT, + ACTIONS(1873), 1, + anon_sym_PIPE, + ACTIONS(1875), 1, + anon_sym_CARET, + ACTIONS(1877), 1, + anon_sym_EQ_EQ, + ACTIONS(1879), 1, + anon_sym_BANG_EQ, + ACTIONS(1881), 1, + anon_sym_GT, + ACTIONS(1883), 1, + anon_sym_GT_EQ, + ACTIONS(1885), 1, + anon_sym_LT_EQ, + ACTIONS(1887), 1, + anon_sym_LT, + ACTIONS(1889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, + anon_sym_EQ, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(1020), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2511), 4, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + ACTIONS(1981), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [14948] = 39, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, + anon_sym_AMP, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1843), 1, + anon_sym_DOT, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, + anon_sym_PLUS, + ACTIONS(1849), 1, + anon_sym_DASH, + ACTIONS(1851), 1, + anon_sym_LT_LT, + ACTIONS(1853), 1, + anon_sym_GT_GT, + ACTIONS(1855), 1, + anon_sym_STAR, + ACTIONS(1857), 1, + anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, + anon_sym_SLASH, + ACTIONS(1871), 1, + anon_sym_PERCENT, + ACTIONS(1873), 1, + anon_sym_PIPE, + ACTIONS(1875), 1, + anon_sym_CARET, + ACTIONS(1877), 1, + anon_sym_EQ_EQ, + ACTIONS(1879), 1, + anon_sym_BANG_EQ, + ACTIONS(1881), 1, + anon_sym_GT, + ACTIONS(1883), 1, + anon_sym_GT_EQ, + ACTIONS(1885), 1, + anon_sym_LT_EQ, + ACTIONS(1887), 1, + anon_sym_LT, + ACTIONS(1889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, + anon_sym_EQ, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(1021), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2513), 4, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + ACTIONS(1981), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [15080] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(1022), 3, + sym_line_comment, + sym_doc_comment, sym_block_comment, - ACTIONS(2303), 21, + ACTIONS(2340), 21, sym_at_ident, sym_type_ident, sym_ct_type_ident, @@ -138931,7 +133164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, anon_sym_LBRACK_LT, - ACTIONS(2301), 26, + ACTIONS(2342), 26, sym_ident, anon_sym_LBRACK, anon_sym_int, @@ -138958,18 +133191,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [11711] = 6, + [15146] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1044), 3, + STATE(1023), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2428), 21, + ACTIONS(2354), 21, sym_at_ident, sym_type_ident, sym_ct_type_ident, @@ -138991,7 +133224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, anon_sym_LBRACK_LT, - ACTIONS(2426), 26, + ACTIONS(2356), 26, sym_ident, anon_sym_LBRACK, anon_sym_int, @@ -139018,18 +133251,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [11777] = 6, + [15212] = 41, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1045), 3, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, + anon_sym_AMP, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, + anon_sym_PLUS, + ACTIONS(1849), 1, + anon_sym_DASH, + ACTIONS(1851), 1, + anon_sym_LT_LT, + ACTIONS(1853), 1, + anon_sym_GT_GT, + ACTIONS(1855), 1, + anon_sym_STAR, + ACTIONS(1857), 1, + anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, + anon_sym_SLASH, + ACTIONS(1871), 1, + anon_sym_PERCENT, + ACTIONS(1873), 1, + anon_sym_PIPE, + ACTIONS(1875), 1, + anon_sym_CARET, + ACTIONS(1877), 1, + anon_sym_EQ_EQ, + ACTIONS(1879), 1, + anon_sym_BANG_EQ, + ACTIONS(1881), 1, + anon_sym_GT, + ACTIONS(1883), 1, + anon_sym_GT_EQ, + ACTIONS(1885), 1, + anon_sym_LT_EQ, + ACTIONS(1887), 1, + anon_sym_LT, + ACTIONS(1889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(2515), 1, + anon_sym_COMMA, + ACTIONS(2519), 1, + anon_sym_DOT, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(1498), 1, + aux_sym_assert_stmt_repeat1, + ACTIONS(2517), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(1024), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2237), 21, + ACTIONS(1981), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [15348] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(1025), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2344), 21, sym_at_ident, sym_type_ident, sym_ct_type_ident, @@ -139051,7 +133379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, anon_sym_LBRACK_LT, - ACTIONS(2239), 26, + ACTIONS(2346), 26, sym_ident, anon_sym_LBRACK, anon_sym_int, @@ -139078,188 +133406,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [11843] = 22, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(11), 1, - sym_ident, - ACTIONS(13), 1, - sym_type_ident, - ACTIONS(15), 1, - sym_ct_type_ident, - ACTIONS(17), 1, - anon_sym_tlocal, - ACTIONS(25), 1, - anon_sym_fn, - ACTIONS(31), 1, - anon_sym_const, - ACTIONS(57), 1, - anon_sym_DOLLARtypeof, - STATE(1008), 1, - sym_module_type_ident, - STATE(1025), 1, - sym_base_type, - STATE(1043), 1, - sym_base_type_name, - STATE(1165), 1, - sym_global_storage, - STATE(1167), 1, - sym_type, - STATE(1537), 1, - sym_module_resolution, - STATE(1627), 1, - aux_sym__module_path, - STATE(2283), 1, - sym__type_optional, - ACTIONS(59), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1046), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - STATE(890), 4, - sym_const_declaration, - sym_global_declaration, - sym_func_declaration, - sym_func_definition, - ACTIONS(45), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [11940] = 8, + [15414] = 39, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2434), 1, + ACTIONS(1833), 1, anon_sym_LPAREN_LT, - STATE(1077), 1, - sym_generic_arguments, - STATE(1047), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2301), 16, - anon_sym_EQ, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, anon_sym_AMP, + ACTIONS(1841), 1, anon_sym_LBRACK, - anon_sym_DOT, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, anon_sym_PLUS, + ACTIONS(1849), 1, anon_sym_DASH, + ACTIONS(1851), 1, anon_sym_LT_LT, + ACTIONS(1853), 1, anon_sym_GT_GT, + ACTIONS(1855), 1, anon_sym_STAR, + ACTIONS(1857), 1, anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, anon_sym_SLASH, + ACTIONS(1871), 1, anon_sym_PERCENT, + ACTIONS(1873), 1, anon_sym_PIPE, + ACTIONS(1875), 1, anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2303), 28, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, + ACTIONS(1877), 1, anon_sym_EQ_EQ, + ACTIONS(1879), 1, anon_sym_BANG_EQ, + ACTIONS(1881), 1, + anon_sym_GT, + ACTIONS(1883), 1, anon_sym_GT_EQ, + ACTIONS(1885), 1, anon_sym_LT_EQ, + ACTIONS(1887), 1, + anon_sym_LT, + ACTIONS(1889), 1, anon_sym_PIPE_PIPE, - anon_sym_LBRACK_LT, - anon_sym_GT_RBRACK, - [12009] = 11, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2436), 1, - anon_sym_LBRACK, - ACTIONS(2438), 1, - anon_sym_STAR, - ACTIONS(2440), 1, - anon_sym_LBRACK_LT, - STATE(1050), 1, - aux_sym_type_repeat1, - STATE(1072), 1, - sym_type_suffix, - STATE(1048), 3, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(2519), 1, + anon_sym_DOT, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(1026), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2372), 14, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2374), 27, + ACTIONS(2521), 4, anon_sym_COMMA, - anon_sym_GT_RPAREN, anon_sym_RPAREN, - anon_sym_RBRACK, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + ACTIONS(1981), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139270,68 +133499,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_GT_RBRACK, - [12084] = 25, + [15546] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(79), 1, + STATE(1027), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2366), 21, + sym_at_ident, sym_type_ident, - ACTIONS(173), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2442), 1, - sym_ident, - ACTIONS(2444), 1, - sym_ct_ident, - ACTIONS(2446), 1, - sym_hash_ident, - ACTIONS(2448), 1, sym_ct_type_ident, - ACTIONS(2450), 1, + sym_at_type_ident, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_LPAREN, anon_sym_RPAREN, - ACTIONS(2452), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2454), 1, anon_sym_AMP, - ACTIONS(2456), 1, anon_sym_SEMI, - STATE(1304), 1, - sym_base_type, - STATE(1306), 1, - sym_module_type_ident, - STATE(1309), 1, - sym_base_type_name, - STATE(1433), 1, - sym_type, - STATE(1478), 1, - sym__parameter, - STATE(1537), 1, - sym_module_resolution, - STATE(1592), 1, - sym_parameter, - STATE(1632), 1, - aux_sym__module_path, - STATE(1985), 1, - sym__parameters, - ACTIONS(175), 3, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - STATE(1049), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(139), 24, + anon_sym_LBRACK_LT, + ACTIONS(2368), 26, + sym_ident, + anon_sym_LBRACK, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -139356,115 +133559,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [12187] = 11, + [15612] = 39, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2436), 1, - anon_sym_LBRACK, - ACTIONS(2438), 1, - anon_sym_STAR, - ACTIONS(2440), 1, - anon_sym_LBRACK_LT, - STATE(1051), 1, - aux_sym_type_repeat1, - STATE(1072), 1, - sym_type_suffix, - STATE(1050), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2386), 14, - anon_sym_EQ, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, anon_sym_AMP, - anon_sym_DOT, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, anon_sym_PLUS, + ACTIONS(1849), 1, anon_sym_DASH, + ACTIONS(1851), 1, anon_sym_LT_LT, + ACTIONS(1853), 1, anon_sym_GT_GT, + ACTIONS(1855), 1, + anon_sym_STAR, + ACTIONS(1857), 1, anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, anon_sym_SLASH, + ACTIONS(1871), 1, anon_sym_PERCENT, + ACTIONS(1873), 1, anon_sym_PIPE, + ACTIONS(1875), 1, anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2388), 27, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, + ACTIONS(1877), 1, anon_sym_EQ_EQ, + ACTIONS(1879), 1, anon_sym_BANG_EQ, + ACTIONS(1881), 1, + anon_sym_GT, + ACTIONS(1883), 1, anon_sym_GT_EQ, + ACTIONS(1885), 1, anon_sym_LT_EQ, + ACTIONS(1887), 1, + anon_sym_LT, + ACTIONS(1889), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_RBRACK, - [12262] = 10, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2458), 1, - anon_sym_LBRACK, - ACTIONS(2461), 1, - anon_sym_STAR, - ACTIONS(2464), 1, - anon_sym_LBRACK_LT, - STATE(1072), 1, - sym_type_suffix, - STATE(1051), 4, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(2519), 1, + anon_sym_DOT, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(1028), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_type_repeat1, - ACTIONS(2347), 14, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2349), 27, + ACTIONS(2523), 4, anon_sym_COMMA, - anon_sym_GT_RPAREN, anon_sym_RPAREN, - anon_sym_RBRACK, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + ACTIONS(1981), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139475,65 +133652,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_GT_RBRACK, - [12335] = 23, + [15744] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(79), 1, + STATE(1029), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2320), 21, + sym_at_ident, sym_type_ident, - ACTIONS(173), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2442), 1, - sym_ident, - ACTIONS(2444), 1, - sym_ct_ident, - ACTIONS(2446), 1, - sym_hash_ident, - ACTIONS(2448), 1, sym_ct_type_ident, - ACTIONS(2452), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2454), 1, - anon_sym_AMP, - STATE(1304), 1, - sym_base_type, - STATE(1306), 1, - sym_module_type_ident, - STATE(1309), 1, - sym_base_type_name, - STATE(1433), 1, - sym_type, - STATE(1478), 1, - sym__parameter, - STATE(1537), 1, - sym_module_resolution, - STATE(1632), 1, - aux_sym__module_path, - STATE(1847), 1, - sym_parameter, - ACTIONS(2467), 2, + sym_at_type_ident, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_AMP, anon_sym_SEMI, - ACTIONS(175), 3, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - STATE(1052), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(139), 24, + anon_sym_LBRACK_LT, + ACTIONS(2322), 26, + sym_ident, + anon_sym_LBRACK, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -139558,58 +133712,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [12433] = 24, + [15810] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(79), 1, + STATE(1030), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2328), 21, + sym_at_ident, sym_type_ident, - ACTIONS(173), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2442), 1, - sym_ident, - ACTIONS(2444), 1, - sym_ct_ident, - ACTIONS(2446), 1, - sym_hash_ident, - ACTIONS(2448), 1, sym_ct_type_ident, - ACTIONS(2452), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2454), 1, - anon_sym_AMP, - ACTIONS(2469), 1, + sym_at_type_ident, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1304), 1, - sym_base_type, - STATE(1306), 1, - sym_module_type_ident, - STATE(1309), 1, - sym_base_type_name, - STATE(1433), 1, - sym_type, - STATE(1537), 1, - sym_module_resolution, - STATE(1545), 1, - sym__parameter, - STATE(1632), 1, - aux_sym__module_path, - STATE(1740), 1, - sym_parameter, - STATE(2316), 1, - sym__parameters, - ACTIONS(175), 3, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - STATE(1053), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(139), 24, + anon_sym_LBRACK_LT, + ACTIONS(2330), 26, + sym_ident, + anon_sym_LBRACK, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -139634,134 +133772,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [12533] = 24, + [15876] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(79), 1, - sym_type_ident, - ACTIONS(173), 1, - anon_sym_DOLLARtypeof, - ACTIONS(1224), 1, - anon_sym_RPAREN, - ACTIONS(2442), 1, - sym_ident, - ACTIONS(2444), 1, - sym_ct_ident, - ACTIONS(2446), 1, - sym_hash_ident, - ACTIONS(2448), 1, - sym_ct_type_ident, - ACTIONS(2452), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2454), 1, - anon_sym_AMP, - STATE(1304), 1, - sym_base_type, - STATE(1306), 1, - sym_module_type_ident, - STATE(1309), 1, - sym_base_type_name, - STATE(1433), 1, - sym_type, - STATE(1537), 1, - sym_module_resolution, - STATE(1545), 1, - sym__parameter, - STATE(1632), 1, - aux_sym__module_path, - STATE(1740), 1, - sym_parameter, - STATE(2361), 1, - sym__parameters, - ACTIONS(175), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1054), 3, + STATE(1031), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(139), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [12633] = 24, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(79), 1, + ACTIONS(2324), 21, + sym_at_ident, sym_type_ident, - ACTIONS(173), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2442), 1, - sym_ident, - ACTIONS(2444), 1, - sym_ct_ident, - ACTIONS(2446), 1, - sym_hash_ident, - ACTIONS(2448), 1, sym_ct_type_ident, - ACTIONS(2452), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2454), 1, - anon_sym_AMP, - ACTIONS(2471), 1, + sym_at_type_ident, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1304), 1, - sym_base_type, - STATE(1306), 1, - sym_module_type_ident, - STATE(1309), 1, - sym_base_type_name, - STATE(1433), 1, - sym_type, - STATE(1537), 1, - sym_module_resolution, - STATE(1545), 1, - sym__parameter, - STATE(1632), 1, - aux_sym__module_path, - STATE(1740), 1, - sym_parameter, - STATE(2256), 1, - sym__parameters, - ACTIONS(175), 3, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - STATE(1055), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(139), 24, + anon_sym_LBRACK_LT, + ACTIONS(2326), 26, + sym_ident, + anon_sym_LBRACK, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -139786,132 +133832,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [12733] = 23, + [15942] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(13), 1, - sym_type_ident, - ACTIONS(15), 1, - sym_ct_type_ident, - ACTIONS(57), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2473), 1, - sym_ident, - ACTIONS(2475), 1, - anon_sym_RBRACE, - ACTIONS(2477), 1, - anon_sym_inline, - ACTIONS(2479), 1, - anon_sym_bitstruct, - STATE(1008), 1, - sym_module_type_ident, - STATE(1025), 1, - sym_base_type, - STATE(1043), 1, - sym_base_type_name, - STATE(1063), 1, - aux_sym_struct_body_repeat1, - STATE(1213), 1, - sym_struct_member_declaration, - STATE(1391), 1, - sym__struct_or_union, - STATE(1537), 1, - sym_module_resolution, - STATE(1627), 1, - aux_sym__module_path, - STATE(1936), 1, - sym_type, - ACTIONS(33), 2, - anon_sym_struct, - anon_sym_union, - ACTIONS(59), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1056), 3, + STATE(1032), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(45), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [12831] = 23, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(13), 1, + ACTIONS(2324), 21, + sym_at_ident, sym_type_ident, - ACTIONS(15), 1, sym_ct_type_ident, - ACTIONS(57), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2473), 1, - sym_ident, - ACTIONS(2477), 1, - anon_sym_inline, - ACTIONS(2479), 1, - anon_sym_bitstruct, - ACTIONS(2481), 1, + sym_at_type_ident, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, - STATE(1008), 1, - sym_module_type_ident, - STATE(1025), 1, - sym_base_type, - STATE(1043), 1, - sym_base_type_name, - STATE(1063), 1, - aux_sym_struct_body_repeat1, - STATE(1213), 1, - sym_struct_member_declaration, - STATE(1391), 1, - sym__struct_or_union, - STATE(1537), 1, - sym_module_resolution, - STATE(1627), 1, - aux_sym__module_path, - STATE(1936), 1, - sym_type, - ACTIONS(33), 2, - anon_sym_struct, - anon_sym_union, - ACTIONS(59), 3, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - STATE(1057), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(45), 24, + anon_sym_LBRACK_LT, + ACTIONS(2326), 26, + sym_ident, + anon_sym_LBRACK, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -139936,57 +133892,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [12929] = 23, + [16008] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(13), 1, + STATE(1033), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2278), 21, + sym_at_ident, sym_type_ident, - ACTIONS(15), 1, sym_ct_type_ident, - ACTIONS(57), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2473), 1, - sym_ident, - ACTIONS(2477), 1, - anon_sym_inline, - ACTIONS(2479), 1, - anon_sym_bitstruct, - ACTIONS(2483), 1, + sym_at_type_ident, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, - STATE(1008), 1, - sym_module_type_ident, - STATE(1025), 1, - sym_base_type, - STATE(1043), 1, - sym_base_type_name, - STATE(1057), 1, - aux_sym_struct_body_repeat1, - STATE(1213), 1, - sym_struct_member_declaration, - STATE(1391), 1, - sym__struct_or_union, - STATE(1537), 1, - sym_module_resolution, - STATE(1627), 1, - aux_sym__module_path, - STATE(1936), 1, - sym_type, - ACTIONS(33), 2, - anon_sym_struct, - anon_sym_union, - ACTIONS(59), 3, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - STATE(1058), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(45), 24, + anon_sym_LBRACK_LT, + ACTIONS(2280), 26, + sym_ident, + anon_sym_LBRACK, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -140011,133 +133952,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [13027] = 23, + [16074] = 39, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(79), 1, - sym_type_ident, - ACTIONS(173), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2442), 1, - sym_ident, - ACTIONS(2444), 1, - sym_ct_ident, - ACTIONS(2446), 1, - sym_hash_ident, - ACTIONS(2448), 1, - sym_ct_type_ident, - ACTIONS(2452), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2454), 1, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, anon_sym_AMP, - STATE(1304), 1, - sym_base_type, - STATE(1306), 1, - sym_module_type_ident, - STATE(1309), 1, - sym_base_type_name, - STATE(1433), 1, - sym_type, - STATE(1478), 1, - sym__parameter, - STATE(1537), 1, - sym_module_resolution, - STATE(1632), 1, - aux_sym__module_path, - STATE(1847), 1, - sym_parameter, - ACTIONS(2485), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - ACTIONS(175), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1059), 3, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, + anon_sym_PLUS, + ACTIONS(1849), 1, + anon_sym_DASH, + ACTIONS(1851), 1, + anon_sym_LT_LT, + ACTIONS(1853), 1, + anon_sym_GT_GT, + ACTIONS(1855), 1, + anon_sym_STAR, + ACTIONS(1857), 1, + anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, + anon_sym_SLASH, + ACTIONS(1871), 1, + anon_sym_PERCENT, + ACTIONS(1873), 1, + anon_sym_PIPE, + ACTIONS(1875), 1, + anon_sym_CARET, + ACTIONS(1877), 1, + anon_sym_EQ_EQ, + ACTIONS(1879), 1, + anon_sym_BANG_EQ, + ACTIONS(1881), 1, + anon_sym_GT, + ACTIONS(1883), 1, + anon_sym_GT_EQ, + ACTIONS(1885), 1, + anon_sym_LT_EQ, + ACTIONS(1887), 1, + anon_sym_LT, + ACTIONS(1889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(2519), 1, + anon_sym_DOT, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(1034), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(139), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [13125] = 24, + ACTIONS(2525), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + ACTIONS(1981), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [16206] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(79), 1, + STATE(1035), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2332), 21, + sym_at_ident, sym_type_ident, - ACTIONS(173), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2442), 1, - sym_ident, - ACTIONS(2444), 1, - sym_ct_ident, - ACTIONS(2446), 1, - sym_hash_ident, - ACTIONS(2448), 1, sym_ct_type_ident, - ACTIONS(2452), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2454), 1, - anon_sym_AMP, - ACTIONS(2487), 1, + sym_at_type_ident, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1304), 1, - sym_base_type, - STATE(1306), 1, - sym_module_type_ident, - STATE(1309), 1, - sym_base_type_name, - STATE(1433), 1, - sym_type, - STATE(1537), 1, - sym_module_resolution, - STATE(1545), 1, - sym__parameter, - STATE(1632), 1, - aux_sym__module_path, - STATE(1740), 1, - sym_parameter, - STATE(2077), 1, - sym__parameters, - ACTIONS(175), 3, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - STATE(1060), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(139), 24, + anon_sym_LBRACK_LT, + ACTIONS(2334), 26, + sym_ident, + anon_sym_LBRACK, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -140162,57 +134105,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [13225] = 23, + [16272] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(13), 1, + STATE(1036), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2316), 21, + sym_at_ident, sym_type_ident, - ACTIONS(15), 1, sym_ct_type_ident, - ACTIONS(57), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2473), 1, - sym_ident, - ACTIONS(2477), 1, - anon_sym_inline, - ACTIONS(2479), 1, - anon_sym_bitstruct, - ACTIONS(2489), 1, + sym_at_type_ident, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, - STATE(1008), 1, - sym_module_type_ident, - STATE(1025), 1, - sym_base_type, - STATE(1043), 1, - sym_base_type_name, - STATE(1056), 1, - aux_sym_struct_body_repeat1, - STATE(1213), 1, - sym_struct_member_declaration, - STATE(1391), 1, - sym__struct_or_union, - STATE(1537), 1, - sym_module_resolution, - STATE(1627), 1, - aux_sym__module_path, - STATE(1936), 1, - sym_type, - ACTIONS(33), 2, - anon_sym_struct, - anon_sym_union, - ACTIONS(59), 3, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - STATE(1061), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(45), 24, + anon_sym_LBRACK_LT, + ACTIONS(2318), 26, + sym_ident, + anon_sym_LBRACK, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -140237,45 +134165,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [13323] = 6, + [16338] = 39, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1062), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2398), 16, - anon_sym_EQ, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, anon_sym_AMP, + ACTIONS(1841), 1, anon_sym_LBRACK, - anon_sym_DOT, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, anon_sym_PLUS, + ACTIONS(1849), 1, anon_sym_DASH, + ACTIONS(1851), 1, anon_sym_LT_LT, + ACTIONS(1853), 1, anon_sym_GT_GT, + ACTIONS(1855), 1, anon_sym_STAR, + ACTIONS(1857), 1, anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, anon_sym_SLASH, + ACTIONS(1871), 1, anon_sym_PERCENT, + ACTIONS(1873), 1, anon_sym_PIPE, + ACTIONS(1875), 1, anon_sym_CARET, + ACTIONS(1877), 1, + anon_sym_EQ_EQ, + ACTIONS(1879), 1, + anon_sym_BANG_EQ, + ACTIONS(1881), 1, anon_sym_GT, + ACTIONS(1883), 1, + anon_sym_GT_EQ, + ACTIONS(1885), 1, + anon_sym_LT_EQ, + ACTIONS(1887), 1, anon_sym_LT, - ACTIONS(2400), 29, + ACTIONS(1889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(2519), 1, + anon_sym_DOT, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + ACTIONS(2527), 3, anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, anon_sym_RPAREN, - anon_sym_RBRACK, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + STATE(1037), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1981), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140286,277 +134257,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_LBRACK_LT, - anon_sym_GT_RBRACK, - [13387] = 22, + [16469] = 41, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2491), 1, - sym_ident, - ACTIONS(2494), 1, - sym_type_ident, - ACTIONS(2497), 1, - sym_ct_type_ident, - ACTIONS(2500), 1, - anon_sym_RBRACE, - ACTIONS(2502), 1, - anon_sym_inline, - ACTIONS(2508), 1, - anon_sym_bitstruct, - ACTIONS(2514), 1, - anon_sym_DOLLARtypeof, - STATE(1008), 1, - sym_module_type_ident, - STATE(1025), 1, - sym_base_type, - STATE(1043), 1, - sym_base_type_name, - STATE(1213), 1, - sym_struct_member_declaration, - STATE(1391), 1, - sym__struct_or_union, - STATE(1537), 1, - sym_module_resolution, - STATE(1627), 1, - aux_sym__module_path, - STATE(1936), 1, - sym_type, - ACTIONS(2505), 2, - anon_sym_struct, - anon_sym_union, - ACTIONS(2517), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1063), 4, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - aux_sym_struct_body_repeat1, - ACTIONS(2511), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [13483] = 24, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(79), 1, - sym_type_ident, - ACTIONS(173), 1, - anon_sym_DOLLARtypeof, - ACTIONS(1220), 1, - anon_sym_RPAREN, - ACTIONS(2442), 1, - sym_ident, - ACTIONS(2444), 1, - sym_ct_ident, - ACTIONS(2446), 1, - sym_hash_ident, - ACTIONS(2448), 1, - sym_ct_type_ident, - ACTIONS(2452), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2454), 1, - anon_sym_AMP, - STATE(1304), 1, - sym_base_type, - STATE(1306), 1, - sym_module_type_ident, - STATE(1309), 1, - sym_base_type_name, - STATE(1433), 1, - sym_type, - STATE(1537), 1, - sym_module_resolution, - STATE(1545), 1, - sym__parameter, - STATE(1632), 1, - aux_sym__module_path, - STATE(1740), 1, - sym_parameter, - STATE(2224), 1, - sym__parameters, - ACTIONS(175), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1064), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(139), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [13583] = 23, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(79), 1, - sym_type_ident, - ACTIONS(173), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2442), 1, - sym_ident, - ACTIONS(2444), 1, - sym_ct_ident, - ACTIONS(2446), 1, - sym_hash_ident, - ACTIONS(2448), 1, - sym_ct_type_ident, - ACTIONS(2452), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2454), 1, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(2467), 1, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, + anon_sym_PLUS, + ACTIONS(1849), 1, + anon_sym_DASH, + ACTIONS(1851), 1, + anon_sym_LT_LT, + ACTIONS(1853), 1, + anon_sym_GT_GT, + ACTIONS(1855), 1, + anon_sym_STAR, + ACTIONS(1857), 1, + anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, + anon_sym_SLASH, + ACTIONS(1871), 1, + anon_sym_PERCENT, + ACTIONS(1873), 1, + anon_sym_PIPE, + ACTIONS(1875), 1, + anon_sym_CARET, + ACTIONS(1877), 1, + anon_sym_EQ_EQ, + ACTIONS(1879), 1, + anon_sym_BANG_EQ, + ACTIONS(1881), 1, + anon_sym_GT, + ACTIONS(1883), 1, + anon_sym_GT_EQ, + ACTIONS(1885), 1, + anon_sym_LT_EQ, + ACTIONS(1887), 1, + anon_sym_LT, + ACTIONS(1889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(2515), 1, + anon_sym_COMMA, + ACTIONS(2519), 1, + anon_sym_DOT, + ACTIONS(2529), 1, anon_sym_RPAREN, - STATE(1304), 1, - sym_base_type, - STATE(1306), 1, - sym_module_type_ident, - STATE(1309), 1, - sym_base_type_name, - STATE(1433), 1, - sym_type, - STATE(1537), 1, - sym_module_resolution, - STATE(1545), 1, - sym__parameter, - STATE(1632), 1, - aux_sym__module_path, - STATE(1847), 1, - sym_parameter, - ACTIONS(175), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1065), 3, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(1645), 1, + aux_sym_assert_stmt_repeat1, + STATE(1038), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(139), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [13680] = 6, + ACTIONS(1981), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [16604] = 41, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1066), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2418), 16, - anon_sym_EQ, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, anon_sym_AMP, + ACTIONS(1841), 1, anon_sym_LBRACK, - anon_sym_DOT, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, anon_sym_PLUS, + ACTIONS(1849), 1, anon_sym_DASH, + ACTIONS(1851), 1, anon_sym_LT_LT, + ACTIONS(1853), 1, anon_sym_GT_GT, + ACTIONS(1855), 1, anon_sym_STAR, + ACTIONS(1857), 1, anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, anon_sym_SLASH, + ACTIONS(1871), 1, anon_sym_PERCENT, + ACTIONS(1873), 1, anon_sym_PIPE, + ACTIONS(1875), 1, anon_sym_CARET, + ACTIONS(1877), 1, + anon_sym_EQ_EQ, + ACTIONS(1879), 1, + anon_sym_BANG_EQ, + ACTIONS(1881), 1, anon_sym_GT, + ACTIONS(1883), 1, + anon_sym_GT_EQ, + ACTIONS(1885), 1, + anon_sym_LT_EQ, + ACTIONS(1887), 1, anon_sym_LT, - ACTIONS(2420), 28, + ACTIONS(1889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(2515), 1, anon_sym_COMMA, - anon_sym_GT_RPAREN, + ACTIONS(2519), 1, + anon_sym_DOT, + ACTIONS(2531), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(1609), 1, + aux_sym_assert_stmt_repeat1, + STATE(1039), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1981), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140567,53 +134445,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_LBRACK_LT, - anon_sym_GT_RBRACK, - [13743] = 6, + [16739] = 41, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1067), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2426), 16, - anon_sym_EQ, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, anon_sym_AMP, + ACTIONS(1841), 1, anon_sym_LBRACK, - anon_sym_DOT, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, anon_sym_PLUS, + ACTIONS(1849), 1, anon_sym_DASH, + ACTIONS(1851), 1, anon_sym_LT_LT, + ACTIONS(1853), 1, anon_sym_GT_GT, + ACTIONS(1855), 1, anon_sym_STAR, + ACTIONS(1857), 1, anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, anon_sym_SLASH, + ACTIONS(1871), 1, anon_sym_PERCENT, + ACTIONS(1873), 1, anon_sym_PIPE, + ACTIONS(1875), 1, anon_sym_CARET, + ACTIONS(1877), 1, + anon_sym_EQ_EQ, + ACTIONS(1879), 1, + anon_sym_BANG_EQ, + ACTIONS(1881), 1, anon_sym_GT, + ACTIONS(1883), 1, + anon_sym_GT_EQ, + ACTIONS(1885), 1, + anon_sym_LT_EQ, + ACTIONS(1887), 1, anon_sym_LT, - ACTIONS(2428), 28, + ACTIONS(1889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(2515), 1, anon_sym_COMMA, - anon_sym_GT_RPAREN, + ACTIONS(2519), 1, + anon_sym_DOT, + ACTIONS(2533), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(1610), 1, + aux_sym_assert_stmt_repeat1, + STATE(1040), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1981), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140624,127 +134539,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_LBRACK_LT, - anon_sym_GT_RBRACK, - [13806] = 23, + [16874] = 41, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(79), 1, - sym_type_ident, - ACTIONS(173), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2442), 1, - sym_ident, - ACTIONS(2444), 1, - sym_ct_ident, - ACTIONS(2446), 1, - sym_hash_ident, - ACTIONS(2448), 1, - sym_ct_type_ident, - ACTIONS(2452), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2454), 1, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(2485), 1, - anon_sym_RPAREN, - STATE(1304), 1, - sym_base_type, - STATE(1306), 1, - sym_module_type_ident, - STATE(1309), 1, - sym_base_type_name, - STATE(1433), 1, - sym_type, - STATE(1537), 1, - sym_module_resolution, - STATE(1545), 1, - sym__parameter, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, + anon_sym_PLUS, + ACTIONS(1849), 1, + anon_sym_DASH, + ACTIONS(1851), 1, + anon_sym_LT_LT, + ACTIONS(1853), 1, + anon_sym_GT_GT, + ACTIONS(1855), 1, + anon_sym_STAR, + ACTIONS(1857), 1, + anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, + anon_sym_SLASH, + ACTIONS(1871), 1, + anon_sym_PERCENT, + ACTIONS(1873), 1, + anon_sym_PIPE, + ACTIONS(1875), 1, + anon_sym_CARET, + ACTIONS(1877), 1, + anon_sym_EQ_EQ, + ACTIONS(1879), 1, + anon_sym_BANG_EQ, + ACTIONS(1881), 1, + anon_sym_GT, + ACTIONS(1883), 1, + anon_sym_GT_EQ, + ACTIONS(1885), 1, + anon_sym_LT_EQ, + ACTIONS(1887), 1, + anon_sym_LT, + ACTIONS(1889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(2519), 1, + anon_sym_DOT, + ACTIONS(2535), 1, + anon_sym_COMMA, + ACTIONS(2537), 1, + anon_sym_GT_RPAREN, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, STATE(1632), 1, - aux_sym__module_path, - STATE(1847), 1, - sym_parameter, - ACTIONS(175), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1068), 3, + aux_sym__generic_arg_list_repeat1, + STATE(1041), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(139), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [13903] = 6, + ACTIONS(1981), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [17009] = 41, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1069), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2402), 16, - anon_sym_EQ, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, anon_sym_AMP, + ACTIONS(1841), 1, anon_sym_LBRACK, - anon_sym_DOT, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, anon_sym_PLUS, + ACTIONS(1849), 1, anon_sym_DASH, + ACTIONS(1851), 1, anon_sym_LT_LT, + ACTIONS(1853), 1, anon_sym_GT_GT, + ACTIONS(1855), 1, anon_sym_STAR, + ACTIONS(1857), 1, anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, anon_sym_SLASH, + ACTIONS(1871), 1, anon_sym_PERCENT, + ACTIONS(1873), 1, anon_sym_PIPE, + ACTIONS(1875), 1, anon_sym_CARET, + ACTIONS(1877), 1, + anon_sym_EQ_EQ, + ACTIONS(1879), 1, + anon_sym_BANG_EQ, + ACTIONS(1881), 1, anon_sym_GT, + ACTIONS(1883), 1, + anon_sym_GT_EQ, + ACTIONS(1885), 1, + anon_sym_LT_EQ, + ACTIONS(1887), 1, anon_sym_LT, - ACTIONS(2404), 28, + ACTIONS(1889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(2515), 1, anon_sym_COMMA, - anon_sym_GT_RPAREN, + ACTIONS(2519), 1, + anon_sym_DOT, + ACTIONS(2539), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(1688), 1, + aux_sym_assert_stmt_repeat1, + STATE(1042), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1981), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140755,66 +134727,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_LBRACK_LT, - anon_sym_GT_RBRACK, - [13966] = 15, + [17144] = 39, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2281), 1, - anon_sym_QMARK, - ACTIONS(2520), 1, - anon_sym_RPAREN, - ACTIONS(2522), 1, - anon_sym_DOT, - STATE(1455), 1, - sym_param_path_element, - STATE(1535), 1, - aux_sym_param_path_repeat1, - STATE(2239), 1, - sym_param_path, - ACTIONS(2277), 2, - anon_sym_LPAREN, - anon_sym_BANG, - ACTIONS(2279), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(1070), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2273), 5, + ACTIONS(1833), 1, anon_sym_LPAREN_LT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - ACTIONS(2275), 13, - anon_sym_EQ, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, anon_sym_AMP, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, anon_sym_PLUS, + ACTIONS(1849), 1, anon_sym_DASH, + ACTIONS(1851), 1, anon_sym_LT_LT, + ACTIONS(1853), 1, anon_sym_GT_GT, + ACTIONS(1855), 1, anon_sym_STAR, + ACTIONS(1857), 1, + anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, anon_sym_SLASH, + ACTIONS(1871), 1, anon_sym_PERCENT, + ACTIONS(1873), 1, anon_sym_PIPE, + ACTIONS(1875), 1, anon_sym_CARET, + ACTIONS(1877), 1, + anon_sym_EQ_EQ, + ACTIONS(1879), 1, + anon_sym_BANG_EQ, + ACTIONS(1881), 1, anon_sym_GT, + ACTIONS(1883), 1, + anon_sym_GT_EQ, + ACTIONS(1885), 1, + anon_sym_LT_EQ, + ACTIONS(1887), 1, anon_sym_LT, - ACTIONS(2271), 16, - anon_sym_AMP_AMP, + ACTIONS(1889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(2519), 1, + anon_sym_DOT, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + ACTIONS(2541), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(1043), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1981), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140825,123 +134819,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - [14047] = 23, + [17275] = 41, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(79), 1, - sym_type_ident, - ACTIONS(173), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2442), 1, - sym_ident, - ACTIONS(2444), 1, - sym_ct_ident, - ACTIONS(2446), 1, - sym_hash_ident, - ACTIONS(2448), 1, - sym_ct_type_ident, - ACTIONS(2452), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2454), 1, - anon_sym_AMP, - STATE(1304), 1, - sym_base_type, - STATE(1306), 1, - sym_module_type_ident, - STATE(1309), 1, - sym_base_type_name, - STATE(1433), 1, - sym_type, - STATE(1537), 1, - sym_module_resolution, - STATE(1545), 1, - sym__parameter, - STATE(1632), 1, - aux_sym__module_path, - STATE(1740), 1, - sym_parameter, - STATE(2248), 1, - sym__parameters, - ACTIONS(175), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1071), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(139), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [14144] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(1072), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2410), 16, - anon_sym_EQ, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, anon_sym_AMP, + ACTIONS(1841), 1, anon_sym_LBRACK, - anon_sym_DOT, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, anon_sym_PLUS, + ACTIONS(1849), 1, anon_sym_DASH, + ACTIONS(1851), 1, anon_sym_LT_LT, + ACTIONS(1853), 1, anon_sym_GT_GT, + ACTIONS(1855), 1, anon_sym_STAR, + ACTIONS(1857), 1, anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, anon_sym_SLASH, + ACTIONS(1871), 1, anon_sym_PERCENT, + ACTIONS(1873), 1, anon_sym_PIPE, + ACTIONS(1875), 1, anon_sym_CARET, + ACTIONS(1877), 1, + anon_sym_EQ_EQ, + ACTIONS(1879), 1, + anon_sym_BANG_EQ, + ACTIONS(1881), 1, anon_sym_GT, + ACTIONS(1883), 1, + anon_sym_GT_EQ, + ACTIONS(1885), 1, + anon_sym_LT_EQ, + ACTIONS(1887), 1, anon_sym_LT, - ACTIONS(2412), 28, + ACTIONS(1889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(2515), 1, anon_sym_COMMA, - anon_sym_GT_RPAREN, + ACTIONS(2519), 1, + anon_sym_DOT, + ACTIONS(2543), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(1643), 1, + aux_sym_assert_stmt_repeat1, + STATE(1044), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1981), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140952,53 +134913,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_LBRACK_LT, - anon_sym_GT_RBRACK, - [14207] = 6, + [17410] = 41, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1073), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2414), 16, - anon_sym_EQ, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, anon_sym_AMP, + ACTIONS(1841), 1, anon_sym_LBRACK, - anon_sym_DOT, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, anon_sym_PLUS, + ACTIONS(1849), 1, anon_sym_DASH, + ACTIONS(1851), 1, anon_sym_LT_LT, + ACTIONS(1853), 1, anon_sym_GT_GT, + ACTIONS(1855), 1, anon_sym_STAR, + ACTIONS(1857), 1, anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, anon_sym_SLASH, + ACTIONS(1871), 1, anon_sym_PERCENT, + ACTIONS(1873), 1, anon_sym_PIPE, + ACTIONS(1875), 1, anon_sym_CARET, + ACTIONS(1877), 1, + anon_sym_EQ_EQ, + ACTIONS(1879), 1, + anon_sym_BANG_EQ, + ACTIONS(1881), 1, anon_sym_GT, + ACTIONS(1883), 1, + anon_sym_GT_EQ, + ACTIONS(1885), 1, + anon_sym_LT_EQ, + ACTIONS(1887), 1, anon_sym_LT, - ACTIONS(2416), 28, + ACTIONS(1889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(2515), 1, anon_sym_COMMA, - anon_sym_GT_RPAREN, + ACTIONS(2519), 1, + anon_sym_DOT, + ACTIONS(2545), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(1702), 1, + aux_sym_assert_stmt_repeat1, + STATE(1045), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1981), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141009,230 +135007,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_LBRACK_LT, - anon_sym_GT_RBRACK, - [14270] = 6, + [17545] = 24, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1074), 3, + ACTIONS(77), 1, + sym_type_ident, + ACTIONS(2547), 1, + sym_ident, + ACTIONS(2549), 1, + sym_ct_ident, + ACTIONS(2551), 1, + sym_hash_ident, + ACTIONS(2553), 1, + sym_ct_type_ident, + ACTIONS(2555), 1, + anon_sym_RPAREN, + ACTIONS(2557), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2559), 1, + anon_sym_AMP, + ACTIONS(2561), 1, + anon_sym_SEMI, + STATE(1199), 1, + sym_base_type, + STATE(1200), 1, + sym_module_type_ident, + STATE(1208), 1, + sym_base_type_name, + STATE(1328), 1, + sym_type, + STATE(1368), 1, + sym__parameter, + STATE(1421), 1, + sym_module_resolution, + STATE(1475), 1, + sym_parameter, + STATE(1558), 1, + aux_sym__module_path, + STATE(1760), 1, + sym__parameters, + STATE(1046), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2426), 16, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2428), 28, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_LBRACK_LT, - anon_sym_GT_RBRACK, - [14333] = 6, + ACTIONS(171), 4, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(137), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [17646] = 39, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1075), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2406), 16, - anon_sym_EQ, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, anon_sym_AMP, + ACTIONS(1841), 1, anon_sym_LBRACK, - anon_sym_DOT, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, anon_sym_PLUS, + ACTIONS(1849), 1, anon_sym_DASH, + ACTIONS(1851), 1, anon_sym_LT_LT, + ACTIONS(1853), 1, anon_sym_GT_GT, + ACTIONS(1855), 1, anon_sym_STAR, + ACTIONS(1857), 1, anon_sym_QMARK, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2408), 28, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(1859), 1, anon_sym_QMARK_COLON, + ACTIONS(1861), 1, anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_LBRACK_LT, - anon_sym_GT_RBRACK, - [14396] = 12, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2281), 1, - anon_sym_QMARK, - ACTIONS(2526), 1, - anon_sym_EQ, - ACTIONS(2277), 2, - anon_sym_LPAREN, + ACTIONS(1863), 1, anon_sym_BANG, - ACTIONS(2279), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(1076), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2273), 4, - anon_sym_LPAREN_LT, + ACTIONS(1865), 1, anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - ACTIONS(2524), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_DOT, - ACTIONS(2275), 12, - anon_sym_AMP, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, + ACTIONS(1869), 1, anon_sym_SLASH, + ACTIONS(1871), 1, anon_sym_PERCENT, + ACTIONS(1873), 1, anon_sym_PIPE, + ACTIONS(1875), 1, anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2271), 16, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(1877), 1, anon_sym_EQ_EQ, + ACTIONS(1879), 1, anon_sym_BANG_EQ, + ACTIONS(1881), 1, + anon_sym_GT, + ACTIONS(1883), 1, anon_sym_GT_EQ, + ACTIONS(1885), 1, anon_sym_LT_EQ, + ACTIONS(1887), 1, + anon_sym_LT, + ACTIONS(1889), 1, anon_sym_PIPE_PIPE, - [14471] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(1077), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2422), 16, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, anon_sym_EQ, - anon_sym_AMP, - anon_sym_LBRACK, + ACTIONS(2519), 1, anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2424), 28, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + ACTIONS(2563), 3, anon_sym_COMMA, - anon_sym_GT_RPAREN, anon_sym_RPAREN, - anon_sym_RBRACK, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + STATE(1047), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1981), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141243,110 +135176,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_LBRACK_LT, - anon_sym_GT_RBRACK, - [14534] = 6, + [17777] = 40, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1078), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2430), 16, - anon_sym_EQ, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, anon_sym_AMP, + ACTIONS(1841), 1, anon_sym_LBRACK, - anon_sym_DOT, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, anon_sym_PLUS, + ACTIONS(1849), 1, anon_sym_DASH, + ACTIONS(1851), 1, anon_sym_LT_LT, + ACTIONS(1853), 1, anon_sym_GT_GT, + ACTIONS(1855), 1, anon_sym_STAR, + ACTIONS(1857), 1, anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, anon_sym_SLASH, + ACTIONS(1871), 1, anon_sym_PERCENT, + ACTIONS(1873), 1, anon_sym_PIPE, + ACTIONS(1875), 1, anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2432), 28, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, + ACTIONS(1877), 1, anon_sym_EQ_EQ, + ACTIONS(1879), 1, anon_sym_BANG_EQ, + ACTIONS(1881), 1, + anon_sym_GT, + ACTIONS(1883), 1, anon_sym_GT_EQ, + ACTIONS(1885), 1, anon_sym_LT_EQ, + ACTIONS(1887), 1, + anon_sym_LT, + ACTIONS(1889), 1, anon_sym_PIPE_PIPE, - anon_sym_LBRACK_LT, - anon_sym_GT_RBRACK, - [14597] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(1079), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2301), 16, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, anon_sym_EQ, - anon_sym_AMP, - anon_sym_LBRACK, + ACTIONS(2519), 1, anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2303), 28, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(2565), 1, anon_sym_SEMI, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + ACTIONS(2523), 2, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + STATE(1048), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1981), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141357,53 +135269,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_LBRACK_LT, - anon_sym_GT_RBRACK, - [14660] = 6, + [17910] = 41, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1080), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2430), 16, - anon_sym_EQ, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, anon_sym_AMP, + ACTIONS(1841), 1, anon_sym_LBRACK, - anon_sym_DOT, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, anon_sym_PLUS, + ACTIONS(1849), 1, anon_sym_DASH, + ACTIONS(1851), 1, anon_sym_LT_LT, + ACTIONS(1853), 1, anon_sym_GT_GT, + ACTIONS(1855), 1, anon_sym_STAR, + ACTIONS(1857), 1, anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, anon_sym_SLASH, + ACTIONS(1871), 1, anon_sym_PERCENT, + ACTIONS(1873), 1, anon_sym_PIPE, + ACTIONS(1875), 1, anon_sym_CARET, + ACTIONS(1877), 1, + anon_sym_EQ_EQ, + ACTIONS(1879), 1, + anon_sym_BANG_EQ, + ACTIONS(1881), 1, anon_sym_GT, + ACTIONS(1883), 1, + anon_sym_GT_EQ, + ACTIONS(1885), 1, + anon_sym_LT_EQ, + ACTIONS(1887), 1, anon_sym_LT, - ACTIONS(2432), 28, + ACTIONS(1889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(2515), 1, anon_sym_COMMA, - anon_sym_GT_RPAREN, + ACTIONS(2519), 1, + anon_sym_DOT, + ACTIONS(2567), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(1673), 1, + aux_sym_assert_stmt_repeat1, + STATE(1049), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1981), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141414,120 +135363,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_LBRACK_LT, - anon_sym_GT_RBRACK, - [14723] = 6, + [18045] = 23, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1081), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2239), 16, - anon_sym_EQ, + ACTIONS(77), 1, + sym_type_ident, + ACTIONS(2547), 1, + sym_ident, + ACTIONS(2549), 1, + sym_ct_ident, + ACTIONS(2551), 1, + sym_hash_ident, + ACTIONS(2553), 1, + sym_ct_type_ident, + ACTIONS(2557), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2559), 1, anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2237), 28, - anon_sym_COMMA, - anon_sym_GT_RPAREN, + ACTIONS(2569), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_LBRACK_LT, - anon_sym_GT_RBRACK, - [14786] = 22, + STATE(1199), 1, + sym_base_type, + STATE(1200), 1, + sym_module_type_ident, + STATE(1208), 1, + sym_base_type_name, + STATE(1328), 1, + sym_type, + STATE(1368), 1, + sym__parameter, + STATE(1421), 1, + sym_module_resolution, + STATE(1475), 1, + sym_parameter, + STATE(1558), 1, + aux_sym__module_path, + STATE(1912), 1, + sym__parameters, + STATE(1050), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(171), 4, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(137), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [18143] = 22, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(79), 1, + ACTIONS(13), 1, sym_type_ident, - ACTIONS(173), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2442), 1, - sym_ident, - ACTIONS(2444), 1, - sym_ct_ident, - ACTIONS(2446), 1, - sym_hash_ident, - ACTIONS(2448), 1, + ACTIONS(15), 1, sym_ct_type_ident, - ACTIONS(2452), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2454), 1, - anon_sym_AMP, - STATE(1304), 1, - sym_base_type, - STATE(1306), 1, + ACTIONS(2571), 1, + sym_ident, + ACTIONS(2573), 1, + anon_sym_RBRACE, + ACTIONS(2575), 1, + anon_sym_inline, + ACTIONS(2577), 1, + anon_sym_bitstruct, + STATE(989), 1, sym_module_type_ident, - STATE(1309), 1, + STATE(1018), 1, + sym_base_type, + STATE(1033), 1, sym_base_type_name, - STATE(1433), 1, - sym_type, - STATE(1478), 1, - sym__parameter, - STATE(1537), 1, + STATE(1054), 1, + aux_sym_struct_body_repeat1, + STATE(1179), 1, + sym_struct_member_declaration, + STATE(1277), 1, + sym__struct_or_union, + STATE(1421), 1, sym_module_resolution, - STATE(1632), 1, + STATE(1532), 1, aux_sym__module_path, - STATE(1847), 1, - sym_parameter, - ACTIONS(175), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1082), 3, + STATE(1764), 1, + sym_type, + ACTIONS(33), 2, + anon_sym_struct, + anon_sym_union, + STATE(1051), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(139), 24, + ACTIONS(57), 4, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(45), 24, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -141552,51 +135512,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [14880] = 10, + [18239] = 22, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2281), 1, - anon_sym_QMARK, - ACTIONS(2277), 2, - anon_sym_LPAREN, - anon_sym_BANG, - STATE(1083), 3, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(2571), 1, + sym_ident, + ACTIONS(2575), 1, + anon_sym_inline, + ACTIONS(2577), 1, + anon_sym_bitstruct, + ACTIONS(2579), 1, + anon_sym_RBRACE, + STATE(989), 1, + sym_module_type_ident, + STATE(1018), 1, + sym_base_type, + STATE(1033), 1, + sym_base_type_name, + STATE(1070), 1, + aux_sym_struct_body_repeat1, + STATE(1179), 1, + sym_struct_member_declaration, + STATE(1277), 1, + sym__struct_or_union, + STATE(1421), 1, + sym_module_resolution, + STATE(1532), 1, + aux_sym__module_path, + STATE(1764), 1, + sym_type, + ACTIONS(33), 2, + anon_sym_struct, + anon_sym_union, + STATE(1052), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2273), 5, + ACTIONS(57), 4, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [18335] = 35, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1833), 1, anon_sym_LPAREN_LT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - ACTIONS(2279), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - ACTIONS(2275), 13, - anon_sym_EQ, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, anon_sym_AMP, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1847), 1, anon_sym_PLUS, + ACTIONS(1849), 1, anon_sym_DASH, + ACTIONS(1851), 1, anon_sym_LT_LT, + ACTIONS(1853), 1, anon_sym_GT_GT, + ACTIONS(1855), 1, anon_sym_STAR, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, anon_sym_SLASH, + ACTIONS(1871), 1, anon_sym_PERCENT, + ACTIONS(1873), 1, anon_sym_PIPE, + ACTIONS(1875), 1, anon_sym_CARET, + ACTIONS(1877), 1, + anon_sym_EQ_EQ, + ACTIONS(1879), 1, + anon_sym_BANG_EQ, + ACTIONS(1881), 1, anon_sym_GT, + ACTIONS(1883), 1, + anon_sym_GT_EQ, + ACTIONS(1885), 1, + anon_sym_LT_EQ, + ACTIONS(1887), 1, anon_sym_LT, - ACTIONS(2271), 17, + ACTIONS(1889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(2519), 1, anon_sym_DOT, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + ACTIONS(2249), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(2581), 3, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_AMP_AMP, + STATE(1053), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2247), 12, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141607,59 +135671,278 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - [14950] = 22, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + [18457] = 22, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(2571), 1, + sym_ident, + ACTIONS(2575), 1, + anon_sym_inline, + ACTIONS(2577), 1, + anon_sym_bitstruct, + ACTIONS(2583), 1, + anon_sym_RBRACE, + STATE(989), 1, + sym_module_type_ident, + STATE(1018), 1, + sym_base_type, + STATE(1033), 1, + sym_base_type_name, + STATE(1070), 1, + aux_sym_struct_body_repeat1, + STATE(1179), 1, + sym_struct_member_declaration, + STATE(1277), 1, + sym__struct_or_union, + STATE(1421), 1, + sym_module_resolution, + STATE(1532), 1, + aux_sym__module_path, + STATE(1764), 1, + sym_type, + ACTIONS(33), 2, + anon_sym_struct, + anon_sym_union, + STATE(1054), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(57), 4, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [18553] = 22, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(79), 1, + ACTIONS(13), 1, sym_type_ident, - ACTIONS(173), 1, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(2571), 1, + sym_ident, + ACTIONS(2575), 1, + anon_sym_inline, + ACTIONS(2577), 1, + anon_sym_bitstruct, + ACTIONS(2585), 1, + anon_sym_RBRACE, + STATE(989), 1, + sym_module_type_ident, + STATE(1018), 1, + sym_base_type, + STATE(1033), 1, + sym_base_type_name, + STATE(1052), 1, + aux_sym_struct_body_repeat1, + STATE(1179), 1, + sym_struct_member_declaration, + STATE(1277), 1, + sym__struct_or_union, + STATE(1421), 1, + sym_module_resolution, + STATE(1532), 1, + aux_sym__module_path, + STATE(1764), 1, + sym_type, + ACTIONS(33), 2, + anon_sym_struct, + anon_sym_union, + STATE(1055), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(57), 4, anon_sym_DOLLARtypeof, - ACTIONS(2442), 1, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [18649] = 22, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(77), 1, + sym_type_ident, + ACTIONS(2547), 1, sym_ident, - ACTIONS(2444), 1, + ACTIONS(2549), 1, sym_ct_ident, - ACTIONS(2446), 1, + ACTIONS(2551), 1, sym_hash_ident, - ACTIONS(2448), 1, + ACTIONS(2553), 1, sym_ct_type_ident, - ACTIONS(2452), 1, + ACTIONS(2557), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2454), 1, + ACTIONS(2559), 1, anon_sym_AMP, - STATE(1304), 1, + STATE(1199), 1, sym_base_type, - STATE(1306), 1, + STATE(1200), 1, sym_module_type_ident, - STATE(1309), 1, + STATE(1208), 1, sym_base_type_name, - STATE(1433), 1, + STATE(1328), 1, sym_type, - STATE(1537), 1, - sym_module_resolution, - STATE(1545), 1, + STATE(1368), 1, sym__parameter, - STATE(1632), 1, + STATE(1421), 1, + sym_module_resolution, + STATE(1558), 1, aux_sym__module_path, - STATE(1847), 1, + STATE(1590), 1, sym_parameter, - ACTIONS(175), 3, + ACTIONS(2587), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(1056), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(171), 4, + anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - STATE(1084), 3, + ACTIONS(137), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [18745] = 20, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(11), 1, + sym_ident, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(17), 1, + anon_sym_tlocal, + ACTIONS(25), 1, + anon_sym_fn, + ACTIONS(31), 1, + anon_sym_const, + STATE(989), 1, + sym_module_type_ident, + STATE(1018), 1, + sym_base_type, + STATE(1033), 1, + sym_base_type_name, + STATE(1171), 1, + sym_global_storage, + STATE(1421), 1, + sym_module_resolution, + STATE(1532), 1, + aux_sym__module_path, + STATE(2110), 1, + sym_type, + STATE(1057), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(139), 24, + ACTIONS(57), 4, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + STATE(871), 4, + sym_const_declaration, + sym_global_declaration, + sym_func_declaration, + sym_func_definition, + ACTIONS(45), 24, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -141684,24 +135967,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [15044] = 8, + [18837] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2219), 1, - anon_sym_COLON_COLON, - ACTIONS(2528), 1, - anon_sym_EQ, - STATE(1085), 3, + STATE(1058), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2223), 15, + ACTIONS(2298), 17, + anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, + anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_LT, @@ -141715,12 +135996,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2221), 26, + ACTIONS(2296), 28, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_DOT, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_DOT_DOT, anon_sym_AMP_AMP, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -141742,24 +136025,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PIPE_PIPE, anon_sym_BANG_BANG, - [15110] = 8, + [18901] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2219), 1, - anon_sym_COLON_COLON, - ACTIONS(2530), 1, - anon_sym_EQ, - STATE(1086), 3, + STATE(1059), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2223), 15, + ACTIONS(2589), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_DOT_DOT, + ACTIONS(2423), 17, + anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, + anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_LT, @@ -141773,12 +136060,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2221), 26, - anon_sym_COMMA, + ACTIONS(2421), 23, anon_sym_LPAREN_LT, anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_DOT, anon_sym_AMP_AMP, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -141800,51 +136084,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PIPE_PIPE, anon_sym_BANG_BANG, - [15176] = 11, + [18967] = 23, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2281), 1, - anon_sym_QMARK, - ACTIONS(2277), 2, - anon_sym_LPAREN, - anon_sym_BANG, - ACTIONS(2279), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - ACTIONS(2532), 3, - anon_sym_COMMA, + ACTIONS(77), 1, + sym_type_ident, + ACTIONS(1191), 1, anon_sym_RPAREN, - anon_sym_SEMI, - STATE(1087), 3, + ACTIONS(2547), 1, + sym_ident, + ACTIONS(2549), 1, + sym_ct_ident, + ACTIONS(2551), 1, + sym_hash_ident, + ACTIONS(2553), 1, + sym_ct_type_ident, + ACTIONS(2557), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2559), 1, + anon_sym_AMP, + STATE(1199), 1, + sym_base_type, + STATE(1200), 1, + sym_module_type_ident, + STATE(1208), 1, + sym_base_type_name, + STATE(1328), 1, + sym_type, + STATE(1368), 1, + sym__parameter, + STATE(1421), 1, + sym_module_resolution, + STATE(1475), 1, + sym_parameter, + STATE(1558), 1, + aux_sym__module_path, + STATE(2084), 1, + sym__parameters, + STATE(1060), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2273), 5, - anon_sym_LPAREN_LT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - ACTIONS(2275), 13, + ACTIONS(171), 4, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(137), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [19065] = 7, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(1061), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2591), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_DOT_DOT, + ACTIONS(2427), 17, anon_sym_EQ, + anon_sym_LPAREN, anon_sym_AMP, + anon_sym_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2271), 17, - anon_sym_DOT, + ACTIONS(2425), 23, + anon_sym_LPAREN_LT, + anon_sym_LBRACK, anon_sym_AMP_AMP, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -141856,117 +136208,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_PIPE_PIPE, - [15248] = 11, + anon_sym_BANG_BANG, + [19131] = 40, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2269), 1, - anon_sym_QMARK, - ACTIONS(2261), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - ACTIONS(2267), 2, - anon_sym_LPAREN, - anon_sym_BANG, - ACTIONS(2534), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(1088), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2263), 5, + ACTIONS(1833), 1, anon_sym_LPAREN_LT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - ACTIONS(2366), 13, - anon_sym_EQ, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, anon_sym_AMP, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1843), 1, + anon_sym_DOT, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, anon_sym_PLUS, + ACTIONS(1849), 1, anon_sym_DASH, + ACTIONS(1851), 1, anon_sym_LT_LT, + ACTIONS(1853), 1, anon_sym_GT_GT, + ACTIONS(1855), 1, anon_sym_STAR, + ACTIONS(1857), 1, + anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, anon_sym_SLASH, + ACTIONS(1871), 1, anon_sym_PERCENT, + ACTIONS(1873), 1, anon_sym_PIPE, + ACTIONS(1875), 1, anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2364), 17, - anon_sym_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(1877), 1, anon_sym_EQ_EQ, + ACTIONS(1879), 1, anon_sym_BANG_EQ, + ACTIONS(1881), 1, + anon_sym_GT, + ACTIONS(1883), 1, anon_sym_GT_EQ, + ACTIONS(1885), 1, anon_sym_LT_EQ, + ACTIONS(1887), 1, + anon_sym_LT, + ACTIONS(1889), 1, anon_sym_PIPE_PIPE, - [15320] = 10, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2269), 1, - anon_sym_QMARK, - ACTIONS(2267), 2, - anon_sym_LPAREN, - anon_sym_BANG, - STATE(1089), 3, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(2593), 1, + anon_sym_RBRACK, + ACTIONS(2595), 1, + anon_sym_DOT_DOT, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(1062), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2261), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - ACTIONS(2263), 5, - anon_sym_LPAREN_LT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - ACTIONS(2366), 13, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2364), 17, - anon_sym_DOT, - anon_sym_AMP_AMP, + ACTIONS(1981), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141977,78 +136310,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - [15390] = 28, + [19263] = 38, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2540), 1, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(2542), 1, - anon_sym_DOT, - ACTIONS(2544), 1, - anon_sym_AMP_AMP, - ACTIONS(2546), 1, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1847), 1, anon_sym_PLUS, - ACTIONS(2548), 1, + ACTIONS(1849), 1, anon_sym_DASH, - ACTIONS(2550), 1, + ACTIONS(1851), 1, anon_sym_LT_LT, - ACTIONS(2552), 1, + ACTIONS(1853), 1, anon_sym_GT_GT, - ACTIONS(2554), 1, + ACTIONS(1855), 1, anon_sym_STAR, - ACTIONS(2558), 1, + ACTIONS(1857), 1, anon_sym_QMARK, - ACTIONS(2560), 1, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, anon_sym_SLASH, - ACTIONS(2562), 1, + ACTIONS(1871), 1, anon_sym_PERCENT, - ACTIONS(2564), 1, + ACTIONS(1873), 1, anon_sym_PIPE, - ACTIONS(2566), 1, + ACTIONS(1875), 1, anon_sym_CARET, - ACTIONS(2568), 1, + ACTIONS(1877), 1, anon_sym_EQ_EQ, - ACTIONS(2570), 1, + ACTIONS(1879), 1, anon_sym_BANG_EQ, - ACTIONS(2572), 1, + ACTIONS(1881), 1, anon_sym_GT, - ACTIONS(2574), 1, + ACTIONS(1883), 1, anon_sym_GT_EQ, - ACTIONS(2576), 1, + ACTIONS(1885), 1, anon_sym_LT_EQ, - ACTIONS(2578), 1, + ACTIONS(1887), 1, anon_sym_LT, - ACTIONS(2580), 1, + ACTIONS(1889), 1, anon_sym_PIPE_PIPE, - STATE(303), 1, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(2519), 1, + anon_sym_DOT, + STATE(293), 1, sym__assignment_op, - STATE(1090), 3, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + ACTIONS(2597), 3, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + STATE(1063), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2536), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_GT_RBRACK, - ACTIONS(2556), 10, + ACTIONS(1981), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142059,101 +136400,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [15495] = 7, + [19391] = 23, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2582), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1091), 3, + ACTIONS(77), 1, + sym_type_ident, + ACTIONS(2547), 1, + sym_ident, + ACTIONS(2549), 1, + sym_ct_ident, + ACTIONS(2551), 1, + sym_hash_ident, + ACTIONS(2553), 1, + sym_ct_type_ident, + ACTIONS(2557), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2559), 1, + anon_sym_AMP, + ACTIONS(2599), 1, + anon_sym_RPAREN, + STATE(1199), 1, + sym_base_type, + STATE(1200), 1, + sym_module_type_ident, + STATE(1208), 1, + sym_base_type_name, + STATE(1328), 1, + sym_type, + STATE(1368), 1, + sym__parameter, + STATE(1421), 1, + sym_module_resolution, + STATE(1475), 1, + sym_parameter, + STATE(1558), 1, + aux_sym__module_path, + STATE(2163), 1, + sym__parameters, + STATE(1064), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2337), 16, - anon_sym_EQ, + ACTIONS(171), 4, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(137), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [19489] = 40, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, anon_sym_LPAREN, + ACTIONS(1839), 1, anon_sym_AMP, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1843), 1, + anon_sym_DOT, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, anon_sym_PLUS, + ACTIONS(1849), 1, anon_sym_DASH, + ACTIONS(1851), 1, anon_sym_LT_LT, + ACTIONS(1853), 1, anon_sym_GT_GT, + ACTIONS(1855), 1, anon_sym_STAR, + ACTIONS(1857), 1, anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, anon_sym_SLASH, + ACTIONS(1871), 1, anon_sym_PERCENT, + ACTIONS(1873), 1, anon_sym_PIPE, + ACTIONS(1875), 1, anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2335), 24, - anon_sym_LPAREN_LT, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(1877), 1, anon_sym_EQ_EQ, + ACTIONS(1879), 1, anon_sym_BANG_EQ, + ACTIONS(1881), 1, + anon_sym_GT, + ACTIONS(1883), 1, anon_sym_GT_EQ, + ACTIONS(1885), 1, anon_sym_LT_EQ, + ACTIONS(1887), 1, + anon_sym_LT, + ACTIONS(1889), 1, anon_sym_PIPE_PIPE, + ACTIONS(1891), 1, anon_sym_BANG_BANG, - [15558] = 8, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2542), 1, - anon_sym_DOT, - STATE(303), 1, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(2601), 1, + anon_sym_COLON, + ACTIONS(2603), 1, + anon_sym_DOT_DOT, + STATE(293), 1, sym__assignment_op, - STATE(1092), 3, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(1065), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2586), 14, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2584), 26, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + ACTIONS(1981), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142164,198 +136567,236 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_GT_RBRACK, - [15623] = 13, + [19621] = 23, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2542), 1, - anon_sym_DOT, - ACTIONS(2550), 1, - anon_sym_LT_LT, - ACTIONS(2552), 1, - anon_sym_GT_GT, - ACTIONS(2554), 1, - anon_sym_STAR, - ACTIONS(2560), 1, - anon_sym_SLASH, - ACTIONS(2562), 1, - anon_sym_PERCENT, - STATE(303), 1, - sym__assignment_op, - STATE(1093), 3, + ACTIONS(77), 1, + sym_type_ident, + ACTIONS(1207), 1, + anon_sym_RPAREN, + ACTIONS(2547), 1, + sym_ident, + ACTIONS(2549), 1, + sym_ct_ident, + ACTIONS(2551), 1, + sym_hash_ident, + ACTIONS(2553), 1, + sym_ct_type_ident, + ACTIONS(2557), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2559), 1, + anon_sym_AMP, + STATE(1199), 1, + sym_base_type, + STATE(1200), 1, + sym_module_type_ident, + STATE(1208), 1, + sym_base_type_name, + STATE(1328), 1, + sym_type, + STATE(1368), 1, + sym__parameter, + STATE(1421), 1, + sym_module_resolution, + STATE(1475), 1, + sym_parameter, + STATE(1558), 1, + aux_sym__module_path, + STATE(1974), 1, + sym__parameters, + STATE(1066), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2590), 9, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2588), 26, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_GT_RBRACK, - [15698] = 11, + ACTIONS(171), 4, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(137), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [19719] = 22, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2281), 1, - anon_sym_QMARK, - ACTIONS(2277), 2, - anon_sym_LPAREN, - anon_sym_BANG, - ACTIONS(2279), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - ACTIONS(2532), 3, + ACTIONS(77), 1, + sym_type_ident, + ACTIONS(2547), 1, + sym_ident, + ACTIONS(2549), 1, + sym_ct_ident, + ACTIONS(2551), 1, + sym_hash_ident, + ACTIONS(2553), 1, + sym_ct_type_ident, + ACTIONS(2557), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2559), 1, + anon_sym_AMP, + STATE(1199), 1, + sym_base_type, + STATE(1200), 1, + sym_module_type_ident, + STATE(1208), 1, + sym_base_type_name, + STATE(1328), 1, + sym_type, + STATE(1368), 1, + sym__parameter, + STATE(1421), 1, + sym_module_resolution, + STATE(1558), 1, + aux_sym__module_path, + STATE(1590), 1, + sym_parameter, + ACTIONS(2605), 2, anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_AMP_AMP, - STATE(1094), 3, + STATE(1067), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2273), 5, - anon_sym_LPAREN_LT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - ACTIONS(2275), 13, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2271), 16, - anon_sym_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - [15769] = 26, + ACTIONS(171), 4, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(137), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [19815] = 39, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2540), 1, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(2542), 1, - anon_sym_DOT, - ACTIONS(2544), 1, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1845), 1, anon_sym_AMP_AMP, - ACTIONS(2546), 1, + ACTIONS(1847), 1, anon_sym_PLUS, - ACTIONS(2548), 1, + ACTIONS(1849), 1, anon_sym_DASH, - ACTIONS(2550), 1, + ACTIONS(1851), 1, anon_sym_LT_LT, - ACTIONS(2552), 1, + ACTIONS(1853), 1, anon_sym_GT_GT, - ACTIONS(2554), 1, + ACTIONS(1855), 1, anon_sym_STAR, - ACTIONS(2560), 1, + ACTIONS(1857), 1, + anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, anon_sym_SLASH, - ACTIONS(2562), 1, + ACTIONS(1871), 1, anon_sym_PERCENT, - ACTIONS(2564), 1, + ACTIONS(1873), 1, anon_sym_PIPE, - ACTIONS(2566), 1, + ACTIONS(1875), 1, anon_sym_CARET, - ACTIONS(2568), 1, + ACTIONS(1877), 1, anon_sym_EQ_EQ, - ACTIONS(2570), 1, + ACTIONS(1879), 1, anon_sym_BANG_EQ, - ACTIONS(2572), 1, + ACTIONS(1881), 1, anon_sym_GT, - ACTIONS(2574), 1, + ACTIONS(1883), 1, anon_sym_GT_EQ, - ACTIONS(2576), 1, + ACTIONS(1885), 1, anon_sym_LT_EQ, - ACTIONS(2578), 1, + ACTIONS(1887), 1, anon_sym_LT, - ACTIONS(2580), 1, + ACTIONS(1889), 1, anon_sym_PIPE_PIPE, - STATE(303), 1, - sym__assignment_op, - ACTIONS(2594), 2, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, anon_sym_EQ, - anon_sym_QMARK, - STATE(1095), 3, + ACTIONS(2519), 1, + anon_sym_DOT, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + ACTIONS(2607), 2, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + STATE(1068), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2592), 20, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, + ACTIONS(1981), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142366,133 +136807,234 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_GT_RBRACK, - [15870] = 16, + [19945] = 23, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2540), 1, + ACTIONS(77), 1, + sym_type_ident, + ACTIONS(2547), 1, + sym_ident, + ACTIONS(2549), 1, + sym_ct_ident, + ACTIONS(2551), 1, + sym_hash_ident, + ACTIONS(2553), 1, + sym_ct_type_ident, + ACTIONS(2557), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2559), 1, anon_sym_AMP, - ACTIONS(2542), 1, - anon_sym_DOT, - ACTIONS(2550), 1, - anon_sym_LT_LT, - ACTIONS(2552), 1, - anon_sym_GT_GT, - ACTIONS(2554), 1, - anon_sym_STAR, - ACTIONS(2560), 1, - anon_sym_SLASH, - ACTIONS(2562), 1, - anon_sym_PERCENT, - ACTIONS(2564), 1, - anon_sym_PIPE, - ACTIONS(2566), 1, - anon_sym_CARET, - STATE(303), 1, - sym__assignment_op, - STATE(1096), 3, + ACTIONS(2609), 1, + anon_sym_RPAREN, + STATE(1199), 1, + sym_base_type, + STATE(1200), 1, + sym_module_type_ident, + STATE(1208), 1, + sym_base_type_name, + STATE(1328), 1, + sym_type, + STATE(1368), 1, + sym__parameter, + STATE(1421), 1, + sym_module_resolution, + STATE(1475), 1, + sym_parameter, + STATE(1558), 1, + aux_sym__module_path, + STATE(2092), 1, + sym__parameters, + STATE(1069), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2590), 6, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2588), 26, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, + ACTIONS(171), 4, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(137), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [20043] = 21, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(2611), 1, + sym_ident, + ACTIONS(2614), 1, + sym_type_ident, + ACTIONS(2617), 1, + sym_ct_type_ident, + ACTIONS(2620), 1, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_GT_RBRACK, - [15951] = 24, + ACTIONS(2622), 1, + anon_sym_inline, + ACTIONS(2628), 1, + anon_sym_bitstruct, + STATE(989), 1, + sym_module_type_ident, + STATE(1018), 1, + sym_base_type, + STATE(1033), 1, + sym_base_type_name, + STATE(1179), 1, + sym_struct_member_declaration, + STATE(1277), 1, + sym__struct_or_union, + STATE(1421), 1, + sym_module_resolution, + STATE(1532), 1, + aux_sym__module_path, + STATE(1764), 1, + sym_type, + ACTIONS(2625), 2, + anon_sym_struct, + anon_sym_union, + ACTIONS(2634), 4, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + STATE(1070), 4, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + aux_sym_struct_body_repeat1, + ACTIONS(2631), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [20137] = 39, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2540), 1, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(2542), 1, - anon_sym_DOT, - ACTIONS(2546), 1, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, anon_sym_PLUS, - ACTIONS(2548), 1, + ACTIONS(1849), 1, anon_sym_DASH, - ACTIONS(2550), 1, + ACTIONS(1851), 1, anon_sym_LT_LT, - ACTIONS(2552), 1, + ACTIONS(1853), 1, anon_sym_GT_GT, - ACTIONS(2554), 1, + ACTIONS(1855), 1, anon_sym_STAR, - ACTIONS(2560), 1, + ACTIONS(1857), 1, + anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, anon_sym_SLASH, - ACTIONS(2562), 1, + ACTIONS(1871), 1, anon_sym_PERCENT, - ACTIONS(2564), 1, + ACTIONS(1873), 1, anon_sym_PIPE, - ACTIONS(2566), 1, + ACTIONS(1875), 1, anon_sym_CARET, - ACTIONS(2568), 1, + ACTIONS(1877), 1, anon_sym_EQ_EQ, - ACTIONS(2570), 1, + ACTIONS(1879), 1, anon_sym_BANG_EQ, - ACTIONS(2572), 1, + ACTIONS(1881), 1, anon_sym_GT, - ACTIONS(2574), 1, + ACTIONS(1883), 1, anon_sym_GT_EQ, - ACTIONS(2576), 1, + ACTIONS(1885), 1, anon_sym_LT_EQ, - ACTIONS(2578), 1, + ACTIONS(1887), 1, anon_sym_LT, - STATE(303), 1, - sym__assignment_op, - ACTIONS(2590), 2, + ACTIONS(1889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, anon_sym_EQ, - anon_sym_QMARK, - STATE(1097), 3, + ACTIONS(2519), 1, + anon_sym_DOT, + ACTIONS(2637), 1, + anon_sym_SEMI, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(1071), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2588), 22, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + ACTIONS(1981), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142503,47 +137045,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_GT_RBRACK, - [16048] = 6, + [20266] = 39, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1098), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2598), 15, - anon_sym_EQ, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, anon_sym_AMP, - anon_sym_DOT, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, anon_sym_PLUS, + ACTIONS(1849), 1, anon_sym_DASH, + ACTIONS(1851), 1, anon_sym_LT_LT, + ACTIONS(1853), 1, anon_sym_GT_GT, + ACTIONS(1855), 1, anon_sym_STAR, + ACTIONS(1857), 1, anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, anon_sym_SLASH, + ACTIONS(1871), 1, anon_sym_PERCENT, + ACTIONS(1873), 1, anon_sym_PIPE, + ACTIONS(1875), 1, anon_sym_CARET, + ACTIONS(1877), 1, + anon_sym_EQ_EQ, + ACTIONS(1879), 1, + anon_sym_BANG_EQ, + ACTIONS(1881), 1, anon_sym_GT, + ACTIONS(1883), 1, + anon_sym_GT_EQ, + ACTIONS(1885), 1, + anon_sym_LT_EQ, + ACTIONS(1887), 1, anon_sym_LT, - ACTIONS(2596), 27, - anon_sym_COMMA, - anon_sym_GT_RPAREN, + ACTIONS(1889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(2519), 1, + anon_sym_DOT, + ACTIONS(2639), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(1072), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1981), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142554,56 +137135,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_GT_RBRACK, - [16109] = 8, + [20395] = 39, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2269), 1, - anon_sym_QMARK, - STATE(1099), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2261), 7, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_GT_RBRACK, - ACTIONS(2366), 14, - anon_sym_EQ, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, anon_sym_AMP, - anon_sym_DOT, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, anon_sym_PLUS, + ACTIONS(1849), 1, anon_sym_DASH, + ACTIONS(1851), 1, anon_sym_LT_LT, + ACTIONS(1853), 1, anon_sym_GT_GT, + ACTIONS(1855), 1, anon_sym_STAR, + ACTIONS(1857), 1, + anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, anon_sym_SLASH, + ACTIONS(1871), 1, anon_sym_PERCENT, + ACTIONS(1873), 1, anon_sym_PIPE, + ACTIONS(1875), 1, anon_sym_CARET, + ACTIONS(1877), 1, + anon_sym_EQ_EQ, + ACTIONS(1879), 1, + anon_sym_BANG_EQ, + ACTIONS(1881), 1, anon_sym_GT, + ACTIONS(1883), 1, + anon_sym_GT_EQ, + ACTIONS(1885), 1, + anon_sym_LT_EQ, + ACTIONS(1887), 1, anon_sym_LT, - ACTIONS(2364), 20, - anon_sym_COMMA, - anon_sym_GT_RPAREN, + ACTIONS(1889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(2519), 1, + anon_sym_DOT, + ACTIONS(2641), 1, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_AMP_AMP, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(1073), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1981), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142614,52 +137225,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - [16174] = 7, + [20524] = 39, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1100), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2261), 7, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_GT_RBRACK, - ACTIONS(2366), 15, - anon_sym_EQ, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, anon_sym_AMP, - anon_sym_DOT, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, anon_sym_PLUS, + ACTIONS(1849), 1, anon_sym_DASH, + ACTIONS(1851), 1, anon_sym_LT_LT, + ACTIONS(1853), 1, anon_sym_GT_GT, + ACTIONS(1855), 1, anon_sym_STAR, + ACTIONS(1857), 1, anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, anon_sym_SLASH, + ACTIONS(1871), 1, anon_sym_PERCENT, + ACTIONS(1873), 1, anon_sym_PIPE, + ACTIONS(1875), 1, anon_sym_CARET, + ACTIONS(1877), 1, + anon_sym_EQ_EQ, + ACTIONS(1879), 1, + anon_sym_BANG_EQ, + ACTIONS(1881), 1, anon_sym_GT, + ACTIONS(1883), 1, + anon_sym_GT_EQ, + ACTIONS(1885), 1, + anon_sym_LT_EQ, + ACTIONS(1887), 1, anon_sym_LT, - ACTIONS(2364), 20, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_AMP_AMP, + ACTIONS(1889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(2519), 1, + anon_sym_DOT, + ACTIONS(2643), 1, + anon_sym_SEMI, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(1074), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1981), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142670,53 +137315,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - [16237] = 11, + [20653] = 39, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2542), 1, - anon_sym_DOT, - ACTIONS(2554), 1, - anon_sym_STAR, - ACTIONS(2560), 1, - anon_sym_SLASH, - ACTIONS(2562), 1, - anon_sym_PERCENT, - STATE(303), 1, - sym__assignment_op, - STATE(1101), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2590), 11, - anon_sym_EQ, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, anon_sym_AMP, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, anon_sym_PLUS, + ACTIONS(1849), 1, anon_sym_DASH, + ACTIONS(1851), 1, anon_sym_LT_LT, + ACTIONS(1853), 1, anon_sym_GT_GT, + ACTIONS(1855), 1, + anon_sym_STAR, + ACTIONS(1857), 1, anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, + anon_sym_SLASH, + ACTIONS(1871), 1, + anon_sym_PERCENT, + ACTIONS(1873), 1, anon_sym_PIPE, + ACTIONS(1875), 1, anon_sym_CARET, + ACTIONS(1877), 1, + anon_sym_EQ_EQ, + ACTIONS(1879), 1, + anon_sym_BANG_EQ, + ACTIONS(1881), 1, anon_sym_GT, + ACTIONS(1883), 1, + anon_sym_GT_EQ, + ACTIONS(1885), 1, + anon_sym_LT_EQ, + ACTIONS(1887), 1, anon_sym_LT, - ACTIONS(2588), 26, - anon_sym_COMMA, + ACTIONS(1889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(2519), 1, + anon_sym_DOT, + ACTIONS(2645), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(1075), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1981), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142727,56 +137405,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_GT_RBRACK, - [16308] = 11, + [20782] = 39, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2542), 1, - anon_sym_DOT, - ACTIONS(2554), 1, - anon_sym_STAR, - ACTIONS(2560), 1, - anon_sym_SLASH, - ACTIONS(2562), 1, - anon_sym_PERCENT, - STATE(303), 1, - sym__assignment_op, - STATE(1102), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2590), 11, - anon_sym_EQ, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, anon_sym_AMP, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, anon_sym_PLUS, + ACTIONS(1849), 1, anon_sym_DASH, + ACTIONS(1851), 1, anon_sym_LT_LT, + ACTIONS(1853), 1, anon_sym_GT_GT, + ACTIONS(1855), 1, + anon_sym_STAR, + ACTIONS(1857), 1, anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, + anon_sym_SLASH, + ACTIONS(1871), 1, + anon_sym_PERCENT, + ACTIONS(1873), 1, anon_sym_PIPE, + ACTIONS(1875), 1, anon_sym_CARET, + ACTIONS(1877), 1, + anon_sym_EQ_EQ, + ACTIONS(1879), 1, + anon_sym_BANG_EQ, + ACTIONS(1881), 1, anon_sym_GT, + ACTIONS(1883), 1, + anon_sym_GT_EQ, + ACTIONS(1885), 1, + anon_sym_LT_EQ, + ACTIONS(1887), 1, anon_sym_LT, - ACTIONS(2588), 26, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + ACTIONS(1889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(2519), 1, + anon_sym_DOT, + ACTIONS(2647), 1, + anon_sym_GT_RBRACK, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(1076), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1981), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142787,53 +137495,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_GT_RBRACK, - [16379] = 8, + [20911] = 39, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2542), 1, - anon_sym_DOT, - STATE(303), 1, - sym__assignment_op, - STATE(1103), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2590), 14, - anon_sym_EQ, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, anon_sym_AMP, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, anon_sym_PLUS, + ACTIONS(1849), 1, anon_sym_DASH, + ACTIONS(1851), 1, anon_sym_LT_LT, + ACTIONS(1853), 1, anon_sym_GT_GT, + ACTIONS(1855), 1, anon_sym_STAR, + ACTIONS(1857), 1, anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, anon_sym_SLASH, + ACTIONS(1871), 1, anon_sym_PERCENT, + ACTIONS(1873), 1, anon_sym_PIPE, + ACTIONS(1875), 1, anon_sym_CARET, + ACTIONS(1877), 1, + anon_sym_EQ_EQ, + ACTIONS(1879), 1, + anon_sym_BANG_EQ, + ACTIONS(1881), 1, anon_sym_GT, + ACTIONS(1883), 1, + anon_sym_GT_EQ, + ACTIONS(1885), 1, + anon_sym_LT_EQ, + ACTIONS(1887), 1, anon_sym_LT, - ACTIONS(2588), 26, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(2519), 1, + anon_sym_DOT, + ACTIONS(2649), 1, anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(1077), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1981), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142844,52 +137585,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_GT_RBRACK, - [16444] = 7, + [21040] = 39, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2269), 1, - anon_sym_QMARK, - STATE(1104), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2265), 14, - anon_sym_EQ, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, anon_sym_AMP, - anon_sym_DOT, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, anon_sym_PLUS, + ACTIONS(1849), 1, anon_sym_DASH, + ACTIONS(1851), 1, anon_sym_LT_LT, + ACTIONS(1853), 1, anon_sym_GT_GT, + ACTIONS(1855), 1, anon_sym_STAR, + ACTIONS(1857), 1, + anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, anon_sym_SLASH, + ACTIONS(1871), 1, anon_sym_PERCENT, + ACTIONS(1873), 1, anon_sym_PIPE, + ACTIONS(1875), 1, anon_sym_CARET, + ACTIONS(1877), 1, + anon_sym_EQ_EQ, + ACTIONS(1879), 1, + anon_sym_BANG_EQ, + ACTIONS(1881), 1, anon_sym_GT, + ACTIONS(1883), 1, + anon_sym_GT_EQ, + ACTIONS(1885), 1, + anon_sym_LT_EQ, + ACTIONS(1887), 1, anon_sym_LT, - ACTIONS(2261), 27, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(1889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(2519), 1, + anon_sym_DOT, + ACTIONS(2651), 1, anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(1078), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1981), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142900,53 +137675,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_GT_RBRACK, - [16507] = 8, + [21169] = 39, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2542), 1, - anon_sym_DOT, - STATE(303), 1, - sym__assignment_op, - STATE(1105), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2602), 14, - anon_sym_EQ, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, anon_sym_AMP, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, anon_sym_PLUS, + ACTIONS(1849), 1, anon_sym_DASH, + ACTIONS(1851), 1, anon_sym_LT_LT, + ACTIONS(1853), 1, anon_sym_GT_GT, + ACTIONS(1855), 1, anon_sym_STAR, + ACTIONS(1857), 1, anon_sym_QMARK, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, + anon_sym_SLASH, + ACTIONS(1871), 1, + anon_sym_PERCENT, + ACTIONS(1873), 1, + anon_sym_PIPE, + ACTIONS(1875), 1, anon_sym_CARET, + ACTIONS(1877), 1, + anon_sym_EQ_EQ, + ACTIONS(1879), 1, + anon_sym_BANG_EQ, + ACTIONS(1881), 1, anon_sym_GT, + ACTIONS(1883), 1, + anon_sym_GT_EQ, + ACTIONS(1885), 1, + anon_sym_LT_EQ, + ACTIONS(1887), 1, anon_sym_LT, - ACTIONS(2600), 26, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(1889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(2519), 1, + anon_sym_DOT, + ACTIONS(2653), 1, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(1079), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1981), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142957,51 +137765,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_GT_RBRACK, - [16572] = 6, + [21298] = 39, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1106), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2265), 15, - anon_sym_EQ, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, anon_sym_AMP, - anon_sym_DOT, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, anon_sym_PLUS, + ACTIONS(1849), 1, anon_sym_DASH, + ACTIONS(1851), 1, anon_sym_LT_LT, + ACTIONS(1853), 1, anon_sym_GT_GT, + ACTIONS(1855), 1, anon_sym_STAR, + ACTIONS(1857), 1, anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, anon_sym_SLASH, + ACTIONS(1871), 1, anon_sym_PERCENT, + ACTIONS(1873), 1, anon_sym_PIPE, + ACTIONS(1875), 1, anon_sym_CARET, + ACTIONS(1877), 1, + anon_sym_EQ_EQ, + ACTIONS(1879), 1, + anon_sym_BANG_EQ, + ACTIONS(1881), 1, anon_sym_GT, + ACTIONS(1883), 1, + anon_sym_GT_EQ, + ACTIONS(1885), 1, + anon_sym_LT_EQ, + ACTIONS(1887), 1, anon_sym_LT, - ACTIONS(2261), 27, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(1889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(2519), 1, + anon_sym_DOT, + ACTIONS(2655), 1, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(1080), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1981), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143012,108 +137855,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_GT_RBRACK, - [16633] = 6, + [21427] = 39, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1107), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2366), 15, - anon_sym_EQ, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, anon_sym_AMP, - anon_sym_DOT, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, anon_sym_PLUS, + ACTIONS(1849), 1, anon_sym_DASH, + ACTIONS(1851), 1, anon_sym_LT_LT, + ACTIONS(1853), 1, anon_sym_GT_GT, + ACTIONS(1855), 1, anon_sym_STAR, + ACTIONS(1857), 1, anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, anon_sym_SLASH, + ACTIONS(1871), 1, anon_sym_PERCENT, + ACTIONS(1873), 1, anon_sym_PIPE, + ACTIONS(1875), 1, anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2364), 27, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, + ACTIONS(1877), 1, anon_sym_EQ_EQ, + ACTIONS(1879), 1, anon_sym_BANG_EQ, + ACTIONS(1881), 1, + anon_sym_GT, + ACTIONS(1883), 1, anon_sym_GT_EQ, + ACTIONS(1885), 1, anon_sym_LT_EQ, + ACTIONS(1887), 1, + anon_sym_LT, + ACTIONS(1889), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_RBRACK, - [16694] = 8, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2542), 1, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(2519), 1, anon_sym_DOT, - STATE(303), 1, + ACTIONS(2657), 1, + anon_sym_RPAREN, + STATE(293), 1, sym__assignment_op, - STATE(1108), 3, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(1081), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2590), 14, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2588), 26, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + ACTIONS(1981), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143124,53 +137945,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_GT_RBRACK, - [16759] = 8, + [21556] = 39, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2542), 1, - anon_sym_DOT, - STATE(303), 1, - sym__assignment_op, - STATE(1109), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2590), 14, - anon_sym_EQ, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, anon_sym_AMP, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, anon_sym_PLUS, + ACTIONS(1849), 1, anon_sym_DASH, + ACTIONS(1851), 1, anon_sym_LT_LT, + ACTIONS(1853), 1, anon_sym_GT_GT, + ACTIONS(1855), 1, anon_sym_STAR, + ACTIONS(1857), 1, anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, anon_sym_SLASH, + ACTIONS(1871), 1, anon_sym_PERCENT, + ACTIONS(1873), 1, anon_sym_PIPE, + ACTIONS(1875), 1, anon_sym_CARET, + ACTIONS(1877), 1, + anon_sym_EQ_EQ, + ACTIONS(1879), 1, + anon_sym_BANG_EQ, + ACTIONS(1881), 1, anon_sym_GT, + ACTIONS(1883), 1, + anon_sym_GT_EQ, + ACTIONS(1885), 1, + anon_sym_LT_EQ, + ACTIONS(1887), 1, anon_sym_LT, - ACTIONS(2588), 26, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(1889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(2519), 1, + anon_sym_DOT, + ACTIONS(2659), 1, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(1082), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1981), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143181,50 +138035,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_GT_RBRACK, - [16824] = 7, + [21685] = 39, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2604), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1110), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2345), 16, - anon_sym_EQ, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, anon_sym_LPAREN, + ACTIONS(1839), 1, anon_sym_AMP, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, anon_sym_PLUS, + ACTIONS(1849), 1, anon_sym_DASH, + ACTIONS(1851), 1, anon_sym_LT_LT, + ACTIONS(1853), 1, anon_sym_GT_GT, + ACTIONS(1855), 1, anon_sym_STAR, + ACTIONS(1857), 1, anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, anon_sym_SLASH, + ACTIONS(1871), 1, anon_sym_PERCENT, + ACTIONS(1873), 1, anon_sym_PIPE, + ACTIONS(1875), 1, anon_sym_CARET, + ACTIONS(1877), 1, + anon_sym_EQ_EQ, + ACTIONS(1879), 1, + anon_sym_BANG_EQ, + ACTIONS(1881), 1, anon_sym_GT, + ACTIONS(1883), 1, + anon_sym_GT_EQ, + ACTIONS(1885), 1, + anon_sym_LT_EQ, + ACTIONS(1887), 1, anon_sym_LT, - ACTIONS(2343), 24, - anon_sym_LPAREN_LT, - anon_sym_LBRACK, + ACTIONS(1889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(2519), 1, anon_sym_DOT, - anon_sym_AMP_AMP, + ACTIONS(2661), 1, + anon_sym_GT_RBRACK, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(1083), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1981), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143235,52 +138125,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_BANG_BANG, - [16887] = 7, + [21814] = 39, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2606), 1, - anon_sym_COLON, - STATE(1111), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2223), 16, - anon_sym_EQ, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, anon_sym_LPAREN, + ACTIONS(1839), 1, anon_sym_AMP, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, anon_sym_PLUS, + ACTIONS(1849), 1, anon_sym_DASH, + ACTIONS(1851), 1, anon_sym_LT_LT, + ACTIONS(1853), 1, anon_sym_GT_GT, + ACTIONS(1855), 1, anon_sym_STAR, + ACTIONS(1857), 1, anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, anon_sym_SLASH, + ACTIONS(1871), 1, anon_sym_PERCENT, + ACTIONS(1873), 1, anon_sym_PIPE, + ACTIONS(1875), 1, anon_sym_CARET, + ACTIONS(1877), 1, + anon_sym_EQ_EQ, + ACTIONS(1879), 1, + anon_sym_BANG_EQ, + ACTIONS(1881), 1, anon_sym_GT, + ACTIONS(1883), 1, + anon_sym_GT_EQ, + ACTIONS(1885), 1, + anon_sym_LT_EQ, + ACTIONS(1887), 1, anon_sym_LT, - ACTIONS(2221), 25, - anon_sym_LPAREN_LT, - anon_sym_LBRACK, - anon_sym_SEMI, + ACTIONS(1889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(2519), 1, anon_sym_DOT, - anon_sym_AMP_AMP, + ACTIONS(2663), 1, + anon_sym_RPAREN, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(1084), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1981), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143291,117 +138215,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_BANG_BANG, - [16950] = 8, + [21943] = 39, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2219), 1, - anon_sym_COLON_COLON, - ACTIONS(2608), 1, - anon_sym_EQ, - STATE(1112), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2223), 15, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, anon_sym_LPAREN, + ACTIONS(1839), 1, anon_sym_AMP, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, anon_sym_PLUS, + ACTIONS(1849), 1, anon_sym_DASH, + ACTIONS(1851), 1, anon_sym_LT_LT, + ACTIONS(1853), 1, anon_sym_GT_GT, + ACTIONS(1855), 1, anon_sym_STAR, + ACTIONS(1857), 1, anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, anon_sym_SLASH, + ACTIONS(1871), 1, anon_sym_PERCENT, + ACTIONS(1873), 1, anon_sym_PIPE, + ACTIONS(1875), 1, anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2221), 25, - anon_sym_LPAREN_LT, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(1877), 1, anon_sym_EQ_EQ, + ACTIONS(1879), 1, anon_sym_BANG_EQ, + ACTIONS(1881), 1, + anon_sym_GT, + ACTIONS(1883), 1, anon_sym_GT_EQ, + ACTIONS(1885), 1, anon_sym_LT_EQ, + ACTIONS(1887), 1, + anon_sym_LT, + ACTIONS(1889), 1, anon_sym_PIPE_PIPE, + ACTIONS(1891), 1, anon_sym_BANG_BANG, - [17015] = 13, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2542), 1, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(2519), 1, anon_sym_DOT, - ACTIONS(2550), 1, - anon_sym_LT_LT, - ACTIONS(2552), 1, - anon_sym_GT_GT, - ACTIONS(2554), 1, - anon_sym_STAR, - ACTIONS(2560), 1, - anon_sym_SLASH, - ACTIONS(2562), 1, - anon_sym_PERCENT, - STATE(303), 1, + ACTIONS(2665), 1, + anon_sym_RBRACK, + STATE(293), 1, sym__assignment_op, - STATE(1113), 3, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(1085), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2590), 9, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2588), 26, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + ACTIONS(1981), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143412,58 +138305,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_GT_RBRACK, - [17090] = 13, + [22072] = 39, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2542), 1, - anon_sym_DOT, - ACTIONS(2550), 1, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, + anon_sym_AMP, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, + anon_sym_PLUS, + ACTIONS(1849), 1, + anon_sym_DASH, + ACTIONS(1851), 1, anon_sym_LT_LT, - ACTIONS(2552), 1, + ACTIONS(1853), 1, anon_sym_GT_GT, - ACTIONS(2554), 1, + ACTIONS(1855), 1, anon_sym_STAR, - ACTIONS(2560), 1, + ACTIONS(1857), 1, + anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, anon_sym_SLASH, - ACTIONS(2562), 1, + ACTIONS(1871), 1, anon_sym_PERCENT, - STATE(303), 1, - sym__assignment_op, - STATE(1114), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2590), 9, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_QMARK, + ACTIONS(1873), 1, anon_sym_PIPE, + ACTIONS(1875), 1, anon_sym_CARET, + ACTIONS(1877), 1, + anon_sym_EQ_EQ, + ACTIONS(1879), 1, + anon_sym_BANG_EQ, + ACTIONS(1881), 1, anon_sym_GT, + ACTIONS(1883), 1, + anon_sym_GT_EQ, + ACTIONS(1885), 1, + anon_sym_LT_EQ, + ACTIONS(1887), 1, anon_sym_LT, - ACTIONS(2588), 26, - anon_sym_COMMA, + ACTIONS(1889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(2519), 1, + anon_sym_DOT, + ACTIONS(2667), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(1086), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1981), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143474,63 +138395,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_GT_RBRACK, - [17165] = 18, + [22201] = 39, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2540), 1, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(2542), 1, - anon_sym_DOT, - ACTIONS(2546), 1, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, anon_sym_PLUS, - ACTIONS(2548), 1, + ACTIONS(1849), 1, anon_sym_DASH, - ACTIONS(2550), 1, + ACTIONS(1851), 1, anon_sym_LT_LT, - ACTIONS(2552), 1, + ACTIONS(1853), 1, anon_sym_GT_GT, - ACTIONS(2554), 1, + ACTIONS(1855), 1, anon_sym_STAR, - ACTIONS(2560), 1, + ACTIONS(1857), 1, + anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, anon_sym_SLASH, - ACTIONS(2562), 1, + ACTIONS(1871), 1, anon_sym_PERCENT, - ACTIONS(2564), 1, + ACTIONS(1873), 1, anon_sym_PIPE, - ACTIONS(2566), 1, + ACTIONS(1875), 1, anon_sym_CARET, - STATE(303), 1, + ACTIONS(1877), 1, + anon_sym_EQ_EQ, + ACTIONS(1879), 1, + anon_sym_BANG_EQ, + ACTIONS(1881), 1, + anon_sym_GT, + ACTIONS(1883), 1, + anon_sym_GT_EQ, + ACTIONS(1885), 1, + anon_sym_LT_EQ, + ACTIONS(1887), 1, + anon_sym_LT, + ACTIONS(1889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(2519), 1, + anon_sym_DOT, + ACTIONS(2669), 1, + anon_sym_SEMI, + STATE(293), 1, sym__assignment_op, - STATE(1115), 3, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(1087), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2590), 4, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2588), 26, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + ACTIONS(1981), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143541,130 +138485,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_GT_RBRACK, - [17250] = 18, + [22330] = 22, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2540), 1, + ACTIONS(77), 1, + sym_type_ident, + ACTIONS(2547), 1, + sym_ident, + ACTIONS(2549), 1, + sym_ct_ident, + ACTIONS(2551), 1, + sym_hash_ident, + ACTIONS(2553), 1, + sym_ct_type_ident, + ACTIONS(2557), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2559), 1, anon_sym_AMP, - ACTIONS(2542), 1, - anon_sym_DOT, - ACTIONS(2546), 1, - anon_sym_PLUS, - ACTIONS(2548), 1, - anon_sym_DASH, - ACTIONS(2550), 1, - anon_sym_LT_LT, - ACTIONS(2552), 1, - anon_sym_GT_GT, - ACTIONS(2554), 1, - anon_sym_STAR, - ACTIONS(2560), 1, - anon_sym_SLASH, - ACTIONS(2562), 1, - anon_sym_PERCENT, - ACTIONS(2564), 1, - anon_sym_PIPE, - ACTIONS(2566), 1, - anon_sym_CARET, - STATE(303), 1, - sym__assignment_op, - STATE(1116), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2590), 4, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2588), 26, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_GT_RBRACK, - [17335] = 18, + STATE(1199), 1, + sym_base_type, + STATE(1200), 1, + sym_module_type_ident, + STATE(1208), 1, + sym_base_type_name, + STATE(1328), 1, + sym_type, + STATE(1368), 1, + sym__parameter, + STATE(1421), 1, + sym_module_resolution, + STATE(1475), 1, + sym_parameter, + STATE(1558), 1, + aux_sym__module_path, + STATE(2158), 1, + sym__parameters, + STATE(1088), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(171), 4, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(137), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [22425] = 39, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2540), 1, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(2542), 1, - anon_sym_DOT, - ACTIONS(2546), 1, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, anon_sym_PLUS, - ACTIONS(2548), 1, + ACTIONS(1849), 1, anon_sym_DASH, - ACTIONS(2550), 1, + ACTIONS(1851), 1, anon_sym_LT_LT, - ACTIONS(2552), 1, + ACTIONS(1853), 1, anon_sym_GT_GT, - ACTIONS(2554), 1, + ACTIONS(1855), 1, anon_sym_STAR, - ACTIONS(2560), 1, + ACTIONS(1857), 1, + anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, anon_sym_SLASH, - ACTIONS(2562), 1, + ACTIONS(1871), 1, anon_sym_PERCENT, - ACTIONS(2564), 1, + ACTIONS(1873), 1, anon_sym_PIPE, - ACTIONS(2566), 1, + ACTIONS(1875), 1, anon_sym_CARET, - STATE(303), 1, + ACTIONS(1877), 1, + anon_sym_EQ_EQ, + ACTIONS(1879), 1, + anon_sym_BANG_EQ, + ACTIONS(1881), 1, + anon_sym_GT, + ACTIONS(1883), 1, + anon_sym_GT_EQ, + ACTIONS(1885), 1, + anon_sym_LT_EQ, + ACTIONS(1887), 1, + anon_sym_LT, + ACTIONS(1889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(2519), 1, + anon_sym_DOT, + ACTIONS(2671), 1, + anon_sym_SEMI, + STATE(293), 1, sym__assignment_op, - STATE(1117), 3, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(1089), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2590), 4, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2588), 26, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + ACTIONS(1981), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143675,63 +138648,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_GT_RBRACK, - [17420] = 18, + [22554] = 39, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2540), 1, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(2542), 1, - anon_sym_DOT, - ACTIONS(2546), 1, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, anon_sym_PLUS, - ACTIONS(2548), 1, + ACTIONS(1849), 1, anon_sym_DASH, - ACTIONS(2550), 1, + ACTIONS(1851), 1, anon_sym_LT_LT, - ACTIONS(2552), 1, + ACTIONS(1853), 1, anon_sym_GT_GT, - ACTIONS(2554), 1, + ACTIONS(1855), 1, anon_sym_STAR, - ACTIONS(2560), 1, + ACTIONS(1857), 1, + anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, anon_sym_SLASH, - ACTIONS(2562), 1, + ACTIONS(1871), 1, anon_sym_PERCENT, - ACTIONS(2564), 1, + ACTIONS(1873), 1, anon_sym_PIPE, - ACTIONS(2566), 1, + ACTIONS(1875), 1, anon_sym_CARET, - STATE(303), 1, + ACTIONS(1877), 1, + anon_sym_EQ_EQ, + ACTIONS(1879), 1, + anon_sym_BANG_EQ, + ACTIONS(1881), 1, + anon_sym_GT, + ACTIONS(1883), 1, + anon_sym_GT_EQ, + ACTIONS(1885), 1, + anon_sym_LT_EQ, + ACTIONS(1887), 1, + anon_sym_LT, + ACTIONS(1889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(2519), 1, + anon_sym_DOT, + ACTIONS(2673), 1, + anon_sym_RPAREN, + STATE(293), 1, sym__assignment_op, - STATE(1118), 3, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(1090), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2590), 4, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2588), 26, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + ACTIONS(1981), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143742,63 +138738,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_GT_RBRACK, - [17505] = 18, + [22683] = 39, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2540), 1, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(2542), 1, - anon_sym_DOT, - ACTIONS(2546), 1, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, anon_sym_PLUS, - ACTIONS(2548), 1, + ACTIONS(1849), 1, anon_sym_DASH, - ACTIONS(2550), 1, + ACTIONS(1851), 1, anon_sym_LT_LT, - ACTIONS(2552), 1, + ACTIONS(1853), 1, anon_sym_GT_GT, - ACTIONS(2554), 1, + ACTIONS(1855), 1, anon_sym_STAR, - ACTIONS(2560), 1, + ACTIONS(1857), 1, + anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, anon_sym_SLASH, - ACTIONS(2562), 1, + ACTIONS(1871), 1, anon_sym_PERCENT, - ACTIONS(2564), 1, + ACTIONS(1873), 1, anon_sym_PIPE, - ACTIONS(2566), 1, + ACTIONS(1875), 1, anon_sym_CARET, - STATE(303), 1, + ACTIONS(1877), 1, + anon_sym_EQ_EQ, + ACTIONS(1879), 1, + anon_sym_BANG_EQ, + ACTIONS(1881), 1, + anon_sym_GT, + ACTIONS(1883), 1, + anon_sym_GT_EQ, + ACTIONS(1885), 1, + anon_sym_LT_EQ, + ACTIONS(1887), 1, + anon_sym_LT, + ACTIONS(1889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(2519), 1, + anon_sym_DOT, + ACTIONS(2675), 1, + anon_sym_SEMI, + STATE(293), 1, sym__assignment_op, - STATE(1119), 3, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(1091), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2590), 4, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2588), 26, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + ACTIONS(1981), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143809,59 +138828,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_GT_RBRACK, - [17590] = 11, + [22812] = 39, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2269), 1, - anon_sym_QMARK, - ACTIONS(2261), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - ACTIONS(2267), 2, - anon_sym_LPAREN, - anon_sym_BANG, - ACTIONS(2534), 3, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - STATE(1120), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2263), 5, + ACTIONS(1833), 1, anon_sym_LPAREN_LT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - ACTIONS(2366), 13, - anon_sym_EQ, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, anon_sym_AMP, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, anon_sym_PLUS, + ACTIONS(1849), 1, anon_sym_DASH, + ACTIONS(1851), 1, anon_sym_LT_LT, + ACTIONS(1853), 1, anon_sym_GT_GT, + ACTIONS(1855), 1, anon_sym_STAR, + ACTIONS(1857), 1, + anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, anon_sym_SLASH, + ACTIONS(1871), 1, anon_sym_PERCENT, + ACTIONS(1873), 1, anon_sym_PIPE, + ACTIONS(1875), 1, anon_sym_CARET, + ACTIONS(1877), 1, + anon_sym_EQ_EQ, + ACTIONS(1879), 1, + anon_sym_BANG_EQ, + ACTIONS(1881), 1, anon_sym_GT, + ACTIONS(1883), 1, + anon_sym_GT_EQ, + ACTIONS(1885), 1, + anon_sym_LT_EQ, + ACTIONS(1887), 1, anon_sym_LT, - ACTIONS(2364), 16, + ACTIONS(1889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(2519), 1, anon_sym_DOT, + ACTIONS(2677), 1, + anon_sym_SEMI, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(1092), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1981), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143872,60 +138918,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - [17661] = 18, + [22941] = 39, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2540), 1, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(2542), 1, - anon_sym_DOT, - ACTIONS(2546), 1, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, anon_sym_PLUS, - ACTIONS(2548), 1, + ACTIONS(1849), 1, anon_sym_DASH, - ACTIONS(2550), 1, + ACTIONS(1851), 1, anon_sym_LT_LT, - ACTIONS(2552), 1, + ACTIONS(1853), 1, anon_sym_GT_GT, - ACTIONS(2554), 1, + ACTIONS(1855), 1, anon_sym_STAR, - ACTIONS(2560), 1, + ACTIONS(1857), 1, + anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, anon_sym_SLASH, - ACTIONS(2562), 1, + ACTIONS(1871), 1, anon_sym_PERCENT, - ACTIONS(2564), 1, + ACTIONS(1873), 1, anon_sym_PIPE, - ACTIONS(2566), 1, + ACTIONS(1875), 1, anon_sym_CARET, - STATE(303), 1, + ACTIONS(1877), 1, + anon_sym_EQ_EQ, + ACTIONS(1879), 1, + anon_sym_BANG_EQ, + ACTIONS(1881), 1, + anon_sym_GT, + ACTIONS(1883), 1, + anon_sym_GT_EQ, + ACTIONS(1885), 1, + anon_sym_LT_EQ, + ACTIONS(1887), 1, + anon_sym_LT, + ACTIONS(1889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(2519), 1, + anon_sym_DOT, + ACTIONS(2565), 1, + anon_sym_SEMI, + STATE(293), 1, sym__assignment_op, - STATE(1121), 3, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(1093), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2590), 4, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2588), 26, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + ACTIONS(1981), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143936,30 +139008,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_GT_RBRACK, - [17746] = 7, + [23070] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2610), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1122), 3, + ACTIONS(2348), 1, + anon_sym_COLON_COLON, + ACTIONS(2679), 1, + anon_sym_EQ, + STATE(1094), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2291), 16, - anon_sym_EQ, + ACTIONS(2352), 15, anon_sym_LPAREN, anon_sym_AMP, anon_sym_PLUS, @@ -143975,9 +139039,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2289), 24, + ACTIONS(2350), 27, + anon_sym_COMMA, anon_sym_LPAREN_LT, + anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_DOT, anon_sym_AMP_AMP, anon_sym_PLUS_EQ, @@ -144000,53 +139067,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PIPE_PIPE, anon_sym_BANG_BANG, - [17809] = 16, + [23137] = 39, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2540), 1, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(2542), 1, - anon_sym_DOT, - ACTIONS(2550), 1, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, + anon_sym_PLUS, + ACTIONS(1849), 1, + anon_sym_DASH, + ACTIONS(1851), 1, anon_sym_LT_LT, - ACTIONS(2552), 1, + ACTIONS(1853), 1, anon_sym_GT_GT, - ACTIONS(2554), 1, + ACTIONS(1855), 1, anon_sym_STAR, - ACTIONS(2560), 1, + ACTIONS(1857), 1, + anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, anon_sym_SLASH, - ACTIONS(2562), 1, + ACTIONS(1871), 1, anon_sym_PERCENT, - ACTIONS(2564), 1, + ACTIONS(1873), 1, anon_sym_PIPE, - ACTIONS(2566), 1, + ACTIONS(1875), 1, anon_sym_CARET, - STATE(303), 1, + ACTIONS(1877), 1, + anon_sym_EQ_EQ, + ACTIONS(1879), 1, + anon_sym_BANG_EQ, + ACTIONS(1881), 1, + anon_sym_GT, + ACTIONS(1883), 1, + anon_sym_GT_EQ, + ACTIONS(1885), 1, + anon_sym_LT_EQ, + ACTIONS(1887), 1, + anon_sym_LT, + ACTIONS(1889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(2519), 1, + anon_sym_DOT, + ACTIONS(2681), 1, + anon_sym_SEMI, + STATE(293), 1, sym__assignment_op, - STATE(1123), 3, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(1095), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2590), 6, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2588), 26, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + ACTIONS(1981), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144057,51 +139157,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_GT_RBRACK, - [17890] = 8, + [23266] = 39, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2219), 1, - anon_sym_COLON_COLON, - ACTIONS(2612), 1, - anon_sym_EQ, - STATE(1124), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2223), 15, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, anon_sym_LPAREN, + ACTIONS(1839), 1, anon_sym_AMP, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, anon_sym_PLUS, + ACTIONS(1849), 1, anon_sym_DASH, + ACTIONS(1851), 1, anon_sym_LT_LT, + ACTIONS(1853), 1, anon_sym_GT_GT, + ACTIONS(1855), 1, anon_sym_STAR, + ACTIONS(1857), 1, anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, anon_sym_SLASH, + ACTIONS(1871), 1, anon_sym_PERCENT, + ACTIONS(1873), 1, anon_sym_PIPE, + ACTIONS(1875), 1, anon_sym_CARET, + ACTIONS(1877), 1, + anon_sym_EQ_EQ, + ACTIONS(1879), 1, + anon_sym_BANG_EQ, + ACTIONS(1881), 1, anon_sym_GT, + ACTIONS(1883), 1, + anon_sym_GT_EQ, + ACTIONS(1885), 1, + anon_sym_LT_EQ, + ACTIONS(1887), 1, anon_sym_LT, - ACTIONS(2221), 25, - anon_sym_LPAREN_LT, - anon_sym_RPAREN, - anon_sym_LBRACK, + ACTIONS(1889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(2519), 1, anon_sym_DOT, - anon_sym_AMP_AMP, + ACTIONS(2683), 1, + anon_sym_RPAREN, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(1096), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1981), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144112,76 +139247,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_BANG_BANG, - [17955] = 25, + [23395] = 39, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2540), 1, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(2542), 1, - anon_sym_DOT, - ACTIONS(2544), 1, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1845), 1, anon_sym_AMP_AMP, - ACTIONS(2546), 1, + ACTIONS(1847), 1, anon_sym_PLUS, - ACTIONS(2548), 1, + ACTIONS(1849), 1, anon_sym_DASH, - ACTIONS(2550), 1, + ACTIONS(1851), 1, anon_sym_LT_LT, - ACTIONS(2552), 1, + ACTIONS(1853), 1, anon_sym_GT_GT, - ACTIONS(2554), 1, + ACTIONS(1855), 1, anon_sym_STAR, - ACTIONS(2560), 1, + ACTIONS(1857), 1, + anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, anon_sym_SLASH, - ACTIONS(2562), 1, + ACTIONS(1871), 1, anon_sym_PERCENT, - ACTIONS(2564), 1, + ACTIONS(1873), 1, anon_sym_PIPE, - ACTIONS(2566), 1, + ACTIONS(1875), 1, anon_sym_CARET, - ACTIONS(2568), 1, + ACTIONS(1877), 1, anon_sym_EQ_EQ, - ACTIONS(2570), 1, + ACTIONS(1879), 1, anon_sym_BANG_EQ, - ACTIONS(2572), 1, + ACTIONS(1881), 1, anon_sym_GT, - ACTIONS(2574), 1, + ACTIONS(1883), 1, anon_sym_GT_EQ, - ACTIONS(2576), 1, + ACTIONS(1885), 1, anon_sym_LT_EQ, - ACTIONS(2578), 1, + ACTIONS(1887), 1, anon_sym_LT, - STATE(303), 1, - sym__assignment_op, - ACTIONS(2590), 2, + ACTIONS(1889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, anon_sym_EQ, - anon_sym_QMARK, - STATE(1125), 3, + ACTIONS(2519), 1, + anon_sym_DOT, + ACTIONS(2685), 1, + anon_sym_SEMI, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(1097), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2588), 21, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, + ACTIONS(1981), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144192,47 +139337,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_GT_RBRACK, - [18054] = 6, + [23524] = 39, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1126), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2616), 15, - anon_sym_EQ, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, anon_sym_AMP, - anon_sym_DOT, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, anon_sym_PLUS, + ACTIONS(1849), 1, anon_sym_DASH, + ACTIONS(1851), 1, anon_sym_LT_LT, + ACTIONS(1853), 1, anon_sym_GT_GT, + ACTIONS(1855), 1, anon_sym_STAR, + ACTIONS(1857), 1, anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, anon_sym_SLASH, + ACTIONS(1871), 1, anon_sym_PERCENT, + ACTIONS(1873), 1, anon_sym_PIPE, + ACTIONS(1875), 1, anon_sym_CARET, + ACTIONS(1877), 1, + anon_sym_EQ_EQ, + ACTIONS(1879), 1, + anon_sym_BANG_EQ, + ACTIONS(1881), 1, anon_sym_GT, + ACTIONS(1883), 1, + anon_sym_GT_EQ, + ACTIONS(1885), 1, + anon_sym_LT_EQ, + ACTIONS(1887), 1, anon_sym_LT, - ACTIONS(2614), 27, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(1889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(2519), 1, + anon_sym_DOT, + ACTIONS(2687), 1, anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(1098), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1981), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144243,122 +139427,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_GT_RBRACK, - [18115] = 19, + [23653] = 39, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(13), 1, - sym_type_ident, - ACTIONS(15), 1, - sym_ct_type_ident, - ACTIONS(57), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2473), 1, - sym_ident, - ACTIONS(2620), 1, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, anon_sym_LPAREN, - STATE(1008), 1, - sym_module_type_ident, - STATE(1025), 1, - sym_base_type, - STATE(1043), 1, - sym_base_type_name, - STATE(1503), 1, - sym_type, - STATE(1537), 1, - sym_module_resolution, - STATE(1588), 1, - sym_enum_param_list, - STATE(1627), 1, - aux_sym__module_path, - ACTIONS(59), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(2618), 3, - sym_at_ident, - sym_at_type_ident, - anon_sym_LBRACE, - STATE(1127), 3, + ACTIONS(1839), 1, + anon_sym_AMP, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, + anon_sym_PLUS, + ACTIONS(1849), 1, + anon_sym_DASH, + ACTIONS(1851), 1, + anon_sym_LT_LT, + ACTIONS(1853), 1, + anon_sym_GT_GT, + ACTIONS(1855), 1, + anon_sym_STAR, + ACTIONS(1857), 1, + anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, + anon_sym_SLASH, + ACTIONS(1871), 1, + anon_sym_PERCENT, + ACTIONS(1873), 1, + anon_sym_PIPE, + ACTIONS(1875), 1, + anon_sym_CARET, + ACTIONS(1877), 1, + anon_sym_EQ_EQ, + ACTIONS(1879), 1, + anon_sym_BANG_EQ, + ACTIONS(1881), 1, + anon_sym_GT, + ACTIONS(1883), 1, + anon_sym_GT_EQ, + ACTIONS(1885), 1, + anon_sym_LT_EQ, + ACTIONS(1887), 1, + anon_sym_LT, + ACTIONS(1889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(2519), 1, + anon_sym_DOT, + ACTIONS(2689), 1, + anon_sym_COMMA, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(1099), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(45), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [18202] = 8, + ACTIONS(1981), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [23782] = 39, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2626), 1, - anon_sym_QMARK_COLON, - ACTIONS(2628), 1, - anon_sym_QMARK_QMARK, - STATE(1128), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2624), 15, - anon_sym_EQ, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, anon_sym_AMP, - anon_sym_DOT, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, anon_sym_PLUS, + ACTIONS(1849), 1, anon_sym_DASH, + ACTIONS(1851), 1, anon_sym_LT_LT, + ACTIONS(1853), 1, anon_sym_GT_GT, + ACTIONS(1855), 1, anon_sym_STAR, + ACTIONS(1857), 1, anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, anon_sym_SLASH, + ACTIONS(1871), 1, anon_sym_PERCENT, + ACTIONS(1873), 1, anon_sym_PIPE, + ACTIONS(1875), 1, anon_sym_CARET, + ACTIONS(1877), 1, + anon_sym_EQ_EQ, + ACTIONS(1879), 1, + anon_sym_BANG_EQ, + ACTIONS(1881), 1, anon_sym_GT, + ACTIONS(1883), 1, + anon_sym_GT_EQ, + ACTIONS(1885), 1, + anon_sym_LT_EQ, + ACTIONS(1887), 1, anon_sym_LT, - ACTIONS(2622), 24, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(1889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(2519), 1, + anon_sym_DOT, + ACTIONS(2691), 1, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(1100), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1981), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144369,52 +139607,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_GT_RBRACK, - [18266] = 8, + [23911] = 39, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2626), 1, - anon_sym_QMARK_COLON, - ACTIONS(2628), 1, - anon_sym_QMARK_QMARK, - STATE(1129), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2632), 15, - anon_sym_EQ, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, anon_sym_AMP, - anon_sym_DOT, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, anon_sym_PLUS, + ACTIONS(1849), 1, anon_sym_DASH, + ACTIONS(1851), 1, anon_sym_LT_LT, + ACTIONS(1853), 1, anon_sym_GT_GT, + ACTIONS(1855), 1, anon_sym_STAR, + ACTIONS(1857), 1, anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, anon_sym_SLASH, + ACTIONS(1871), 1, anon_sym_PERCENT, + ACTIONS(1873), 1, anon_sym_PIPE, + ACTIONS(1875), 1, anon_sym_CARET, + ACTIONS(1877), 1, + anon_sym_EQ_EQ, + ACTIONS(1879), 1, + anon_sym_BANG_EQ, + ACTIONS(1881), 1, anon_sym_GT, + ACTIONS(1883), 1, + anon_sym_GT_EQ, + ACTIONS(1885), 1, + anon_sym_LT_EQ, + ACTIONS(1887), 1, anon_sym_LT, - ACTIONS(2630), 24, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(1889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(2519), 1, + anon_sym_DOT, + ACTIONS(2693), 1, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(1101), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1981), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144425,123 +139697,228 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [24040] = 39, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, + anon_sym_AMP, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, + anon_sym_PLUS, + ACTIONS(1849), 1, + anon_sym_DASH, + ACTIONS(1851), 1, + anon_sym_LT_LT, + ACTIONS(1853), 1, + anon_sym_GT_GT, + ACTIONS(1855), 1, + anon_sym_STAR, + ACTIONS(1857), 1, + anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, + anon_sym_SLASH, + ACTIONS(1871), 1, + anon_sym_PERCENT, + ACTIONS(1873), 1, + anon_sym_PIPE, + ACTIONS(1875), 1, + anon_sym_CARET, + ACTIONS(1877), 1, anon_sym_EQ_EQ, + ACTIONS(1879), 1, anon_sym_BANG_EQ, + ACTIONS(1881), 1, + anon_sym_GT, + ACTIONS(1883), 1, anon_sym_GT_EQ, + ACTIONS(1885), 1, anon_sym_LT_EQ, + ACTIONS(1887), 1, + anon_sym_LT, + ACTIONS(1889), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_RBRACK, - [18330] = 20, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(2519), 1, + anon_sym_DOT, + ACTIONS(2695), 1, + anon_sym_SEMI, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(1102), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1981), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [24169] = 39, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(13), 1, - sym_type_ident, - ACTIONS(15), 1, - sym_ct_type_ident, - ACTIONS(57), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2634), 1, - sym_ident, - ACTIONS(2636), 1, - sym_at_ident, - STATE(1008), 1, - sym_module_type_ident, - STATE(1025), 1, - sym_base_type, - STATE(1043), 1, - sym_base_type_name, - STATE(1152), 1, - sym__type_optional, - STATE(1229), 1, - sym_type, - STATE(1537), 1, - sym_module_resolution, - STATE(1627), 1, - aux_sym__module_path, - STATE(2025), 1, - sym_macro_header, - STATE(2122), 1, - sym__func_macro_name, - ACTIONS(59), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1130), 3, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, + anon_sym_AMP, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, + anon_sym_PLUS, + ACTIONS(1849), 1, + anon_sym_DASH, + ACTIONS(1851), 1, + anon_sym_LT_LT, + ACTIONS(1853), 1, + anon_sym_GT_GT, + ACTIONS(1855), 1, + anon_sym_STAR, + ACTIONS(1857), 1, + anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, + anon_sym_SLASH, + ACTIONS(1871), 1, + anon_sym_PERCENT, + ACTIONS(1873), 1, + anon_sym_PIPE, + ACTIONS(1875), 1, + anon_sym_CARET, + ACTIONS(1877), 1, + anon_sym_EQ_EQ, + ACTIONS(1879), 1, + anon_sym_BANG_EQ, + ACTIONS(1881), 1, + anon_sym_GT, + ACTIONS(1883), 1, + anon_sym_GT_EQ, + ACTIONS(1885), 1, + anon_sym_LT_EQ, + ACTIONS(1887), 1, + anon_sym_LT, + ACTIONS(1889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(2519), 1, + anon_sym_DOT, + ACTIONS(2697), 1, + anon_sym_RPAREN, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(1103), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(45), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [18418] = 11, + ACTIONS(1981), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [24298] = 12, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2281), 1, - anon_sym_QMARK, - ACTIONS(2277), 2, - anon_sym_LPAREN, - anon_sym_BANG, - ACTIONS(2279), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - ACTIONS(2524), 3, - anon_sym_RPAREN, + ACTIONS(89), 1, anon_sym_LBRACK, + ACTIONS(2699), 1, + anon_sym_RPAREN, + ACTIONS(2701), 1, anon_sym_DOT, - STATE(1131), 3, + STATE(1345), 1, + sym_param_path_element, + STATE(1423), 1, + aux_sym_param_path_repeat1, + STATE(1922), 1, + sym_param_path, + STATE(1104), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2273), 4, - anon_sym_LPAREN_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - ACTIONS(2275), 13, + ACTIONS(2427), 16, anon_sym_EQ, + anon_sym_LPAREN, anon_sym_AMP, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2271), 16, + ACTIONS(2425), 22, + anon_sym_LPAREN_LT, anon_sym_AMP_AMP, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -144553,50 +139930,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_PIPE_PIPE, - [18488] = 7, + anon_sym_BANG_BANG, + [24373] = 39, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2261), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(1132), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2366), 15, - anon_sym_EQ, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, anon_sym_AMP, - anon_sym_DOT, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, anon_sym_PLUS, + ACTIONS(1849), 1, anon_sym_DASH, + ACTIONS(1851), 1, anon_sym_LT_LT, + ACTIONS(1853), 1, anon_sym_GT_GT, + ACTIONS(1855), 1, anon_sym_STAR, + ACTIONS(1857), 1, anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, anon_sym_SLASH, + ACTIONS(1871), 1, anon_sym_PERCENT, + ACTIONS(1873), 1, anon_sym_PIPE, + ACTIONS(1875), 1, anon_sym_CARET, + ACTIONS(1877), 1, + anon_sym_EQ_EQ, + ACTIONS(1879), 1, + anon_sym_BANG_EQ, + ACTIONS(1881), 1, anon_sym_GT, + ACTIONS(1883), 1, + anon_sym_GT_EQ, + ACTIONS(1885), 1, + anon_sym_LT_EQ, + ACTIONS(1887), 1, anon_sym_LT, - ACTIONS(2364), 24, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(2519), 1, + anon_sym_DOT, + ACTIONS(2703), 1, anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(1105), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1981), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144607,51 +140030,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_GT_RBRACK, - [18550] = 8, + [24502] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2269), 1, - anon_sym_QMARK, - ACTIONS(2261), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(1133), 3, + ACTIONS(2707), 1, + anon_sym_EQ, + STATE(1106), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2366), 14, - anon_sym_EQ, - anon_sym_AMP, + ACTIONS(2705), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_DOT, + ACTIONS(2427), 15, + anon_sym_LPAREN, + anon_sym_AMP, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2364), 24, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, + ACTIONS(2425), 22, + anon_sym_LPAREN_LT, anon_sym_AMP_AMP, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -144663,52 +140079,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_PIPE_PIPE, - anon_sym_GT_RBRACK, - [18614] = 8, + anon_sym_BANG_BANG, + [24569] = 39, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2626), 1, - anon_sym_QMARK_COLON, - ACTIONS(2628), 1, - anon_sym_QMARK_QMARK, - STATE(1134), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2624), 15, - anon_sym_EQ, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, anon_sym_AMP, - anon_sym_DOT, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, anon_sym_PLUS, + ACTIONS(1849), 1, anon_sym_DASH, + ACTIONS(1851), 1, anon_sym_LT_LT, + ACTIONS(1853), 1, anon_sym_GT_GT, + ACTIONS(1855), 1, anon_sym_STAR, + ACTIONS(1857), 1, anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, anon_sym_SLASH, + ACTIONS(1871), 1, anon_sym_PERCENT, + ACTIONS(1873), 1, anon_sym_PIPE, + ACTIONS(1875), 1, anon_sym_CARET, + ACTIONS(1877), 1, + anon_sym_EQ_EQ, + ACTIONS(1879), 1, + anon_sym_BANG_EQ, + ACTIONS(1881), 1, anon_sym_GT, + ACTIONS(1883), 1, + anon_sym_GT_EQ, + ACTIONS(1885), 1, + anon_sym_LT_EQ, + ACTIONS(1887), 1, anon_sym_LT, - ACTIONS(2622), 24, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(1889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(2519), 1, + anon_sym_DOT, + ACTIONS(2709), 1, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(1107), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1981), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144719,5102 +140179,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [24698] = 39, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, + anon_sym_AMP, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, + anon_sym_PLUS, + ACTIONS(1849), 1, + anon_sym_DASH, + ACTIONS(1851), 1, + anon_sym_LT_LT, + ACTIONS(1853), 1, + anon_sym_GT_GT, + ACTIONS(1855), 1, + anon_sym_STAR, + ACTIONS(1857), 1, + anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, + anon_sym_SLASH, + ACTIONS(1871), 1, + anon_sym_PERCENT, + ACTIONS(1873), 1, + anon_sym_PIPE, + ACTIONS(1875), 1, + anon_sym_CARET, + ACTIONS(1877), 1, anon_sym_EQ_EQ, + ACTIONS(1879), 1, anon_sym_BANG_EQ, + ACTIONS(1881), 1, + anon_sym_GT, + ACTIONS(1883), 1, anon_sym_GT_EQ, + ACTIONS(1885), 1, anon_sym_LT_EQ, + ACTIONS(1887), 1, + anon_sym_LT, + ACTIONS(1889), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_RBRACK, - [18678] = 18, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(2519), 1, + anon_sym_DOT, + ACTIONS(2711), 1, + anon_sym_SEMI, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(1108), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1981), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [24827] = 39, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(13), 1, - sym_type_ident, - ACTIONS(15), 1, - sym_ct_type_ident, - ACTIONS(57), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2473), 1, - sym_ident, - ACTIONS(2638), 1, - anon_sym_fn, - STATE(1008), 1, - sym_module_type_ident, - STATE(1025), 1, - sym_base_type, - STATE(1043), 1, - sym_base_type_name, - STATE(1398), 1, - sym_typedef_type, - STATE(1537), 1, - sym_module_resolution, - STATE(1627), 1, - aux_sym__module_path, - STATE(1615), 2, - sym_func_typedef, - sym_type, - ACTIONS(59), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1135), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(45), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [18761] = 19, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(13), 1, - sym_type_ident, - ACTIONS(15), 1, - sym_ct_type_ident, - ACTIONS(57), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2640), 1, - sym_ident, - ACTIONS(2642), 1, - anon_sym_AMP, - STATE(1008), 1, - sym_module_type_ident, - STATE(1025), 1, - sym_base_type, - STATE(1043), 1, - sym_base_type_name, - STATE(1167), 1, - sym_type, - STATE(1537), 1, - sym_module_resolution, - STATE(1627), 1, - aux_sym__module_path, - STATE(2018), 1, - sym_foreach_var, - STATE(2019), 1, - sym__type_optional, - ACTIONS(59), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1136), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(45), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [18846] = 18, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(13), 1, - sym_type_ident, - ACTIONS(15), 1, - sym_ct_type_ident, - ACTIONS(57), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2473), 1, - sym_ident, - ACTIONS(2638), 1, - anon_sym_fn, - STATE(1008), 1, - sym_module_type_ident, - STATE(1025), 1, - sym_base_type, - STATE(1043), 1, - sym_base_type_name, - STATE(1404), 1, - sym_typedef_type, - STATE(1537), 1, - sym_module_resolution, - STATE(1627), 1, - aux_sym__module_path, - STATE(1615), 2, - sym_func_typedef, - sym_type, - ACTIONS(59), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1137), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(45), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [18929] = 19, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(13), 1, - sym_type_ident, - ACTIONS(15), 1, - sym_ct_type_ident, - ACTIONS(57), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2640), 1, - sym_ident, - ACTIONS(2642), 1, - anon_sym_AMP, - STATE(1008), 1, - sym_module_type_ident, - STATE(1025), 1, - sym_base_type, - STATE(1043), 1, - sym_base_type_name, - STATE(1167), 1, - sym_type, - STATE(1537), 1, - sym_module_resolution, - STATE(1627), 1, - aux_sym__module_path, - STATE(2019), 1, - sym__type_optional, - STATE(2317), 1, - sym_foreach_var, - ACTIONS(59), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1138), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(45), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [19014] = 19, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(13), 1, - sym_type_ident, - ACTIONS(15), 1, - sym_ct_type_ident, - ACTIONS(57), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2473), 1, - sym_ident, - ACTIONS(2644), 1, - anon_sym_LPAREN, - STATE(1008), 1, - sym_module_type_ident, - STATE(1025), 1, - sym_base_type, - STATE(1043), 1, - sym_base_type_name, - STATE(1167), 1, - sym_type, - STATE(1373), 1, - sym_fn_parameter_list, - STATE(1537), 1, - sym_module_resolution, - STATE(1627), 1, - aux_sym__module_path, - STATE(2015), 1, - sym__type_optional, - ACTIONS(59), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1139), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(45), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [19099] = 18, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(13), 1, - sym_type_ident, - ACTIONS(15), 1, - sym_ct_type_ident, - ACTIONS(57), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2473), 1, - sym_ident, - ACTIONS(2646), 1, - anon_sym_RBRACE, - STATE(1008), 1, - sym_module_type_ident, - STATE(1043), 1, - sym_base_type_name, - STATE(1150), 1, - aux_sym_bitstruct_body_repeat1, - STATE(1290), 1, - sym_bitstruct_member_declaration, - STATE(1537), 1, - sym_module_resolution, - STATE(1627), 1, - aux_sym__module_path, - STATE(2117), 1, - sym_base_type, - ACTIONS(59), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1140), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(45), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [19181] = 18, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(79), 1, - sym_type_ident, - ACTIONS(2448), 1, - sym_ct_type_ident, - ACTIONS(2473), 1, - sym_ident, - ACTIONS(2648), 1, - sym_const_ident, - ACTIONS(2650), 1, - anon_sym_DOLLARtypeof, - STATE(1304), 1, - sym_base_type, - STATE(1306), 1, - sym_module_type_ident, - STATE(1309), 1, - sym_base_type_name, - STATE(1537), 1, - sym_module_resolution, - STATE(1580), 1, - sym_type, - STATE(1632), 1, - aux_sym__module_path, - STATE(2255), 1, - sym__type_optional, - ACTIONS(2652), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1141), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(139), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [19263] = 18, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(13), 1, - sym_type_ident, - ACTIONS(15), 1, - sym_ct_type_ident, - ACTIONS(57), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2473), 1, - sym_ident, - ACTIONS(2654), 1, - anon_sym_RBRACE, - STATE(1008), 1, - sym_module_type_ident, - STATE(1043), 1, - sym_base_type_name, - STATE(1156), 1, - aux_sym_bitstruct_body_repeat1, - STATE(1290), 1, - sym_bitstruct_member_declaration, - STATE(1537), 1, - sym_module_resolution, - STATE(1627), 1, - aux_sym__module_path, - STATE(2117), 1, - sym_base_type, - ACTIONS(59), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1142), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(45), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [19345] = 18, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(79), 1, - sym_type_ident, - ACTIONS(2448), 1, - sym_ct_type_ident, - ACTIONS(2473), 1, - sym_ident, - ACTIONS(2650), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2656), 1, - sym_const_ident, - STATE(1304), 1, - sym_base_type, - STATE(1306), 1, - sym_module_type_ident, - STATE(1309), 1, - sym_base_type_name, - STATE(1537), 1, - sym_module_resolution, - STATE(1580), 1, - sym_type, - STATE(1632), 1, - aux_sym__module_path, - STATE(2284), 1, - sym__type_optional, - ACTIONS(2652), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1143), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(139), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [19427] = 18, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(13), 1, - sym_type_ident, - ACTIONS(15), 1, - sym_ct_type_ident, - ACTIONS(57), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2473), 1, - sym_ident, - ACTIONS(2658), 1, - anon_sym_RPAREN, - STATE(1008), 1, - sym_module_type_ident, - STATE(1025), 1, - sym_base_type, - STATE(1043), 1, - sym_base_type_name, - STATE(1537), 1, - sym_module_resolution, - STATE(1627), 1, - aux_sym__module_path, - STATE(1871), 1, - sym_enum_param_declaration, - STATE(2264), 1, - sym_type, - ACTIONS(59), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1144), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(45), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [19509] = 18, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(79), 1, - sym_type_ident, - ACTIONS(2448), 1, - sym_ct_type_ident, - ACTIONS(2473), 1, - sym_ident, - ACTIONS(2650), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2660), 1, - sym_const_ident, - STATE(1304), 1, - sym_base_type, - STATE(1306), 1, - sym_module_type_ident, - STATE(1309), 1, - sym_base_type_name, - STATE(1537), 1, - sym_module_resolution, - STATE(1580), 1, - sym_type, - STATE(1632), 1, - aux_sym__module_path, - STATE(2159), 1, - sym__type_optional, - ACTIONS(2652), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1145), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(139), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [19591] = 18, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(13), 1, - sym_type_ident, - ACTIONS(15), 1, - sym_ct_type_ident, - ACTIONS(57), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2473), 1, - sym_ident, - STATE(1008), 1, - sym_module_type_ident, - STATE(1025), 1, - sym_base_type, - STATE(1043), 1, - sym_base_type_name, - STATE(1151), 1, - sym__type_optional, - STATE(1167), 1, - sym_type, - STATE(1537), 1, - sym_module_resolution, - STATE(1627), 1, - aux_sym__module_path, - STATE(1945), 1, - sym_func_header, - ACTIONS(59), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1146), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(45), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [19673] = 18, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(79), 1, - sym_type_ident, - ACTIONS(2448), 1, - sym_ct_type_ident, - ACTIONS(2473), 1, - sym_ident, - ACTIONS(2650), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2662), 1, - sym_const_ident, - STATE(1304), 1, - sym_base_type, - STATE(1306), 1, - sym_module_type_ident, - STATE(1309), 1, - sym_base_type_name, - STATE(1537), 1, - sym_module_resolution, - STATE(1580), 1, - sym_type, - STATE(1632), 1, - aux_sym__module_path, - STATE(2342), 1, - sym__type_optional, - ACTIONS(2652), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1147), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(139), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [19755] = 18, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(79), 1, - sym_type_ident, - ACTIONS(2448), 1, - sym_ct_type_ident, - ACTIONS(2473), 1, - sym_ident, - ACTIONS(2650), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2664), 1, - sym_const_ident, - STATE(1304), 1, - sym_base_type, - STATE(1306), 1, - sym_module_type_ident, - STATE(1309), 1, - sym_base_type_name, - STATE(1537), 1, - sym_module_resolution, - STATE(1580), 1, - sym_type, - STATE(1632), 1, - aux_sym__module_path, - STATE(2160), 1, - sym__type_optional, - ACTIONS(2652), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1148), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(139), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [19837] = 18, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(79), 1, - sym_type_ident, - ACTIONS(2448), 1, - sym_ct_type_ident, - ACTIONS(2473), 1, - sym_ident, - ACTIONS(2650), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2666), 1, - sym_const_ident, - STATE(1304), 1, - sym_base_type, - STATE(1306), 1, - sym_module_type_ident, - STATE(1309), 1, - sym_base_type_name, - STATE(1537), 1, - sym_module_resolution, - STATE(1580), 1, - sym_type, - STATE(1632), 1, - aux_sym__module_path, - STATE(2064), 1, - sym__type_optional, - ACTIONS(2652), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1149), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(139), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [19919] = 18, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(13), 1, - sym_type_ident, - ACTIONS(15), 1, - sym_ct_type_ident, - ACTIONS(57), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2473), 1, - sym_ident, - ACTIONS(2668), 1, - anon_sym_RBRACE, - STATE(1008), 1, - sym_module_type_ident, - STATE(1043), 1, - sym_base_type_name, - STATE(1153), 1, - aux_sym_bitstruct_body_repeat1, - STATE(1290), 1, - sym_bitstruct_member_declaration, - STATE(1537), 1, - sym_module_resolution, - STATE(1627), 1, - aux_sym__module_path, - STATE(2117), 1, - sym_base_type, - ACTIONS(59), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1150), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(45), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [20001] = 18, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(13), 1, - sym_type_ident, - ACTIONS(15), 1, - sym_ct_type_ident, - ACTIONS(57), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2634), 1, - sym_ident, - ACTIONS(2636), 1, - sym_at_ident, - STATE(1008), 1, - sym_module_type_ident, - STATE(1025), 1, - sym_base_type, - STATE(1043), 1, - sym_base_type_name, - STATE(1537), 1, - sym_module_resolution, - STATE(1627), 1, - aux_sym__module_path, - STATE(2280), 1, - sym__func_macro_name, - STATE(2290), 1, - sym_type, - ACTIONS(59), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1151), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(45), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [20083] = 18, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(13), 1, - sym_type_ident, - ACTIONS(15), 1, - sym_ct_type_ident, - ACTIONS(57), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2634), 1, - sym_ident, - ACTIONS(2636), 1, - sym_at_ident, - STATE(1008), 1, - sym_module_type_ident, - STATE(1025), 1, - sym_base_type, - STATE(1043), 1, - sym_base_type_name, - STATE(1537), 1, - sym_module_resolution, - STATE(1627), 1, - aux_sym__module_path, - STATE(2066), 1, - sym_type, - STATE(2222), 1, - sym__func_macro_name, - ACTIONS(59), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1152), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(45), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [20165] = 17, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2670), 1, - sym_ident, - ACTIONS(2673), 1, - sym_type_ident, - ACTIONS(2676), 1, - sym_ct_type_ident, - ACTIONS(2679), 1, - anon_sym_RBRACE, - ACTIONS(2684), 1, - anon_sym_DOLLARtypeof, - STATE(1008), 1, - sym_module_type_ident, - STATE(1043), 1, - sym_base_type_name, - STATE(1290), 1, - sym_bitstruct_member_declaration, - STATE(1537), 1, - sym_module_resolution, - STATE(1627), 1, - aux_sym__module_path, - STATE(2117), 1, - sym_base_type, - ACTIONS(2687), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1153), 4, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - aux_sym_bitstruct_body_repeat1, - ACTIONS(2681), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [20245] = 18, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(13), 1, - sym_type_ident, - ACTIONS(15), 1, - sym_ct_type_ident, - ACTIONS(57), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2473), 1, - sym_ident, - STATE(1008), 1, - sym_module_type_ident, - STATE(1025), 1, - sym_base_type, - STATE(1043), 1, - sym_base_type_name, - STATE(1151), 1, - sym__type_optional, - STATE(1167), 1, - sym_type, - STATE(1537), 1, - sym_module_resolution, - STATE(1627), 1, - aux_sym__module_path, - STATE(1974), 1, - sym_func_header, - ACTIONS(59), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1154), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(45), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [20327] = 18, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(79), 1, - sym_type_ident, - ACTIONS(2448), 1, - sym_ct_type_ident, - ACTIONS(2473), 1, - sym_ident, - ACTIONS(2650), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2690), 1, - sym_const_ident, - STATE(1304), 1, - sym_base_type, - STATE(1306), 1, - sym_module_type_ident, - STATE(1309), 1, - sym_base_type_name, - STATE(1537), 1, - sym_module_resolution, - STATE(1580), 1, - sym_type, - STATE(1632), 1, - aux_sym__module_path, - STATE(2313), 1, - sym__type_optional, - ACTIONS(2652), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1155), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(139), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [20409] = 18, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(13), 1, - sym_type_ident, - ACTIONS(15), 1, - sym_ct_type_ident, - ACTIONS(57), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2473), 1, - sym_ident, - ACTIONS(2692), 1, - anon_sym_RBRACE, - STATE(1008), 1, - sym_module_type_ident, - STATE(1043), 1, - sym_base_type_name, - STATE(1153), 1, - aux_sym_bitstruct_body_repeat1, - STATE(1290), 1, - sym_bitstruct_member_declaration, - STATE(1537), 1, - sym_module_resolution, - STATE(1627), 1, - aux_sym__module_path, - STATE(2117), 1, - sym_base_type, - ACTIONS(59), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1156), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(45), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [20491] = 17, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(13), 1, - sym_type_ident, - ACTIONS(15), 1, - sym_ct_type_ident, - ACTIONS(57), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2473), 1, - sym_ident, - STATE(1008), 1, - sym_module_type_ident, - STATE(1025), 1, - sym_base_type, - STATE(1043), 1, - sym_base_type_name, - STATE(1167), 1, - sym_type, - STATE(1537), 1, - sym_module_resolution, - STATE(1627), 1, - aux_sym__module_path, - STATE(1781), 1, - sym__type_optional, - ACTIONS(59), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1157), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(45), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [20570] = 17, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(79), 1, - sym_type_ident, - ACTIONS(2448), 1, - sym_ct_type_ident, - ACTIONS(2473), 1, - sym_ident, - ACTIONS(2650), 1, - anon_sym_DOLLARtypeof, - STATE(1304), 1, - sym_base_type, - STATE(1306), 1, - sym_module_type_ident, - STATE(1309), 1, - sym_base_type_name, - STATE(1537), 1, - sym_module_resolution, - STATE(1567), 1, - sym__type_optional, - STATE(1580), 1, - sym_type, - STATE(1632), 1, - aux_sym__module_path, - ACTIONS(2652), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1158), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(139), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [20649] = 24, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2694), 1, - anon_sym_AMP, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2698), 1, - anon_sym_PLUS, - ACTIONS(2700), 1, - anon_sym_DASH, - ACTIONS(2702), 1, - anon_sym_LT_LT, - ACTIONS(2704), 1, - anon_sym_GT_GT, - ACTIONS(2706), 1, - anon_sym_STAR, - ACTIONS(2708), 1, - anon_sym_SLASH, - ACTIONS(2710), 1, - anon_sym_PERCENT, - ACTIONS(2712), 1, - anon_sym_PIPE, - ACTIONS(2714), 1, - anon_sym_CARET, - ACTIONS(2716), 1, - anon_sym_EQ_EQ, - ACTIONS(2718), 1, - anon_sym_BANG_EQ, - ACTIONS(2720), 1, - anon_sym_GT, - ACTIONS(2722), 1, - anon_sym_GT_EQ, - ACTIONS(2724), 1, - anon_sym_LT_EQ, - ACTIONS(2726), 1, - anon_sym_LT, - STATE(288), 1, - sym__assignment_op, - ACTIONS(2590), 2, - anon_sym_EQ, - anon_sym_QMARK, - STATE(1159), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2588), 18, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - [20742] = 25, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2694), 1, - anon_sym_AMP, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2698), 1, - anon_sym_PLUS, - ACTIONS(2700), 1, - anon_sym_DASH, - ACTIONS(2702), 1, - anon_sym_LT_LT, - ACTIONS(2704), 1, - anon_sym_GT_GT, - ACTIONS(2706), 1, - anon_sym_STAR, - ACTIONS(2708), 1, - anon_sym_SLASH, - ACTIONS(2710), 1, - anon_sym_PERCENT, - ACTIONS(2712), 1, - anon_sym_PIPE, - ACTIONS(2714), 1, - anon_sym_CARET, - ACTIONS(2716), 1, - anon_sym_EQ_EQ, - ACTIONS(2718), 1, - anon_sym_BANG_EQ, - ACTIONS(2720), 1, - anon_sym_GT, - ACTIONS(2722), 1, - anon_sym_GT_EQ, - ACTIONS(2724), 1, - anon_sym_LT_EQ, - ACTIONS(2726), 1, - anon_sym_LT, - ACTIONS(2728), 1, - anon_sym_AMP_AMP, - STATE(288), 1, - sym__assignment_op, - ACTIONS(2590), 2, - anon_sym_EQ, - anon_sym_QMARK, - STATE(1160), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2588), 17, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - [20837] = 18, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2694), 1, - anon_sym_AMP, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2698), 1, - anon_sym_PLUS, - ACTIONS(2700), 1, - anon_sym_DASH, - ACTIONS(2702), 1, - anon_sym_LT_LT, - ACTIONS(2704), 1, - anon_sym_GT_GT, - ACTIONS(2706), 1, - anon_sym_STAR, - ACTIONS(2708), 1, - anon_sym_SLASH, - ACTIONS(2710), 1, - anon_sym_PERCENT, - ACTIONS(2712), 1, - anon_sym_PIPE, - ACTIONS(2714), 1, - anon_sym_CARET, - STATE(288), 1, - sym__assignment_op, - STATE(1161), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2590), 4, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2588), 22, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - [20918] = 18, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2694), 1, - anon_sym_AMP, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2698), 1, - anon_sym_PLUS, - ACTIONS(2700), 1, - anon_sym_DASH, - ACTIONS(2702), 1, - anon_sym_LT_LT, - ACTIONS(2704), 1, - anon_sym_GT_GT, - ACTIONS(2706), 1, - anon_sym_STAR, - ACTIONS(2708), 1, - anon_sym_SLASH, - ACTIONS(2710), 1, - anon_sym_PERCENT, - ACTIONS(2712), 1, - anon_sym_PIPE, - ACTIONS(2714), 1, - anon_sym_CARET, - STATE(288), 1, - sym__assignment_op, - STATE(1162), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2590), 4, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2588), 22, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - [20999] = 17, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(79), 1, - sym_type_ident, - ACTIONS(2448), 1, - sym_ct_type_ident, - ACTIONS(2473), 1, - sym_ident, - ACTIONS(2650), 1, - anon_sym_DOLLARtypeof, - STATE(1304), 1, - sym_base_type, - STATE(1306), 1, - sym_module_type_ident, - STATE(1309), 1, - sym_base_type_name, - STATE(1537), 1, - sym_module_resolution, - STATE(1559), 1, - sym__type_optional, - STATE(1580), 1, - sym_type, - STATE(1632), 1, - aux_sym__module_path, - ACTIONS(2652), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1163), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(139), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [21078] = 17, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(13), 1, - sym_type_ident, - ACTIONS(15), 1, - sym_ct_type_ident, - ACTIONS(57), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2473), 1, - sym_ident, - ACTIONS(2730), 1, - anon_sym_inline, - STATE(1008), 1, - sym_module_type_ident, - STATE(1025), 1, - sym_base_type, - STATE(1043), 1, - sym_base_type_name, - STATE(1537), 1, - sym_module_resolution, - STATE(1627), 1, - aux_sym__module_path, - STATE(2100), 1, - sym_type, - ACTIONS(59), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1164), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(45), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [21157] = 17, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(13), 1, - sym_type_ident, - ACTIONS(15), 1, - sym_ct_type_ident, - ACTIONS(57), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2732), 1, - sym_ident, - STATE(1008), 1, - sym_module_type_ident, - STATE(1025), 1, - sym_base_type, - STATE(1043), 1, - sym_base_type_name, - STATE(1167), 1, - sym_type, - STATE(1537), 1, - sym_module_resolution, - STATE(1627), 1, - aux_sym__module_path, - STATE(2187), 1, - sym__type_optional, - ACTIONS(59), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1165), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(45), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [21236] = 8, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2696), 1, - anon_sym_DOT, - STATE(288), 1, - sym__assignment_op, - STATE(1166), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2586), 14, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2584), 22, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - [21297] = 7, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2738), 1, - anon_sym_BANG, - STATE(1167), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2736), 12, - sym_at_ident, - sym_type_ident, - sym_ct_type_ident, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(2734), 25, - sym_ident, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [21356] = 18, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2694), 1, - anon_sym_AMP, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2698), 1, - anon_sym_PLUS, - ACTIONS(2700), 1, - anon_sym_DASH, - ACTIONS(2702), 1, - anon_sym_LT_LT, - ACTIONS(2704), 1, - anon_sym_GT_GT, - ACTIONS(2706), 1, - anon_sym_STAR, - ACTIONS(2708), 1, - anon_sym_SLASH, - ACTIONS(2710), 1, - anon_sym_PERCENT, - ACTIONS(2712), 1, - anon_sym_PIPE, - ACTIONS(2714), 1, - anon_sym_CARET, - STATE(288), 1, - sym__assignment_op, - STATE(1168), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2590), 4, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2588), 22, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - [21437] = 17, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(79), 1, - sym_type_ident, - ACTIONS(2448), 1, - sym_ct_type_ident, - ACTIONS(2473), 1, - sym_ident, - ACTIONS(2650), 1, - anon_sym_DOLLARtypeof, - STATE(1304), 1, - sym_base_type, - STATE(1306), 1, - sym_module_type_ident, - STATE(1309), 1, - sym_base_type_name, - STATE(1537), 1, - sym_module_resolution, - STATE(1580), 1, - sym_type, - STATE(1632), 1, - aux_sym__module_path, - STATE(1652), 1, - sym__type_optional, - ACTIONS(2652), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1169), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(139), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [21516] = 17, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(79), 1, - sym_type_ident, - ACTIONS(2448), 1, - sym_ct_type_ident, - ACTIONS(2473), 1, - sym_ident, - ACTIONS(2650), 1, - anon_sym_DOLLARtypeof, - STATE(1304), 1, - sym_base_type, - STATE(1306), 1, - sym_module_type_ident, - STATE(1309), 1, - sym_base_type_name, - STATE(1537), 1, - sym_module_resolution, - STATE(1580), 1, - sym_type, - STATE(1591), 1, - sym__type_optional, - STATE(1632), 1, - aux_sym__module_path, - ACTIONS(2652), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1170), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(139), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [21595] = 26, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2694), 1, - anon_sym_AMP, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2698), 1, - anon_sym_PLUS, - ACTIONS(2700), 1, - anon_sym_DASH, - ACTIONS(2702), 1, - anon_sym_LT_LT, - ACTIONS(2704), 1, - anon_sym_GT_GT, - ACTIONS(2706), 1, - anon_sym_STAR, - ACTIONS(2708), 1, - anon_sym_SLASH, - ACTIONS(2710), 1, - anon_sym_PERCENT, - ACTIONS(2712), 1, - anon_sym_PIPE, - ACTIONS(2714), 1, - anon_sym_CARET, - ACTIONS(2716), 1, - anon_sym_EQ_EQ, - ACTIONS(2718), 1, - anon_sym_BANG_EQ, - ACTIONS(2720), 1, - anon_sym_GT, - ACTIONS(2722), 1, - anon_sym_GT_EQ, - ACTIONS(2724), 1, - anon_sym_LT_EQ, - ACTIONS(2726), 1, - anon_sym_LT, - ACTIONS(2728), 1, - anon_sym_AMP_AMP, - ACTIONS(2740), 1, - anon_sym_PIPE_PIPE, - STATE(288), 1, - sym__assignment_op, - ACTIONS(2594), 2, - anon_sym_EQ, - anon_sym_QMARK, - STATE(1171), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2592), 16, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - [21692] = 18, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2694), 1, - anon_sym_AMP, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2698), 1, - anon_sym_PLUS, - ACTIONS(2700), 1, - anon_sym_DASH, - ACTIONS(2702), 1, - anon_sym_LT_LT, - ACTIONS(2704), 1, - anon_sym_GT_GT, - ACTIONS(2706), 1, - anon_sym_STAR, - ACTIONS(2708), 1, - anon_sym_SLASH, - ACTIONS(2710), 1, - anon_sym_PERCENT, - ACTIONS(2712), 1, - anon_sym_PIPE, - ACTIONS(2714), 1, - anon_sym_CARET, - STATE(288), 1, - sym__assignment_op, - STATE(1172), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2590), 4, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2588), 22, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - [21773] = 13, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_LT_LT, - ACTIONS(2704), 1, - anon_sym_GT_GT, - ACTIONS(2706), 1, - anon_sym_STAR, - ACTIONS(2708), 1, - anon_sym_SLASH, - ACTIONS(2710), 1, - anon_sym_PERCENT, - STATE(288), 1, - sym__assignment_op, - STATE(1173), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2590), 9, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2588), 22, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - [21844] = 17, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(13), 1, - sym_type_ident, - ACTIONS(15), 1, - sym_ct_type_ident, - ACTIONS(57), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2473), 1, - sym_ident, - ACTIONS(2742), 1, - anon_sym_inline, - STATE(1008), 1, - sym_module_type_ident, - STATE(1025), 1, - sym_base_type, - STATE(1043), 1, - sym_base_type_name, - STATE(1537), 1, - sym_module_resolution, - STATE(1627), 1, - aux_sym__module_path, - STATE(2232), 1, - sym_type, - ACTIONS(59), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1174), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(45), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [21923] = 17, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(79), 1, - sym_type_ident, - ACTIONS(2448), 1, - sym_ct_type_ident, - ACTIONS(2473), 1, - sym_ident, - ACTIONS(2650), 1, - anon_sym_DOLLARtypeof, - STATE(1304), 1, - sym_base_type, - STATE(1306), 1, - sym_module_type_ident, - STATE(1309), 1, - sym_base_type_name, - STATE(1537), 1, - sym_module_resolution, - STATE(1580), 1, - sym_type, - STATE(1598), 1, - sym__type_optional, - STATE(1632), 1, - aux_sym__module_path, - ACTIONS(2652), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1175), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(139), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [22002] = 17, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(13), 1, - sym_type_ident, - ACTIONS(15), 1, - sym_ct_type_ident, - ACTIONS(57), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2473), 1, - sym_ident, - STATE(1008), 1, - sym_module_type_ident, - STATE(1025), 1, - sym_base_type, - STATE(1043), 1, - sym_base_type_name, - STATE(1167), 1, - sym_type, - STATE(1537), 1, - sym_module_resolution, - STATE(1627), 1, - aux_sym__module_path, - STATE(1916), 1, - sym__type_optional, - ACTIONS(59), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1176), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(45), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [22081] = 17, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(13), 1, - sym_type_ident, - ACTIONS(15), 1, - sym_ct_type_ident, - ACTIONS(57), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2473), 1, - sym_ident, - ACTIONS(2744), 1, - anon_sym_inline, - STATE(1008), 1, - sym_module_type_ident, - STATE(1025), 1, - sym_base_type, - STATE(1043), 1, - sym_base_type_name, - STATE(1537), 1, - sym_module_resolution, - STATE(1627), 1, - aux_sym__module_path, - STATE(2300), 1, - sym_type, - ACTIONS(59), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1177), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(45), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [22160] = 18, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2694), 1, - anon_sym_AMP, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2698), 1, - anon_sym_PLUS, - ACTIONS(2700), 1, - anon_sym_DASH, - ACTIONS(2702), 1, - anon_sym_LT_LT, - ACTIONS(2704), 1, - anon_sym_GT_GT, - ACTIONS(2706), 1, - anon_sym_STAR, - ACTIONS(2708), 1, - anon_sym_SLASH, - ACTIONS(2710), 1, - anon_sym_PERCENT, - ACTIONS(2712), 1, - anon_sym_PIPE, - ACTIONS(2714), 1, - anon_sym_CARET, - STATE(288), 1, - sym__assignment_op, - STATE(1178), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2590), 4, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2588), 22, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - [22241] = 18, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2694), 1, - anon_sym_AMP, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2698), 1, - anon_sym_PLUS, - ACTIONS(2700), 1, - anon_sym_DASH, - ACTIONS(2702), 1, - anon_sym_LT_LT, - ACTIONS(2704), 1, - anon_sym_GT_GT, - ACTIONS(2706), 1, - anon_sym_STAR, - ACTIONS(2708), 1, - anon_sym_SLASH, - ACTIONS(2710), 1, - anon_sym_PERCENT, - ACTIONS(2712), 1, - anon_sym_PIPE, - ACTIONS(2714), 1, - anon_sym_CARET, - STATE(288), 1, - sym__assignment_op, - STATE(1179), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2590), 4, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2588), 22, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - [22322] = 13, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_LT_LT, - ACTIONS(2704), 1, - anon_sym_GT_GT, - ACTIONS(2706), 1, - anon_sym_STAR, - ACTIONS(2708), 1, - anon_sym_SLASH, - ACTIONS(2710), 1, - anon_sym_PERCENT, - STATE(288), 1, - sym__assignment_op, - STATE(1180), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2590), 9, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2588), 22, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - [22393] = 8, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2696), 1, - anon_sym_DOT, - STATE(288), 1, - sym__assignment_op, - STATE(1181), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2602), 14, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2600), 22, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - [22454] = 13, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_LT_LT, - ACTIONS(2704), 1, - anon_sym_GT_GT, - ACTIONS(2706), 1, - anon_sym_STAR, - ACTIONS(2708), 1, - anon_sym_SLASH, - ACTIONS(2710), 1, - anon_sym_PERCENT, - STATE(288), 1, - sym__assignment_op, - STATE(1182), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2590), 9, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2588), 22, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - [22525] = 17, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(79), 1, - sym_type_ident, - ACTIONS(2448), 1, - sym_ct_type_ident, - ACTIONS(2473), 1, - sym_ident, - ACTIONS(2650), 1, - anon_sym_DOLLARtypeof, - STATE(1304), 1, - sym_base_type, - STATE(1306), 1, - sym_module_type_ident, - STATE(1309), 1, - sym_base_type_name, - STATE(1537), 1, - sym_module_resolution, - STATE(1580), 1, - sym_type, - STATE(1625), 1, - sym__type_optional, - STATE(1632), 1, - aux_sym__module_path, - ACTIONS(2652), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1183), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(139), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [22604] = 28, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2558), 1, - anon_sym_QMARK, - ACTIONS(2694), 1, - anon_sym_AMP, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2698), 1, - anon_sym_PLUS, - ACTIONS(2700), 1, - anon_sym_DASH, - ACTIONS(2702), 1, - anon_sym_LT_LT, - ACTIONS(2704), 1, - anon_sym_GT_GT, - ACTIONS(2706), 1, - anon_sym_STAR, - ACTIONS(2708), 1, - anon_sym_SLASH, - ACTIONS(2710), 1, - anon_sym_PERCENT, - ACTIONS(2712), 1, - anon_sym_PIPE, - ACTIONS(2714), 1, - anon_sym_CARET, - ACTIONS(2716), 1, - anon_sym_EQ_EQ, - ACTIONS(2718), 1, - anon_sym_BANG_EQ, - ACTIONS(2720), 1, - anon_sym_GT, - ACTIONS(2722), 1, - anon_sym_GT_EQ, - ACTIONS(2724), 1, - anon_sym_LT_EQ, - ACTIONS(2726), 1, - anon_sym_LT, - ACTIONS(2728), 1, - anon_sym_AMP_AMP, - ACTIONS(2740), 1, - anon_sym_PIPE_PIPE, - STATE(288), 1, - sym__assignment_op, - STATE(1184), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2536), 6, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - ACTIONS(2556), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [22705] = 16, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2694), 1, - anon_sym_AMP, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_LT_LT, - ACTIONS(2704), 1, - anon_sym_GT_GT, - ACTIONS(2706), 1, - anon_sym_STAR, - ACTIONS(2708), 1, - anon_sym_SLASH, - ACTIONS(2710), 1, - anon_sym_PERCENT, - ACTIONS(2712), 1, - anon_sym_PIPE, - ACTIONS(2714), 1, - anon_sym_CARET, - STATE(288), 1, - sym__assignment_op, - STATE(1185), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2590), 6, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2588), 22, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - [22782] = 8, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2696), 1, - anon_sym_DOT, - STATE(288), 1, - sym__assignment_op, - STATE(1186), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2590), 14, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2588), 22, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - [22843] = 8, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2696), 1, - anon_sym_DOT, - STATE(288), 1, - sym__assignment_op, - STATE(1187), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2590), 14, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2588), 22, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - [22904] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(1188), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2748), 13, - sym_at_ident, - sym_type_ident, - sym_ct_type_ident, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(2746), 25, - sym_ident, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [22961] = 8, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2696), 1, - anon_sym_DOT, - STATE(288), 1, - sym__assignment_op, - STATE(1189), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2590), 14, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2588), 22, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - [23022] = 17, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(13), 1, - sym_type_ident, - ACTIONS(15), 1, - sym_ct_type_ident, - ACTIONS(57), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2473), 1, - sym_ident, - STATE(1008), 1, - sym_module_type_ident, - STATE(1025), 1, - sym_base_type, - STATE(1043), 1, - sym_base_type_name, - STATE(1537), 1, - sym_module_resolution, - STATE(1627), 1, - aux_sym__module_path, - STATE(1957), 1, - sym_enum_param_declaration, - STATE(2264), 1, - sym_type, - ACTIONS(59), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1190), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(45), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [23101] = 11, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2706), 1, - anon_sym_STAR, - ACTIONS(2708), 1, - anon_sym_SLASH, - ACTIONS(2710), 1, - anon_sym_PERCENT, - STATE(288), 1, - sym__assignment_op, - STATE(1191), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2590), 11, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2588), 22, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - [23168] = 11, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2706), 1, - anon_sym_STAR, - ACTIONS(2708), 1, - anon_sym_SLASH, - ACTIONS(2710), 1, - anon_sym_PERCENT, - STATE(288), 1, - sym__assignment_op, - STATE(1192), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2590), 11, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2588), 22, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - [23235] = 16, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2694), 1, - anon_sym_AMP, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_LT_LT, - ACTIONS(2704), 1, - anon_sym_GT_GT, - ACTIONS(2706), 1, - anon_sym_STAR, - ACTIONS(2708), 1, - anon_sym_SLASH, - ACTIONS(2710), 1, - anon_sym_PERCENT, - ACTIONS(2712), 1, - anon_sym_PIPE, - ACTIONS(2714), 1, - anon_sym_CARET, - STATE(288), 1, - sym__assignment_op, - STATE(1193), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2590), 6, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2588), 22, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - [23312] = 16, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2473), 1, - sym_ident, - ACTIONS(2750), 1, - sym_type_ident, - ACTIONS(2752), 1, - sym_ct_type_ident, - ACTIONS(2756), 1, - anon_sym_DOLLARtypeof, - STATE(1047), 1, - sym_module_type_ident, - STATE(1048), 1, - sym_base_type, - STATE(1079), 1, - sym_base_type_name, - STATE(1126), 1, - sym_type, - STATE(1537), 1, - sym_module_resolution, - STATE(1572), 1, - aux_sym__module_path, - ACTIONS(2758), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1194), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2754), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [23388] = 16, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(13), 1, - sym_type_ident, - ACTIONS(15), 1, - sym_ct_type_ident, - ACTIONS(57), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2473), 1, - sym_ident, - STATE(1008), 1, - sym_module_type_ident, - STATE(1025), 1, - sym_base_type, - STATE(1043), 1, - sym_base_type_name, - STATE(1537), 1, - sym_module_resolution, - STATE(1627), 1, - aux_sym__module_path, - STATE(2235), 1, - sym_type, - ACTIONS(59), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1195), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(45), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [23464] = 8, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2760), 1, - anon_sym_QMARK_COLON, - ACTIONS(2762), 1, - anon_sym_QMARK_QMARK, - STATE(1196), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2624), 14, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2622), 21, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - [23524] = 16, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(13), 1, - sym_type_ident, - ACTIONS(15), 1, - sym_ct_type_ident, - ACTIONS(57), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2473), 1, - sym_ident, - STATE(1008), 1, - sym_module_type_ident, - STATE(1025), 1, - sym_base_type, - STATE(1043), 1, - sym_base_type_name, - STATE(1381), 1, - sym_type, - STATE(1537), 1, - sym_module_resolution, - STATE(1627), 1, - aux_sym__module_path, - ACTIONS(59), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1197), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(45), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [23600] = 16, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(13), 1, - sym_type_ident, - ACTIONS(15), 1, - sym_ct_type_ident, - ACTIONS(57), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2473), 1, - sym_ident, - STATE(1008), 1, - sym_module_type_ident, - STATE(1025), 1, - sym_base_type, - STATE(1043), 1, - sym_base_type_name, - STATE(1411), 1, - sym_type, - STATE(1537), 1, - sym_module_resolution, - STATE(1627), 1, - aux_sym__module_path, - ACTIONS(59), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1198), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(45), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [23676] = 16, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(13), 1, - sym_type_ident, - ACTIONS(15), 1, - sym_ct_type_ident, - ACTIONS(57), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2473), 1, - sym_ident, - STATE(1008), 1, - sym_module_type_ident, - STATE(1025), 1, - sym_base_type, - STATE(1043), 1, - sym_base_type_name, - STATE(1382), 1, - sym_type, - STATE(1537), 1, - sym_module_resolution, - STATE(1627), 1, - aux_sym__module_path, - ACTIONS(59), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1199), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(45), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [23752] = 16, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(13), 1, - sym_type_ident, - ACTIONS(15), 1, - sym_ct_type_ident, - ACTIONS(57), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2473), 1, - sym_ident, - STATE(1008), 1, - sym_module_type_ident, - STATE(1025), 1, - sym_base_type, - STATE(1043), 1, - sym_base_type_name, - STATE(1537), 1, - sym_module_resolution, - STATE(1627), 1, - aux_sym__module_path, - STATE(2300), 1, - sym_type, - ACTIONS(59), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1200), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(45), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [23828] = 8, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2760), 1, - anon_sym_QMARK_COLON, - ACTIONS(2762), 1, - anon_sym_QMARK_QMARK, - STATE(1201), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2624), 14, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2622), 21, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - [23888] = 16, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(13), 1, - sym_type_ident, - ACTIONS(15), 1, - sym_ct_type_ident, - ACTIONS(57), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2473), 1, - sym_ident, - STATE(1008), 1, - sym_module_type_ident, - STATE(1025), 1, - sym_base_type, - STATE(1043), 1, - sym_base_type_name, - STATE(1386), 1, - sym_type, - STATE(1537), 1, - sym_module_resolution, - STATE(1627), 1, - aux_sym__module_path, - ACTIONS(59), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1202), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(45), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [23964] = 16, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(13), 1, - sym_type_ident, - ACTIONS(15), 1, - sym_ct_type_ident, - ACTIONS(57), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2473), 1, - sym_ident, - STATE(1008), 1, - sym_module_type_ident, - STATE(1025), 1, - sym_base_type, - STATE(1043), 1, - sym_base_type_name, - STATE(1385), 1, - sym_type, - STATE(1537), 1, - sym_module_resolution, - STATE(1627), 1, - aux_sym__module_path, - ACTIONS(59), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1203), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(45), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [24040] = 16, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(13), 1, - sym_type_ident, - ACTIONS(15), 1, - sym_ct_type_ident, - ACTIONS(57), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2473), 1, - sym_ident, - STATE(1008), 1, - sym_module_type_ident, - STATE(1025), 1, - sym_base_type, - STATE(1043), 1, - sym_base_type_name, - STATE(1537), 1, - sym_module_resolution, - STATE(1627), 1, - aux_sym__module_path, - STATE(2100), 1, - sym_type, - ACTIONS(59), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1204), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(45), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [24116] = 8, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2760), 1, - anon_sym_QMARK_COLON, - ACTIONS(2762), 1, - anon_sym_QMARK_QMARK, - STATE(1205), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2632), 14, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2630), 21, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - [24176] = 16, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(13), 1, - sym_type_ident, - ACTIONS(15), 1, - sym_ct_type_ident, - ACTIONS(57), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2473), 1, - sym_ident, - STATE(1008), 1, - sym_module_type_ident, - STATE(1025), 1, - sym_base_type, - STATE(1043), 1, - sym_base_type_name, - STATE(1537), 1, - sym_module_resolution, - STATE(1627), 1, - aux_sym__module_path, - STATE(2165), 1, - sym_type, - ACTIONS(59), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1206), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(45), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [24252] = 8, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2269), 1, - anon_sym_QMARK, - STATE(1207), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2261), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - ACTIONS(2366), 13, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2364), 17, - anon_sym_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - [24311] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(1208), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2766), 7, - sym_type_ident, - sym_ct_type_ident, - anon_sym_RBRACE, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(2764), 29, - sym_ident, - anon_sym_inline, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [24366] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(1209), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2770), 7, - sym_type_ident, - sym_ct_type_ident, - anon_sym_RBRACE, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(2768), 29, - sym_ident, - anon_sym_inline, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [24421] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(1210), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2774), 7, - sym_type_ident, - sym_ct_type_ident, - anon_sym_RBRACE, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(2772), 29, - sym_ident, - anon_sym_inline, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [24476] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(1211), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2778), 7, - sym_type_ident, - sym_ct_type_ident, - anon_sym_RBRACE, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(2776), 29, - sym_ident, - anon_sym_inline, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [24531] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(1212), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2055), 7, - sym_type_ident, - sym_ct_type_ident, - anon_sym_RBRACE, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(2057), 29, - sym_ident, - anon_sym_inline, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [24586] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(1213), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2782), 7, - sym_type_ident, - sym_ct_type_ident, - anon_sym_RBRACE, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(2780), 29, - sym_ident, - anon_sym_inline, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [24641] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(1214), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2786), 7, - sym_type_ident, - sym_ct_type_ident, - anon_sym_RBRACE, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(2784), 29, - sym_ident, - anon_sym_inline, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [24696] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(1215), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(1911), 7, - sym_type_ident, - sym_ct_type_ident, - anon_sym_RBRACE, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(1913), 29, - sym_ident, - anon_sym_inline, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [24751] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(1216), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2790), 7, - sym_type_ident, - sym_ct_type_ident, - anon_sym_RBRACE, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(2788), 29, - sym_ident, - anon_sym_inline, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [24806] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(1217), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2794), 7, - sym_type_ident, - sym_ct_type_ident, - anon_sym_RBRACE, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(2792), 29, - sym_ident, - anon_sym_inline, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [24861] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(1218), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2798), 7, - sym_type_ident, - sym_ct_type_ident, - anon_sym_RBRACE, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(2796), 29, - sym_ident, - anon_sym_inline, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [24916] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(1219), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(1887), 7, - sym_type_ident, - sym_ct_type_ident, - anon_sym_RBRACE, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(1889), 29, - sym_ident, - anon_sym_inline, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [24971] = 9, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2269), 1, - anon_sym_QMARK, - ACTIONS(2261), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - ACTIONS(2534), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(1220), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2366), 13, - anon_sym_EQ, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, anon_sym_AMP, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, anon_sym_PLUS, + ACTIONS(1849), 1, anon_sym_DASH, + ACTIONS(1851), 1, anon_sym_LT_LT, + ACTIONS(1853), 1, anon_sym_GT_GT, + ACTIONS(1855), 1, anon_sym_STAR, + ACTIONS(1857), 1, + anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, anon_sym_SLASH, + ACTIONS(1871), 1, anon_sym_PERCENT, + ACTIONS(1873), 1, anon_sym_PIPE, + ACTIONS(1875), 1, anon_sym_CARET, + ACTIONS(1877), 1, + anon_sym_EQ_EQ, + ACTIONS(1879), 1, + anon_sym_BANG_EQ, + ACTIONS(1881), 1, anon_sym_GT, + ACTIONS(1883), 1, + anon_sym_GT_EQ, + ACTIONS(1885), 1, + anon_sym_LT_EQ, + ACTIONS(1887), 1, anon_sym_LT, - ACTIONS(2364), 17, + ACTIONS(1889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(2519), 1, anon_sym_DOT, - anon_sym_AMP_AMP, + ACTIONS(2713), 1, + anon_sym_SEMI, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(1109), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1981), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149825,192 +140359,356 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - [25032] = 6, + [24956] = 39, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1221), 3, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, + anon_sym_AMP, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, + anon_sym_PLUS, + ACTIONS(1849), 1, + anon_sym_DASH, + ACTIONS(1851), 1, + anon_sym_LT_LT, + ACTIONS(1853), 1, + anon_sym_GT_GT, + ACTIONS(1855), 1, + anon_sym_STAR, + ACTIONS(1857), 1, + anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, + anon_sym_SLASH, + ACTIONS(1871), 1, + anon_sym_PERCENT, + ACTIONS(1873), 1, + anon_sym_PIPE, + ACTIONS(1875), 1, + anon_sym_CARET, + ACTIONS(1877), 1, + anon_sym_EQ_EQ, + ACTIONS(1879), 1, + anon_sym_BANG_EQ, + ACTIONS(1881), 1, + anon_sym_GT, + ACTIONS(1883), 1, + anon_sym_GT_EQ, + ACTIONS(1885), 1, + anon_sym_LT_EQ, + ACTIONS(1887), 1, + anon_sym_LT, + ACTIONS(1889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(2519), 1, + anon_sym_DOT, + ACTIONS(2715), 1, + anon_sym_SEMI, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(1110), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2051), 7, - sym_type_ident, - sym_ct_type_ident, - anon_sym_RBRACE, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(2053), 29, - sym_ident, - anon_sym_inline, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [25087] = 6, + ACTIONS(1981), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [25085] = 39, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1222), 3, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, + anon_sym_AMP, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, + anon_sym_PLUS, + ACTIONS(1849), 1, + anon_sym_DASH, + ACTIONS(1851), 1, + anon_sym_LT_LT, + ACTIONS(1853), 1, + anon_sym_GT_GT, + ACTIONS(1855), 1, + anon_sym_STAR, + ACTIONS(1857), 1, + anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, + anon_sym_SLASH, + ACTIONS(1871), 1, + anon_sym_PERCENT, + ACTIONS(1873), 1, + anon_sym_PIPE, + ACTIONS(1875), 1, + anon_sym_CARET, + ACTIONS(1877), 1, + anon_sym_EQ_EQ, + ACTIONS(1879), 1, + anon_sym_BANG_EQ, + ACTIONS(1881), 1, + anon_sym_GT, + ACTIONS(1883), 1, + anon_sym_GT_EQ, + ACTIONS(1885), 1, + anon_sym_LT_EQ, + ACTIONS(1887), 1, + anon_sym_LT, + ACTIONS(1889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(2519), 1, + anon_sym_DOT, + ACTIONS(2717), 1, + anon_sym_SEMI, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(1111), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2802), 7, - sym_type_ident, - sym_ct_type_ident, - anon_sym_RBRACE, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(2800), 29, - sym_ident, - anon_sym_inline, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [25142] = 6, + ACTIONS(1981), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [25214] = 39, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1223), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2806), 7, - sym_type_ident, - sym_ct_type_ident, - anon_sym_RBRACE, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(2804), 29, - sym_ident, - anon_sym_inline, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [25197] = 7, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, + anon_sym_AMP, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, + anon_sym_PLUS, + ACTIONS(1849), 1, + anon_sym_DASH, + ACTIONS(1851), 1, + anon_sym_LT_LT, + ACTIONS(1853), 1, + anon_sym_GT_GT, + ACTIONS(1855), 1, + anon_sym_STAR, + ACTIONS(1857), 1, + anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, + anon_sym_SLASH, + ACTIONS(1871), 1, + anon_sym_PERCENT, + ACTIONS(1873), 1, + anon_sym_PIPE, + ACTIONS(1875), 1, + anon_sym_CARET, + ACTIONS(1877), 1, + anon_sym_EQ_EQ, + ACTIONS(1879), 1, + anon_sym_BANG_EQ, + ACTIONS(1881), 1, + anon_sym_GT, + ACTIONS(1883), 1, + anon_sym_GT_EQ, + ACTIONS(1885), 1, + anon_sym_LT_EQ, + ACTIONS(1887), 1, + anon_sym_LT, + ACTIONS(1889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(2519), 1, + anon_sym_DOT, + ACTIONS(2719), 1, + anon_sym_RPAREN, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(1112), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1981), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [25343] = 39, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1224), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2261), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - ACTIONS(2366), 13, - anon_sym_EQ, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, anon_sym_AMP, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, anon_sym_PLUS, + ACTIONS(1849), 1, anon_sym_DASH, + ACTIONS(1851), 1, anon_sym_LT_LT, + ACTIONS(1853), 1, anon_sym_GT_GT, + ACTIONS(1855), 1, anon_sym_STAR, + ACTIONS(1857), 1, + anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, anon_sym_SLASH, + ACTIONS(1871), 1, anon_sym_PERCENT, + ACTIONS(1873), 1, anon_sym_PIPE, + ACTIONS(1875), 1, anon_sym_CARET, + ACTIONS(1877), 1, + anon_sym_EQ_EQ, + ACTIONS(1879), 1, + anon_sym_BANG_EQ, + ACTIONS(1881), 1, anon_sym_GT, + ACTIONS(1883), 1, + anon_sym_GT_EQ, + ACTIONS(1885), 1, + anon_sym_LT_EQ, + ACTIONS(1887), 1, anon_sym_LT, - ACTIONS(2364), 17, + ACTIONS(1889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(2519), 1, anon_sym_DOT, - anon_sym_AMP_AMP, + ACTIONS(2721), 1, + anon_sym_SEMI, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(1113), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1981), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150021,47 +140719,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - [25253] = 9, + [25472] = 39, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2269), 1, - anon_sym_QMARK, - ACTIONS(2261), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - ACTIONS(2534), 3, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - STATE(1225), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2366), 13, - anon_sym_EQ, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, anon_sym_AMP, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, anon_sym_PLUS, + ACTIONS(1849), 1, anon_sym_DASH, + ACTIONS(1851), 1, anon_sym_LT_LT, + ACTIONS(1853), 1, anon_sym_GT_GT, + ACTIONS(1855), 1, anon_sym_STAR, + ACTIONS(1857), 1, + anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, anon_sym_SLASH, + ACTIONS(1871), 1, anon_sym_PERCENT, + ACTIONS(1873), 1, anon_sym_PIPE, + ACTIONS(1875), 1, anon_sym_CARET, + ACTIONS(1877), 1, + anon_sym_EQ_EQ, + ACTIONS(1879), 1, + anon_sym_BANG_EQ, + ACTIONS(1881), 1, anon_sym_GT, + ACTIONS(1883), 1, + anon_sym_GT_EQ, + ACTIONS(1885), 1, + anon_sym_LT_EQ, + ACTIONS(1887), 1, anon_sym_LT, - ACTIONS(2364), 16, + ACTIONS(1889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(2519), 1, anon_sym_DOT, + ACTIONS(2723), 1, + anon_sym_SEMI, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(1114), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1981), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150072,71 +140809,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - [25313] = 29, + [25601] = 39, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2694), 1, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2698), 1, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, anon_sym_PLUS, - ACTIONS(2700), 1, + ACTIONS(1849), 1, anon_sym_DASH, - ACTIONS(2702), 1, + ACTIONS(1851), 1, anon_sym_LT_LT, - ACTIONS(2704), 1, + ACTIONS(1853), 1, anon_sym_GT_GT, - ACTIONS(2706), 1, + ACTIONS(1855), 1, anon_sym_STAR, - ACTIONS(2708), 1, + ACTIONS(1857), 1, + anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, anon_sym_SLASH, - ACTIONS(2710), 1, + ACTIONS(1871), 1, anon_sym_PERCENT, - ACTIONS(2712), 1, + ACTIONS(1873), 1, anon_sym_PIPE, - ACTIONS(2714), 1, + ACTIONS(1875), 1, anon_sym_CARET, - ACTIONS(2716), 1, + ACTIONS(1877), 1, anon_sym_EQ_EQ, - ACTIONS(2718), 1, + ACTIONS(1879), 1, anon_sym_BANG_EQ, - ACTIONS(2720), 1, + ACTIONS(1881), 1, anon_sym_GT, - ACTIONS(2722), 1, + ACTIONS(1883), 1, anon_sym_GT_EQ, - ACTIONS(2724), 1, + ACTIONS(1885), 1, anon_sym_LT_EQ, - ACTIONS(2726), 1, + ACTIONS(1887), 1, anon_sym_LT, - ACTIONS(2728), 1, - anon_sym_AMP_AMP, - ACTIONS(2740), 1, + ACTIONS(1889), 1, anon_sym_PIPE_PIPE, - ACTIONS(2808), 1, - anon_sym_COMMA, - ACTIONS(2810), 1, - anon_sym_RPAREN, - STATE(288), 1, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(2519), 1, + anon_sym_DOT, + ACTIONS(2725), 1, + anon_sym_GT_RBRACK, + STATE(293), 1, sym__assignment_op, - STATE(1705), 1, - aux_sym_assert_stmt_repeat1, - STATE(1226), 3, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(1115), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2556), 10, + ACTIONS(1981), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150147,66 +140899,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [25412] = 29, + [25730] = 39, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2694), 1, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2698), 1, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, anon_sym_PLUS, - ACTIONS(2700), 1, + ACTIONS(1849), 1, anon_sym_DASH, - ACTIONS(2702), 1, + ACTIONS(1851), 1, anon_sym_LT_LT, - ACTIONS(2704), 1, + ACTIONS(1853), 1, anon_sym_GT_GT, - ACTIONS(2706), 1, + ACTIONS(1855), 1, anon_sym_STAR, - ACTIONS(2708), 1, + ACTIONS(1857), 1, + anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, anon_sym_SLASH, - ACTIONS(2710), 1, + ACTIONS(1871), 1, anon_sym_PERCENT, - ACTIONS(2712), 1, + ACTIONS(1873), 1, anon_sym_PIPE, - ACTIONS(2714), 1, + ACTIONS(1875), 1, anon_sym_CARET, - ACTIONS(2716), 1, + ACTIONS(1877), 1, anon_sym_EQ_EQ, - ACTIONS(2718), 1, + ACTIONS(1879), 1, anon_sym_BANG_EQ, - ACTIONS(2720), 1, + ACTIONS(1881), 1, anon_sym_GT, - ACTIONS(2722), 1, + ACTIONS(1883), 1, anon_sym_GT_EQ, - ACTIONS(2724), 1, + ACTIONS(1885), 1, anon_sym_LT_EQ, - ACTIONS(2726), 1, + ACTIONS(1887), 1, anon_sym_LT, - ACTIONS(2728), 1, - anon_sym_AMP_AMP, - ACTIONS(2740), 1, + ACTIONS(1889), 1, anon_sym_PIPE_PIPE, - ACTIONS(2808), 1, - anon_sym_COMMA, - ACTIONS(2812), 1, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(2519), 1, + anon_sym_DOT, + ACTIONS(2727), 1, anon_sym_RPAREN, - STATE(288), 1, + STATE(293), 1, sym__assignment_op, - STATE(1714), 1, - aux_sym_assert_stmt_repeat1, - STATE(1227), 3, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(1116), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2556), 10, + ACTIONS(1981), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150217,66 +140989,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [25511] = 29, + [25859] = 39, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2694), 1, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2698), 1, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, anon_sym_PLUS, - ACTIONS(2700), 1, + ACTIONS(1849), 1, anon_sym_DASH, - ACTIONS(2702), 1, + ACTIONS(1851), 1, anon_sym_LT_LT, - ACTIONS(2704), 1, + ACTIONS(1853), 1, anon_sym_GT_GT, - ACTIONS(2706), 1, + ACTIONS(1855), 1, anon_sym_STAR, - ACTIONS(2708), 1, + ACTIONS(1857), 1, + anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, anon_sym_SLASH, - ACTIONS(2710), 1, + ACTIONS(1871), 1, anon_sym_PERCENT, - ACTIONS(2712), 1, + ACTIONS(1873), 1, anon_sym_PIPE, - ACTIONS(2714), 1, + ACTIONS(1875), 1, anon_sym_CARET, - ACTIONS(2716), 1, + ACTIONS(1877), 1, anon_sym_EQ_EQ, - ACTIONS(2718), 1, + ACTIONS(1879), 1, anon_sym_BANG_EQ, - ACTIONS(2720), 1, + ACTIONS(1881), 1, anon_sym_GT, - ACTIONS(2722), 1, + ACTIONS(1883), 1, anon_sym_GT_EQ, - ACTIONS(2724), 1, + ACTIONS(1885), 1, anon_sym_LT_EQ, - ACTIONS(2726), 1, + ACTIONS(1887), 1, anon_sym_LT, - ACTIONS(2728), 1, - anon_sym_AMP_AMP, - ACTIONS(2740), 1, + ACTIONS(1889), 1, anon_sym_PIPE_PIPE, - ACTIONS(2808), 1, - anon_sym_COMMA, - ACTIONS(2814), 1, - anon_sym_RPAREN, - STATE(288), 1, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(2247), 1, + anon_sym_SEMI, + ACTIONS(2519), 1, + anon_sym_DOT, + STATE(293), 1, sym__assignment_op, - STATE(1854), 1, - aux_sym_assert_stmt_repeat1, - STATE(1228), 3, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(1117), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2556), 10, + ACTIONS(1981), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150287,115 +141079,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [25610] = 8, + [25988] = 39, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2738), 1, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, + anon_sym_AMP, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, + anon_sym_PLUS, + ACTIONS(1849), 1, + anon_sym_DASH, + ACTIONS(1851), 1, + anon_sym_LT_LT, + ACTIONS(1853), 1, + anon_sym_GT_GT, + ACTIONS(1855), 1, + anon_sym_STAR, + ACTIONS(1857), 1, + anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, anon_sym_BANG, - ACTIONS(2816), 1, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, + anon_sym_SLASH, + ACTIONS(1871), 1, + anon_sym_PERCENT, + ACTIONS(1873), 1, + anon_sym_PIPE, + ACTIONS(1875), 1, + anon_sym_CARET, + ACTIONS(1877), 1, + anon_sym_EQ_EQ, + ACTIONS(1879), 1, + anon_sym_BANG_EQ, + ACTIONS(1881), 1, + anon_sym_GT, + ACTIONS(1883), 1, + anon_sym_GT_EQ, + ACTIONS(1885), 1, + anon_sym_LT_EQ, + ACTIONS(1887), 1, + anon_sym_LT, + ACTIONS(1889), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(2519), 1, anon_sym_DOT, - STATE(1229), 3, + ACTIONS(2729), 1, + anon_sym_SEMI, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(1118), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2736), 7, - sym_at_ident, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(2734), 25, - sym_ident, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [25667] = 29, + ACTIONS(1981), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [26117] = 39, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2694), 1, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2698), 1, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1845), 1, + anon_sym_AMP_AMP, + ACTIONS(1847), 1, anon_sym_PLUS, - ACTIONS(2700), 1, + ACTIONS(1849), 1, anon_sym_DASH, - ACTIONS(2702), 1, + ACTIONS(1851), 1, anon_sym_LT_LT, - ACTIONS(2704), 1, + ACTIONS(1853), 1, anon_sym_GT_GT, - ACTIONS(2706), 1, + ACTIONS(1855), 1, anon_sym_STAR, - ACTIONS(2708), 1, + ACTIONS(1857), 1, + anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, anon_sym_SLASH, - ACTIONS(2710), 1, + ACTIONS(1871), 1, anon_sym_PERCENT, - ACTIONS(2712), 1, + ACTIONS(1873), 1, anon_sym_PIPE, - ACTIONS(2714), 1, + ACTIONS(1875), 1, anon_sym_CARET, - ACTIONS(2716), 1, + ACTIONS(1877), 1, anon_sym_EQ_EQ, - ACTIONS(2718), 1, + ACTIONS(1879), 1, anon_sym_BANG_EQ, - ACTIONS(2720), 1, + ACTIONS(1881), 1, anon_sym_GT, - ACTIONS(2722), 1, + ACTIONS(1883), 1, anon_sym_GT_EQ, - ACTIONS(2724), 1, + ACTIONS(1885), 1, anon_sym_LT_EQ, - ACTIONS(2726), 1, + ACTIONS(1887), 1, anon_sym_LT, - ACTIONS(2728), 1, - anon_sym_AMP_AMP, - ACTIONS(2740), 1, + ACTIONS(1889), 1, anon_sym_PIPE_PIPE, - ACTIONS(2808), 1, - anon_sym_COMMA, - ACTIONS(2818), 1, - anon_sym_RPAREN, - STATE(288), 1, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(2519), 1, + anon_sym_DOT, + ACTIONS(2731), 1, + anon_sym_RBRACK, + STATE(293), 1, sym__assignment_op, - STATE(1729), 1, - aux_sym_assert_stmt_repeat1, - STATE(1230), 3, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(1119), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2556), 10, + ACTIONS(1981), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150406,64 +141259,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [25766] = 27, + [26246] = 39, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2540), 1, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(2544), 1, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1845), 1, anon_sym_AMP_AMP, - ACTIONS(2546), 1, + ACTIONS(1847), 1, anon_sym_PLUS, - ACTIONS(2548), 1, + ACTIONS(1849), 1, anon_sym_DASH, - ACTIONS(2550), 1, + ACTIONS(1851), 1, anon_sym_LT_LT, - ACTIONS(2552), 1, + ACTIONS(1853), 1, anon_sym_GT_GT, - ACTIONS(2554), 1, + ACTIONS(1855), 1, anon_sym_STAR, - ACTIONS(2560), 1, + ACTIONS(1857), 1, + anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, anon_sym_SLASH, - ACTIONS(2562), 1, + ACTIONS(1871), 1, anon_sym_PERCENT, - ACTIONS(2564), 1, + ACTIONS(1873), 1, anon_sym_PIPE, - ACTIONS(2566), 1, + ACTIONS(1875), 1, anon_sym_CARET, - ACTIONS(2568), 1, + ACTIONS(1877), 1, anon_sym_EQ_EQ, - ACTIONS(2570), 1, + ACTIONS(1879), 1, anon_sym_BANG_EQ, - ACTIONS(2572), 1, + ACTIONS(1881), 1, anon_sym_GT, - ACTIONS(2574), 1, + ACTIONS(1883), 1, anon_sym_GT_EQ, - ACTIONS(2576), 1, + ACTIONS(1885), 1, anon_sym_LT_EQ, - ACTIONS(2578), 1, + ACTIONS(1887), 1, anon_sym_LT, - ACTIONS(2580), 1, + ACTIONS(1889), 1, anon_sym_PIPE_PIPE, - ACTIONS(2696), 1, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(2519), 1, anon_sym_DOT, - STATE(303), 1, - sym__assignment_op, - ACTIONS(2820), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2733), 1, anon_sym_SEMI, - STATE(1231), 3, + STATE(293), 1, + sym__assignment_op, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(1120), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2556), 10, + ACTIONS(1981), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150474,64 +141349,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [25861] = 27, + [26375] = 38, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2540), 1, + ACTIONS(1833), 1, + anon_sym_LPAREN_LT, + ACTIONS(1837), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, anon_sym_AMP, - ACTIONS(2542), 1, - anon_sym_DOT, - ACTIONS(2544), 1, + ACTIONS(1841), 1, + anon_sym_LBRACK, + ACTIONS(1845), 1, anon_sym_AMP_AMP, - ACTIONS(2546), 1, + ACTIONS(1847), 1, anon_sym_PLUS, - ACTIONS(2548), 1, + ACTIONS(1849), 1, anon_sym_DASH, - ACTIONS(2550), 1, + ACTIONS(1851), 1, anon_sym_LT_LT, - ACTIONS(2552), 1, + ACTIONS(1853), 1, anon_sym_GT_GT, - ACTIONS(2554), 1, + ACTIONS(1855), 1, anon_sym_STAR, - ACTIONS(2560), 1, + ACTIONS(1857), 1, + anon_sym_QMARK, + ACTIONS(1859), 1, + anon_sym_QMARK_COLON, + ACTIONS(1861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1863), 1, + anon_sym_BANG, + ACTIONS(1865), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1867), 1, + anon_sym_DASH_DASH, + ACTIONS(1869), 1, anon_sym_SLASH, - ACTIONS(2562), 1, + ACTIONS(1871), 1, anon_sym_PERCENT, - ACTIONS(2564), 1, + ACTIONS(1873), 1, anon_sym_PIPE, - ACTIONS(2566), 1, + ACTIONS(1875), 1, anon_sym_CARET, - ACTIONS(2568), 1, + ACTIONS(1877), 1, anon_sym_EQ_EQ, - ACTIONS(2570), 1, + ACTIONS(1879), 1, anon_sym_BANG_EQ, - ACTIONS(2572), 1, + ACTIONS(1881), 1, anon_sym_GT, - ACTIONS(2574), 1, + ACTIONS(1883), 1, anon_sym_GT_EQ, - ACTIONS(2576), 1, + ACTIONS(1885), 1, anon_sym_LT_EQ, - ACTIONS(2578), 1, + ACTIONS(1887), 1, anon_sym_LT, - ACTIONS(2580), 1, + ACTIONS(1889), 1, anon_sym_PIPE_PIPE, - STATE(303), 1, + ACTIONS(1891), 1, + anon_sym_BANG_BANG, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(2519), 1, + anon_sym_DOT, + STATE(293), 1, sym__assignment_op, - ACTIONS(2822), 3, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(1232), 3, + STATE(954), 1, + sym_call_invocation, + STATE(978), 1, + sym_generic_arguments, + STATE(1121), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2556), 10, + ACTIONS(1981), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150542,65 +141437,227 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [25956] = 28, + [26501] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, + ACTIONS(2348), 1, + anon_sym_COLON_COLON, + ACTIONS(2735), 1, anon_sym_EQ, - ACTIONS(2540), 1, + STATE(1122), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2352), 15, + anon_sym_LPAREN, anon_sym_AMP, - ACTIONS(2544), 1, - anon_sym_AMP_AMP, - ACTIONS(2546), 1, anon_sym_PLUS, - ACTIONS(2548), 1, anon_sym_DASH, - ACTIONS(2550), 1, anon_sym_LT_LT, - ACTIONS(2552), 1, anon_sym_GT_GT, - ACTIONS(2554), 1, anon_sym_STAR, - ACTIONS(2560), 1, + anon_sym_QMARK, + anon_sym_BANG, anon_sym_SLASH, - ACTIONS(2562), 1, anon_sym_PERCENT, - ACTIONS(2564), 1, anon_sym_PIPE, - ACTIONS(2566), 1, anon_sym_CARET, - ACTIONS(2568), 1, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2350), 26, + anon_sym_LPAREN_LT, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_AMP_AMP, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_EQ_EQ, - ACTIONS(2570), 1, anon_sym_BANG_EQ, - ACTIONS(2572), 1, - anon_sym_GT, - ACTIONS(2574), 1, anon_sym_GT_EQ, - ACTIONS(2576), 1, anon_sym_LT_EQ, - ACTIONS(2578), 1, - anon_sym_LT, - ACTIONS(2580), 1, anon_sym_PIPE_PIPE, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2826), 1, + anon_sym_BANG_BANG, + [26567] = 21, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(77), 1, + sym_type_ident, + ACTIONS(2547), 1, + sym_ident, + ACTIONS(2549), 1, + sym_ct_ident, + ACTIONS(2551), 1, + sym_hash_ident, + ACTIONS(2553), 1, + sym_ct_type_ident, + ACTIONS(2557), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2559), 1, + anon_sym_AMP, + STATE(1199), 1, + sym_base_type, + STATE(1200), 1, + sym_module_type_ident, + STATE(1208), 1, + sym_base_type_name, + STATE(1328), 1, + sym_type, + STATE(1368), 1, + sym__parameter, + STATE(1421), 1, + sym_module_resolution, + STATE(1558), 1, + aux_sym__module_path, + STATE(1590), 1, + sym_parameter, + STATE(1123), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(171), 4, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(137), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [26659] = 7, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(2737), 1, + anon_sym_COLON, + STATE(1124), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2352), 16, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2350), 25, + anon_sym_LPAREN_LT, + anon_sym_LBRACK, anon_sym_SEMI, - STATE(303), 1, - sym__assignment_op, - ACTIONS(2824), 2, + anon_sym_DOT, + anon_sym_AMP_AMP, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE, + anon_sym_BANG_BANG, + [26722] = 7, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(2739), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(1233), 3, + STATE(1125), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2556), 10, + ACTIONS(2499), 16, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2497), 24, + anon_sym_LPAREN_LT, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP_AMP, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150611,64 +141668,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [26053] = 27, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE, + anon_sym_BANG_BANG, + [26785] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, + ACTIONS(2741), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1126), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2459), 16, anon_sym_EQ, - ACTIONS(2540), 1, + anon_sym_LPAREN, anon_sym_AMP, - ACTIONS(2542), 1, - anon_sym_DOT, - ACTIONS(2544), 1, - anon_sym_AMP_AMP, - ACTIONS(2546), 1, anon_sym_PLUS, - ACTIONS(2548), 1, anon_sym_DASH, - ACTIONS(2550), 1, anon_sym_LT_LT, - ACTIONS(2552), 1, anon_sym_GT_GT, - ACTIONS(2554), 1, anon_sym_STAR, - ACTIONS(2560), 1, + anon_sym_QMARK, + anon_sym_BANG, anon_sym_SLASH, - ACTIONS(2562), 1, anon_sym_PERCENT, - ACTIONS(2564), 1, anon_sym_PIPE, - ACTIONS(2566), 1, anon_sym_CARET, - ACTIONS(2568), 1, - anon_sym_EQ_EQ, - ACTIONS(2570), 1, - anon_sym_BANG_EQ, - ACTIONS(2572), 1, anon_sym_GT, - ACTIONS(2574), 1, - anon_sym_GT_EQ, - ACTIONS(2576), 1, - anon_sym_LT_EQ, - ACTIONS(2578), 1, anon_sym_LT, - ACTIONS(2580), 1, - anon_sym_PIPE_PIPE, - STATE(303), 1, - sym__assignment_op, - ACTIONS(2828), 3, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(1234), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2556), 10, + ACTIONS(2457), 24, + anon_sym_LPAREN_LT, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP_AMP, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150679,66 +141724,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [26148] = 29, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE, + anon_sym_BANG_BANG, + [26848] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, + ACTIONS(2743), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1127), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2451), 16, anon_sym_EQ, - ACTIONS(2694), 1, + anon_sym_LPAREN, anon_sym_AMP, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2698), 1, anon_sym_PLUS, - ACTIONS(2700), 1, anon_sym_DASH, - ACTIONS(2702), 1, anon_sym_LT_LT, - ACTIONS(2704), 1, anon_sym_GT_GT, - ACTIONS(2706), 1, anon_sym_STAR, - ACTIONS(2708), 1, + anon_sym_QMARK, + anon_sym_BANG, anon_sym_SLASH, - ACTIONS(2710), 1, anon_sym_PERCENT, - ACTIONS(2712), 1, anon_sym_PIPE, - ACTIONS(2714), 1, anon_sym_CARET, - ACTIONS(2716), 1, - anon_sym_EQ_EQ, - ACTIONS(2718), 1, - anon_sym_BANG_EQ, - ACTIONS(2720), 1, anon_sym_GT, - ACTIONS(2722), 1, - anon_sym_GT_EQ, - ACTIONS(2724), 1, - anon_sym_LT_EQ, - ACTIONS(2726), 1, anon_sym_LT, - ACTIONS(2728), 1, + ACTIONS(2449), 24, + anon_sym_LPAREN_LT, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_AMP_AMP, - ACTIONS(2740), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2830), 1, - anon_sym_COMMA, - ACTIONS(2832), 1, - anon_sym_GT_RPAREN, - STATE(288), 1, - sym__assignment_op, - STATE(1725), 1, - aux_sym__generic_arg_list_repeat1, - STATE(1235), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2556), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150749,66 +141780,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [26247] = 29, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE, + anon_sym_BANG_BANG, + [26911] = 18, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(2571), 1, + sym_ident, + ACTIONS(2747), 1, + anon_sym_LPAREN, + STATE(989), 1, + sym_module_type_ident, + STATE(1018), 1, + sym_base_type, + STATE(1033), 1, + sym_base_type_name, + STATE(1407), 1, + sym_type, + STATE(1421), 1, + sym_module_resolution, + STATE(1513), 1, + sym_enum_param_list, + STATE(1532), 1, + aux_sym__module_path, + ACTIONS(2745), 3, + sym_at_ident, + sym_at_type_ident, + anon_sym_LBRACE, + STATE(1128), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(57), 4, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [26996] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, + ACTIONS(2705), 3, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + STATE(1129), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2427), 16, anon_sym_EQ, - ACTIONS(2694), 1, + anon_sym_LPAREN, anon_sym_AMP, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2698), 1, anon_sym_PLUS, - ACTIONS(2700), 1, anon_sym_DASH, - ACTIONS(2702), 1, anon_sym_LT_LT, - ACTIONS(2704), 1, anon_sym_GT_GT, - ACTIONS(2706), 1, anon_sym_STAR, - ACTIONS(2708), 1, + anon_sym_QMARK, + anon_sym_BANG, anon_sym_SLASH, - ACTIONS(2710), 1, anon_sym_PERCENT, - ACTIONS(2712), 1, anon_sym_PIPE, - ACTIONS(2714), 1, anon_sym_CARET, - ACTIONS(2716), 1, - anon_sym_EQ_EQ, - ACTIONS(2718), 1, - anon_sym_BANG_EQ, - ACTIONS(2720), 1, anon_sym_GT, - ACTIONS(2722), 1, - anon_sym_GT_EQ, - ACTIONS(2724), 1, - anon_sym_LT_EQ, - ACTIONS(2726), 1, anon_sym_LT, - ACTIONS(2728), 1, + ACTIONS(2425), 22, + anon_sym_LPAREN_LT, anon_sym_AMP_AMP, - ACTIONS(2740), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2808), 1, - anon_sym_COMMA, - ACTIONS(2834), 1, - anon_sym_RPAREN, - STATE(288), 1, - sym__assignment_op, - STATE(1780), 1, - aux_sym_assert_stmt_repeat1, - STATE(1236), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2556), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150819,1373 +141902,1672 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [26346] = 29, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE, + anon_sym_BANG_BANG, + [27058] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2694), 1, - anon_sym_AMP, - ACTIONS(2696), 1, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(2571), 1, + sym_ident, + ACTIONS(2749), 1, + anon_sym_fn, + STATE(989), 1, + sym_module_type_ident, + STATE(1018), 1, + sym_base_type, + STATE(1033), 1, + sym_base_type_name, + STATE(1297), 1, + sym_typedef_type, + STATE(1421), 1, + sym_module_resolution, + STATE(1532), 1, + aux_sym__module_path, + STATE(1449), 2, + sym_func_typedef, + sym_type, + STATE(1130), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(57), 4, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [27139] = 18, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(2751), 1, + sym_ident, + ACTIONS(2753), 1, + sym_at_ident, + ACTIONS(2755), 1, anon_sym_DOT, - ACTIONS(2698), 1, - anon_sym_PLUS, - ACTIONS(2700), 1, - anon_sym_DASH, - ACTIONS(2702), 1, - anon_sym_LT_LT, - ACTIONS(2704), 1, - anon_sym_GT_GT, - ACTIONS(2706), 1, - anon_sym_STAR, - ACTIONS(2708), 1, - anon_sym_SLASH, - ACTIONS(2710), 1, - anon_sym_PERCENT, - ACTIONS(2712), 1, - anon_sym_PIPE, - ACTIONS(2714), 1, - anon_sym_CARET, - ACTIONS(2716), 1, - anon_sym_EQ_EQ, - ACTIONS(2718), 1, - anon_sym_BANG_EQ, - ACTIONS(2720), 1, - anon_sym_GT, - ACTIONS(2722), 1, - anon_sym_GT_EQ, - ACTIONS(2724), 1, - anon_sym_LT_EQ, - ACTIONS(2726), 1, - anon_sym_LT, - ACTIONS(2728), 1, - anon_sym_AMP_AMP, - ACTIONS(2740), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2808), 1, - anon_sym_COMMA, - ACTIONS(2836), 1, - anon_sym_RPAREN, - STATE(288), 1, - sym__assignment_op, - STATE(1760), 1, - aux_sym_assert_stmt_repeat1, - STATE(1237), 3, + STATE(989), 1, + sym_module_type_ident, + STATE(1018), 1, + sym_base_type, + STATE(1033), 1, + sym_base_type_name, + STATE(1421), 1, + sym_module_resolution, + STATE(1532), 1, + aux_sym__module_path, + STATE(2065), 1, + sym_type, + STATE(2095), 1, + sym__func_macro_name, + STATE(1131), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(57), 4, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [27222] = 17, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(2571), 1, + sym_ident, + ACTIONS(2749), 1, + anon_sym_fn, + STATE(989), 1, + sym_module_type_ident, + STATE(1018), 1, + sym_base_type, + STATE(1033), 1, + sym_base_type_name, + STATE(1298), 1, + sym_typedef_type, + STATE(1421), 1, + sym_module_resolution, + STATE(1532), 1, + aux_sym__module_path, + STATE(1449), 2, + sym_func_typedef, + sym_type, + STATE(1132), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(57), 4, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [27303] = 18, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(2751), 1, + sym_ident, + ACTIONS(2753), 1, + sym_at_ident, + STATE(989), 1, + sym_module_type_ident, + STATE(1018), 1, + sym_base_type, + STATE(1033), 1, + sym_base_type_name, + STATE(1131), 1, + sym_type, + STATE(1421), 1, + sym_module_resolution, + STATE(1532), 1, + aux_sym__module_path, + STATE(1819), 1, + sym_macro_header, + STATE(1967), 1, + sym__func_macro_name, + STATE(1133), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(57), 4, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [27386] = 17, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(2757), 1, + sym_ident, + ACTIONS(2759), 1, + anon_sym_AMP, + STATE(989), 1, + sym_module_type_ident, + STATE(1033), 1, + sym_base_type_name, + STATE(1330), 1, + sym_base_type, + STATE(1421), 1, + sym_module_resolution, + STATE(1532), 1, + aux_sym__module_path, + STATE(1839), 1, + sym_type, + STATE(1885), 1, + sym_foreach_var, + STATE(1134), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(57), 4, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [27466] = 17, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(2571), 1, + sym_ident, + ACTIONS(2761), 1, + anon_sym_RBRACE, + STATE(989), 1, + sym_module_type_ident, + STATE(1033), 1, + sym_base_type_name, + STATE(1138), 1, + aux_sym_bitstruct_body_repeat1, + STATE(1192), 1, + sym_bitstruct_member_declaration, + STATE(1421), 1, + sym_module_resolution, + STATE(1532), 1, + aux_sym__module_path, + STATE(2202), 1, + sym_base_type, + STATE(1135), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(57), 4, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [27546] = 17, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(2571), 1, + sym_ident, + ACTIONS(2763), 1, + anon_sym_RBRACE, + STATE(989), 1, + sym_module_type_ident, + STATE(1033), 1, + sym_base_type_name, + STATE(1139), 1, + aux_sym_bitstruct_body_repeat1, + STATE(1192), 1, + sym_bitstruct_member_declaration, + STATE(1421), 1, + sym_module_resolution, + STATE(1532), 1, + aux_sym__module_path, + STATE(2202), 1, + sym_base_type, + STATE(1136), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2556), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [26445] = 27, + ACTIONS(57), 4, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [27626] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2540), 1, - anon_sym_AMP, - ACTIONS(2544), 1, - anon_sym_AMP_AMP, - ACTIONS(2546), 1, - anon_sym_PLUS, - ACTIONS(2548), 1, - anon_sym_DASH, - ACTIONS(2550), 1, - anon_sym_LT_LT, - ACTIONS(2552), 1, - anon_sym_GT_GT, - ACTIONS(2554), 1, - anon_sym_STAR, - ACTIONS(2560), 1, - anon_sym_SLASH, - ACTIONS(2562), 1, - anon_sym_PERCENT, - ACTIONS(2564), 1, - anon_sym_PIPE, - ACTIONS(2566), 1, - anon_sym_CARET, - ACTIONS(2568), 1, - anon_sym_EQ_EQ, - ACTIONS(2570), 1, - anon_sym_BANG_EQ, - ACTIONS(2572), 1, - anon_sym_GT, - ACTIONS(2574), 1, - anon_sym_GT_EQ, - ACTIONS(2576), 1, - anon_sym_LT_EQ, - ACTIONS(2578), 1, - anon_sym_LT, - ACTIONS(2580), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2696), 1, - anon_sym_DOT, - STATE(303), 1, - sym__assignment_op, - ACTIONS(2838), 3, - anon_sym_COMMA, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(2571), 1, + sym_ident, + ACTIONS(2765), 1, anon_sym_RPAREN, - anon_sym_SEMI, - STATE(1238), 3, + STATE(989), 1, + sym_module_type_ident, + STATE(1018), 1, + sym_base_type, + STATE(1033), 1, + sym_base_type_name, + STATE(1421), 1, + sym_module_resolution, + STATE(1532), 1, + aux_sym__module_path, + STATE(1623), 1, + sym_enum_param_declaration, + STATE(1892), 1, + sym_type, + STATE(1137), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2556), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [26540] = 27, + ACTIONS(57), 4, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [27706] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2540), 1, - anon_sym_AMP, - ACTIONS(2544), 1, - anon_sym_AMP_AMP, - ACTIONS(2546), 1, - anon_sym_PLUS, - ACTIONS(2548), 1, - anon_sym_DASH, - ACTIONS(2550), 1, - anon_sym_LT_LT, - ACTIONS(2552), 1, - anon_sym_GT_GT, - ACTIONS(2554), 1, - anon_sym_STAR, - ACTIONS(2560), 1, - anon_sym_SLASH, - ACTIONS(2562), 1, - anon_sym_PERCENT, - ACTIONS(2564), 1, - anon_sym_PIPE, - ACTIONS(2566), 1, - anon_sym_CARET, - ACTIONS(2568), 1, - anon_sym_EQ_EQ, - ACTIONS(2570), 1, - anon_sym_BANG_EQ, - ACTIONS(2572), 1, - anon_sym_GT, - ACTIONS(2574), 1, - anon_sym_GT_EQ, - ACTIONS(2576), 1, - anon_sym_LT_EQ, - ACTIONS(2578), 1, - anon_sym_LT, - ACTIONS(2580), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2696), 1, - anon_sym_DOT, - STATE(303), 1, - sym__assignment_op, - ACTIONS(2840), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(1239), 3, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(2571), 1, + sym_ident, + ACTIONS(2767), 1, + anon_sym_RBRACE, + STATE(989), 1, + sym_module_type_ident, + STATE(1033), 1, + sym_base_type_name, + STATE(1142), 1, + aux_sym_bitstruct_body_repeat1, + STATE(1192), 1, + sym_bitstruct_member_declaration, + STATE(1421), 1, + sym_module_resolution, + STATE(1532), 1, + aux_sym__module_path, + STATE(2202), 1, + sym_base_type, + STATE(1138), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2556), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [26635] = 29, + ACTIONS(57), 4, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [27786] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2694), 1, - anon_sym_AMP, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2698), 1, - anon_sym_PLUS, - ACTIONS(2700), 1, - anon_sym_DASH, - ACTIONS(2702), 1, - anon_sym_LT_LT, - ACTIONS(2704), 1, - anon_sym_GT_GT, - ACTIONS(2706), 1, - anon_sym_STAR, - ACTIONS(2708), 1, - anon_sym_SLASH, - ACTIONS(2710), 1, - anon_sym_PERCENT, - ACTIONS(2712), 1, - anon_sym_PIPE, - ACTIONS(2714), 1, - anon_sym_CARET, - ACTIONS(2716), 1, - anon_sym_EQ_EQ, - ACTIONS(2718), 1, - anon_sym_BANG_EQ, - ACTIONS(2720), 1, - anon_sym_GT, - ACTIONS(2722), 1, - anon_sym_GT_EQ, - ACTIONS(2724), 1, - anon_sym_LT_EQ, - ACTIONS(2726), 1, - anon_sym_LT, - ACTIONS(2728), 1, - anon_sym_AMP_AMP, - ACTIONS(2740), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2808), 1, - anon_sym_COMMA, - ACTIONS(2842), 1, - anon_sym_RPAREN, - STATE(288), 1, - sym__assignment_op, - STATE(1742), 1, - aux_sym_assert_stmt_repeat1, - STATE(1240), 3, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(2571), 1, + sym_ident, + ACTIONS(2769), 1, + anon_sym_RBRACE, + STATE(989), 1, + sym_module_type_ident, + STATE(1033), 1, + sym_base_type_name, + STATE(1142), 1, + aux_sym_bitstruct_body_repeat1, + STATE(1192), 1, + sym_bitstruct_member_declaration, + STATE(1421), 1, + sym_module_resolution, + STATE(1532), 1, + aux_sym__module_path, + STATE(2202), 1, + sym_base_type, + STATE(1139), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2556), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [26734] = 27, + ACTIONS(57), 4, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [27866] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2540), 1, - anon_sym_AMP, - ACTIONS(2544), 1, - anon_sym_AMP_AMP, - ACTIONS(2546), 1, - anon_sym_PLUS, - ACTIONS(2548), 1, - anon_sym_DASH, - ACTIONS(2550), 1, - anon_sym_LT_LT, - ACTIONS(2552), 1, - anon_sym_GT_GT, - ACTIONS(2554), 1, - anon_sym_STAR, - ACTIONS(2560), 1, - anon_sym_SLASH, - ACTIONS(2562), 1, - anon_sym_PERCENT, - ACTIONS(2564), 1, - anon_sym_PIPE, - ACTIONS(2566), 1, - anon_sym_CARET, - ACTIONS(2568), 1, - anon_sym_EQ_EQ, - ACTIONS(2570), 1, - anon_sym_BANG_EQ, - ACTIONS(2572), 1, - anon_sym_GT, - ACTIONS(2574), 1, - anon_sym_GT_EQ, - ACTIONS(2576), 1, - anon_sym_LT_EQ, - ACTIONS(2578), 1, - anon_sym_LT, - ACTIONS(2580), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2696), 1, - anon_sym_DOT, - STATE(303), 1, - sym__assignment_op, - ACTIONS(2824), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(1241), 3, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(2571), 1, + sym_ident, + ACTIONS(2771), 1, + anon_sym_LPAREN, + STATE(989), 1, + sym_module_type_ident, + STATE(1018), 1, + sym_base_type, + STATE(1033), 1, + sym_base_type_name, + STATE(1282), 1, + sym_fn_parameter_list, + STATE(1421), 1, + sym_module_resolution, + STATE(1532), 1, + aux_sym__module_path, + STATE(1876), 1, + sym_type, + STATE(1140), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2556), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [26829] = 27, + ACTIONS(57), 4, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [27946] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2540), 1, - anon_sym_AMP, - ACTIONS(2544), 1, - anon_sym_AMP_AMP, - ACTIONS(2546), 1, - anon_sym_PLUS, - ACTIONS(2548), 1, - anon_sym_DASH, - ACTIONS(2550), 1, - anon_sym_LT_LT, - ACTIONS(2552), 1, - anon_sym_GT_GT, - ACTIONS(2554), 1, - anon_sym_STAR, - ACTIONS(2560), 1, - anon_sym_SLASH, - ACTIONS(2562), 1, - anon_sym_PERCENT, - ACTIONS(2564), 1, - anon_sym_PIPE, - ACTIONS(2566), 1, - anon_sym_CARET, - ACTIONS(2568), 1, - anon_sym_EQ_EQ, - ACTIONS(2570), 1, - anon_sym_BANG_EQ, - ACTIONS(2572), 1, - anon_sym_GT, - ACTIONS(2574), 1, - anon_sym_GT_EQ, - ACTIONS(2576), 1, - anon_sym_LT_EQ, - ACTIONS(2578), 1, - anon_sym_LT, - ACTIONS(2580), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2696), 1, - anon_sym_DOT, - STATE(303), 1, - sym__assignment_op, - ACTIONS(2844), 2, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(1242), 3, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(2751), 1, + sym_ident, + ACTIONS(2753), 1, + sym_at_ident, + STATE(989), 1, + sym_module_type_ident, + STATE(1018), 1, + sym_base_type, + STATE(1033), 1, + sym_base_type_name, + STATE(1421), 1, + sym_module_resolution, + STATE(1532), 1, + aux_sym__module_path, + STATE(2134), 1, + sym__func_macro_name, + STATE(2135), 1, + sym_type, + STATE(1141), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2556), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [26923] = 26, + ACTIONS(57), 4, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [28026] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2540), 1, - anon_sym_AMP, - ACTIONS(2544), 1, - anon_sym_AMP_AMP, - ACTIONS(2546), 1, - anon_sym_PLUS, - ACTIONS(2548), 1, - anon_sym_DASH, - ACTIONS(2550), 1, - anon_sym_LT_LT, - ACTIONS(2552), 1, - anon_sym_GT_GT, - ACTIONS(2554), 1, - anon_sym_STAR, - ACTIONS(2560), 1, - anon_sym_SLASH, - ACTIONS(2562), 1, - anon_sym_PERCENT, - ACTIONS(2564), 1, - anon_sym_PIPE, - ACTIONS(2566), 1, - anon_sym_CARET, - ACTIONS(2568), 1, - anon_sym_EQ_EQ, - ACTIONS(2570), 1, - anon_sym_BANG_EQ, - ACTIONS(2572), 1, - anon_sym_GT, - ACTIONS(2574), 1, - anon_sym_GT_EQ, - ACTIONS(2576), 1, - anon_sym_LT_EQ, - ACTIONS(2578), 1, - anon_sym_LT, - ACTIONS(2580), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2594), 1, - anon_sym_EQ, - ACTIONS(2696), 1, - anon_sym_DOT, - STATE(288), 1, - sym__assignment_op, - STATE(1243), 3, + ACTIONS(2773), 1, + sym_ident, + ACTIONS(2776), 1, + sym_type_ident, + ACTIONS(2779), 1, + sym_ct_type_ident, + ACTIONS(2782), 1, + anon_sym_RBRACE, + STATE(989), 1, + sym_module_type_ident, + STATE(1033), 1, + sym_base_type_name, + STATE(1192), 1, + sym_bitstruct_member_declaration, + STATE(1421), 1, + sym_module_resolution, + STATE(1532), 1, + aux_sym__module_path, + STATE(2202), 1, + sym_base_type, + ACTIONS(2787), 4, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + STATE(1142), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2592), 12, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - [27015] = 27, + aux_sym_bitstruct_body_repeat1, + ACTIONS(2784), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [28104] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2694), 1, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(2757), 1, + sym_ident, + ACTIONS(2759), 1, anon_sym_AMP, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2698), 1, - anon_sym_PLUS, - ACTIONS(2700), 1, - anon_sym_DASH, - ACTIONS(2702), 1, - anon_sym_LT_LT, - ACTIONS(2704), 1, - anon_sym_GT_GT, - ACTIONS(2706), 1, - anon_sym_STAR, - ACTIONS(2708), 1, - anon_sym_SLASH, - ACTIONS(2710), 1, - anon_sym_PERCENT, - ACTIONS(2712), 1, - anon_sym_PIPE, - ACTIONS(2714), 1, - anon_sym_CARET, - ACTIONS(2716), 1, - anon_sym_EQ_EQ, - ACTIONS(2718), 1, - anon_sym_BANG_EQ, - ACTIONS(2720), 1, - anon_sym_GT, - ACTIONS(2722), 1, - anon_sym_GT_EQ, - ACTIONS(2724), 1, - anon_sym_LT_EQ, - ACTIONS(2726), 1, - anon_sym_LT, - ACTIONS(2728), 1, - anon_sym_AMP_AMP, - ACTIONS(2740), 1, - anon_sym_PIPE_PIPE, - STATE(288), 1, - sym__assignment_op, - ACTIONS(2838), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1244), 3, + STATE(989), 1, + sym_module_type_ident, + STATE(1033), 1, + sym_base_type_name, + STATE(1330), 1, + sym_base_type, + STATE(1421), 1, + sym_module_resolution, + STATE(1532), 1, + aux_sym__module_path, + STATE(1839), 1, + sym_type, + STATE(1998), 1, + sym_foreach_var, + STATE(1143), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2556), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [27109] = 27, + ACTIONS(57), 4, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [28184] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2694), 1, - anon_sym_AMP, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2698), 1, - anon_sym_PLUS, - ACTIONS(2700), 1, - anon_sym_DASH, - ACTIONS(2702), 1, - anon_sym_LT_LT, - ACTIONS(2704), 1, - anon_sym_GT_GT, - ACTIONS(2706), 1, - anon_sym_STAR, - ACTIONS(2708), 1, - anon_sym_SLASH, - ACTIONS(2710), 1, - anon_sym_PERCENT, - ACTIONS(2712), 1, - anon_sym_PIPE, - ACTIONS(2714), 1, - anon_sym_CARET, - ACTIONS(2716), 1, - anon_sym_EQ_EQ, - ACTIONS(2718), 1, - anon_sym_BANG_EQ, - ACTIONS(2720), 1, - anon_sym_GT, - ACTIONS(2722), 1, - anon_sym_GT_EQ, - ACTIONS(2724), 1, - anon_sym_LT_EQ, - ACTIONS(2726), 1, - anon_sym_LT, - ACTIONS(2728), 1, - anon_sym_AMP_AMP, - ACTIONS(2740), 1, - anon_sym_PIPE_PIPE, - STATE(288), 1, - sym__assignment_op, - ACTIONS(2824), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1245), 3, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(2571), 1, + sym_ident, + STATE(989), 1, + sym_module_type_ident, + STATE(1018), 1, + sym_base_type, + STATE(1033), 1, + sym_base_type_name, + STATE(1421), 1, + sym_module_resolution, + STATE(1532), 1, + aux_sym__module_path, + STATE(1751), 1, + sym_enum_param_declaration, + STATE(1892), 1, + sym_type, + STATE(1144), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2556), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [27203] = 28, + ACTIONS(57), 4, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [28261] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2540), 1, - anon_sym_AMP, - ACTIONS(2542), 1, - anon_sym_DOT, - ACTIONS(2544), 1, - anon_sym_AMP_AMP, - ACTIONS(2546), 1, - anon_sym_PLUS, - ACTIONS(2548), 1, - anon_sym_DASH, - ACTIONS(2550), 1, - anon_sym_LT_LT, - ACTIONS(2552), 1, - anon_sym_GT_GT, - ACTIONS(2554), 1, - anon_sym_STAR, - ACTIONS(2560), 1, - anon_sym_SLASH, - ACTIONS(2562), 1, - anon_sym_PERCENT, - ACTIONS(2564), 1, - anon_sym_PIPE, - ACTIONS(2566), 1, - anon_sym_CARET, - ACTIONS(2568), 1, - anon_sym_EQ_EQ, - ACTIONS(2570), 1, - anon_sym_BANG_EQ, - ACTIONS(2572), 1, - anon_sym_GT, - ACTIONS(2574), 1, - anon_sym_GT_EQ, - ACTIONS(2576), 1, - anon_sym_LT_EQ, - ACTIONS(2578), 1, - anon_sym_LT, - ACTIONS(2580), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2846), 1, - anon_sym_RBRACK, - ACTIONS(2848), 1, - anon_sym_DOT_DOT, - STATE(303), 1, - sym__assignment_op, - STATE(1246), 3, + ACTIONS(77), 1, + sym_type_ident, + ACTIONS(2553), 1, + sym_ct_type_ident, + ACTIONS(2571), 1, + sym_ident, + ACTIONS(2790), 1, + sym_const_ident, + STATE(1199), 1, + sym_base_type, + STATE(1200), 1, + sym_module_type_ident, + STATE(1208), 1, + sym_base_type_name, + STATE(1421), 1, + sym_module_resolution, + STATE(1558), 1, + aux_sym__module_path, + STATE(2080), 1, + sym_type, + STATE(1145), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2556), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [27299] = 27, + ACTIONS(2792), 4, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(137), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [28338] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2694), 1, - anon_sym_AMP, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2698), 1, - anon_sym_PLUS, - ACTIONS(2700), 1, - anon_sym_DASH, - ACTIONS(2702), 1, - anon_sym_LT_LT, - ACTIONS(2704), 1, - anon_sym_GT_GT, - ACTIONS(2706), 1, - anon_sym_STAR, - ACTIONS(2708), 1, - anon_sym_SLASH, - ACTIONS(2710), 1, - anon_sym_PERCENT, - ACTIONS(2712), 1, - anon_sym_PIPE, - ACTIONS(2714), 1, - anon_sym_CARET, - ACTIONS(2716), 1, - anon_sym_EQ_EQ, - ACTIONS(2718), 1, - anon_sym_BANG_EQ, - ACTIONS(2720), 1, - anon_sym_GT, - ACTIONS(2722), 1, - anon_sym_GT_EQ, - ACTIONS(2724), 1, - anon_sym_LT_EQ, - ACTIONS(2726), 1, - anon_sym_LT, - ACTIONS(2728), 1, - anon_sym_AMP_AMP, - ACTIONS(2740), 1, - anon_sym_PIPE_PIPE, - STATE(288), 1, - sym__assignment_op, - ACTIONS(2844), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1247), 3, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(2571), 1, + sym_ident, + ACTIONS(2794), 1, + anon_sym_inline, + STATE(989), 1, + sym_module_type_ident, + STATE(1018), 1, + sym_base_type, + STATE(1033), 1, + sym_base_type_name, + STATE(1421), 1, + sym_module_resolution, + STATE(1532), 1, + aux_sym__module_path, + STATE(1981), 1, + sym_type, + STATE(1146), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2556), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [27393] = 28, + ACTIONS(57), 4, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [28415] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2540), 1, - anon_sym_AMP, - ACTIONS(2542), 1, - anon_sym_DOT, - ACTIONS(2544), 1, - anon_sym_AMP_AMP, - ACTIONS(2546), 1, - anon_sym_PLUS, - ACTIONS(2548), 1, - anon_sym_DASH, - ACTIONS(2550), 1, - anon_sym_LT_LT, - ACTIONS(2552), 1, - anon_sym_GT_GT, - ACTIONS(2554), 1, - anon_sym_STAR, - ACTIONS(2560), 1, - anon_sym_SLASH, - ACTIONS(2562), 1, - anon_sym_PERCENT, - ACTIONS(2564), 1, - anon_sym_PIPE, - ACTIONS(2566), 1, - anon_sym_CARET, - ACTIONS(2568), 1, - anon_sym_EQ_EQ, - ACTIONS(2570), 1, - anon_sym_BANG_EQ, - ACTIONS(2572), 1, - anon_sym_GT, - ACTIONS(2574), 1, - anon_sym_GT_EQ, - ACTIONS(2576), 1, - anon_sym_LT_EQ, - ACTIONS(2578), 1, - anon_sym_LT, - ACTIONS(2580), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2850), 1, - anon_sym_COLON, - ACTIONS(2852), 1, - anon_sym_DOT_DOT, - STATE(303), 1, - sym__assignment_op, - STATE(1248), 3, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(2571), 1, + sym_ident, + ACTIONS(2796), 1, + anon_sym_inline, + STATE(989), 1, + sym_module_type_ident, + STATE(1018), 1, + sym_base_type, + STATE(1033), 1, + sym_base_type_name, + STATE(1421), 1, + sym_module_resolution, + STATE(1532), 1, + aux_sym__module_path, + STATE(2154), 1, + sym_type, + STATE(1147), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2556), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [27489] = 27, + ACTIONS(57), 4, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [28492] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2694), 1, - anon_sym_AMP, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2698), 1, - anon_sym_PLUS, - ACTIONS(2700), 1, - anon_sym_DASH, - ACTIONS(2702), 1, - anon_sym_LT_LT, - ACTIONS(2704), 1, - anon_sym_GT_GT, - ACTIONS(2706), 1, - anon_sym_STAR, - ACTIONS(2708), 1, - anon_sym_SLASH, - ACTIONS(2710), 1, - anon_sym_PERCENT, - ACTIONS(2712), 1, - anon_sym_PIPE, - ACTIONS(2714), 1, - anon_sym_CARET, - ACTIONS(2716), 1, - anon_sym_EQ_EQ, - ACTIONS(2718), 1, - anon_sym_BANG_EQ, - ACTIONS(2720), 1, - anon_sym_GT, - ACTIONS(2722), 1, - anon_sym_GT_EQ, - ACTIONS(2724), 1, - anon_sym_LT_EQ, - ACTIONS(2726), 1, - anon_sym_LT, - ACTIONS(2728), 1, - anon_sym_AMP_AMP, - ACTIONS(2740), 1, - anon_sym_PIPE_PIPE, - STATE(288), 1, - sym__assignment_op, - ACTIONS(2820), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1249), 3, + ACTIONS(77), 1, + sym_type_ident, + ACTIONS(2553), 1, + sym_ct_type_ident, + ACTIONS(2571), 1, + sym_ident, + ACTIONS(2798), 1, + sym_const_ident, + STATE(1199), 1, + sym_base_type, + STATE(1200), 1, + sym_module_type_ident, + STATE(1208), 1, + sym_base_type_name, + STATE(1421), 1, + sym_module_resolution, + STATE(1558), 1, + aux_sym__module_path, + STATE(2140), 1, + sym_type, + STATE(1148), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2556), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [27583] = 27, + ACTIONS(2792), 4, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(137), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [28569] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2694), 1, - anon_sym_AMP, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2698), 1, - anon_sym_PLUS, - ACTIONS(2700), 1, - anon_sym_DASH, - ACTIONS(2702), 1, - anon_sym_LT_LT, - ACTIONS(2704), 1, - anon_sym_GT_GT, - ACTIONS(2706), 1, - anon_sym_STAR, - ACTIONS(2708), 1, - anon_sym_SLASH, - ACTIONS(2710), 1, - anon_sym_PERCENT, - ACTIONS(2712), 1, - anon_sym_PIPE, - ACTIONS(2714), 1, - anon_sym_CARET, - ACTIONS(2716), 1, - anon_sym_EQ_EQ, - ACTIONS(2718), 1, - anon_sym_BANG_EQ, - ACTIONS(2720), 1, - anon_sym_GT, - ACTIONS(2722), 1, - anon_sym_GT_EQ, - ACTIONS(2724), 1, - anon_sym_LT_EQ, - ACTIONS(2726), 1, - anon_sym_LT, - ACTIONS(2728), 1, - anon_sym_AMP_AMP, - ACTIONS(2740), 1, - anon_sym_PIPE_PIPE, - STATE(288), 1, - sym__assignment_op, - ACTIONS(2854), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1250), 3, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(2571), 1, + sym_ident, + STATE(989), 1, + sym_module_type_ident, + STATE(1018), 1, + sym_base_type, + STATE(1033), 1, + sym_base_type_name, + STATE(1141), 1, + sym_type, + STATE(1421), 1, + sym_module_resolution, + STATE(1532), 1, + aux_sym__module_path, + STATE(1835), 1, + sym_func_header, + STATE(1149), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2556), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [27677] = 27, + ACTIONS(57), 4, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [28646] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2694), 1, - anon_sym_AMP, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2698), 1, - anon_sym_PLUS, - ACTIONS(2700), 1, - anon_sym_DASH, - ACTIONS(2702), 1, - anon_sym_LT_LT, - ACTIONS(2704), 1, - anon_sym_GT_GT, - ACTIONS(2706), 1, - anon_sym_STAR, - ACTIONS(2708), 1, - anon_sym_SLASH, - ACTIONS(2710), 1, - anon_sym_PERCENT, - ACTIONS(2712), 1, - anon_sym_PIPE, - ACTIONS(2714), 1, - anon_sym_CARET, - ACTIONS(2716), 1, - anon_sym_EQ_EQ, - ACTIONS(2718), 1, - anon_sym_BANG_EQ, - ACTIONS(2720), 1, - anon_sym_GT, - ACTIONS(2722), 1, - anon_sym_GT_EQ, - ACTIONS(2724), 1, - anon_sym_LT_EQ, - ACTIONS(2726), 1, - anon_sym_LT, - ACTIONS(2728), 1, - anon_sym_AMP_AMP, - ACTIONS(2740), 1, - anon_sym_PIPE_PIPE, - STATE(288), 1, - sym__assignment_op, - ACTIONS(2856), 2, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - STATE(1251), 3, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(2571), 1, + sym_ident, + STATE(989), 1, + sym_module_type_ident, + STATE(1018), 1, + sym_base_type, + STATE(1033), 1, + sym_base_type_name, + STATE(1141), 1, + sym_type, + STATE(1421), 1, + sym_module_resolution, + STATE(1532), 1, + aux_sym__module_path, + STATE(1775), 1, + sym_func_header, + STATE(1150), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2556), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [27771] = 27, + ACTIONS(57), 4, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [28723] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2694), 1, - anon_sym_AMP, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2698), 1, - anon_sym_PLUS, - ACTIONS(2700), 1, - anon_sym_DASH, - ACTIONS(2702), 1, - anon_sym_LT_LT, - ACTIONS(2704), 1, - anon_sym_GT_GT, - ACTIONS(2706), 1, - anon_sym_STAR, - ACTIONS(2708), 1, - anon_sym_SLASH, - ACTIONS(2710), 1, - anon_sym_PERCENT, - ACTIONS(2712), 1, - anon_sym_PIPE, - ACTIONS(2714), 1, - anon_sym_CARET, - ACTIONS(2716), 1, - anon_sym_EQ_EQ, - ACTIONS(2718), 1, - anon_sym_BANG_EQ, - ACTIONS(2720), 1, - anon_sym_GT, - ACTIONS(2722), 1, - anon_sym_GT_EQ, - ACTIONS(2724), 1, - anon_sym_LT_EQ, - ACTIONS(2726), 1, - anon_sym_LT, - ACTIONS(2728), 1, - anon_sym_AMP_AMP, - ACTIONS(2740), 1, - anon_sym_PIPE_PIPE, - STATE(288), 1, - sym__assignment_op, - ACTIONS(2840), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1252), 3, + ACTIONS(77), 1, + sym_type_ident, + ACTIONS(2553), 1, + sym_ct_type_ident, + ACTIONS(2571), 1, + sym_ident, + ACTIONS(2800), 1, + sym_const_ident, + STATE(1199), 1, + sym_base_type, + STATE(1200), 1, + sym_module_type_ident, + STATE(1208), 1, + sym_base_type_name, + STATE(1421), 1, + sym_module_resolution, + STATE(1558), 1, + aux_sym__module_path, + STATE(1987), 1, + sym_type, + STATE(1151), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2556), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [27865] = 27, + ACTIONS(2792), 4, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(137), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [28800] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2540), 1, - anon_sym_AMP, - ACTIONS(2544), 1, - anon_sym_AMP_AMP, - ACTIONS(2546), 1, - anon_sym_PLUS, - ACTIONS(2548), 1, - anon_sym_DASH, - ACTIONS(2550), 1, - anon_sym_LT_LT, - ACTIONS(2552), 1, - anon_sym_GT_GT, - ACTIONS(2554), 1, - anon_sym_STAR, - ACTIONS(2560), 1, - anon_sym_SLASH, - ACTIONS(2562), 1, - anon_sym_PERCENT, - ACTIONS(2564), 1, - anon_sym_PIPE, - ACTIONS(2566), 1, - anon_sym_CARET, - ACTIONS(2568), 1, - anon_sym_EQ_EQ, - ACTIONS(2570), 1, - anon_sym_BANG_EQ, - ACTIONS(2572), 1, - anon_sym_GT, - ACTIONS(2574), 1, - anon_sym_GT_EQ, - ACTIONS(2576), 1, - anon_sym_LT_EQ, - ACTIONS(2578), 1, - anon_sym_LT, - ACTIONS(2580), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2858), 1, - anon_sym_SEMI, - STATE(303), 1, - sym__assignment_op, - STATE(1253), 3, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(2571), 1, + sym_ident, + ACTIONS(2802), 1, + anon_sym_inline, + STATE(989), 1, + sym_module_type_ident, + STATE(1018), 1, + sym_base_type, + STATE(1033), 1, + sym_base_type_name, + STATE(1421), 1, + sym_module_resolution, + STATE(1532), 1, + aux_sym__module_path, + STATE(2204), 1, + sym_type, + STATE(1152), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2556), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [27958] = 27, + ACTIONS(57), 4, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [28877] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2540), 1, - anon_sym_AMP, - ACTIONS(2544), 1, - anon_sym_AMP_AMP, - ACTIONS(2546), 1, - anon_sym_PLUS, - ACTIONS(2548), 1, - anon_sym_DASH, - ACTIONS(2550), 1, - anon_sym_LT_LT, - ACTIONS(2552), 1, - anon_sym_GT_GT, - ACTIONS(2554), 1, - anon_sym_STAR, - ACTIONS(2560), 1, - anon_sym_SLASH, - ACTIONS(2562), 1, - anon_sym_PERCENT, - ACTIONS(2564), 1, - anon_sym_PIPE, - ACTIONS(2566), 1, - anon_sym_CARET, - ACTIONS(2568), 1, - anon_sym_EQ_EQ, - ACTIONS(2570), 1, - anon_sym_BANG_EQ, - ACTIONS(2572), 1, - anon_sym_GT, - ACTIONS(2574), 1, - anon_sym_GT_EQ, - ACTIONS(2576), 1, - anon_sym_LT_EQ, - ACTIONS(2578), 1, - anon_sym_LT, - ACTIONS(2580), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2860), 1, - anon_sym_SEMI, - STATE(303), 1, - sym__assignment_op, - STATE(1254), 3, + ACTIONS(77), 1, + sym_type_ident, + ACTIONS(2553), 1, + sym_ct_type_ident, + ACTIONS(2571), 1, + sym_ident, + ACTIONS(2804), 1, + sym_const_ident, + STATE(1199), 1, + sym_base_type, + STATE(1200), 1, + sym_module_type_ident, + STATE(1208), 1, + sym_base_type_name, + STATE(1421), 1, + sym_module_resolution, + STATE(1558), 1, + aux_sym__module_path, + STATE(2198), 1, + sym_type, + STATE(1153), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2556), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [28051] = 27, + ACTIONS(2792), 4, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(137), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [28954] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2694), 1, - anon_sym_AMP, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2698), 1, - anon_sym_PLUS, - ACTIONS(2700), 1, - anon_sym_DASH, - ACTIONS(2702), 1, - anon_sym_LT_LT, - ACTIONS(2704), 1, - anon_sym_GT_GT, - ACTIONS(2706), 1, - anon_sym_STAR, - ACTIONS(2708), 1, - anon_sym_SLASH, - ACTIONS(2710), 1, - anon_sym_PERCENT, - ACTIONS(2712), 1, - anon_sym_PIPE, - ACTIONS(2714), 1, - anon_sym_CARET, - ACTIONS(2716), 1, - anon_sym_EQ_EQ, - ACTIONS(2718), 1, - anon_sym_BANG_EQ, - ACTIONS(2720), 1, - anon_sym_GT, - ACTIONS(2722), 1, - anon_sym_GT_EQ, - ACTIONS(2724), 1, - anon_sym_LT_EQ, - ACTIONS(2726), 1, - anon_sym_LT, - ACTIONS(2728), 1, - anon_sym_AMP_AMP, - ACTIONS(2740), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2822), 1, - anon_sym_RPAREN, - STATE(288), 1, - sym__assignment_op, - STATE(1255), 3, + ACTIONS(77), 1, + sym_type_ident, + ACTIONS(2553), 1, + sym_ct_type_ident, + ACTIONS(2571), 1, + sym_ident, + ACTIONS(2806), 1, + sym_const_ident, + STATE(1199), 1, + sym_base_type, + STATE(1200), 1, + sym_module_type_ident, + STATE(1208), 1, + sym_base_type_name, + STATE(1421), 1, + sym_module_resolution, + STATE(1558), 1, + aux_sym__module_path, + STATE(2169), 1, + sym_type, + STATE(1154), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2556), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [28144] = 27, + ACTIONS(2792), 4, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(137), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [29031] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2540), 1, - anon_sym_AMP, - ACTIONS(2544), 1, - anon_sym_AMP_AMP, - ACTIONS(2546), 1, - anon_sym_PLUS, - ACTIONS(2548), 1, - anon_sym_DASH, - ACTIONS(2550), 1, - anon_sym_LT_LT, - ACTIONS(2552), 1, - anon_sym_GT_GT, - ACTIONS(2554), 1, - anon_sym_STAR, - ACTIONS(2560), 1, - anon_sym_SLASH, - ACTIONS(2562), 1, - anon_sym_PERCENT, - ACTIONS(2564), 1, - anon_sym_PIPE, - ACTIONS(2566), 1, - anon_sym_CARET, - ACTIONS(2568), 1, - anon_sym_EQ_EQ, - ACTIONS(2570), 1, - anon_sym_BANG_EQ, - ACTIONS(2572), 1, - anon_sym_GT, - ACTIONS(2574), 1, - anon_sym_GT_EQ, - ACTIONS(2576), 1, - anon_sym_LT_EQ, - ACTIONS(2578), 1, - anon_sym_LT, - ACTIONS(2580), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2862), 1, - anon_sym_SEMI, - STATE(303), 1, - sym__assignment_op, - STATE(1256), 3, + ACTIONS(77), 1, + sym_type_ident, + ACTIONS(2553), 1, + sym_ct_type_ident, + ACTIONS(2571), 1, + sym_ident, + ACTIONS(2808), 1, + sym_const_ident, + STATE(1199), 1, + sym_base_type, + STATE(1200), 1, + sym_module_type_ident, + STATE(1208), 1, + sym_base_type_name, + STATE(1421), 1, + sym_module_resolution, + STATE(1558), 1, + aux_sym__module_path, + STATE(2111), 1, + sym_type, + STATE(1155), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2556), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [28237] = 6, + ACTIONS(2792), 4, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(137), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [29108] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1257), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2866), 7, + ACTIONS(77), 1, sym_type_ident, + ACTIONS(2553), 1, sym_ct_type_ident, - anon_sym_RBRACE, + ACTIONS(2571), 1, + sym_ident, + ACTIONS(2810), 1, + sym_const_ident, + STATE(1199), 1, + sym_base_type, + STATE(1200), 1, + sym_module_type_ident, + STATE(1208), 1, + sym_base_type_name, + STATE(1421), 1, + sym_module_resolution, + STATE(1558), 1, + aux_sym__module_path, + STATE(2043), 1, + sym_type, + STATE(1156), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2792), 4, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2864), 25, - sym_ident, + ACTIONS(137), 24, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -152210,1602 +143592,1139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [28288] = 27, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2540), 1, - anon_sym_AMP, - ACTIONS(2544), 1, - anon_sym_AMP_AMP, - ACTIONS(2546), 1, - anon_sym_PLUS, - ACTIONS(2548), 1, - anon_sym_DASH, - ACTIONS(2550), 1, - anon_sym_LT_LT, - ACTIONS(2552), 1, - anon_sym_GT_GT, - ACTIONS(2554), 1, - anon_sym_STAR, - ACTIONS(2560), 1, - anon_sym_SLASH, - ACTIONS(2562), 1, - anon_sym_PERCENT, - ACTIONS(2564), 1, - anon_sym_PIPE, - ACTIONS(2566), 1, - anon_sym_CARET, - ACTIONS(2568), 1, - anon_sym_EQ_EQ, - ACTIONS(2570), 1, - anon_sym_BANG_EQ, - ACTIONS(2572), 1, - anon_sym_GT, - ACTIONS(2574), 1, - anon_sym_GT_EQ, - ACTIONS(2576), 1, - anon_sym_LT_EQ, - ACTIONS(2578), 1, - anon_sym_LT, - ACTIONS(2580), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2868), 1, - anon_sym_SEMI, - STATE(303), 1, - sym__assignment_op, - STATE(1258), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2556), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [28381] = 27, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2694), 1, - anon_sym_AMP, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2698), 1, - anon_sym_PLUS, - ACTIONS(2700), 1, - anon_sym_DASH, - ACTIONS(2702), 1, - anon_sym_LT_LT, - ACTIONS(2704), 1, - anon_sym_GT_GT, - ACTIONS(2706), 1, - anon_sym_STAR, - ACTIONS(2708), 1, - anon_sym_SLASH, - ACTIONS(2710), 1, - anon_sym_PERCENT, - ACTIONS(2712), 1, - anon_sym_PIPE, - ACTIONS(2714), 1, - anon_sym_CARET, - ACTIONS(2716), 1, - anon_sym_EQ_EQ, - ACTIONS(2718), 1, - anon_sym_BANG_EQ, - ACTIONS(2720), 1, - anon_sym_GT, - ACTIONS(2722), 1, - anon_sym_GT_EQ, - ACTIONS(2724), 1, - anon_sym_LT_EQ, - ACTIONS(2726), 1, - anon_sym_LT, - ACTIONS(2728), 1, - anon_sym_AMP_AMP, - ACTIONS(2740), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2870), 1, - anon_sym_RPAREN, - STATE(288), 1, - sym__assignment_op, - STATE(1259), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2556), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [28474] = 27, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2540), 1, - anon_sym_AMP, - ACTIONS(2544), 1, - anon_sym_AMP_AMP, - ACTIONS(2546), 1, - anon_sym_PLUS, - ACTIONS(2548), 1, - anon_sym_DASH, - ACTIONS(2550), 1, - anon_sym_LT_LT, - ACTIONS(2552), 1, - anon_sym_GT_GT, - ACTIONS(2554), 1, - anon_sym_STAR, - ACTIONS(2560), 1, - anon_sym_SLASH, - ACTIONS(2562), 1, - anon_sym_PERCENT, - ACTIONS(2564), 1, - anon_sym_PIPE, - ACTIONS(2566), 1, - anon_sym_CARET, - ACTIONS(2568), 1, - anon_sym_EQ_EQ, - ACTIONS(2570), 1, - anon_sym_BANG_EQ, - ACTIONS(2572), 1, - anon_sym_GT, - ACTIONS(2574), 1, - anon_sym_GT_EQ, - ACTIONS(2576), 1, - anon_sym_LT_EQ, - ACTIONS(2578), 1, - anon_sym_LT, - ACTIONS(2580), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2872), 1, - anon_sym_RBRACK, - STATE(303), 1, - sym__assignment_op, - STATE(1260), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2556), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [28567] = 27, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2694), 1, - anon_sym_AMP, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2698), 1, - anon_sym_PLUS, - ACTIONS(2700), 1, - anon_sym_DASH, - ACTIONS(2702), 1, - anon_sym_LT_LT, - ACTIONS(2704), 1, - anon_sym_GT_GT, - ACTIONS(2706), 1, - anon_sym_STAR, - ACTIONS(2708), 1, - anon_sym_SLASH, - ACTIONS(2710), 1, - anon_sym_PERCENT, - ACTIONS(2712), 1, - anon_sym_PIPE, - ACTIONS(2714), 1, - anon_sym_CARET, - ACTIONS(2716), 1, - anon_sym_EQ_EQ, - ACTIONS(2718), 1, - anon_sym_BANG_EQ, - ACTIONS(2720), 1, - anon_sym_GT, - ACTIONS(2722), 1, - anon_sym_GT_EQ, - ACTIONS(2724), 1, - anon_sym_LT_EQ, - ACTIONS(2726), 1, - anon_sym_LT, - ACTIONS(2728), 1, - anon_sym_AMP_AMP, - ACTIONS(2740), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2874), 1, - anon_sym_RPAREN, - STATE(288), 1, - sym__assignment_op, - STATE(1261), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2556), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [28660] = 27, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2694), 1, - anon_sym_AMP, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2698), 1, - anon_sym_PLUS, - ACTIONS(2700), 1, - anon_sym_DASH, - ACTIONS(2702), 1, - anon_sym_LT_LT, - ACTIONS(2704), 1, - anon_sym_GT_GT, - ACTIONS(2706), 1, - anon_sym_STAR, - ACTIONS(2708), 1, - anon_sym_SLASH, - ACTIONS(2710), 1, - anon_sym_PERCENT, - ACTIONS(2712), 1, - anon_sym_PIPE, - ACTIONS(2714), 1, - anon_sym_CARET, - ACTIONS(2716), 1, - anon_sym_EQ_EQ, - ACTIONS(2718), 1, - anon_sym_BANG_EQ, - ACTIONS(2720), 1, - anon_sym_GT, - ACTIONS(2722), 1, - anon_sym_GT_EQ, - ACTIONS(2724), 1, - anon_sym_LT_EQ, - ACTIONS(2726), 1, - anon_sym_LT, - ACTIONS(2728), 1, - anon_sym_AMP_AMP, - ACTIONS(2740), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2876), 1, - anon_sym_RPAREN, - STATE(288), 1, - sym__assignment_op, - STATE(1262), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2556), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [28753] = 27, + [29185] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2694), 1, - anon_sym_AMP, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2698), 1, - anon_sym_PLUS, - ACTIONS(2700), 1, - anon_sym_DASH, - ACTIONS(2702), 1, - anon_sym_LT_LT, - ACTIONS(2704), 1, - anon_sym_GT_GT, - ACTIONS(2706), 1, - anon_sym_STAR, - ACTIONS(2708), 1, - anon_sym_SLASH, - ACTIONS(2710), 1, - anon_sym_PERCENT, - ACTIONS(2712), 1, - anon_sym_PIPE, - ACTIONS(2714), 1, - anon_sym_CARET, - ACTIONS(2716), 1, - anon_sym_EQ_EQ, - ACTIONS(2718), 1, - anon_sym_BANG_EQ, - ACTIONS(2720), 1, - anon_sym_GT, - ACTIONS(2722), 1, - anon_sym_GT_EQ, - ACTIONS(2724), 1, - anon_sym_LT_EQ, - ACTIONS(2726), 1, - anon_sym_LT, - ACTIONS(2728), 1, - anon_sym_AMP_AMP, - ACTIONS(2740), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2878), 1, - anon_sym_RPAREN, - STATE(288), 1, - sym__assignment_op, - STATE(1263), 3, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(2571), 1, + sym_ident, + STATE(989), 1, + sym_module_type_ident, + STATE(1018), 1, + sym_base_type, + STATE(1033), 1, + sym_base_type_name, + STATE(1286), 1, + sym_type, + STATE(1421), 1, + sym_module_resolution, + STATE(1532), 1, + aux_sym__module_path, + STATE(1157), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2556), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [28846] = 27, + ACTIONS(57), 4, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [29259] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2694), 1, - anon_sym_AMP, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2698), 1, - anon_sym_PLUS, - ACTIONS(2700), 1, - anon_sym_DASH, - ACTIONS(2702), 1, - anon_sym_LT_LT, - ACTIONS(2704), 1, - anon_sym_GT_GT, - ACTIONS(2706), 1, - anon_sym_STAR, - ACTIONS(2708), 1, - anon_sym_SLASH, - ACTIONS(2710), 1, - anon_sym_PERCENT, - ACTIONS(2712), 1, - anon_sym_PIPE, - ACTIONS(2714), 1, - anon_sym_CARET, - ACTIONS(2716), 1, - anon_sym_EQ_EQ, - ACTIONS(2718), 1, - anon_sym_BANG_EQ, - ACTIONS(2720), 1, - anon_sym_GT, - ACTIONS(2722), 1, - anon_sym_GT_EQ, - ACTIONS(2724), 1, - anon_sym_LT_EQ, - ACTIONS(2726), 1, - anon_sym_LT, - ACTIONS(2728), 1, - anon_sym_AMP_AMP, - ACTIONS(2740), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2880), 1, - anon_sym_RPAREN, - STATE(288), 1, - sym__assignment_op, - STATE(1264), 3, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(2571), 1, + sym_ident, + STATE(989), 1, + sym_module_type_ident, + STATE(1018), 1, + sym_base_type, + STATE(1033), 1, + sym_base_type_name, + STATE(1421), 1, + sym_module_resolution, + STATE(1532), 1, + aux_sym__module_path, + STATE(1805), 1, + sym_type, + STATE(1158), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2556), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [28939] = 27, + ACTIONS(57), 4, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [29333] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2540), 1, - anon_sym_AMP, - ACTIONS(2544), 1, - anon_sym_AMP_AMP, - ACTIONS(2546), 1, - anon_sym_PLUS, - ACTIONS(2548), 1, - anon_sym_DASH, - ACTIONS(2550), 1, - anon_sym_LT_LT, - ACTIONS(2552), 1, - anon_sym_GT_GT, - ACTIONS(2554), 1, - anon_sym_STAR, - ACTIONS(2560), 1, - anon_sym_SLASH, - ACTIONS(2562), 1, - anon_sym_PERCENT, - ACTIONS(2564), 1, - anon_sym_PIPE, - ACTIONS(2566), 1, - anon_sym_CARET, - ACTIONS(2568), 1, - anon_sym_EQ_EQ, - ACTIONS(2570), 1, - anon_sym_BANG_EQ, - ACTIONS(2572), 1, - anon_sym_GT, - ACTIONS(2574), 1, - anon_sym_GT_EQ, - ACTIONS(2576), 1, - anon_sym_LT_EQ, - ACTIONS(2578), 1, - anon_sym_LT, - ACTIONS(2580), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2826), 1, - anon_sym_SEMI, - STATE(303), 1, - sym__assignment_op, - STATE(1265), 3, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(2571), 1, + sym_ident, + STATE(989), 1, + sym_module_type_ident, + STATE(1018), 1, + sym_base_type, + STATE(1033), 1, + sym_base_type_name, + STATE(1421), 1, + sym_module_resolution, + STATE(1532), 1, + aux_sym__module_path, + STATE(2168), 1, + sym_type, + STATE(1159), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2556), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [29032] = 27, + ACTIONS(57), 4, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [29407] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2540), 1, - anon_sym_AMP, - ACTIONS(2544), 1, - anon_sym_AMP_AMP, - ACTIONS(2546), 1, - anon_sym_PLUS, - ACTIONS(2548), 1, - anon_sym_DASH, - ACTIONS(2550), 1, - anon_sym_LT_LT, - ACTIONS(2552), 1, - anon_sym_GT_GT, - ACTIONS(2554), 1, - anon_sym_STAR, - ACTIONS(2560), 1, - anon_sym_SLASH, - ACTIONS(2562), 1, - anon_sym_PERCENT, - ACTIONS(2564), 1, - anon_sym_PIPE, - ACTIONS(2566), 1, - anon_sym_CARET, - ACTIONS(2568), 1, - anon_sym_EQ_EQ, - ACTIONS(2570), 1, - anon_sym_BANG_EQ, - ACTIONS(2572), 1, - anon_sym_GT, - ACTIONS(2574), 1, - anon_sym_GT_EQ, - ACTIONS(2576), 1, - anon_sym_LT_EQ, - ACTIONS(2578), 1, - anon_sym_LT, - ACTIONS(2580), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2882), 1, - anon_sym_SEMI, - STATE(303), 1, - sym__assignment_op, - STATE(1266), 3, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(2571), 1, + sym_ident, + STATE(989), 1, + sym_module_type_ident, + STATE(1018), 1, + sym_base_type, + STATE(1033), 1, + sym_base_type_name, + STATE(1274), 1, + sym_type, + STATE(1421), 1, + sym_module_resolution, + STATE(1532), 1, + aux_sym__module_path, + STATE(1160), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2556), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [29125] = 27, + ACTIONS(57), 4, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [29481] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2540), 1, - anon_sym_AMP, - ACTIONS(2544), 1, - anon_sym_AMP_AMP, - ACTIONS(2546), 1, - anon_sym_PLUS, - ACTIONS(2548), 1, - anon_sym_DASH, - ACTIONS(2550), 1, - anon_sym_LT_LT, - ACTIONS(2552), 1, - anon_sym_GT_GT, - ACTIONS(2554), 1, - anon_sym_STAR, - ACTIONS(2560), 1, - anon_sym_SLASH, - ACTIONS(2562), 1, - anon_sym_PERCENT, - ACTIONS(2564), 1, - anon_sym_PIPE, - ACTIONS(2566), 1, - anon_sym_CARET, - ACTIONS(2568), 1, - anon_sym_EQ_EQ, - ACTIONS(2570), 1, - anon_sym_BANG_EQ, - ACTIONS(2572), 1, - anon_sym_GT, - ACTIONS(2574), 1, - anon_sym_GT_EQ, - ACTIONS(2576), 1, - anon_sym_LT_EQ, - ACTIONS(2578), 1, - anon_sym_LT, - ACTIONS(2580), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2592), 1, - anon_sym_SEMI, - ACTIONS(2696), 1, - anon_sym_DOT, - STATE(303), 1, - sym__assignment_op, - STATE(1267), 3, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(2571), 1, + sym_ident, + STATE(989), 1, + sym_module_type_ident, + STATE(1018), 1, + sym_base_type, + STATE(1033), 1, + sym_base_type_name, + STATE(1421), 1, + sym_module_resolution, + STATE(1532), 1, + aux_sym__module_path, + STATE(1981), 1, + sym_type, + STATE(1161), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2556), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [29218] = 27, + ACTIONS(57), 4, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [29555] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2694), 1, - anon_sym_AMP, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2698), 1, - anon_sym_PLUS, - ACTIONS(2700), 1, - anon_sym_DASH, - ACTIONS(2702), 1, - anon_sym_LT_LT, - ACTIONS(2704), 1, - anon_sym_GT_GT, - ACTIONS(2706), 1, - anon_sym_STAR, - ACTIONS(2708), 1, - anon_sym_SLASH, - ACTIONS(2710), 1, - anon_sym_PERCENT, - ACTIONS(2712), 1, - anon_sym_PIPE, - ACTIONS(2714), 1, - anon_sym_CARET, - ACTIONS(2716), 1, - anon_sym_EQ_EQ, - ACTIONS(2718), 1, - anon_sym_BANG_EQ, - ACTIONS(2720), 1, - anon_sym_GT, - ACTIONS(2722), 1, - anon_sym_GT_EQ, - ACTIONS(2724), 1, - anon_sym_LT_EQ, - ACTIONS(2726), 1, - anon_sym_LT, - ACTIONS(2728), 1, - anon_sym_AMP_AMP, - ACTIONS(2740), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2884), 1, - anon_sym_RPAREN, - STATE(288), 1, - sym__assignment_op, - STATE(1268), 3, + ACTIONS(77), 1, + sym_type_ident, + ACTIONS(2553), 1, + sym_ct_type_ident, + ACTIONS(2571), 1, + sym_ident, + STATE(1199), 1, + sym_base_type, + STATE(1200), 1, + sym_module_type_ident, + STATE(1208), 1, + sym_base_type_name, + STATE(1421), 1, + sym_module_resolution, + STATE(1451), 1, + sym_type, + STATE(1558), 1, + aux_sym__module_path, + STATE(1162), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2556), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [29311] = 27, + ACTIONS(2792), 4, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(137), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [29629] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2540), 1, - anon_sym_AMP, - ACTIONS(2544), 1, - anon_sym_AMP_AMP, - ACTIONS(2546), 1, - anon_sym_PLUS, - ACTIONS(2548), 1, - anon_sym_DASH, - ACTIONS(2550), 1, - anon_sym_LT_LT, - ACTIONS(2552), 1, - anon_sym_GT_GT, - ACTIONS(2554), 1, - anon_sym_STAR, - ACTIONS(2560), 1, - anon_sym_SLASH, - ACTIONS(2562), 1, - anon_sym_PERCENT, - ACTIONS(2564), 1, - anon_sym_PIPE, - ACTIONS(2566), 1, - anon_sym_CARET, - ACTIONS(2568), 1, - anon_sym_EQ_EQ, - ACTIONS(2570), 1, - anon_sym_BANG_EQ, - ACTIONS(2572), 1, - anon_sym_GT, - ACTIONS(2574), 1, - anon_sym_GT_EQ, - ACTIONS(2576), 1, - anon_sym_LT_EQ, - ACTIONS(2578), 1, - anon_sym_LT, - ACTIONS(2580), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2886), 1, - anon_sym_SEMI, - STATE(303), 1, - sym__assignment_op, - STATE(1269), 3, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(2571), 1, + sym_ident, + STATE(989), 1, + sym_module_type_ident, + STATE(1018), 1, + sym_base_type, + STATE(1033), 1, + sym_base_type_name, + STATE(1421), 1, + sym_module_resolution, + STATE(1532), 1, + aux_sym__module_path, + STATE(1642), 1, + sym_type, + STATE(1163), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2556), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [29404] = 27, + ACTIONS(57), 4, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [29703] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2694), 1, - anon_sym_AMP, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2698), 1, - anon_sym_PLUS, - ACTIONS(2700), 1, - anon_sym_DASH, - ACTIONS(2702), 1, - anon_sym_LT_LT, - ACTIONS(2704), 1, - anon_sym_GT_GT, - ACTIONS(2706), 1, - anon_sym_STAR, - ACTIONS(2708), 1, - anon_sym_SLASH, - ACTIONS(2710), 1, - anon_sym_PERCENT, - ACTIONS(2712), 1, - anon_sym_PIPE, - ACTIONS(2714), 1, - anon_sym_CARET, - ACTIONS(2716), 1, - anon_sym_EQ_EQ, - ACTIONS(2718), 1, - anon_sym_BANG_EQ, - ACTIONS(2720), 1, - anon_sym_GT, - ACTIONS(2722), 1, - anon_sym_GT_EQ, - ACTIONS(2724), 1, - anon_sym_LT_EQ, - ACTIONS(2726), 1, - anon_sym_LT, - ACTIONS(2728), 1, - anon_sym_AMP_AMP, - ACTIONS(2740), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2888), 1, - anon_sym_RPAREN, - STATE(288), 1, - sym__assignment_op, - STATE(1270), 3, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(2571), 1, + sym_ident, + STATE(989), 1, + sym_module_type_ident, + STATE(1018), 1, + sym_base_type, + STATE(1033), 1, + sym_base_type_name, + STATE(1421), 1, + sym_module_resolution, + STATE(1532), 1, + aux_sym__module_path, + STATE(2204), 1, + sym_type, + STATE(1164), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2556), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [29497] = 27, + ACTIONS(57), 4, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [29777] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2540), 1, - anon_sym_AMP, - ACTIONS(2544), 1, - anon_sym_AMP_AMP, - ACTIONS(2546), 1, - anon_sym_PLUS, - ACTIONS(2548), 1, - anon_sym_DASH, - ACTIONS(2550), 1, - anon_sym_LT_LT, - ACTIONS(2552), 1, - anon_sym_GT_GT, - ACTIONS(2554), 1, - anon_sym_STAR, - ACTIONS(2560), 1, - anon_sym_SLASH, - ACTIONS(2562), 1, - anon_sym_PERCENT, - ACTIONS(2564), 1, - anon_sym_PIPE, - ACTIONS(2566), 1, - anon_sym_CARET, - ACTIONS(2568), 1, - anon_sym_EQ_EQ, - ACTIONS(2570), 1, - anon_sym_BANG_EQ, - ACTIONS(2572), 1, - anon_sym_GT, - ACTIONS(2574), 1, - anon_sym_GT_EQ, - ACTIONS(2576), 1, - anon_sym_LT_EQ, - ACTIONS(2578), 1, - anon_sym_LT, - ACTIONS(2580), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2890), 1, - anon_sym_SEMI, - STATE(303), 1, - sym__assignment_op, - STATE(1271), 3, + ACTIONS(77), 1, + sym_type_ident, + ACTIONS(2553), 1, + sym_ct_type_ident, + ACTIONS(2571), 1, + sym_ident, + STATE(1199), 1, + sym_base_type, + STATE(1200), 1, + sym_module_type_ident, + STATE(1208), 1, + sym_base_type_name, + STATE(1421), 1, + sym_module_resolution, + STATE(1509), 1, + sym_type, + STATE(1558), 1, + aux_sym__module_path, + STATE(1165), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2556), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [29590] = 27, + ACTIONS(2792), 4, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(137), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [29851] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2540), 1, - anon_sym_AMP, - ACTIONS(2544), 1, - anon_sym_AMP_AMP, - ACTIONS(2546), 1, - anon_sym_PLUS, - ACTIONS(2548), 1, - anon_sym_DASH, - ACTIONS(2550), 1, - anon_sym_LT_LT, - ACTIONS(2552), 1, - anon_sym_GT_GT, - ACTIONS(2554), 1, - anon_sym_STAR, - ACTIONS(2560), 1, - anon_sym_SLASH, - ACTIONS(2562), 1, - anon_sym_PERCENT, - ACTIONS(2564), 1, - anon_sym_PIPE, - ACTIONS(2566), 1, - anon_sym_CARET, - ACTIONS(2568), 1, - anon_sym_EQ_EQ, - ACTIONS(2570), 1, - anon_sym_BANG_EQ, - ACTIONS(2572), 1, - anon_sym_GT, - ACTIONS(2574), 1, - anon_sym_GT_EQ, - ACTIONS(2576), 1, - anon_sym_LT_EQ, - ACTIONS(2578), 1, - anon_sym_LT, - ACTIONS(2580), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2892), 1, - anon_sym_SEMI, - STATE(303), 1, - sym__assignment_op, - STATE(1272), 3, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(2571), 1, + sym_ident, + STATE(989), 1, + sym_module_type_ident, + STATE(1018), 1, + sym_base_type, + STATE(1033), 1, + sym_base_type_name, + STATE(1421), 1, + sym_module_resolution, + STATE(1532), 1, + aux_sym__module_path, + STATE(2067), 1, + sym_type, + STATE(1166), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2556), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [29683] = 27, + ACTIONS(57), 4, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [29925] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2540), 1, - anon_sym_AMP, - ACTIONS(2544), 1, - anon_sym_AMP_AMP, - ACTIONS(2546), 1, - anon_sym_PLUS, - ACTIONS(2548), 1, - anon_sym_DASH, - ACTIONS(2550), 1, - anon_sym_LT_LT, - ACTIONS(2552), 1, - anon_sym_GT_GT, - ACTIONS(2554), 1, - anon_sym_STAR, - ACTIONS(2560), 1, - anon_sym_SLASH, - ACTIONS(2562), 1, - anon_sym_PERCENT, - ACTIONS(2564), 1, - anon_sym_PIPE, - ACTIONS(2566), 1, - anon_sym_CARET, - ACTIONS(2568), 1, - anon_sym_EQ_EQ, - ACTIONS(2570), 1, - anon_sym_BANG_EQ, - ACTIONS(2572), 1, - anon_sym_GT, - ACTIONS(2574), 1, - anon_sym_GT_EQ, - ACTIONS(2576), 1, - anon_sym_LT_EQ, - ACTIONS(2578), 1, - anon_sym_LT, - ACTIONS(2580), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2894), 1, - anon_sym_SEMI, - STATE(303), 1, - sym__assignment_op, - STATE(1273), 3, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(2571), 1, + sym_ident, + STATE(989), 1, + sym_module_type_ident, + STATE(1018), 1, + sym_base_type, + STATE(1033), 1, + sym_base_type_name, + STATE(1278), 1, + sym_type, + STATE(1421), 1, + sym_module_resolution, + STATE(1532), 1, + aux_sym__module_path, + STATE(1167), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2556), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [29776] = 27, + ACTIONS(57), 4, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [29999] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2540), 1, - anon_sym_AMP, - ACTIONS(2544), 1, - anon_sym_AMP_AMP, - ACTIONS(2546), 1, - anon_sym_PLUS, - ACTIONS(2548), 1, - anon_sym_DASH, - ACTIONS(2550), 1, - anon_sym_LT_LT, - ACTIONS(2552), 1, - anon_sym_GT_GT, - ACTIONS(2554), 1, - anon_sym_STAR, - ACTIONS(2560), 1, - anon_sym_SLASH, - ACTIONS(2562), 1, - anon_sym_PERCENT, - ACTIONS(2564), 1, - anon_sym_PIPE, - ACTIONS(2566), 1, - anon_sym_CARET, - ACTIONS(2568), 1, - anon_sym_EQ_EQ, - ACTIONS(2570), 1, - anon_sym_BANG_EQ, - ACTIONS(2572), 1, - anon_sym_GT, - ACTIONS(2574), 1, - anon_sym_GT_EQ, - ACTIONS(2576), 1, - anon_sym_LT_EQ, - ACTIONS(2578), 1, - anon_sym_LT, - ACTIONS(2580), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2896), 1, - anon_sym_SEMI, - STATE(303), 1, - sym__assignment_op, - STATE(1274), 3, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(2571), 1, + sym_ident, + STATE(989), 1, + sym_module_type_ident, + STATE(1018), 1, + sym_base_type, + STATE(1033), 1, + sym_base_type_name, + STATE(1270), 1, + sym_type, + STATE(1421), 1, + sym_module_resolution, + STATE(1532), 1, + aux_sym__module_path, + STATE(1168), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2556), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [29869] = 27, + ACTIONS(57), 4, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [30073] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2540), 1, - anon_sym_AMP, - ACTIONS(2544), 1, - anon_sym_AMP_AMP, - ACTIONS(2546), 1, - anon_sym_PLUS, - ACTIONS(2548), 1, - anon_sym_DASH, - ACTIONS(2550), 1, - anon_sym_LT_LT, - ACTIONS(2552), 1, - anon_sym_GT_GT, - ACTIONS(2554), 1, - anon_sym_STAR, - ACTIONS(2560), 1, - anon_sym_SLASH, - ACTIONS(2562), 1, - anon_sym_PERCENT, - ACTIONS(2564), 1, - anon_sym_PIPE, - ACTIONS(2566), 1, - anon_sym_CARET, - ACTIONS(2568), 1, - anon_sym_EQ_EQ, - ACTIONS(2570), 1, - anon_sym_BANG_EQ, - ACTIONS(2572), 1, - anon_sym_GT, - ACTIONS(2574), 1, - anon_sym_GT_EQ, - ACTIONS(2576), 1, - anon_sym_LT_EQ, - ACTIONS(2578), 1, - anon_sym_LT, - ACTIONS(2580), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2898), 1, - anon_sym_SEMI, - STATE(303), 1, - sym__assignment_op, - STATE(1275), 3, + ACTIONS(77), 1, + sym_type_ident, + ACTIONS(2553), 1, + sym_ct_type_ident, + ACTIONS(2571), 1, + sym_ident, + STATE(1199), 1, + sym_base_type, + STATE(1200), 1, + sym_module_type_ident, + STATE(1208), 1, + sym_base_type_name, + STATE(1421), 1, + sym_module_resolution, + STATE(1522), 1, + sym_type, + STATE(1558), 1, + aux_sym__module_path, + STATE(1169), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2556), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [29962] = 27, + ACTIONS(2792), 4, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(137), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [30147] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2694), 1, - anon_sym_AMP, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2698), 1, - anon_sym_PLUS, - ACTIONS(2700), 1, - anon_sym_DASH, - ACTIONS(2702), 1, - anon_sym_LT_LT, - ACTIONS(2704), 1, - anon_sym_GT_GT, - ACTIONS(2706), 1, - anon_sym_STAR, - ACTIONS(2708), 1, - anon_sym_SLASH, - ACTIONS(2710), 1, - anon_sym_PERCENT, - ACTIONS(2712), 1, - anon_sym_PIPE, - ACTIONS(2714), 1, - anon_sym_CARET, - ACTIONS(2716), 1, - anon_sym_EQ_EQ, - ACTIONS(2718), 1, - anon_sym_BANG_EQ, - ACTIONS(2720), 1, - anon_sym_GT, - ACTIONS(2722), 1, - anon_sym_GT_EQ, - ACTIONS(2724), 1, - anon_sym_LT_EQ, - ACTIONS(2726), 1, - anon_sym_LT, - ACTIONS(2728), 1, - anon_sym_AMP_AMP, - ACTIONS(2740), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2900), 1, - anon_sym_RPAREN, - STATE(288), 1, - sym__assignment_op, - STATE(1276), 3, + ACTIONS(77), 1, + sym_type_ident, + ACTIONS(2553), 1, + sym_ct_type_ident, + ACTIONS(2571), 1, + sym_ident, + STATE(1199), 1, + sym_base_type, + STATE(1200), 1, + sym_module_type_ident, + STATE(1208), 1, + sym_base_type_name, + STATE(1421), 1, + sym_module_resolution, + STATE(1529), 1, + sym_type, + STATE(1558), 1, + aux_sym__module_path, + STATE(1170), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2556), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [30055] = 27, + ACTIONS(2792), 4, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(137), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [30221] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2540), 1, - anon_sym_AMP, - ACTIONS(2544), 1, - anon_sym_AMP_AMP, - ACTIONS(2546), 1, - anon_sym_PLUS, - ACTIONS(2548), 1, - anon_sym_DASH, - ACTIONS(2550), 1, - anon_sym_LT_LT, - ACTIONS(2552), 1, - anon_sym_GT_GT, - ACTIONS(2554), 1, - anon_sym_STAR, - ACTIONS(2560), 1, - anon_sym_SLASH, - ACTIONS(2562), 1, - anon_sym_PERCENT, - ACTIONS(2564), 1, - anon_sym_PIPE, - ACTIONS(2566), 1, - anon_sym_CARET, - ACTIONS(2568), 1, - anon_sym_EQ_EQ, - ACTIONS(2570), 1, - anon_sym_BANG_EQ, - ACTIONS(2572), 1, - anon_sym_GT, - ACTIONS(2574), 1, - anon_sym_GT_EQ, - ACTIONS(2576), 1, - anon_sym_LT_EQ, - ACTIONS(2578), 1, - anon_sym_LT, - ACTIONS(2580), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2902), 1, - anon_sym_SEMI, - STATE(303), 1, - sym__assignment_op, - STATE(1277), 3, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(2812), 1, + sym_ident, + STATE(989), 1, + sym_module_type_ident, + STATE(1018), 1, + sym_base_type, + STATE(1033), 1, + sym_base_type_name, + STATE(1421), 1, + sym_module_resolution, + STATE(1532), 1, + aux_sym__module_path, + STATE(1963), 1, + sym_type, + STATE(1171), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2556), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [30148] = 27, + ACTIONS(57), 4, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [30295] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2694), 1, - anon_sym_AMP, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2698), 1, - anon_sym_PLUS, - ACTIONS(2700), 1, - anon_sym_DASH, - ACTIONS(2702), 1, - anon_sym_LT_LT, - ACTIONS(2704), 1, - anon_sym_GT_GT, - ACTIONS(2706), 1, - anon_sym_STAR, - ACTIONS(2708), 1, - anon_sym_SLASH, - ACTIONS(2710), 1, - anon_sym_PERCENT, - ACTIONS(2712), 1, - anon_sym_PIPE, - ACTIONS(2714), 1, - anon_sym_CARET, - ACTIONS(2716), 1, - anon_sym_EQ_EQ, - ACTIONS(2718), 1, - anon_sym_BANG_EQ, - ACTIONS(2720), 1, - anon_sym_GT, - ACTIONS(2722), 1, - anon_sym_GT_EQ, - ACTIONS(2724), 1, - anon_sym_LT_EQ, - ACTIONS(2726), 1, - anon_sym_LT, - ACTIONS(2728), 1, - anon_sym_AMP_AMP, - ACTIONS(2740), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2904), 1, - anon_sym_RPAREN, - STATE(288), 1, - sym__assignment_op, - STATE(1278), 3, + ACTIONS(2571), 1, + sym_ident, + ACTIONS(2814), 1, + sym_type_ident, + ACTIONS(2816), 1, + sym_ct_type_ident, + STATE(888), 1, + sym_base_type, + STATE(953), 1, + sym_module_type_ident, + STATE(968), 1, + sym_base_type_name, + STATE(1012), 1, + sym_type, + STATE(1421), 1, + sym_module_resolution, + STATE(1569), 1, + aux_sym__module_path, + STATE(1172), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2556), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [30241] = 27, + ACTIONS(2820), 4, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(2818), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [30369] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2540), 1, - anon_sym_AMP, - ACTIONS(2544), 1, - anon_sym_AMP_AMP, - ACTIONS(2546), 1, - anon_sym_PLUS, - ACTIONS(2548), 1, - anon_sym_DASH, - ACTIONS(2550), 1, - anon_sym_LT_LT, - ACTIONS(2552), 1, - anon_sym_GT_GT, - ACTIONS(2554), 1, - anon_sym_STAR, - ACTIONS(2560), 1, - anon_sym_SLASH, - ACTIONS(2562), 1, - anon_sym_PERCENT, - ACTIONS(2564), 1, - anon_sym_PIPE, - ACTIONS(2566), 1, - anon_sym_CARET, - ACTIONS(2568), 1, - anon_sym_EQ_EQ, - ACTIONS(2570), 1, - anon_sym_BANG_EQ, - ACTIONS(2572), 1, - anon_sym_GT, - ACTIONS(2574), 1, - anon_sym_GT_EQ, - ACTIONS(2576), 1, - anon_sym_LT_EQ, - ACTIONS(2578), 1, - anon_sym_LT, - ACTIONS(2580), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2906), 1, - anon_sym_SEMI, - STATE(303), 1, - sym__assignment_op, - STATE(1279), 3, + ACTIONS(77), 1, + sym_type_ident, + ACTIONS(2553), 1, + sym_ct_type_ident, + ACTIONS(2571), 1, + sym_ident, + STATE(1199), 1, + sym_base_type, + STATE(1200), 1, + sym_module_type_ident, + STATE(1208), 1, + sym_base_type_name, + STATE(1421), 1, + sym_module_resolution, + STATE(1549), 1, + sym_type, + STATE(1558), 1, + aux_sym__module_path, + STATE(1173), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2556), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [30334] = 27, + ACTIONS(2792), 4, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(137), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [30443] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2540), 1, - anon_sym_AMP, - ACTIONS(2544), 1, - anon_sym_AMP_AMP, - ACTIONS(2546), 1, - anon_sym_PLUS, - ACTIONS(2548), 1, - anon_sym_DASH, - ACTIONS(2550), 1, - anon_sym_LT_LT, - ACTIONS(2552), 1, - anon_sym_GT_GT, - ACTIONS(2554), 1, - anon_sym_STAR, - ACTIONS(2560), 1, - anon_sym_SLASH, - ACTIONS(2562), 1, - anon_sym_PERCENT, - ACTIONS(2564), 1, - anon_sym_PIPE, - ACTIONS(2566), 1, - anon_sym_CARET, - ACTIONS(2568), 1, - anon_sym_EQ_EQ, - ACTIONS(2570), 1, - anon_sym_BANG_EQ, - ACTIONS(2572), 1, - anon_sym_GT, - ACTIONS(2574), 1, - anon_sym_GT_EQ, - ACTIONS(2576), 1, - anon_sym_LT_EQ, - ACTIONS(2578), 1, - anon_sym_LT, - ACTIONS(2580), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2908), 1, - anon_sym_SEMI, - STATE(303), 1, - sym__assignment_op, - STATE(1280), 3, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(2571), 1, + sym_ident, + STATE(989), 1, + sym_module_type_ident, + STATE(1018), 1, + sym_base_type, + STATE(1033), 1, + sym_base_type_name, + STATE(1284), 1, + sym_type, + STATE(1421), 1, + sym_module_resolution, + STATE(1532), 1, + aux_sym__module_path, + STATE(1174), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2556), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [30427] = 27, + ACTIONS(57), 4, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [30517] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2540), 1, - anon_sym_AMP, - ACTIONS(2544), 1, - anon_sym_AMP_AMP, - ACTIONS(2546), 1, - anon_sym_PLUS, - ACTIONS(2548), 1, - anon_sym_DASH, - ACTIONS(2550), 1, - anon_sym_LT_LT, - ACTIONS(2552), 1, - anon_sym_GT_GT, - ACTIONS(2554), 1, - anon_sym_STAR, - ACTIONS(2560), 1, - anon_sym_SLASH, - ACTIONS(2562), 1, - anon_sym_PERCENT, - ACTIONS(2564), 1, - anon_sym_PIPE, - ACTIONS(2566), 1, - anon_sym_CARET, - ACTIONS(2568), 1, - anon_sym_EQ_EQ, - ACTIONS(2570), 1, - anon_sym_BANG_EQ, - ACTIONS(2572), 1, - anon_sym_GT, - ACTIONS(2574), 1, - anon_sym_GT_EQ, - ACTIONS(2576), 1, - anon_sym_LT_EQ, - ACTIONS(2578), 1, - anon_sym_LT, - ACTIONS(2580), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2910), 1, - anon_sym_SEMI, - STATE(303), 1, - sym__assignment_op, - STATE(1281), 3, + ACTIONS(77), 1, + sym_type_ident, + ACTIONS(2553), 1, + sym_ct_type_ident, + ACTIONS(2571), 1, + sym_ident, + STATE(1199), 1, + sym_base_type, + STATE(1200), 1, + sym_module_type_ident, + STATE(1208), 1, + sym_base_type_name, + STATE(1421), 1, + sym_module_resolution, + STATE(1558), 1, + aux_sym__module_path, + STATE(1568), 1, + sym_type, + STATE(1175), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2556), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [30520] = 6, + ACTIONS(2792), 4, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(137), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [30591] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1282), 3, + STATE(1176), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2914), 7, + ACTIONS(2824), 7, sym_type_ident, sym_ct_type_ident, anon_sym_RBRACE, @@ -153813,8 +144732,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2912), 25, + ACTIONS(2822), 29, sym_ident, + anon_sym_inline, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -153839,414 +144762,312 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [30571] = 27, + [30646] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2540), 1, - anon_sym_AMP, - ACTIONS(2544), 1, - anon_sym_AMP_AMP, - ACTIONS(2546), 1, - anon_sym_PLUS, - ACTIONS(2548), 1, - anon_sym_DASH, - ACTIONS(2550), 1, - anon_sym_LT_LT, - ACTIONS(2552), 1, - anon_sym_GT_GT, - ACTIONS(2554), 1, - anon_sym_STAR, - ACTIONS(2560), 1, - anon_sym_SLASH, - ACTIONS(2562), 1, - anon_sym_PERCENT, - ACTIONS(2564), 1, - anon_sym_PIPE, - ACTIONS(2566), 1, - anon_sym_CARET, - ACTIONS(2568), 1, - anon_sym_EQ_EQ, - ACTIONS(2570), 1, - anon_sym_BANG_EQ, - ACTIONS(2572), 1, - anon_sym_GT, - ACTIONS(2574), 1, - anon_sym_GT_EQ, - ACTIONS(2576), 1, - anon_sym_LT_EQ, - ACTIONS(2578), 1, - anon_sym_LT, - ACTIONS(2580), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2916), 1, - anon_sym_SEMI, - STATE(303), 1, - sym__assignment_op, - STATE(1283), 3, + STATE(1177), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2556), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [30664] = 27, + ACTIONS(1929), 7, + sym_type_ident, + sym_ct_type_ident, + anon_sym_RBRACE, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(1931), 29, + sym_ident, + anon_sym_inline, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [30701] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2540), 1, - anon_sym_AMP, - ACTIONS(2544), 1, - anon_sym_AMP_AMP, - ACTIONS(2546), 1, - anon_sym_PLUS, - ACTIONS(2548), 1, - anon_sym_DASH, - ACTIONS(2550), 1, - anon_sym_LT_LT, - ACTIONS(2552), 1, - anon_sym_GT_GT, - ACTIONS(2554), 1, - anon_sym_STAR, - ACTIONS(2560), 1, - anon_sym_SLASH, - ACTIONS(2562), 1, - anon_sym_PERCENT, - ACTIONS(2564), 1, - anon_sym_PIPE, - ACTIONS(2566), 1, - anon_sym_CARET, - ACTIONS(2568), 1, - anon_sym_EQ_EQ, - ACTIONS(2570), 1, - anon_sym_BANG_EQ, - ACTIONS(2572), 1, - anon_sym_GT, - ACTIONS(2574), 1, - anon_sym_GT_EQ, - ACTIONS(2576), 1, - anon_sym_LT_EQ, - ACTIONS(2578), 1, - anon_sym_LT, - ACTIONS(2580), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2918), 1, - anon_sym_COLON, - STATE(303), 1, - sym__assignment_op, - STATE(1284), 3, + STATE(1178), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2556), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [30757] = 27, + ACTIONS(2828), 7, + sym_type_ident, + sym_ct_type_ident, + anon_sym_RBRACE, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(2826), 29, + sym_ident, + anon_sym_inline, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [30756] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2540), 1, - anon_sym_AMP, - ACTIONS(2544), 1, - anon_sym_AMP_AMP, - ACTIONS(2546), 1, - anon_sym_PLUS, - ACTIONS(2548), 1, - anon_sym_DASH, - ACTIONS(2550), 1, - anon_sym_LT_LT, - ACTIONS(2552), 1, - anon_sym_GT_GT, - ACTIONS(2554), 1, - anon_sym_STAR, - ACTIONS(2560), 1, - anon_sym_SLASH, - ACTIONS(2562), 1, - anon_sym_PERCENT, - ACTIONS(2564), 1, - anon_sym_PIPE, - ACTIONS(2566), 1, - anon_sym_CARET, - ACTIONS(2568), 1, - anon_sym_EQ_EQ, - ACTIONS(2570), 1, - anon_sym_BANG_EQ, - ACTIONS(2572), 1, - anon_sym_GT, - ACTIONS(2574), 1, - anon_sym_GT_EQ, - ACTIONS(2576), 1, - anon_sym_LT_EQ, - ACTIONS(2578), 1, - anon_sym_LT, - ACTIONS(2580), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2920), 1, - anon_sym_COLON, - STATE(303), 1, - sym__assignment_op, - STATE(1285), 3, + STATE(1179), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2556), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [30850] = 27, + ACTIONS(2832), 7, + sym_type_ident, + sym_ct_type_ident, + anon_sym_RBRACE, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(2830), 29, + sym_ident, + anon_sym_inline, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [30811] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2694), 1, - anon_sym_AMP, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2698), 1, - anon_sym_PLUS, - ACTIONS(2700), 1, - anon_sym_DASH, - ACTIONS(2702), 1, - anon_sym_LT_LT, - ACTIONS(2704), 1, - anon_sym_GT_GT, - ACTIONS(2706), 1, - anon_sym_STAR, - ACTIONS(2708), 1, - anon_sym_SLASH, - ACTIONS(2710), 1, - anon_sym_PERCENT, - ACTIONS(2712), 1, - anon_sym_PIPE, - ACTIONS(2714), 1, - anon_sym_CARET, - ACTIONS(2716), 1, - anon_sym_EQ_EQ, - ACTIONS(2718), 1, - anon_sym_BANG_EQ, - ACTIONS(2720), 1, - anon_sym_GT, - ACTIONS(2722), 1, - anon_sym_GT_EQ, - ACTIONS(2724), 1, - anon_sym_LT_EQ, - ACTIONS(2726), 1, - anon_sym_LT, - ACTIONS(2728), 1, - anon_sym_AMP_AMP, - ACTIONS(2740), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2922), 1, - anon_sym_RPAREN, - STATE(288), 1, - sym__assignment_op, - STATE(1286), 3, + STATE(1180), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2556), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [30943] = 27, + ACTIONS(2097), 7, + sym_type_ident, + sym_ct_type_ident, + anon_sym_RBRACE, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(2099), 29, + sym_ident, + anon_sym_inline, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [30866] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2540), 1, - anon_sym_AMP, - ACTIONS(2544), 1, - anon_sym_AMP_AMP, - ACTIONS(2546), 1, - anon_sym_PLUS, - ACTIONS(2548), 1, - anon_sym_DASH, - ACTIONS(2550), 1, - anon_sym_LT_LT, - ACTIONS(2552), 1, - anon_sym_GT_GT, - ACTIONS(2554), 1, - anon_sym_STAR, - ACTIONS(2560), 1, - anon_sym_SLASH, - ACTIONS(2562), 1, - anon_sym_PERCENT, - ACTIONS(2564), 1, - anon_sym_PIPE, - ACTIONS(2566), 1, - anon_sym_CARET, - ACTIONS(2568), 1, - anon_sym_EQ_EQ, - ACTIONS(2570), 1, - anon_sym_BANG_EQ, - ACTIONS(2572), 1, - anon_sym_GT, - ACTIONS(2574), 1, - anon_sym_GT_EQ, - ACTIONS(2576), 1, - anon_sym_LT_EQ, - ACTIONS(2578), 1, - anon_sym_LT, - ACTIONS(2580), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2924), 1, - anon_sym_SEMI, - STATE(303), 1, - sym__assignment_op, - STATE(1287), 3, + STATE(1181), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2556), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [31036] = 27, + ACTIONS(1909), 7, + sym_type_ident, + sym_ct_type_ident, + anon_sym_RBRACE, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(1911), 29, + sym_ident, + anon_sym_inline, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [30921] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2540), 1, - anon_sym_AMP, - ACTIONS(2544), 1, - anon_sym_AMP_AMP, - ACTIONS(2546), 1, - anon_sym_PLUS, - ACTIONS(2548), 1, - anon_sym_DASH, - ACTIONS(2550), 1, - anon_sym_LT_LT, - ACTIONS(2552), 1, - anon_sym_GT_GT, - ACTIONS(2554), 1, - anon_sym_STAR, - ACTIONS(2560), 1, - anon_sym_SLASH, - ACTIONS(2562), 1, - anon_sym_PERCENT, - ACTIONS(2564), 1, - anon_sym_PIPE, - ACTIONS(2566), 1, - anon_sym_CARET, - ACTIONS(2568), 1, - anon_sym_EQ_EQ, - ACTIONS(2570), 1, - anon_sym_BANG_EQ, - ACTIONS(2572), 1, - anon_sym_GT, - ACTIONS(2574), 1, - anon_sym_GT_EQ, - ACTIONS(2576), 1, - anon_sym_LT_EQ, - ACTIONS(2578), 1, - anon_sym_LT, - ACTIONS(2580), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2926), 1, - anon_sym_SEMI, - STATE(303), 1, - sym__assignment_op, - STATE(1288), 3, + STATE(1182), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2556), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [31129] = 6, + ACTIONS(2836), 7, + sym_type_ident, + sym_ct_type_ident, + anon_sym_RBRACE, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(2834), 29, + sym_ident, + anon_sym_inline, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [30976] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1289), 3, + STATE(1183), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2930), 7, + ACTIONS(2840), 7, sym_type_ident, sym_ct_type_ident, anon_sym_RBRACE, @@ -154254,8 +145075,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2928), 25, + ACTIONS(2838), 29, sym_ident, + anon_sym_inline, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -154280,18 +145105,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [31180] = 6, + [31031] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1290), 3, + STATE(1184), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2934), 7, + ACTIONS(2844), 7, sym_type_ident, sym_ct_type_ident, anon_sym_RBRACE, @@ -154299,8 +145124,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2932), 25, + ACTIONS(2842), 29, sym_ident, + anon_sym_inline, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -154325,620 +145154,227 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [31231] = 27, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2540), 1, - anon_sym_AMP, - ACTIONS(2544), 1, - anon_sym_AMP_AMP, - ACTIONS(2546), 1, - anon_sym_PLUS, - ACTIONS(2548), 1, - anon_sym_DASH, - ACTIONS(2550), 1, - anon_sym_LT_LT, - ACTIONS(2552), 1, - anon_sym_GT_GT, - ACTIONS(2554), 1, - anon_sym_STAR, - ACTIONS(2560), 1, - anon_sym_SLASH, - ACTIONS(2562), 1, - anon_sym_PERCENT, - ACTIONS(2564), 1, - anon_sym_PIPE, - ACTIONS(2566), 1, - anon_sym_CARET, - ACTIONS(2568), 1, - anon_sym_EQ_EQ, - ACTIONS(2570), 1, - anon_sym_BANG_EQ, - ACTIONS(2572), 1, - anon_sym_GT, - ACTIONS(2574), 1, - anon_sym_GT_EQ, - ACTIONS(2576), 1, - anon_sym_LT_EQ, - ACTIONS(2578), 1, - anon_sym_LT, - ACTIONS(2580), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2936), 1, - anon_sym_COLON, - STATE(303), 1, - sym__assignment_op, - STATE(1291), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2556), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [31324] = 27, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2694), 1, - anon_sym_AMP, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2698), 1, - anon_sym_PLUS, - ACTIONS(2700), 1, - anon_sym_DASH, - ACTIONS(2702), 1, - anon_sym_LT_LT, - ACTIONS(2704), 1, - anon_sym_GT_GT, - ACTIONS(2706), 1, - anon_sym_STAR, - ACTIONS(2708), 1, - anon_sym_SLASH, - ACTIONS(2710), 1, - anon_sym_PERCENT, - ACTIONS(2712), 1, - anon_sym_PIPE, - ACTIONS(2714), 1, - anon_sym_CARET, - ACTIONS(2716), 1, - anon_sym_EQ_EQ, - ACTIONS(2718), 1, - anon_sym_BANG_EQ, - ACTIONS(2720), 1, - anon_sym_GT, - ACTIONS(2722), 1, - anon_sym_GT_EQ, - ACTIONS(2724), 1, - anon_sym_LT_EQ, - ACTIONS(2726), 1, - anon_sym_LT, - ACTIONS(2728), 1, - anon_sym_AMP_AMP, - ACTIONS(2740), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2938), 1, - anon_sym_COMMA, - STATE(288), 1, - sym__assignment_op, - STATE(1292), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2556), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [31417] = 27, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2694), 1, - anon_sym_AMP, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2698), 1, - anon_sym_PLUS, - ACTIONS(2700), 1, - anon_sym_DASH, - ACTIONS(2702), 1, - anon_sym_LT_LT, - ACTIONS(2704), 1, - anon_sym_GT_GT, - ACTIONS(2706), 1, - anon_sym_STAR, - ACTIONS(2708), 1, - anon_sym_SLASH, - ACTIONS(2710), 1, - anon_sym_PERCENT, - ACTIONS(2712), 1, - anon_sym_PIPE, - ACTIONS(2714), 1, - anon_sym_CARET, - ACTIONS(2716), 1, - anon_sym_EQ_EQ, - ACTIONS(2718), 1, - anon_sym_BANG_EQ, - ACTIONS(2720), 1, - anon_sym_GT, - ACTIONS(2722), 1, - anon_sym_GT_EQ, - ACTIONS(2724), 1, - anon_sym_LT_EQ, - ACTIONS(2726), 1, - anon_sym_LT, - ACTIONS(2728), 1, - anon_sym_AMP_AMP, - ACTIONS(2740), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2940), 1, - anon_sym_RPAREN, - STATE(288), 1, - sym__assignment_op, - STATE(1293), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2556), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [31510] = 27, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2540), 1, - anon_sym_AMP, - ACTIONS(2544), 1, - anon_sym_AMP_AMP, - ACTIONS(2546), 1, - anon_sym_PLUS, - ACTIONS(2548), 1, - anon_sym_DASH, - ACTIONS(2550), 1, - anon_sym_LT_LT, - ACTIONS(2552), 1, - anon_sym_GT_GT, - ACTIONS(2554), 1, - anon_sym_STAR, - ACTIONS(2560), 1, - anon_sym_SLASH, - ACTIONS(2562), 1, - anon_sym_PERCENT, - ACTIONS(2564), 1, - anon_sym_PIPE, - ACTIONS(2566), 1, - anon_sym_CARET, - ACTIONS(2568), 1, - anon_sym_EQ_EQ, - ACTIONS(2570), 1, - anon_sym_BANG_EQ, - ACTIONS(2572), 1, - anon_sym_GT, - ACTIONS(2574), 1, - anon_sym_GT_EQ, - ACTIONS(2576), 1, - anon_sym_LT_EQ, - ACTIONS(2578), 1, - anon_sym_LT, - ACTIONS(2580), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2942), 1, - anon_sym_SEMI, - STATE(303), 1, - sym__assignment_op, - STATE(1294), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2556), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [31603] = 27, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2540), 1, - anon_sym_AMP, - ACTIONS(2544), 1, - anon_sym_AMP_AMP, - ACTIONS(2546), 1, - anon_sym_PLUS, - ACTIONS(2548), 1, - anon_sym_DASH, - ACTIONS(2550), 1, - anon_sym_LT_LT, - ACTIONS(2552), 1, - anon_sym_GT_GT, - ACTIONS(2554), 1, - anon_sym_STAR, - ACTIONS(2560), 1, - anon_sym_SLASH, - ACTIONS(2562), 1, - anon_sym_PERCENT, - ACTIONS(2564), 1, - anon_sym_PIPE, - ACTIONS(2566), 1, - anon_sym_CARET, - ACTIONS(2568), 1, - anon_sym_EQ_EQ, - ACTIONS(2570), 1, - anon_sym_BANG_EQ, - ACTIONS(2572), 1, - anon_sym_GT, - ACTIONS(2574), 1, - anon_sym_GT_EQ, - ACTIONS(2576), 1, - anon_sym_LT_EQ, - ACTIONS(2578), 1, - anon_sym_LT, - ACTIONS(2580), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2944), 1, - anon_sym_SEMI, - STATE(303), 1, - sym__assignment_op, - STATE(1295), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2556), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [31696] = 27, + [31086] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2540), 1, - anon_sym_AMP, - ACTIONS(2544), 1, - anon_sym_AMP_AMP, - ACTIONS(2546), 1, - anon_sym_PLUS, - ACTIONS(2548), 1, - anon_sym_DASH, - ACTIONS(2550), 1, - anon_sym_LT_LT, - ACTIONS(2552), 1, - anon_sym_GT_GT, - ACTIONS(2554), 1, - anon_sym_STAR, - ACTIONS(2560), 1, - anon_sym_SLASH, - ACTIONS(2562), 1, - anon_sym_PERCENT, - ACTIONS(2564), 1, - anon_sym_PIPE, - ACTIONS(2566), 1, - anon_sym_CARET, - ACTIONS(2568), 1, - anon_sym_EQ_EQ, - ACTIONS(2570), 1, - anon_sym_BANG_EQ, - ACTIONS(2572), 1, - anon_sym_GT, - ACTIONS(2574), 1, - anon_sym_GT_EQ, - ACTIONS(2576), 1, - anon_sym_LT_EQ, - ACTIONS(2578), 1, - anon_sym_LT, - ACTIONS(2580), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2946), 1, - anon_sym_SEMI, - STATE(303), 1, - sym__assignment_op, - STATE(1296), 3, + STATE(1185), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2556), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [31789] = 27, + ACTIONS(2021), 7, + sym_type_ident, + sym_ct_type_ident, + anon_sym_RBRACE, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(2023), 29, + sym_ident, + anon_sym_inline, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [31141] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2540), 1, - anon_sym_AMP, - ACTIONS(2544), 1, - anon_sym_AMP_AMP, - ACTIONS(2546), 1, - anon_sym_PLUS, - ACTIONS(2548), 1, - anon_sym_DASH, - ACTIONS(2550), 1, - anon_sym_LT_LT, - ACTIONS(2552), 1, - anon_sym_GT_GT, - ACTIONS(2554), 1, - anon_sym_STAR, - ACTIONS(2560), 1, - anon_sym_SLASH, - ACTIONS(2562), 1, - anon_sym_PERCENT, - ACTIONS(2564), 1, - anon_sym_PIPE, - ACTIONS(2566), 1, - anon_sym_CARET, - ACTIONS(2568), 1, - anon_sym_EQ_EQ, - ACTIONS(2570), 1, - anon_sym_BANG_EQ, - ACTIONS(2572), 1, - anon_sym_GT, - ACTIONS(2574), 1, - anon_sym_GT_EQ, - ACTIONS(2576), 1, - anon_sym_LT_EQ, - ACTIONS(2578), 1, - anon_sym_LT, - ACTIONS(2580), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2948), 1, - anon_sym_SEMI, - STATE(303), 1, - sym__assignment_op, - STATE(1297), 3, + STATE(1186), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2556), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [31882] = 27, + ACTIONS(2848), 7, + sym_type_ident, + sym_ct_type_ident, + anon_sym_RBRACE, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(2846), 29, + sym_ident, + anon_sym_inline, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [31196] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2694), 1, - anon_sym_AMP, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2698), 1, - anon_sym_PLUS, - ACTIONS(2700), 1, - anon_sym_DASH, - ACTIONS(2702), 1, - anon_sym_LT_LT, - ACTIONS(2704), 1, - anon_sym_GT_GT, - ACTIONS(2706), 1, - anon_sym_STAR, - ACTIONS(2708), 1, - anon_sym_SLASH, - ACTIONS(2710), 1, - anon_sym_PERCENT, - ACTIONS(2712), 1, - anon_sym_PIPE, - ACTIONS(2714), 1, - anon_sym_CARET, - ACTIONS(2716), 1, - anon_sym_EQ_EQ, - ACTIONS(2718), 1, - anon_sym_BANG_EQ, - ACTIONS(2720), 1, - anon_sym_GT, - ACTIONS(2722), 1, - anon_sym_GT_EQ, - ACTIONS(2724), 1, - anon_sym_LT_EQ, - ACTIONS(2726), 1, - anon_sym_LT, - ACTIONS(2728), 1, - anon_sym_AMP_AMP, - ACTIONS(2740), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2828), 1, - anon_sym_RPAREN, - STATE(288), 1, - sym__assignment_op, - STATE(1298), 3, + STATE(1187), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2556), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [31975] = 27, + ACTIONS(2852), 7, + sym_type_ident, + sym_ct_type_ident, + anon_sym_RBRACE, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(2850), 29, + sym_ident, + anon_sym_inline, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [31251] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2540), 1, - anon_sym_AMP, - ACTIONS(2544), 1, - anon_sym_AMP_AMP, - ACTIONS(2546), 1, - anon_sym_PLUS, - ACTIONS(2548), 1, - anon_sym_DASH, - ACTIONS(2550), 1, - anon_sym_LT_LT, - ACTIONS(2552), 1, - anon_sym_GT_GT, - ACTIONS(2554), 1, - anon_sym_STAR, - ACTIONS(2560), 1, - anon_sym_SLASH, - ACTIONS(2562), 1, - anon_sym_PERCENT, - ACTIONS(2564), 1, - anon_sym_PIPE, - ACTIONS(2566), 1, - anon_sym_CARET, - ACTIONS(2568), 1, - anon_sym_EQ_EQ, - ACTIONS(2570), 1, - anon_sym_BANG_EQ, - ACTIONS(2572), 1, - anon_sym_GT, - ACTIONS(2574), 1, - anon_sym_GT_EQ, - ACTIONS(2576), 1, - anon_sym_LT_EQ, - ACTIONS(2578), 1, - anon_sym_LT, - ACTIONS(2580), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2950), 1, - anon_sym_SEMI, - STATE(303), 1, - sym__assignment_op, - STATE(1299), 3, + STATE(1188), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2556), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [32068] = 6, + ACTIONS(2856), 7, + sym_type_ident, + sym_ct_type_ident, + anon_sym_RBRACE, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(2854), 29, + sym_ident, + anon_sym_inline, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [31306] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1300), 3, + STATE(1189), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2954), 6, + ACTIONS(2860), 7, sym_type_ident, sym_ct_type_ident, + anon_sym_RBRACE, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2952), 25, + ACTIONS(2858), 29, sym_ident, + anon_sym_inline, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -154963,90 +145399,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [32118] = 26, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2694), 1, - anon_sym_AMP, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2698), 1, - anon_sym_PLUS, - ACTIONS(2700), 1, - anon_sym_DASH, - ACTIONS(2702), 1, - anon_sym_LT_LT, - ACTIONS(2704), 1, - anon_sym_GT_GT, - ACTIONS(2706), 1, - anon_sym_STAR, - ACTIONS(2708), 1, - anon_sym_SLASH, - ACTIONS(2710), 1, - anon_sym_PERCENT, - ACTIONS(2712), 1, - anon_sym_PIPE, - ACTIONS(2714), 1, - anon_sym_CARET, - ACTIONS(2716), 1, - anon_sym_EQ_EQ, - ACTIONS(2718), 1, - anon_sym_BANG_EQ, - ACTIONS(2720), 1, - anon_sym_GT, - ACTIONS(2722), 1, - anon_sym_GT_EQ, - ACTIONS(2724), 1, - anon_sym_LT_EQ, - ACTIONS(2726), 1, - anon_sym_LT, - ACTIONS(2728), 1, - anon_sym_AMP_AMP, - ACTIONS(2740), 1, - anon_sym_PIPE_PIPE, - STATE(288), 1, - sym__assignment_op, - STATE(1301), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2556), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [32208] = 6, + [31361] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1302), 3, + STATE(1190), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2958), 6, + ACTIONS(2864), 7, sym_type_ident, sym_ct_type_ident, + anon_sym_RBRACE, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2956), 25, + ACTIONS(2862), 29, sym_ident, + anon_sym_inline, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -155071,500 +145448,300 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [32258] = 26, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2538), 1, - anon_sym_EQ, - ACTIONS(2540), 1, - anon_sym_AMP, - ACTIONS(2544), 1, - anon_sym_AMP_AMP, - ACTIONS(2546), 1, - anon_sym_PLUS, - ACTIONS(2548), 1, - anon_sym_DASH, - ACTIONS(2550), 1, - anon_sym_LT_LT, - ACTIONS(2552), 1, - anon_sym_GT_GT, - ACTIONS(2554), 1, - anon_sym_STAR, - ACTIONS(2560), 1, - anon_sym_SLASH, - ACTIONS(2562), 1, - anon_sym_PERCENT, - ACTIONS(2564), 1, - anon_sym_PIPE, - ACTIONS(2566), 1, - anon_sym_CARET, - ACTIONS(2568), 1, - anon_sym_EQ_EQ, - ACTIONS(2570), 1, - anon_sym_BANG_EQ, - ACTIONS(2572), 1, - anon_sym_GT, - ACTIONS(2574), 1, - anon_sym_GT_EQ, - ACTIONS(2576), 1, - anon_sym_LT_EQ, - ACTIONS(2578), 1, - anon_sym_LT, - ACTIONS(2580), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2696), 1, - anon_sym_DOT, - STATE(288), 1, - sym__assignment_op, - STATE(1303), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2556), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [32348] = 11, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2372), 1, - anon_sym_DOT, - ACTIONS(2960), 1, - anon_sym_LBRACK, - ACTIONS(2962), 1, - anon_sym_STAR, - ACTIONS(2964), 1, - anon_sym_LBRACK_LT, - STATE(1305), 1, - aux_sym_type_repeat1, - STATE(1313), 1, - sym_type_suffix, - STATE(1304), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2374), 13, - sym_ident, - sym_ct_ident, - sym_hash_ident, - sym_const_ident, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG, - [32396] = 11, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2386), 1, - anon_sym_DOT, - ACTIONS(2960), 1, - anon_sym_LBRACK, - ACTIONS(2962), 1, - anon_sym_STAR, - ACTIONS(2964), 1, - anon_sym_LBRACK_LT, - STATE(1307), 1, - aux_sym_type_repeat1, - STATE(1313), 1, - sym_type_suffix, - STATE(1305), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2388), 13, - sym_ident, - sym_ct_ident, - sym_hash_ident, - sym_const_ident, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG, - [32444] = 8, + [31416] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2966), 1, - anon_sym_LPAREN_LT, - STATE(1318), 1, - sym_generic_arguments, - ACTIONS(2301), 2, - anon_sym_LBRACK, - anon_sym_DOT, - STATE(1306), 3, + STATE(1191), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2303), 15, - sym_ident, - sym_ct_ident, - sym_hash_ident, - sym_const_ident, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(2868), 7, + sym_type_ident, + sym_ct_type_ident, anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_LBRACK_LT, - [32486] = 10, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2347), 1, - anon_sym_DOT, - ACTIONS(2968), 1, - anon_sym_LBRACK, - ACTIONS(2971), 1, - anon_sym_STAR, - ACTIONS(2974), 1, - anon_sym_LBRACK_LT, - STATE(1313), 1, - sym_type_suffix, - STATE(1307), 4, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - aux_sym_type_repeat1, - ACTIONS(2349), 13, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(2866), 25, sym_ident, - sym_ct_ident, - sym_hash_ident, - sym_const_ident, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG, - [32532] = 6, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [31467] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2398), 2, - anon_sym_LBRACK, - anon_sym_DOT, - STATE(1308), 3, + STATE(1192), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2400), 16, - sym_ident, - sym_ct_ident, - sym_hash_ident, - sym_const_ident, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(2872), 7, + sym_type_ident, + sym_ct_type_ident, anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_LBRACK_LT, - [32569] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2301), 2, - anon_sym_LBRACK, - anon_sym_DOT, - STATE(1309), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2303), 15, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(2870), 25, sym_ident, - sym_ct_ident, - sym_hash_ident, - sym_const_ident, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_LBRACK_LT, - [32605] = 6, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [31518] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2430), 2, - anon_sym_LBRACK, - anon_sym_DOT, - STATE(1310), 3, + STATE(1193), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2432), 15, - sym_ident, - sym_ct_ident, - sym_hash_ident, - sym_const_ident, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(2876), 7, + sym_type_ident, + sym_ct_type_ident, anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_LBRACK_LT, - [32641] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2426), 2, - anon_sym_LBRACK, - anon_sym_DOT, - STATE(1311), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2428), 15, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(2874), 25, sym_ident, - sym_ct_ident, - sym_hash_ident, - sym_const_ident, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_LBRACK_LT, - [32677] = 6, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [31569] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2402), 2, - anon_sym_LBRACK, - anon_sym_DOT, - STATE(1312), 3, + STATE(1194), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2404), 15, - sym_ident, - sym_ct_ident, - sym_hash_ident, - sym_const_ident, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(2880), 7, + sym_type_ident, + sym_ct_type_ident, anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_LBRACK_LT, - [32713] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2410), 2, - anon_sym_LBRACK, - anon_sym_DOT, - STATE(1313), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2412), 15, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(2878), 25, sym_ident, - sym_ct_ident, - sym_hash_ident, - sym_const_ident, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_LBRACK_LT, - [32749] = 6, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [31620] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2414), 2, - anon_sym_LBRACK, - anon_sym_DOT, - STATE(1314), 3, + STATE(1195), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2416), 15, + ACTIONS(2884), 6, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(2882), 25, sym_ident, - sym_ct_ident, - sym_hash_ident, - sym_const_ident, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_LBRACK_LT, - [32785] = 6, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [31670] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2406), 2, - anon_sym_LBRACK, - anon_sym_DOT, - STATE(1315), 3, + STATE(1196), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2408), 15, + ACTIONS(2888), 6, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARvatype, + anon_sym_DOLLARevaltype, + ACTIONS(2886), 25, sym_ident, - sym_ct_ident, - sym_hash_ident, - sym_const_ident, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_LBRACK_LT, - [32821] = 6, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [31720] = 12, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2426), 2, - anon_sym_LBRACK, + ACTIONS(1703), 1, anon_sym_DOT, - STATE(1316), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2428), 15, - sym_ident, - sym_ct_ident, - sym_hash_ident, - sym_const_ident, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(2890), 1, + anon_sym_LBRACK, + ACTIONS(2892), 1, anon_sym_STAR, + ACTIONS(2894), 1, anon_sym_BANG, + ACTIONS(2896), 1, anon_sym_LBRACK_LT, - [32857] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2239), 2, - anon_sym_LBRACK, - anon_sym_DOT, - STATE(1317), 3, + STATE(1198), 1, + aux_sym_type_repeat1, + STATE(1206), 1, + sym_type_suffix, + STATE(1197), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2237), 15, + ACTIONS(1705), 12, sym_ident, sym_ct_ident, sym_hash_ident, @@ -155577,24 +145754,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_LBRACK_LT, - [32893] = 6, + [31770] = 10, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2422), 2, - anon_sym_LBRACK, + ACTIONS(2232), 1, anon_sym_DOT, - STATE(1318), 3, + ACTIONS(2898), 1, + anon_sym_LBRACK, + ACTIONS(2901), 1, + anon_sym_STAR, + ACTIONS(2904), 1, + anon_sym_LBRACK_LT, + STATE(1206), 1, + sym_type_suffix, + STATE(1198), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2424), 15, + aux_sym_type_repeat1, + ACTIONS(2230), 13, sym_ident, sym_ct_ident, sym_hash_ident, @@ -155607,24 +145789,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR, anon_sym_BANG, - anon_sym_LBRACK_LT, - [32929] = 6, + [31816] = 12, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2430), 2, - anon_sym_LBRACK, + ACTIONS(2059), 1, anon_sym_DOT, - STATE(1319), 3, + ACTIONS(2890), 1, + anon_sym_LBRACK, + ACTIONS(2892), 1, + anon_sym_STAR, + ACTIONS(2896), 1, + anon_sym_LBRACK_LT, + ACTIONS(2907), 1, + anon_sym_BANG, + STATE(1197), 1, + aux_sym_type_repeat1, + STATE(1206), 1, + sym_type_suffix, + STATE(1199), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2432), 15, + ACTIONS(2057), 12, sym_ident, sym_ct_ident, sym_hash_ident, @@ -155637,24 +145828,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_LBRACK_LT, - [32965] = 6, + [31866] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2418), 2, + ACTIONS(2909), 1, + anon_sym_LPAREN_LT, + STATE(1204), 1, + sym_generic_arguments, + ACTIONS(2280), 2, anon_sym_LBRACK, anon_sym_DOT, - STATE(1320), 3, + STATE(1200), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2420), 15, + ACTIONS(2278), 15, sym_ident, sym_ct_ident, sym_hash_ident, @@ -155669,12114 +145861,11687 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_STAR, anon_sym_BANG, - anon_sym_LBRACK_LT, - [33001] = 15, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2977), 1, - sym_ident, - ACTIONS(2979), 1, - sym_at_ident, - ACTIONS(2981), 1, - sym_at_type_ident, - ACTIONS(2985), 1, - anon_sym_EQ, - STATE(1324), 1, - aux_sym_attributes_repeat1, - STATE(1389), 1, - sym__attribute_name, - STATE(1412), 1, - sym_path_at_type_ident, - STATE(1424), 1, - sym_attribute, - STATE(1537), 1, - sym_module_resolution, - STATE(1565), 1, - aux_sym__module_path, - STATE(1321), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2983), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - [33054] = 20, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2219), 1, - anon_sym_COLON_COLON, - ACTIONS(2977), 1, - sym_ident, - ACTIONS(2979), 1, - sym_at_ident, - ACTIONS(2981), 1, - sym_at_type_ident, - ACTIONS(2987), 1, - anon_sym_COMMA, - ACTIONS(2989), 1, - anon_sym_EQ, - ACTIONS(2991), 1, - anon_sym_SEMI, - STATE(1321), 1, - aux_sym_attributes_repeat1, - STATE(1389), 1, - sym__attribute_name, - STATE(1410), 1, - sym__multi_declaration, - STATE(1412), 1, - sym_path_at_type_ident, - STATE(1424), 1, - sym_attribute, - STATE(1537), 1, - sym_module_resolution, - STATE(1565), 1, - aux_sym__module_path, - STATE(1746), 1, - sym_attributes, - STATE(2118), 1, - sym__assign_right_expr, - STATE(1322), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [33117] = 20, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2977), 1, - sym_ident, - ACTIONS(2979), 1, - sym_at_ident, - ACTIONS(2981), 1, - sym_at_type_ident, - ACTIONS(2993), 1, - anon_sym_LPAREN, - ACTIONS(2995), 1, - anon_sym_LBRACE, - ACTIONS(2997), 1, - anon_sym_COLON, - STATE(932), 1, - sym_enum_body, - STATE(1321), 1, - aux_sym_attributes_repeat1, - STATE(1338), 1, - sym_interface_impl, - STATE(1387), 1, - sym_enum_spec, - STATE(1389), 1, - sym__attribute_name, - STATE(1412), 1, - sym_path_at_type_ident, - STATE(1424), 1, - sym_attribute, - STATE(1537), 1, - sym_module_resolution, - STATE(1565), 1, - aux_sym__module_path, - STATE(2000), 1, - sym_attributes, - STATE(1323), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [33180] = 14, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2999), 1, - sym_ident, - ACTIONS(3002), 1, - sym_at_ident, - ACTIONS(3005), 1, - sym_at_type_ident, - ACTIONS(3010), 1, - anon_sym_EQ, - STATE(1389), 1, - sym__attribute_name, - STATE(1412), 1, - sym_path_at_type_ident, - STATE(1424), 1, - sym_attribute, - STATE(1537), 1, - sym_module_resolution, - STATE(1565), 1, - aux_sym__module_path, - STATE(1324), 4, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - aux_sym_attributes_repeat1, - ACTIONS(3008), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - [33231] = 20, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2219), 1, - anon_sym_COLON_COLON, - ACTIONS(2977), 1, - sym_ident, - ACTIONS(2979), 1, - sym_at_ident, - ACTIONS(2981), 1, - sym_at_type_ident, - ACTIONS(2987), 1, - anon_sym_COMMA, - ACTIONS(2989), 1, - anon_sym_EQ, - ACTIONS(3012), 1, - anon_sym_SEMI, - STATE(1321), 1, - aux_sym_attributes_repeat1, - STATE(1389), 1, - sym__attribute_name, - STATE(1409), 1, - sym__multi_declaration, - STATE(1412), 1, - sym_path_at_type_ident, - STATE(1424), 1, - sym_attribute, - STATE(1537), 1, - sym_module_resolution, - STATE(1565), 1, - aux_sym__module_path, - STATE(1706), 1, - sym_attributes, - STATE(2351), 1, - sym__assign_right_expr, - STATE(1325), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [33294] = 17, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2219), 1, - anon_sym_COLON_COLON, - ACTIONS(2977), 1, - sym_ident, - ACTIONS(2979), 1, - sym_at_ident, - ACTIONS(2981), 1, - sym_at_type_ident, - ACTIONS(3016), 1, - anon_sym_DOT_DOT_DOT, - STATE(1321), 1, - aux_sym_attributes_repeat1, - STATE(1389), 1, - sym__attribute_name, - STATE(1412), 1, - sym_path_at_type_ident, - STATE(1424), 1, - sym_attribute, - STATE(1537), 1, - sym_module_resolution, - STATE(1563), 1, - sym_attributes, - STATE(1565), 1, - aux_sym__module_path, - STATE(1326), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(3014), 4, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_SEMI, - [33351] = 20, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2209), 1, - anon_sym_LBRACE, - ACTIONS(2977), 1, - sym_ident, - ACTIONS(2979), 1, - sym_at_ident, - ACTIONS(2981), 1, - sym_at_type_ident, - ACTIONS(3018), 1, - anon_sym_SEMI, - ACTIONS(3020), 1, - anon_sym_EQ_GT, - STATE(953), 1, - sym_compound_stmt, - STATE(954), 1, - sym_macro_func_body, - STATE(1321), 1, - aux_sym_attributes_repeat1, - STATE(1389), 1, - sym__attribute_name, - STATE(1412), 1, - sym_path_at_type_ident, - STATE(1424), 1, - sym_attribute, - STATE(1477), 1, - sym_attributes, - STATE(1537), 1, - sym_module_resolution, - STATE(1565), 1, - aux_sym__module_path, - STATE(2250), 1, - sym_implies_body, - STATE(1327), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [33414] = 19, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2209), 1, - anon_sym_LBRACE, - ACTIONS(2977), 1, - sym_ident, - ACTIONS(2979), 1, - sym_at_ident, - ACTIONS(2981), 1, - sym_at_type_ident, - ACTIONS(3020), 1, - anon_sym_EQ_GT, - STATE(943), 1, - sym_macro_func_body, - STATE(953), 1, - sym_compound_stmt, - STATE(1321), 1, - aux_sym_attributes_repeat1, - STATE(1389), 1, - sym__attribute_name, - STATE(1412), 1, - sym_path_at_type_ident, - STATE(1424), 1, - sym_attribute, - STATE(1520), 1, - sym_attributes, - STATE(1537), 1, - sym_module_resolution, - STATE(1565), 1, - aux_sym__module_path, - STATE(2250), 1, - sym_implies_body, - STATE(1328), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [33474] = 7, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2301), 1, - anon_sym_LBRACK, - ACTIONS(3022), 1, - anon_sym_EQ, - STATE(1329), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2303), 13, - sym_ident, - sym_ct_ident, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_LBRACK_LT, - [33510] = 19, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2977), 1, - sym_ident, - ACTIONS(2979), 1, - sym_at_ident, - ACTIONS(2981), 1, - sym_at_type_ident, - ACTIONS(2987), 1, - anon_sym_COMMA, - ACTIONS(2989), 1, - anon_sym_EQ, - ACTIONS(3024), 1, - anon_sym_SEMI, - STATE(1321), 1, - aux_sym_attributes_repeat1, - STATE(1389), 1, - sym__attribute_name, - STATE(1403), 1, - sym__multi_declaration, - STATE(1412), 1, - sym_path_at_type_ident, - STATE(1424), 1, - sym_attribute, - STATE(1537), 1, - sym_module_resolution, - STATE(1565), 1, - aux_sym__module_path, - STATE(1863), 1, - sym_attributes, - STATE(2131), 1, - sym__assign_right_expr, - STATE(1330), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [33570] = 19, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2977), 1, - sym_ident, - ACTIONS(2979), 1, - sym_at_ident, - ACTIONS(2981), 1, - sym_at_type_ident, - ACTIONS(2987), 1, - anon_sym_COMMA, - ACTIONS(2989), 1, - anon_sym_EQ, - ACTIONS(3026), 1, - anon_sym_SEMI, - STATE(1321), 1, - aux_sym_attributes_repeat1, - STATE(1389), 1, - sym__attribute_name, - STATE(1408), 1, - sym__multi_declaration, - STATE(1412), 1, - sym_path_at_type_ident, - STATE(1424), 1, - sym_attribute, - STATE(1537), 1, - sym_module_resolution, - STATE(1565), 1, - aux_sym__module_path, - STATE(1717), 1, - sym_attributes, - STATE(2319), 1, - sym__assign_right_expr, - STATE(1331), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [33630] = 18, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2977), 1, - sym_ident, - ACTIONS(2979), 1, - sym_at_ident, - ACTIONS(2981), 1, - sym_at_type_ident, - ACTIONS(2993), 1, - anon_sym_LPAREN, - ACTIONS(3028), 1, - anon_sym_LBRACE, - STATE(974), 1, - sym_struct_body, - STATE(1321), 1, - aux_sym_attributes_repeat1, - STATE(1377), 1, - sym_interface_impl, - STATE(1389), 1, - sym__attribute_name, - STATE(1412), 1, - sym_path_at_type_ident, - STATE(1424), 1, - sym_attribute, - STATE(1537), 1, - sym_module_resolution, - STATE(1565), 1, - aux_sym__module_path, - STATE(1895), 1, - sym_attributes, - STATE(1332), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [33687] = 17, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2977), 1, - sym_ident, - ACTIONS(2979), 1, - sym_at_ident, - ACTIONS(2981), 1, - sym_at_type_ident, - ACTIONS(3032), 1, - anon_sym_EQ, - STATE(1321), 1, - aux_sym_attributes_repeat1, - STATE(1389), 1, - sym__attribute_name, - STATE(1412), 1, - sym_path_at_type_ident, - STATE(1424), 1, - sym_attribute, - STATE(1537), 1, - sym_module_resolution, - STATE(1565), 1, - aux_sym__module_path, - STATE(1657), 1, - sym_attributes, - STATE(1937), 1, - sym_enum_arg, - ACTIONS(3030), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1333), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [33742] = 15, + anon_sym_LBRACK_LT, + [31908] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, - sym_ident, - ACTIONS(2979), 1, - sym_at_ident, - ACTIONS(2981), 1, - sym_at_type_ident, - STATE(1321), 1, - aux_sym_attributes_repeat1, - STATE(1389), 1, - sym__attribute_name, - STATE(1412), 1, - sym_path_at_type_ident, - STATE(1424), 1, - sym_attribute, - STATE(1537), 1, - sym_module_resolution, - STATE(1563), 1, - sym_attributes, - STATE(1565), 1, - aux_sym__module_path, - STATE(1334), 3, + ACTIONS(2338), 2, + anon_sym_LBRACK, + anon_sym_DOT, + STATE(1201), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3014), 4, + ACTIONS(2336), 16, + sym_ident, + sym_ct_ident, + sym_hash_ident, + sym_const_ident, anon_sym_COMMA, + anon_sym_LPAREN_LT, anon_sym_EQ, anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_AMP, anon_sym_SEMI, - [33793] = 18, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_LBRACK_LT, + [31945] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, - sym_ident, - ACTIONS(2979), 1, - sym_at_ident, - ACTIONS(2981), 1, - sym_at_type_ident, - ACTIONS(3034), 1, - sym_const_ident, - ACTIONS(3036), 1, - anon_sym_LPAREN, - ACTIONS(3038), 1, - anon_sym_LBRACE, - STATE(463), 1, - sym_switch_body, - STATE(1375), 1, - sym_label, - STATE(1389), 1, - sym__attribute_name, - STATE(1412), 1, - sym_path_at_type_ident, - STATE(1420), 1, - sym_paren_cond, - STATE(1537), 1, - sym_module_resolution, - STATE(1565), 1, - aux_sym__module_path, - STATE(2034), 1, - sym_attribute, - STATE(1335), 3, + ACTIONS(2322), 2, + anon_sym_LBRACK, + anon_sym_DOT, + STATE(1202), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [33850] = 15, + ACTIONS(2320), 15, + sym_ident, + sym_ct_ident, + sym_hash_ident, + sym_const_ident, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_LBRACK_LT, + [31981] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, - sym_ident, - ACTIONS(2979), 1, - sym_at_ident, - ACTIONS(2981), 1, - sym_at_type_ident, - STATE(1321), 1, - aux_sym_attributes_repeat1, - STATE(1389), 1, - sym__attribute_name, - STATE(1412), 1, - sym_path_at_type_ident, - STATE(1424), 1, - sym_attribute, - STATE(1537), 1, - sym_module_resolution, - STATE(1565), 1, - aux_sym__module_path, - STATE(1680), 1, - sym_attributes, - STATE(1336), 3, + ACTIONS(2368), 2, + anon_sym_LBRACK, + anon_sym_DOT, + STATE(1203), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3040), 4, + ACTIONS(2366), 15, + sym_ident, + sym_ct_ident, + sym_hash_ident, + sym_const_ident, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_AMP, anon_sym_SEMI, - [33901] = 15, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_LBRACK_LT, + [32017] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, - sym_ident, - ACTIONS(2979), 1, - sym_at_ident, - ACTIONS(2981), 1, - sym_at_type_ident, - STATE(1321), 1, - aux_sym_attributes_repeat1, - STATE(1389), 1, - sym__attribute_name, - STATE(1412), 1, - sym_path_at_type_ident, - STATE(1424), 1, - sym_attribute, - STATE(1537), 1, - sym_module_resolution, - STATE(1565), 1, - aux_sym__module_path, - STATE(1681), 1, - sym_attributes, - STATE(1337), 3, + ACTIONS(2342), 2, + anon_sym_LBRACK, + anon_sym_DOT, + STATE(1204), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3042), 4, + ACTIONS(2340), 15, + sym_ident, + sym_ct_ident, + sym_hash_ident, + sym_const_ident, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_AMP, anon_sym_SEMI, - [33952] = 18, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_LBRACK_LT, + [32053] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, - sym_ident, - ACTIONS(2979), 1, - sym_at_ident, - ACTIONS(2981), 1, - sym_at_type_ident, - ACTIONS(2995), 1, - anon_sym_LBRACE, - ACTIONS(2997), 1, - anon_sym_COLON, - STATE(945), 1, - sym_enum_body, - STATE(1321), 1, - aux_sym_attributes_repeat1, - STATE(1384), 1, - sym_enum_spec, - STATE(1389), 1, - sym__attribute_name, - STATE(1412), 1, - sym_path_at_type_ident, - STATE(1424), 1, - sym_attribute, - STATE(1537), 1, - sym_module_resolution, - STATE(1565), 1, - aux_sym__module_path, - STATE(1975), 1, - sym_attributes, - STATE(1338), 3, + ACTIONS(2326), 2, + anon_sym_LBRACK, + anon_sym_DOT, + STATE(1205), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [34009] = 18, + ACTIONS(2324), 15, + sym_ident, + sym_ct_ident, + sym_hash_ident, + sym_const_ident, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_LBRACK_LT, + [32089] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, - sym_ident, - ACTIONS(2979), 1, - sym_at_ident, - ACTIONS(2981), 1, - sym_at_type_ident, - ACTIONS(3034), 1, - sym_const_ident, - ACTIONS(3036), 1, - anon_sym_LPAREN, - ACTIONS(3044), 1, - anon_sym_LBRACE, - STATE(739), 1, - sym_switch_body, - STATE(1369), 1, - sym_label, - STATE(1389), 1, - sym__attribute_name, - STATE(1412), 1, - sym_path_at_type_ident, - STATE(1419), 1, - sym_paren_cond, - STATE(1537), 1, - sym_module_resolution, - STATE(1565), 1, - aux_sym__module_path, - STATE(2020), 1, - sym_attribute, - STATE(1339), 3, + ACTIONS(2356), 2, + anon_sym_LBRACK, + anon_sym_DOT, + STATE(1206), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [34066] = 15, + ACTIONS(2354), 15, + sym_ident, + sym_ct_ident, + sym_hash_ident, + sym_const_ident, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_LBRACK_LT, + [32125] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, - sym_ident, - ACTIONS(2979), 1, - sym_at_ident, - ACTIONS(2981), 1, - sym_at_type_ident, - STATE(1321), 1, - aux_sym_attributes_repeat1, - STATE(1389), 1, - sym__attribute_name, - STATE(1412), 1, - sym_path_at_type_ident, - STATE(1424), 1, - sym_attribute, - STATE(1537), 1, - sym_module_resolution, - STATE(1550), 1, - sym_attributes, - STATE(1565), 1, - aux_sym__module_path, - STATE(1340), 3, + ACTIONS(2318), 2, + anon_sym_LBRACK, + anon_sym_DOT, + STATE(1207), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3046), 4, + ACTIONS(2316), 15, + sym_ident, + sym_ct_ident, + sym_hash_ident, + sym_const_ident, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_AMP, anon_sym_SEMI, - [34117] = 15, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_LBRACK_LT, + [32161] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, - sym_ident, - ACTIONS(2979), 1, - sym_at_ident, - ACTIONS(2981), 1, - sym_at_type_ident, - STATE(1321), 1, - aux_sym_attributes_repeat1, - STATE(1389), 1, - sym__attribute_name, - STATE(1412), 1, - sym_path_at_type_ident, - STATE(1424), 1, - sym_attribute, - STATE(1537), 1, - sym_module_resolution, - STATE(1565), 1, - aux_sym__module_path, - STATE(1678), 1, - sym_attributes, - STATE(1341), 3, + ACTIONS(2280), 2, + anon_sym_LBRACK, + anon_sym_DOT, + STATE(1208), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3048), 4, + ACTIONS(2278), 15, + sym_ident, + sym_ct_ident, + sym_hash_ident, + sym_const_ident, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_AMP, anon_sym_SEMI, - [34168] = 18, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_LBRACK_LT, + [32197] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, - sym_ident, - ACTIONS(2979), 1, - sym_at_ident, - ACTIONS(2981), 1, - sym_at_type_ident, - ACTIONS(3034), 1, - sym_const_ident, - ACTIONS(3036), 1, - anon_sym_LPAREN, - ACTIONS(3050), 1, - anon_sym_LBRACE, - STATE(837), 1, - sym_switch_body, - STATE(1378), 1, - sym_label, - STATE(1389), 1, - sym__attribute_name, - STATE(1412), 1, - sym_path_at_type_ident, - STATE(1425), 1, - sym_paren_cond, - STATE(1537), 1, - sym_module_resolution, - STATE(1565), 1, - aux_sym__module_path, - STATE(1891), 1, - sym_attribute, - STATE(1342), 3, + ACTIONS(2326), 2, + anon_sym_LBRACK, + anon_sym_DOT, + STATE(1209), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [34225] = 17, + ACTIONS(2324), 15, + sym_ident, + sym_ct_ident, + sym_hash_ident, + sym_const_ident, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_LBRACK_LT, + [32233] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, - sym_ident, - ACTIONS(2979), 1, - sym_at_ident, - ACTIONS(2981), 1, - sym_at_type_ident, - ACTIONS(2989), 1, - anon_sym_EQ, - STATE(1321), 1, - aux_sym_attributes_repeat1, - STATE(1389), 1, - sym__attribute_name, - STATE(1412), 1, - sym_path_at_type_ident, - STATE(1424), 1, - sym_attribute, - STATE(1537), 1, - sym_module_resolution, - STATE(1565), 1, - aux_sym__module_path, - STATE(1684), 1, - sym_attributes, - STATE(1816), 1, - sym__assign_right_expr, - ACTIONS(3052), 2, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(1343), 3, + ACTIONS(2330), 2, + anon_sym_LBRACK, + anon_sym_DOT, + STATE(1210), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [34280] = 18, + ACTIONS(2328), 15, + sym_ident, + sym_ct_ident, + sym_hash_ident, + sym_const_ident, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_LBRACK_LT, + [32269] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2334), 2, + anon_sym_LBRACK, + anon_sym_DOT, + STATE(1211), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2332), 15, sym_ident, - ACTIONS(2979), 1, - sym_at_ident, - ACTIONS(2981), 1, - sym_at_type_ident, - ACTIONS(3034), 1, + sym_ct_ident, + sym_hash_ident, sym_const_ident, - ACTIONS(3036), 1, - anon_sym_LPAREN, - ACTIONS(3054), 1, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_AMP, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(491), 1, - sym_switch_body, - STATE(1380), 1, - sym_label, - STATE(1389), 1, - sym__attribute_name, - STATE(1412), 1, - sym_path_at_type_ident, - STATE(1418), 1, - sym_paren_cond, - STATE(1537), 1, - sym_module_resolution, - STATE(1565), 1, - aux_sym__module_path, - STATE(2061), 1, - sym_attribute, - STATE(1344), 3, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_LBRACK_LT, + [32305] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(2346), 2, + anon_sym_LBRACK, + anon_sym_DOT, + STATE(1212), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [34337] = 18, + ACTIONS(2344), 15, + sym_ident, + sym_ct_ident, + sym_hash_ident, + sym_const_ident, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_LBRACK_LT, + [32341] = 14, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2911), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2914), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2917), 1, sym_at_type_ident, - ACTIONS(3034), 1, - sym_const_ident, - ACTIONS(3036), 1, - anon_sym_LPAREN, - ACTIONS(3056), 1, - anon_sym_LBRACE, - STATE(703), 1, - sym_switch_body, - STATE(1370), 1, - sym_label, - STATE(1389), 1, + ACTIONS(2922), 1, + anon_sym_EQ, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1416), 1, - sym_paren_cond, - STATE(1537), 1, + STATE(1312), 1, + sym_attribute, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(1946), 1, - sym_attribute, - STATE(1345), 3, + STATE(1213), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [34394] = 17, + aux_sym_attributes_repeat1, + ACTIONS(2920), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + [32392] = 20, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2924), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(3058), 1, - anon_sym_EQ, - STATE(1321), 1, + ACTIONS(2930), 1, + anon_sym_LPAREN, + ACTIONS(2932), 1, + anon_sym_LBRACE, + ACTIONS(2934), 1, + anon_sym_COLON, + STATE(833), 1, + sym_enum_body, + STATE(1218), 1, aux_sym_attributes_repeat1, - STATE(1389), 1, + STATE(1229), 1, + sym_interface_impl, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1280), 1, + sym_enum_spec, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1424), 1, + STATE(1312), 1, sym_attribute, - STATE(1537), 1, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(1566), 1, + STATE(1875), 1, sym_attributes, - STATE(1816), 1, - sym__assign_right_expr, - ACTIONS(3052), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1346), 3, + STATE(1214), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [34449] = 18, + [32455] = 20, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2286), 1, + anon_sym_LBRACE, + ACTIONS(2924), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(2993), 1, - anon_sym_LPAREN, - ACTIONS(3060), 1, - anon_sym_LBRACE, - STATE(937), 1, - sym_fault_body, - STATE(1321), 1, + ACTIONS(2936), 1, + anon_sym_SEMI, + ACTIONS(2938), 1, + anon_sym_EQ_GT, + STATE(845), 1, + sym_macro_func_body, + STATE(926), 1, + sym_compound_stmt, + STATE(1218), 1, aux_sym_attributes_repeat1, - STATE(1376), 1, - sym_interface_impl, - STATE(1389), 1, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1424), 1, + STATE(1312), 1, sym_attribute, - STATE(1537), 1, + STATE(1391), 1, + sym_attributes, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(1954), 1, - sym_attributes, - STATE(1347), 3, + STATE(2161), 1, + sym_implies_body, + STATE(1215), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [34506] = 18, + [32518] = 20, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2348), 1, + anon_sym_COLON_COLON, + ACTIONS(2924), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(3034), 1, - sym_const_ident, - ACTIONS(3036), 1, - anon_sym_LPAREN, - ACTIONS(3062), 1, - anon_sym_LBRACE, - STATE(570), 1, - sym_switch_body, - STATE(1389), 1, + ACTIONS(2940), 1, + anon_sym_COMMA, + ACTIONS(2942), 1, + anon_sym_EQ, + ACTIONS(2944), 1, + anon_sym_SEMI, + STATE(1218), 1, + aux_sym_attributes_repeat1, + STATE(1264), 1, sym__attribute_name, - STATE(1390), 1, - sym_label, - STATE(1412), 1, + STATE(1289), 1, + sym__multi_declaration, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1427), 1, - sym_paren_cond, - STATE(1537), 1, + STATE(1312), 1, + sym_attribute, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(1896), 1, - sym_attribute, - STATE(1348), 3, + STATE(1687), 1, + sym_attributes, + STATE(2076), 1, + sym__assign_right_expr, + STATE(1216), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [34563] = 17, + [32581] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2348), 1, + anon_sym_COLON_COLON, + ACTIONS(2924), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(2989), 1, - anon_sym_EQ, - ACTIONS(3064), 1, - anon_sym_SEMI, - STATE(1321), 1, + ACTIONS(2948), 1, + anon_sym_DOT_DOT_DOT, + STATE(1218), 1, aux_sym_attributes_repeat1, - STATE(1389), 1, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1424), 1, + STATE(1312), 1, sym_attribute, - STATE(1537), 1, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, - aux_sym__module_path, - STATE(1792), 1, + STATE(1456), 1, sym_attributes, - STATE(2145), 1, - sym__assign_right_expr, - STATE(1349), 3, + STATE(1512), 1, + aux_sym__module_path, + STATE(1217), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [34617] = 17, + ACTIONS(2946), 4, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_SEMI, + [32638] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2924), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(2989), 1, + ACTIONS(2952), 1, anon_sym_EQ, - ACTIONS(3066), 1, - anon_sym_SEMI, - STATE(1321), 1, + STATE(1213), 1, aux_sym_attributes_repeat1, - STATE(1389), 1, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1424), 1, + STATE(1312), 1, sym_attribute, - STATE(1537), 1, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(1732), 1, - sym_attributes, - STATE(2277), 1, - sym__assign_right_expr, - STATE(1350), 3, + STATE(1218), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [34671] = 17, + ACTIONS(2950), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + [32691] = 20, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2348), 1, + anon_sym_COLON_COLON, + ACTIONS(2924), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(2989), 1, + ACTIONS(2940), 1, + anon_sym_COMMA, + ACTIONS(2942), 1, anon_sym_EQ, - ACTIONS(3068), 1, + ACTIONS(2954), 1, anon_sym_SEMI, - STATE(1321), 1, + STATE(1218), 1, aux_sym_attributes_repeat1, - STATE(1389), 1, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1290), 1, + sym__multi_declaration, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1424), 1, + STATE(1312), 1, sym_attribute, - STATE(1537), 1, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(1802), 1, + STATE(1621), 1, sym_attributes, - STATE(2093), 1, + STATE(2187), 1, sym__assign_right_expr, - STATE(1351), 3, + STATE(1219), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [34725] = 17, + [32754] = 19, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2924), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(2989), 1, + ACTIONS(2940), 1, + anon_sym_COMMA, + ACTIONS(2942), 1, anon_sym_EQ, - ACTIONS(3070), 1, + ACTIONS(2956), 1, anon_sym_SEMI, - STATE(1321), 1, + STATE(1218), 1, aux_sym_attributes_repeat1, - STATE(1389), 1, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1295), 1, + sym__multi_declaration, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1424), 1, + STATE(1312), 1, sym_attribute, - STATE(1537), 1, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(1874), 1, + STATE(1625), 1, sym_attributes, - STATE(2292), 1, + STATE(2184), 1, sym__assign_right_expr, - STATE(1352), 3, + STATE(1220), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [34779] = 17, + [32814] = 19, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2286), 1, + anon_sym_LBRACE, + ACTIONS(2924), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(2993), 1, - anon_sym_LPAREN, - ACTIONS(3072), 1, - anon_sym_EQ, - STATE(1321), 1, + ACTIONS(2938), 1, + anon_sym_EQ_GT, + STATE(843), 1, + sym_macro_func_body, + STATE(926), 1, + sym_compound_stmt, + STATE(1218), 1, aux_sym_attributes_repeat1, - STATE(1389), 1, + STATE(1264), 1, sym__attribute_name, - STATE(1394), 1, - sym_interface_impl, - STATE(1412), 1, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1424), 1, + STATE(1312), 1, sym_attribute, - STATE(1537), 1, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, - aux_sym__module_path, - STATE(2336), 1, + STATE(1431), 1, sym_attributes, - STATE(1353), 3, + STATE(1512), 1, + aux_sym__module_path, + STATE(2161), 1, + sym_implies_body, + STATE(1221), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [34833] = 17, + [32874] = 19, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2924), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(2989), 1, + ACTIONS(2940), 1, + anon_sym_COMMA, + ACTIONS(2942), 1, anon_sym_EQ, - ACTIONS(3074), 1, + ACTIONS(2958), 1, anon_sym_SEMI, - STATE(1321), 1, + STATE(1218), 1, aux_sym_attributes_repeat1, - STATE(1389), 1, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1300), 1, + sym__multi_declaration, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1424), 1, + STATE(1312), 1, sym_attribute, - STATE(1537), 1, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(1876), 1, + STATE(1680), 1, sym_attributes, - STATE(2271), 1, + STATE(2053), 1, sym__assign_right_expr, - STATE(1354), 3, + STATE(1222), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [34887] = 17, + [32934] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2924), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(2989), 1, + ACTIONS(2942), 1, anon_sym_EQ, - ACTIONS(3076), 1, - anon_sym_SEMI, - STATE(1321), 1, + STATE(1218), 1, aux_sym_attributes_repeat1, - STATE(1389), 1, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1424), 1, + STATE(1312), 1, sym_attribute, - STATE(1537), 1, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, - aux_sym__module_path, - STATE(1806), 1, + STATE(1427), 1, sym_attributes, - STATE(2084), 1, + STATE(1512), 1, + aux_sym__module_path, + STATE(1676), 1, sym__assign_right_expr, - STATE(1355), 3, + ACTIONS(2960), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(1223), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [34941] = 17, + [32990] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, - sym_ident, - ACTIONS(2979), 1, - sym_at_ident, - ACTIONS(2981), 1, - sym_at_type_ident, - ACTIONS(3078), 1, - anon_sym_COMMA, - ACTIONS(3080), 1, - anon_sym_SEMI, - STATE(1321), 1, - aux_sym_attributes_repeat1, - STATE(1363), 1, - aux_sym_import_declaration_repeat1, - STATE(1389), 1, - sym__attribute_name, - STATE(1412), 1, - sym_path_at_type_ident, - STATE(1424), 1, - sym_attribute, - STATE(1537), 1, - sym_module_resolution, - STATE(1565), 1, - aux_sym__module_path, - STATE(2263), 1, - sym_attributes, - STATE(1356), 3, + ACTIONS(2280), 1, + anon_sym_LBRACK, + ACTIONS(2962), 1, + anon_sym_EQ, + STATE(1224), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [34995] = 17, + ACTIONS(2278), 13, + sym_ident, + sym_ct_ident, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_LBRACK_LT, + [33026] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2924), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(2989), 1, - anon_sym_EQ, - ACTIONS(3082), 1, - anon_sym_SEMI, - STATE(1321), 1, + STATE(1218), 1, aux_sym_attributes_repeat1, - STATE(1389), 1, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1424), 1, + STATE(1312), 1, sym_attribute, - STATE(1537), 1, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(1789), 1, + STATE(1579), 1, sym_attributes, - STATE(2150), 1, - sym__assign_right_expr, - STATE(1357), 3, + STATE(1225), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [35049] = 11, + ACTIONS(2964), 4, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_SEMI, + [33077] = 18, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3086), 1, + ACTIONS(2924), 1, + sym_ident, + ACTIONS(2926), 1, + sym_at_ident, + ACTIONS(2928), 1, + sym_at_type_ident, + ACTIONS(2930), 1, anon_sym_LPAREN, - ACTIONS(3088), 1, - anon_sym_AMP, - ACTIONS(3090), 1, - anon_sym_LBRACK, - ACTIONS(3092), 1, - anon_sym_SEMI, - STATE(1759), 1, - sym_asm_expr, - STATE(1443), 2, - sym_asm_addr, - sym_paren_expr, - STATE(1358), 3, + ACTIONS(2966), 1, + anon_sym_LBRACE, + STATE(913), 1, + sym_struct_body, + STATE(1218), 1, + aux_sym_attributes_repeat1, + STATE(1264), 1, + sym__attribute_name, + STATE(1272), 1, + sym_interface_impl, + STATE(1302), 1, + sym_path_at_type_ident, + STATE(1312), 1, + sym_attribute, + STATE(1421), 1, + sym_module_resolution, + STATE(1512), 1, + aux_sym__module_path, + STATE(1831), 1, + sym_attributes, + STATE(1226), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3084), 6, - sym_real_literal, - sym_integer_literal, - sym_ident, - sym_ct_ident, - sym_const_ident, - sym_ct_const_ident, - [35091] = 17, + [33134] = 18, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2924), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(3094), 1, - anon_sym_LPAREN_LT, - ACTIONS(3096), 1, - anon_sym_SEMI, - STATE(1321), 1, - aux_sym_attributes_repeat1, - STATE(1389), 1, + ACTIONS(2968), 1, + sym_const_ident, + ACTIONS(2970), 1, + anon_sym_LPAREN, + ACTIONS(2972), 1, + anon_sym_LBRACE, + STATE(444), 1, + sym_switch_body, + STATE(1264), 1, sym__attribute_name, - STATE(1407), 1, - sym_generic_module_parameters, - STATE(1412), 1, + STATE(1275), 1, + sym_label, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1424), 1, - sym_attribute, - STATE(1537), 1, + STATE(1307), 1, + sym_paren_cond, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(2259), 1, - sym_attributes, - STATE(1359), 3, + STATE(1811), 1, + sym_attribute, + STATE(1227), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [35145] = 17, + [33191] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2219), 1, - anon_sym_COLON_COLON, - ACTIONS(2977), 1, + ACTIONS(2924), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(3098), 1, - anon_sym_LBRACE, STATE(1218), 1, - sym_struct_body, - STATE(1321), 1, aux_sym_attributes_repeat1, - STATE(1389), 1, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1424), 1, + STATE(1312), 1, sym_attribute, - STATE(1537), 1, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, - aux_sym__module_path, - STATE(2036), 1, + STATE(1511), 1, sym_attributes, - STATE(1360), 3, + STATE(1512), 1, + aux_sym__module_path, + STATE(1228), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [35199] = 17, + ACTIONS(2974), 4, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_SEMI, + [33242] = 18, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2924), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(2989), 1, - anon_sym_EQ, - ACTIONS(3100), 1, - anon_sym_SEMI, - STATE(1321), 1, + ACTIONS(2932), 1, + anon_sym_LBRACE, + ACTIONS(2934), 1, + anon_sym_COLON, + STATE(883), 1, + sym_enum_body, + STATE(1218), 1, aux_sym_attributes_repeat1, - STATE(1389), 1, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1281), 1, + sym_enum_spec, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1424), 1, + STATE(1312), 1, sym_attribute, - STATE(1537), 1, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(1840), 1, + STATE(1771), 1, sym_attributes, - STATE(2189), 1, - sym__assign_right_expr, - STATE(1361), 3, + STATE(1229), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [35253] = 17, + [33299] = 18, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2924), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(2989), 1, - anon_sym_EQ, - ACTIONS(3102), 1, - anon_sym_SEMI, - STATE(1321), 1, - aux_sym_attributes_repeat1, - STATE(1389), 1, + ACTIONS(2968), 1, + sym_const_ident, + ACTIONS(2970), 1, + anon_sym_LPAREN, + ACTIONS(2976), 1, + anon_sym_LBRACE, + STATE(654), 1, + sym_switch_body, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1267), 1, + sym_label, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1424), 1, - sym_attribute, - STATE(1537), 1, + STATE(1308), 1, + sym_paren_cond, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(1829), 1, - sym_attributes, - STATE(2173), 1, - sym__assign_right_expr, - STATE(1362), 3, + STATE(1823), 1, + sym_attribute, + STATE(1230), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [35307] = 17, + [33356] = 18, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2924), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(3078), 1, - anon_sym_COMMA, - ACTIONS(3104), 1, - anon_sym_SEMI, - STATE(1321), 1, - aux_sym_attributes_repeat1, - STATE(1389), 1, + ACTIONS(2968), 1, + sym_const_ident, + ACTIONS(2970), 1, + anon_sym_LPAREN, + ACTIONS(2978), 1, + anon_sym_LBRACE, + STATE(360), 1, + sym_switch_body, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1271), 1, + sym_label, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1424), 1, - sym_attribute, - STATE(1468), 1, - aux_sym_import_declaration_repeat1, - STATE(1537), 1, + STATE(1317), 1, + sym_paren_cond, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(2265), 1, - sym_attributes, - STATE(1363), 3, + STATE(1713), 1, + sym_attribute, + STATE(1231), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [35361] = 17, + [33413] = 18, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2924), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(2989), 1, - anon_sym_EQ, - ACTIONS(3106), 1, - anon_sym_SEMI, - STATE(1321), 1, + ACTIONS(2930), 1, + anon_sym_LPAREN, + ACTIONS(2980), 1, + anon_sym_LBRACE, + STATE(860), 1, + sym_fault_body, + STATE(1218), 1, aux_sym_attributes_repeat1, - STATE(1389), 1, + STATE(1263), 1, + sym_interface_impl, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1424), 1, + STATE(1312), 1, sym_attribute, - STATE(1537), 1, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(1858), 1, + STATE(1865), 1, sym_attributes, - STATE(2152), 1, - sym__assign_right_expr, - STATE(1364), 3, + STATE(1232), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [35415] = 17, + [33470] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2924), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(2989), 1, + ACTIONS(2984), 1, anon_sym_EQ, - ACTIONS(3108), 1, - anon_sym_SEMI, - STATE(1321), 1, + STATE(1218), 1, aux_sym_attributes_repeat1, - STATE(1389), 1, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1424), 1, + STATE(1312), 1, sym_attribute, - STATE(1537), 1, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, - aux_sym__module_path, - STATE(1870), 1, + STATE(1463), 1, sym_attributes, - STATE(2339), 1, - sym__assign_right_expr, - STATE(1365), 3, + STATE(1512), 1, + aux_sym__module_path, + STATE(1824), 1, + sym_enum_arg, + ACTIONS(2982), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1233), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [35469] = 17, + [33525] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2924), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(2989), 1, - anon_sym_EQ, - ACTIONS(3110), 1, - anon_sym_SEMI, - STATE(1321), 1, + STATE(1218), 1, aux_sym_attributes_repeat1, - STATE(1389), 1, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1424), 1, + STATE(1312), 1, sym_attribute, - STATE(1537), 1, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(1754), 1, + STATE(1580), 1, sym_attributes, - STATE(2223), 1, - sym__assign_right_expr, - STATE(1366), 3, + STATE(1234), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [35523] = 17, + ACTIONS(2986), 4, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_SEMI, + [33576] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2924), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(2989), 1, - anon_sym_EQ, - ACTIONS(3112), 1, - anon_sym_SEMI, - STATE(1321), 1, + STATE(1218), 1, aux_sym_attributes_repeat1, - STATE(1389), 1, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1424), 1, + STATE(1312), 1, sym_attribute, - STATE(1537), 1, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, - aux_sym__module_path, - STATE(1837), 1, + STATE(1456), 1, sym_attributes, - STATE(2183), 1, - sym__assign_right_expr, - STATE(1367), 3, + STATE(1512), 1, + aux_sym__module_path, + STATE(1235), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [35577] = 17, + ACTIONS(2946), 4, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_SEMI, + [33627] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2924), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(2989), 1, - anon_sym_EQ, - ACTIONS(3114), 1, - anon_sym_SEMI, - STATE(1321), 1, + STATE(1218), 1, aux_sym_attributes_repeat1, - STATE(1389), 1, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1424), 1, + STATE(1312), 1, sym_attribute, - STATE(1537), 1, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(1693), 1, + STATE(1576), 1, sym_attributes, - STATE(2209), 1, - sym__assign_right_expr, - STATE(1368), 3, + STATE(1236), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [35631] = 16, + ACTIONS(2988), 4, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_SEMI, + [33678] = 18, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2924), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(3036), 1, + ACTIONS(2968), 1, + sym_const_ident, + ACTIONS(2970), 1, anon_sym_LPAREN, - ACTIONS(3044), 1, + ACTIONS(2990), 1, anon_sym_LBRACE, - STATE(848), 1, + STATE(579), 1, sym_switch_body, - STATE(1389), 1, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1265), 1, + sym_label, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1428), 1, + STATE(1313), 1, sym_paren_cond, - STATE(1537), 1, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(2039), 1, + STATE(1746), 1, sym_attribute, - STATE(1369), 3, + STATE(1237), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [35682] = 16, + [33735] = 18, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2924), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(3036), 1, + ACTIONS(2968), 1, + sym_const_ident, + ACTIONS(2970), 1, anon_sym_LPAREN, - ACTIONS(3056), 1, + ACTIONS(2992), 1, anon_sym_LBRACE, - STATE(668), 1, + STATE(728), 1, sym_switch_body, - STATE(1389), 1, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1273), 1, + sym_label, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1421), 1, + STATE(1320), 1, sym_paren_cond, - STATE(1537), 1, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(1964), 1, + STATE(1866), 1, sym_attribute, - STATE(1370), 3, + STATE(1238), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [35733] = 15, + [33792] = 18, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2924), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - STATE(1321), 1, - aux_sym_attributes_repeat1, - STATE(1389), 1, + ACTIONS(2968), 1, + sym_const_ident, + ACTIONS(2970), 1, + anon_sym_LPAREN, + ACTIONS(2994), 1, + anon_sym_LBRACE, + STATE(521), 1, + sym_switch_body, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1279), 1, + sym_label, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1424), 1, - sym_attribute, - STATE(1537), 1, + STATE(1321), 1, + sym_paren_cond, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(1955), 1, - sym_attributes, - ACTIONS(3116), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(1371), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [35782] = 10, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(3086), 1, - anon_sym_LPAREN, - ACTIONS(3088), 1, - anon_sym_AMP, - ACTIONS(3090), 1, - anon_sym_LBRACK, - STATE(1899), 1, - sym_asm_expr, - STATE(1443), 2, - sym_asm_addr, - sym_paren_expr, - STATE(1372), 3, + STATE(1804), 1, + sym_attribute, + STATE(1239), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3084), 6, - sym_real_literal, - sym_integer_literal, - sym_ident, - sym_ct_ident, - sym_const_ident, - sym_ct_const_ident, - [35821] = 15, + [33849] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2924), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - STATE(1321), 1, + ACTIONS(2996), 1, + anon_sym_COMMA, + ACTIONS(2998), 1, + anon_sym_SEMI, + STATE(1218), 1, aux_sym_attributes_repeat1, - STATE(1389), 1, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1424), 1, + STATE(1312), 1, sym_attribute, - STATE(1537), 1, + STATE(1389), 1, + aux_sym_import_declaration_repeat1, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(2002), 1, + STATE(2165), 1, sym_attributes, - ACTIONS(3118), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(1373), 3, + STATE(1240), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [35870] = 16, + [33903] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2219), 1, - anon_sym_COLON_COLON, - ACTIONS(2977), 1, + ACTIONS(2924), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(3120), 1, + ACTIONS(2942), 1, + anon_sym_EQ, + ACTIONS(3000), 1, anon_sym_SEMI, - STATE(1321), 1, + STATE(1218), 1, aux_sym_attributes_repeat1, - STATE(1389), 1, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1424), 1, + STATE(1312), 1, sym_attribute, - STATE(1537), 1, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(2359), 1, + STATE(1612), 1, sym_attributes, - STATE(1374), 3, + STATE(2190), 1, + sym__assign_right_expr, + STATE(1241), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [35921] = 16, + [33957] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2924), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(3036), 1, - anon_sym_LPAREN, - ACTIONS(3038), 1, - anon_sym_LBRACE, - STATE(429), 1, - sym_switch_body, - STATE(1389), 1, + ACTIONS(2942), 1, + anon_sym_EQ, + ACTIONS(3002), 1, + anon_sym_SEMI, + STATE(1218), 1, + aux_sym_attributes_repeat1, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1417), 1, - sym_paren_cond, - STATE(1537), 1, + STATE(1312), 1, + sym_attribute, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(2004), 1, - sym_attribute, - STATE(1375), 3, + STATE(1691), 1, + sym_attributes, + STATE(2081), 1, + sym__assign_right_expr, + STATE(1242), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [35972] = 16, + [34011] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2924), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(3060), 1, - anon_sym_LBRACE, - STATE(948), 1, - sym_fault_body, - STATE(1321), 1, + ACTIONS(2942), 1, + anon_sym_EQ, + ACTIONS(3004), 1, + anon_sym_SEMI, + STATE(1218), 1, aux_sym_attributes_repeat1, - STATE(1389), 1, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1424), 1, + STATE(1312), 1, sym_attribute, - STATE(1537), 1, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(1972), 1, + STATE(1665), 1, sym_attributes, - STATE(1376), 3, + STATE(2145), 1, + sym__assign_right_expr, + STATE(1243), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [36023] = 16, + [34065] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2924), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(3028), 1, - anon_sym_LBRACE, - STATE(906), 1, - sym_struct_body, - STATE(1321), 1, + ACTIONS(2942), 1, + anon_sym_EQ, + ACTIONS(3006), 1, + anon_sym_SEMI, + STATE(1218), 1, aux_sym_attributes_repeat1, - STATE(1389), 1, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1424), 1, + STATE(1312), 1, sym_attribute, - STATE(1537), 1, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(1890), 1, + STATE(1644), 1, sym_attributes, - STATE(1377), 3, + STATE(1979), 1, + sym__assign_right_expr, + STATE(1244), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [36074] = 16, + [34119] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2924), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(3036), 1, - anon_sym_LPAREN, - ACTIONS(3050), 1, - anon_sym_LBRACE, - STATE(817), 1, - sym_switch_body, - STATE(1389), 1, + ACTIONS(2942), 1, + anon_sym_EQ, + ACTIONS(3008), 1, + anon_sym_SEMI, + STATE(1218), 1, + aux_sym_attributes_repeat1, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1423), 1, - sym_paren_cond, - STATE(1537), 1, + STATE(1312), 1, + sym_attribute, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(1903), 1, - sym_attribute, - STATE(1378), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [36125] = 10, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(3088), 1, - anon_sym_AMP, - ACTIONS(3090), 1, - anon_sym_LBRACK, - ACTIONS(3122), 1, - anon_sym_LPAREN, - STATE(1438), 1, - sym_asm_expr, - STATE(1443), 2, - sym_asm_addr, - sym_paren_expr, - STATE(1379), 3, + STATE(1654), 1, + sym_attributes, + STATE(1997), 1, + sym__assign_right_expr, + STATE(1245), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3084), 6, - sym_real_literal, - sym_integer_literal, - sym_ident, - sym_ct_ident, - sym_const_ident, - sym_ct_const_ident, - [36164] = 16, + [34173] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2924), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(3036), 1, - anon_sym_LPAREN, - ACTIONS(3054), 1, - anon_sym_LBRACE, - STATE(507), 1, - sym_switch_body, - STATE(1389), 1, + ACTIONS(3010), 1, + anon_sym_LPAREN_LT, + ACTIONS(3012), 1, + anon_sym_SEMI, + STATE(1218), 1, + aux_sym_attributes_repeat1, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1426), 1, - sym_paren_cond, - STATE(1537), 1, + STATE(1304), 1, + sym_generic_module_parameters, + STATE(1312), 1, + sym_attribute, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(2041), 1, - sym_attribute, - STATE(1380), 3, + STATE(2220), 1, + sym_attributes, + STATE(1246), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [36215] = 16, + [34227] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2924), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(3124), 1, - anon_sym_LBRACE, - STATE(1222), 1, - sym_bitstruct_body, - STATE(1321), 1, + ACTIONS(2942), 1, + anon_sym_EQ, + ACTIONS(3014), 1, + anon_sym_SEMI, + STATE(1218), 1, aux_sym_attributes_repeat1, - STATE(1389), 1, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1424), 1, + STATE(1312), 1, sym_attribute, - STATE(1537), 1, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(1911), 1, + STATE(1599), 1, sym_attributes, - STATE(1381), 3, + STATE(1948), 1, + sym__assign_right_expr, + STATE(1247), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [36266] = 16, + [34281] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, - sym_ident, - ACTIONS(2979), 1, - sym_at_ident, - ACTIONS(2981), 1, - sym_at_type_ident, - ACTIONS(3126), 1, - anon_sym_LBRACE, - STATE(931), 1, - sym_bitstruct_body, - STATE(1321), 1, - aux_sym_attributes_repeat1, - STATE(1389), 1, - sym__attribute_name, - STATE(1412), 1, - sym_path_at_type_ident, - STATE(1424), 1, - sym_attribute, - STATE(1537), 1, - sym_module_resolution, - STATE(1565), 1, - aux_sym__module_path, - STATE(1931), 1, - sym_attributes, - STATE(1382), 3, + ACTIONS(1703), 1, + anon_sym_DOT, + STATE(1248), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [36317] = 16, + ACTIONS(1705), 12, + sym_ident, + sym_ct_ident, + sym_hash_ident, + sym_const_ident, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + [34313] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2924), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(3128), 1, + ACTIONS(2942), 1, anon_sym_EQ, - ACTIONS(3130), 1, - anon_sym_LPAREN, - STATE(1321), 1, + ACTIONS(3016), 1, + anon_sym_SEMI, + STATE(1218), 1, aux_sym_attributes_repeat1, - STATE(1389), 1, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1424), 1, + STATE(1312), 1, sym_attribute, - STATE(1537), 1, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(2328), 1, + STATE(1629), 1, sym_attributes, - STATE(1383), 3, + STATE(1965), 1, + sym__assign_right_expr, + STATE(1249), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [36368] = 16, + [34367] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2924), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(2995), 1, - anon_sym_LBRACE, - STATE(925), 1, - sym_enum_body, - STATE(1321), 1, + ACTIONS(2942), 1, + anon_sym_EQ, + ACTIONS(3018), 1, + anon_sym_SEMI, + STATE(1218), 1, aux_sym_attributes_repeat1, - STATE(1389), 1, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1424), 1, + STATE(1312), 1, sym_attribute, - STATE(1537), 1, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(1944), 1, + STATE(1583), 1, sym_attributes, - STATE(1384), 3, + STATE(1951), 1, + sym__assign_right_expr, + STATE(1250), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [36419] = 16, + [34421] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2924), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(3124), 1, - anon_sym_LBRACE, - STATE(1210), 1, - sym_bitstruct_body, - STATE(1321), 1, + ACTIONS(2942), 1, + anon_sym_EQ, + ACTIONS(3020), 1, + anon_sym_SEMI, + STATE(1218), 1, aux_sym_attributes_repeat1, - STATE(1389), 1, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1424), 1, + STATE(1312), 1, sym_attribute, - STATE(1537), 1, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(1886), 1, + STATE(1605), 1, sym_attributes, - STATE(1385), 3, + STATE(1919), 1, + sym__assign_right_expr, + STATE(1251), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [36470] = 16, + [34475] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2924), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(3126), 1, - anon_sym_LBRACE, - STATE(961), 1, - sym_bitstruct_body, - STATE(1321), 1, + ACTIONS(2942), 1, + anon_sym_EQ, + ACTIONS(3022), 1, + anon_sym_SEMI, + STATE(1218), 1, aux_sym_attributes_repeat1, - STATE(1389), 1, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1424), 1, + STATE(1312), 1, sym_attribute, - STATE(1537), 1, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(2033), 1, + STATE(1617), 1, sym_attributes, - STATE(1386), 3, + STATE(2185), 1, + sym__assign_right_expr, + STATE(1252), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [36521] = 16, + [34529] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2924), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(2995), 1, - anon_sym_LBRACE, - STATE(945), 1, - sym_enum_body, - STATE(1321), 1, + ACTIONS(2942), 1, + anon_sym_EQ, + ACTIONS(3024), 1, + anon_sym_SEMI, + STATE(1218), 1, aux_sym_attributes_repeat1, - STATE(1389), 1, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1424), 1, + STATE(1312), 1, sym_attribute, - STATE(1537), 1, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(1975), 1, + STATE(1703), 1, sym_attributes, - STATE(1387), 3, + STATE(2090), 1, + sym__assign_right_expr, + STATE(1253), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [36572] = 10, + [34583] = 11, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3088), 1, + ACTIONS(3028), 1, + anon_sym_LPAREN, + ACTIONS(3030), 1, anon_sym_AMP, - ACTIONS(3090), 1, + ACTIONS(3032), 1, anon_sym_LBRACK, - ACTIONS(3122), 1, - anon_sym_LPAREN, - STATE(1688), 1, + ACTIONS(3034), 1, + anon_sym_SEMI, + STATE(1698), 1, sym_asm_expr, - STATE(1443), 2, + STATE(1329), 2, sym_asm_addr, sym_paren_expr, - STATE(1388), 3, + STATE(1254), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3084), 6, + ACTIONS(3026), 6, sym_real_literal, sym_integer_literal, sym_ident, sym_ct_ident, sym_const_ident, sym_ct_const_ident, - [36611] = 8, + [34625] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3134), 1, - anon_sym_EQ, - ACTIONS(3136), 1, - anon_sym_LPAREN, - STATE(1429), 1, - sym_attribute_param_list, - STATE(1389), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(3132), 9, + ACTIONS(2924), 1, sym_ident, + ACTIONS(2926), 1, sym_at_ident, + ACTIONS(2928), 1, sym_at_type_ident, + ACTIONS(2996), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - [36646] = 16, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2977), 1, - sym_ident, - ACTIONS(2979), 1, - sym_at_ident, - ACTIONS(2981), 1, - sym_at_type_ident, ACTIONS(3036), 1, - anon_sym_LPAREN, - ACTIONS(3062), 1, - anon_sym_LBRACE, - STATE(612), 1, - sym_switch_body, - STATE(1389), 1, + anon_sym_SEMI, + STATE(1218), 1, + aux_sym_attributes_repeat1, + STATE(1240), 1, + aux_sym_import_declaration_repeat1, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1430), 1, - sym_paren_cond, - STATE(1537), 1, + STATE(1312), 1, + sym_attribute, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(1988), 1, - sym_attribute, - STATE(1390), 3, + STATE(2118), 1, + sym_attributes, + STATE(1255), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [36697] = 16, + [34679] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2979), 1, + ACTIONS(2924), 1, + sym_ident, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(3098), 1, - anon_sym_LBRACE, - ACTIONS(3138), 1, - sym_ident, - STATE(1217), 1, - sym_struct_body, - STATE(1321), 1, + ACTIONS(2942), 1, + anon_sym_EQ, + ACTIONS(3038), 1, + anon_sym_SEMI, + STATE(1218), 1, aux_sym_attributes_repeat1, - STATE(1389), 1, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1424), 1, + STATE(1312), 1, sym_attribute, - STATE(1537), 1, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(2046), 1, + STATE(1668), 1, sym_attributes, - STATE(1391), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [36748] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(3142), 1, - anon_sym_EQ, - STATE(1392), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(3140), 10, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - [36778] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(3146), 1, - anon_sym_DOT, - STATE(1393), 3, + STATE(2033), 1, + sym__assign_right_expr, + STATE(1256), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3144), 10, - sym_real_literal, - sym_integer_literal, - sym_ident, - sym_ct_ident, - sym_const_ident, - sym_ct_const_ident, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_SEMI, - [36808] = 15, + [34733] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2924), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(3148), 1, + ACTIONS(2942), 1, anon_sym_EQ, - STATE(1321), 1, + ACTIONS(3040), 1, + anon_sym_SEMI, + STATE(1218), 1, aux_sym_attributes_repeat1, - STATE(1389), 1, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1424), 1, + STATE(1312), 1, sym_attribute, - STATE(1537), 1, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(2231), 1, + STATE(1657), 1, sym_attributes, - STATE(1394), 3, + STATE(2028), 1, + sym__assign_right_expr, + STATE(1257), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [36856] = 15, + [34787] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2348), 1, + anon_sym_COLON_COLON, + ACTIONS(2924), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(3150), 1, - anon_sym_SEMI, - STATE(1321), 1, + ACTIONS(3042), 1, + anon_sym_LBRACE, + STATE(1182), 1, + sym_struct_body, + STATE(1218), 1, aux_sym_attributes_repeat1, - STATE(1389), 1, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1424), 1, + STATE(1312), 1, sym_attribute, - STATE(1537), 1, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(2334), 1, + STATE(1734), 1, sym_attributes, - STATE(1395), 3, + STATE(1258), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [36904] = 15, + [34841] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2924), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(3152), 1, + ACTIONS(2930), 1, + anon_sym_LPAREN, + ACTIONS(3044), 1, anon_sym_EQ, - STATE(1321), 1, + STATE(1218), 1, aux_sym_attributes_repeat1, - STATE(1389), 1, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1293), 1, + sym_interface_impl, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1424), 1, + STATE(1312), 1, sym_attribute, - STATE(1537), 1, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(2322), 1, + STATE(2182), 1, sym_attributes, - STATE(1396), 3, + STATE(1259), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [36952] = 15, + [34895] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, - sym_ident, - ACTIONS(2979), 1, - sym_at_ident, - ACTIONS(2981), 1, - sym_at_type_ident, - ACTIONS(3154), 1, - anon_sym_SEMI, - STATE(1321), 1, - aux_sym_attributes_repeat1, - STATE(1389), 1, - sym__attribute_name, - STATE(1412), 1, - sym_path_at_type_ident, - STATE(1424), 1, - sym_attribute, - STATE(1537), 1, - sym_module_resolution, - STATE(1565), 1, - aux_sym__module_path, - STATE(2229), 1, - sym_attributes, - STATE(1397), 3, + ACTIONS(1707), 1, + anon_sym_DOT, + STATE(1260), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37000] = 15, + ACTIONS(1709), 12, + sym_ident, + sym_ct_ident, + sym_hash_ident, + sym_const_ident, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + [34927] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2924), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(3156), 1, + ACTIONS(2942), 1, + anon_sym_EQ, + ACTIONS(3046), 1, anon_sym_SEMI, - STATE(1321), 1, + STATE(1218), 1, aux_sym_attributes_repeat1, - STATE(1389), 1, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1424), 1, + STATE(1312), 1, sym_attribute, - STATE(1537), 1, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(2104), 1, + STATE(1636), 1, sym_attributes, - STATE(1398), 3, + STATE(2177), 1, + sym__assign_right_expr, + STATE(1261), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37048] = 15, + [34981] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2924), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(3158), 1, + ACTIONS(3048), 1, anon_sym_EQ, - STATE(1321), 1, + ACTIONS(3050), 1, + anon_sym_LPAREN, + STATE(1218), 1, aux_sym_attributes_repeat1, - STATE(1389), 1, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1424), 1, + STATE(1312), 1, sym_attribute, - STATE(1537), 1, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(2107), 1, + STATE(2155), 1, sym_attributes, - STATE(1399), 3, + STATE(1262), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37096] = 15, + [35032] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2924), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(3160), 1, - anon_sym_RBRACE, - STATE(1321), 1, + ACTIONS(2980), 1, + anon_sym_LBRACE, + STATE(930), 1, + sym_fault_body, + STATE(1218), 1, aux_sym_attributes_repeat1, - STATE(1389), 1, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1424), 1, + STATE(1312), 1, sym_attribute, - STATE(1537), 1, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(2108), 1, + STATE(1773), 1, sym_attributes, - STATE(1400), 3, + STATE(1263), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37144] = 6, + [35083] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3164), 1, + ACTIONS(3054), 1, anon_sym_EQ, - STATE(1401), 3, + ACTIONS(3056), 1, + anon_sym_LPAREN, + STATE(1316), 1, + sym_attribute_param_list, + STATE(1264), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3162), 10, + ACTIONS(3052), 9, sym_ident, sym_at_ident, sym_at_type_ident, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - [37174] = 15, + [35118] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2924), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(3166), 1, - anon_sym_RBRACE, - STATE(1321), 1, - aux_sym_attributes_repeat1, - STATE(1389), 1, + ACTIONS(2970), 1, + anon_sym_LPAREN, + ACTIONS(2990), 1, + anon_sym_LBRACE, + STATE(591), 1, + sym_switch_body, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1424), 1, - sym_attribute, - STATE(1537), 1, + STATE(1323), 1, + sym_paren_cond, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(2355), 1, - sym_attributes, - STATE(1402), 3, + STATE(1765), 1, + sym_attribute, + STATE(1265), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + [35169] = 10, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(3030), 1, + anon_sym_AMP, + ACTIONS(3032), 1, + anon_sym_LBRACK, + ACTIONS(3058), 1, + anon_sym_LPAREN, + STATE(1337), 1, + sym_asm_expr, + STATE(1329), 2, + sym_asm_addr, + sym_paren_expr, + STATE(1266), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37222] = 15, + ACTIONS(3026), 6, + sym_real_literal, + sym_integer_literal, + sym_ident, + sym_ct_ident, + sym_const_ident, + sym_ct_const_ident, + [35208] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2924), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(3168), 1, - anon_sym_SEMI, - STATE(1321), 1, - aux_sym_attributes_repeat1, - STATE(1389), 1, + ACTIONS(2970), 1, + anon_sym_LPAREN, + ACTIONS(2976), 1, + anon_sym_LBRACE, + STATE(670), 1, + sym_switch_body, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1424), 1, - sym_attribute, - STATE(1537), 1, + STATE(1319), 1, + sym_paren_cond, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(2089), 1, - sym_attributes, - STATE(1403), 3, + STATE(1841), 1, + sym_attribute, + STATE(1267), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + [35259] = 10, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(3030), 1, + anon_sym_AMP, + ACTIONS(3032), 1, + anon_sym_LBRACK, + ACTIONS(3058), 1, + anon_sym_LPAREN, + STATE(1491), 1, + sym_asm_expr, + STATE(1329), 2, + sym_asm_addr, + sym_paren_expr, + STATE(1268), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(3026), 6, + sym_real_literal, + sym_integer_literal, + sym_ident, + sym_ct_ident, + sym_const_ident, + sym_ct_const_ident, + [35298] = 10, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(3028), 1, + anon_sym_LPAREN, + ACTIONS(3030), 1, + anon_sym_AMP, + ACTIONS(3032), 1, + anon_sym_LBRACK, + STATE(1877), 1, + sym_asm_expr, + STATE(1329), 2, + sym_asm_addr, + sym_paren_expr, + STATE(1269), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37270] = 15, + ACTIONS(3026), 6, + sym_real_literal, + sym_integer_literal, + sym_ident, + sym_ct_ident, + sym_const_ident, + sym_ct_const_ident, + [35337] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2924), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(3170), 1, - anon_sym_SEMI, - STATE(1321), 1, + ACTIONS(3060), 1, + anon_sym_LBRACE, + STATE(1186), 1, + sym_bitstruct_body, + STATE(1218), 1, aux_sym_attributes_repeat1, - STATE(1389), 1, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1424), 1, + STATE(1312), 1, sym_attribute, - STATE(1537), 1, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(2307), 1, + STATE(1890), 1, sym_attributes, - STATE(1404), 3, + STATE(1270), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37318] = 15, + [35388] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2924), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(3018), 1, - anon_sym_SEMI, - STATE(1321), 1, - aux_sym_attributes_repeat1, - STATE(1389), 1, + ACTIONS(2970), 1, + anon_sym_LPAREN, + ACTIONS(2978), 1, + anon_sym_LBRACE, + STATE(401), 1, + sym_switch_body, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1424), 1, - sym_attribute, - STATE(1537), 1, + STATE(1314), 1, + sym_paren_cond, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(2252), 1, - sym_attributes, - STATE(1405), 3, + STATE(1878), 1, + sym_attribute, + STATE(1271), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37366] = 15, + [35439] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2924), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(3172), 1, - anon_sym_RBRACE, - STATE(1321), 1, + ACTIONS(2966), 1, + anon_sym_LBRACE, + STATE(892), 1, + sym_struct_body, + STATE(1218), 1, aux_sym_attributes_repeat1, - STATE(1389), 1, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1424), 1, + STATE(1312), 1, sym_attribute, - STATE(1537), 1, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(2244), 1, + STATE(1766), 1, sym_attributes, - STATE(1406), 3, + STATE(1272), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37414] = 15, + [35490] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2924), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(3174), 1, - anon_sym_SEMI, - STATE(1321), 1, - aux_sym_attributes_repeat1, - STATE(1389), 1, + ACTIONS(2970), 1, + anon_sym_LPAREN, + ACTIONS(2992), 1, + anon_sym_LBRACE, + STATE(671), 1, + sym_switch_body, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1424), 1, - sym_attribute, - STATE(1537), 1, + STATE(1322), 1, + sym_paren_cond, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(2247), 1, - sym_attributes, - STATE(1407), 3, + STATE(1874), 1, + sym_attribute, + STATE(1273), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37462] = 15, + [35541] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2924), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(3176), 1, - anon_sym_SEMI, - STATE(1321), 1, + ACTIONS(3060), 1, + anon_sym_LBRACE, + STATE(1184), 1, + sym_bitstruct_body, + STATE(1218), 1, aux_sym_attributes_repeat1, - STATE(1389), 1, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1424), 1, + STATE(1312), 1, sym_attribute, - STATE(1537), 1, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(2337), 1, + STATE(1870), 1, sym_attributes, - STATE(1408), 3, + STATE(1274), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37510] = 15, + [35592] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2924), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(3178), 1, - anon_sym_SEMI, - STATE(1321), 1, - aux_sym_attributes_repeat1, - STATE(1389), 1, + ACTIONS(2970), 1, + anon_sym_LPAREN, + ACTIONS(2972), 1, + anon_sym_LBRACE, + STATE(480), 1, + sym_switch_body, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1424), 1, - sym_attribute, - STATE(1537), 1, + STATE(1310), 1, + sym_paren_cond, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(2171), 1, - sym_attributes, - STATE(1409), 3, + STATE(1797), 1, + sym_attribute, + STATE(1275), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37558] = 15, + [35643] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2924), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(3180), 1, - anon_sym_SEMI, - STATE(1321), 1, + STATE(1218), 1, aux_sym_attributes_repeat1, - STATE(1389), 1, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1424), 1, + STATE(1312), 1, sym_attribute, - STATE(1537), 1, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(2233), 1, + STATE(1845), 1, sym_attributes, - STATE(1410), 3, + ACTIONS(3062), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(1276), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37606] = 15, + [35692] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(3182), 1, + ACTIONS(3042), 1, + anon_sym_LBRACE, + ACTIONS(3064), 1, sym_ident, - ACTIONS(3184), 1, - anon_sym_SEMI, - STATE(1321), 1, + STATE(1189), 1, + sym_struct_body, + STATE(1218), 1, aux_sym_attributes_repeat1, - STATE(1389), 1, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1424), 1, + STATE(1312), 1, sym_attribute, - STATE(1537), 1, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(2227), 1, + STATE(1784), 1, sym_attributes, - STATE(1411), 3, + STATE(1277), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37654] = 6, + [35743] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, - anon_sym_EQ, - STATE(1412), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(3186), 10, + ACTIONS(2924), 1, sym_ident, + ACTIONS(2926), 1, sym_at_ident, + ACTIONS(2928), 1, sym_at_type_ident, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, + ACTIONS(3066), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - [37684] = 15, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2977), 1, - sym_ident, - ACTIONS(2979), 1, - sym_at_ident, - ACTIONS(2981), 1, - sym_at_type_ident, - ACTIONS(3190), 1, - anon_sym_RBRACE, - STATE(1321), 1, + STATE(834), 1, + sym_bitstruct_body, + STATE(1218), 1, aux_sym_attributes_repeat1, - STATE(1389), 1, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1424), 1, + STATE(1312), 1, sym_attribute, - STATE(1537), 1, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(2314), 1, + STATE(1820), 1, sym_attributes, - STATE(1413), 3, + STATE(1278), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37732] = 5, + [35794] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1414), 3, + ACTIONS(2924), 1, + sym_ident, + ACTIONS(2926), 1, + sym_at_ident, + ACTIONS(2928), 1, + sym_at_type_ident, + ACTIONS(2970), 1, + anon_sym_LPAREN, + ACTIONS(2994), 1, + anon_sym_LBRACE, + STATE(514), 1, + sym_switch_body, + STATE(1264), 1, + sym__attribute_name, + STATE(1302), 1, + sym_path_at_type_ident, + STATE(1315), 1, + sym_paren_cond, + STATE(1421), 1, + sym_module_resolution, + STATE(1512), 1, + aux_sym__module_path, + STATE(1772), 1, + sym_attribute, + STATE(1279), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3192), 10, - sym_real_literal, - sym_integer_literal, - sym_ident, - sym_ct_ident, - sym_const_ident, - sym_ct_const_ident, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_SEMI, - [37759] = 6, + [35845] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3196), 1, - anon_sym_EQ, - STATE(1415), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(3194), 9, + ACTIONS(2924), 1, sym_ident, + ACTIONS(2926), 1, sym_at_ident, + ACTIONS(2928), 1, sym_at_type_ident, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, + ACTIONS(2932), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - [37788] = 14, + STATE(883), 1, + sym_enum_body, + STATE(1218), 1, + aux_sym_attributes_repeat1, + STATE(1264), 1, + sym__attribute_name, + STATE(1302), 1, + sym_path_at_type_ident, + STATE(1312), 1, + sym_attribute, + STATE(1421), 1, + sym_module_resolution, + STATE(1512), 1, + aux_sym__module_path, + STATE(1771), 1, + sym_attributes, + STATE(1280), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + [35896] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2924), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(3056), 1, + ACTIONS(2932), 1, anon_sym_LBRACE, - STATE(671), 1, - sym_switch_body, - STATE(1389), 1, + STATE(893), 1, + sym_enum_body, + STATE(1218), 1, + aux_sym_attributes_repeat1, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1537), 1, + STATE(1312), 1, + sym_attribute, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(1962), 1, - sym_attribute, - STATE(1416), 3, + STATE(1834), 1, + sym_attributes, + STATE(1281), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37833] = 14, + [35947] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2924), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(3038), 1, - anon_sym_LBRACE, - STATE(433), 1, - sym_switch_body, - STATE(1389), 1, + STATE(1218), 1, + aux_sym_attributes_repeat1, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1537), 1, + STATE(1312), 1, + sym_attribute, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(2001), 1, - sym_attribute, - STATE(1417), 3, + STATE(1740), 1, + sym_attributes, + ACTIONS(3068), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(1282), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37878] = 14, + [35996] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2348), 1, + anon_sym_COLON_COLON, + ACTIONS(2924), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(3054), 1, - anon_sym_LBRACE, - STATE(505), 1, - sym_switch_body, - STATE(1389), 1, + ACTIONS(3070), 1, + anon_sym_SEMI, + STATE(1218), 1, + aux_sym_attributes_repeat1, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1537), 1, + STATE(1312), 1, + sym_attribute, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(2043), 1, - sym_attribute, - STATE(1418), 3, + STATE(1973), 1, + sym_attributes, + STATE(1283), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37923] = 14, + [36047] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2924), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(3044), 1, + ACTIONS(3066), 1, anon_sym_LBRACE, - STATE(827), 1, - sym_switch_body, - STATE(1389), 1, + STATE(846), 1, + sym_bitstruct_body, + STATE(1218), 1, + aux_sym_attributes_repeat1, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1537), 1, + STATE(1312), 1, + sym_attribute, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(2037), 1, - sym_attribute, - STATE(1419), 3, + STATE(1863), 1, + sym_attributes, + STATE(1284), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37968] = 14, + [36098] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2924), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(3038), 1, - anon_sym_LBRACE, - STATE(432), 1, - sym_switch_body, - STATE(1389), 1, + ACTIONS(3072), 1, + anon_sym_SEMI, + STATE(1218), 1, + aux_sym_attributes_repeat1, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1537), 1, + STATE(1312), 1, + sym_attribute, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(2003), 1, - sym_attribute, - STATE(1420), 3, + STATE(2075), 1, + sym_attributes, + STATE(1285), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [38013] = 14, + [36146] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, - sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(3056), 1, - anon_sym_LBRACE, - STATE(645), 1, - sym_switch_body, - STATE(1389), 1, + ACTIONS(3074), 1, + sym_ident, + ACTIONS(3076), 1, + anon_sym_SEMI, + STATE(1218), 1, + aux_sym_attributes_repeat1, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1537), 1, + STATE(1312), 1, + sym_attribute, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(1980), 1, - sym_attribute, - STATE(1421), 3, + STATE(2078), 1, + sym_attributes, + STATE(1286), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [38058] = 6, + [36194] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3200), 1, - anon_sym_EQ, - STATE(1422), 3, + ACTIONS(2924), 1, + sym_ident, + ACTIONS(2926), 1, + sym_at_ident, + ACTIONS(2928), 1, + sym_at_type_ident, + ACTIONS(3078), 1, + anon_sym_RBRACE, + STATE(1218), 1, + aux_sym_attributes_repeat1, + STATE(1264), 1, + sym__attribute_name, + STATE(1302), 1, + sym_path_at_type_ident, + STATE(1312), 1, + sym_attribute, + STATE(1421), 1, + sym_module_resolution, + STATE(1512), 1, + aux_sym__module_path, + STATE(2209), 1, + sym_attributes, + STATE(1287), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3198), 9, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - [38087] = 14, + [36242] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2924), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(3050), 1, - anon_sym_LBRACE, - STATE(782), 1, - sym_switch_body, - STATE(1389), 1, + ACTIONS(3080), 1, + anon_sym_RBRACE, + STATE(1218), 1, + aux_sym_attributes_repeat1, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1537), 1, + STATE(1312), 1, + sym_attribute, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(1917), 1, - sym_attribute, - STATE(1423), 3, + STATE(1962), 1, + sym_attributes, + STATE(1288), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [38132] = 6, + [36290] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3204), 1, - anon_sym_EQ, - STATE(1424), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(3202), 9, + ACTIONS(2924), 1, sym_ident, + ACTIONS(2926), 1, sym_at_ident, + ACTIONS(2928), 1, sym_at_type_ident, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3082), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - [38161] = 14, + STATE(1218), 1, + aux_sym_attributes_repeat1, + STATE(1264), 1, + sym__attribute_name, + STATE(1302), 1, + sym_path_at_type_ident, + STATE(1312), 1, + sym_attribute, + STATE(1421), 1, + sym_module_resolution, + STATE(1512), 1, + aux_sym__module_path, + STATE(2059), 1, + sym_attributes, + STATE(1289), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + [36338] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2924), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(3050), 1, - anon_sym_LBRACE, - STATE(819), 1, - sym_switch_body, - STATE(1389), 1, + ACTIONS(3084), 1, + anon_sym_SEMI, + STATE(1218), 1, + aux_sym_attributes_repeat1, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1537), 1, + STATE(1312), 1, + sym_attribute, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(1902), 1, - sym_attribute, - STATE(1425), 3, + STATE(2054), 1, + sym_attributes, + STATE(1290), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [38206] = 14, + [36386] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2924), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(3054), 1, - anon_sym_LBRACE, - STATE(530), 1, - sym_switch_body, - STATE(1389), 1, + ACTIONS(3086), 1, + anon_sym_RBRACE, + STATE(1218), 1, + aux_sym_attributes_repeat1, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1537), 1, + STATE(1312), 1, + sym_attribute, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(2029), 1, - sym_attribute, - STATE(1426), 3, + STATE(1910), 1, + sym_attributes, + STATE(1291), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [38251] = 14, + [36434] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2924), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(3062), 1, - anon_sym_LBRACE, - STATE(606), 1, - sym_switch_body, - STATE(1389), 1, + ACTIONS(3088), 1, + anon_sym_EQ, + STATE(1218), 1, + aux_sym_attributes_repeat1, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1537), 1, + STATE(1312), 1, + sym_attribute, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(1982), 1, - sym_attribute, - STATE(1427), 3, + STATE(2211), 1, + sym_attributes, + STATE(1292), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [38296] = 14, + [36482] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2924), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(3044), 1, - anon_sym_LBRACE, - STATE(795), 1, - sym_switch_body, - STATE(1389), 1, + ACTIONS(3090), 1, + anon_sym_EQ, + STATE(1218), 1, + aux_sym_attributes_repeat1, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1537), 1, + STATE(1312), 1, + sym_attribute, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(2055), 1, - sym_attribute, - STATE(1428), 3, + STATE(2149), 1, + sym_attributes, + STATE(1293), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [38341] = 6, + [36530] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3208), 1, + ACTIONS(3094), 1, anon_sym_EQ, - STATE(1429), 3, + STATE(1294), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3206), 9, + ACTIONS(3092), 10, sym_ident, sym_at_ident, sym_at_type_ident, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - [38370] = 14, + [36560] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2924), 1, sym_ident, - ACTIONS(2979), 1, + ACTIONS(2926), 1, sym_at_ident, - ACTIONS(2981), 1, + ACTIONS(2928), 1, sym_at_type_ident, - ACTIONS(3062), 1, - anon_sym_LBRACE, - STATE(609), 1, - sym_switch_body, - STATE(1389), 1, + ACTIONS(3096), 1, + anon_sym_SEMI, + STATE(1218), 1, + aux_sym_attributes_repeat1, + STATE(1264), 1, sym__attribute_name, - STATE(1412), 1, + STATE(1302), 1, sym_path_at_type_ident, - STATE(1537), 1, + STATE(1312), 1, + sym_attribute, + STATE(1421), 1, sym_module_resolution, - STATE(1565), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(2014), 1, - sym_attribute, - STATE(1430), 3, + STATE(2046), 1, + sym_attributes, + STATE(1295), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [38415] = 5, + [36608] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1431), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(3210), 9, - sym_real_literal, - sym_integer_literal, + ACTIONS(2924), 1, sym_ident, - sym_ct_ident, - sym_const_ident, - sym_ct_const_ident, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_LBRACK, - [38441] = 8, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(3214), 1, - anon_sym_LBRACK, - ACTIONS(3217), 1, - anon_sym_DOT, - STATE(1455), 1, - sym_param_path_element, - STATE(1432), 4, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - aux_sym_param_path_repeat1, - ACTIONS(3212), 5, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, + ACTIONS(2926), 1, + sym_at_ident, + ACTIONS(2928), 1, + sym_at_type_ident, + ACTIONS(2936), 1, anon_sym_SEMI, - anon_sym_RBRACE, - [38473] = 8, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(3224), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(3226), 1, - anon_sym_AMP, - ACTIONS(3220), 3, - sym_ident, - sym_ct_ident, - sym_hash_ident, - STATE(1433), 3, + STATE(1218), 1, + aux_sym_attributes_repeat1, + STATE(1264), 1, + sym__attribute_name, + STATE(1302), 1, + sym_path_at_type_ident, + STATE(1312), 1, + sym_attribute, + STATE(1421), 1, + sym_module_resolution, + STATE(1512), 1, + aux_sym__module_path, + STATE(2052), 1, + sym_attributes, + STATE(1296), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3222), 4, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_SEMI, - [38505] = 9, + [36656] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(91), 1, - anon_sym_LBRACK, - ACTIONS(3230), 1, - anon_sym_DOT, - STATE(1432), 1, - aux_sym_param_path_repeat1, - STATE(1455), 1, - sym_param_path_element, - STATE(1434), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(3228), 5, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, + ACTIONS(2924), 1, + sym_ident, + ACTIONS(2926), 1, + sym_at_ident, + ACTIONS(2928), 1, + sym_at_type_ident, + ACTIONS(3098), 1, anon_sym_SEMI, - anon_sym_RBRACE, - [38539] = 13, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(3232), 1, - anon_sym_LPAREN_LT, - ACTIONS(3234), 1, - anon_sym_LPAREN, - ACTIONS(3236), 1, - anon_sym_LBRACK, - ACTIONS(3238), 1, - anon_sym_BANG, - ACTIONS(3240), 1, - anon_sym_PLUS_PLUS, - ACTIONS(3242), 1, - anon_sym_DASH_DASH, - ACTIONS(3244), 1, - anon_sym_BANG_BANG, - STATE(983), 1, - sym_call_invocation, - STATE(993), 1, - sym_generic_arguments, - STATE(1435), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [38581] = 5, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(1436), 3, + STATE(1218), 1, + aux_sym_attributes_repeat1, + STATE(1264), 1, + sym__attribute_name, + STATE(1302), 1, + sym_path_at_type_ident, + STATE(1312), 1, + sym_attribute, + STATE(1421), 1, + sym_module_resolution, + STATE(1512), 1, + aux_sym__module_path, + STATE(1986), 1, + sym_attributes, + STATE(1297), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3246), 8, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - [38606] = 5, + [36704] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1437), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(3248), 8, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(2924), 1, + sym_ident, + ACTIONS(2926), 1, + sym_at_ident, + ACTIONS(2928), 1, + sym_at_type_ident, + ACTIONS(3100), 1, anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - [38631] = 9, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(3250), 1, - anon_sym_RBRACK, - ACTIONS(3256), 1, - anon_sym_STAR, - ACTIONS(3252), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3254), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(2286), 2, - sym__additive_op, - sym__shift_op, - STATE(1438), 3, + STATE(1218), 1, + aux_sym_attributes_repeat1, + STATE(1264), 1, + sym__attribute_name, + STATE(1302), 1, + sym_path_at_type_ident, + STATE(1312), 1, + sym_attribute, + STATE(1421), 1, + sym_module_resolution, + STATE(1512), 1, + aux_sym__module_path, + STATE(2213), 1, + sym_attributes, + STATE(1298), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [38664] = 10, + [36752] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3260), 1, - anon_sym_LBRACE, - ACTIONS(3262), 1, - anon_sym_DOT, - ACTIONS(3264), 1, - anon_sym_BANG, - STATE(1006), 1, - sym_initializer_list, - ACTIONS(2736), 2, + ACTIONS(2924), 1, sym_ident, - sym_ct_ident, - ACTIONS(3258), 2, - anon_sym_COMMA, + ACTIONS(2926), 1, + sym_at_ident, + ACTIONS(2928), 1, + sym_at_type_ident, + ACTIONS(3102), 1, anon_sym_RBRACE, - STATE(1439), 3, + STATE(1218), 1, + aux_sym_attributes_repeat1, + STATE(1264), 1, + sym__attribute_name, + STATE(1302), 1, + sym_path_at_type_ident, + STATE(1312), 1, + sym_attribute, + STATE(1421), 1, + sym_module_resolution, + STATE(1512), 1, + aux_sym__module_path, + STATE(1984), 1, + sym_attributes, + STATE(1299), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [38699] = 5, + [36800] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1440), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(3266), 8, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(2924), 1, + sym_ident, + ACTIONS(2926), 1, + sym_at_ident, + ACTIONS(2928), 1, + sym_at_type_ident, + ACTIONS(3104), 1, anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - [38724] = 5, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(1441), 3, + STATE(1218), 1, + aux_sym_attributes_repeat1, + STATE(1264), 1, + sym__attribute_name, + STATE(1302), 1, + sym_path_at_type_ident, + STATE(1312), 1, + sym_attribute, + STATE(1421), 1, + sym_module_resolution, + STATE(1512), 1, + aux_sym__module_path, + STATE(2141), 1, + sym_attributes, + STATE(1300), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3268), 8, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - [38749] = 5, + [36848] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1442), 3, + ACTIONS(3108), 1, + anon_sym_EQ, + STATE(1301), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3270), 8, + ACTIONS(3106), 10, + sym_ident, + sym_at_ident, + sym_at_type_ident, anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - [38774] = 5, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + [36878] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1443), 3, + ACTIONS(3112), 1, + anon_sym_EQ, + STATE(1302), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3272), 8, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - [38799] = 10, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(3274), 1, + ACTIONS(3110), 10, sym_ident, - ACTIONS(3276), 1, sym_at_ident, - ACTIONS(3278), 1, - sym_type_ident, - ACTIONS(3280), 1, sym_at_type_ident, - ACTIONS(3282), 1, - sym_const_ident, - STATE(1395), 2, - sym_define_attribute, - sym_define_ident, - STATE(1444), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [38833] = 8, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(3260), 1, - anon_sym_LBRACE, - ACTIONS(3262), 1, - anon_sym_DOT, - STATE(1006), 1, - sym_initializer_list, - STATE(1445), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(3284), 4, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, - [38863] = 11, + anon_sym_EQ_GT, + [36908] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(75), 1, - sym_at_ident, - ACTIONS(83), 1, - sym_const_ident, - ACTIONS(3286), 1, + ACTIONS(2924), 1, sym_ident, - ACTIONS(3288), 1, - sym_type_ident, - STATE(1013), 1, - sym__ident_expr, - STATE(1450), 1, - aux_sym__module_path, - STATE(1537), 1, + ACTIONS(2926), 1, + sym_at_ident, + ACTIONS(2928), 1, + sym_at_type_ident, + ACTIONS(3114), 1, + anon_sym_EQ, + STATE(1218), 1, + aux_sym_attributes_repeat1, + STATE(1264), 1, + sym__attribute_name, + STATE(1302), 1, + sym_path_at_type_ident, + STATE(1312), 1, + sym_attribute, + STATE(1421), 1, sym_module_resolution, - STATE(1446), 3, + STATE(1512), 1, + aux_sym__module_path, + STATE(2150), 1, + sym_attributes, + STATE(1303), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [38899] = 8, + [36956] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3260), 1, - anon_sym_LBRACE, - ACTIONS(3262), 1, - anon_sym_DOT, - STATE(1006), 1, - sym_initializer_list, - STATE(1447), 3, + ACTIONS(2924), 1, + sym_ident, + ACTIONS(2926), 1, + sym_at_ident, + ACTIONS(2928), 1, + sym_at_type_ident, + ACTIONS(3116), 1, + anon_sym_SEMI, + STATE(1218), 1, + aux_sym_attributes_repeat1, + STATE(1264), 1, + sym__attribute_name, + STATE(1302), 1, + sym_path_at_type_ident, + STATE(1312), 1, + sym_attribute, + STATE(1421), 1, + sym_module_resolution, + STATE(1512), 1, + aux_sym__module_path, + STATE(2175), 1, + sym_attributes, + STATE(1304), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3258), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - [38929] = 6, + [37004] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2219), 1, - anon_sym_COLON_COLON, - STATE(1448), 3, + ACTIONS(3120), 1, + anon_sym_DOT, + STATE(1305), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3290), 6, + ACTIONS(3118), 10, + sym_real_literal, + sym_integer_literal, sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_COMMA, - anon_sym_LPAREN_LT, + sym_ct_ident, + sym_const_ident, + sym_ct_const_ident, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_LBRACK, anon_sym_SEMI, - [38955] = 5, + [37034] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1449), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(3292), 7, + ACTIONS(2924), 1, sym_ident, + ACTIONS(2926), 1, sym_at_ident, + ACTIONS(2928), 1, sym_at_type_ident, - anon_sym_RPAREN, + ACTIONS(3122), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [38979] = 8, + STATE(1218), 1, + aux_sym_attributes_repeat1, + STATE(1264), 1, + sym__attribute_name, + STATE(1302), 1, + sym_path_at_type_ident, + STATE(1312), 1, + sym_attribute, + STATE(1421), 1, + sym_module_resolution, + STATE(1512), 1, + aux_sym__module_path, + STATE(2172), 1, + sym_attributes, + STATE(1306), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + [37082] = 14, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3294), 1, + ACTIONS(2924), 1, sym_ident, - ACTIONS(3299), 1, - sym_const_ident, - STATE(1537), 1, - sym_module_resolution, - ACTIONS(3297), 3, + ACTIONS(2926), 1, sym_at_ident, - sym_type_ident, + ACTIONS(2928), 1, sym_at_type_ident, - STATE(1450), 4, + ACTIONS(2972), 1, + anon_sym_LBRACE, + STATE(464), 1, + sym_switch_body, + STATE(1264), 1, + sym__attribute_name, + STATE(1302), 1, + sym_path_at_type_ident, + STATE(1421), 1, + sym_module_resolution, + STATE(1512), 1, + aux_sym__module_path, + STATE(1799), 1, + sym_attribute, + STATE(1307), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym__module_path, - [39009] = 11, + [37127] = 14, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(75), 1, - sym_at_ident, - ACTIONS(83), 1, - sym_const_ident, - ACTIONS(3286), 1, + ACTIONS(2924), 1, sym_ident, - ACTIONS(3301), 1, - sym_type_ident, - STATE(1013), 1, - sym__ident_expr, - STATE(1450), 1, - aux_sym__module_path, - STATE(1537), 1, + ACTIONS(2926), 1, + sym_at_ident, + ACTIONS(2928), 1, + sym_at_type_ident, + ACTIONS(2976), 1, + anon_sym_LBRACE, + STATE(668), 1, + sym_switch_body, + STATE(1264), 1, + sym__attribute_name, + STATE(1302), 1, + sym_path_at_type_ident, + STATE(1421), 1, sym_module_resolution, - STATE(1451), 3, + STATE(1512), 1, + aux_sym__module_path, + STATE(1840), 1, + sym_attribute, + STATE(1308), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39045] = 6, + [37172] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2219), 1, - anon_sym_COLON_COLON, - STATE(1452), 3, + ACTIONS(3126), 1, + anon_sym_EQ, + STATE(1309), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3303), 6, + ACTIONS(3124), 9, sym_ident, sym_at_ident, sym_at_type_ident, anon_sym_COMMA, - anon_sym_LPAREN_LT, + anon_sym_RPAREN, anon_sym_SEMI, - [39071] = 9, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + [37201] = 14, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3309), 1, - sym_const_ident, - ACTIONS(3311), 1, - anon_sym_DOLLAReval, - STATE(1007), 1, - sym_access_ident, - ACTIONS(3305), 2, + ACTIONS(2924), 1, sym_ident, - anon_sym_typeid, - ACTIONS(3307), 2, + ACTIONS(2926), 1, sym_at_ident, - sym_hash_ident, - STATE(1453), 3, + ACTIONS(2928), 1, + sym_at_type_ident, + ACTIONS(2972), 1, + anon_sym_LBRACE, + STATE(418), 1, + sym_switch_body, + STATE(1264), 1, + sym__attribute_name, + STATE(1302), 1, + sym_path_at_type_ident, + STATE(1421), 1, + sym_module_resolution, + STATE(1512), 1, + aux_sym__module_path, + STATE(1789), 1, + sym_attribute, + STATE(1310), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39103] = 5, + [37246] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1454), 3, + ACTIONS(3130), 1, + anon_sym_EQ, + STATE(1311), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3313), 7, + ACTIONS(3128), 9, sym_ident, sym_at_ident, sym_at_type_ident, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_EQ_GT, - [39127] = 5, + [37275] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1455), 3, + ACTIONS(3134), 1, + anon_sym_EQ, + STATE(1312), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3315), 7, + ACTIONS(3132), 9, + sym_ident, + sym_at_ident, + sym_at_type_ident, anon_sym_COMMA, - anon_sym_EQ, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, - [39151] = 11, + anon_sym_EQ_GT, + [37304] = 14, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2924), 1, sym_ident, - ACTIONS(3317), 1, - sym_type_ident, - ACTIONS(3319), 1, - anon_sym_RPAREN, - STATE(1537), 1, + ACTIONS(2926), 1, + sym_at_ident, + ACTIONS(2928), 1, + sym_at_type_ident, + ACTIONS(2990), 1, + anon_sym_LBRACE, + STATE(595), 1, + sym_switch_body, + STATE(1264), 1, + sym__attribute_name, + STATE(1302), 1, + sym_path_at_type_ident, + STATE(1421), 1, sym_module_resolution, - STATE(1602), 1, - sym_path_type_ident, - STATE(1603), 1, + STATE(1512), 1, aux_sym__module_path, - STATE(1749), 1, - sym_interface, - STATE(1456), 3, + STATE(1763), 1, + sym_attribute, + STATE(1313), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39187] = 9, + [37349] = 14, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2738), 1, - anon_sym_BANG, - ACTIONS(3260), 1, + ACTIONS(2924), 1, + sym_ident, + ACTIONS(2926), 1, + sym_at_ident, + ACTIONS(2928), 1, + sym_at_type_ident, + ACTIONS(2978), 1, anon_sym_LBRACE, - ACTIONS(3262), 1, - anon_sym_DOT, - STATE(1006), 1, - sym_initializer_list, - ACTIONS(2736), 3, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - STATE(1457), 3, + STATE(399), 1, + sym_switch_body, + STATE(1264), 1, + sym__attribute_name, + STATE(1302), 1, + sym_path_at_type_ident, + STATE(1421), 1, + sym_module_resolution, + STATE(1512), 1, + aux_sym__module_path, + STATE(1780), 1, + sym_attribute, + STATE(1314), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39219] = 5, + [37394] = 14, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1458), 3, + ACTIONS(2924), 1, + sym_ident, + ACTIONS(2926), 1, + sym_at_ident, + ACTIONS(2928), 1, + sym_at_type_ident, + ACTIONS(2994), 1, + anon_sym_LBRACE, + STATE(519), 1, + sym_switch_body, + STATE(1264), 1, + sym__attribute_name, + STATE(1302), 1, + sym_path_at_type_ident, + STATE(1421), 1, + sym_module_resolution, + STATE(1512), 1, + aux_sym__module_path, + STATE(1738), 1, + sym_attribute, + STATE(1315), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3321), 7, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_DOT, - [39243] = 5, + [37439] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1459), 3, + ACTIONS(3138), 1, + anon_sym_EQ, + STATE(1316), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3323), 7, + ACTIONS(3136), 9, + sym_ident, + sym_at_ident, + sym_at_type_ident, anon_sym_COMMA, - anon_sym_EQ, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, - [39267] = 9, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(3327), 1, - anon_sym_RBRACE, - STATE(1358), 1, - sym_asm_instr, - STATE(1496), 1, - aux_sym_asm_block_stmt_repeat1, - STATE(1826), 1, - sym_asm_stmt, - ACTIONS(3325), 2, - sym_ident, - anon_sym_int, - STATE(1460), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [39298] = 9, + anon_sym_EQ_GT, + [37468] = 14, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3329), 1, - anon_sym_RBRACE, - STATE(1358), 1, - sym_asm_instr, - STATE(1507), 1, - aux_sym_asm_block_stmt_repeat1, - STATE(1826), 1, - sym_asm_stmt, - ACTIONS(3325), 2, + ACTIONS(2924), 1, sym_ident, - anon_sym_int, - STATE(1461), 3, + ACTIONS(2926), 1, + sym_at_ident, + ACTIONS(2928), 1, + sym_at_type_ident, + ACTIONS(2978), 1, + anon_sym_LBRACE, + STATE(404), 1, + sym_switch_body, + STATE(1264), 1, + sym__attribute_name, + STATE(1302), 1, + sym_path_at_type_ident, + STATE(1421), 1, + sym_module_resolution, + STATE(1512), 1, + aux_sym__module_path, + STATE(1873), 1, + sym_attribute, + STATE(1317), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39329] = 9, + [37513] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3331), 1, - anon_sym_RBRACE, - STATE(1358), 1, - sym_asm_instr, - STATE(1507), 1, - aux_sym_asm_block_stmt_repeat1, - STATE(1826), 1, - sym_asm_stmt, - ACTIONS(3325), 2, - sym_ident, - anon_sym_int, - STATE(1462), 3, + STATE(1318), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39360] = 9, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(3260), 1, - anon_sym_LBRACE, - ACTIONS(3262), 1, - anon_sym_DOT, - ACTIONS(3264), 1, - anon_sym_BANG, - STATE(1006), 1, - sym_initializer_list, - ACTIONS(2736), 2, + ACTIONS(3140), 10, + sym_real_literal, + sym_integer_literal, sym_ident, sym_ct_ident, - STATE(1463), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [39391] = 8, + sym_const_ident, + sym_ct_const_ident, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_SEMI, + [37540] = 14, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3311), 1, - anon_sym_DOLLAReval, - STATE(1021), 1, - sym_access_ident, - ACTIONS(3305), 2, + ACTIONS(2924), 1, sym_ident, - anon_sym_typeid, - ACTIONS(3307), 2, + ACTIONS(2926), 1, sym_at_ident, - sym_hash_ident, - STATE(1464), 3, + ACTIONS(2928), 1, + sym_at_type_ident, + ACTIONS(2976), 1, + anon_sym_LBRACE, + STATE(686), 1, + sym_switch_body, + STATE(1264), 1, + sym__attribute_name, + STATE(1302), 1, + sym_path_at_type_ident, + STATE(1421), 1, + sym_module_resolution, + STATE(1512), 1, + aux_sym__module_path, + STATE(1849), 1, + sym_attribute, + STATE(1319), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39420] = 9, + [37585] = 14, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3333), 1, - anon_sym_RBRACE, - ACTIONS(3335), 1, - anon_sym_case, - ACTIONS(3337), 1, - anon_sym_default, - STATE(1505), 1, - aux_sym_switch_body_repeat1, - STATE(1835), 2, - sym_case_stmt, - sym_default_stmt, - STATE(1465), 3, + ACTIONS(2924), 1, + sym_ident, + ACTIONS(2926), 1, + sym_at_ident, + ACTIONS(2928), 1, + sym_at_type_ident, + ACTIONS(2992), 1, + anon_sym_LBRACE, + STATE(742), 1, + sym_switch_body, + STATE(1264), 1, + sym__attribute_name, + STATE(1302), 1, + sym_path_at_type_ident, + STATE(1421), 1, + sym_module_resolution, + STATE(1512), 1, + aux_sym__module_path, + STATE(1872), 1, + sym_attribute, + STATE(1320), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39451] = 9, + [37630] = 14, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3339), 1, - anon_sym_RBRACE, - STATE(1358), 1, - sym_asm_instr, - STATE(1507), 1, - aux_sym_asm_block_stmt_repeat1, - STATE(1826), 1, - sym_asm_stmt, - ACTIONS(3325), 2, + ACTIONS(2924), 1, sym_ident, - anon_sym_int, - STATE(1466), 3, + ACTIONS(2926), 1, + sym_at_ident, + ACTIONS(2928), 1, + sym_at_type_ident, + ACTIONS(2994), 1, + anon_sym_LBRACE, + STATE(493), 1, + sym_switch_body, + STATE(1264), 1, + sym__attribute_name, + STATE(1302), 1, + sym_path_at_type_ident, + STATE(1421), 1, + sym_module_resolution, + STATE(1512), 1, + aux_sym__module_path, + STATE(1778), 1, + sym_attribute, + STATE(1321), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39482] = 9, + [37675] = 14, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3341), 1, - anon_sym_RBRACE, - STATE(1358), 1, - sym_asm_instr, - STATE(1507), 1, - aux_sym_asm_block_stmt_repeat1, - STATE(1826), 1, - sym_asm_stmt, - ACTIONS(3325), 2, + ACTIONS(2924), 1, sym_ident, - anon_sym_int, - STATE(1467), 3, + ACTIONS(2926), 1, + sym_at_ident, + ACTIONS(2928), 1, + sym_at_type_ident, + ACTIONS(2992), 1, + anon_sym_LBRACE, + STATE(760), 1, + sym_switch_body, + STATE(1264), 1, + sym__attribute_name, + STATE(1302), 1, + sym_path_at_type_ident, + STATE(1421), 1, + sym_module_resolution, + STATE(1512), 1, + aux_sym__module_path, + STATE(1883), 1, + sym_attribute, + STATE(1322), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39513] = 6, + [37720] = 14, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3345), 1, - anon_sym_COMMA, - ACTIONS(3343), 4, + ACTIONS(2924), 1, sym_ident, + ACTIONS(2926), 1, sym_at_ident, + ACTIONS(2928), 1, sym_at_type_ident, - anon_sym_SEMI, - STATE(1468), 4, + ACTIONS(2990), 1, + anon_sym_LBRACE, + STATE(613), 1, + sym_switch_body, + STATE(1264), 1, + sym__attribute_name, + STATE(1302), 1, + sym_path_at_type_ident, + STATE(1421), 1, + sym_module_resolution, + STATE(1512), 1, + aux_sym__module_path, + STATE(1782), 1, + sym_attribute, + STATE(1323), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_import_declaration_repeat1, - [39538] = 9, + [37765] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_RBRACE, - STATE(1358), 1, - sym_asm_instr, - STATE(1507), 1, - aux_sym_asm_block_stmt_repeat1, - STATE(1826), 1, - sym_asm_stmt, - ACTIONS(3325), 2, - sym_ident, - anon_sym_int, - STATE(1469), 3, + ACTIONS(89), 1, + anon_sym_LBRACK, + ACTIONS(3144), 1, + anon_sym_DOT, + STATE(1327), 1, + aux_sym_param_path_repeat1, + STATE(1345), 1, + sym_param_path_element, + STATE(1324), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39569] = 9, + ACTIONS(3142), 5, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + [37799] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3350), 1, - anon_sym_RBRACE, - STATE(1358), 1, - sym_asm_instr, - STATE(1462), 1, - aux_sym_asm_block_stmt_repeat1, - STATE(1826), 1, - sym_asm_stmt, - ACTIONS(3325), 2, - sym_ident, - anon_sym_int, - STATE(1470), 3, + STATE(1325), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39600] = 9, + ACTIONS(3146), 9, + sym_real_literal, + sym_integer_literal, + sym_ident, + sym_ct_ident, + sym_const_ident, + sym_ct_const_ident, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_LBRACK, + [37825] = 12, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3335), 1, - anon_sym_case, - ACTIONS(3337), 1, - anon_sym_default, - ACTIONS(3352), 1, + ACTIONS(3148), 1, + sym_ident, + ACTIONS(3150), 1, + sym_ct_ident, + ACTIONS(3154), 1, + anon_sym_LBRACE, + ACTIONS(3156), 1, + anon_sym_DOT, + STATE(1009), 1, + sym_initializer_list, + STATE(1690), 1, + sym_local_decl_after_type, + STATE(2068), 1, + sym__decl_statement_after_type, + ACTIONS(3152), 2, + anon_sym_COMMA, anon_sym_RBRACE, - STATE(1495), 1, - aux_sym_switch_body_repeat1, - STATE(1835), 2, - sym_case_stmt, - sym_default_stmt, - STATE(1471), 3, + STATE(1326), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39631] = 6, + [37865] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3356), 1, - anon_sym_COMMA, - ACTIONS(3354), 4, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_SEMI, - STATE(1472), 4, + ACTIONS(3160), 1, + anon_sym_LBRACK, + ACTIONS(3163), 1, + anon_sym_DOT, + STATE(1345), 1, + sym_param_path_element, + STATE(1327), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym__multi_declaration_repeat1, - [39656] = 9, + aux_sym_param_path_repeat1, + ACTIONS(3158), 5, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + [37897] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3341), 1, - anon_sym_RBRACE, - STATE(1358), 1, - sym_asm_instr, - STATE(1466), 1, - aux_sym_asm_block_stmt_repeat1, - STATE(1826), 1, - sym_asm_stmt, - ACTIONS(3325), 2, + ACTIONS(3170), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3172), 1, + anon_sym_AMP, + ACTIONS(3166), 3, sym_ident, - anon_sym_int, - STATE(1473), 3, + sym_ct_ident, + sym_hash_ident, + STATE(1328), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39687] = 7, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(3361), 1, + ACTIONS(3168), 4, anon_sym_COMMA, - STATE(1483), 1, - aux_sym__multi_declaration_repeat1, - STATE(1474), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(3359), 4, - sym_ident, - sym_at_ident, - sym_at_type_ident, + anon_sym_EQ, + anon_sym_RPAREN, anon_sym_SEMI, - [39714] = 5, + [37929] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1475), 3, + STATE(1329), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2327), 6, + ACTIONS(3174), 8, + anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_STAR, - [39737] = 9, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(3335), 1, - anon_sym_case, - ACTIONS(3337), 1, - anon_sym_default, - ACTIONS(3363), 1, - anon_sym_RBRACE, - STATE(1471), 1, - aux_sym_switch_body_repeat1, - STATE(1835), 2, - sym_case_stmt, - sym_default_stmt, - STATE(1476), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [39768] = 10, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2209), 1, - anon_sym_LBRACE, - ACTIONS(3020), 1, - anon_sym_EQ_GT, - ACTIONS(3365), 1, - anon_sym_SEMI, - STATE(917), 1, - sym_macro_func_body, - STATE(953), 1, - sym_compound_stmt, - STATE(2250), 1, - sym_implies_body, - STATE(1477), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [39801] = 8, + [37954] = 11, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2989), 1, - anon_sym_EQ, - STATE(1864), 1, - sym__assign_right_expr, - STATE(1866), 1, - sym_parameter_default, - ACTIONS(3367), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(1478), 3, + ACTIONS(2501), 1, + anon_sym_LBRACK, + ACTIONS(2503), 1, + anon_sym_STAR, + ACTIONS(2507), 1, + anon_sym_LBRACK_LT, + ACTIONS(2907), 1, + anon_sym_BANG, + STATE(1023), 1, + sym_type_suffix, + STATE(1333), 1, + aux_sym_type_repeat1, + ACTIONS(2057), 2, + sym_ident, + anon_sym_AMP, + STATE(1330), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39830] = 7, + [37991] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2305), 1, - anon_sym_LPAREN_LT, - STATE(1641), 1, - sym_generic_arguments, - STATE(1479), 3, + STATE(1331), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3369), 4, - sym_ident, - sym_at_ident, - sym_at_type_ident, + ACTIONS(3176), 8, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_SEMI, - [39857] = 9, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + [38016] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3335), 1, - anon_sym_case, - ACTIONS(3337), 1, - anon_sym_default, - ACTIONS(3371), 1, - anon_sym_RBRACE, - STATE(1495), 1, - aux_sym_switch_body_repeat1, - STATE(1835), 2, - sym_case_stmt, - sym_default_stmt, - STATE(1480), 3, + STATE(1332), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39888] = 9, + ACTIONS(3178), 8, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + [38041] = 11, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3373), 1, - anon_sym_RBRACE, - STATE(1358), 1, - sym_asm_instr, - STATE(1507), 1, - aux_sym_asm_block_stmt_repeat1, - STATE(1826), 1, - sym_asm_stmt, - ACTIONS(3325), 2, + ACTIONS(2501), 1, + anon_sym_LBRACK, + ACTIONS(2503), 1, + anon_sym_STAR, + ACTIONS(2507), 1, + anon_sym_LBRACK_LT, + ACTIONS(2894), 1, + anon_sym_BANG, + STATE(993), 1, + aux_sym_type_repeat1, + STATE(1023), 1, + sym_type_suffix, + ACTIONS(1705), 2, sym_ident, - anon_sym_int, - STATE(1481), 3, + anon_sym_AMP, + STATE(1333), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39919] = 9, + [38078] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3331), 1, - anon_sym_RBRACE, - STATE(1358), 1, - sym_asm_instr, - STATE(1481), 1, - aux_sym_asm_block_stmt_repeat1, - STATE(1826), 1, - sym_asm_stmt, - ACTIONS(3325), 2, - sym_ident, - anon_sym_int, - STATE(1482), 3, + STATE(1334), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39950] = 7, + ACTIONS(3180), 8, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + [38103] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3361), 1, - anon_sym_COMMA, - STATE(1472), 1, - aux_sym__multi_declaration_repeat1, - STATE(1483), 3, + STATE(1335), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3375), 4, - sym_ident, - sym_at_ident, - sym_at_type_ident, + ACTIONS(3182), 8, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_SEMI, - [39977] = 10, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + [38128] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, - sym_ident, - ACTIONS(3317), 1, - sym_type_ident, - STATE(1537), 1, - sym_module_resolution, - STATE(1602), 1, - sym_path_type_ident, - STATE(1603), 1, - aux_sym__module_path, - STATE(2062), 1, - sym_interface, - STATE(1484), 3, + STATE(1336), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40010] = 5, + ACTIONS(3184), 8, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + [38153] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1485), 3, + ACTIONS(3186), 1, + anon_sym_RBRACK, + ACTIONS(3192), 1, + anon_sym_STAR, + ACTIONS(3188), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3190), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1954), 2, + sym__additive_op, + sym__shift_op, + STATE(1337), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3377), 6, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COLON, - [40033] = 9, + [38186] = 11, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3379), 1, - anon_sym_RBRACE, - STATE(1358), 1, - sym_asm_instr, - STATE(1490), 1, - aux_sym_asm_block_stmt_repeat1, - STATE(1826), 1, - sym_asm_stmt, - ACTIONS(3325), 2, + ACTIONS(3148), 1, sym_ident, - anon_sym_int, - STATE(1486), 3, + ACTIONS(3150), 1, + sym_ct_ident, + ACTIONS(3154), 1, + anon_sym_LBRACE, + ACTIONS(3156), 1, + anon_sym_DOT, + STATE(1009), 1, + sym_initializer_list, + STATE(1690), 1, + sym_local_decl_after_type, + STATE(1913), 1, + sym__decl_statement_after_type, + STATE(1338), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40064] = 9, + [38222] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(67), 1, - anon_sym_DQUOTE, - ACTIONS(69), 1, - anon_sym_BQUOTE, - STATE(878), 1, - aux_sym_string_expr_repeat1, - STATE(2129), 1, - sym_string_expr, - STATE(982), 2, - sym_string_literal, - sym_raw_string_literal, - STATE(1487), 3, + STATE(1339), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40095] = 9, + ACTIONS(3194), 7, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [38246] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3381), 1, - anon_sym_RBRACE, - STATE(1358), 1, - sym_asm_instr, - STATE(1467), 1, - aux_sym_asm_block_stmt_repeat1, - STATE(1826), 1, - sym_asm_stmt, - ACTIONS(3325), 2, - sym_ident, - anon_sym_int, - STATE(1488), 3, + ACTIONS(3154), 1, + anon_sym_LBRACE, + ACTIONS(3156), 1, + anon_sym_DOT, + STATE(1009), 1, + sym_initializer_list, + STATE(1340), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40126] = 9, + ACTIONS(3196), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + [38276] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3383), 1, - anon_sym_RBRACE, - STATE(1358), 1, - sym_asm_instr, - STATE(1507), 1, - aux_sym_asm_block_stmt_repeat1, - STATE(1826), 1, - sym_asm_stmt, - ACTIONS(3325), 2, - sym_ident, - anon_sym_int, - STATE(1489), 3, + STATE(1341), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40157] = 9, + ACTIONS(3198), 7, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_DOT, + [38300] = 11, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3385), 1, - anon_sym_RBRACE, - STATE(1358), 1, - sym_asm_instr, - STATE(1507), 1, - aux_sym_asm_block_stmt_repeat1, - STATE(1826), 1, - sym_asm_stmt, - ACTIONS(3325), 2, + ACTIONS(3148), 1, sym_ident, - anon_sym_int, - STATE(1490), 3, + ACTIONS(3150), 1, + sym_ct_ident, + ACTIONS(3154), 1, + anon_sym_LBRACE, + ACTIONS(3156), 1, + anon_sym_DOT, + STATE(1009), 1, + sym_initializer_list, + STATE(1690), 1, + sym_local_decl_after_type, + STATE(2148), 1, + sym__decl_statement_after_type, + STATE(1342), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40188] = 7, + [38336] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3361), 1, - anon_sym_COMMA, - STATE(1472), 1, - aux_sym__multi_declaration_repeat1, - STATE(1491), 3, + STATE(1343), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3387), 4, + ACTIONS(3200), 7, sym_ident, sym_at_ident, sym_at_type_ident, + anon_sym_RPAREN, anon_sym_SEMI, - [40215] = 9, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [38360] = 10, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3335), 1, - anon_sym_case, - ACTIONS(3337), 1, - anon_sym_default, - ACTIONS(3389), 1, - anon_sym_RBRACE, - STATE(1502), 1, - aux_sym_switch_body_repeat1, - STATE(1835), 2, - sym_case_stmt, - sym_default_stmt, - STATE(1492), 3, + ACTIONS(3202), 1, + sym_ident, + ACTIONS(3204), 1, + sym_at_ident, + ACTIONS(3206), 1, + sym_type_ident, + ACTIONS(3208), 1, + sym_at_type_ident, + ACTIONS(3210), 1, + sym_const_ident, + STATE(1306), 2, + sym_define_attribute, + sym_define_ident, + STATE(1344), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40246] = 9, + [38394] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3391), 1, - anon_sym_RBRACE, - STATE(1358), 1, - sym_asm_instr, - STATE(1489), 1, - aux_sym_asm_block_stmt_repeat1, - STATE(1826), 1, - sym_asm_stmt, - ACTIONS(3325), 2, - sym_ident, - anon_sym_int, - STATE(1493), 3, + STATE(1345), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40277] = 9, + ACTIONS(3212), 7, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_DOT, + [38418] = 11, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3385), 1, - anon_sym_RBRACE, - STATE(1358), 1, - sym_asm_instr, - STATE(1504), 1, - aux_sym_asm_block_stmt_repeat1, - STATE(1826), 1, - sym_asm_stmt, - ACTIONS(3325), 2, + ACTIONS(3148), 1, sym_ident, - anon_sym_int, - STATE(1494), 3, + ACTIONS(3150), 1, + sym_ct_ident, + ACTIONS(3154), 1, + anon_sym_LBRACE, + ACTIONS(3156), 1, + anon_sym_DOT, + STATE(1009), 1, + sym_initializer_list, + STATE(1690), 1, + sym_local_decl_after_type, + STATE(1990), 1, + sym__decl_statement_after_type, + STATE(1346), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40308] = 8, + [38454] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3393), 1, - anon_sym_RBRACE, - ACTIONS(3395), 1, - anon_sym_case, - ACTIONS(3398), 1, - anon_sym_default, - STATE(1835), 2, - sym_case_stmt, - sym_default_stmt, - STATE(1495), 4, + ACTIONS(3154), 1, + anon_sym_LBRACE, + ACTIONS(3156), 1, + anon_sym_DOT, + STATE(1009), 1, + sym_initializer_list, + STATE(1347), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_switch_body_repeat1, - [40337] = 9, + ACTIONS(3152), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + [38484] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3401), 1, - anon_sym_RBRACE, - STATE(1358), 1, - sym_asm_instr, - STATE(1507), 1, - aux_sym_asm_block_stmt_repeat1, - STATE(1826), 1, - sym_asm_stmt, - ACTIONS(3325), 2, - sym_ident, - anon_sym_int, - STATE(1496), 3, + STATE(1348), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40368] = 9, + ACTIONS(3214), 7, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_DOT, + [38508] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3403), 1, - anon_sym_RBRACE, - STATE(1358), 1, - sym_asm_instr, - STATE(1510), 1, - aux_sym_asm_block_stmt_repeat1, - STATE(1826), 1, - sym_asm_stmt, - ACTIONS(3325), 2, + ACTIONS(3216), 1, sym_ident, - anon_sym_int, - STATE(1497), 3, + ACTIONS(3221), 1, + sym_const_ident, + STATE(1421), 1, + sym_module_resolution, + ACTIONS(3219), 3, + sym_at_ident, + sym_type_ident, + sym_at_type_ident, + STATE(1349), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [40399] = 9, + aux_sym__module_path, + [38538] = 11, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3335), 1, - anon_sym_case, - ACTIONS(3337), 1, - anon_sym_default, - ACTIONS(3405), 1, - anon_sym_RBRACE, - STATE(1480), 1, - aux_sym_switch_body_repeat1, - STATE(1835), 2, - sym_case_stmt, - sym_default_stmt, - STATE(1498), 3, + ACTIONS(73), 1, + sym_at_ident, + ACTIONS(81), 1, + sym_const_ident, + ACTIONS(3223), 1, + sym_ident, + ACTIONS(3225), 1, + sym_type_ident, + STATE(988), 1, + sym__ident_expr, + STATE(1349), 1, + aux_sym__module_path, + STATE(1421), 1, + sym_module_resolution, + STATE(1350), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40430] = 10, + [38574] = 11, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2830), 1, - anon_sym_COMMA, - ACTIONS(3260), 1, + ACTIONS(3148), 1, + sym_ident, + ACTIONS(3150), 1, + sym_ct_ident, + ACTIONS(3154), 1, anon_sym_LBRACE, - ACTIONS(3262), 1, + ACTIONS(3156), 1, anon_sym_DOT, - ACTIONS(3407), 1, - anon_sym_GT_RPAREN, - STATE(1006), 1, + STATE(1009), 1, sym_initializer_list, - STATE(1728), 1, - aux_sym__generic_arg_list_repeat1, - STATE(1499), 3, + STATE(1690), 1, + sym_local_decl_after_type, + STATE(2068), 1, + sym__decl_statement_after_type, + STATE(1351), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40463] = 9, + [38610] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3401), 1, - anon_sym_RBRACE, - STATE(1358), 1, - sym_asm_instr, - STATE(1461), 1, - aux_sym_asm_block_stmt_repeat1, - STATE(1826), 1, - sym_asm_stmt, - ACTIONS(3325), 2, + ACTIONS(3231), 1, + sym_const_ident, + ACTIONS(3233), 1, + anon_sym_DOLLAReval, + STATE(1015), 1, + sym_access_ident, + ACTIONS(3227), 2, sym_ident, - anon_sym_int, - STATE(1500), 3, + anon_sym_typeid, + ACTIONS(3229), 2, + sym_at_ident, + sym_hash_ident, + STATE(1352), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40494] = 7, + [38642] = 11, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3361), 1, - anon_sym_COMMA, - STATE(1491), 1, - aux_sym__multi_declaration_repeat1, - STATE(1501), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(3409), 4, + ACTIONS(3148), 1, sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_SEMI, - [40521] = 9, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(3335), 1, - anon_sym_case, - ACTIONS(3337), 1, - anon_sym_default, - ACTIONS(3411), 1, - anon_sym_RBRACE, - STATE(1495), 1, - aux_sym_switch_body_repeat1, - STATE(1835), 2, - sym_case_stmt, - sym_default_stmt, - STATE(1502), 3, + ACTIONS(3150), 1, + sym_ct_ident, + ACTIONS(3154), 1, + anon_sym_LBRACE, + ACTIONS(3156), 1, + anon_sym_DOT, + STATE(1009), 1, + sym_initializer_list, + STATE(1690), 1, + sym_local_decl_after_type, + STATE(2051), 1, + sym__decl_statement_after_type, + STATE(1353), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40552] = 7, + [38678] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2620), 1, - anon_sym_LPAREN, - STATE(1662), 1, - sym_enum_param_list, - STATE(1503), 3, + ACTIONS(2348), 1, + anon_sym_COLON_COLON, + STATE(1354), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3413), 4, + ACTIONS(3235), 6, sym_ident, sym_at_ident, sym_at_type_ident, - anon_sym_LBRACE, - [40579] = 9, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_SEMI, + [38704] = 11, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3415), 1, - anon_sym_RBRACE, - STATE(1358), 1, - sym_asm_instr, - STATE(1507), 1, - aux_sym_asm_block_stmt_repeat1, - STATE(1826), 1, - sym_asm_stmt, - ACTIONS(3325), 2, + ACTIONS(73), 1, + sym_at_ident, + ACTIONS(81), 1, + sym_const_ident, + ACTIONS(3223), 1, sym_ident, - anon_sym_int, - STATE(1504), 3, + ACTIONS(3237), 1, + sym_type_ident, + STATE(988), 1, + sym__ident_expr, + STATE(1349), 1, + aux_sym__module_path, + STATE(1421), 1, + sym_module_resolution, + STATE(1355), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40610] = 9, + [38740] = 11, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3335), 1, - anon_sym_case, - ACTIONS(3337), 1, - anon_sym_default, - ACTIONS(3417), 1, - anon_sym_RBRACE, - STATE(1495), 1, - aux_sym_switch_body_repeat1, - STATE(1835), 2, - sym_case_stmt, - sym_default_stmt, - STATE(1505), 3, + ACTIONS(2924), 1, + sym_ident, + ACTIONS(3239), 1, + sym_type_ident, + ACTIONS(3241), 1, + anon_sym_RPAREN, + STATE(1421), 1, + sym_module_resolution, + STATE(1458), 1, + sym_path_type_ident, + STATE(1459), 1, + aux_sym__module_path, + STATE(1659), 1, + sym_interface, + STATE(1356), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40641] = 5, + [38776] = 11, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1506), 3, + ACTIONS(3148), 1, + sym_ident, + ACTIONS(3150), 1, + sym_ct_ident, + ACTIONS(3154), 1, + anon_sym_LBRACE, + ACTIONS(3156), 1, + anon_sym_DOT, + STATE(1009), 1, + sym_initializer_list, + STATE(1690), 1, + sym_local_decl_after_type, + STATE(1958), 1, + sym__decl_statement_after_type, + STATE(1357), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3419), 6, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COLON, - [40664] = 8, + [38812] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3424), 1, - anon_sym_RBRACE, - STATE(1358), 1, - sym_asm_instr, - STATE(1826), 1, - sym_asm_stmt, - ACTIONS(3421), 2, - sym_ident, - anon_sym_int, - STATE(1507), 4, + ACTIONS(2348), 1, + anon_sym_COLON_COLON, + STATE(1358), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_asm_block_stmt_repeat1, - [40693] = 9, + ACTIONS(3243), 6, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_SEMI, + [38838] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3335), 1, + ACTIONS(3245), 1, + anon_sym_RBRACE, + ACTIONS(3247), 1, anon_sym_case, - ACTIONS(3337), 1, + ACTIONS(3249), 1, anon_sym_default, - ACTIONS(3426), 1, - anon_sym_RBRACE, - STATE(1495), 1, + STATE(1373), 1, aux_sym_switch_body_repeat1, - STATE(1835), 2, + STATE(1593), 2, sym_case_stmt, sym_default_stmt, - STATE(1508), 3, + STATE(1359), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40724] = 9, + [38869] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3428), 1, + ACTIONS(3253), 1, anon_sym_RBRACE, - STATE(1358), 1, + STATE(1254), 1, sym_asm_instr, - STATE(1512), 1, + STATE(1408), 1, aux_sym_asm_block_stmt_repeat1, - STATE(1826), 1, + STATE(1653), 1, sym_asm_stmt, - ACTIONS(3325), 2, + ACTIONS(3251), 2, sym_ident, anon_sym_int, - STATE(1509), 3, + STATE(1360), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40755] = 9, + [38900] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3428), 1, - anon_sym_RBRACE, - STATE(1358), 1, - sym_asm_instr, - STATE(1507), 1, - aux_sym_asm_block_stmt_repeat1, - STATE(1826), 1, - sym_asm_stmt, - ACTIONS(3325), 2, - sym_ident, - anon_sym_int, - STATE(1510), 3, + ACTIONS(3257), 1, + anon_sym_COMMA, + STATE(1409), 1, + aux_sym__multi_declaration_repeat1, + STATE(1361), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40786] = 9, + ACTIONS(3255), 4, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_SEMI, + [38927] = 10, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3335), 1, - anon_sym_case, - ACTIONS(3337), 1, - anon_sym_default, - ACTIONS(3430), 1, - anon_sym_RBRACE, - STATE(1508), 1, - aux_sym_switch_body_repeat1, - STATE(1835), 2, - sym_case_stmt, - sym_default_stmt, - STATE(1511), 3, + ACTIONS(2924), 1, + sym_ident, + ACTIONS(3239), 1, + sym_type_ident, + STATE(1421), 1, + sym_module_resolution, + STATE(1458), 1, + sym_path_type_ident, + STATE(1459), 1, + aux_sym__module_path, + STATE(1871), 1, + sym_interface, + STATE(1362), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40817] = 9, + [38960] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3432), 1, + ACTIONS(3259), 1, anon_sym_RBRACE, - STATE(1358), 1, + STATE(1254), 1, sym_asm_instr, - STATE(1507), 1, + STATE(1378), 1, aux_sym_asm_block_stmt_repeat1, - STATE(1826), 1, + STATE(1653), 1, sym_asm_stmt, - ACTIONS(3325), 2, + ACTIONS(3251), 2, sym_ident, anon_sym_int, - STATE(1512), 3, + STATE(1363), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40848] = 9, + [38991] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3335), 1, - anon_sym_case, - ACTIONS(3337), 1, - anon_sym_default, - ACTIONS(3434), 1, - anon_sym_RBRACE, - STATE(1515), 1, - aux_sym_switch_body_repeat1, - STATE(1835), 2, - sym_case_stmt, - sym_default_stmt, - STATE(1513), 3, + STATE(1364), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40879] = 5, + ACTIONS(3261), 6, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COLON, + [39014] = 10, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1514), 3, + ACTIONS(2535), 1, + anon_sym_COMMA, + ACTIONS(3154), 1, + anon_sym_LBRACE, + ACTIONS(3156), 1, + anon_sym_DOT, + ACTIONS(3263), 1, + anon_sym_GT_RPAREN, + STATE(1009), 1, + sym_initializer_list, + STATE(1633), 1, + aux_sym__generic_arg_list_repeat1, + STATE(1365), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3436), 6, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COLON, - [40902] = 9, + [39047] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3335), 1, - anon_sym_case, - ACTIONS(3337), 1, - anon_sym_default, - ACTIONS(3438), 1, + ACTIONS(3265), 1, anon_sym_RBRACE, - STATE(1495), 1, - aux_sym_switch_body_repeat1, - STATE(1835), 2, - sym_case_stmt, - sym_default_stmt, - STATE(1515), 3, + STATE(1254), 1, + sym_asm_instr, + STATE(1408), 1, + aux_sym_asm_block_stmt_repeat1, + STATE(1653), 1, + sym_asm_stmt, + ACTIONS(3251), 2, + sym_ident, + anon_sym_int, + STATE(1366), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40933] = 9, + [39078] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3383), 1, + ACTIONS(3267), 1, anon_sym_RBRACE, - STATE(1358), 1, + STATE(1254), 1, sym_asm_instr, - STATE(1469), 1, + STATE(1408), 1, aux_sym_asm_block_stmt_repeat1, - STATE(1826), 1, + STATE(1653), 1, sym_asm_stmt, - ACTIONS(3325), 2, + ACTIONS(3251), 2, sym_ident, anon_sym_int, - STATE(1516), 3, + STATE(1367), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40964] = 5, + [39109] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1517), 3, + ACTIONS(2942), 1, + anon_sym_EQ, + STATE(1655), 1, + sym_parameter_default, + STATE(1656), 1, + sym__assign_right_expr, + ACTIONS(3269), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(1368), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3440), 5, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_LPAREN_LT, - anon_sym_SEMI, - [40986] = 9, + [39138] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3442), 1, - anon_sym_DOLLARcase, - ACTIONS(3444), 1, - anon_sym_DOLLARdefault, - ACTIONS(3446), 1, - anon_sym_DOLLARendswitch, - STATE(1539), 1, - aux_sym__ct_switch_body, - STATE(1830), 1, - sym_ct_case_stmt, - STATE(1518), 3, + ACTIONS(3271), 1, + anon_sym_RBRACE, + STATE(1254), 1, + sym_asm_instr, + STATE(1408), 1, + aux_sym_asm_block_stmt_repeat1, + STATE(1653), 1, + sym_asm_stmt, + ACTIONS(3251), 2, + sym_ident, + anon_sym_int, + STATE(1369), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41016] = 5, + [39169] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1519), 3, + ACTIONS(3247), 1, + anon_sym_case, + ACTIONS(3249), 1, + anon_sym_default, + ACTIONS(3273), 1, + anon_sym_RBRACE, + STATE(1404), 1, + aux_sym_switch_body_repeat1, + STATE(1593), 2, + sym_case_stmt, + sym_default_stmt, + STATE(1370), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3448), 5, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_LPAREN, - anon_sym_LBRACE, - [41038] = 9, + [39200] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2209), 1, - anon_sym_LBRACE, - ACTIONS(3020), 1, - anon_sym_EQ_GT, - STATE(922), 1, - sym_macro_func_body, - STATE(953), 1, - sym_compound_stmt, - STATE(2250), 1, - sym_implies_body, - STATE(1520), 3, + ACTIONS(3275), 1, + anon_sym_RBRACE, + STATE(1254), 1, + sym_asm_instr, + STATE(1408), 1, + aux_sym_asm_block_stmt_repeat1, + STATE(1653), 1, + sym_asm_stmt, + ACTIONS(3251), 2, + sym_ident, + anon_sym_int, + STATE(1371), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41068] = 5, + [39231] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1521), 3, + ACTIONS(3275), 1, + anon_sym_RBRACE, + STATE(1254), 1, + sym_asm_instr, + STATE(1369), 1, + aux_sym_asm_block_stmt_repeat1, + STATE(1653), 1, + sym_asm_stmt, + ACTIONS(3251), 2, + sym_ident, + anon_sym_int, + STATE(1372), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3450), 5, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [41090] = 6, + [39262] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3452), 1, - sym_ident, - STATE(1522), 3, + ACTIONS(3277), 1, + anon_sym_RBRACE, + ACTIONS(3279), 1, + anon_sym_case, + ACTIONS(3282), 1, + anon_sym_default, + STATE(1593), 2, + sym_case_stmt, + sym_default_stmt, + STATE(1373), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3454), 4, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_SEMI, - [41114] = 5, + aux_sym_switch_body_repeat1, + [39291] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1523), 3, + ACTIONS(3285), 1, + anon_sym_RBRACE, + STATE(1254), 1, + sym_asm_instr, + STATE(1408), 1, + aux_sym_asm_block_stmt_repeat1, + STATE(1653), 1, + sym_asm_stmt, + ACTIONS(3251), 2, + sym_ident, + anon_sym_int, + STATE(1374), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3456), 5, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [41136] = 9, + [39322] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2760), 1, - anon_sym_QMARK_COLON, - ACTIONS(2762), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3458), 1, - anon_sym_COMMA, - ACTIONS(3460), 1, - anon_sym_RPAREN, - STATE(1848), 1, - aux_sym_ct_exec_stmt_repeat1, - STATE(1524), 3, + ACTIONS(3247), 1, + anon_sym_case, + ACTIONS(3249), 1, + anon_sym_default, + ACTIONS(3287), 1, + anon_sym_RBRACE, + STATE(1403), 1, + aux_sym_switch_body_repeat1, + STATE(1593), 2, + sym_case_stmt, + sym_default_stmt, + STATE(1375), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41166] = 9, + [39353] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3442), 1, - anon_sym_DOLLARcase, - ACTIONS(3444), 1, - anon_sym_DOLLARdefault, - ACTIONS(3462), 1, - anon_sym_DOLLARendswitch, - STATE(1539), 1, - aux_sym__ct_switch_body, - STATE(1830), 1, - sym_ct_case_stmt, - STATE(1525), 3, + ACTIONS(3233), 1, + anon_sym_DOLLAReval, + STATE(1004), 1, + sym_access_ident, + ACTIONS(3227), 2, + sym_ident, + anon_sym_typeid, + ACTIONS(3229), 2, + sym_at_ident, + sym_hash_ident, + STATE(1376), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41196] = 6, + [39382] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3466), 1, - sym_const_ident, - STATE(1526), 3, + ACTIONS(3289), 1, + anon_sym_RBRACE, + STATE(1254), 1, + sym_asm_instr, + STATE(1408), 1, + aux_sym_asm_block_stmt_repeat1, + STATE(1653), 1, + sym_asm_stmt, + ACTIONS(3251), 2, + sym_ident, + anon_sym_int, + STATE(1377), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3464), 4, - sym_ident, - sym_at_ident, - sym_type_ident, - sym_at_type_ident, - [41220] = 9, + [39413] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3442), 1, - anon_sym_DOLLARcase, - ACTIONS(3444), 1, - anon_sym_DOLLARdefault, - ACTIONS(3468), 1, - anon_sym_DOLLARendswitch, - STATE(1539), 1, - aux_sym__ct_switch_body, - STATE(1830), 1, - sym_ct_case_stmt, - STATE(1527), 3, + ACTIONS(3291), 1, + anon_sym_RBRACE, + STATE(1254), 1, + sym_asm_instr, + STATE(1408), 1, + aux_sym_asm_block_stmt_repeat1, + STATE(1653), 1, + sym_asm_stmt, + ACTIONS(3251), 2, + sym_ident, + anon_sym_int, + STATE(1378), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41250] = 5, + [39444] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1528), 3, + ACTIONS(3293), 1, + anon_sym_RBRACE, + STATE(1254), 1, + sym_asm_instr, + STATE(1386), 1, + aux_sym_asm_block_stmt_repeat1, + STATE(1653), 1, + sym_asm_stmt, + ACTIONS(3251), 2, + sym_ident, + anon_sym_int, + STATE(1379), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3470), 5, - sym_ident, - sym_at_ident, - sym_type_ident, - sym_at_type_ident, - anon_sym_LBRACE, - [41272] = 5, + [39475] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1529), 3, + ACTIONS(3247), 1, + anon_sym_case, + ACTIONS(3249), 1, + anon_sym_default, + ACTIONS(3295), 1, + anon_sym_RBRACE, + STATE(1373), 1, + aux_sym_switch_body_repeat1, + STATE(1593), 2, + sym_case_stmt, + sym_default_stmt, + STATE(1380), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3472), 5, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [41294] = 5, + [39506] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1530), 3, + ACTIONS(3297), 1, + anon_sym_RBRACE, + STATE(1254), 1, + sym_asm_instr, + STATE(1401), 1, + aux_sym_asm_block_stmt_repeat1, + STATE(1653), 1, + sym_asm_stmt, + ACTIONS(3251), 2, + sym_ident, + anon_sym_int, + STATE(1381), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3474), 5, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [41316] = 9, + [39537] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3442), 1, - anon_sym_DOLLARcase, - ACTIONS(3444), 1, - anon_sym_DOLLARdefault, - ACTIONS(3476), 1, - anon_sym_DOLLARendswitch, - STATE(1539), 1, - aux_sym__ct_switch_body, - STATE(1830), 1, - sym_ct_case_stmt, - STATE(1531), 3, + ACTIONS(3253), 1, + anon_sym_RBRACE, + STATE(1254), 1, + sym_asm_instr, + STATE(1367), 1, + aux_sym_asm_block_stmt_repeat1, + STATE(1653), 1, + sym_asm_stmt, + ACTIONS(3251), 2, + sym_ident, + anon_sym_int, + STATE(1382), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41346] = 5, + [39568] = 10, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1532), 3, + ACTIONS(3148), 1, + sym_ident, + ACTIONS(3150), 1, + sym_ct_ident, + ACTIONS(3154), 1, + anon_sym_LBRACE, + ACTIONS(3156), 1, + anon_sym_DOT, + STATE(1009), 1, + sym_initializer_list, + STATE(1662), 1, + sym_local_decl_after_type, + STATE(1383), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3478), 5, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_LPAREN_LT, - anon_sym_SEMI, - [41368] = 9, + [39601] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3442), 1, - anon_sym_DOLLARcase, - ACTIONS(3444), 1, - anon_sym_DOLLARdefault, - ACTIONS(3480), 1, - anon_sym_DOLLARendswitch, - STATE(1539), 1, - aux_sym__ct_switch_body, - STATE(1830), 1, - sym_ct_case_stmt, - STATE(1533), 3, + ACTIONS(65), 1, + anon_sym_DQUOTE, + ACTIONS(67), 1, + anon_sym_BQUOTE, + STATE(826), 1, + aux_sym_string_expr_repeat1, + STATE(1959), 1, + sym_string_expr, + STATE(955), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(1384), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41398] = 9, + [39632] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(3293), 1, + anon_sym_RBRACE, + STATE(1254), 1, + sym_asm_instr, + STATE(1408), 1, + aux_sym_asm_block_stmt_repeat1, + STATE(1653), 1, + sym_asm_stmt, + ACTIONS(3251), 2, sym_ident, - ACTIONS(3482), 1, - sym_at_ident, - STATE(1479), 1, - sym_path_at_ident, - STATE(1537), 1, - sym_module_resolution, - STATE(1617), 1, - aux_sym__module_path, - STATE(1534), 3, + anon_sym_int, + STATE(1385), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41428] = 9, + [39663] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(91), 1, - anon_sym_LBRACK, - ACTIONS(2522), 1, - anon_sym_DOT, - ACTIONS(3228), 1, - anon_sym_RPAREN, - STATE(1455), 1, - sym_param_path_element, - STATE(1542), 1, - aux_sym_param_path_repeat1, - STATE(1535), 3, + ACTIONS(3299), 1, + anon_sym_RBRACE, + STATE(1254), 1, + sym_asm_instr, + STATE(1408), 1, + aux_sym_asm_block_stmt_repeat1, + STATE(1653), 1, + sym_asm_stmt, + ACTIONS(3251), 2, + sym_ident, + anon_sym_int, + STATE(1386), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41458] = 5, + [39694] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1536), 3, + ACTIONS(3301), 1, + anon_sym_RBRACE, + STATE(1254), 1, + sym_asm_instr, + STATE(1360), 1, + aux_sym_asm_block_stmt_repeat1, + STATE(1653), 1, + sym_asm_stmt, + ACTIONS(3251), 2, + sym_ident, + anon_sym_int, + STATE(1387), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3484), 5, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_LPAREN_LT, - anon_sym_SEMI, - [41480] = 6, + [39725] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3488), 1, - sym_const_ident, - STATE(1537), 3, + ACTIONS(3257), 1, + anon_sym_COMMA, + STATE(1361), 1, + aux_sym__multi_declaration_repeat1, + STATE(1388), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3486), 4, + ACTIONS(3303), 4, sym_ident, sym_at_ident, - sym_type_ident, sym_at_type_ident, - [41504] = 5, + anon_sym_SEMI, + [39752] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1538), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(3343), 5, + ACTIONS(3307), 1, + anon_sym_COMMA, + ACTIONS(3305), 4, sym_ident, sym_at_ident, sym_at_type_ident, - anon_sym_COMMA, anon_sym_SEMI, - [41526] = 8, + STATE(1389), 4, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + aux_sym_import_declaration_repeat1, + [39777] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3490), 1, - anon_sym_DOLLARcase, - ACTIONS(3493), 1, - anon_sym_DOLLARdefault, - ACTIONS(3496), 1, - anon_sym_DOLLARendswitch, - STATE(1830), 1, - sym_ct_case_stmt, - STATE(1539), 4, + ACTIONS(3310), 1, + anon_sym_RBRACE, + STATE(1254), 1, + sym_asm_instr, + STATE(1371), 1, + aux_sym_asm_block_stmt_repeat1, + STATE(1653), 1, + sym_asm_stmt, + ACTIONS(3251), 2, + sym_ident, + anon_sym_int, + STATE(1390), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym__ct_switch_body, - [41554] = 5, + [39808] = 10, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1540), 3, + ACTIONS(2286), 1, + anon_sym_LBRACE, + ACTIONS(2938), 1, + anon_sym_EQ_GT, + ACTIONS(3312), 1, + anon_sym_SEMI, + STATE(926), 1, + sym_compound_stmt, + STATE(932), 1, + sym_macro_func_body, + STATE(2161), 1, + sym_implies_body, + STATE(1391), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3354), 5, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_COMMA, - anon_sym_SEMI, - [41576] = 5, + [39841] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1541), 3, + ACTIONS(3247), 1, + anon_sym_case, + ACTIONS(3249), 1, + anon_sym_default, + ACTIONS(3314), 1, + anon_sym_RBRACE, + STATE(1359), 1, + aux_sym_switch_body_repeat1, + STATE(1593), 2, + sym_case_stmt, + sym_default_stmt, + STATE(1392), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3498), 5, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_LPAREN_LT, - anon_sym_SEMI, - [41598] = 8, + [39872] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3212), 1, - anon_sym_RPAREN, - ACTIONS(3214), 1, - anon_sym_LBRACK, - ACTIONS(3500), 1, - anon_sym_DOT, - STATE(1455), 1, - sym_param_path_element, - STATE(1542), 4, + ACTIONS(3316), 1, + anon_sym_RBRACE, + STATE(1254), 1, + sym_asm_instr, + STATE(1413), 1, + aux_sym_asm_block_stmt_repeat1, + STATE(1653), 1, + sym_asm_stmt, + ACTIONS(3251), 2, + sym_ident, + anon_sym_int, + STATE(1393), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_param_path_repeat1, - [41626] = 9, + [39903] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3503), 1, - sym_ident, - ACTIONS(3505), 1, - sym_const_ident, - STATE(1479), 1, - sym_path_const_ident, - STATE(1608), 1, - aux_sym__module_path, - STATE(1947), 1, - sym_module_resolution, - STATE(1543), 3, + STATE(1394), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41656] = 8, + ACTIONS(2477), 6, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + [39926] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3260), 1, - anon_sym_LBRACE, - ACTIONS(3262), 1, - anon_sym_DOT, - STATE(1006), 1, - sym_initializer_list, - ACTIONS(3507), 2, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - STATE(1544), 3, + ACTIONS(3247), 1, + anon_sym_case, + ACTIONS(3249), 1, + anon_sym_default, + ACTIONS(3318), 1, + anon_sym_RBRACE, + STATE(1373), 1, + aux_sym_switch_body_repeat1, + STATE(1593), 2, + sym_case_stmt, + sym_default_stmt, + STATE(1395), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41684] = 8, + [39957] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_EQ, - STATE(1864), 1, - sym__assign_right_expr, - STATE(1866), 1, - sym_parameter_default, - ACTIONS(3367), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1545), 3, + ACTIONS(3320), 1, + anon_sym_RBRACE, + STATE(1254), 1, + sym_asm_instr, + STATE(1385), 1, + aux_sym_asm_block_stmt_repeat1, + STATE(1653), 1, + sym_asm_stmt, + ACTIONS(3251), 2, + sym_ident, + anon_sym_int, + STATE(1396), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41712] = 9, + [39988] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3442), 1, - anon_sym_DOLLARcase, - ACTIONS(3444), 1, - anon_sym_DOLLARdefault, - ACTIONS(3509), 1, - anon_sym_DOLLARendswitch, - STATE(1539), 1, - aux_sym__ct_switch_body, - STATE(1830), 1, - sym_ct_case_stmt, - STATE(1546), 3, + ACTIONS(3247), 1, + anon_sym_case, + ACTIONS(3249), 1, + anon_sym_default, + ACTIONS(3322), 1, + anon_sym_RBRACE, + STATE(1395), 1, + aux_sym_switch_body_repeat1, + STATE(1593), 2, + sym_case_stmt, + sym_default_stmt, + STATE(1397), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41742] = 5, + [40019] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1547), 3, + ACTIONS(3257), 1, + anon_sym_COMMA, + STATE(1400), 1, + aux_sym__multi_declaration_repeat1, + STATE(1398), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3511), 4, + ACTIONS(3324), 4, sym_ident, sym_at_ident, sym_at_type_ident, - anon_sym_LBRACE, - [41763] = 8, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(3513), 1, - sym_escape_sequence, - ACTIONS(3515), 1, - anon_sym_DQUOTE, - ACTIONS(3517), 1, - aux_sym_string_literal_token1, - ACTIONS(3519), 1, - aux_sym_line_comment_token1, - ACTIONS(3521), 1, - anon_sym_SLASH_STAR_STAR, - STATE(1575), 1, - aux_sym_string_literal_repeat1, - STATE(1548), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [41790] = 8, + anon_sym_SEMI, + [40046] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3034), 1, - sym_const_ident, - ACTIONS(3523), 1, - anon_sym_LPAREN, - STATE(102), 1, - sym_foreach_cond, - STATE(1961), 1, - sym_label, - STATE(1549), 3, + ACTIONS(2402), 1, + anon_sym_LPAREN_LT, + STATE(1461), 1, + sym_generic_arguments, + STATE(1399), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41817] = 5, + ACTIONS(3326), 4, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_SEMI, + [40073] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1550), 3, + ACTIONS(3257), 1, + anon_sym_COMMA, + STATE(1409), 1, + aux_sym__multi_declaration_repeat1, + STATE(1400), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3525), 4, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, + ACTIONS(3328), 4, + sym_ident, + sym_at_ident, + sym_at_type_ident, anon_sym_SEMI, - [41838] = 7, + [40100] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2760), 1, - anon_sym_QMARK_COLON, - ACTIONS(2762), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3527), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1551), 3, + ACTIONS(3330), 1, + anon_sym_RBRACE, + STATE(1254), 1, + sym_asm_instr, + STATE(1408), 1, + aux_sym_asm_block_stmt_repeat1, + STATE(1653), 1, + sym_asm_stmt, + ACTIONS(3251), 2, + sym_ident, + anon_sym_int, + STATE(1401), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41863] = 8, + [40131] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3034), 1, - sym_const_ident, - ACTIONS(3529), 1, - anon_sym_LPAREN, - STATE(105), 1, - sym_paren_cond, - STATE(1960), 1, - sym_label, - STATE(1552), 3, + ACTIONS(3330), 1, + anon_sym_RBRACE, + STATE(1254), 1, + sym_asm_instr, + STATE(1374), 1, + aux_sym_asm_block_stmt_repeat1, + STATE(1653), 1, + sym_asm_stmt, + ACTIONS(3251), 2, + sym_ident, + anon_sym_int, + STATE(1402), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41890] = 5, + [40162] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1553), 3, + ACTIONS(3247), 1, + anon_sym_case, + ACTIONS(3249), 1, + anon_sym_default, + ACTIONS(3332), 1, + anon_sym_RBRACE, + STATE(1373), 1, + aux_sym_switch_body_repeat1, + STATE(1593), 2, + sym_case_stmt, + sym_default_stmt, + STATE(1403), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3531), 4, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_SEMI, - [41911] = 8, + [40193] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3260), 1, - anon_sym_LBRACE, - ACTIONS(3262), 1, - anon_sym_DOT, - ACTIONS(3533), 1, - anon_sym_RPAREN, - STATE(1006), 1, - sym_initializer_list, - STATE(1554), 3, + ACTIONS(3247), 1, + anon_sym_case, + ACTIONS(3249), 1, + anon_sym_default, + ACTIONS(3334), 1, + anon_sym_RBRACE, + STATE(1373), 1, + aux_sym_switch_body_repeat1, + STATE(1593), 2, + sym_case_stmt, + sym_default_stmt, + STATE(1404), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41938] = 8, + [40224] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3535), 1, - anon_sym_LBRACE, - ACTIONS(3537), 1, - anon_sym_if, - STATE(582), 1, - sym_compound_stmt, - STATE(583), 1, - sym_if_stmt, - STATE(1555), 3, + ACTIONS(3247), 1, + anon_sym_case, + ACTIONS(3249), 1, + anon_sym_default, + ACTIONS(3336), 1, + anon_sym_RBRACE, + STATE(1380), 1, + aux_sym_switch_body_repeat1, + STATE(1593), 2, + sym_case_stmt, + sym_default_stmt, + STATE(1405), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41965] = 8, + [40255] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2209), 1, - anon_sym_LBRACE, - ACTIONS(3034), 1, - sym_const_ident, - STATE(1897), 1, - sym_compound_stmt, - STATE(1959), 1, - sym_label, - STATE(1556), 3, + STATE(1406), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41992] = 8, + ACTIONS(3338), 6, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COLON, + [40278] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3442), 1, - anon_sym_DOLLARcase, - ACTIONS(3444), 1, - anon_sym_DOLLARdefault, - STATE(1546), 1, - aux_sym__ct_switch_body, - STATE(1830), 1, - sym_ct_case_stmt, - STATE(1557), 3, + ACTIONS(2747), 1, + anon_sym_LPAREN, + STATE(1468), 1, + sym_enum_param_list, + STATE(1407), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42019] = 8, + ACTIONS(3340), 4, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_LBRACE, + [40305] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3539), 1, + ACTIONS(3345), 1, + anon_sym_RBRACE, + STATE(1254), 1, + sym_asm_instr, + STATE(1653), 1, + sym_asm_stmt, + ACTIONS(3342), 2, sym_ident, - ACTIONS(3541), 1, - sym_ct_ident, - STATE(1831), 1, - sym_local_decl_after_type, - STATE(2331), 1, - sym__decl_statement_after_type, - STATE(1558), 3, + anon_sym_int, + STATE(1408), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [42046] = 8, + aux_sym_asm_block_stmt_repeat1, + [40334] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3539), 1, + ACTIONS(3349), 1, + anon_sym_COMMA, + ACTIONS(3347), 4, sym_ident, - ACTIONS(3541), 1, - sym_ct_ident, - STATE(1831), 1, - sym_local_decl_after_type, - STATE(2310), 1, - sym__decl_statement_after_type, - STATE(1559), 3, + sym_at_ident, + sym_at_type_ident, + anon_sym_SEMI, + STATE(1409), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [42073] = 5, + aux_sym__multi_declaration_repeat1, + [40359] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1560), 3, + STATE(1410), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3543), 4, + ACTIONS(3352), 6, sym_ident, sym_at_ident, sym_at_type_ident, + anon_sym_EQ, anon_sym_LBRACE, - [42094] = 6, + anon_sym_COLON, + [40382] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3547), 1, - anon_sym_EQ, - ACTIONS(3545), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(1561), 3, + ACTIONS(3354), 1, + anon_sym_RBRACE, + STATE(1254), 1, + sym_asm_instr, + STATE(1377), 1, + aux_sym_asm_block_stmt_repeat1, + STATE(1653), 1, + sym_asm_stmt, + ACTIONS(3251), 2, + sym_ident, + anon_sym_int, + STATE(1411), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42117] = 7, + [40413] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2989), 1, - anon_sym_EQ, - STATE(1850), 1, - sym__assign_right_expr, - ACTIONS(3545), 2, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(1562), 3, + ACTIONS(3247), 1, + anon_sym_case, + ACTIONS(3249), 1, + anon_sym_default, + ACTIONS(3356), 1, + anon_sym_RBRACE, + STATE(1373), 1, + aux_sym_switch_body_repeat1, + STATE(1593), 2, + sym_case_stmt, + sym_default_stmt, + STATE(1412), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42142] = 5, + [40444] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1563), 3, + ACTIONS(3354), 1, + anon_sym_RBRACE, + STATE(1254), 1, + sym_asm_instr, + STATE(1408), 1, + aux_sym_asm_block_stmt_repeat1, + STATE(1653), 1, + sym_asm_stmt, + ACTIONS(3251), 2, + sym_ident, + anon_sym_int, + STATE(1413), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3040), 4, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_SEMI, - [42163] = 8, + [40475] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3539), 1, + ACTIONS(3291), 1, + anon_sym_RBRACE, + STATE(1254), 1, + sym_asm_instr, + STATE(1366), 1, + aux_sym_asm_block_stmt_repeat1, + STATE(1653), 1, + sym_asm_stmt, + ACTIONS(3251), 2, sym_ident, - ACTIONS(3541), 1, - sym_ct_ident, - STATE(1831), 1, - sym_local_decl_after_type, - STATE(2169), 1, - sym__decl_statement_after_type, - STATE(1564), 3, + anon_sym_int, + STATE(1414), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42190] = 8, + [40506] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, - sym_ident, - ACTIONS(3549), 1, - sym_at_type_ident, - STATE(1450), 1, - aux_sym__module_path, - STATE(1537), 1, - sym_module_resolution, - STATE(1565), 3, + ACTIONS(3247), 1, + anon_sym_case, + ACTIONS(3249), 1, + anon_sym_default, + ACTIONS(3358), 1, + anon_sym_RBRACE, + STATE(1412), 1, + aux_sym_switch_body_repeat1, + STATE(1593), 2, + sym_case_stmt, + sym_default_stmt, + STATE(1415), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42217] = 7, + [40537] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(2942), 1, anon_sym_EQ, - STATE(1753), 1, + STATE(1608), 1, sym__assign_right_expr, - ACTIONS(3551), 2, + ACTIONS(3360), 3, anon_sym_COMMA, anon_sym_RPAREN, - STATE(1566), 3, + anon_sym_SEMI, + STATE(1416), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42242] = 8, + [40563] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3539), 1, - sym_ident, - ACTIONS(3541), 1, - sym_ct_ident, - STATE(1831), 1, - sym_local_decl_after_type, - STATE(2113), 1, - sym__decl_statement_after_type, - STATE(1567), 3, + STATE(1417), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42269] = 8, + ACTIONS(3362), 5, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_LPAREN_LT, + anon_sym_SEMI, + [40585] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3553), 1, - anon_sym_fn, - ACTIONS(3555), 1, - anon_sym_RBRACE, - STATE(1582), 1, - aux_sym_interface_body_repeat1, - STATE(1978), 1, - sym_func_declaration, - STATE(1568), 3, + STATE(1418), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42296] = 7, + ACTIONS(3364), 5, + sym_ident, + sym_at_ident, + sym_type_ident, + sym_at_type_ident, + anon_sym_LBRACE, + [40607] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3297), 1, - sym_const_ident, - ACTIONS(3557), 1, - sym_ident, - STATE(1947), 1, - sym_module_resolution, - STATE(1569), 4, + ACTIONS(3366), 1, + anon_sym_EQ, + STATE(1419), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym__module_path, - [42321] = 8, + ACTIONS(3152), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + [40631] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3034), 1, - sym_const_ident, - ACTIONS(3529), 1, - anon_sym_LPAREN, - STATE(72), 1, - sym_paren_cond, - STATE(1948), 1, - sym_label, - STATE(1570), 3, + STATE(1420), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42348] = 8, + ACTIONS(3368), 5, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [40653] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3034), 1, + ACTIONS(3372), 1, sym_const_ident, - ACTIONS(3560), 1, - anon_sym_LPAREN, - STATE(122), 1, - sym_for_cond, - STATE(1941), 1, - sym_label, - STATE(1571), 3, + STATE(1421), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42375] = 8, + ACTIONS(3370), 4, + sym_ident, + sym_at_ident, + sym_type_ident, + sym_at_type_ident, + [40677] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2924), 1, sym_ident, - ACTIONS(3562), 1, - sym_type_ident, - STATE(1450), 1, - aux_sym__module_path, - STATE(1537), 1, + ACTIONS(3374), 1, + sym_at_ident, + STATE(1399), 1, + sym_path_at_ident, + STATE(1421), 1, sym_module_resolution, - STATE(1572), 3, + STATE(1469), 1, + aux_sym__module_path, + STATE(1422), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42402] = 7, + [40707] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3564), 1, - anon_sym_EQ, - STATE(1814), 1, - sym__assign_right_constant_expr, - ACTIONS(3052), 2, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(1573), 3, + ACTIONS(89), 1, + anon_sym_LBRACK, + ACTIONS(2701), 1, + anon_sym_DOT, + ACTIONS(3142), 1, + anon_sym_RPAREN, + STATE(1345), 1, + sym_param_path_element, + STATE(1442), 1, + aux_sym_param_path_repeat1, + STATE(1423), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42427] = 8, + [40737] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3034), 1, + ACTIONS(3378), 1, sym_const_ident, - ACTIONS(3523), 1, - anon_sym_LPAREN, - STATE(123), 1, - sym_foreach_cond, - STATE(1940), 1, - sym_label, - STATE(1574), 3, + STATE(1424), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42454] = 7, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(3519), 1, + ACTIONS(3376), 4, + sym_ident, + sym_at_ident, + sym_type_ident, + sym_at_type_ident, + [40761] = 5, + ACTIONS(3), 1, aux_sym_line_comment_token1, - ACTIONS(3521), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, - ACTIONS(3566), 1, - sym_escape_sequence, - ACTIONS(3569), 1, - anon_sym_DQUOTE, - ACTIONS(3571), 1, - aux_sym_string_literal_token1, - STATE(1575), 4, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(1425), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_string_literal_repeat1, - [42479] = 8, + ACTIONS(3380), 5, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [40783] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2626), 1, - anon_sym_QMARK_COLON, - ACTIONS(2628), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3574), 1, - anon_sym_SEMI, - ACTIONS(3576), 1, - anon_sym_COLON, - STATE(1576), 3, + ACTIONS(3382), 1, + anon_sym_DOLLARcase, + ACTIONS(3384), 1, + anon_sym_DOLLARdefault, + ACTIONS(3386), 1, + anon_sym_DOLLARendswitch, + STATE(1428), 1, + aux_sym__ct_switch_body, + STATE(1692), 1, + sym_ct_case_stmt, + STATE(1426), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42506] = 8, + [40813] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3034), 1, - sym_const_ident, - ACTIONS(3529), 1, - anon_sym_LPAREN, - STATE(66), 1, - sym_paren_cond, - STATE(1893), 1, - sym_label, - STATE(1577), 3, + ACTIONS(2942), 1, + anon_sym_EQ, + STATE(1694), 1, + sym__assign_right_expr, + ACTIONS(3388), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(1427), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42533] = 7, + [40839] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2626), 1, - anon_sym_QMARK_COLON, - ACTIONS(2628), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3527), 2, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(1578), 3, + ACTIONS(3390), 1, + anon_sym_DOLLARcase, + ACTIONS(3393), 1, + anon_sym_DOLLARdefault, + ACTIONS(3396), 1, + anon_sym_DOLLARendswitch, + STATE(1692), 1, + sym_ct_case_stmt, + STATE(1428), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [42558] = 8, + aux_sym__ct_switch_body, + [40867] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3578), 1, - anon_sym_COMMA, - ACTIONS(3580), 1, - anon_sym_SEMI, - ACTIONS(3582), 1, - anon_sym_QMARK, - STATE(1812), 1, - aux_sym_catch_unwrap_list_repeat1, - STATE(1579), 3, + STATE(1429), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42585] = 6, + ACTIONS(3398), 5, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_LPAREN_LT, + anon_sym_SEMI, + [40889] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3264), 1, - anon_sym_BANG, - ACTIONS(2736), 3, - sym_ident, - sym_ct_ident, - sym_const_ident, - STATE(1580), 3, + ACTIONS(2942), 1, + anon_sym_EQ, + STATE(1677), 1, + sym__assign_right_expr, + ACTIONS(2960), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(1430), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42608] = 8, + [40915] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2209), 1, + ACTIONS(2286), 1, anon_sym_LBRACE, - ACTIONS(3584), 1, + ACTIONS(2938), 1, anon_sym_EQ_GT, - STATE(1004), 1, + STATE(895), 1, + sym_macro_func_body, + STATE(926), 1, sym_compound_stmt, - STATE(1098), 1, + STATE(2161), 1, sym_implies_body, - STATE(1581), 3, + STATE(1431), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42635] = 8, + [40945] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3553), 1, - anon_sym_fn, - ACTIONS(3586), 1, - anon_sym_RBRACE, - STATE(1664), 1, - aux_sym_interface_body_repeat1, - STATE(1978), 1, - sym_func_declaration, - STATE(1582), 3, + STATE(1432), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42662] = 6, + ACTIONS(3305), 5, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_COMMA, + anon_sym_SEMI, + [40967] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3588), 1, - anon_sym_COMMA, - ACTIONS(3591), 2, - anon_sym_RPAREN, + STATE(1433), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(3400), 5, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_LPAREN_LT, anon_sym_SEMI, - STATE(1583), 4, + [40989] = 5, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(1434), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym__parameters_repeat1, - [42685] = 8, + ACTIONS(3402), 5, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [41011] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3034), 1, - sym_const_ident, - ACTIONS(3529), 1, - anon_sym_LPAREN, - STATE(127), 1, - sym_paren_cond, - STATE(1939), 1, - sym_label, - STATE(1584), 3, + ACTIONS(3382), 1, + anon_sym_DOLLARcase, + ACTIONS(3384), 1, + anon_sym_DOLLARdefault, + ACTIONS(3404), 1, + anon_sym_DOLLARendswitch, + STATE(1428), 1, + aux_sym__ct_switch_body, + STATE(1692), 1, + sym_ct_case_stmt, + STATE(1435), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42712] = 6, + [41041] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3593), 1, - anon_sym_COMMA, - ACTIONS(3596), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(1585), 4, + ACTIONS(3382), 1, + anon_sym_DOLLARcase, + ACTIONS(3384), 1, + anon_sym_DOLLARdefault, + ACTIONS(3406), 1, + anon_sym_DOLLARendswitch, + STATE(1428), 1, + aux_sym__ct_switch_body, + STATE(1692), 1, + sym_ct_case_stmt, + STATE(1436), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_enum_arg_repeat1, - [42735] = 8, + [41071] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3034), 1, - sym_const_ident, - ACTIONS(3529), 1, - anon_sym_LPAREN, - STATE(78), 1, - sym_paren_cond, - STATE(2042), 1, - sym_label, - STATE(1586), 3, + ACTIONS(3382), 1, + anon_sym_DOLLARcase, + ACTIONS(3384), 1, + anon_sym_DOLLARdefault, + ACTIONS(3408), 1, + anon_sym_DOLLARendswitch, + STATE(1428), 1, + aux_sym__ct_switch_body, + STATE(1692), 1, + sym_ct_case_stmt, + STATE(1437), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42762] = 7, + [41101] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3598), 1, + STATE(1438), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(3347), 5, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_COMMA, + anon_sym_SEMI, + [41123] = 8, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(3154), 1, + anon_sym_LBRACE, + ACTIONS(3156), 1, + anon_sym_DOT, + STATE(1009), 1, + sym_initializer_list, + ACTIONS(3410), 2, anon_sym_COMMA, - STATE(1583), 1, - aux_sym__parameters_repeat1, - ACTIONS(2485), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(1587), 3, + anon_sym_GT_RPAREN, + STATE(1439), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42787] = 5, + [41151] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1588), 3, + STATE(1440), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3600), 4, + ACTIONS(3412), 5, sym_ident, sym_at_ident, sym_at_type_ident, - anon_sym_LBRACE, - [42808] = 8, + anon_sym_LPAREN_LT, + anon_sym_SEMI, + [41173] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2209), 1, - anon_sym_LBRACE, - ACTIONS(3034), 1, - sym_const_ident, - STATE(1938), 1, - sym_label, - STATE(1952), 1, - sym_compound_stmt, - STATE(1589), 3, + STATE(1441), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42835] = 7, + ACTIONS(3414), 5, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [41195] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3602), 1, - anon_sym_EQ, - STATE(1814), 1, - sym__assign_right_constant_expr, - ACTIONS(3052), 2, - anon_sym_COMMA, + ACTIONS(3158), 1, anon_sym_RPAREN, - STATE(1590), 3, + ACTIONS(3160), 1, + anon_sym_LBRACK, + ACTIONS(3416), 1, + anon_sym_DOT, + STATE(1345), 1, + sym_param_path_element, + STATE(1442), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [42860] = 8, + aux_sym_param_path_repeat1, + [41223] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3539), 1, - sym_ident, - ACTIONS(3541), 1, - sym_ct_ident, - STATE(1831), 1, - sym_local_decl_after_type, - STATE(2174), 1, - sym__decl_statement_after_type, - STATE(1591), 3, + ACTIONS(3382), 1, + anon_sym_DOLLARcase, + ACTIONS(3384), 1, + anon_sym_DOLLARdefault, + ACTIONS(3419), 1, + anon_sym_DOLLARendswitch, + STATE(1428), 1, + aux_sym__ct_switch_body, + STATE(1692), 1, + sym_ct_case_stmt, + STATE(1443), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42887] = 7, + [41253] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3604), 1, + ACTIONS(3421), 1, anon_sym_COMMA, - STATE(1587), 1, - aux_sym__parameters_repeat1, - ACTIONS(3606), 2, + ACTIONS(3424), 3, anon_sym_RPAREN, anon_sym_SEMI, - STATE(1592), 3, + anon_sym_RBRACE, + STATE(1444), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [42912] = 8, + aux_sym_enum_arg_repeat1, + [41277] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3442), 1, + ACTIONS(3382), 1, anon_sym_DOLLARcase, - ACTIONS(3444), 1, + ACTIONS(3384), 1, anon_sym_DOLLARdefault, - STATE(1527), 1, + ACTIONS(3426), 1, + anon_sym_DOLLARendswitch, + STATE(1428), 1, aux_sym__ct_switch_body, - STATE(1830), 1, + STATE(1692), 1, sym_ct_case_stmt, - STATE(1593), 3, + STATE(1445), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42939] = 8, + [41307] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3608), 1, - anon_sym_LBRACE, - ACTIONS(3610), 1, - anon_sym_if, - STATE(455), 1, - sym_compound_stmt, - STATE(461), 1, - sym_if_stmt, - STATE(1594), 3, + STATE(1446), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42966] = 8, + ACTIONS(3428), 5, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_LPAREN, + anon_sym_LBRACE, + [41329] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3539), 1, + ACTIONS(3430), 1, sym_ident, - ACTIONS(3541), 1, - sym_ct_ident, - STATE(1831), 1, - sym_local_decl_after_type, - STATE(2289), 1, - sym__decl_statement_after_type, - STATE(1595), 3, + STATE(1447), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42993] = 8, + ACTIONS(3432), 4, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_SEMI, + [41353] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3539), 1, + ACTIONS(3434), 1, sym_ident, - ACTIONS(3541), 1, - sym_ct_ident, - STATE(1831), 1, - sym_local_decl_after_type, - STATE(2245), 1, - sym__decl_statement_after_type, - STATE(1596), 3, + ACTIONS(3436), 1, + sym_const_ident, + STATE(1399), 1, + sym_path_const_ident, + STATE(1462), 1, + aux_sym__module_path, + STATE(1858), 1, + sym_module_resolution, + STATE(1448), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43020] = 8, + [41383] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2487), 1, - anon_sym_RPAREN, - ACTIONS(3612), 1, - anon_sym_COMMA, - ACTIONS(3614), 1, - anon_sym_SEMI, - STATE(1687), 1, - aux_sym_enum_arg_repeat1, - STATE(1597), 3, + STATE(1449), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43047] = 8, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(3539), 1, + ACTIONS(3438), 4, sym_ident, - ACTIONS(3541), 1, - sym_ct_ident, - STATE(1831), 1, - sym_local_decl_after_type, - STATE(2217), 1, - sym__decl_statement_after_type, - STATE(1598), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [43074] = 8, + sym_at_ident, + sym_at_type_ident, + anon_sym_SEMI, + [41404] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3034), 1, + ACTIONS(2968), 1, sym_const_ident, - ACTIONS(3560), 1, + ACTIONS(3440), 1, anon_sym_LPAREN, - STATE(113), 1, - sym_for_cond, - STATE(1884), 1, + STATE(81), 1, + sym_paren_cond, + STATE(1749), 1, sym_label, - STATE(1599), 3, + STATE(1450), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43101] = 8, + [41431] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3034), 1, - sym_const_ident, - ACTIONS(3529), 1, - anon_sym_LPAREN, - STATE(85), 1, - sym_paren_cond, - STATE(2023), 1, - sym_label, - STATE(1600), 3, + ACTIONS(3148), 1, + sym_ident, + ACTIONS(3150), 1, + sym_ct_ident, + STATE(1690), 1, + sym_local_decl_after_type, + STATE(2016), 1, + sym__decl_statement_after_type, + STATE(1451), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43128] = 8, + [41458] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3034), 1, - sym_const_ident, - ACTIONS(3523), 1, - anon_sym_LPAREN, - STATE(134), 1, - sym_foreach_cond, - STATE(2053), 1, - sym_label, - STATE(1601), 3, + ACTIONS(2609), 1, + anon_sym_RPAREN, + ACTIONS(3442), 1, + anon_sym_COMMA, + ACTIONS(3444), 1, + anon_sym_SEMI, + STATE(1520), 1, + aux_sym_enum_arg_repeat1, + STATE(1452), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43155] = 7, + [41485] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2305), 1, - anon_sym_LPAREN_LT, - STATE(1927), 1, - sym_generic_arguments, - ACTIONS(3616), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1602), 3, + STATE(1453), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43180] = 8, + ACTIONS(3446), 4, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_SEMI, + [41506] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, - sym_ident, - ACTIONS(3618), 1, - sym_type_ident, - STATE(1450), 1, - aux_sym__module_path, - STATE(1537), 1, - sym_module_resolution, - STATE(1603), 3, + STATE(1454), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43207] = 8, + ACTIONS(3448), 4, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_SEMI, + [41527] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3442), 1, - anon_sym_DOLLARcase, - ACTIONS(3444), 1, - anon_sym_DOLLARdefault, - STATE(1531), 1, - aux_sym__ct_switch_body, - STATE(1830), 1, - sym_ct_case_stmt, - STATE(1604), 3, + ACTIONS(3154), 1, + anon_sym_LBRACE, + ACTIONS(3156), 1, + anon_sym_DOT, + ACTIONS(3450), 1, + anon_sym_SEMI, + STATE(1009), 1, + sym_initializer_list, + STATE(1455), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43234] = 8, + [41554] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3034), 1, - sym_const_ident, - ACTIONS(3560), 1, - anon_sym_LPAREN, - STATE(130), 1, - sym_for_cond, - STATE(1924), 1, - sym_label, - STATE(1605), 3, + STATE(1456), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43261] = 8, + ACTIONS(2986), 4, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_SEMI, + [41575] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3442), 1, - anon_sym_DOLLARcase, - ACTIONS(3444), 1, - anon_sym_DOLLARdefault, - STATE(1525), 1, - aux_sym__ct_switch_body, - STATE(1830), 1, - sym_ct_case_stmt, - STATE(1606), 3, + ACTIONS(3452), 1, + anon_sym_LBRACE, + ACTIONS(3454), 1, + anon_sym_if, + STATE(630), 1, + sym_compound_stmt, + STATE(631), 1, + sym_if_stmt, + STATE(1457), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43288] = 8, + [41602] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3034), 1, - sym_const_ident, - ACTIONS(3523), 1, - anon_sym_LPAREN, - STATE(129), 1, - sym_foreach_cond, - STATE(1923), 1, - sym_label, - STATE(1607), 3, + ACTIONS(2402), 1, + anon_sym_LPAREN_LT, + STATE(1814), 1, + sym_generic_arguments, + ACTIONS(3456), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1458), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43315] = 8, + [41627] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3503), 1, + ACTIONS(2924), 1, sym_ident, - ACTIONS(3620), 1, - sym_const_ident, - STATE(1569), 1, + ACTIONS(3458), 1, + sym_type_ident, + STATE(1349), 1, aux_sym__module_path, - STATE(1947), 1, + STATE(1421), 1, sym_module_resolution, - STATE(1608), 3, + STATE(1459), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43342] = 8, + [41654] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2209), 1, - anon_sym_LBRACE, - ACTIONS(3034), 1, - sym_const_ident, - STATE(1918), 1, - sym_compound_stmt, - STATE(1994), 1, - sym_label, - STATE(1609), 3, + ACTIONS(3460), 1, + anon_sym_COMMA, + STATE(1577), 1, + aux_sym__parameters_repeat1, + ACTIONS(2605), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(1460), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43369] = 8, + [41679] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3034), 1, - sym_const_ident, - ACTIONS(3529), 1, - anon_sym_LPAREN, - STATE(98), 1, - sym_paren_cond, - STATE(1995), 1, - sym_label, - STATE(1610), 3, + STATE(1461), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43396] = 8, + ACTIONS(3462), 4, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_SEMI, + [41700] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3034), 1, + ACTIONS(3434), 1, + sym_ident, + ACTIONS(3464), 1, sym_const_ident, - ACTIONS(3529), 1, - anon_sym_LPAREN, - STATE(128), 1, - sym_paren_cond, - STATE(1922), 1, - sym_label, - STATE(1611), 3, + STATE(1479), 1, + aux_sym__module_path, + STATE(1858), 1, + sym_module_resolution, + STATE(1462), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43423] = 8, + [41727] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3034), 1, - sym_const_ident, - ACTIONS(3523), 1, - anon_sym_LPAREN, - STATE(126), 1, - sym_foreach_cond, - STATE(1997), 1, - sym_label, - STATE(1612), 3, + ACTIONS(2984), 1, + anon_sym_EQ, + STATE(1837), 1, + sym_enum_arg, + ACTIONS(3466), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1463), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43450] = 8, + [41752] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2209), 1, + ACTIONS(3154), 1, anon_sym_LBRACE, - ACTIONS(3034), 1, - sym_const_ident, - STATE(1921), 1, - sym_label, - STATE(2027), 1, - sym_compound_stmt, - STATE(1613), 3, + ACTIONS(3156), 1, + anon_sym_DOT, + ACTIONS(3468), 1, + anon_sym_SEMI, + STATE(1009), 1, + sym_initializer_list, + STATE(1464), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43477] = 8, + [41779] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3034), 1, - sym_const_ident, - ACTIONS(3560), 1, - anon_sym_LPAREN, - STATE(125), 1, - sym_for_cond, - STATE(1998), 1, - sym_label, - STATE(1614), 3, + ACTIONS(3470), 1, + anon_sym_COMMA, + STATE(1530), 1, + aux_sym__cond_repeat1, + ACTIONS(3472), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(1465), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43504] = 5, + [41804] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1615), 3, + STATE(1466), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3622), 4, + ACTIONS(3474), 4, sym_ident, sym_at_ident, sym_at_type_ident, - anon_sym_SEMI, - [43525] = 5, + anon_sym_LBRACE, + [41825] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1616), 3, + ACTIONS(3476), 1, + anon_sym_fn, + ACTIONS(3478), 1, + anon_sym_RBRACE, + STATE(1470), 1, + aux_sym_interface_body_repeat1, + STATE(1767), 1, + sym_func_declaration, + STATE(1467), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + [41852] = 5, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(1468), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3624), 4, + ACTIONS(3480), 4, sym_ident, sym_at_ident, sym_at_type_ident, - anon_sym_SEMI, - [43546] = 8, + anon_sym_LBRACE, + [41873] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(2924), 1, sym_ident, - ACTIONS(3626), 1, + ACTIONS(3482), 1, sym_at_ident, - STATE(1450), 1, + STATE(1349), 1, aux_sym__module_path, - STATE(1537), 1, + STATE(1421), 1, sym_module_resolution, - STATE(1617), 3, + STATE(1469), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43573] = 5, + [41900] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1618), 3, + ACTIONS(3484), 1, + anon_sym_fn, + ACTIONS(3487), 1, + anon_sym_RBRACE, + STATE(1767), 1, + sym_func_declaration, + STATE(1470), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1724), 4, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_LBRACE, - [43594] = 8, + aux_sym_interface_body_repeat1, + [41925] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3260), 1, - anon_sym_LBRACE, - ACTIONS(3262), 1, - anon_sym_DOT, - ACTIONS(3628), 1, - sym_ident, - STATE(1006), 1, - sym_initializer_list, - STATE(1619), 3, + STATE(1471), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43621] = 8, + ACTIONS(3196), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + [41946] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3580), 1, - anon_sym_RPAREN, - ACTIONS(3582), 1, - anon_sym_QMARK, - ACTIONS(3630), 1, - anon_sym_COMMA, - STATE(1738), 1, - aux_sym_catch_unwrap_list_repeat1, - STATE(1620), 3, + STATE(1472), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43648] = 8, + ACTIONS(3424), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + [41967] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3442), 1, - anon_sym_DOLLARcase, - ACTIONS(3444), 1, - anon_sym_DOLLARdefault, - STATE(1533), 1, - aux_sym__ct_switch_body, - STATE(1830), 1, - sym_ct_case_stmt, - STATE(1621), 3, + ACTIONS(3154), 1, + anon_sym_LBRACE, + ACTIONS(3156), 1, + anon_sym_DOT, + ACTIONS(3489), 1, + anon_sym_SEMI, + STATE(1009), 1, + sym_initializer_list, + STATE(1473), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43675] = 8, + [41994] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3034), 1, - sym_const_ident, - ACTIONS(3529), 1, - anon_sym_LPAREN, - STATE(87), 1, - sym_paren_cond, - STATE(1907), 1, - sym_label, - STATE(1622), 3, + ACTIONS(3154), 1, + anon_sym_LBRACE, + ACTIONS(3156), 1, + anon_sym_DOT, + ACTIONS(3491), 1, + anon_sym_SEMI, + STATE(1009), 1, + sym_initializer_list, + STATE(1474), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43702] = 8, + [42021] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3260), 1, - anon_sym_LBRACE, - ACTIONS(3262), 1, - anon_sym_DOT, - ACTIONS(3632), 1, - sym_ident, - STATE(1006), 1, - sym_initializer_list, - STATE(1623), 3, + ACTIONS(3493), 1, + anon_sym_COMMA, + STATE(1460), 1, + aux_sym__parameters_repeat1, + ACTIONS(3495), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(1475), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43729] = 8, + [42046] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3539), 1, - sym_ident, - ACTIONS(3541), 1, - sym_ct_ident, - STATE(1831), 1, - sym_local_decl_after_type, - STATE(2121), 1, - sym__decl_statement_after_type, - STATE(1624), 3, + ACTIONS(3497), 1, + anon_sym_LBRACE, + ACTIONS(3499), 1, + anon_sym_if, + STATE(705), 1, + sym_compound_stmt, + STATE(706), 1, + sym_if_stmt, + STATE(1476), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43756] = 8, + [42073] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3539), 1, - sym_ident, - ACTIONS(3541), 1, - sym_ct_ident, - STATE(1831), 1, - sym_local_decl_after_type, - STATE(2069), 1, - sym__decl_statement_after_type, - STATE(1625), 3, + ACTIONS(3503), 1, + anon_sym_AMP_AMP, + STATE(1540), 1, + aux_sym__try_unwrap_chain_repeat1, + ACTIONS(3501), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(1477), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43783] = 6, + [42098] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3582), 1, - anon_sym_QMARK, - ACTIONS(3634), 3, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - STATE(1626), 3, + STATE(1478), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43806] = 8, + ACTIONS(3505), 4, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_SEMI, + [42119] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2977), 1, + ACTIONS(3219), 1, + sym_const_ident, + ACTIONS(3507), 1, sym_ident, - ACTIONS(3301), 1, - sym_type_ident, - STATE(1450), 1, - aux_sym__module_path, - STATE(1537), 1, + STATE(1858), 1, sym_module_resolution, - STATE(1627), 3, + STATE(1479), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [43833] = 5, + aux_sym__module_path, + [42144] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1628), 3, + ACTIONS(2286), 1, + anon_sym_LBRACE, + ACTIONS(3510), 1, + anon_sym_EQ_GT, + STATE(984), 1, + sym_implies_body, + STATE(986), 1, + sym_compound_stmt, + STATE(1480), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3636), 4, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_SEMI, - [43854] = 6, + [42171] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3638), 1, - anon_sym_EQ, - ACTIONS(3258), 3, + ACTIONS(3512), 1, anon_sym_COMMA, + STATE(1539), 1, + aux_sym__cond_repeat1, + ACTIONS(3514), 2, anon_sym_RPAREN, anon_sym_SEMI, - STATE(1629), 3, + STATE(1481), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43877] = 5, + [42196] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1630), 3, + STATE(1482), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3640), 4, + ACTIONS(3516), 4, sym_ident, sym_at_ident, sym_at_type_ident, anon_sym_SEMI, - [43898] = 8, + [42217] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2626), 1, - anon_sym_QMARK_COLON, - ACTIONS(2628), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3642), 1, + ACTIONS(3154), 1, + anon_sym_LBRACE, + ACTIONS(3156), 1, + anon_sym_DOT, + ACTIONS(3518), 1, anon_sym_SEMI, - ACTIONS(3644), 1, - anon_sym_DOT_DOT, - STATE(1631), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [43925] = 8, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2977), 1, - sym_ident, - ACTIONS(3288), 1, - sym_type_ident, - STATE(1450), 1, - aux_sym__module_path, - STATE(1537), 1, - sym_module_resolution, - STATE(1632), 3, + STATE(1009), 1, + sym_initializer_list, + STATE(1483), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43952] = 8, + [42244] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2209), 1, - anon_sym_LBRACE, - ACTIONS(3646), 1, - anon_sym_EQ_GT, - STATE(1004), 1, - sym_compound_stmt, - STATE(1098), 1, - sym_implies_body, - STATE(1633), 3, + STATE(1484), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43979] = 8, + ACTIONS(3520), 4, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_SEMI, + [42265] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2626), 1, - anon_sym_QMARK_COLON, - ACTIONS(2628), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3648), 1, - anon_sym_SEMI, - ACTIONS(3650), 1, - anon_sym_COLON, - STATE(1634), 3, + ACTIONS(2286), 1, + anon_sym_LBRACE, + ACTIONS(2968), 1, + sym_const_ident, + STATE(1706), 1, + sym_label, + STATE(1753), 1, + sym_compound_stmt, + STATE(1485), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44006] = 8, + [42292] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3260), 1, + ACTIONS(3154), 1, anon_sym_LBRACE, - ACTIONS(3262), 1, + ACTIONS(3156), 1, anon_sym_DOT, - ACTIONS(3652), 1, - anon_sym_RPAREN, - STATE(1006), 1, + ACTIONS(3522), 1, + anon_sym_SEMI, + STATE(1009), 1, sym_initializer_list, - STATE(1635), 3, + STATE(1486), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44033] = 5, + [42319] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1636), 3, + ACTIONS(3524), 1, + anon_sym_LBRACE, + ACTIONS(3526), 1, + anon_sym_if, + STATE(777), 1, + sym_compound_stmt, + STATE(778), 1, + sym_if_stmt, + STATE(1487), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3654), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - [44054] = 8, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + [42346] = 8, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2626), 1, - anon_sym_QMARK_COLON, - ACTIONS(2628), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3656), 1, - anon_sym_SEMI, - ACTIONS(3658), 1, - anon_sym_COLON, - STATE(1637), 3, + ACTIONS(3528), 1, + sym_escape_sequence, + ACTIONS(3530), 1, + anon_sym_DQUOTE, + ACTIONS(3532), 1, + aux_sym_string_literal_token1, + ACTIONS(3534), 1, + aux_sym_line_comment_token1, + ACTIONS(3536), 1, + anon_sym_SLASH_STAR_STAR, + STATE(1578), 1, + aux_sym_string_literal_repeat1, + STATE(1488), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44081] = 5, + [42373] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1638), 3, + STATE(1489), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3660), 4, + ACTIONS(3538), 4, sym_ident, sym_at_ident, sym_at_type_ident, anon_sym_SEMI, - [44102] = 8, + [42394] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3034), 1, - sym_const_ident, - ACTIONS(3529), 1, - anon_sym_LPAREN, - STATE(59), 1, - sym_paren_cond, - STATE(2045), 1, - sym_label, - STATE(1639), 3, + ACTIONS(3154), 1, + anon_sym_LBRACE, + ACTIONS(3156), 1, + anon_sym_DOT, + ACTIONS(3540), 1, + anon_sym_SEMI, + STATE(1009), 1, + sym_initializer_list, + STATE(1490), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44129] = 8, + [42421] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3034), 1, - sym_const_ident, - ACTIONS(3560), 1, - anon_sym_LPAREN, - STATE(106), 1, - sym_for_cond, - STATE(1905), 1, - sym_label, - STATE(1640), 3, + ACTIONS(3542), 1, + anon_sym_RBRACK, + STATE(1266), 1, + sym__additive_op, + ACTIONS(3544), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1491), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44156] = 5, + [42446] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1641), 3, + ACTIONS(3154), 1, + anon_sym_LBRACE, + ACTIONS(3156), 1, + anon_sym_DOT, + ACTIONS(3546), 1, + anon_sym_RPAREN, + STATE(1009), 1, + sym_initializer_list, + STATE(1492), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3662), 4, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_SEMI, - [44177] = 8, + [42473] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3034), 1, - sym_const_ident, - ACTIONS(3523), 1, - anon_sym_LPAREN, - STATE(104), 1, - sym_foreach_cond, - STATE(1904), 1, - sym_label, - STATE(1642), 3, + ACTIONS(3154), 1, + anon_sym_LBRACE, + ACTIONS(3156), 1, + anon_sym_DOT, + ACTIONS(3548), 1, + anon_sym_SEMI, + STATE(1009), 1, + sym_initializer_list, + STATE(1493), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44204] = 8, + [42500] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3034), 1, - sym_const_ident, - ACTIONS(3529), 1, - anon_sym_LPAREN, - STATE(103), 1, - sym_paren_cond, - STATE(1901), 1, - sym_label, - STATE(1643), 3, + ACTIONS(3550), 1, + anon_sym_LBRACE, + ACTIONS(3552), 1, + anon_sym_if, + STATE(461), 1, + sym_compound_stmt, + STATE(463), 1, + sym_if_stmt, + STATE(1494), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44231] = 8, + [42527] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2209), 1, - anon_sym_LBRACE, - ACTIONS(3034), 1, - sym_const_ident, - STATE(1900), 1, - sym_label, - STATE(2051), 1, - sym_compound_stmt, - STATE(1644), 3, + ACTIONS(3554), 1, + anon_sym_COMMA, + ACTIONS(3557), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(1495), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [44258] = 8, + aux_sym__cond_repeat1, + [42550] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2209), 1, + ACTIONS(3154), 1, anon_sym_LBRACE, - ACTIONS(3664), 1, - anon_sym_EQ_GT, - STATE(1004), 1, - sym_compound_stmt, - STATE(1098), 1, - sym_implies_body, - STATE(1645), 3, + ACTIONS(3156), 1, + anon_sym_DOT, + ACTIONS(3559), 1, + anon_sym_COLON, + STATE(1009), 1, + sym_initializer_list, + STATE(1496), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44285] = 8, + [42577] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3442), 1, - anon_sym_DOLLARcase, - ACTIONS(3444), 1, - anon_sym_DOLLARdefault, - STATE(1518), 1, - aux_sym__ct_switch_body, - STATE(1830), 1, - sym_ct_case_stmt, - STATE(1646), 3, + ACTIONS(3563), 1, + anon_sym_AMP_AMP, + ACTIONS(3561), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(1497), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [44312] = 8, + aux_sym__try_unwrap_chain_repeat1, + [42600] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3539), 1, - sym_ident, - ACTIONS(3541), 1, - sym_ct_ident, - STATE(1831), 1, - sym_local_decl_after_type, - STATE(2109), 1, - sym__decl_statement_after_type, - STATE(1647), 3, + ACTIONS(2515), 1, + anon_sym_COMMA, + STATE(1551), 1, + aux_sym_assert_stmt_repeat1, + ACTIONS(3566), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(1498), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44339] = 5, + [42625] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1648), 3, + ACTIONS(3568), 1, + sym_ident, + STATE(1399), 1, + sym_path_ident, + STATE(1421), 1, + sym_module_resolution, + STATE(1675), 1, + aux_sym__module_path, + STATE(1499), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3666), 4, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_SEMI, - [44360] = 8, + [42652] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3668), 1, + ACTIONS(3154), 1, anon_sym_LBRACE, - ACTIONS(3670), 1, - anon_sym_if, - STATE(746), 1, - sym_if_stmt, - STATE(747), 1, - sym_compound_stmt, - STATE(1649), 3, + ACTIONS(3156), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_SEMI, + STATE(1009), 1, + sym_initializer_list, + STATE(1500), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44387] = 8, + [42679] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3034), 1, + ACTIONS(2968), 1, sym_const_ident, - ACTIONS(3560), 1, + ACTIONS(3440), 1, anon_sym_LPAREN, - STATE(101), 1, - sym_for_cond, - STATE(1963), 1, + STATE(70), 1, + sym_paren_cond, + STATE(1802), 1, sym_label, - STATE(1650), 3, + STATE(1501), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44414] = 8, + [42706] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2626), 1, - anon_sym_QMARK_COLON, - ACTIONS(2628), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3672), 1, - anon_sym_SEMI, - ACTIONS(3674), 1, - anon_sym_COLON, - STATE(1651), 3, + ACTIONS(2968), 1, + sym_const_ident, + ACTIONS(3572), 1, + anon_sym_LPAREN, + STATE(102), 1, + sym_for_cond, + STATE(1747), 1, + sym_label, + STATE(1502), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44441] = 8, + [42733] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3539), 1, - sym_ident, - ACTIONS(3541), 1, - sym_ct_ident, - STATE(1831), 1, - sym_local_decl_after_type, - STATE(2126), 1, - sym__decl_statement_after_type, - STATE(1652), 3, + ACTIONS(2968), 1, + sym_const_ident, + ACTIONS(3574), 1, + anon_sym_LPAREN, + STATE(104), 1, + sym_foreach_cond, + STATE(1745), 1, + sym_label, + STATE(1503), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44468] = 5, + [42760] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1653), 3, + ACTIONS(2968), 1, + sym_const_ident, + ACTIONS(3440), 1, + anon_sym_LPAREN, + STATE(109), 1, + sym_paren_cond, + STATE(1743), 1, + sym_label, + STATE(1504), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3676), 4, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_LBRACE, - [44489] = 6, + [42787] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3582), 1, - anon_sym_QMARK, - ACTIONS(3678), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3154), 1, + anon_sym_LBRACE, + ACTIONS(3156), 1, + anon_sym_DOT, + ACTIONS(3576), 1, anon_sym_SEMI, - STATE(1654), 3, + STATE(1009), 1, + sym_initializer_list, + STATE(1505), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44512] = 7, + [42814] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2760), 1, - anon_sym_QMARK_COLON, - ACTIONS(2762), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3680), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1655), 3, + ACTIONS(2286), 1, + anon_sym_LBRACE, + ACTIONS(2968), 1, + sym_const_ident, + STATE(1742), 1, + sym_label, + STATE(1793), 1, + sym_compound_stmt, + STATE(1506), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44537] = 8, + [42841] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3682), 1, - sym_ident, - STATE(1479), 1, - sym_path_ident, - STATE(1537), 1, - sym_module_resolution, - STATE(1752), 1, - aux_sym__module_path, - STATE(1656), 3, + STATE(1507), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44564] = 7, + ACTIONS(3578), 4, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_LBRACE, + [42862] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3032), 1, - anon_sym_EQ, - STATE(2017), 1, - sym_enum_arg, - ACTIONS(3684), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1657), 3, + ACTIONS(3382), 1, + anon_sym_DOLLARcase, + ACTIONS(3384), 1, + anon_sym_DOLLARdefault, + STATE(1436), 1, + aux_sym__ct_switch_body, + STATE(1692), 1, + sym_ct_case_stmt, + STATE(1508), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44589] = 6, + [42889] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3582), 1, - anon_sym_QMARK, - ACTIONS(3686), 3, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - STATE(1658), 3, + ACTIONS(3148), 1, + sym_ident, + ACTIONS(3150), 1, + sym_ct_ident, + STATE(1690), 1, + sym_local_decl_after_type, + STATE(2129), 1, + sym__decl_statement_after_type, + STATE(1509), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44612] = 8, + [42916] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2626), 1, - anon_sym_QMARK_COLON, - ACTIONS(2628), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3688), 1, - anon_sym_SEMI, - ACTIONS(3690), 1, - anon_sym_COLON, - STATE(1659), 3, + STATE(1510), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44639] = 8, + ACTIONS(3580), 4, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_SEMI, + [42937] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2209), 1, - anon_sym_LBRACE, - ACTIONS(3034), 1, - sym_const_ident, - STATE(2057), 1, - sym_compound_stmt, - STATE(2058), 1, - sym_label, - STATE(1660), 3, + STATE(1511), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44666] = 7, + ACTIONS(3582), 4, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_SEMI, + [42958] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3692), 1, - anon_sym_LPAREN, - STATE(1991), 1, - sym_ct_switch_cond, - ACTIONS(3694), 2, - anon_sym_DOLLARcase, - anon_sym_DOLLARdefault, - STATE(1661), 3, + ACTIONS(2924), 1, + sym_ident, + ACTIONS(3584), 1, + sym_at_type_ident, + STATE(1349), 1, + aux_sym__module_path, + STATE(1421), 1, + sym_module_resolution, + STATE(1512), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44691] = 5, + [42985] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1662), 3, + STATE(1513), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3696), 4, + ACTIONS(3586), 4, sym_ident, sym_at_ident, sym_at_type_ident, anon_sym_LBRACE, - [44712] = 8, + [43006] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3698), 1, - anon_sym_LBRACE, - ACTIONS(3700), 1, - anon_sym_if, - STATE(469), 1, - sym_if_stmt, - STATE(506), 1, - sym_compound_stmt, - STATE(1663), 3, + ACTIONS(3568), 1, + sym_ident, + STATE(1421), 1, + sym_module_resolution, + STATE(1432), 1, + sym_path_ident, + STATE(1675), 1, + aux_sym__module_path, + STATE(1514), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44739] = 7, + [43033] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3702), 1, - anon_sym_fn, - ACTIONS(3705), 1, - anon_sym_RBRACE, - STATE(1978), 1, - sym_func_declaration, - STATE(1664), 4, + ACTIONS(2968), 1, + sym_const_ident, + ACTIONS(3572), 1, + anon_sym_LPAREN, + STATE(136), 1, + sym_for_cond, + STATE(1709), 1, + sym_label, + STATE(1515), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_interface_body_repeat1, - [44764] = 8, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + [43060] = 7, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3682), 1, - sym_ident, - STATE(1537), 1, - sym_module_resolution, - STATE(1538), 1, - sym_path_ident, - STATE(1752), 1, - aux_sym__module_path, - STATE(1665), 3, + ACTIONS(3534), 1, + aux_sym_line_comment_token1, + ACTIONS(3536), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3588), 1, + sym_escape_sequence, + ACTIONS(3591), 1, + anon_sym_DQUOTE, + ACTIONS(3593), 1, + aux_sym_string_literal_token1, + STATE(1516), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [44791] = 5, + aux_sym_string_literal_repeat1, + [43085] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1666), 3, + ACTIONS(2968), 1, + sym_const_ident, + ACTIONS(3574), 1, + anon_sym_LPAREN, + STATE(137), 1, + sym_foreach_cond, + STATE(1708), 1, + sym_label, + STATE(1517), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3284), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - [44812] = 5, + [43112] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1667), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(3596), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - [44833] = 8, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(3513), 1, - sym_escape_sequence, - ACTIONS(3517), 1, - aux_sym_string_literal_token1, - ACTIONS(3519), 1, - aux_sym_line_comment_token1, - ACTIONS(3521), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(3707), 1, - anon_sym_DQUOTE, - STATE(1548), 1, - aux_sym_string_literal_repeat1, - STATE(1668), 3, + ACTIONS(2968), 1, + sym_const_ident, + ACTIONS(3440), 1, + anon_sym_LPAREN, + STATE(138), 1, + sym_paren_cond, + STATE(1707), 1, + sym_label, + STATE(1518), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44860] = 8, + [43139] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3709), 1, - anon_sym_LBRACE, - ACTIONS(3711), 1, - anon_sym_if, - STATE(682), 1, - sym_compound_stmt, - STATE(685), 1, - sym_if_stmt, - STATE(1669), 3, + STATE(1519), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44887] = 8, + ACTIONS(3596), 4, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_SEMI, + [43160] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2626), 1, - anon_sym_QMARK_COLON, - ACTIONS(2628), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3713), 1, + ACTIONS(1191), 1, + anon_sym_RPAREN, + ACTIONS(1193), 1, anon_sym_SEMI, - ACTIONS(3715), 1, - anon_sym_COLON, - STATE(1670), 3, + ACTIONS(3598), 1, + anon_sym_COMMA, + STATE(1444), 1, + aux_sym_enum_arg_repeat1, + STATE(1520), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44914] = 8, + [43187] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3260), 1, - anon_sym_LBRACE, - ACTIONS(3262), 1, - anon_sym_DOT, - ACTIONS(3717), 1, - sym_ident, - STATE(1006), 1, - sym_initializer_list, - STATE(1671), 3, + ACTIONS(3382), 1, + anon_sym_DOLLARcase, + ACTIONS(3384), 1, + anon_sym_DOLLARdefault, + STATE(1437), 1, + aux_sym__ct_switch_body, + STATE(1692), 1, + sym_ct_case_stmt, + STATE(1521), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44941] = 5, + [43214] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1672), 3, + ACTIONS(3148), 1, + sym_ident, + ACTIONS(3150), 1, + sym_ct_ident, + STATE(1690), 1, + sym_local_decl_after_type, + STATE(2038), 1, + sym__decl_statement_after_type, + STATE(1522), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3719), 4, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_SEMI, - [44962] = 5, + [43241] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1673), 3, + ACTIONS(2968), 1, + sym_const_ident, + ACTIONS(3440), 1, + anon_sym_LPAREN, + STATE(67), 1, + sym_paren_cond, + STATE(1826), 1, + sym_label, + STATE(1523), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3721), 4, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_SEMI, - [44983] = 8, + [43268] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3034), 1, + ACTIONS(2968), 1, sym_const_ident, - ACTIONS(3529), 1, + ACTIONS(3572), 1, anon_sym_LPAREN, STATE(120), 1, - sym_paren_cond, - STATE(2060), 1, + sym_for_cond, + STATE(1744), 1, sym_label, - STATE(1674), 3, + STATE(1524), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45010] = 5, + [43295] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1675), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(3723), 4, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_SEMI, - [45031] = 7, + ACTIONS(2968), 1, + sym_const_ident, + ACTIONS(3574), 1, + anon_sym_LPAREN, + STATE(119), 1, + sym_foreach_cond, + STATE(1748), 1, + sym_label, + STATE(1525), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + [43322] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_EQ, - STATE(1850), 1, - sym__assign_right_expr, - ACTIONS(3545), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1676), 3, + ACTIONS(2968), 1, + sym_const_ident, + ACTIONS(3440), 1, + anon_sym_LPAREN, + STATE(117), 1, + sym_paren_cond, + STATE(1752), 1, + sym_label, + STATE(1526), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45056] = 8, + [43349] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3260), 1, + ACTIONS(2286), 1, anon_sym_LBRACE, - ACTIONS(3262), 1, - anon_sym_DOT, - ACTIONS(3725), 1, - sym_ident, - STATE(1006), 1, - sym_initializer_list, - STATE(1677), 3, + ACTIONS(2968), 1, + sym_const_ident, + STATE(1754), 1, + sym_label, + STATE(1830), 1, + sym_compound_stmt, + STATE(1527), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45083] = 5, + [43376] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1678), 3, + ACTIONS(3382), 1, + anon_sym_DOLLARcase, + ACTIONS(3384), 1, + anon_sym_DOLLARdefault, + STATE(1435), 1, + aux_sym__ct_switch_body, + STATE(1692), 1, + sym_ct_case_stmt, + STATE(1528), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3727), 4, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_SEMI, - [45104] = 8, + [43403] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2209), 1, - anon_sym_LBRACE, - ACTIONS(3729), 1, - anon_sym_EQ_GT, - STATE(1004), 1, - sym_compound_stmt, - STATE(1098), 1, - sym_implies_body, - STATE(1679), 3, + ACTIONS(3148), 1, + sym_ident, + ACTIONS(3150), 1, + sym_ct_ident, + STATE(1690), 1, + sym_local_decl_after_type, + STATE(1916), 1, + sym__decl_statement_after_type, + STATE(1529), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45131] = 5, + [43430] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1680), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(3731), 4, + ACTIONS(3470), 1, anon_sym_COMMA, - anon_sym_EQ, + STATE(1495), 1, + aux_sym__cond_repeat1, + ACTIONS(3600), 2, anon_sym_RPAREN, anon_sym_SEMI, - [45152] = 5, + STATE(1530), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + [43455] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1681), 3, + ACTIONS(3602), 1, + anon_sym_LBRACE, + ACTIONS(3604), 1, + anon_sym_if, + STATE(367), 1, + sym_compound_stmt, + STATE(372), 1, + sym_if_stmt, + STATE(1531), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3733), 4, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_SEMI, - [45173] = 8, + [43482] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3682), 1, + ACTIONS(2924), 1, sym_ident, - STATE(1356), 1, - sym_path_ident, - STATE(1537), 1, - sym_module_resolution, - STATE(1752), 1, + ACTIONS(3237), 1, + sym_type_ident, + STATE(1349), 1, aux_sym__module_path, - STATE(1682), 3, + STATE(1421), 1, + sym_module_resolution, + STATE(1532), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45200] = 8, + [43509] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3682), 1, - sym_ident, - STATE(1359), 1, - sym_path_ident, - STATE(1537), 1, - sym_module_resolution, - STATE(1752), 1, - aux_sym__module_path, - STATE(1683), 3, + ACTIONS(3606), 1, + anon_sym_LBRACE, + ACTIONS(3608), 1, + anon_sym_if, + STATE(539), 1, + sym_compound_stmt, + STATE(540), 1, + sym_if_stmt, + STATE(1533), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45227] = 7, + [43536] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2989), 1, - anon_sym_EQ, - STATE(1753), 1, - sym__assign_right_expr, - ACTIONS(3551), 2, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(1684), 3, + ACTIONS(2968), 1, + sym_const_ident, + ACTIONS(3440), 1, + anon_sym_LPAREN, + STATE(91), 1, + sym_paren_cond, + STATE(1867), 1, + sym_label, + STATE(1534), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45252] = 5, + [43563] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1685), 3, + ACTIONS(2968), 1, + sym_const_ident, + ACTIONS(3572), 1, + anon_sym_LPAREN, + STATE(105), 1, + sym_for_cond, + STATE(1798), 1, + sym_label, + STATE(1535), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3735), 4, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_SEMI, - [45273] = 8, + [43590] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3737), 1, + ACTIONS(3154), 1, anon_sym_LBRACE, - ACTIONS(3739), 1, - anon_sym_if, - STATE(724), 1, - sym_if_stmt, - STATE(751), 1, - sym_compound_stmt, - STATE(1686), 3, + ACTIONS(3156), 1, + anon_sym_DOT, + ACTIONS(3610), 1, + anon_sym_COLON, + STATE(1009), 1, + sym_initializer_list, + STATE(1536), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45300] = 8, + [43617] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1220), 1, - anon_sym_RPAREN, - ACTIONS(1222), 1, - anon_sym_SEMI, - ACTIONS(3741), 1, - anon_sym_COMMA, - STATE(1585), 1, - aux_sym_enum_arg_repeat1, - STATE(1687), 3, + ACTIONS(2968), 1, + sym_const_ident, + ACTIONS(3574), 1, + anon_sym_LPAREN, + STATE(103), 1, + sym_foreach_cond, + STATE(1800), 1, + sym_label, + STATE(1537), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45327] = 7, + [43644] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3743), 1, - anon_sym_RBRACK, - STATE(1379), 1, - sym__additive_op, - ACTIONS(3745), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1688), 3, + ACTIONS(2968), 1, + sym_const_ident, + ACTIONS(3440), 1, + anon_sym_LPAREN, + STATE(101), 1, + sym_paren_cond, + STATE(1801), 1, + sym_label, + STATE(1538), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45352] = 7, + [43671] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2760), 1, - anon_sym_QMARK_COLON, - ACTIONS(2762), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3747), 2, + ACTIONS(3612), 1, anon_sym_COMMA, + STATE(1495), 1, + aux_sym__cond_repeat1, + ACTIONS(3614), 2, anon_sym_RPAREN, - STATE(1689), 3, + anon_sym_SEMI, + STATE(1539), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45377] = 8, + [43696] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2626), 1, - anon_sym_QMARK_COLON, - ACTIONS(2628), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3749), 1, + ACTIONS(3503), 1, + anon_sym_AMP_AMP, + STATE(1497), 1, + aux_sym__try_unwrap_chain_repeat1, + ACTIONS(3616), 2, + anon_sym_RPAREN, anon_sym_SEMI, - ACTIONS(3751), 1, - anon_sym_COLON, - STATE(1690), 3, + STATE(1540), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45404] = 7, + [43721] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3753), 1, - anon_sym_RPAREN, - ACTIONS(3755), 1, - anon_sym_AMP_AMP, - STATE(1776), 1, - aux_sym__try_unwrap_chain_repeat1, - STATE(1691), 3, + ACTIONS(2286), 1, + anon_sym_LBRACE, + ACTIONS(2968), 1, + sym_const_ident, + STATE(1803), 1, + sym_label, + STATE(1868), 1, + sym_compound_stmt, + STATE(1541), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45428] = 7, + [43748] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2626), 1, - anon_sym_QMARK_COLON, - ACTIONS(2628), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3757), 1, - anon_sym_SEMI, - STATE(1692), 3, + STATE(1542), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45452] = 7, + ACTIONS(1701), 4, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_LBRACE, + [43769] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2989), 1, - anon_sym_EQ, - ACTIONS(3759), 1, - anon_sym_SEMI, - STATE(2221), 1, - sym__assign_right_expr, - STATE(1693), 3, + ACTIONS(3154), 1, + anon_sym_LBRACE, + ACTIONS(3156), 1, + anon_sym_DOT, + ACTIONS(3618), 1, + sym_ident, + STATE(1009), 1, + sym_initializer_list, + STATE(1543), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45476] = 6, + [43796] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, - anon_sym_RBRACE, - ACTIONS(3761), 2, - sym_ident, - anon_sym_int, - STATE(1694), 3, + ACTIONS(3382), 1, + anon_sym_DOLLARcase, + ACTIONS(3384), 1, + anon_sym_DOLLARdefault, + STATE(1426), 1, + aux_sym__ct_switch_body, + STATE(1692), 1, + sym_ct_case_stmt, + STATE(1544), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45498] = 7, + [43823] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3765), 1, - anon_sym_COMMA, - ACTIONS(3767), 1, - anon_sym_SEMI, - STATE(1711), 1, - aux_sym_asm_stmt_repeat1, - STATE(1695), 3, + ACTIONS(3382), 1, + anon_sym_DOLLARcase, + ACTIONS(3384), 1, + anon_sym_DOLLARdefault, + STATE(1445), 1, + aux_sym__ct_switch_body, + STATE(1692), 1, + sym_ct_case_stmt, + STATE(1545), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45522] = 7, + [43850] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2626), 1, - anon_sym_QMARK_COLON, - ACTIONS(2628), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3769), 1, - anon_sym_GT_RBRACK, - STATE(1696), 3, + ACTIONS(3154), 1, + anon_sym_LBRACE, + ACTIONS(3156), 1, + anon_sym_DOT, + ACTIONS(3620), 1, + sym_ident, + STATE(1009), 1, + sym_initializer_list, + STATE(1546), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45546] = 7, + [43877] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2626), 1, - anon_sym_QMARK_COLON, - ACTIONS(2628), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3771), 1, - anon_sym_RBRACK, - STATE(1697), 3, + ACTIONS(2286), 1, + anon_sym_LBRACE, + ACTIONS(3622), 1, + anon_sym_EQ_GT, + STATE(984), 1, + sym_implies_body, + STATE(986), 1, + sym_compound_stmt, + STATE(1547), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45570] = 7, + [43904] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2760), 1, - anon_sym_QMARK_COLON, - ACTIONS(2762), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3773), 1, - anon_sym_RPAREN, - STATE(1698), 3, + ACTIONS(3154), 1, + anon_sym_LBRACE, + ACTIONS(3156), 1, + anon_sym_DOT, + ACTIONS(3624), 1, + anon_sym_SEMI, + STATE(1009), 1, + sym_initializer_list, + STATE(1548), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45594] = 5, + [43931] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3775), 3, - anon_sym_DOLLARcase, - anon_sym_DOLLARdefault, - anon_sym_DOLLARendswitch, - STATE(1699), 3, + ACTIONS(3148), 1, + sym_ident, + ACTIONS(3150), 1, + sym_ct_ident, + STATE(1690), 1, + sym_local_decl_after_type, + STATE(1931), 1, + sym__decl_statement_after_type, + STATE(1549), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45614] = 5, + [43958] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3777), 3, + ACTIONS(3626), 1, + anon_sym_LPAREN, + STATE(1729), 1, + sym_ct_switch_cond, + ACTIONS(3628), 2, anon_sym_DOLLARcase, anon_sym_DOLLARdefault, - anon_sym_DOLLARendswitch, - STATE(1700), 3, + STATE(1550), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45634] = 7, + [43983] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2760), 1, - anon_sym_QMARK_COLON, - ACTIONS(2762), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3779), 1, + ACTIONS(3630), 1, + anon_sym_COMMA, + ACTIONS(3633), 2, anon_sym_RPAREN, - STATE(1701), 3, + anon_sym_SEMI, + STATE(1551), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [45658] = 7, + aux_sym_assert_stmt_repeat1, + [44006] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1234), 1, - anon_sym_RBRACE, - ACTIONS(3781), 1, - anon_sym_COMMA, - STATE(1856), 1, - aux_sym_enum_arg_repeat1, - STATE(1702), 3, + ACTIONS(2286), 1, + anon_sym_LBRACE, + ACTIONS(2968), 1, + sym_const_ident, + STATE(1724), 1, + sym_label, + STATE(1726), 1, + sym_compound_stmt, + STATE(1552), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45682] = 5, + [44033] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3783), 3, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - STATE(1703), 3, + ACTIONS(2968), 1, + sym_const_ident, + ACTIONS(3440), 1, + anon_sym_LPAREN, + STATE(126), 1, + sym_paren_cond, + STATE(1723), 1, + sym_label, + STATE(1553), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45702] = 6, + [44060] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3785), 1, - anon_sym_COMMA, - ACTIONS(3788), 1, - anon_sym_RPAREN, - STATE(1704), 4, + ACTIONS(2968), 1, + sym_const_ident, + ACTIONS(3574), 1, + anon_sym_LPAREN, + STATE(127), 1, + sym_foreach_cond, + STATE(1722), 1, + sym_label, + STATE(1554), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_catch_unwrap_list_repeat1, - [45724] = 7, + [44087] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2808), 1, - anon_sym_COMMA, - ACTIONS(3790), 1, - anon_sym_RPAREN, - STATE(1782), 1, - aux_sym_assert_stmt_repeat1, - STATE(1705), 3, + ACTIONS(2968), 1, + sym_const_ident, + ACTIONS(3572), 1, + anon_sym_LPAREN, + STATE(129), 1, + sym_for_cond, + STATE(1718), 1, + sym_label, + STATE(1555), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45748] = 7, + [44114] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2989), 1, - anon_sym_EQ, - ACTIONS(3792), 1, - anon_sym_SEMI, - STATE(2206), 1, - sym__assign_right_expr, - STATE(1706), 3, + ACTIONS(2968), 1, + sym_const_ident, + ACTIONS(3440), 1, + anon_sym_LPAREN, + STATE(64), 1, + sym_paren_cond, + STATE(1717), 1, + sym_label, + STATE(1556), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45772] = 7, + [44141] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2760), 1, - anon_sym_QMARK_COLON, - ACTIONS(2762), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3794), 1, - anon_sym_RPAREN, - STATE(1707), 3, + STATE(1557), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45796] = 7, + ACTIONS(3635), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + [44162] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2626), 1, - anon_sym_QMARK_COLON, - ACTIONS(2628), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3796), 1, - anon_sym_RBRACK, - STATE(1708), 3, + ACTIONS(2924), 1, + sym_ident, + ACTIONS(3225), 1, + sym_type_ident, + STATE(1349), 1, + aux_sym__module_path, + STATE(1421), 1, + sym_module_resolution, + STATE(1558), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45820] = 6, + [44189] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3800), 1, - anon_sym_RBRACE, - ACTIONS(3798), 2, - sym_ident, - anon_sym_int, - STATE(1709), 3, + ACTIONS(3637), 1, + anon_sym_EQ, + ACTIONS(3360), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(1559), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45842] = 7, + [44212] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2626), 1, - anon_sym_QMARK_COLON, - ACTIONS(2628), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3802), 1, - anon_sym_GT_RBRACK, - STATE(1710), 3, + ACTIONS(2968), 1, + sym_const_ident, + ACTIONS(3440), 1, + anon_sym_LPAREN, + STATE(75), 1, + sym_paren_cond, + STATE(1809), 1, + sym_label, + STATE(1560), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45866] = 6, + [44239] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3804), 1, - anon_sym_COMMA, - ACTIONS(3807), 1, - anon_sym_SEMI, - STATE(1711), 4, + ACTIONS(2968), 1, + sym_const_ident, + ACTIONS(3572), 1, + anon_sym_LPAREN, + STATE(116), 1, + sym_for_cond, + STATE(1828), 1, + sym_label, + STATE(1561), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_asm_stmt_repeat1, - [45888] = 7, + [44266] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3809), 1, - sym_at_ident, - ACTIONS(3811), 1, + ACTIONS(2968), 1, + sym_const_ident, + ACTIONS(3574), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, - anon_sym_LBRACE, - STATE(1712), 3, + STATE(118), 1, + sym_foreach_cond, + STATE(1829), 1, + sym_label, + STATE(1562), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45912] = 5, + [44293] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3815), 3, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - STATE(1713), 3, + STATE(1563), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45932] = 7, + ACTIONS(3639), 4, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_LBRACE, + [44314] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2808), 1, - anon_sym_COMMA, - ACTIONS(3817), 1, - anon_sym_RPAREN, - STATE(1782), 1, - aux_sym_assert_stmt_repeat1, - STATE(1714), 3, + ACTIONS(2968), 1, + sym_const_ident, + ACTIONS(3440), 1, + anon_sym_LPAREN, + STATE(121), 1, + sym_paren_cond, + STATE(1832), 1, + sym_label, + STATE(1564), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45956] = 7, + [44341] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2760), 1, - anon_sym_QMARK_COLON, - ACTIONS(2762), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3819), 1, - anon_sym_RPAREN, - STATE(1715), 3, + ACTIONS(2286), 1, + anon_sym_LBRACE, + ACTIONS(2968), 1, + sym_const_ident, + STATE(1807), 1, + sym_compound_stmt, + STATE(1836), 1, + sym_label, + STATE(1565), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45980] = 6, + [44368] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3821), 1, - anon_sym_COMMA, - ACTIONS(3824), 1, - anon_sym_RPAREN, - STATE(1716), 4, + ACTIONS(3382), 1, + anon_sym_DOLLARcase, + ACTIONS(3384), 1, + anon_sym_DOLLARdefault, + STATE(1443), 1, + aux_sym__ct_switch_body, + STATE(1692), 1, + sym_ct_case_stmt, + STATE(1566), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym__cond_repeat1, - [46002] = 7, + [44395] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2989), 1, - anon_sym_EQ, - ACTIONS(3826), 1, + ACTIONS(3154), 1, + anon_sym_LBRACE, + ACTIONS(3156), 1, + anon_sym_DOT, + ACTIONS(3641), 1, anon_sym_SEMI, - STATE(2340), 1, - sym__assign_right_expr, - STATE(1717), 3, + STATE(1009), 1, + sym_initializer_list, + STATE(1567), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46026] = 5, + [44422] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3828), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(1718), 3, + ACTIONS(3148), 1, + sym_ident, + ACTIONS(3150), 1, + sym_ct_ident, + STATE(1690), 1, + sym_local_decl_after_type, + STATE(2008), 1, + sym__decl_statement_after_type, + STATE(1568), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46046] = 7, + [44449] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3830), 1, - sym_at_ident, - ACTIONS(3832), 1, - anon_sym_LPAREN, - ACTIONS(3834), 1, - anon_sym_LBRACE, - STATE(1719), 3, + ACTIONS(2924), 1, + sym_ident, + ACTIONS(3643), 1, + sym_type_ident, + STATE(1349), 1, + aux_sym__module_path, + STATE(1421), 1, + sym_module_resolution, + STATE(1569), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + [44476] = 8, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(3568), 1, + sym_ident, + STATE(1255), 1, + sym_path_ident, + STATE(1421), 1, + sym_module_resolution, + STATE(1675), 1, + aux_sym__module_path, + STATE(1570), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46070] = 7, + [44503] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3836), 1, - sym_at_ident, - ACTIONS(3838), 1, - anon_sym_LPAREN, - ACTIONS(3840), 1, - anon_sym_LBRACE, - STATE(1720), 3, + ACTIONS(3568), 1, + sym_ident, + STATE(1246), 1, + sym_path_ident, + STATE(1421), 1, + sym_module_resolution, + STATE(1675), 1, + aux_sym__module_path, + STATE(1571), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46094] = 6, + [44530] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3842), 1, - anon_sym_RPAREN, - ACTIONS(3844), 1, - anon_sym_AMP_AMP, - STATE(1721), 4, + ACTIONS(3476), 1, + anon_sym_fn, + ACTIONS(3645), 1, + anon_sym_RBRACE, + STATE(1467), 1, + aux_sym_interface_body_repeat1, + STATE(1767), 1, + sym_func_declaration, + STATE(1572), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym__try_unwrap_chain_repeat1, - [46116] = 7, + [44557] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3847), 1, - anon_sym_COMMA, - ACTIONS(3849), 1, - anon_sym_RPAREN, - STATE(1878), 1, - aux_sym_attribute_param_list_repeat1, - STATE(1722), 3, + STATE(1573), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46140] = 5, + ACTIONS(3647), 4, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_SEMI, + [44578] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3851), 3, + ACTIONS(3154), 1, + anon_sym_LBRACE, + ACTIONS(3156), 1, + anon_sym_DOT, + ACTIONS(3649), 1, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - STATE(1723), 3, + STATE(1009), 1, + sym_initializer_list, + STATE(1574), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46160] = 7, + [44605] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2626), 1, - anon_sym_QMARK_COLON, - ACTIONS(2628), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3853), 1, - anon_sym_SEMI, - STATE(1724), 3, + STATE(1575), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46184] = 7, + ACTIONS(3651), 4, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_SEMI, + [44626] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2830), 1, - anon_sym_COMMA, - ACTIONS(3855), 1, - anon_sym_GT_RPAREN, - STATE(1880), 1, - aux_sym__generic_arg_list_repeat1, - STATE(1725), 3, + STATE(1576), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46208] = 7, + ACTIONS(3653), 4, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_SEMI, + [44647] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3857), 1, - sym_const_ident, - ACTIONS(3859), 1, + ACTIONS(3655), 1, + anon_sym_COMMA, + ACTIONS(3658), 2, + anon_sym_RPAREN, anon_sym_SEMI, - STATE(2354), 1, - sym_label_target, - STATE(1726), 3, + STATE(1577), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [46232] = 7, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + aux_sym__parameters_repeat1, + [44670] = 8, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3857), 1, - sym_const_ident, - ACTIONS(3861), 1, - anon_sym_SEMI, - STATE(2362), 1, - sym_label_target, - STATE(1727), 3, + ACTIONS(3528), 1, + sym_escape_sequence, + ACTIONS(3532), 1, + aux_sym_string_literal_token1, + ACTIONS(3534), 1, + aux_sym_line_comment_token1, + ACTIONS(3536), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(3660), 1, + anon_sym_DQUOTE, + STATE(1516), 1, + aux_sym_string_literal_repeat1, + STATE(1578), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46256] = 7, + [44697] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2830), 1, - anon_sym_COMMA, - ACTIONS(3863), 1, - anon_sym_GT_RPAREN, - STATE(1880), 1, - aux_sym__generic_arg_list_repeat1, - STATE(1728), 3, + STATE(1579), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46280] = 7, + ACTIONS(3662), 4, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_SEMI, + [44718] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2808), 1, - anon_sym_COMMA, - ACTIONS(3865), 1, - anon_sym_RPAREN, - STATE(1782), 1, - aux_sym_assert_stmt_repeat1, - STATE(1729), 3, + STATE(1580), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46304] = 7, + ACTIONS(3664), 4, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_SEMI, + [44739] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3867), 1, + ACTIONS(3666), 3, anon_sym_COMMA, - ACTIONS(3869), 1, - anon_sym_GT_RPAREN, - STATE(1861), 1, - aux_sym_generic_module_parameters_repeat1, - STATE(1730), 3, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(1581), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46328] = 7, + [44759] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2760), 1, - anon_sym_QMARK_COLON, - ACTIONS(2762), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3871), 1, + ACTIONS(3668), 3, + anon_sym_COMMA, + anon_sym_LPAREN_LT, anon_sym_RPAREN, - STATE(1731), 3, + STATE(1582), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46352] = 7, + [44779] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2989), 1, + ACTIONS(2942), 1, anon_sym_EQ, - ACTIONS(3873), 1, + ACTIONS(3670), 1, anon_sym_SEMI, - STATE(2369), 1, + STATE(1964), 1, sym__assign_right_expr, - STATE(1732), 3, + STATE(1583), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46376] = 6, + [44803] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(2267), 1, - sym__additive_op, - ACTIONS(3252), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1733), 3, + ACTIONS(3672), 1, + anon_sym_COMMA, + ACTIONS(3675), 1, + anon_sym_RPAREN, + STATE(1584), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [46398] = 5, + aux_sym_attribute_param_list_repeat1, + [44825] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3875), 3, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - STATE(1734), 3, + ACTIONS(2348), 1, + anon_sym_COLON_COLON, + ACTIONS(3677), 1, + anon_sym_COMMA, + ACTIONS(3679), 1, + anon_sym_COLON, + STATE(1585), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46418] = 7, + [44849] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2626), 1, - anon_sym_QMARK_COLON, - ACTIONS(2628), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3877), 1, - anon_sym_SEMI, - STATE(1735), 3, + ACTIONS(3681), 1, + anon_sym_COMMA, + ACTIONS(3684), 1, + anon_sym_GT_RPAREN, + STATE(1586), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [46442] = 7, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + aux_sym_generic_module_parameters_repeat1, + [44871] = 6, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2626), 1, - anon_sym_QMARK_COLON, - ACTIONS(2628), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3879), 1, - anon_sym_SEMI, - STATE(1736), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [46466] = 7, - ACTIONS(3), 1, + ACTIONS(3534), 1, aux_sym_line_comment_token1, - ACTIONS(5), 1, + ACTIONS(3536), 1, anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(3881), 1, - sym_at_ident, - ACTIONS(3883), 1, - anon_sym_LPAREN, - ACTIONS(3885), 1, - anon_sym_LBRACE, - STATE(1737), 3, + ACTIONS(3688), 1, + aux_sym_string_literal_token1, + ACTIONS(3686), 2, + sym_escape_sequence, + anon_sym_DQUOTE, + STATE(1587), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46490] = 7, + [44893] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3630), 1, + ACTIONS(3690), 3, anon_sym_COMMA, - ACTIONS(3887), 1, + anon_sym_LPAREN_LT, anon_sym_RPAREN, - STATE(1704), 1, - aux_sym_catch_unwrap_list_repeat1, - STATE(1738), 3, + STATE(1588), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46514] = 5, + [44913] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2748), 3, + ACTIONS(3694), 1, + anon_sym_RBRACE, + ACTIONS(3692), 2, sym_ident, - sym_ct_ident, - sym_const_ident, - STATE(1739), 3, + anon_sym_int, + STATE(1589), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46534] = 7, + [44935] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3606), 1, - anon_sym_RPAREN, - ACTIONS(3889), 1, + ACTIONS(3658), 3, anon_sym_COMMA, - STATE(1868), 1, - aux_sym__parameters_repeat1, - STATE(1740), 3, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(1590), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46558] = 6, + [44955] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3891), 1, + ACTIONS(3696), 1, anon_sym_COMMA, - ACTIONS(3894), 1, - anon_sym_RPAREN, - STATE(1741), 4, + ACTIONS(3698), 1, + anon_sym_RBRACE, + STATE(1689), 1, + aux_sym_enum_arg_repeat1, + STATE(1591), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_enum_param_list_repeat1, - [46580] = 7, + [44979] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2808), 1, + ACTIONS(3700), 1, anon_sym_COMMA, - ACTIONS(3896), 1, - anon_sym_RPAREN, - STATE(1782), 1, - aux_sym_assert_stmt_repeat1, - STATE(1742), 3, + ACTIONS(3703), 1, + anon_sym_SEMI, + STATE(1592), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [46604] = 6, + aux_sym_asm_stmt_repeat1, + [45001] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(2323), 1, - sym__func_macro_name, - ACTIONS(2636), 2, - sym_ident, - sym_at_ident, - STATE(1743), 3, + ACTIONS(3705), 3, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + STATE(1593), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46626] = 7, + [45021] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2626), 1, - anon_sym_QMARK_COLON, - ACTIONS(2628), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3898), 1, - anon_sym_SEMI, - STATE(1744), 3, + ACTIONS(3707), 1, + sym_const_ident, + ACTIONS(3709), 1, + anon_sym_RBRACE, + STATE(1671), 1, + sym_enum_constant, + STATE(1594), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46650] = 7, + [45045] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2760), 1, - anon_sym_QMARK_COLON, - ACTIONS(2762), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3900), 1, - anon_sym_RPAREN, - STATE(1745), 3, + ACTIONS(3711), 1, + sym_ident, + ACTIONS(3713), 1, + sym_ct_ident, + ACTIONS(3715), 1, + sym_ct_type_ident, + STATE(1595), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46674] = 7, + [45069] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2989), 1, - anon_sym_EQ, - ACTIONS(3902), 1, + ACTIONS(3717), 1, + sym_const_ident, + ACTIONS(3719), 1, anon_sym_SEMI, - STATE(2220), 1, - sym__assign_right_expr, - STATE(1746), 3, + STATE(2113), 1, + sym_label_target, + STATE(1596), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46698] = 5, + [45093] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3904), 3, - anon_sym_COMMA, - anon_sym_LPAREN_LT, + ACTIONS(3721), 3, anon_sym_RPAREN, - STATE(1747), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [46718] = 7, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(3906), 1, - sym_at_ident, - ACTIONS(3908), 1, - anon_sym_LPAREN, - ACTIONS(3910), 1, - anon_sym_LBRACE, - STATE(1748), 3, + anon_sym_SEMI, + anon_sym_AMP_AMP, + STATE(1597), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46742] = 7, + [45113] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3912), 1, + ACTIONS(3723), 1, anon_sym_COMMA, - ACTIONS(3914), 1, + ACTIONS(3726), 1, anon_sym_RPAREN, - STATE(1875), 1, - aux_sym_interface_impl_repeat1, - STATE(1749), 3, + STATE(1598), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [46766] = 7, + aux_sym_interface_impl_repeat1, + [45135] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3916), 1, - anon_sym_COMMA, - ACTIONS(3918), 1, - anon_sym_RBRACE, - STATE(1702), 1, - aux_sym_enum_arg_repeat1, - STATE(1750), 3, + ACTIONS(2942), 1, + anon_sym_EQ, + ACTIONS(3728), 1, + anon_sym_SEMI, + STATE(1915), 1, + sym__assign_right_expr, + STATE(1599), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46790] = 6, + [45159] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3920), 1, - anon_sym_COMMA, - ACTIONS(3923), 1, + ACTIONS(3717), 1, + sym_const_ident, + ACTIONS(3730), 1, anon_sym_SEMI, - STATE(1751), 4, + STATE(2112), 1, + sym_label_target, + STATE(1600), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym__decl_statement_after_type_repeat1, - [46812] = 7, + [45183] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3925), 1, - sym_ident, - STATE(1450), 1, - aux_sym__module_path, - STATE(1537), 1, - sym_module_resolution, - STATE(1752), 3, + STATE(1936), 1, + sym__additive_op, + ACTIONS(3188), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1601), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46836] = 5, + [45205] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3927), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3717), 1, + sym_const_ident, + ACTIONS(3732), 1, anon_sym_SEMI, - STATE(1753), 3, + STATE(1893), 1, + sym_label_target, + STATE(1602), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46856] = 7, + [45229] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2989), 1, - anon_sym_EQ, - ACTIONS(3929), 1, - anon_sym_SEMI, - STATE(2291), 1, - sym__assign_right_expr, - STATE(1754), 3, + ACTIONS(3734), 1, + sym_at_ident, + ACTIONS(3736), 1, + anon_sym_LPAREN, + ACTIONS(3738), 1, + anon_sym_LBRACE, + STATE(1603), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46880] = 7, + [45253] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3931), 1, - anon_sym_COMMA, - ACTIONS(3933), 1, - anon_sym_RBRACE, - STATE(1818), 1, - aux_sym_fault_body_repeat1, - STATE(1755), 3, + ACTIONS(3717), 1, + sym_const_ident, + ACTIONS(3740), 1, + anon_sym_SEMI, + STATE(2060), 1, + sym_label_target, + STATE(1604), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46904] = 5, + [45277] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3935), 3, - anon_sym_DOLLARcase, - anon_sym_DOLLARdefault, - anon_sym_DOLLARendswitch, - STATE(1756), 3, + ACTIONS(2942), 1, + anon_sym_EQ, + ACTIONS(3742), 1, + anon_sym_SEMI, + STATE(1947), 1, + sym__assign_right_expr, + STATE(1605), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46924] = 7, + [45301] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3937), 1, + ACTIONS(3744), 1, anon_sym_COMMA, - ACTIONS(3939), 1, + ACTIONS(3747), 1, anon_sym_RBRACE, - STATE(1865), 1, - aux_sym_enum_body_repeat1, - STATE(1757), 3, + STATE(1606), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [46948] = 7, + aux_sym_fault_body_repeat1, + [45323] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3941), 1, + ACTIONS(3749), 3, anon_sym_COMMA, - ACTIONS(3943), 1, + anon_sym_RPAREN, anon_sym_SEMI, - STATE(1815), 1, - aux_sym__cond_repeat1, - STATE(1758), 3, + STATE(1607), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46972] = 7, + [45343] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3765), 1, + ACTIONS(3666), 3, anon_sym_COMMA, - ACTIONS(3945), 1, + anon_sym_RPAREN, anon_sym_SEMI, - STATE(1695), 1, - aux_sym_asm_stmt_repeat1, - STATE(1759), 3, + STATE(1608), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46996] = 7, + [45363] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2808), 1, + ACTIONS(2515), 1, anon_sym_COMMA, - ACTIONS(3947), 1, + ACTIONS(3751), 1, anon_sym_RPAREN, - STATE(1782), 1, + STATE(1551), 1, aux_sym_assert_stmt_repeat1, - STATE(1760), 3, + STATE(1609), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47020] = 7, + [45387] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3539), 1, - sym_ident, - ACTIONS(3541), 1, - sym_ct_ident, - STATE(1774), 1, - sym_local_decl_after_type, - STATE(1761), 3, + ACTIONS(2515), 1, + anon_sym_COMMA, + ACTIONS(3753), 1, + anon_sym_RPAREN, + STATE(1551), 1, + aux_sym_assert_stmt_repeat1, + STATE(1610), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47044] = 6, + [45411] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3951), 1, - anon_sym_RBRACE, - ACTIONS(3949), 2, - sym_ident, - anon_sym_int, - STATE(1762), 3, + ACTIONS(3154), 1, + anon_sym_LBRACE, + ACTIONS(3156), 1, + anon_sym_DOT, + STATE(1009), 1, + sym_initializer_list, + STATE(1611), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47066] = 7, + [45435] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2760), 1, - anon_sym_QMARK_COLON, - ACTIONS(2762), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3953), 1, - anon_sym_RPAREN, - STATE(1763), 3, + ACTIONS(2942), 1, + anon_sym_EQ, + ACTIONS(3755), 1, + anon_sym_SEMI, + STATE(2178), 1, + sym__assign_right_expr, + STATE(1612), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47090] = 7, + [45459] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3955), 1, - anon_sym_COMMA, - ACTIONS(3957), 1, - anon_sym_RPAREN, - STATE(1797), 1, - aux_sym__cond_repeat1, - STATE(1764), 3, + STATE(2127), 1, + sym__func_macro_name, + ACTIONS(2753), 2, + sym_ident, + sym_at_ident, + STATE(1613), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47114] = 7, + [45481] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3959), 1, - anon_sym_COMMA, - ACTIONS(3961), 1, + ACTIONS(3717), 1, + sym_const_ident, + ACTIONS(3757), 1, anon_sym_SEMI, - STATE(1758), 1, - aux_sym__cond_repeat1, - STATE(1765), 3, + STATE(1969), 1, + sym_label_target, + STATE(1614), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47138] = 7, + [45505] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3753), 1, - anon_sym_SEMI, - ACTIONS(3963), 1, - anon_sym_AMP_AMP, - STATE(1791), 1, - aux_sym__try_unwrap_chain_repeat1, - STATE(1766), 3, + ACTIONS(3759), 1, + anon_sym_COMMA, + ACTIONS(3761), 1, + anon_sym_RPAREN, + STATE(1682), 1, + aux_sym_ct_exec_stmt_repeat1, + STATE(1615), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47162] = 7, + [45529] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3857), 1, + ACTIONS(3717), 1, sym_const_ident, - ACTIONS(3965), 1, + ACTIONS(3763), 1, anon_sym_SEMI, - STATE(2158), 1, + STATE(1970), 1, sym_label_target, - STATE(1767), 3, + STATE(1616), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47186] = 7, + [45553] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3857), 1, - sym_const_ident, - ACTIONS(3967), 1, + ACTIONS(2942), 1, + anon_sym_EQ, + ACTIONS(3765), 1, anon_sym_SEMI, - STATE(2164), 1, - sym_label_target, - STATE(1768), 3, + STATE(2062), 1, + sym__assign_right_expr, + STATE(1617), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47210] = 7, + [45577] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3969), 1, - sym_ident, - ACTIONS(3971), 1, - sym_ct_ident, - ACTIONS(3973), 1, - sym_ct_type_ident, - STATE(1769), 3, + ACTIONS(1213), 1, + anon_sym_RBRACE, + ACTIONS(3767), 1, + anon_sym_COMMA, + STATE(1444), 1, + aux_sym_enum_arg_repeat1, + STATE(1618), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47234] = 7, + [45601] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3975), 1, - anon_sym_COMMA, - ACTIONS(3977), 1, + ACTIONS(3717), 1, + sym_const_ident, + ACTIONS(3769), 1, anon_sym_SEMI, - STATE(1815), 1, - aux_sym__cond_repeat1, - STATE(1770), 3, + STATE(2174), 1, + sym_label_target, + STATE(1619), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47258] = 7, + [45625] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3539), 1, - sym_ident, - ACTIONS(3541), 1, - sym_ct_ident, - STATE(1971), 1, - sym_local_decl_after_type, - STATE(1771), 3, + ACTIONS(3717), 1, + sym_const_ident, + ACTIONS(3771), 1, + anon_sym_SEMI, + STATE(2173), 1, + sym_label_target, + STATE(1620), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47282] = 6, + [45649] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(2249), 1, - sym__func_macro_name, - ACTIONS(2636), 2, - sym_ident, - sym_at_ident, - STATE(1772), 3, + ACTIONS(2942), 1, + anon_sym_EQ, + ACTIONS(3773), 1, + anon_sym_SEMI, + STATE(2055), 1, + sym__assign_right_expr, + STATE(1621), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47304] = 7, + [45673] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3979), 1, - sym_at_ident, - ACTIONS(3981), 1, + ACTIONS(2771), 1, anon_sym_LPAREN, - ACTIONS(3983), 1, - anon_sym_LBRACE, - STATE(1773), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [47328] = 5, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(3985), 3, - anon_sym_COMMA, + ACTIONS(3775), 1, anon_sym_RPAREN, - anon_sym_SEMI, - STATE(1774), 3, + STATE(2171), 1, + sym_fn_parameter_list, + STATE(1622), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47348] = 7, + [45697] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3943), 1, - anon_sym_RPAREN, - ACTIONS(3987), 1, + ACTIONS(3777), 1, anon_sym_COMMA, - STATE(1716), 1, - aux_sym__cond_repeat1, - STATE(1775), 3, + ACTIONS(3779), 1, + anon_sym_RPAREN, + STATE(1640), 1, + aux_sym_enum_param_list_repeat1, + STATE(1623), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47372] = 7, + [45721] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(3755), 1, - anon_sym_AMP_AMP, - ACTIONS(3989), 1, - anon_sym_RPAREN, - STATE(1721), 1, - aux_sym__try_unwrap_chain_repeat1, - STATE(1776), 3, + anon_sym_SLASH_STAR, + ACTIONS(3781), 1, + anon_sym_COMMA, + ACTIONS(3783), 1, + anon_sym_RBRACE, + STATE(1639), 1, + aux_sym_enum_body_repeat1, + STATE(1624), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47396] = 5, + [45745] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3991), 3, - anon_sym_RPAREN, + ACTIONS(2942), 1, + anon_sym_EQ, + ACTIONS(3785), 1, anon_sym_SEMI, - anon_sym_AMP_AMP, - STATE(1777), 3, + STATE(2047), 1, + sym__assign_right_expr, + STATE(1625), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47416] = 7, + [45769] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1232), 1, + ACTIONS(3707), 1, + sym_const_ident, + ACTIONS(3783), 1, anon_sym_RBRACE, - ACTIONS(3993), 1, - anon_sym_COMMA, - STATE(1856), 1, - aux_sym_enum_arg_repeat1, - STATE(1778), 3, + STATE(1827), 1, + sym_enum_constant, + STATE(1626), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47440] = 7, + [45793] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3973), 1, - sym_ct_type_ident, - ACTIONS(3995), 1, - sym_ident, - ACTIONS(3997), 1, - sym_ct_ident, - STATE(1779), 3, + ACTIONS(3707), 1, + sym_const_ident, + ACTIONS(3787), 1, + anon_sym_RBRACE, + STATE(1827), 1, + sym_enum_constant, + STATE(1627), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47464] = 7, + [45817] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2808), 1, + ACTIONS(3789), 1, anon_sym_COMMA, - ACTIONS(3999), 1, - anon_sym_RPAREN, - STATE(1782), 1, - aux_sym_assert_stmt_repeat1, - STATE(1780), 3, + ACTIONS(3791), 1, + anon_sym_RBRACE, + STATE(1606), 1, + aux_sym_fault_body_repeat1, + STATE(1628), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47488] = 5, + [45841] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4001), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2942), 1, + anon_sym_EQ, + ACTIONS(3793), 1, anon_sym_SEMI, - STATE(1781), 3, + STATE(1992), 1, + sym__assign_right_expr, + STATE(1629), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47508] = 6, + [45865] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4003), 1, + ACTIONS(3795), 1, anon_sym_COMMA, - ACTIONS(4006), 1, + ACTIONS(3797), 1, anon_sym_RPAREN, - STATE(1782), 4, + STATE(1670), 1, + aux_sym_attribute_param_list_repeat1, + STATE(1630), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_assert_stmt_repeat1, - [47530] = 7, + [45889] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4008), 1, + ACTIONS(3799), 1, anon_sym_COMMA, - ACTIONS(4010), 1, - anon_sym_RBRACE, - STATE(1778), 1, - aux_sym_enum_arg_repeat1, - STATE(1783), 3, + ACTIONS(3801), 1, + anon_sym_RPAREN, + STATE(1598), 1, + aux_sym_interface_impl_repeat1, + STATE(1631), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47554] = 6, + [45913] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4012), 1, - anon_sym_EQ, - ACTIONS(3258), 2, + ACTIONS(2535), 1, anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1784), 3, + ACTIONS(3803), 1, + anon_sym_GT_RPAREN, + STATE(1663), 1, + aux_sym__generic_arg_list_repeat1, + STATE(1632), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47576] = 7, + [45937] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2993), 1, - anon_sym_LPAREN, - ACTIONS(4014), 1, - anon_sym_COLON, - STATE(2234), 1, - sym_interface_impl, - STATE(1785), 3, + ACTIONS(2535), 1, + anon_sym_COMMA, + ACTIONS(3805), 1, + anon_sym_GT_RPAREN, + STATE(1663), 1, + aux_sym__generic_arg_list_repeat1, + STATE(1633), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47600] = 7, + [45961] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4016), 1, - anon_sym_COMMA, - ACTIONS(4018), 1, - anon_sym_RPAREN, - STATE(1741), 1, - aux_sym_enum_param_list_repeat1, - STATE(1786), 3, + ACTIONS(3807), 3, + anon_sym_DOLLARcase, + anon_sym_DOLLARdefault, + anon_sym_DOLLARendswitch, + STATE(1634), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47624] = 6, + [45981] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4020), 1, - anon_sym_COMMA, - ACTIONS(4023), 1, - anon_sym_RBRACE, - STATE(1787), 4, + ACTIONS(3809), 1, + sym_at_ident, + ACTIONS(3811), 1, + anon_sym_LPAREN, + ACTIONS(3813), 1, + anon_sym_LBRACE, + STATE(1635), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_enum_body_repeat1, - [47646] = 7, + [46005] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2626), 1, - anon_sym_QMARK_COLON, - ACTIONS(2628), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4025), 1, + ACTIONS(2942), 1, + anon_sym_EQ, + ACTIONS(3815), 1, anon_sym_SEMI, - STATE(1788), 3, + STATE(2142), 1, + sym__assign_right_expr, + STATE(1636), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47670] = 7, + [46029] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2989), 1, - anon_sym_EQ, - ACTIONS(4027), 1, - anon_sym_SEMI, - STATE(2154), 1, - sym__assign_right_expr, - STATE(1789), 3, + ACTIONS(3817), 3, + anon_sym_DOLLARcase, + anon_sym_DOLLARdefault, + anon_sym_DOLLARendswitch, + STATE(1637), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47694] = 7, + [46049] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4029), 1, - sym_const_ident, - ACTIONS(4031), 1, - anon_sym_RBRACE, - STATE(2016), 1, - sym_enum_constant, - STATE(1790), 3, + ACTIONS(3819), 1, + anon_sym_COMMA, + ACTIONS(3821), 1, + anon_sym_GT_RPAREN, + STATE(1658), 1, + aux_sym_generic_module_parameters_repeat1, + STATE(1638), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47718] = 7, + [46073] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3963), 1, - anon_sym_AMP_AMP, - ACTIONS(3989), 1, - anon_sym_SEMI, - STATE(1813), 1, - aux_sym__try_unwrap_chain_repeat1, - STATE(1791), 3, + ACTIONS(3823), 1, + anon_sym_COMMA, + ACTIONS(3826), 1, + anon_sym_RBRACE, + STATE(1639), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [47742] = 7, + aux_sym_enum_body_repeat1, + [46095] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2989), 1, - anon_sym_EQ, - ACTIONS(4033), 1, - anon_sym_SEMI, - STATE(2149), 1, - sym__assign_right_expr, - STATE(1792), 3, + ACTIONS(3777), 1, + anon_sym_COMMA, + ACTIONS(3828), 1, + anon_sym_RPAREN, + STATE(1683), 1, + aux_sym_enum_param_list_repeat1, + STATE(1640), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47766] = 7, + [46119] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2626), 1, - anon_sym_QMARK_COLON, - ACTIONS(2628), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4035), 1, + ACTIONS(3830), 3, + anon_sym_RPAREN, anon_sym_SEMI, - STATE(1793), 3, + anon_sym_AMP_AMP, + STATE(1641), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47790] = 7, + [46139] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2626), 1, - anon_sym_QMARK_COLON, - ACTIONS(2628), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4037), 1, + ACTIONS(3832), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - STATE(1794), 3, + STATE(1642), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47814] = 6, + [46159] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4039), 1, + ACTIONS(2515), 1, anon_sym_COMMA, - ACTIONS(4042), 1, - anon_sym_RBRACE, - STATE(1795), 4, + ACTIONS(3834), 1, + anon_sym_RPAREN, + STATE(1551), 1, + aux_sym_assert_stmt_repeat1, + STATE(1643), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_fault_body_repeat1, - [47836] = 6, + [46183] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4044), 1, - anon_sym_COMMA, - ACTIONS(4047), 1, - anon_sym_RPAREN, - STATE(1796), 4, + ACTIONS(2942), 1, + anon_sym_EQ, + ACTIONS(3836), 1, + anon_sym_SEMI, + STATE(1956), 1, + sym__assign_right_expr, + STATE(1644), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_interface_impl_repeat1, - [47858] = 7, + [46207] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3955), 1, + ACTIONS(2515), 1, anon_sym_COMMA, - ACTIONS(3977), 1, + ACTIONS(3838), 1, anon_sym_RPAREN, - STATE(1716), 1, - aux_sym__cond_repeat1, - STATE(1797), 3, + STATE(1551), 1, + aux_sym_assert_stmt_repeat1, + STATE(1645), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47882] = 7, + [46231] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2626), 1, - anon_sym_QMARK_COLON, - ACTIONS(2628), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4049), 1, + ACTIONS(3840), 1, + anon_sym_COMMA, + ACTIONS(3842), 1, anon_sym_SEMI, - STATE(1798), 3, + STATE(1592), 1, + aux_sym_asm_stmt_repeat1, + STATE(1646), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47906] = 6, + [46255] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3591), 1, + ACTIONS(3844), 3, anon_sym_RPAREN, - ACTIONS(4051), 1, - anon_sym_COMMA, - STATE(1799), 4, + anon_sym_SEMI, + anon_sym_AMP_AMP, + STATE(1647), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym__parameters_repeat1, - [47928] = 6, + [46275] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4054), 1, - anon_sym_COMMA, - ACTIONS(4057), 1, - anon_sym_GT_RPAREN, - STATE(1800), 4, + ACTIONS(2930), 1, + anon_sym_LPAREN, + ACTIONS(3846), 1, + anon_sym_COLON, + STATE(2205), 1, + sym_interface_impl, + STATE(1648), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_generic_module_parameters_repeat1, - [47950] = 6, + [46299] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4059), 1, - anon_sym_COMMA, - ACTIONS(4062), 1, - anon_sym_RPAREN, - STATE(1801), 4, + STATE(1988), 1, + sym__func_macro_name, + ACTIONS(2753), 2, + sym_ident, + sym_at_ident, + STATE(1649), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_attribute_param_list_repeat1, - [47972] = 7, + [46321] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2989), 1, - anon_sym_EQ, - ACTIONS(4064), 1, + ACTIONS(3717), 1, + sym_const_ident, + ACTIONS(3848), 1, anon_sym_SEMI, - STATE(2111), 1, - sym__assign_right_expr, - STATE(1802), 3, + STATE(1976), 1, + sym_label_target, + STATE(1650), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47996] = 7, + [46345] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3857), 1, + ACTIONS(3717), 1, sym_const_ident, - ACTIONS(4066), 1, + ACTIONS(3850), 1, anon_sym_SEMI, - STATE(2096), 1, + STATE(1977), 1, sym_label_target, - STATE(1803), 3, + STATE(1651), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48020] = 7, + [46369] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3857), 1, - sym_const_ident, - ACTIONS(4068), 1, - anon_sym_SEMI, - STATE(2095), 1, - sym_label_target, - STATE(1804), 3, + ACTIONS(3854), 1, + anon_sym_RBRACE, + ACTIONS(3852), 2, + sym_ident, + anon_sym_int, + STATE(1652), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48044] = 6, + [46391] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4070), 1, - anon_sym_COMMA, - ACTIONS(4073), 1, - anon_sym_RPAREN, - STATE(1805), 4, + ACTIONS(3858), 1, + anon_sym_RBRACE, + ACTIONS(3856), 2, + sym_ident, + anon_sym_int, + STATE(1653), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_ct_exec_stmt_repeat1, - [48066] = 7, + [46413] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2989), 1, + ACTIONS(2942), 1, anon_sym_EQ, - ACTIONS(4075), 1, + ACTIONS(3860), 1, anon_sym_SEMI, - STATE(2092), 1, + STATE(1980), 1, sym__assign_right_expr, - STATE(1806), 3, + STATE(1654), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48090] = 7, + [46437] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2626), 1, - anon_sym_QMARK_COLON, - ACTIONS(2628), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4077), 1, + ACTIONS(3862), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - STATE(1807), 3, + STATE(1655), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48114] = 7, + [46457] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2626), 1, - anon_sym_QMARK_COLON, - ACTIONS(2628), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4079), 1, + ACTIONS(3864), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - STATE(1808), 3, + STATE(1656), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48138] = 7, + [46477] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4081), 1, - anon_sym_COMMA, - ACTIONS(4083), 1, + ACTIONS(2942), 1, + anon_sym_EQ, + ACTIONS(3866), 1, anon_sym_SEMI, - STATE(1751), 1, - aux_sym__decl_statement_after_type_repeat1, - STATE(1809), 3, + STATE(2032), 1, + sym__assign_right_expr, + STATE(1657), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48162] = 7, + [46501] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2626), 1, - anon_sym_QMARK_COLON, - ACTIONS(2628), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4085), 1, - anon_sym_COLON, - STATE(1810), 3, + ACTIONS(3819), 1, + anon_sym_COMMA, + ACTIONS(3868), 1, + anon_sym_GT_RPAREN, + STATE(1586), 1, + aux_sym_generic_module_parameters_repeat1, + STATE(1658), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48186] = 6, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(3519), 1, + [46525] = 7, + ACTIONS(3), 1, aux_sym_line_comment_token1, - ACTIONS(3521), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, - ACTIONS(4089), 1, - aux_sym_string_literal_token1, - ACTIONS(4087), 2, - sym_escape_sequence, - anon_sym_DQUOTE, - STATE(1811), 3, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(3799), 1, + anon_sym_COMMA, + ACTIONS(3870), 1, + anon_sym_RPAREN, + STATE(1631), 1, + aux_sym_interface_impl_repeat1, + STATE(1659), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48208] = 7, + [46549] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3578), 1, - anon_sym_COMMA, - ACTIONS(3887), 1, - anon_sym_SEMI, - STATE(1823), 1, - aux_sym_catch_unwrap_list_repeat1, - STATE(1812), 3, + ACTIONS(3872), 1, + sym_type_ident, + ACTIONS(3874), 1, + sym_const_ident, + STATE(1880), 1, + sym__module_param, + STATE(1660), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48232] = 6, + [46573] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3842), 1, - anon_sym_SEMI, - ACTIONS(4091), 1, - anon_sym_AMP_AMP, - STATE(1813), 4, + ACTIONS(3876), 1, + sym_at_ident, + ACTIONS(3878), 1, + anon_sym_LPAREN, + ACTIONS(3880), 1, + anon_sym_LBRACE, + STATE(1661), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym__try_unwrap_chain_repeat1, - [48254] = 5, + [46597] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4094), 3, + ACTIONS(3882), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - STATE(1814), 3, + STATE(1662), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48274] = 6, + [46617] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3824), 1, - anon_sym_SEMI, - ACTIONS(4096), 1, + ACTIONS(3884), 1, anon_sym_COMMA, - STATE(1815), 4, + ACTIONS(3887), 1, + anon_sym_GT_RPAREN, + STATE(1663), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym__cond_repeat1, - [48296] = 5, + aux_sym__generic_arg_list_repeat1, + [46639] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4094), 3, + ACTIONS(3889), 1, anon_sym_COMMA, + ACTIONS(3892), 1, anon_sym_RPAREN, - anon_sym_SEMI, - STATE(1816), 3, + STATE(1664), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [48316] = 7, + aux_sym_ct_exec_stmt_repeat1, + [46661] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2626), 1, - anon_sym_QMARK_COLON, - ACTIONS(2628), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4099), 1, - anon_sym_COLON, - STATE(1817), 3, + ACTIONS(2942), 1, + anon_sym_EQ, + ACTIONS(3894), 1, + anon_sym_SEMI, + STATE(1955), 1, + sym__assign_right_expr, + STATE(1665), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48340] = 7, + [46685] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4101), 1, + ACTIONS(3896), 3, anon_sym_COMMA, - ACTIONS(4103), 1, - anon_sym_RBRACE, - STATE(1795), 1, - aux_sym_fault_body_repeat1, - STATE(1818), 3, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(1666), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48364] = 7, + [46705] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3260), 1, - anon_sym_LBRACE, - ACTIONS(3262), 1, - anon_sym_DOT, - STATE(1006), 1, - sym_initializer_list, - STATE(1819), 3, + ACTIONS(3898), 1, + anon_sym_COMMA, + ACTIONS(3900), 1, + anon_sym_RBRACE, + STATE(1628), 1, + aux_sym_fault_body_repeat1, + STATE(1667), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48388] = 7, + [46729] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2626), 1, - anon_sym_QMARK_COLON, - ACTIONS(2628), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4105), 1, + ACTIONS(2942), 1, + anon_sym_EQ, + ACTIONS(3902), 1, anon_sym_SEMI, - STATE(1820), 3, + STATE(2037), 1, + sym__assign_right_expr, + STATE(1668), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48412] = 7, + [46753] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2626), 1, - anon_sym_QMARK_COLON, - ACTIONS(2628), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4107), 1, + ACTIONS(3904), 3, + anon_sym_RPAREN, anon_sym_SEMI, - STATE(1821), 3, + anon_sym_AMP_AMP, + STATE(1669), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48436] = 6, + [46773] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(2185), 1, - sym__func_macro_name, - ACTIONS(2636), 2, - sym_ident, - sym_at_ident, - STATE(1822), 3, + ACTIONS(3795), 1, + anon_sym_COMMA, + ACTIONS(3906), 1, + anon_sym_RPAREN, + STATE(1584), 1, + aux_sym_attribute_param_list_repeat1, + STATE(1670), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48458] = 6, + [46797] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3788), 1, - anon_sym_SEMI, - ACTIONS(4109), 1, + ACTIONS(3908), 1, anon_sym_COMMA, - STATE(1823), 4, + ACTIONS(3910), 1, + anon_sym_RBRACE, + STATE(1624), 1, + aux_sym_enum_body_repeat1, + STATE(1671), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_catch_unwrap_list_repeat1, - [48480] = 7, + [46821] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2626), 1, - anon_sym_QMARK_COLON, - ACTIONS(2628), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4112), 1, - anon_sym_SEMI, - STATE(1824), 3, + ACTIONS(3914), 1, + anon_sym_EQ, + ACTIONS(3912), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1672), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48504] = 7, + [46843] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2760), 1, - anon_sym_QMARK_COLON, - ACTIONS(2762), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4114), 1, + ACTIONS(2515), 1, + anon_sym_COMMA, + ACTIONS(3916), 1, anon_sym_RPAREN, - STATE(1825), 3, + STATE(1551), 1, + aux_sym_assert_stmt_repeat1, + STATE(1673), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48528] = 6, + [46867] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4118), 1, - anon_sym_RBRACE, - ACTIONS(4116), 2, - sym_ident, - anon_sym_int, - STATE(1826), 3, + ACTIONS(3918), 3, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + STATE(1674), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48550] = 7, + [46887] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2760), 1, - anon_sym_QMARK_COLON, - ACTIONS(2762), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4120), 1, - anon_sym_RPAREN, - STATE(1827), 3, + ACTIONS(3920), 1, + sym_ident, + STATE(1349), 1, + aux_sym__module_path, + STATE(1421), 1, + sym_module_resolution, + STATE(1675), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48574] = 7, + [46911] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2219), 1, - anon_sym_COLON_COLON, - ACTIONS(4122), 1, + ACTIONS(3922), 3, anon_sym_COMMA, - ACTIONS(4124), 1, - anon_sym_COLON, - STATE(1828), 3, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(1676), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48598] = 7, + [46931] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2989), 1, - anon_sym_EQ, - ACTIONS(4126), 1, + ACTIONS(3922), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - STATE(2120), 1, - sym__assign_right_expr, - STATE(1829), 3, + STATE(1677), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48622] = 5, + [46951] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4128), 3, - anon_sym_DOLLARcase, - anon_sym_DOLLARdefault, - anon_sym_DOLLARendswitch, - STATE(1830), 3, + ACTIONS(3148), 1, + sym_ident, + ACTIONS(3150), 1, + sym_ct_ident, + STATE(1728), 1, + sym_local_decl_after_type, + STATE(1678), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48642] = 7, + [46975] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4081), 1, + ACTIONS(3924), 1, anon_sym_COMMA, - ACTIONS(4130), 1, + ACTIONS(3926), 1, anon_sym_SEMI, - STATE(1809), 1, + STATE(1693), 1, aux_sym__decl_statement_after_type_repeat1, - STATE(1831), 3, + STATE(1679), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48666] = 7, + [46999] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2626), 1, - anon_sym_QMARK_COLON, - ACTIONS(2628), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4132), 1, + ACTIONS(2942), 1, + anon_sym_EQ, + ACTIONS(3928), 1, anon_sym_SEMI, - STATE(1832), 3, + STATE(2139), 1, + sym__assign_right_expr, + STATE(1680), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48690] = 7, + [47023] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2626), 1, - anon_sym_QMARK_COLON, - ACTIONS(2628), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4134), 1, - anon_sym_SEMI, - STATE(1833), 3, + ACTIONS(3930), 1, + sym_at_ident, + ACTIONS(3932), 1, + anon_sym_LPAREN, + ACTIONS(3934), 1, + anon_sym_LBRACE, + STATE(1681), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48714] = 7, + [47047] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3957), 1, - anon_sym_SEMI, - ACTIONS(3975), 1, + ACTIONS(3759), 1, anon_sym_COMMA, - STATE(1770), 1, - aux_sym__cond_repeat1, - STATE(1834), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [48738] = 5, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(4136), 3, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - STATE(1835), 3, + ACTIONS(3936), 1, + anon_sym_RPAREN, + STATE(1664), 1, + aux_sym_ct_exec_stmt_repeat1, + STATE(1682), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48758] = 7, + [47071] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3857), 1, - sym_const_ident, - ACTIONS(4138), 1, - anon_sym_SEMI, - STATE(2148), 1, - sym_label_target, - STATE(1836), 3, + ACTIONS(3938), 1, + anon_sym_COMMA, + ACTIONS(3941), 1, + anon_sym_RPAREN, + STATE(1683), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [48782] = 7, + aux_sym_enum_param_list_repeat1, + [47093] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2989), 1, - anon_sym_EQ, - ACTIONS(4140), 1, - anon_sym_SEMI, - STATE(2238), 1, - sym__assign_right_expr, - STATE(1837), 3, + ACTIONS(3943), 1, + anon_sym_COMMA, + ACTIONS(3945), 1, + anon_sym_RBRACE, + STATE(1618), 1, + aux_sym_enum_arg_repeat1, + STATE(1684), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48806] = 7, + [47117] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2626), 1, - anon_sym_QMARK_COLON, - ACTIONS(2628), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4142), 1, - anon_sym_SEMI, - STATE(1838), 3, + ACTIONS(3947), 1, + anon_sym_RBRACK, + ACTIONS(3949), 1, + anon_sym_COLON, + ACTIONS(3951), 1, + anon_sym_DOT_DOT, + STATE(1685), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48830] = 7, + [47141] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3857), 1, - sym_const_ident, - ACTIONS(4144), 1, - anon_sym_SEMI, - STATE(2112), 1, - sym_label_target, - STATE(1839), 3, + STATE(1923), 1, + sym__func_macro_name, + ACTIONS(2753), 2, + sym_ident, + sym_at_ident, + STATE(1686), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48854] = 7, + [47163] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2989), 1, + ACTIONS(2942), 1, anon_sym_EQ, - ACTIONS(4146), 1, + ACTIONS(3953), 1, anon_sym_SEMI, - STATE(2177), 1, + STATE(2057), 1, sym__assign_right_expr, - STATE(1840), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [48878] = 7, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(3857), 1, - sym_const_ident, - ACTIONS(4148), 1, - anon_sym_SEMI, - STATE(2240), 1, - sym_label_target, - STATE(1841), 3, + STATE(1687), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48902] = 7, + [47187] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3857), 1, - sym_const_ident, - ACTIONS(4150), 1, - anon_sym_SEMI, - STATE(2367), 1, - sym_label_target, - STATE(1842), 3, + ACTIONS(2515), 1, + anon_sym_COMMA, + ACTIONS(3955), 1, + anon_sym_RPAREN, + STATE(1551), 1, + aux_sym_assert_stmt_repeat1, + STATE(1688), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48926] = 7, + [47211] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4152), 1, - anon_sym_RBRACK, - ACTIONS(4154), 1, - anon_sym_COLON, - ACTIONS(4156), 1, - anon_sym_DOT_DOT, - STATE(1843), 3, + ACTIONS(1217), 1, + anon_sym_RBRACE, + ACTIONS(3957), 1, + anon_sym_COMMA, + STATE(1444), 1, + aux_sym_enum_arg_repeat1, + STATE(1689), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48950] = 7, + [47235] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2626), 1, - anon_sym_QMARK_COLON, - ACTIONS(2628), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4158), 1, + ACTIONS(3924), 1, + anon_sym_COMMA, + ACTIONS(3959), 1, anon_sym_SEMI, - STATE(1844), 3, + STATE(1679), 1, + aux_sym__decl_statement_after_type_repeat1, + STATE(1690), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48974] = 7, + [47259] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2626), 1, - anon_sym_QMARK_COLON, - ACTIONS(2628), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4160), 1, + ACTIONS(2942), 1, + anon_sym_EQ, + ACTIONS(3961), 1, anon_sym_SEMI, - STATE(1845), 3, + STATE(2048), 1, + sym__assign_right_expr, + STATE(1691), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48998] = 7, + [47283] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4162), 1, - sym_ident, - ACTIONS(4164), 1, - sym_ct_ident, - STATE(1774), 1, - sym_local_decl_after_type, - STATE(1846), 3, + ACTIONS(3963), 3, + anon_sym_DOLLARcase, + anon_sym_DOLLARdefault, + anon_sym_DOLLARendswitch, + STATE(1692), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49022] = 5, + [47303] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3591), 3, + ACTIONS(3965), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3968), 1, anon_sym_SEMI, - STATE(1847), 3, + STATE(1693), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [49042] = 7, + aux_sym__decl_statement_after_type_repeat1, + [47325] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3458), 1, + ACTIONS(3970), 3, anon_sym_COMMA, - ACTIONS(4166), 1, anon_sym_RPAREN, - STATE(1805), 1, - aux_sym_ct_exec_stmt_repeat1, - STATE(1848), 3, + anon_sym_SEMI, + STATE(1694), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49066] = 5, + [47345] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4168), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(1849), 3, + ACTIONS(3972), 1, + sym_at_ident, + ACTIONS(3974), 1, + anon_sym_LPAREN, + ACTIONS(3976), 1, + anon_sym_LBRACE, + STATE(1695), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49086] = 5, + [47369] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4170), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(1850), 3, + ACTIONS(3978), 1, + sym_at_ident, + ACTIONS(3980), 1, + anon_sym_LPAREN, + ACTIONS(3982), 1, + anon_sym_LBRACE, + STATE(1696), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49106] = 7, + [47393] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2760), 1, - anon_sym_QMARK_COLON, - ACTIONS(2762), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4172), 1, - anon_sym_RPAREN, - STATE(1851), 3, + ACTIONS(3986), 1, + anon_sym_RBRACE, + ACTIONS(3984), 2, + sym_ident, + anon_sym_int, + STATE(1697), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49130] = 5, + [47415] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4170), 3, + ACTIONS(3840), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3988), 1, anon_sym_SEMI, - STATE(1852), 3, + STATE(1646), 1, + aux_sym_asm_stmt_repeat1, + STATE(1698), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49150] = 7, + [47439] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2626), 1, - anon_sym_QMARK_COLON, - ACTIONS(2628), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4174), 1, - anon_sym_RBRACK, - STATE(1853), 3, + ACTIONS(3717), 1, + sym_const_ident, + ACTIONS(3990), 1, + anon_sym_SEMI, + STATE(2070), 1, + sym_label_target, + STATE(1699), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49174] = 7, + [47463] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2808), 1, - anon_sym_COMMA, - ACTIONS(4176), 1, - anon_sym_RPAREN, - STATE(1782), 1, - aux_sym_assert_stmt_repeat1, - STATE(1854), 3, + ACTIONS(3717), 1, + sym_const_ident, + ACTIONS(3992), 1, + anon_sym_SEMI, + STATE(2073), 1, + sym_label_target, + STATE(1700), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49198] = 7, + [47487] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2626), 1, - anon_sym_QMARK_COLON, - ACTIONS(2628), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4178), 1, - anon_sym_GT_RBRACK, - STATE(1855), 3, + ACTIONS(3872), 1, + sym_type_ident, + ACTIONS(3874), 1, + sym_const_ident, + STATE(1638), 1, + sym__module_param, + STATE(1701), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49222] = 6, + [47511] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3596), 1, - anon_sym_RBRACE, - ACTIONS(4180), 1, + ACTIONS(2515), 1, anon_sym_COMMA, - STATE(1856), 4, + ACTIONS(3994), 1, + anon_sym_RPAREN, + STATE(1551), 1, + aux_sym_assert_stmt_repeat1, + STATE(1702), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_enum_arg_repeat1, - [49244] = 7, + [47535] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2626), 1, - anon_sym_QMARK_COLON, - ACTIONS(2628), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4183), 1, + ACTIONS(2942), 1, + anon_sym_EQ, + ACTIONS(3996), 1, anon_sym_SEMI, - STATE(1857), 3, + STATE(2082), 1, + sym__assign_right_expr, + STATE(1703), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49268] = 7, + [47559] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2989), 1, - anon_sym_EQ, - ACTIONS(4185), 1, - anon_sym_SEMI, - STATE(2329), 1, - sym__assign_right_expr, - STATE(1858), 3, + ACTIONS(3998), 3, + anon_sym_DOLLARcase, + anon_sym_DOLLARdefault, + anon_sym_DOLLARendswitch, + STATE(1704), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49292] = 7, + [47579] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4187), 1, - sym_type_ident, - ACTIONS(4189), 1, - sym_const_ident, - STATE(1730), 1, - sym__module_param, - STATE(1859), 3, + ACTIONS(4000), 2, + anon_sym_DOLLARcase, + anon_sym_DOLLARdefault, + STATE(1705), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49316] = 7, + [47598] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3857), 1, - sym_const_ident, - ACTIONS(4191), 1, - anon_sym_SEMI, - STATE(2269), 1, - sym_label_target, - STATE(1860), 3, + ACTIONS(2286), 1, + anon_sym_LBRACE, + STATE(1770), 1, + sym_compound_stmt, + STATE(1706), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49340] = 7, + [47619] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3867), 1, - anon_sym_COMMA, - ACTIONS(4193), 1, - anon_sym_GT_RPAREN, - STATE(1800), 1, - aux_sym_generic_module_parameters_repeat1, - STATE(1861), 3, + ACTIONS(3440), 1, + anon_sym_LPAREN, + STATE(133), 1, + sym_paren_cond, + STATE(1707), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49364] = 5, + [47640] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4195), 3, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_RPAREN, - STATE(1862), 3, + ACTIONS(3574), 1, + anon_sym_LPAREN, + STATE(134), 1, + sym_foreach_cond, + STATE(1708), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49384] = 7, + [47661] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2989), 1, - anon_sym_EQ, - ACTIONS(4197), 1, - anon_sym_SEMI, - STATE(2088), 1, - sym__assign_right_expr, - STATE(1863), 3, + ACTIONS(3572), 1, + anon_sym_LPAREN, + STATE(99), 1, + sym_for_cond, + STATE(1709), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49408] = 5, + [47682] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4199), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4002), 1, anon_sym_SEMI, - STATE(1864), 3, + ACTIONS(4004), 1, + anon_sym_COLON, + STATE(1710), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49428] = 7, + [47703] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4201), 1, + ACTIONS(4006), 2, anon_sym_COMMA, - ACTIONS(4203), 1, - anon_sym_RBRACE, - STATE(1787), 1, - aux_sym_enum_body_repeat1, - STATE(1865), 3, + anon_sym_RPAREN, + STATE(1711), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49452] = 5, + [47722] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4205), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(1866), 3, + ACTIONS(4008), 1, + anon_sym_LPAREN, + STATE(46), 1, + sym_ct_foreach_cond, + STATE(1712), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49472] = 7, + [47743] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2626), 1, - anon_sym_QMARK_COLON, - ACTIONS(2628), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4207), 1, - anon_sym_SEMI, - STATE(1867), 3, + ACTIONS(2978), 1, + anon_sym_LBRACE, + STATE(403), 1, + sym_switch_body, + STATE(1713), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49496] = 7, + [47764] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2485), 1, - anon_sym_RPAREN, - ACTIONS(4209), 1, - anon_sym_COMMA, - STATE(1799), 1, - aux_sym__parameters_repeat1, - STATE(1868), 3, + ACTIONS(4010), 1, + anon_sym_LPAREN, + STATE(45), 1, + sym_for_cond, + STATE(1714), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49520] = 7, + [47785] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2626), 1, - anon_sym_QMARK_COLON, - ACTIONS(2628), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4211), 1, - anon_sym_SEMI, - STATE(1869), 3, + ACTIONS(4012), 2, + anon_sym_DOLLARcase, + anon_sym_DOLLARdefault, + STATE(1715), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49544] = 7, + [47804] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2989), 1, - anon_sym_EQ, - ACTIONS(4213), 1, - anon_sym_SEMI, - STATE(2228), 1, - sym__assign_right_expr, - STATE(1870), 3, + ACTIONS(3028), 1, + anon_sym_LPAREN, + STATE(2030), 1, + sym_paren_expr, + STATE(1716), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49568] = 7, + [47825] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4016), 1, - anon_sym_COMMA, - ACTIONS(4215), 1, - anon_sym_RPAREN, - STATE(1786), 1, - aux_sym_enum_param_list_repeat1, - STATE(1871), 3, + ACTIONS(3440), 1, + anon_sym_LPAREN, + STATE(78), 1, + sym_paren_cond, + STATE(1717), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49592] = 7, + [47846] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3961), 1, - anon_sym_RPAREN, - ACTIONS(4217), 1, - anon_sym_COMMA, - STATE(1775), 1, - aux_sym__cond_repeat1, - STATE(1872), 3, + ACTIONS(3572), 1, + anon_sym_LPAREN, + STATE(132), 1, + sym_for_cond, + STATE(1718), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49616] = 7, + [47867] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2644), 1, + ACTIONS(3028), 1, anon_sym_LPAREN, - ACTIONS(4219), 1, - anon_sym_RPAREN, - STATE(2161), 1, - sym_fn_parameter_list, - STATE(1873), 3, + STATE(2013), 1, + sym_paren_expr, + STATE(1719), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49640] = 7, + [47888] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2989), 1, - anon_sym_EQ, - ACTIONS(4221), 1, - anon_sym_SEMI, - STATE(2276), 1, - sym__assign_right_expr, - STATE(1874), 3, + ACTIONS(4014), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(1720), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49664] = 7, + [47907] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3912), 1, - anon_sym_COMMA, - ACTIONS(4223), 1, + ACTIONS(4014), 2, anon_sym_RPAREN, - STATE(1796), 1, - aux_sym_interface_impl_repeat1, - STATE(1875), 3, + anon_sym_RBRACK, + STATE(1721), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49688] = 7, + [47926] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2989), 1, - anon_sym_EQ, - ACTIONS(4225), 1, - anon_sym_SEMI, - STATE(2241), 1, - sym__assign_right_expr, - STATE(1876), 3, + ACTIONS(3574), 1, + anon_sym_LPAREN, + STATE(98), 1, + sym_foreach_cond, + STATE(1722), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49712] = 6, + [47947] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4229), 1, - anon_sym_EQ, - ACTIONS(4227), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1877), 3, + ACTIONS(3440), 1, + anon_sym_LPAREN, + STATE(139), 1, + sym_paren_cond, + STATE(1723), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49734] = 7, + [47968] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3847), 1, - anon_sym_COMMA, - ACTIONS(4231), 1, - anon_sym_RPAREN, - STATE(1801), 1, - aux_sym_attribute_param_list_repeat1, - STATE(1878), 3, + ACTIONS(2286), 1, + anon_sym_LBRACE, + STATE(1833), 1, + sym_compound_stmt, + STATE(1724), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49758] = 7, + [47989] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4029), 1, - sym_const_ident, - ACTIONS(4203), 1, - anon_sym_RBRACE, - STATE(2016), 1, - sym_enum_constant, - STATE(1879), 3, + ACTIONS(4016), 1, + sym_at_ident, + ACTIONS(4018), 1, + anon_sym_SEMI, + STATE(1725), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49782] = 6, + [48010] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4233), 1, - anon_sym_COMMA, - ACTIONS(4236), 1, - anon_sym_GT_RPAREN, - STATE(1880), 4, + ACTIONS(4020), 1, + anon_sym_SEMI, + ACTIONS(4022), 1, + anon_sym_while, + STATE(1726), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym__generic_arg_list_repeat1, - [49804] = 7, + [48031] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3857), 1, - sym_const_ident, - ACTIONS(4238), 1, + ACTIONS(4024), 1, + sym_at_ident, + ACTIONS(4026), 1, anon_sym_SEMI, - STATE(2270), 1, - sym_label_target, - STATE(1881), 3, + STATE(1727), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49828] = 7, + [48052] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4187), 1, - sym_type_ident, - ACTIONS(4189), 1, - sym_const_ident, - STATE(2052), 1, - sym__module_param, - STATE(1882), 3, + ACTIONS(3968), 2, + anon_sym_COMMA, + anon_sym_SEMI, + STATE(1728), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49852] = 5, + [48071] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4240), 2, + ACTIONS(4028), 2, anon_sym_DOLLARcase, anon_sym_DOLLARdefault, - STATE(1883), 3, + STATE(1729), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49871] = 6, + [48090] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3560), 1, + ACTIONS(4010), 1, anon_sym_LPAREN, - STATE(111), 1, + STATE(42), 1, sym_for_cond, - STATE(1884), 3, + STATE(1730), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49892] = 6, + [48111] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_EQ, - STATE(1852), 1, - sym__assign_right_expr, - STATE(1885), 3, + ACTIONS(4030), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(1731), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49913] = 6, + [48130] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3124), 1, - anon_sym_LBRACE, - STATE(1222), 1, - sym_bitstruct_body, - STATE(1886), 3, + ACTIONS(4008), 1, + anon_sym_LPAREN, + STATE(41), 1, + sym_ct_foreach_cond, + STATE(1732), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49934] = 5, + [48151] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4242), 2, + ACTIONS(4030), 2, anon_sym_RPAREN, - anon_sym_SEMI, - STATE(1887), 3, + anon_sym_RBRACK, + STATE(1733), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49953] = 6, + [48170] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4244), 1, - sym_ident, - ACTIONS(4246), 1, - anon_sym_COLON, - STATE(1888), 3, + ACTIONS(3042), 1, + anon_sym_LBRACE, + STATE(1186), 1, + sym_struct_body, + STATE(1734), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49974] = 5, + [48191] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4248), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(1889), 3, + ACTIONS(2942), 1, + anon_sym_EQ, + STATE(1581), 1, + sym__assign_right_expr, + STATE(1735), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49993] = 6, + [48212] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -167784,10545 +157549,10364 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7), 1, anon_sym_SLASH_STAR, ACTIONS(3028), 1, - anon_sym_LBRACE, - STATE(893), 1, - sym_struct_body, - STATE(1890), 3, + anon_sym_LPAREN, + STATE(2107), 1, + sym_paren_expr, + STATE(1736), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50014] = 6, + [48233] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3050), 1, - anon_sym_LBRACE, - STATE(818), 1, - sym_switch_body, - STATE(1891), 3, + ACTIONS(3028), 1, + anon_sym_LPAREN, + STATE(1995), 1, + sym_paren_expr, + STATE(1737), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50035] = 5, + [48254] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4250), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(1892), 3, + ACTIONS(2994), 1, + anon_sym_LBRACE, + STATE(537), 1, + sym_switch_body, + STATE(1738), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50054] = 6, + [48275] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3529), 1, + ACTIONS(3028), 1, anon_sym_LPAREN, - STATE(81), 1, - sym_paren_cond, - STATE(1893), 3, + STATE(2122), 1, + sym_paren_expr, + STATE(1739), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50075] = 6, + [48296] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3086), 1, - anon_sym_LPAREN, - STATE(2138), 1, - sym_paren_expr, - STATE(1894), 3, + ACTIONS(4032), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(1740), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50096] = 6, + [48315] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3028), 1, - anon_sym_LBRACE, - STATE(906), 1, - sym_struct_body, - STATE(1895), 3, + ACTIONS(4034), 1, + anon_sym_SEMI, + ACTIONS(4036), 1, + anon_sym_COLON, + STATE(1741), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50117] = 6, + [48336] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3062), 1, + ACTIONS(2286), 1, anon_sym_LBRACE, - STATE(607), 1, - sym_switch_body, - STATE(1896), 3, + STATE(1768), 1, + sym_compound_stmt, + STATE(1742), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50138] = 6, + [48357] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4252), 1, - anon_sym_SEMI, - ACTIONS(4254), 1, - anon_sym_while, - STATE(1897), 3, + ACTIONS(3440), 1, + anon_sym_LPAREN, + STATE(124), 1, + sym_paren_cond, + STATE(1743), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50159] = 6, + [48378] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3086), 1, + ACTIONS(3572), 1, anon_sym_LPAREN, - STATE(2132), 1, - sym_paren_expr, - STATE(1898), 3, + STATE(111), 1, + sym_for_cond, + STATE(1744), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50180] = 5, + [48399] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3807), 2, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(1899), 3, + ACTIONS(3574), 1, + anon_sym_LPAREN, + STATE(114), 1, + sym_foreach_cond, + STATE(1745), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50199] = 6, + [48420] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2209), 1, + ACTIONS(2990), 1, anon_sym_LBRACE, - STATE(2035), 1, - sym_compound_stmt, - STATE(1900), 3, + STATE(592), 1, + sym_switch_body, + STATE(1746), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50220] = 6, + [48441] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3529), 1, + ACTIONS(3572), 1, anon_sym_LPAREN, - STATE(132), 1, - sym_paren_cond, - STATE(1901), 3, + STATE(112), 1, + sym_for_cond, + STATE(1747), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50241] = 6, + [48462] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3050), 1, - anon_sym_LBRACE, - STATE(784), 1, - sym_switch_body, - STATE(1902), 3, + ACTIONS(3574), 1, + anon_sym_LPAREN, + STATE(110), 1, + sym_foreach_cond, + STATE(1748), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50262] = 6, + [48483] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3050), 1, - anon_sym_LBRACE, - STATE(781), 1, - sym_switch_body, - STATE(1903), 3, + ACTIONS(3440), 1, + anon_sym_LPAREN, + STATE(90), 1, + sym_paren_cond, + STATE(1749), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + [48504] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(3707), 1, + sym_const_ident, + STATE(1827), 1, + sym_enum_constant, + STATE(1750), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50283] = 6, + [48525] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3523), 1, - anon_sym_LPAREN, - STATE(131), 1, - sym_foreach_cond, - STATE(1904), 3, + ACTIONS(3941), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1751), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50304] = 6, + [48544] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3560), 1, + ACTIONS(3440), 1, anon_sym_LPAREN, - STATE(124), 1, - sym_for_cond, - STATE(1905), 3, + STATE(108), 1, + sym_paren_cond, + STATE(1752), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50325] = 6, + [48565] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4256), 1, + ACTIONS(4038), 1, anon_sym_SEMI, - ACTIONS(4258), 1, + ACTIONS(4040), 1, anon_sym_while, - STATE(1906), 3, + STATE(1753), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50346] = 6, + [48586] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3529), 1, - anon_sym_LPAREN, - STATE(73), 1, - sym_paren_cond, - STATE(1907), 3, + ACTIONS(2286), 1, + anon_sym_LBRACE, + STATE(1844), 1, + sym_compound_stmt, + STATE(1754), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50367] = 6, + [48607] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4260), 1, + ACTIONS(4008), 1, anon_sym_LPAREN, - STATE(51), 1, + STATE(33), 1, sym_ct_foreach_cond, - STATE(1908), 3, + STATE(1755), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50388] = 6, + [48628] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4262), 1, + ACTIONS(4010), 1, anon_sym_LPAREN, - STATE(52), 1, + STATE(38), 1, sym_for_cond, - STATE(1909), 3, + STATE(1756), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50409] = 6, + [48649] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4264), 1, - anon_sym_DOLLARendif, - ACTIONS(4266), 1, - anon_sym_DOLLARelse, - STATE(1910), 3, + ACTIONS(4042), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1757), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50430] = 6, + [48668] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3124), 1, - anon_sym_LBRACE, - STATE(1214), 1, - sym_bitstruct_body, - STATE(1911), 3, + ACTIONS(4044), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(1758), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50451] = 6, + [48687] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4260), 1, - anon_sym_LPAREN, - STATE(45), 1, - sym_ct_foreach_cond, - STATE(1912), 3, + ACTIONS(4046), 1, + anon_sym_DOLLARendif, + ACTIONS(4048), 1, + anon_sym_DOLLARelse, + STATE(1759), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50472] = 5, + [48708] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4268), 2, + ACTIONS(4050), 1, anon_sym_RPAREN, + ACTIONS(4052), 1, anon_sym_SEMI, - STATE(1913), 3, + STATE(1760), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50491] = 6, + [48729] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3086), 1, - anon_sym_LPAREN, - STATE(2079), 1, - sym_paren_expr, - STATE(1914), 3, + ACTIONS(4054), 1, + sym_at_ident, + STATE(1952), 1, + sym_trailing_block_param, + STATE(1761), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50512] = 6, + [48750] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4262), 1, - anon_sym_LPAREN, - STATE(47), 1, - sym_for_cond, - STATE(1915), 3, + ACTIONS(4056), 1, + sym_ident, + ACTIONS(4058), 1, + anon_sym_COLON, + STATE(1762), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50533] = 6, + [48771] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2644), 1, - anon_sym_LPAREN, - STATE(1673), 1, - sym_fn_parameter_list, - STATE(1916), 3, + ACTIONS(2990), 1, + anon_sym_LBRACE, + STATE(612), 1, + sym_switch_body, + STATE(1763), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50554] = 6, + [48792] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3050), 1, - anon_sym_LBRACE, - STATE(750), 1, - sym_switch_body, - STATE(1917), 3, + ACTIONS(4060), 1, + sym_ident, + STATE(1285), 1, + sym_identifier_list, + STATE(1764), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50575] = 6, + [48813] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4270), 1, - anon_sym_SEMI, - ACTIONS(4272), 1, - anon_sym_while, - STATE(1918), 3, + ACTIONS(2990), 1, + anon_sym_LBRACE, + STATE(614), 1, + sym_switch_body, + STATE(1765), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50596] = 6, + [48834] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3086), 1, - anon_sym_LPAREN, - STATE(2074), 1, - sym_paren_expr, - STATE(1919), 3, + ACTIONS(2966), 1, + anon_sym_LBRACE, + STATE(940), 1, + sym_struct_body, + STATE(1766), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50617] = 6, + [48855] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4274), 1, - sym_at_ident, - ACTIONS(4276), 1, - anon_sym_SEMI, - STATE(1920), 3, + ACTIONS(4062), 2, + anon_sym_fn, + anon_sym_RBRACE, + STATE(1767), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50638] = 6, + [48874] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2209), 1, - anon_sym_LBRACE, - STATE(2044), 1, - sym_compound_stmt, - STATE(1921), 3, + ACTIONS(4064), 1, + anon_sym_SEMI, + ACTIONS(4066), 1, + anon_sym_while, + STATE(1768), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50659] = 6, + [48895] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3529), 1, + ACTIONS(3028), 1, anon_sym_LPAREN, - STATE(115), 1, - sym_paren_cond, - STATE(1922), 3, + STATE(1928), 1, + sym_paren_expr, + STATE(1769), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50680] = 6, + [48916] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3523), 1, - anon_sym_LPAREN, - STATE(116), 1, - sym_foreach_cond, - STATE(1923), 3, + ACTIONS(4068), 1, + anon_sym_SEMI, + ACTIONS(4070), 1, + anon_sym_while, + STATE(1770), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50701] = 6, + [48937] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3560), 1, - anon_sym_LPAREN, - STATE(117), 1, - sym_for_cond, - STATE(1924), 3, + ACTIONS(2932), 1, + anon_sym_LBRACE, + STATE(893), 1, + sym_enum_body, + STATE(1771), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50722] = 5, + [48958] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4278), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(1925), 3, + ACTIONS(2994), 1, + anon_sym_LBRACE, + STATE(520), 1, + sym_switch_body, + STATE(1772), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50741] = 6, + [48979] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4260), 1, - anon_sym_LPAREN, - STATE(36), 1, - sym_ct_foreach_cond, - STATE(1926), 3, + ACTIONS(2980), 1, + anon_sym_LBRACE, + STATE(919), 1, + sym_fault_body, + STATE(1773), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50762] = 5, + [49000] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4280), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1927), 3, + ACTIONS(4072), 1, + anon_sym_DOLLARendif, + ACTIONS(4074), 1, + anon_sym_DOLLARelse, + STATE(1774), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50781] = 6, + [49021] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4262), 1, + ACTIONS(2771), 1, anon_sym_LPAREN, - STATE(35), 1, - sym_for_cond, - STATE(1928), 3, + STATE(1215), 1, + sym_fn_parameter_list, + STATE(1775), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50802] = 5, + [49042] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4282), 2, + ACTIONS(4076), 2, anon_sym_RPAREN, anon_sym_SEMI, - STATE(1929), 3, + STATE(1776), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50821] = 5, + [49061] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4284), 2, - anon_sym_COMMA, + ACTIONS(4078), 2, anon_sym_RPAREN, - STATE(1930), 3, + anon_sym_SEMI, + STATE(1777), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50840] = 6, + [49080] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3126), 1, + ACTIONS(2994), 1, anon_sym_LBRACE, - STATE(961), 1, - sym_bitstruct_body, - STATE(1931), 3, + STATE(518), 1, + sym_switch_body, + STATE(1778), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50861] = 5, + [49101] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4286), 2, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - STATE(1932), 3, + ACTIONS(3028), 1, + anon_sym_LPAREN, + STATE(1903), 1, + sym_paren_expr, + STATE(1779), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50880] = 6, + [49122] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3086), 1, + ACTIONS(2978), 1, + anon_sym_LBRACE, + STATE(366), 1, + sym_switch_body, + STATE(1780), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + [49143] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(4010), 1, anon_sym_LPAREN, - STATE(2202), 1, - sym_paren_expr, - STATE(1933), 3, + STATE(35), 1, + sym_for_cond, + STATE(1781), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50901] = 6, + [49164] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4103), 1, - anon_sym_RBRACE, - ACTIONS(4288), 1, - sym_const_ident, - STATE(1934), 3, + ACTIONS(2990), 1, + anon_sym_LBRACE, + STATE(629), 1, + sym_switch_body, + STATE(1782), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50922] = 6, + [49185] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3086), 1, + ACTIONS(4008), 1, anon_sym_LPAREN, - STATE(2205), 1, - sym_paren_expr, - STATE(1935), 3, + STATE(37), 1, + sym_ct_foreach_cond, + STATE(1783), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50943] = 6, + [49206] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4290), 1, - sym_ident, - STATE(1397), 1, - sym_identifier_list, - STATE(1936), 3, + ACTIONS(3042), 1, + anon_sym_LBRACE, + STATE(1182), 1, + sym_struct_body, + STATE(1784), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50964] = 5, + [49227] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4292), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1937), 3, + ACTIONS(4080), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(1785), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50983] = 6, + [49246] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2209), 1, - anon_sym_LBRACE, - STATE(1969), 1, - sym_compound_stmt, - STATE(1938), 3, + ACTIONS(4082), 1, + sym_at_ident, + ACTIONS(4084), 1, + anon_sym_SEMI, + STATE(1786), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51004] = 6, + [49267] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3529), 1, - anon_sym_LPAREN, - STATE(138), 1, - sym_paren_cond, - STATE(1939), 3, + ACTIONS(4086), 1, + anon_sym_SEMI, + ACTIONS(4088), 1, + anon_sym_COLON, + STATE(1787), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51025] = 6, + [49288] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3523), 1, - anon_sym_LPAREN, - STATE(136), 1, - sym_foreach_cond, - STATE(1940), 3, + ACTIONS(4090), 1, + sym_at_ident, + ACTIONS(4092), 1, + anon_sym_SEMI, + STATE(1788), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51046] = 6, + [49309] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3560), 1, - anon_sym_LPAREN, - STATE(135), 1, - sym_for_cond, - STATE(1941), 3, + ACTIONS(2972), 1, + anon_sym_LBRACE, + STATE(458), 1, + sym_switch_body, + STATE(1789), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51067] = 6, + [49330] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4260), 1, - anon_sym_LPAREN, - STATE(46), 1, - sym_ct_foreach_cond, - STATE(1942), 3, + ACTIONS(4094), 1, + anon_sym_COMMA, + ACTIONS(4096), 1, + anon_sym_COLON, + STATE(1790), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51088] = 6, + [49351] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4262), 1, - anon_sym_LPAREN, - STATE(50), 1, - sym_for_cond, - STATE(1943), 3, + ACTIONS(4098), 1, + anon_sym_DOLLARendif, + ACTIONS(4100), 1, + anon_sym_DOLLARelse, + STATE(1791), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51109] = 6, + [49372] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2995), 1, - anon_sym_LBRACE, - STATE(956), 1, - sym_enum_body, - STATE(1944), 3, + ACTIONS(4102), 1, + anon_sym_DOLLARendif, + ACTIONS(4104), 1, + anon_sym_DOLLARelse, + STATE(1792), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51130] = 6, + [49393] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2644), 1, - anon_sym_LPAREN, - STATE(1405), 1, - sym_fn_parameter_list, - STATE(1945), 3, + ACTIONS(4106), 1, + anon_sym_SEMI, + ACTIONS(4108), 1, + anon_sym_while, + STATE(1793), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51151] = 6, + [49414] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3056), 1, - anon_sym_LBRACE, - STATE(670), 1, - sym_switch_body, - STATE(1946), 3, + ACTIONS(4110), 1, + anon_sym_SEMI, + ACTIONS(4112), 1, + anon_sym_COLON, + STATE(1794), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51172] = 5, + [49435] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3486), 2, - sym_ident, - sym_const_ident, - STATE(1947), 3, + ACTIONS(4114), 1, + anon_sym_SEMI, + ACTIONS(4116), 1, + anon_sym_while, + STATE(1795), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51191] = 6, + [49456] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3529), 1, - anon_sym_LPAREN, - STATE(58), 1, - sym_paren_cond, - STATE(1948), 3, + ACTIONS(4118), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(1796), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51212] = 5, + [49475] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3464), 2, - sym_ident, - sym_const_ident, - STATE(1949), 3, + ACTIONS(2972), 1, + anon_sym_LBRACE, + STATE(419), 1, + sym_switch_body, + STATE(1797), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51231] = 6, + [49496] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4294), 1, - sym_at_ident, - STATE(2162), 1, - sym_trailing_block_param, - STATE(1950), 3, + ACTIONS(3572), 1, + anon_sym_LPAREN, + STATE(106), 1, + sym_for_cond, + STATE(1798), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51252] = 6, + [49517] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3086), 1, + ACTIONS(2972), 1, + anon_sym_LBRACE, + STATE(417), 1, + sym_switch_body, + STATE(1799), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + [49538] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(3574), 1, anon_sym_LPAREN, - STATE(2298), 1, - sym_paren_expr, - STATE(1951), 3, + STATE(135), 1, + sym_foreach_cond, + STATE(1800), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51273] = 6, + [49559] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4296), 1, - anon_sym_SEMI, - ACTIONS(4298), 1, - anon_sym_while, - STATE(1952), 3, + ACTIONS(3440), 1, + anon_sym_LPAREN, + STATE(113), 1, + sym_paren_cond, + STATE(1801), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51294] = 6, + [49580] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3086), 1, + ACTIONS(3440), 1, anon_sym_LPAREN, - STATE(2306), 1, - sym_paren_expr, - STATE(1953), 3, + STATE(73), 1, + sym_paren_cond, + STATE(1802), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51315] = 6, + [49601] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, + ACTIONS(2286), 1, anon_sym_LBRACE, - STATE(948), 1, - sym_fault_body, - STATE(1954), 3, + STATE(1879), 1, + sym_compound_stmt, + STATE(1803), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51336] = 5, + [49622] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4300), 2, + ACTIONS(2994), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(1955), 3, + STATE(492), 1, + sym_switch_body, + STATE(1804), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51355] = 6, + [49643] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4302), 1, - anon_sym_COLON, - ACTIONS(4304), 1, - anon_sym_DOT_DOT, - STATE(1956), 3, + ACTIONS(2771), 1, + anon_sym_LPAREN, + STATE(1575), 1, + sym_fn_parameter_list, + STATE(1805), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51376] = 5, + [49664] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3894), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1957), 3, + ACTIONS(3028), 1, + anon_sym_LPAREN, + STATE(1938), 1, + sym_paren_expr, + STATE(1806), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51395] = 6, + [49685] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4029), 1, - sym_const_ident, - STATE(2016), 1, - sym_enum_constant, - STATE(1958), 3, + ACTIONS(4120), 1, + anon_sym_SEMI, + ACTIONS(4122), 1, + anon_sym_while, + STATE(1807), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51416] = 6, + [49706] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2209), 1, + ACTIONS(4124), 1, anon_sym_LBRACE, - STATE(1906), 1, - sym_compound_stmt, - STATE(1959), 3, + STATE(898), 1, + sym_interface_body, + STATE(1808), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51437] = 6, + [49727] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3529), 1, + ACTIONS(3440), 1, anon_sym_LPAREN, - STATE(110), 1, + STATE(87), 1, sym_paren_cond, - STATE(1960), 3, + STATE(1809), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51458] = 6, + [49748] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3523), 1, + ACTIONS(2348), 1, + anon_sym_COLON_COLON, + ACTIONS(4126), 1, anon_sym_LPAREN, - STATE(109), 1, - sym_foreach_cond, - STATE(1961), 3, + STATE(1810), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51479] = 6, + [49769] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3056), 1, + ACTIONS(2972), 1, anon_sym_LBRACE, - STATE(647), 1, + STATE(479), 1, sym_switch_body, - STATE(1962), 3, + STATE(1811), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51500] = 6, + [49790] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3560), 1, + ACTIONS(3028), 1, anon_sym_LPAREN, - STATE(108), 1, - sym_for_cond, - STATE(1963), 3, + STATE(1944), 1, + sym_paren_expr, + STATE(1812), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51521] = 6, + [49811] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3056), 1, - anon_sym_LBRACE, - STATE(644), 1, - sym_switch_body, - STATE(1964), 3, + ACTIONS(4128), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1813), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51542] = 6, + [49830] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4306), 1, - anon_sym_SEMI, - ACTIONS(4308), 1, - anon_sym_COLON, - STATE(1965), 3, + ACTIONS(4130), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1814), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51563] = 6, + [49849] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4260), 1, - anon_sym_LPAREN, - STATE(56), 1, - sym_ct_foreach_cond, - STATE(1966), 3, + ACTIONS(4132), 2, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + STATE(1815), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51584] = 6, + [49868] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4262), 1, + ACTIONS(4010), 1, anon_sym_LPAREN, - STATE(57), 1, + STATE(52), 1, sym_for_cond, - STATE(1967), 3, + STATE(1816), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51605] = 5, + [49889] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4310), 2, + ACTIONS(4134), 2, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(1968), 3, + STATE(1817), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51624] = 6, + [49908] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4312), 1, - anon_sym_SEMI, - ACTIONS(4314), 1, - anon_sym_while, - STATE(1969), 3, + ACTIONS(4136), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1818), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51645] = 5, + [49927] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4310), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(1970), 3, + ACTIONS(4138), 1, + anon_sym_LPAREN, + STATE(1221), 1, + sym_macro_parameter_list, + STATE(1819), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51664] = 5, + [49948] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3923), 2, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(1971), 3, + ACTIONS(3066), 1, + anon_sym_LBRACE, + STATE(846), 1, + sym_bitstruct_body, + STATE(1820), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51683] = 6, + [49969] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_LBRACE, - STATE(928), 1, - sym_fault_body, - STATE(1972), 3, + ACTIONS(3791), 1, + anon_sym_RBRACE, + ACTIONS(4140), 1, + sym_const_ident, + STATE(1821), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51704] = 6, + [49990] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4316), 1, - anon_sym_DOLLARendif, - ACTIONS(4318), 1, - anon_sym_DOLLARelse, - STATE(1973), 3, + ACTIONS(4008), 1, + anon_sym_LPAREN, + STATE(53), 1, + sym_ct_foreach_cond, + STATE(1822), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51725] = 6, + [50011] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2644), 1, - anon_sym_LPAREN, - STATE(1327), 1, - sym_fn_parameter_list, - STATE(1974), 3, + ACTIONS(2976), 1, + anon_sym_LBRACE, + STATE(669), 1, + sym_switch_body, + STATE(1823), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51746] = 6, + [50032] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2995), 1, - anon_sym_LBRACE, - STATE(925), 1, - sym_enum_body, - STATE(1975), 3, + ACTIONS(4142), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1824), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51767] = 6, + [50051] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3086), 1, + ACTIONS(3028), 1, anon_sym_LPAREN, - STATE(2114), 1, + STATE(2121), 1, sym_paren_expr, - STATE(1976), 3, + STATE(1825), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51788] = 5, + [50072] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(4320), 2, - anon_sym_DOLLARcase, - anon_sym_DOLLARdefault, - STATE(1977), 3, + anon_sym_SLASH_STAR, + ACTIONS(3440), 1, + anon_sym_LPAREN, + STATE(82), 1, + sym_paren_cond, + STATE(1826), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51807] = 5, + [50093] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4322), 2, - anon_sym_fn, + ACTIONS(3826), 2, + anon_sym_COMMA, anon_sym_RBRACE, - STATE(1978), 3, + STATE(1827), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51826] = 6, + [50112] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4294), 1, - sym_at_ident, - STATE(2262), 1, - sym_trailing_block_param, - STATE(1979), 3, + ACTIONS(3572), 1, + anon_sym_LPAREN, + STATE(123), 1, + sym_for_cond, + STATE(1828), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51847] = 6, + [50133] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3056), 1, - anon_sym_LBRACE, - STATE(669), 1, - sym_switch_body, - STATE(1980), 3, + ACTIONS(3574), 1, + anon_sym_LPAREN, + STATE(125), 1, + sym_foreach_cond, + STATE(1829), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51868] = 5, + [50154] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4324), 2, - anon_sym_RPAREN, + ACTIONS(4144), 1, anon_sym_SEMI, - STATE(1981), 3, + ACTIONS(4146), 1, + anon_sym_while, + STATE(1830), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51887] = 6, + [50175] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3062), 1, + ACTIONS(2966), 1, anon_sym_LBRACE, - STATE(610), 1, - sym_switch_body, - STATE(1982), 3, + STATE(892), 1, + sym_struct_body, + STATE(1831), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51908] = 5, + [50196] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4326), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(1983), 3, + ACTIONS(3440), 1, + anon_sym_LPAREN, + STATE(128), 1, + sym_paren_cond, + STATE(1832), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51927] = 6, + [50217] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4328), 1, - sym_at_ident, - ACTIONS(4330), 1, + ACTIONS(4148), 1, anon_sym_SEMI, - STATE(1984), 3, + ACTIONS(4150), 1, + anon_sym_while, + STATE(1833), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51948] = 6, + [50238] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4332), 1, - anon_sym_RPAREN, - ACTIONS(4334), 1, - anon_sym_SEMI, - STATE(1985), 3, + ACTIONS(2932), 1, + anon_sym_LBRACE, + STATE(861), 1, + sym_enum_body, + STATE(1834), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51969] = 5, + [50259] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3961), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(1986), 3, + ACTIONS(2771), 1, + anon_sym_LPAREN, + STATE(1296), 1, + sym_fn_parameter_list, + STATE(1835), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51988] = 6, + [50280] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3086), 1, - anon_sym_LPAREN, - STATE(2110), 1, - sym_paren_expr, - STATE(1987), 3, + ACTIONS(2286), 1, + anon_sym_LBRACE, + STATE(1795), 1, + sym_compound_stmt, + STATE(1836), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52009] = 6, + [50301] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3062), 1, - anon_sym_LBRACE, - STATE(608), 1, - sym_switch_body, - STATE(1988), 3, + ACTIONS(4152), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1837), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52030] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + [50320] = 5, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4336), 1, - anon_sym_SEMI, - ACTIONS(4338), 1, - anon_sym_while, - STATE(1989), 3, + ACTIONS(3534), 1, + aux_sym_line_comment_token1, + ACTIONS(3536), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4154), 2, + sym_escape_sequence, + aux_sym_char_literal_token1, + STATE(1838), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52051] = 6, + [50339] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4340), 1, - sym_at_ident, - ACTIONS(4342), 1, - anon_sym_SEMI, - STATE(1990), 3, + ACTIONS(4156), 1, + sym_ident, + ACTIONS(4158), 1, + anon_sym_AMP, + STATE(1839), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52072] = 5, + [50360] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4344), 2, - anon_sym_DOLLARcase, - anon_sym_DOLLARdefault, - STATE(1991), 3, + ACTIONS(2976), 1, + anon_sym_LBRACE, + STATE(685), 1, + sym_switch_body, + STATE(1840), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52091] = 6, + [50381] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3086), 1, - anon_sym_LPAREN, - STATE(2243), 1, - sym_paren_expr, - STATE(1992), 3, + ACTIONS(2976), 1, + anon_sym_LBRACE, + STATE(687), 1, + sym_switch_body, + STATE(1841), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52112] = 5, + [50402] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4346), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(1993), 3, + ACTIONS(4054), 1, + sym_at_ident, + STATE(2170), 1, + sym_trailing_block_param, + STATE(1842), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52131] = 6, + [50423] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2209), 1, - anon_sym_LBRACE, - STATE(1989), 1, - sym_compound_stmt, - STATE(1994), 3, + ACTIONS(4160), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1843), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52152] = 6, + [50442] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3529), 1, - anon_sym_LPAREN, - STATE(139), 1, - sym_paren_cond, - STATE(1995), 3, + ACTIONS(4162), 1, + anon_sym_SEMI, + ACTIONS(4164), 1, + anon_sym_while, + STATE(1844), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52173] = 6, + [50463] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4029), 1, - sym_const_ident, - STATE(1757), 1, - sym_enum_constant, - STATE(1996), 3, + ACTIONS(4166), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(1845), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52194] = 6, + [50482] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3523), 1, - anon_sym_LPAREN, - STATE(118), 1, - sym_foreach_cond, - STATE(1997), 3, + ACTIONS(3949), 1, + anon_sym_COLON, + ACTIONS(3951), 1, + anon_sym_DOT_DOT, + STATE(1846), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52215] = 6, + [50503] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3560), 1, - anon_sym_LPAREN, - STATE(119), 1, - sym_for_cond, - STATE(1998), 3, + ACTIONS(4168), 1, + anon_sym_DOLLARendif, + ACTIONS(4170), 1, + anon_sym_DOLLARelse, + STATE(1847), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52236] = 6, + [50524] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2626), 1, - anon_sym_QMARK_COLON, - ACTIONS(2628), 1, - anon_sym_QMARK_QMARK, - STATE(1999), 3, + ACTIONS(3028), 1, + anon_sym_LPAREN, + STATE(2015), 1, + sym_paren_expr, + STATE(1848), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52257] = 6, + [50545] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2995), 1, + ACTIONS(2976), 1, anon_sym_LBRACE, - STATE(945), 1, - sym_enum_body, - STATE(2000), 3, + STATE(703), 1, + sym_switch_body, + STATE(1849), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52278] = 6, + [50566] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3038), 1, - anon_sym_LBRACE, - STATE(454), 1, - sym_switch_body, - STATE(2001), 3, + ACTIONS(4008), 1, + anon_sym_LPAREN, + STATE(44), 1, + sym_ct_foreach_cond, + STATE(1850), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52299] = 5, + [50587] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4348), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(2002), 3, + ACTIONS(4172), 1, + sym_at_ident, + ACTIONS(4174), 1, + anon_sym_SEMI, + STATE(1851), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52318] = 6, + [50608] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3038), 1, - anon_sym_LBRACE, - STATE(430), 1, - sym_switch_body, - STATE(2003), 3, + ACTIONS(3028), 1, + anon_sym_LPAREN, + STATE(2021), 1, + sym_paren_expr, + STATE(1852), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52339] = 6, + [50629] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3038), 1, - anon_sym_LBRACE, - STATE(434), 1, - sym_switch_body, - STATE(2004), 3, + ACTIONS(4176), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(1853), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52360] = 6, + [50648] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4260), 1, - anon_sym_LPAREN, - STATE(33), 1, - sym_ct_foreach_cond, - STATE(2005), 3, + ACTIONS(4178), 1, + anon_sym_SEMI, + ACTIONS(4180), 1, + anon_sym_COLON, + STATE(1854), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52381] = 6, + [50669] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4262), 1, - anon_sym_LPAREN, - STATE(34), 1, - sym_for_cond, - STATE(2006), 3, + ACTIONS(4182), 1, + anon_sym_SEMI, + ACTIONS(4184), 1, + anon_sym_COLON, + STATE(1855), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52402] = 6, + [50690] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4350), 1, - anon_sym_DOLLARendif, - ACTIONS(4352), 1, - anon_sym_DOLLARelse, - STATE(2007), 3, + ACTIONS(3514), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(1856), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52423] = 5, + [50709] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4354), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(2008), 3, + ACTIONS(3376), 2, + sym_ident, + sym_const_ident, + STATE(1857), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52442] = 6, + [50728] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2989), 1, - anon_sym_EQ, - STATE(1852), 1, - sym__assign_right_expr, - STATE(2009), 3, + ACTIONS(3370), 2, + sym_ident, + sym_const_ident, + STATE(1858), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52463] = 6, + [50747] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2760), 1, - anon_sym_QMARK_COLON, - ACTIONS(2762), 1, - anon_sym_QMARK_QMARK, - STATE(2010), 3, + ACTIONS(4010), 1, + anon_sym_LPAREN, + STATE(50), 1, + sym_for_cond, + STATE(1859), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52484] = 5, + [50768] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4356), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(2011), 3, + ACTIONS(4140), 1, + sym_const_ident, + ACTIONS(4186), 1, + anon_sym_RBRACE, + STATE(1860), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52503] = 6, + [50789] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4358), 1, - anon_sym_LBRACE, - STATE(969), 1, - sym_interface_body, - STATE(2012), 3, + ACTIONS(4188), 1, + anon_sym_SEMI, + ACTIONS(4190), 1, + anon_sym_COLON, + STATE(1861), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52524] = 6, + [50810] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2219), 1, - anon_sym_COLON_COLON, - ACTIONS(4360), 1, - anon_sym_LPAREN, - STATE(2013), 3, + ACTIONS(3747), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1862), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52545] = 6, + [50829] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3062), 1, + ACTIONS(3066), 1, anon_sym_LBRACE, - STATE(578), 1, - sym_switch_body, - STATE(2014), 3, + STATE(832), 1, + sym_bitstruct_body, + STATE(1863), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52566] = 6, + [50850] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2644), 1, - anon_sym_LPAREN, - STATE(1371), 1, - sym_fn_parameter_list, - STATE(2015), 3, + ACTIONS(4192), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(1864), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52587] = 5, + [50869] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4023), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(2016), 3, + ACTIONS(2980), 1, + anon_sym_LBRACE, + STATE(930), 1, + sym_fault_body, + STATE(1865), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52606] = 5, + [50890] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4362), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(2017), 3, + ACTIONS(2992), 1, + anon_sym_LBRACE, + STATE(743), 1, + sym_switch_body, + STATE(1866), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52625] = 6, + [50911] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, - anon_sym_COMMA, - ACTIONS(4366), 1, - anon_sym_COLON, - STATE(2018), 3, + ACTIONS(3440), 1, + anon_sym_LPAREN, + STATE(71), 1, + sym_paren_cond, + STATE(1867), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52646] = 6, + [50932] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4368), 1, - sym_ident, - ACTIONS(4370), 1, - anon_sym_AMP, - STATE(2019), 3, + ACTIONS(4194), 1, + anon_sym_SEMI, + ACTIONS(4196), 1, + anon_sym_while, + STATE(1868), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52667] = 6, + [50953] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, - anon_sym_LBRACE, - STATE(829), 1, - sym_switch_body, - STATE(2020), 3, + ACTIONS(4198), 1, + anon_sym_SEMI, + ACTIONS(4200), 1, + anon_sym_DOT_DOT, + STATE(1869), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52688] = 6, + [50974] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4372), 1, - anon_sym_SEMI, - ACTIONS(4374), 1, - anon_sym_while, - STATE(2021), 3, + ACTIONS(3060), 1, + anon_sym_LBRACE, + STATE(1176), 1, + sym_bitstruct_body, + STATE(1870), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52709] = 6, + [50995] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3086), 1, - anon_sym_LPAREN, - STATE(2304), 1, - sym_paren_expr, - STATE(2022), 3, + ACTIONS(3726), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1871), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52730] = 6, + [51014] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3529), 1, - anon_sym_LPAREN, - STATE(69), 1, - sym_paren_cond, - STATE(2023), 3, + ACTIONS(2992), 1, + anon_sym_LBRACE, + STATE(759), 1, + sym_switch_body, + STATE(1872), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52751] = 6, + [51035] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4376), 1, - sym_at_ident, - ACTIONS(4378), 1, - anon_sym_SEMI, - STATE(2024), 3, + ACTIONS(2978), 1, + anon_sym_LBRACE, + STATE(351), 1, + sym_switch_body, + STATE(1873), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52772] = 6, + [51056] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4380), 1, - anon_sym_LPAREN, - STATE(1328), 1, - sym_macro_parameter_list, - STATE(2025), 3, + ACTIONS(2992), 1, + anon_sym_LBRACE, + STATE(761), 1, + sym_switch_body, + STATE(1874), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52793] = 5, + [51077] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4382), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(2026), 3, + ACTIONS(2932), 1, + anon_sym_LBRACE, + STATE(883), 1, + sym_enum_body, + STATE(1875), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52812] = 6, + [51098] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4384), 1, - anon_sym_SEMI, - ACTIONS(4386), 1, - anon_sym_while, - STATE(2027), 3, + ACTIONS(2771), 1, + anon_sym_LPAREN, + STATE(1276), 1, + sym_fn_parameter_list, + STATE(1876), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52833] = 6, + [51119] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4388), 1, - anon_sym_DOLLARendif, - ACTIONS(4390), 1, - anon_sym_DOLLARelse, - STATE(2028), 3, + ACTIONS(3703), 2, + anon_sym_COMMA, + anon_sym_SEMI, + STATE(1877), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52854] = 6, + [51138] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3054), 1, + ACTIONS(2978), 1, anon_sym_LBRACE, - STATE(485), 1, + STATE(397), 1, sym_switch_body, - STATE(2029), 3, + STATE(1878), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52875] = 6, + [51159] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4288), 1, - sym_const_ident, - ACTIONS(4392), 1, - anon_sym_RBRACE, - STATE(2030), 3, + ACTIONS(4202), 1, + anon_sym_SEMI, + ACTIONS(4204), 1, + anon_sym_while, + STATE(1879), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52896] = 6, + [51180] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4394), 1, - anon_sym_DOLLARendif, - ACTIONS(4396), 1, - anon_sym_DOLLARelse, - STATE(2031), 3, + ACTIONS(3684), 2, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + STATE(1880), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52917] = 5, + [51199] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4042), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(2032), 3, + ACTIONS(4206), 1, + anon_sym_DOLLARendif, + ACTIONS(4208), 1, + anon_sym_DOLLARelse, + STATE(1881), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52936] = 6, + [51220] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3126), 1, - anon_sym_LBRACE, - STATE(935), 1, - sym_bitstruct_body, - STATE(2033), 3, + ACTIONS(4210), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(1882), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52957] = 6, + [51239] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3038), 1, + ACTIONS(2992), 1, anon_sym_LBRACE, - STATE(425), 1, + STATE(776), 1, sym_switch_body, - STATE(2034), 3, + STATE(1883), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52978] = 6, + [51260] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4398), 1, + ACTIONS(4212), 2, + anon_sym_RPAREN, anon_sym_SEMI, - ACTIONS(4400), 1, - anon_sym_while, - STATE(2035), 3, + STATE(1884), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52999] = 6, + [51279] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3098), 1, - anon_sym_LBRACE, - STATE(1210), 1, - sym_struct_body, - STATE(2036), 3, + ACTIONS(4214), 1, + anon_sym_COMMA, + ACTIONS(4216), 1, + anon_sym_COLON, + STATE(1885), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53020] = 6, + [51300] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, - anon_sym_LBRACE, - STATE(796), 1, - sym_switch_body, - STATE(2037), 3, + ACTIONS(4218), 1, + sym_at_ident, + ACTIONS(4220), 1, + anon_sym_SEMI, + STATE(1886), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53041] = 6, + [51321] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4402), 1, - anon_sym_COMMA, - ACTIONS(4404), 1, - anon_sym_COLON, - STATE(2038), 3, + ACTIONS(4222), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(1887), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53062] = 6, + [51340] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, - anon_sym_LBRACE, - STATE(792), 1, - sym_switch_body, - STATE(2039), 3, + ACTIONS(4224), 1, + anon_sym_SEMI, + ACTIONS(4226), 1, + anon_sym_COLON, + STATE(1888), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53083] = 5, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(3519), 1, + [51361] = 5, + ACTIONS(3), 1, aux_sym_line_comment_token1, - ACTIONS(3521), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, - ACTIONS(4406), 2, - sym_escape_sequence, - aux_sym_char_literal_token1, - STATE(2040), 3, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(3675), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1889), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53102] = 6, + [51380] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3054), 1, + ACTIONS(3060), 1, anon_sym_LBRACE, - STATE(531), 1, - sym_switch_body, - STATE(2041), 3, + STATE(1184), 1, + sym_bitstruct_body, + STATE(1890), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53123] = 6, + [51401] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3529), 1, - anon_sym_LPAREN, - STATE(60), 1, - sym_paren_cond, - STATE(2042), 3, + ACTIONS(4228), 1, + anon_sym_RPAREN, + STATE(1891), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53144] = 6, + [51419] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3054), 1, - anon_sym_LBRACE, - STATE(529), 1, - sym_switch_body, - STATE(2043), 3, + ACTIONS(4230), 1, + sym_ident, + STATE(1892), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53165] = 6, + [51437] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4408), 1, + ACTIONS(4232), 1, anon_sym_SEMI, - ACTIONS(4410), 1, - anon_sym_while, - STATE(2044), 3, + STATE(1893), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53186] = 6, + [51455] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3529), 1, - anon_sym_LPAREN, - STATE(91), 1, - sym_paren_cond, - STATE(2045), 3, + ACTIONS(4234), 1, + sym_integer_literal, + STATE(1894), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53207] = 6, + [51473] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3098), 1, - anon_sym_LBRACE, - STATE(1218), 1, - sym_struct_body, - STATE(2046), 3, + ACTIONS(3518), 1, + anon_sym_SEMI, + STATE(1895), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53228] = 5, + [51491] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4412), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2047), 3, + ACTIONS(4236), 1, + sym_integer_literal, + STATE(1896), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53247] = 6, + [51509] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4414), 1, - anon_sym_DOLLARendif, - ACTIONS(4416), 1, - anon_sym_DOLLARelse, - STATE(2048), 3, + ACTIONS(4238), 1, + anon_sym_RPAREN, + STATE(1897), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53268] = 5, + [51527] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4412), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2049), 3, + ACTIONS(4240), 1, + anon_sym_DOLLARendif, + STATE(1898), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53287] = 5, + [51545] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4418), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(2050), 3, + ACTIONS(4242), 1, + anon_sym_DOLLARendfor, + STATE(1899), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53306] = 6, + [51563] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4420), 1, + ACTIONS(4244), 1, anon_sym_SEMI, - ACTIONS(4422), 1, - anon_sym_while, - STATE(2051), 3, + STATE(1900), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53327] = 5, + [51581] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4057), 2, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - STATE(2052), 3, + ACTIONS(4246), 1, + anon_sym_COLON, + STATE(1901), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53346] = 6, + [51599] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3523), 1, + ACTIONS(4248), 1, anon_sym_LPAREN, - STATE(112), 1, - sym_foreach_cond, - STATE(2053), 3, + STATE(1902), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53367] = 6, + [51617] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4424), 1, - sym_at_ident, - ACTIONS(4426), 1, + ACTIONS(4250), 1, anon_sym_SEMI, - STATE(2054), 3, + STATE(1903), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53388] = 6, + [51635] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, - anon_sym_LBRACE, - STATE(755), 1, - sym_switch_body, - STATE(2055), 3, + ACTIONS(4252), 1, + anon_sym_LPAREN, + STATE(1904), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53409] = 5, + [51653] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4062), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(2056), 3, + ACTIONS(4254), 1, + anon_sym_LPAREN, + STATE(1905), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53428] = 6, + [51671] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4428), 1, - anon_sym_SEMI, - ACTIONS(4430), 1, - anon_sym_while, - STATE(2057), 3, + ACTIONS(4256), 1, + anon_sym_LPAREN, + STATE(1906), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53449] = 6, + [51689] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2209), 1, - anon_sym_LBRACE, - STATE(2021), 1, - sym_compound_stmt, - STATE(2058), 3, + ACTIONS(4258), 1, + anon_sym_SEMI, + STATE(1907), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53470] = 6, + [51707] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4432), 1, - sym_at_ident, - ACTIONS(4434), 1, - anon_sym_SEMI, - STATE(2059), 3, + ACTIONS(4260), 1, + anon_sym_DOLLARendif, + STATE(1908), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53491] = 6, + [51725] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3529), 1, + ACTIONS(4262), 1, anon_sym_LPAREN, - STATE(99), 1, - sym_paren_cond, - STATE(2060), 3, + STATE(1909), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53512] = 6, + [51743] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3054), 1, - anon_sym_LBRACE, - STATE(468), 1, - sym_switch_body, - STATE(2061), 3, + ACTIONS(4264), 1, + anon_sym_RBRACE, + STATE(1910), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53533] = 5, + [51761] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4047), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(2062), 3, + ACTIONS(4266), 1, + anon_sym_DOLLARendforeach, + STATE(1911), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53552] = 5, + [51779] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4436), 1, - anon_sym_LBRACE, - STATE(2063), 3, + ACTIONS(4268), 1, + anon_sym_RPAREN, + STATE(1912), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53570] = 5, + [51797] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4438), 1, - sym_const_ident, - STATE(2064), 3, + ACTIONS(4270), 1, + anon_sym_SEMI, + STATE(1913), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53588] = 5, + [51815] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4440), 1, - anon_sym_COLON, - STATE(2065), 3, + ACTIONS(4272), 1, + anon_sym_SEMI, + STATE(1914), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53606] = 5, + [51833] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4442), 1, - anon_sym_DOT, - STATE(2066), 3, + ACTIONS(4274), 1, + anon_sym_SEMI, + STATE(1915), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53624] = 5, + [51851] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4444), 1, - anon_sym_DOLLARendfor, - STATE(2067), 3, + ACTIONS(4276), 1, + anon_sym_SEMI, + STATE(1916), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53642] = 5, + [51869] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4446), 1, - anon_sym_DOLLARendforeach, - STATE(2068), 3, + ACTIONS(4278), 1, + anon_sym_SEMI, + STATE(1917), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53660] = 5, + [51887] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4448), 1, + ACTIONS(4280), 1, anon_sym_SEMI, - STATE(2069), 3, + STATE(1918), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53678] = 5, + [51905] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4450), 1, + ACTIONS(4282), 1, anon_sym_SEMI, - STATE(2070), 3, + STATE(1919), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53696] = 5, + [51923] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4452), 1, + ACTIONS(4284), 1, anon_sym_SEMI, - STATE(2071), 3, + STATE(1920), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53714] = 5, + [51941] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4454), 1, - anon_sym_RPAREN, - STATE(2072), 3, + ACTIONS(3489), 1, + anon_sym_SEMI, + STATE(1921), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53732] = 5, + [51959] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4456), 1, - anon_sym_DOLLARendforeach, - STATE(2073), 3, + ACTIONS(4286), 1, + anon_sym_RPAREN, + STATE(1922), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53750] = 5, + [51977] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4458), 1, - anon_sym_SEMI, - STATE(2074), 3, + ACTIONS(4288), 1, + anon_sym_LPAREN, + STATE(1923), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53768] = 5, + [51995] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4460), 1, - anon_sym_SQUOTE, - STATE(2075), 3, + ACTIONS(4126), 1, + anon_sym_LPAREN, + STATE(1924), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53786] = 5, + [52013] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4462), 1, - anon_sym_DOLLARendif, - STATE(2076), 3, + ACTIONS(4290), 1, + anon_sym_RPAREN, + STATE(1925), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53804] = 5, + [52031] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1220), 1, + ACTIONS(4292), 1, anon_sym_RPAREN, - STATE(2077), 3, + STATE(1926), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53822] = 5, + [52049] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4464), 1, - anon_sym_SEMI, - STATE(2078), 3, + ACTIONS(4294), 1, + anon_sym_RPAREN, + STATE(1927), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53840] = 5, + [52067] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4466), 1, + ACTIONS(4296), 1, anon_sym_SEMI, - STATE(2079), 3, + STATE(1928), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53858] = 5, + [52085] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4468), 1, - anon_sym_SEMI, - STATE(2080), 3, + ACTIONS(4298), 1, + anon_sym_DOLLARendfor, + STATE(1929), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53876] = 5, + [52103] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4470), 1, - anon_sym_DOLLARendif, - STATE(2081), 3, + ACTIONS(4300), 1, + anon_sym_DOLLARendforeach, + STATE(1930), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53894] = 5, + [52121] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4472), 1, - anon_sym_BQUOTE, - STATE(2082), 3, + ACTIONS(4302), 1, + anon_sym_SEMI, + STATE(1931), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53912] = 5, + [52139] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4474), 1, - anon_sym_LBRACE, - STATE(2083), 3, + ACTIONS(4304), 1, + anon_sym_SEMI, + STATE(1932), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53930] = 5, + [52157] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4476), 1, + ACTIONS(3522), 1, anon_sym_SEMI, - STATE(2084), 3, + STATE(1933), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53948] = 5, + [52175] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4478), 1, - anon_sym_SEMI, - STATE(2085), 3, + ACTIONS(4156), 1, + sym_ident, + STATE(1934), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53966] = 5, + [52193] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4480), 1, - anon_sym_SEMI, - STATE(2086), 3, + ACTIONS(4306), 1, + anon_sym_RBRACK, + STATE(1935), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53984] = 5, + [52211] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4482), 1, - anon_sym_QMARK, - STATE(2087), 3, + ACTIONS(4308), 1, + sym_integer_literal, + STATE(1936), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54002] = 5, + [52229] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4484), 1, + ACTIONS(4310), 1, anon_sym_SEMI, - STATE(2088), 3, + STATE(1937), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54020] = 5, + [52247] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4486), 1, + ACTIONS(4312), 1, anon_sym_SEMI, - STATE(2089), 3, + STATE(1938), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54038] = 5, + [52265] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4488), 1, - anon_sym_COLON, - STATE(2090), 3, + ACTIONS(4314), 1, + anon_sym_RBRACK, + STATE(1939), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54056] = 5, + [52283] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4490), 1, - anon_sym_SEMI, - STATE(2091), 3, + ACTIONS(4316), 1, + anon_sym_RPAREN, + STATE(1940), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54074] = 5, + [52301] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4492), 1, - anon_sym_SEMI, - STATE(2092), 3, + ACTIONS(4318), 1, + anon_sym_DOLLARendif, + STATE(1941), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + [52319] = 5, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(3534), 1, + aux_sym_line_comment_token1, + ACTIONS(3536), 1, + anon_sym_SLASH_STAR_STAR, + ACTIONS(4320), 1, + aux_sym_raw_string_literal_token1, + STATE(1942), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54092] = 5, + [52337] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4494), 1, + ACTIONS(4322), 1, anon_sym_SEMI, - STATE(2093), 3, + STATE(1943), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54110] = 5, + [52355] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4496), 1, - anon_sym_LPAREN, - STATE(2094), 3, + ACTIONS(4324), 1, + anon_sym_SEMI, + STATE(1944), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54128] = 5, + [52373] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4498), 1, + ACTIONS(4326), 1, anon_sym_SEMI, - STATE(2095), 3, + STATE(1945), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54146] = 5, + [52391] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4500), 1, - anon_sym_SEMI, - STATE(2096), 3, + ACTIONS(4328), 1, + anon_sym_DOLLARendif, + STATE(1946), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54164] = 5, + [52409] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4502), 1, - anon_sym_LPAREN, - STATE(2097), 3, + ACTIONS(4330), 1, + anon_sym_SEMI, + STATE(1947), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54182] = 5, + [52427] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4504), 1, + ACTIONS(4332), 1, anon_sym_SEMI, - STATE(2098), 3, + STATE(1948), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54200] = 5, + [52445] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4506), 1, - anon_sym_DOLLARendif, - STATE(2099), 3, + ACTIONS(4334), 1, + anon_sym_SEMI, + STATE(1949), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54218] = 5, + [52463] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4508), 1, + ACTIONS(4336), 1, anon_sym_SEMI, - STATE(2100), 3, + STATE(1950), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54236] = 5, + [52481] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4510), 1, - anon_sym_LPAREN, - STATE(2101), 3, + ACTIONS(4338), 1, + anon_sym_SEMI, + STATE(1951), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54254] = 5, + [52499] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4512), 1, - anon_sym_LPAREN, - STATE(2102), 3, + ACTIONS(4340), 1, + anon_sym_RPAREN, + STATE(1952), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54272] = 5, + [52517] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4514), 1, - anon_sym_LPAREN, - STATE(2103), 3, + ACTIONS(4342), 1, + anon_sym_SEMI, + STATE(1953), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54290] = 5, + [52535] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4516), 1, - anon_sym_SEMI, - STATE(2104), 3, + ACTIONS(4344), 1, + sym_integer_literal, + STATE(1954), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54308] = 5, + [52553] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4518), 1, - anon_sym_LBRACE, - STATE(2105), 3, + ACTIONS(4346), 1, + anon_sym_SEMI, + STATE(1955), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54326] = 5, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(3519), 1, + [52571] = 5, + ACTIONS(3), 1, aux_sym_line_comment_token1, - ACTIONS(3521), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, - ACTIONS(4520), 1, - aux_sym_raw_string_literal_token1, - STATE(2106), 3, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(4348), 1, + anon_sym_SEMI, + STATE(1956), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54344] = 5, + [52589] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4522), 1, - anon_sym_EQ, - STATE(2107), 3, + ACTIONS(4350), 1, + anon_sym_SEMI, + STATE(1957), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54362] = 5, + [52607] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4524), 1, - anon_sym_RBRACE, - STATE(2108), 3, + ACTIONS(4352), 1, + anon_sym_SEMI, + STATE(1958), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54380] = 5, + [52625] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4526), 1, + ACTIONS(4354), 1, anon_sym_SEMI, - STATE(2109), 3, + STATE(1959), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54398] = 5, + [52643] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4528), 1, + ACTIONS(4356), 1, anon_sym_SEMI, - STATE(2110), 3, + STATE(1960), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54416] = 5, + [52661] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4530), 1, + ACTIONS(4358), 1, anon_sym_SEMI, - STATE(2111), 3, + STATE(1961), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54434] = 5, + [52679] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4532), 1, - anon_sym_SEMI, - STATE(2112), 3, + ACTIONS(3086), 1, + anon_sym_RBRACE, + STATE(1962), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54452] = 5, + [52697] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4534), 1, - anon_sym_SEMI, - STATE(2113), 3, + ACTIONS(4360), 1, + sym_ident, + STATE(1963), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54470] = 5, + [52715] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4536), 1, + ACTIONS(4362), 1, anon_sym_SEMI, - STATE(2114), 3, + STATE(1964), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54488] = 5, + [52733] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4538), 1, + ACTIONS(4364), 1, anon_sym_SEMI, - STATE(2115), 3, + STATE(1965), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54506] = 5, + [52751] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4540), 1, - anon_sym_DOLLARendif, - STATE(2116), 3, + ACTIONS(4366), 1, + anon_sym_SEMI, + STATE(1966), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54524] = 5, + [52769] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4542), 1, - sym_ident, - STATE(2117), 3, + ACTIONS(4368), 1, + anon_sym_LPAREN, + STATE(1967), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54542] = 5, + [52787] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4544), 1, - anon_sym_SEMI, - STATE(2118), 3, + ACTIONS(4370), 1, + sym_ct_ident, + STATE(1968), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54560] = 5, + [52805] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4546), 1, - anon_sym_DOLLARendfor, - STATE(2119), 3, + ACTIONS(4372), 1, + anon_sym_SEMI, + STATE(1969), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54578] = 5, + [52823] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4548), 1, + ACTIONS(4374), 1, anon_sym_SEMI, - STATE(2120), 3, + STATE(1970), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54596] = 5, + [52841] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4550), 1, - anon_sym_SEMI, - STATE(2121), 3, + ACTIONS(4376), 1, + anon_sym_STAR_SLASH, + STATE(1971), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54614] = 5, + [52859] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4552), 1, - anon_sym_LPAREN, - STATE(2122), 3, + ACTIONS(3540), 1, + anon_sym_SEMI, + STATE(1972), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54632] = 5, + [52877] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4554), 1, - anon_sym_RPAREN, - STATE(2123), 3, + ACTIONS(4378), 1, + anon_sym_SEMI, + STATE(1973), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54650] = 5, + [52895] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4556), 1, - anon_sym_DOLLARendfor, - STATE(2124), 3, + ACTIONS(2569), 1, + anon_sym_RPAREN, + STATE(1974), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54668] = 5, + [52913] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4558), 1, - anon_sym_DOLLARendforeach, - STATE(2125), 3, + ACTIONS(3468), 1, + anon_sym_SEMI, + STATE(1975), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54686] = 5, + [52931] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4560), 1, + ACTIONS(4380), 1, anon_sym_SEMI, - STATE(2126), 3, + STATE(1976), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54704] = 5, + [52949] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4562), 1, + ACTIONS(4382), 1, anon_sym_SEMI, - STATE(2127), 3, + STATE(1977), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54722] = 5, + [52967] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4564), 1, - anon_sym_SEMI, - STATE(2128), 3, + ACTIONS(4384), 1, + anon_sym_COLON, + STATE(1978), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54740] = 5, + [52985] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4566), 1, + ACTIONS(4386), 1, anon_sym_SEMI, - STATE(2129), 3, + STATE(1979), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54758] = 5, + [53003] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, - anon_sym_RPAREN, - STATE(2130), 3, + ACTIONS(4388), 1, + anon_sym_SEMI, + STATE(1980), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54776] = 5, + [53021] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4570), 1, + ACTIONS(4390), 1, anon_sym_SEMI, - STATE(2131), 3, + STATE(1981), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54794] = 5, + [53039] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4572), 1, - anon_sym_SEMI, - STATE(2132), 3, + ACTIONS(4392), 1, + anon_sym_DOLLARendif, + STATE(1982), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54812] = 5, + [53057] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, + ACTIONS(4394), 1, anon_sym_RPAREN, - STATE(2133), 3, + STATE(1983), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54830] = 5, + [53075] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4576), 1, - sym_ct_ident, - STATE(2134), 3, + ACTIONS(3078), 1, + anon_sym_RBRACE, + STATE(1984), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54848] = 5, + [53093] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4578), 1, - anon_sym_DOLLARendif, - STATE(2135), 3, + ACTIONS(4396), 1, + anon_sym_SEMI, + STATE(1985), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54866] = 5, + [53111] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4360), 1, - anon_sym_LPAREN, - STATE(2136), 3, + ACTIONS(3100), 1, + anon_sym_SEMI, + STATE(1986), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54884] = 5, + [53129] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4580), 1, - anon_sym_SEMI, - STATE(2137), 3, + ACTIONS(4398), 1, + sym_const_ident, + STATE(1987), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54902] = 5, + [53147] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4582), 1, - anon_sym_SEMI, - STATE(2138), 3, + ACTIONS(4400), 1, + anon_sym_LPAREN, + STATE(1988), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54920] = 5, + [53165] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4584), 1, + ACTIONS(4402), 1, anon_sym_SEMI, - STATE(2139), 3, + STATE(1989), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54938] = 5, + [53183] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4586), 1, - anon_sym_DOLLARendif, - STATE(2140), 3, + ACTIONS(4404), 1, + anon_sym_SEMI, + STATE(1990), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54956] = 5, + [53201] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4588), 1, - anon_sym_RPAREN, - STATE(2141), 3, + ACTIONS(4406), 1, + anon_sym_SEMI, + STATE(1991), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54974] = 5, + [53219] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4368), 1, - sym_ident, - STATE(2142), 3, + ACTIONS(4408), 1, + anon_sym_SEMI, + STATE(1992), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54992] = 5, + [53237] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4590), 1, + ACTIONS(4410), 1, anon_sym_SEMI, - STATE(2143), 3, + STATE(1993), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55010] = 5, + [53255] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4592), 1, - anon_sym_COLON, - STATE(2144), 3, + ACTIONS(3146), 1, + sym_integer_literal, + STATE(1994), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55028] = 5, + [53273] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4594), 1, + ACTIONS(4412), 1, anon_sym_SEMI, - STATE(2145), 3, + STATE(1995), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55046] = 5, + [53291] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4596), 1, - anon_sym_COLON, - STATE(2146), 3, + ACTIONS(3430), 1, + sym_ident, + STATE(1996), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55064] = 5, + [53309] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4598), 1, - anon_sym_LPAREN, - STATE(2147), 3, + ACTIONS(4414), 1, + anon_sym_SEMI, + STATE(1997), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55082] = 5, + [53327] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4600), 1, - anon_sym_SEMI, - STATE(2148), 3, + ACTIONS(4416), 1, + anon_sym_COLON, + STATE(1998), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55100] = 5, + [53345] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4602), 1, - anon_sym_SEMI, - STATE(2149), 3, + ACTIONS(4418), 1, + anon_sym_EQ, + STATE(1999), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55118] = 5, + [53363] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4604), 1, + ACTIONS(4420), 1, anon_sym_SEMI, - STATE(2150), 3, + STATE(2000), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55136] = 5, + [53381] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4606), 1, - anon_sym_COLON, - STATE(2151), 3, + ACTIONS(4422), 1, + anon_sym_SEMI, + STATE(2001), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55154] = 5, + [53399] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4608), 1, + ACTIONS(4424), 1, anon_sym_SEMI, - STATE(2152), 3, + STATE(2002), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55172] = 5, + [53417] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4610), 1, - anon_sym_SEMI, - STATE(2153), 3, + ACTIONS(4426), 1, + anon_sym_RPAREN, + STATE(2003), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55190] = 5, + [53435] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4612), 1, - anon_sym_SEMI, - STATE(2154), 3, + ACTIONS(4428), 1, + anon_sym_RPAREN, + STATE(2004), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55208] = 5, + [53453] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4614), 1, - anon_sym_SEMI, - STATE(2155), 3, + ACTIONS(4430), 1, + anon_sym_DOLLARendif, + STATE(2005), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55226] = 5, + [53471] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4616), 1, - anon_sym_SEMI, - STATE(2156), 3, + ACTIONS(4432), 1, + anon_sym_DOLLARendfor, + STATE(2006), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55244] = 5, + [53489] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4618), 1, - anon_sym_SEMI, - STATE(2157), 3, + ACTIONS(4434), 1, + anon_sym_DOLLARendforeach, + STATE(2007), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55262] = 5, + [53507] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4620), 1, + ACTIONS(4436), 1, anon_sym_SEMI, - STATE(2158), 3, + STATE(2008), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55280] = 5, + [53525] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4622), 1, - sym_const_ident, - STATE(2159), 3, + ACTIONS(4438), 1, + anon_sym_SEMI, + STATE(2009), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55298] = 5, + [53543] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4624), 1, - sym_const_ident, - STATE(2160), 3, + ACTIONS(3548), 1, + anon_sym_SEMI, + STATE(2010), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55316] = 5, + [53561] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4626), 1, - anon_sym_RPAREN, - STATE(2161), 3, + ACTIONS(4440), 1, + anon_sym_DOLLARendfor, + STATE(2011), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55334] = 5, + [53579] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4628), 1, - anon_sym_RPAREN, - STATE(2162), 3, + ACTIONS(4442), 1, + anon_sym_SEMI, + STATE(2012), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55352] = 5, + [53597] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3210), 1, - sym_integer_literal, - STATE(2163), 3, + ACTIONS(4444), 1, + anon_sym_SEMI, + STATE(2013), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55370] = 5, + [53615] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4630), 1, - anon_sym_SEMI, - STATE(2164), 3, + ACTIONS(4446), 1, + anon_sym_DOLLARendforeach, + STATE(2014), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55388] = 5, + [53633] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4632), 1, - anon_sym_RPAREN, - STATE(2165), 3, + ACTIONS(4448), 1, + anon_sym_SEMI, + STATE(2015), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55406] = 5, + [53651] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2606), 1, + ACTIONS(4450), 1, anon_sym_SEMI, - STATE(2166), 3, + STATE(2016), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55424] = 5, + [53669] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_LPAREN, - STATE(2167), 3, + ACTIONS(4452), 1, + anon_sym_SEMI, + STATE(2017), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55442] = 5, + [53687] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4636), 1, - anon_sym_SEMI, - STATE(2168), 3, + ACTIONS(4454), 1, + anon_sym_DOLLARendif, + STATE(2018), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55460] = 5, + [53705] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, - anon_sym_SEMI, - STATE(2169), 3, + ACTIONS(4456), 1, + anon_sym_EQ, + STATE(2019), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55478] = 5, + [53723] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4640), 1, + ACTIONS(4458), 1, anon_sym_SEMI, - STATE(2170), 3, + STATE(2020), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55496] = 5, + [53741] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4642), 1, + ACTIONS(4460), 1, anon_sym_SEMI, - STATE(2171), 3, + STATE(2021), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55514] = 5, + [53759] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - sym_const_ident, - STATE(2172), 3, + ACTIONS(4462), 1, + anon_sym_SEMI, + STATE(2022), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55532] = 5, + [53777] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_SEMI, - STATE(2173), 3, + ACTIONS(4464), 1, + anon_sym_DOLLARendif, + STATE(2023), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55550] = 5, + [53795] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4648), 1, - anon_sym_SEMI, - STATE(2174), 3, + ACTIONS(4466), 1, + anon_sym_COLON, + STATE(2024), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55568] = 5, + [53813] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4650), 1, - anon_sym_DOLLARendforeach, - STATE(2175), 3, + ACTIONS(4468), 1, + anon_sym_LPAREN, + STATE(2025), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55586] = 5, + [53831] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4652), 1, - anon_sym_DOLLARendfor, - STATE(2176), 3, + ACTIONS(4470), 1, + anon_sym_SEMI, + STATE(2026), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55604] = 5, + [53849] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4654), 1, + ACTIONS(4472), 1, anon_sym_SEMI, - STATE(2177), 3, + STATE(2027), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55622] = 5, + [53867] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4656), 1, - anon_sym_EQ, - STATE(2178), 3, + ACTIONS(4474), 1, + anon_sym_SEMI, + STATE(2028), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55640] = 5, + [53885] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4658), 1, - anon_sym_LPAREN, - STATE(2179), 3, + ACTIONS(4476), 1, + anon_sym_DOLLARendif, + STATE(2029), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55658] = 5, + [53903] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4660), 1, - anon_sym_GT_RPAREN, - STATE(2180), 3, + ACTIONS(4478), 1, + anon_sym_SEMI, + STATE(2030), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55676] = 5, + [53921] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4662), 1, - anon_sym_COLON, - STATE(2181), 3, + ACTIONS(4480), 1, + anon_sym_EQ, + STATE(2031), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55694] = 5, + [53939] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4664), 1, + ACTIONS(4482), 1, anon_sym_SEMI, - STATE(2182), 3, + STATE(2032), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55712] = 5, + [53957] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4666), 1, + ACTIONS(4484), 1, anon_sym_SEMI, - STATE(2183), 3, + STATE(2033), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55730] = 5, + [53975] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4668), 1, + ACTIONS(3450), 1, anon_sym_SEMI, - STATE(2184), 3, + STATE(2034), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55748] = 5, + [53993] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4670), 1, - anon_sym_LPAREN, - STATE(2185), 3, + ACTIONS(4486), 1, + anon_sym_SEMI, + STATE(2035), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55766] = 5, + [54011] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_RPAREN, - STATE(2186), 3, + ACTIONS(4488), 1, + anon_sym_SEMI, + STATE(2036), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55784] = 5, + [54029] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4674), 1, - sym_ident, - STATE(2187), 3, + ACTIONS(4490), 1, + anon_sym_SEMI, + STATE(2037), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55802] = 5, + [54047] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4676), 1, - anon_sym_COLON, - STATE(2188), 3, + ACTIONS(4492), 1, + anon_sym_SEMI, + STATE(2038), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55820] = 5, + [54065] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4678), 1, - anon_sym_SEMI, - STATE(2189), 3, + ACTIONS(4494), 1, + anon_sym_DOLLARendforeach, + STATE(2039), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55838] = 5, + [54083] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4680), 1, - anon_sym_LBRACE, - STATE(2190), 3, + ACTIONS(4496), 1, + anon_sym_DOLLARendfor, + STATE(2040), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55856] = 5, + [54101] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4682), 1, - anon_sym_RBRACK, - STATE(2191), 3, + ACTIONS(4498), 1, + anon_sym_LPAREN, + STATE(2041), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55874] = 5, + [54119] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4684), 1, - sym_ident, - STATE(2192), 3, + ACTIONS(3914), 1, + anon_sym_RBRACK, + STATE(2042), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55892] = 5, + [54137] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4686), 1, - anon_sym_SEMI, - STATE(2193), 3, + ACTIONS(4500), 1, + sym_const_ident, + STATE(2043), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55910] = 5, + [54155] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4688), 1, - anon_sym_SEMI, - STATE(2194), 3, + ACTIONS(4502), 1, + anon_sym_EQ, + STATE(2044), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55928] = 5, + [54173] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4690), 1, - sym_ident, - STATE(2195), 3, + ACTIONS(4504), 1, + anon_sym_EQ, + STATE(2045), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55946] = 5, + [54191] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4692), 1, - sym_ident, - STATE(2196), 3, + ACTIONS(4506), 1, + anon_sym_SEMI, + STATE(2046), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55964] = 5, + [54209] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4694), 1, - anon_sym_EQ, - STATE(2197), 3, + ACTIONS(4508), 1, + anon_sym_SEMI, + STATE(2047), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55982] = 5, + [54227] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4696), 1, - anon_sym_DOLLARendif, - STATE(2198), 3, + ACTIONS(4510), 1, + anon_sym_SEMI, + STATE(2048), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56000] = 5, + [54245] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4698), 1, - anon_sym_LPAREN, - STATE(2199), 3, + ACTIONS(4512), 1, + anon_sym_SEMI, + STATE(2049), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56018] = 5, + [54263] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4700), 1, - anon_sym_EQ, - STATE(2200), 3, + ACTIONS(4514), 1, + anon_sym_SEMI, + STATE(2050), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56036] = 5, + [54281] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4702), 1, + ACTIONS(4516), 1, anon_sym_SEMI, - STATE(2201), 3, + STATE(2051), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56054] = 5, + [54299] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, + ACTIONS(3312), 1, anon_sym_SEMI, - STATE(2202), 3, + STATE(2052), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56072] = 5, + [54317] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4706), 1, + ACTIONS(4518), 1, anon_sym_SEMI, - STATE(2203), 3, + STATE(2053), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56090] = 5, + [54335] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4708), 1, - anon_sym_DOLLARendif, - STATE(2204), 3, + ACTIONS(4520), 1, + anon_sym_SEMI, + STATE(2054), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56108] = 5, + [54353] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4710), 1, + ACTIONS(4522), 1, anon_sym_SEMI, - STATE(2205), 3, + STATE(2055), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56126] = 5, + [54371] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4712), 1, + ACTIONS(4524), 1, anon_sym_SEMI, - STATE(2206), 3, + STATE(2056), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56144] = 5, + [54389] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4714), 1, - anon_sym_DOLLARendif, - STATE(2207), 3, + ACTIONS(4526), 1, + anon_sym_SEMI, + STATE(2057), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56162] = 5, + [54407] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4716), 1, + ACTIONS(4528), 1, anon_sym_SEMI, - STATE(2208), 3, + STATE(2058), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56180] = 5, + [54425] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4718), 1, + ACTIONS(4530), 1, anon_sym_SEMI, - STATE(2209), 3, + STATE(2059), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56198] = 5, + [54443] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4720), 1, - anon_sym_RPAREN, - STATE(2210), 3, + ACTIONS(4532), 1, + anon_sym_SEMI, + STATE(2060), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56216] = 5, + [54461] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4722), 1, - anon_sym_SEMI, - STATE(2211), 3, + ACTIONS(4534), 1, + anon_sym_RBRACK, + STATE(2061), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56234] = 5, + [54479] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4724), 1, - sym_ct_ident, - STATE(2212), 3, + ACTIONS(4536), 1, + anon_sym_SEMI, + STATE(2062), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56252] = 5, + [54497] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4726), 1, - anon_sym_SEMI, - STATE(2213), 3, + ACTIONS(4538), 1, + anon_sym_LBRACE, + STATE(2063), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56270] = 5, + [54515] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4728), 1, - anon_sym_EQ, - STATE(2214), 3, + ACTIONS(4140), 1, + sym_const_ident, + STATE(2064), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56288] = 5, + [54533] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4730), 1, - anon_sym_EQ, - STATE(2215), 3, + ACTIONS(4540), 1, + anon_sym_DOT, + STATE(2065), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56306] = 5, + [54551] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4732), 1, + ACTIONS(3570), 1, anon_sym_SEMI, - STATE(2216), 3, + STATE(2066), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56324] = 5, + [54569] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4734), 1, + ACTIONS(4542), 1, anon_sym_SEMI, - STATE(2217), 3, + STATE(2067), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56342] = 5, + [54587] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4736), 1, - anon_sym_DOLLARendforeach, - STATE(2218), 3, + ACTIONS(4544), 1, + anon_sym_SEMI, + STATE(2068), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56360] = 5, + [54605] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4738), 1, - anon_sym_DOLLARendfor, - STATE(2219), 3, + ACTIONS(4546), 1, + anon_sym_RPAREN, + STATE(2069), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56378] = 5, + [54623] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4740), 1, + ACTIONS(4548), 1, anon_sym_SEMI, - STATE(2220), 3, + STATE(2070), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56396] = 5, + [54641] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4742), 1, + ACTIONS(4550), 1, anon_sym_SEMI, - STATE(2221), 3, + STATE(2071), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56414] = 5, + [54659] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4744), 1, - anon_sym_LPAREN, - STATE(2222), 3, + ACTIONS(4552), 1, + anon_sym_LBRACE, + STATE(2072), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56432] = 5, + [54677] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4746), 1, + ACTIONS(4554), 1, anon_sym_SEMI, - STATE(2223), 3, + STATE(2073), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56450] = 5, + [54695] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1224), 1, - anon_sym_RPAREN, - STATE(2224), 3, + ACTIONS(4556), 1, + anon_sym_SEMI, + STATE(2074), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56468] = 5, + [54713] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4748), 1, - anon_sym_RPAREN, - STATE(2225), 3, + ACTIONS(4558), 1, + anon_sym_SEMI, + STATE(2075), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56486] = 5, + [54731] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4750), 1, - sym_const_ident, - STATE(2226), 3, + ACTIONS(4560), 1, + anon_sym_SEMI, + STATE(2076), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56504] = 5, + [54749] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3120), 1, - anon_sym_SEMI, - STATE(2227), 3, + ACTIONS(4562), 1, + anon_sym_GT_RPAREN, + STATE(2077), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56522] = 5, + [54767] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4752), 1, + ACTIONS(3070), 1, anon_sym_SEMI, - STATE(2228), 3, + STATE(2078), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56540] = 5, + [54785] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4754), 1, - anon_sym_SEMI, - STATE(2229), 3, + ACTIONS(4564), 1, + sym_ident, + STATE(2079), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56558] = 5, + [54803] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4756), 1, - anon_sym_LBRACE, - STATE(2230), 3, + ACTIONS(4566), 1, + sym_const_ident, + STATE(2080), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56576] = 5, + [54821] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4758), 1, - anon_sym_EQ, - STATE(2231), 3, + ACTIONS(4568), 1, + anon_sym_SEMI, + STATE(2081), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56594] = 5, + [54839] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4760), 1, + ACTIONS(4570), 1, anon_sym_SEMI, - STATE(2232), 3, + STATE(2082), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56612] = 5, + [54857] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4762), 1, + ACTIONS(4572), 1, anon_sym_SEMI, - STATE(2233), 3, + STATE(2083), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56630] = 5, + [54875] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4764), 1, - anon_sym_COLON, - STATE(2234), 3, + ACTIONS(1207), 1, + anon_sym_RPAREN, + STATE(2084), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56648] = 5, + [54893] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4766), 1, - anon_sym_SEMI, - STATE(2235), 3, + ACTIONS(4574), 1, + anon_sym_COLON, + STATE(2085), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56666] = 5, + [54911] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4768), 1, - anon_sym_GT_RPAREN, - STATE(2236), 3, + ACTIONS(4576), 1, + sym_ct_ident, + STATE(2086), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56684] = 5, + [54929] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4288), 1, - sym_const_ident, - STATE(2237), 3, + ACTIONS(4578), 1, + anon_sym_COLON, + STATE(2087), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56702] = 5, + [54947] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4770), 1, - anon_sym_SEMI, - STATE(2238), 3, + ACTIONS(4580), 1, + anon_sym_LBRACE, + STATE(2088), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56720] = 5, + [54965] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4772), 1, - anon_sym_RPAREN, - STATE(2239), 3, + ACTIONS(4582), 1, + anon_sym_SEMI, + STATE(2089), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56738] = 5, + [54983] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4774), 1, + ACTIONS(4584), 1, anon_sym_SEMI, - STATE(2240), 3, + STATE(2090), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56756] = 5, + [55001] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4776), 1, - anon_sym_SEMI, - STATE(2241), 3, + ACTIONS(4586), 1, + anon_sym_GT_RPAREN, + STATE(2091), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56774] = 5, + [55019] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4778), 1, - anon_sym_LBRACE, - STATE(2242), 3, + ACTIONS(1191), 1, + anon_sym_RPAREN, + STATE(2092), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56792] = 5, + [55037] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4780), 1, + ACTIONS(4588), 1, anon_sym_SEMI, - STATE(2243), 3, + STATE(2093), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56810] = 5, + [55055] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3160), 1, - anon_sym_RBRACE, - STATE(2244), 3, + ACTIONS(2348), 1, + anon_sym_COLON_COLON, + STATE(2094), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56828] = 5, + [55073] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4782), 1, - anon_sym_SEMI, - STATE(2245), 3, + ACTIONS(4590), 1, + anon_sym_LPAREN, + STATE(2095), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56846] = 5, + [55091] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4784), 1, - anon_sym_RPAREN, - STATE(2246), 3, + ACTIONS(4592), 1, + anon_sym_LPAREN, + STATE(2096), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56864] = 5, + [55109] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4786), 1, - anon_sym_SEMI, - STATE(2247), 3, + ACTIONS(4594), 1, + anon_sym_COLON, + STATE(2097), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56882] = 5, + [55127] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4788), 1, + ACTIONS(4596), 1, anon_sym_RPAREN, - STATE(2248), 3, + STATE(2098), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56900] = 5, + [55145] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4790), 1, - anon_sym_LPAREN, - STATE(2249), 3, + ACTIONS(4598), 1, + anon_sym_LBRACE, + STATE(2099), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56918] = 5, + [55163] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4792), 1, + ACTIONS(3641), 1, anon_sym_SEMI, - STATE(2250), 3, + STATE(2100), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56936] = 5, + [55181] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4794), 1, - anon_sym_LPAREN, - STATE(2251), 3, + ACTIONS(4600), 1, + anon_sym_RPAREN, + STATE(2101), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56954] = 5, + [55199] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, - anon_sym_SEMI, - STATE(2252), 3, + ACTIONS(4602), 1, + anon_sym_LPAREN, + STATE(2102), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56972] = 5, + [55217] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4796), 1, - sym_ident, - STATE(2253), 3, + ACTIONS(4604), 1, + anon_sym_RPAREN, + STATE(2103), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56990] = 5, + [55235] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4798), 1, - anon_sym_SEMI, - STATE(2254), 3, + ACTIONS(4606), 1, + anon_sym_RPAREN, + STATE(2104), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57008] = 5, + [55253] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4800), 1, - sym_const_ident, - STATE(2255), 3, + ACTIONS(4608), 1, + anon_sym_DOLLARendif, + STATE(2105), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57026] = 5, + [55271] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4802), 1, - anon_sym_RPAREN, - STATE(2256), 3, + ACTIONS(4610), 1, + anon_sym_SEMI, + STATE(2106), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57044] = 5, + [55289] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4804), 1, - anon_sym_EQ, - STATE(2257), 3, + ACTIONS(4612), 1, + anon_sym_SEMI, + STATE(2107), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57062] = 5, + [55307] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4806), 1, - sym_ident, - STATE(2258), 3, + ACTIONS(4614), 1, + anon_sym_STAR_SLASH, + STATE(2108), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57080] = 5, + [55325] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3174), 1, - anon_sym_SEMI, - STATE(2259), 3, + ACTIONS(4616), 1, + anon_sym_DOLLARendif, + STATE(2109), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57098] = 5, + [55343] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4808), 1, - anon_sym_EQ, - STATE(2260), 3, + ACTIONS(4618), 1, + sym_ident, + STATE(2110), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57116] = 5, + [55361] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4810), 1, - anon_sym_COLON_COLON, - STATE(2261), 3, + ACTIONS(4620), 1, + sym_const_ident, + STATE(2111), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57134] = 5, + [55379] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4812), 1, - anon_sym_RPAREN, - STATE(2262), 3, + ACTIONS(4622), 1, + anon_sym_SEMI, + STATE(2112), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57152] = 5, + [55397] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4814), 1, + ACTIONS(4624), 1, anon_sym_SEMI, - STATE(2263), 3, + STATE(2113), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57170] = 5, + [55415] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4816), 1, - sym_ident, - STATE(2264), 3, + ACTIONS(4626), 1, + anon_sym_RPAREN, + STATE(2114), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57188] = 5, + [55433] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4818), 1, - anon_sym_SEMI, - STATE(2265), 3, + ACTIONS(4628), 1, + sym_ident, + STATE(2115), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57206] = 5, + [55451] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4820), 1, - anon_sym_RBRACK, - STATE(2266), 3, + ACTIONS(4630), 1, + sym_ident, + STATE(2116), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57224] = 5, + [55469] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4822), 1, - sym_integer_literal, - STATE(2267), 3, + ACTIONS(4632), 1, + anon_sym_SEMI, + STATE(2117), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57242] = 5, + [55487] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4824), 1, + ACTIONS(4634), 1, anon_sym_SEMI, - STATE(2268), 3, + STATE(2118), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57260] = 5, + [55505] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4826), 1, - anon_sym_SEMI, - STATE(2269), 3, + ACTIONS(4636), 1, + anon_sym_DOLLARendif, + STATE(2119), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57278] = 5, + [55523] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4828), 1, + ACTIONS(2737), 1, anon_sym_SEMI, - STATE(2270), 3, + STATE(2120), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57296] = 5, + [55541] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4830), 1, + ACTIONS(4638), 1, anon_sym_SEMI, - STATE(2271), 3, + STATE(2121), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57314] = 5, + [55559] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4832), 1, - anon_sym_LBRACE, - STATE(2272), 3, + ACTIONS(4640), 1, + anon_sym_SEMI, + STATE(2122), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57332] = 5, + [55577] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4834), 1, - anon_sym_RBRACK, - STATE(2273), 3, + ACTIONS(4642), 1, + sym_type_ident, + STATE(2123), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57350] = 5, + [55595] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4836), 1, - anon_sym_GT_RPAREN, - STATE(2274), 3, + ACTIONS(4644), 1, + anon_sym_RPAREN, + STATE(2124), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57368] = 5, + [55613] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2219), 1, - anon_sym_COLON_COLON, - STATE(2275), 3, + ACTIONS(3576), 1, + anon_sym_SEMI, + STATE(2125), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57386] = 5, + [55631] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4838), 1, + ACTIONS(4646), 1, anon_sym_SEMI, - STATE(2276), 3, + STATE(2126), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57404] = 5, + [55649] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4840), 1, - anon_sym_SEMI, - STATE(2277), 3, + ACTIONS(4648), 1, + anon_sym_LPAREN, + STATE(2127), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57422] = 5, + [55667] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4842), 1, - anon_sym_RPAREN, - STATE(2278), 3, + ACTIONS(4650), 1, + anon_sym_LBRACE, + STATE(2128), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57440] = 5, + [55685] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4844), 1, + ACTIONS(4652), 1, anon_sym_SEMI, - STATE(2279), 3, + STATE(2129), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57458] = 5, + [55703] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4846), 1, - anon_sym_LPAREN, - STATE(2280), 3, + ACTIONS(4654), 1, + sym_ident, + STATE(2130), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57476] = 5, + [55721] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4848), 1, - anon_sym_STAR_SLASH, - STATE(2281), 3, + ACTIONS(4656), 1, + anon_sym_DOLLARendforeach, + STATE(2131), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57494] = 5, + [55739] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4850), 1, - anon_sym_STAR_SLASH, - STATE(2282), 3, + ACTIONS(4658), 1, + anon_sym_DOLLARendfor, + STATE(2132), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57512] = 5, + [55757] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4852), 1, - sym_ident, - STATE(2283), 3, + ACTIONS(4660), 1, + anon_sym_RPAREN, + STATE(2133), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57530] = 5, + [55775] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4854), 1, - sym_const_ident, - STATE(2284), 3, + ACTIONS(4662), 1, + anon_sym_LPAREN, + STATE(2134), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57548] = 5, + [55793] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4856), 1, - anon_sym_SEMI, - STATE(2285), 3, + ACTIONS(4664), 1, + anon_sym_DOT, + STATE(2135), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57566] = 5, + [55811] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4858), 1, - sym_integer_literal, - STATE(2286), 3, + ACTIONS(4666), 1, + anon_sym_SEMI, + STATE(2136), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57584] = 5, + [55829] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4860), 1, - sym_integer_literal, - STATE(2287), 3, + ACTIONS(4668), 1, + anon_sym_RPAREN, + STATE(2137), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57602] = 5, + [55847] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4862), 1, - sym_integer_literal, - STATE(2288), 3, + ACTIONS(4670), 1, + anon_sym_SEMI, + STATE(2138), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57620] = 5, + [55865] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4864), 1, + ACTIONS(4672), 1, anon_sym_SEMI, - STATE(2289), 3, + STATE(2139), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57638] = 5, + [55883] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4866), 1, - anon_sym_DOT, - STATE(2290), 3, + ACTIONS(4674), 1, + sym_const_ident, + STATE(2140), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57656] = 5, + [55901] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4868), 1, + ACTIONS(4676), 1, anon_sym_SEMI, - STATE(2291), 3, + STATE(2141), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57674] = 5, + [55919] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4870), 1, + ACTIONS(4678), 1, anon_sym_SEMI, - STATE(2292), 3, + STATE(2142), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57692] = 5, + [55937] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4872), 1, - anon_sym_GT_RPAREN, - STATE(2293), 3, + ACTIONS(4680), 1, + anon_sym_COLON, + STATE(2143), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57710] = 5, + [55955] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, - anon_sym_DOLLARendif, - STATE(2294), 3, + ACTIONS(3610), 1, + anon_sym_COLON, + STATE(2144), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57728] = 5, + [55973] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4876), 1, - anon_sym_RPAREN, - STATE(2295), 3, + ACTIONS(4682), 1, + anon_sym_SEMI, + STATE(2145), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57746] = 5, + [55991] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4878), 1, - sym_type_ident, - STATE(2296), 3, + ACTIONS(4684), 1, + anon_sym_SEMI, + STATE(2146), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57764] = 5, + [56009] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4880), 1, - anon_sym_SEMI, - STATE(2297), 3, + ACTIONS(4686), 1, + ts_builtin_sym_end, + STATE(2147), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57782] = 5, + [56027] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4882), 1, + ACTIONS(4688), 1, anon_sym_SEMI, - STATE(2298), 3, + STATE(2148), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57800] = 5, + [56045] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4884), 1, - anon_sym_SEMI, - STATE(2299), 3, + ACTIONS(4690), 1, + anon_sym_EQ, + STATE(2149), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57818] = 5, + [56063] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4886), 1, - anon_sym_SEMI, - STATE(2300), 3, + ACTIONS(4692), 1, + anon_sym_EQ, + STATE(2150), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57836] = 5, + [56081] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4888), 1, + ACTIONS(4694), 1, anon_sym_LBRACE, - STATE(2301), 3, + STATE(2151), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57854] = 5, + [56099] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4890), 1, - anon_sym_RBRACK, - STATE(2302), 3, + ACTIONS(4696), 1, + anon_sym_LPAREN, + STATE(2152), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57872] = 5, + [56117] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4892), 1, - sym_ident, - STATE(2303), 3, + ACTIONS(4698), 1, + anon_sym_COLON, + STATE(2153), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57890] = 5, + [56135] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4894), 1, + ACTIONS(4700), 1, anon_sym_SEMI, - STATE(2304), 3, + STATE(2154), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57908] = 5, + [56153] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4896), 1, - anon_sym_DOLLARendif, - STATE(2305), 3, + ACTIONS(4702), 1, + anon_sym_EQ, + STATE(2155), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57926] = 5, + [56171] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4898), 1, - anon_sym_SEMI, - STATE(2306), 3, + ACTIONS(4704), 1, + anon_sym_LBRACE, + STATE(2156), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57944] = 5, + [56189] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3156), 1, - anon_sym_SEMI, - STATE(2307), 3, + ACTIONS(4706), 1, + anon_sym_LBRACE, + STATE(2157), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57962] = 5, + [56207] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4900), 1, - anon_sym_SEMI, - STATE(2308), 3, + ACTIONS(4708), 1, + anon_sym_RPAREN, + STATE(2158), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57980] = 5, + [56225] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, + ACTIONS(3624), 1, anon_sym_SEMI, - STATE(2309), 3, + STATE(2159), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57998] = 5, + [56243] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4904), 1, - anon_sym_SEMI, - STATE(2310), 3, + ACTIONS(4710), 1, + anon_sym_LPAREN, + STATE(2160), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58016] = 5, + [56261] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4906), 1, + ACTIONS(4712), 1, anon_sym_SEMI, - STATE(2311), 3, + STATE(2161), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58034] = 5, + [56279] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4908), 1, - ts_builtin_sym_end, - STATE(2312), 3, + ACTIONS(4714), 1, + anon_sym_RPAREN, + STATE(2162), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58052] = 5, + [56297] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4910), 1, - sym_const_ident, - STATE(2313), 3, + ACTIONS(4716), 1, + anon_sym_RPAREN, + STATE(2163), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58070] = 5, + [56315] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4912), 1, - anon_sym_RBRACE, - STATE(2314), 3, + ACTIONS(4718), 1, + sym_ident, + STATE(2164), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58088] = 5, + [56333] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4914), 1, - anon_sym_DOLLARendforeach, - STATE(2315), 3, + ACTIONS(4720), 1, + anon_sym_SEMI, + STATE(2165), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58106] = 5, + [56351] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4916), 1, - anon_sym_RPAREN, - STATE(2316), 3, + ACTIONS(4722), 1, + anon_sym_SEMI, + STATE(2166), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58124] = 5, + [56369] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4918), 1, - anon_sym_COLON, - STATE(2317), 3, + ACTIONS(3491), 1, + anon_sym_SEMI, + STATE(2167), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58142] = 5, + [56387] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4920), 1, + ACTIONS(4724), 1, anon_sym_RPAREN, - STATE(2318), 3, + STATE(2168), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58160] = 5, + [56405] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4922), 1, - anon_sym_SEMI, - STATE(2319), 3, + ACTIONS(4726), 1, + sym_const_ident, + STATE(2169), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58178] = 5, + [56423] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4924), 1, - anon_sym_LPAREN, - STATE(2320), 3, + ACTIONS(4728), 1, + anon_sym_RPAREN, + STATE(2170), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58196] = 5, + [56441] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4926), 1, - anon_sym_DOLLARendfor, - STATE(2321), 3, + ACTIONS(4730), 1, + anon_sym_RPAREN, + STATE(2171), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58214] = 5, + [56459] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4928), 1, - anon_sym_EQ, - STATE(2322), 3, + ACTIONS(4732), 1, + anon_sym_SEMI, + STATE(2172), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58232] = 5, + [56477] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4930), 1, - anon_sym_LPAREN, - STATE(2323), 3, + ACTIONS(4734), 1, + anon_sym_SEMI, + STATE(2173), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58250] = 5, + [56495] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4736), 1, anon_sym_SEMI, - STATE(2324), 3, + STATE(2174), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58268] = 5, + [56513] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4934), 1, - anon_sym_LPAREN, - STATE(2325), 3, + ACTIONS(4738), 1, + anon_sym_SEMI, + STATE(2175), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58286] = 5, + [56531] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3452), 1, - sym_ident, - STATE(2326), 3, + ACTIONS(4740), 1, + sym_type_ident, + STATE(2176), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58304] = 5, + [56549] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_LBRACE, - STATE(2327), 3, + ACTIONS(4742), 1, + anon_sym_SEMI, + STATE(2177), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58322] = 5, + [56567] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_EQ, - STATE(2328), 3, + ACTIONS(4744), 1, + anon_sym_SEMI, + STATE(2178), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58340] = 5, + [56585] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4940), 1, - anon_sym_SEMI, - STATE(2329), 3, + ACTIONS(4746), 1, + anon_sym_RBRACK, + STATE(2179), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58358] = 5, + [56603] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4942), 1, - anon_sym_LBRACE, - STATE(2330), 3, + ACTIONS(4748), 1, + sym_ident, + STATE(2180), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58376] = 5, + [56621] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4944), 1, - anon_sym_SEMI, - STATE(2331), 3, + ACTIONS(4750), 1, + sym_type_ident, + STATE(2181), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58394] = 5, + [56639] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_RPAREN, - STATE(2332), 3, + ACTIONS(3090), 1, + anon_sym_EQ, + STATE(2182), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58412] = 5, + [56657] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4948), 1, - anon_sym_LPAREN, - STATE(2333), 3, + ACTIONS(4752), 1, + anon_sym_SEMI, + STATE(2183), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58430] = 5, + [56675] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, + ACTIONS(4754), 1, anon_sym_SEMI, - STATE(2334), 3, + STATE(2184), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58448] = 5, + [56693] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4229), 1, - anon_sym_RBRACK, - STATE(2335), 3, + ACTIONS(4756), 1, + anon_sym_SEMI, + STATE(2185), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58466] = 5, + [56711] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3148), 1, - anon_sym_EQ, - STATE(2336), 3, + ACTIONS(4758), 1, + anon_sym_LBRACE, + STATE(2186), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58484] = 5, + [56729] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4952), 1, + ACTIONS(4760), 1, anon_sym_SEMI, - STATE(2337), 3, + STATE(2187), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58502] = 5, + [56747] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4954), 1, - anon_sym_RPAREN, - STATE(2338), 3, + ACTIONS(4762), 1, + anon_sym_SEMI, + STATE(2188), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58520] = 5, + [56765] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_SEMI, - STATE(2339), 3, + ACTIONS(4764), 1, + sym_type_ident, + STATE(2189), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58538] = 5, + [56783] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, + ACTIONS(4766), 1, anon_sym_SEMI, - STATE(2340), 3, + STATE(2190), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58556] = 5, + [56801] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4960), 1, - sym_type_ident, - STATE(2341), 3, + ACTIONS(4768), 1, + anon_sym_RPAREN, + STATE(2191), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58574] = 5, + [56819] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4962), 1, - sym_const_ident, - STATE(2342), 3, + ACTIONS(4770), 1, + anon_sym_GT_RPAREN, + STATE(2192), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58592] = 5, + [56837] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4964), 1, - sym_type_ident, - STATE(2343), 3, + ACTIONS(4772), 1, + anon_sym_SEMI, + STATE(2193), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58610] = 5, + [56855] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4966), 1, - anon_sym_LPAREN, - STATE(2344), 3, + ACTIONS(4774), 1, + anon_sym_SEMI, + STATE(2194), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58628] = 5, + [56873] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4968), 1, - anon_sym_LPAREN, - STATE(2345), 3, + ACTIONS(4776), 1, + sym_type_ident, + STATE(2195), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58646] = 5, + [56891] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4970), 1, - sym_type_ident, - STATE(2346), 3, + ACTIONS(4778), 1, + anon_sym_SEMI, + STATE(2196), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58664] = 5, + [56909] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4972), 1, - anon_sym_SEMI, - STATE(2347), 3, + ACTIONS(4780), 1, + anon_sym_COLON_COLON, + STATE(2197), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58682] = 5, + [56927] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4974), 1, - sym_type_ident, - STATE(2348), 3, + ACTIONS(4782), 1, + sym_const_ident, + STATE(2198), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58700] = 5, + [56945] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4976), 1, - anon_sym_LPAREN, - STATE(2349), 3, + ACTIONS(4784), 1, + sym_type_ident, + STATE(2199), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58718] = 5, + [56963] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4978), 1, - anon_sym_COLON, - STATE(2350), 3, + ACTIONS(4786), 1, + anon_sym_LPAREN, + STATE(2200), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58736] = 5, + [56981] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4980), 1, - anon_sym_SEMI, - STATE(2351), 3, + ACTIONS(4788), 1, + anon_sym_LPAREN, + STATE(2201), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58754] = 5, + [56999] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4982), 1, - sym_type_ident, - STATE(2352), 3, + ACTIONS(4790), 1, + sym_ident, + STATE(2202), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58772] = 5, + [57017] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4984), 1, - anon_sym_SEMI, - STATE(2353), 3, + ACTIONS(4792), 1, + anon_sym_COLON, + STATE(2203), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58790] = 5, + [57035] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4986), 1, + ACTIONS(4794), 1, anon_sym_SEMI, - STATE(2354), 3, + STATE(2204), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58808] = 5, + [57053] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3190), 1, - anon_sym_RBRACE, - STATE(2355), 3, + ACTIONS(4796), 1, + anon_sym_COLON, + STATE(2205), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58826] = 5, + [57071] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4988), 1, - anon_sym_LPAREN, - STATE(2356), 3, + ACTIONS(4798), 1, + anon_sym_SEMI, + STATE(2206), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58844] = 5, + [57089] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4990), 1, + ACTIONS(4800), 1, anon_sym_LPAREN, - STATE(2357), 3, + STATE(2207), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58862] = 5, + [57107] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4992), 1, - anon_sym_SEMI, - STATE(2358), 3, + ACTIONS(4802), 1, + sym_const_ident, + STATE(2208), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58880] = 5, + [57125] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4994), 1, - anon_sym_SEMI, - STATE(2359), 3, + ACTIONS(4804), 1, + anon_sym_RBRACE, + STATE(2209), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58898] = 5, + [57143] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4996), 1, + ACTIONS(4806), 1, anon_sym_COLON, - STATE(2360), 3, + STATE(2210), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58916] = 5, + [57161] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2469), 1, - anon_sym_RPAREN, - STATE(2361), 3, + ACTIONS(4808), 1, + anon_sym_EQ, + STATE(2211), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58934] = 5, + [57179] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4998), 1, - anon_sym_SEMI, - STATE(2362), 3, + ACTIONS(4810), 1, + anon_sym_LBRACE, + STATE(2212), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58952] = 5, + [57197] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(5000), 1, + ACTIONS(4812), 1, anon_sym_SEMI, - STATE(2363), 3, + STATE(2213), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58970] = 5, + [57215] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(5002), 1, + ACTIONS(4814), 1, anon_sym_COLON, - STATE(2364), 3, + STATE(2214), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58988] = 5, + [57233] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(5004), 1, - anon_sym_COLON, - STATE(2365), 3, + ACTIONS(4816), 1, + sym_const_ident, + STATE(2215), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59006] = 5, + [57251] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(5006), 1, - anon_sym_DOLLARendif, - STATE(2366), 3, + ACTIONS(4818), 1, + anon_sym_LPAREN, + STATE(2216), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59024] = 5, + [57269] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(5008), 1, - anon_sym_SEMI, - STATE(2367), 3, + ACTIONS(4820), 1, + anon_sym_BQUOTE, + STATE(2217), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59042] = 5, + [57287] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(5010), 1, + ACTIONS(4822), 1, anon_sym_COLON, - STATE(2368), 3, + STATE(2218), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59060] = 5, + [57305] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(5012), 1, - anon_sym_SEMI, - STATE(2369), 3, + ACTIONS(4824), 1, + anon_sym_SQUOTE, + STATE(2219), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59078] = 5, + [57323] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(5014), 1, + ACTIONS(3116), 1, anon_sym_SEMI, - STATE(2370), 3, + STATE(2220), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59096] = 5, + [57341] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(5016), 1, + ACTIONS(4826), 1, sym_block_comment_text, - STATE(2371), 3, + STATE(2221), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59114] = 5, + [57359] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(5018), 1, + ACTIONS(4828), 1, anon_sym_COLON, - STATE(2372), 3, + STATE(2222), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59132] = 5, + [57377] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(5020), 1, + ACTIONS(4830), 1, sym_doc_comment_text, - STATE(2373), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [59150] = 5, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(3582), 1, - anon_sym_QMARK, - STATE(2374), 3, + STATE(2223), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59168] = 5, + [57395] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(5022), 1, + ACTIONS(4832), 1, anon_sym_LPAREN, - STATE(2375), 3, + STATE(2224), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59186] = 5, + [57413] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_SLASH_STAR_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(5024), 1, + ACTIONS(4834), 1, anon_sym_LPAREN, - STATE(2376), 3, + STATE(2225), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59204] = 1, - ACTIONS(5026), 1, + [57431] = 1, + ACTIONS(4836), 1, ts_builtin_sym_end, - [59208] = 1, - ACTIONS(5028), 1, + [57435] = 1, + ACTIONS(4838), 1, ts_builtin_sym_end, - [59212] = 1, - ACTIONS(5030), 1, + [57439] = 1, + ACTIONS(4840), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(878)] = 0, - [SMALL_STATE(879)] = 81, - [SMALL_STATE(880)] = 160, - [SMALL_STATE(881)] = 238, - [SMALL_STATE(882)] = 310, - [SMALL_STATE(883)] = 382, - [SMALL_STATE(884)] = 460, - [SMALL_STATE(885)] = 531, - [SMALL_STATE(886)] = 602, - [SMALL_STATE(887)] = 673, - [SMALL_STATE(888)] = 744, - [SMALL_STATE(889)] = 815, - [SMALL_STATE(890)] = 886, - [SMALL_STATE(891)] = 957, - [SMALL_STATE(892)] = 1028, - [SMALL_STATE(893)] = 1099, - [SMALL_STATE(894)] = 1170, - [SMALL_STATE(895)] = 1241, - [SMALL_STATE(896)] = 1312, - [SMALL_STATE(897)] = 1383, - [SMALL_STATE(898)] = 1454, - [SMALL_STATE(899)] = 1525, - [SMALL_STATE(900)] = 1596, - [SMALL_STATE(901)] = 1667, - [SMALL_STATE(902)] = 1738, - [SMALL_STATE(903)] = 1813, - [SMALL_STATE(904)] = 1884, - [SMALL_STATE(905)] = 1955, - [SMALL_STATE(906)] = 2026, - [SMALL_STATE(907)] = 2097, - [SMALL_STATE(908)] = 2168, - [SMALL_STATE(909)] = 2239, - [SMALL_STATE(910)] = 2310, - [SMALL_STATE(911)] = 2381, - [SMALL_STATE(912)] = 2452, - [SMALL_STATE(913)] = 2523, - [SMALL_STATE(914)] = 2594, - [SMALL_STATE(915)] = 2665, - [SMALL_STATE(916)] = 2736, - [SMALL_STATE(917)] = 2807, - [SMALL_STATE(918)] = 2878, - [SMALL_STATE(919)] = 2949, - [SMALL_STATE(920)] = 3020, - [SMALL_STATE(921)] = 3091, - [SMALL_STATE(922)] = 3162, - [SMALL_STATE(923)] = 3233, - [SMALL_STATE(924)] = 3304, - [SMALL_STATE(925)] = 3375, - [SMALL_STATE(926)] = 3446, - [SMALL_STATE(927)] = 3517, - [SMALL_STATE(928)] = 3588, - [SMALL_STATE(929)] = 3659, - [SMALL_STATE(930)] = 3730, - [SMALL_STATE(931)] = 3801, - [SMALL_STATE(932)] = 3872, - [SMALL_STATE(933)] = 3943, - [SMALL_STATE(934)] = 4014, - [SMALL_STATE(935)] = 4085, - [SMALL_STATE(936)] = 4156, - [SMALL_STATE(937)] = 4227, - [SMALL_STATE(938)] = 4298, - [SMALL_STATE(939)] = 4369, - [SMALL_STATE(940)] = 4440, - [SMALL_STATE(941)] = 4511, - [SMALL_STATE(942)] = 4582, - [SMALL_STATE(943)] = 4653, - [SMALL_STATE(944)] = 4724, - [SMALL_STATE(945)] = 4795, - [SMALL_STATE(946)] = 4866, - [SMALL_STATE(947)] = 4937, - [SMALL_STATE(948)] = 5008, - [SMALL_STATE(949)] = 5079, - [SMALL_STATE(950)] = 5150, - [SMALL_STATE(951)] = 5221, - [SMALL_STATE(952)] = 5292, - [SMALL_STATE(953)] = 5363, - [SMALL_STATE(954)] = 5434, - [SMALL_STATE(955)] = 5505, - [SMALL_STATE(956)] = 5578, - [SMALL_STATE(957)] = 5649, - [SMALL_STATE(958)] = 5720, - [SMALL_STATE(959)] = 5791, - [SMALL_STATE(960)] = 5862, - [SMALL_STATE(961)] = 5933, - [SMALL_STATE(962)] = 6004, - [SMALL_STATE(963)] = 6075, - [SMALL_STATE(964)] = 6146, - [SMALL_STATE(965)] = 6217, - [SMALL_STATE(966)] = 6288, - [SMALL_STATE(967)] = 6359, - [SMALL_STATE(968)] = 6430, - [SMALL_STATE(969)] = 6501, - [SMALL_STATE(970)] = 6572, - [SMALL_STATE(971)] = 6643, - [SMALL_STATE(972)] = 6714, - [SMALL_STATE(973)] = 6785, - [SMALL_STATE(974)] = 6856, - [SMALL_STATE(975)] = 6927, - [SMALL_STATE(976)] = 6998, - [SMALL_STATE(977)] = 7070, - [SMALL_STATE(978)] = 7140, - [SMALL_STATE(979)] = 7210, - [SMALL_STATE(980)] = 7280, - [SMALL_STATE(981)] = 7352, - [SMALL_STATE(982)] = 7426, - [SMALL_STATE(983)] = 7496, - [SMALL_STATE(984)] = 7570, - [SMALL_STATE(985)] = 7640, - [SMALL_STATE(986)] = 7709, - [SMALL_STATE(987)] = 7780, - [SMALL_STATE(988)] = 7849, - [SMALL_STATE(989)] = 7918, - [SMALL_STATE(990)] = 7986, - [SMALL_STATE(991)] = 8054, - [SMALL_STATE(992)] = 8122, - [SMALL_STATE(993)] = 8190, - [SMALL_STATE(994)] = 8258, - [SMALL_STATE(995)] = 8326, - [SMALL_STATE(996)] = 8394, - [SMALL_STATE(997)] = 8462, - [SMALL_STATE(998)] = 8530, - [SMALL_STATE(999)] = 8598, - [SMALL_STATE(1000)] = 8666, - [SMALL_STATE(1001)] = 8740, - [SMALL_STATE(1002)] = 8808, - [SMALL_STATE(1003)] = 8884, - [SMALL_STATE(1004)] = 8958, - [SMALL_STATE(1005)] = 9026, - [SMALL_STATE(1006)] = 9094, - [SMALL_STATE(1007)] = 9162, - [SMALL_STATE(1008)] = 9230, - [SMALL_STATE(1009)] = 9302, - [SMALL_STATE(1010)] = 9370, - [SMALL_STATE(1011)] = 9438, - [SMALL_STATE(1012)] = 9506, - [SMALL_STATE(1013)] = 9574, - [SMALL_STATE(1014)] = 9642, - [SMALL_STATE(1015)] = 9710, - [SMALL_STATE(1016)] = 9778, - [SMALL_STATE(1017)] = 9846, - [SMALL_STATE(1018)] = 9914, - [SMALL_STATE(1019)] = 9982, - [SMALL_STATE(1020)] = 10050, - [SMALL_STATE(1021)] = 10126, - [SMALL_STATE(1022)] = 10194, - [SMALL_STATE(1023)] = 10270, - [SMALL_STATE(1024)] = 10338, - [SMALL_STATE(1025)] = 10406, - [SMALL_STATE(1026)] = 10484, - [SMALL_STATE(1027)] = 10552, - [SMALL_STATE(1028)] = 10630, - [SMALL_STATE(1029)] = 10698, - [SMALL_STATE(1030)] = 10766, - [SMALL_STATE(1031)] = 10834, - [SMALL_STATE(1032)] = 10901, - [SMALL_STATE(1033)] = 10976, - [SMALL_STATE(1034)] = 11051, - [SMALL_STATE(1035)] = 11117, - [SMALL_STATE(1036)] = 11183, - [SMALL_STATE(1037)] = 11249, - [SMALL_STATE(1038)] = 11315, - [SMALL_STATE(1039)] = 11381, - [SMALL_STATE(1040)] = 11447, - [SMALL_STATE(1041)] = 11513, - [SMALL_STATE(1042)] = 11579, - [SMALL_STATE(1043)] = 11645, - [SMALL_STATE(1044)] = 11711, - [SMALL_STATE(1045)] = 11777, - [SMALL_STATE(1046)] = 11843, - [SMALL_STATE(1047)] = 11940, - [SMALL_STATE(1048)] = 12009, - [SMALL_STATE(1049)] = 12084, - [SMALL_STATE(1050)] = 12187, - [SMALL_STATE(1051)] = 12262, - [SMALL_STATE(1052)] = 12335, - [SMALL_STATE(1053)] = 12433, - [SMALL_STATE(1054)] = 12533, - [SMALL_STATE(1055)] = 12633, - [SMALL_STATE(1056)] = 12733, - [SMALL_STATE(1057)] = 12831, - [SMALL_STATE(1058)] = 12929, - [SMALL_STATE(1059)] = 13027, - [SMALL_STATE(1060)] = 13125, - [SMALL_STATE(1061)] = 13225, - [SMALL_STATE(1062)] = 13323, - [SMALL_STATE(1063)] = 13387, - [SMALL_STATE(1064)] = 13483, - [SMALL_STATE(1065)] = 13583, - [SMALL_STATE(1066)] = 13680, - [SMALL_STATE(1067)] = 13743, - [SMALL_STATE(1068)] = 13806, - [SMALL_STATE(1069)] = 13903, - [SMALL_STATE(1070)] = 13966, - [SMALL_STATE(1071)] = 14047, - [SMALL_STATE(1072)] = 14144, - [SMALL_STATE(1073)] = 14207, - [SMALL_STATE(1074)] = 14270, - [SMALL_STATE(1075)] = 14333, - [SMALL_STATE(1076)] = 14396, - [SMALL_STATE(1077)] = 14471, - [SMALL_STATE(1078)] = 14534, - [SMALL_STATE(1079)] = 14597, - [SMALL_STATE(1080)] = 14660, - [SMALL_STATE(1081)] = 14723, - [SMALL_STATE(1082)] = 14786, - [SMALL_STATE(1083)] = 14880, - [SMALL_STATE(1084)] = 14950, - [SMALL_STATE(1085)] = 15044, - [SMALL_STATE(1086)] = 15110, - [SMALL_STATE(1087)] = 15176, - [SMALL_STATE(1088)] = 15248, - [SMALL_STATE(1089)] = 15320, - [SMALL_STATE(1090)] = 15390, - [SMALL_STATE(1091)] = 15495, - [SMALL_STATE(1092)] = 15558, - [SMALL_STATE(1093)] = 15623, - [SMALL_STATE(1094)] = 15698, - [SMALL_STATE(1095)] = 15769, - [SMALL_STATE(1096)] = 15870, - [SMALL_STATE(1097)] = 15951, - [SMALL_STATE(1098)] = 16048, - [SMALL_STATE(1099)] = 16109, - [SMALL_STATE(1100)] = 16174, - [SMALL_STATE(1101)] = 16237, - [SMALL_STATE(1102)] = 16308, - [SMALL_STATE(1103)] = 16379, - [SMALL_STATE(1104)] = 16444, - [SMALL_STATE(1105)] = 16507, - [SMALL_STATE(1106)] = 16572, - [SMALL_STATE(1107)] = 16633, - [SMALL_STATE(1108)] = 16694, - [SMALL_STATE(1109)] = 16759, - [SMALL_STATE(1110)] = 16824, - [SMALL_STATE(1111)] = 16887, - [SMALL_STATE(1112)] = 16950, - [SMALL_STATE(1113)] = 17015, - [SMALL_STATE(1114)] = 17090, - [SMALL_STATE(1115)] = 17165, - [SMALL_STATE(1116)] = 17250, - [SMALL_STATE(1117)] = 17335, - [SMALL_STATE(1118)] = 17420, - [SMALL_STATE(1119)] = 17505, - [SMALL_STATE(1120)] = 17590, - [SMALL_STATE(1121)] = 17661, - [SMALL_STATE(1122)] = 17746, - [SMALL_STATE(1123)] = 17809, - [SMALL_STATE(1124)] = 17890, - [SMALL_STATE(1125)] = 17955, - [SMALL_STATE(1126)] = 18054, - [SMALL_STATE(1127)] = 18115, - [SMALL_STATE(1128)] = 18202, - [SMALL_STATE(1129)] = 18266, - [SMALL_STATE(1130)] = 18330, - [SMALL_STATE(1131)] = 18418, - [SMALL_STATE(1132)] = 18488, - [SMALL_STATE(1133)] = 18550, - [SMALL_STATE(1134)] = 18614, - [SMALL_STATE(1135)] = 18678, - [SMALL_STATE(1136)] = 18761, - [SMALL_STATE(1137)] = 18846, - [SMALL_STATE(1138)] = 18929, - [SMALL_STATE(1139)] = 19014, - [SMALL_STATE(1140)] = 19099, - [SMALL_STATE(1141)] = 19181, - [SMALL_STATE(1142)] = 19263, - [SMALL_STATE(1143)] = 19345, - [SMALL_STATE(1144)] = 19427, - [SMALL_STATE(1145)] = 19509, - [SMALL_STATE(1146)] = 19591, - [SMALL_STATE(1147)] = 19673, - [SMALL_STATE(1148)] = 19755, - [SMALL_STATE(1149)] = 19837, - [SMALL_STATE(1150)] = 19919, - [SMALL_STATE(1151)] = 20001, - [SMALL_STATE(1152)] = 20083, - [SMALL_STATE(1153)] = 20165, - [SMALL_STATE(1154)] = 20245, - [SMALL_STATE(1155)] = 20327, - [SMALL_STATE(1156)] = 20409, - [SMALL_STATE(1157)] = 20491, - [SMALL_STATE(1158)] = 20570, - [SMALL_STATE(1159)] = 20649, - [SMALL_STATE(1160)] = 20742, - [SMALL_STATE(1161)] = 20837, - [SMALL_STATE(1162)] = 20918, - [SMALL_STATE(1163)] = 20999, - [SMALL_STATE(1164)] = 21078, - [SMALL_STATE(1165)] = 21157, - [SMALL_STATE(1166)] = 21236, - [SMALL_STATE(1167)] = 21297, - [SMALL_STATE(1168)] = 21356, - [SMALL_STATE(1169)] = 21437, - [SMALL_STATE(1170)] = 21516, - [SMALL_STATE(1171)] = 21595, - [SMALL_STATE(1172)] = 21692, - [SMALL_STATE(1173)] = 21773, - [SMALL_STATE(1174)] = 21844, - [SMALL_STATE(1175)] = 21923, - [SMALL_STATE(1176)] = 22002, - [SMALL_STATE(1177)] = 22081, - [SMALL_STATE(1178)] = 22160, - [SMALL_STATE(1179)] = 22241, - [SMALL_STATE(1180)] = 22322, - [SMALL_STATE(1181)] = 22393, - [SMALL_STATE(1182)] = 22454, - [SMALL_STATE(1183)] = 22525, - [SMALL_STATE(1184)] = 22604, - [SMALL_STATE(1185)] = 22705, - [SMALL_STATE(1186)] = 22782, - [SMALL_STATE(1187)] = 22843, - [SMALL_STATE(1188)] = 22904, - [SMALL_STATE(1189)] = 22961, - [SMALL_STATE(1190)] = 23022, - [SMALL_STATE(1191)] = 23101, - [SMALL_STATE(1192)] = 23168, - [SMALL_STATE(1193)] = 23235, - [SMALL_STATE(1194)] = 23312, - [SMALL_STATE(1195)] = 23388, - [SMALL_STATE(1196)] = 23464, - [SMALL_STATE(1197)] = 23524, - [SMALL_STATE(1198)] = 23600, - [SMALL_STATE(1199)] = 23676, - [SMALL_STATE(1200)] = 23752, - [SMALL_STATE(1201)] = 23828, - [SMALL_STATE(1202)] = 23888, - [SMALL_STATE(1203)] = 23964, - [SMALL_STATE(1204)] = 24040, - [SMALL_STATE(1205)] = 24116, - [SMALL_STATE(1206)] = 24176, - [SMALL_STATE(1207)] = 24252, - [SMALL_STATE(1208)] = 24311, - [SMALL_STATE(1209)] = 24366, - [SMALL_STATE(1210)] = 24421, - [SMALL_STATE(1211)] = 24476, - [SMALL_STATE(1212)] = 24531, - [SMALL_STATE(1213)] = 24586, - [SMALL_STATE(1214)] = 24641, - [SMALL_STATE(1215)] = 24696, - [SMALL_STATE(1216)] = 24751, - [SMALL_STATE(1217)] = 24806, - [SMALL_STATE(1218)] = 24861, - [SMALL_STATE(1219)] = 24916, - [SMALL_STATE(1220)] = 24971, - [SMALL_STATE(1221)] = 25032, - [SMALL_STATE(1222)] = 25087, - [SMALL_STATE(1223)] = 25142, - [SMALL_STATE(1224)] = 25197, - [SMALL_STATE(1225)] = 25253, - [SMALL_STATE(1226)] = 25313, - [SMALL_STATE(1227)] = 25412, - [SMALL_STATE(1228)] = 25511, - [SMALL_STATE(1229)] = 25610, - [SMALL_STATE(1230)] = 25667, - [SMALL_STATE(1231)] = 25766, - [SMALL_STATE(1232)] = 25861, - [SMALL_STATE(1233)] = 25956, - [SMALL_STATE(1234)] = 26053, - [SMALL_STATE(1235)] = 26148, - [SMALL_STATE(1236)] = 26247, - [SMALL_STATE(1237)] = 26346, - [SMALL_STATE(1238)] = 26445, - [SMALL_STATE(1239)] = 26540, - [SMALL_STATE(1240)] = 26635, - [SMALL_STATE(1241)] = 26734, - [SMALL_STATE(1242)] = 26829, - [SMALL_STATE(1243)] = 26923, - [SMALL_STATE(1244)] = 27015, - [SMALL_STATE(1245)] = 27109, - [SMALL_STATE(1246)] = 27203, - [SMALL_STATE(1247)] = 27299, - [SMALL_STATE(1248)] = 27393, - [SMALL_STATE(1249)] = 27489, - [SMALL_STATE(1250)] = 27583, - [SMALL_STATE(1251)] = 27677, - [SMALL_STATE(1252)] = 27771, - [SMALL_STATE(1253)] = 27865, - [SMALL_STATE(1254)] = 27958, - [SMALL_STATE(1255)] = 28051, - [SMALL_STATE(1256)] = 28144, - [SMALL_STATE(1257)] = 28237, - [SMALL_STATE(1258)] = 28288, - [SMALL_STATE(1259)] = 28381, - [SMALL_STATE(1260)] = 28474, - [SMALL_STATE(1261)] = 28567, - [SMALL_STATE(1262)] = 28660, - [SMALL_STATE(1263)] = 28753, - [SMALL_STATE(1264)] = 28846, - [SMALL_STATE(1265)] = 28939, - [SMALL_STATE(1266)] = 29032, - [SMALL_STATE(1267)] = 29125, - [SMALL_STATE(1268)] = 29218, - [SMALL_STATE(1269)] = 29311, - [SMALL_STATE(1270)] = 29404, - [SMALL_STATE(1271)] = 29497, - [SMALL_STATE(1272)] = 29590, - [SMALL_STATE(1273)] = 29683, - [SMALL_STATE(1274)] = 29776, - [SMALL_STATE(1275)] = 29869, - [SMALL_STATE(1276)] = 29962, - [SMALL_STATE(1277)] = 30055, - [SMALL_STATE(1278)] = 30148, - [SMALL_STATE(1279)] = 30241, - [SMALL_STATE(1280)] = 30334, - [SMALL_STATE(1281)] = 30427, - [SMALL_STATE(1282)] = 30520, - [SMALL_STATE(1283)] = 30571, - [SMALL_STATE(1284)] = 30664, - [SMALL_STATE(1285)] = 30757, - [SMALL_STATE(1286)] = 30850, - [SMALL_STATE(1287)] = 30943, - [SMALL_STATE(1288)] = 31036, - [SMALL_STATE(1289)] = 31129, - [SMALL_STATE(1290)] = 31180, - [SMALL_STATE(1291)] = 31231, - [SMALL_STATE(1292)] = 31324, - [SMALL_STATE(1293)] = 31417, - [SMALL_STATE(1294)] = 31510, - [SMALL_STATE(1295)] = 31603, - [SMALL_STATE(1296)] = 31696, - [SMALL_STATE(1297)] = 31789, - [SMALL_STATE(1298)] = 31882, - [SMALL_STATE(1299)] = 31975, - [SMALL_STATE(1300)] = 32068, - [SMALL_STATE(1301)] = 32118, - [SMALL_STATE(1302)] = 32208, - [SMALL_STATE(1303)] = 32258, - [SMALL_STATE(1304)] = 32348, - [SMALL_STATE(1305)] = 32396, - [SMALL_STATE(1306)] = 32444, - [SMALL_STATE(1307)] = 32486, - [SMALL_STATE(1308)] = 32532, - [SMALL_STATE(1309)] = 32569, - [SMALL_STATE(1310)] = 32605, - [SMALL_STATE(1311)] = 32641, - [SMALL_STATE(1312)] = 32677, - [SMALL_STATE(1313)] = 32713, - [SMALL_STATE(1314)] = 32749, - [SMALL_STATE(1315)] = 32785, - [SMALL_STATE(1316)] = 32821, - [SMALL_STATE(1317)] = 32857, - [SMALL_STATE(1318)] = 32893, - [SMALL_STATE(1319)] = 32929, - [SMALL_STATE(1320)] = 32965, - [SMALL_STATE(1321)] = 33001, - [SMALL_STATE(1322)] = 33054, - [SMALL_STATE(1323)] = 33117, - [SMALL_STATE(1324)] = 33180, - [SMALL_STATE(1325)] = 33231, - [SMALL_STATE(1326)] = 33294, - [SMALL_STATE(1327)] = 33351, - [SMALL_STATE(1328)] = 33414, - [SMALL_STATE(1329)] = 33474, - [SMALL_STATE(1330)] = 33510, - [SMALL_STATE(1331)] = 33570, - [SMALL_STATE(1332)] = 33630, - [SMALL_STATE(1333)] = 33687, - [SMALL_STATE(1334)] = 33742, - [SMALL_STATE(1335)] = 33793, - [SMALL_STATE(1336)] = 33850, - [SMALL_STATE(1337)] = 33901, - [SMALL_STATE(1338)] = 33952, - [SMALL_STATE(1339)] = 34009, - [SMALL_STATE(1340)] = 34066, - [SMALL_STATE(1341)] = 34117, - [SMALL_STATE(1342)] = 34168, - [SMALL_STATE(1343)] = 34225, - [SMALL_STATE(1344)] = 34280, - [SMALL_STATE(1345)] = 34337, - [SMALL_STATE(1346)] = 34394, - [SMALL_STATE(1347)] = 34449, - [SMALL_STATE(1348)] = 34506, - [SMALL_STATE(1349)] = 34563, - [SMALL_STATE(1350)] = 34617, - [SMALL_STATE(1351)] = 34671, - [SMALL_STATE(1352)] = 34725, - [SMALL_STATE(1353)] = 34779, - [SMALL_STATE(1354)] = 34833, - [SMALL_STATE(1355)] = 34887, - [SMALL_STATE(1356)] = 34941, - [SMALL_STATE(1357)] = 34995, - [SMALL_STATE(1358)] = 35049, - [SMALL_STATE(1359)] = 35091, - [SMALL_STATE(1360)] = 35145, - [SMALL_STATE(1361)] = 35199, - [SMALL_STATE(1362)] = 35253, - [SMALL_STATE(1363)] = 35307, - [SMALL_STATE(1364)] = 35361, - [SMALL_STATE(1365)] = 35415, - [SMALL_STATE(1366)] = 35469, - [SMALL_STATE(1367)] = 35523, - [SMALL_STATE(1368)] = 35577, - [SMALL_STATE(1369)] = 35631, - [SMALL_STATE(1370)] = 35682, - [SMALL_STATE(1371)] = 35733, - [SMALL_STATE(1372)] = 35782, - [SMALL_STATE(1373)] = 35821, - [SMALL_STATE(1374)] = 35870, - [SMALL_STATE(1375)] = 35921, - [SMALL_STATE(1376)] = 35972, - [SMALL_STATE(1377)] = 36023, - [SMALL_STATE(1378)] = 36074, - [SMALL_STATE(1379)] = 36125, - [SMALL_STATE(1380)] = 36164, - [SMALL_STATE(1381)] = 36215, - [SMALL_STATE(1382)] = 36266, - [SMALL_STATE(1383)] = 36317, - [SMALL_STATE(1384)] = 36368, - [SMALL_STATE(1385)] = 36419, - [SMALL_STATE(1386)] = 36470, - [SMALL_STATE(1387)] = 36521, - [SMALL_STATE(1388)] = 36572, - [SMALL_STATE(1389)] = 36611, - [SMALL_STATE(1390)] = 36646, - [SMALL_STATE(1391)] = 36697, - [SMALL_STATE(1392)] = 36748, - [SMALL_STATE(1393)] = 36778, - [SMALL_STATE(1394)] = 36808, - [SMALL_STATE(1395)] = 36856, - [SMALL_STATE(1396)] = 36904, - [SMALL_STATE(1397)] = 36952, - [SMALL_STATE(1398)] = 37000, - [SMALL_STATE(1399)] = 37048, - [SMALL_STATE(1400)] = 37096, - [SMALL_STATE(1401)] = 37144, - [SMALL_STATE(1402)] = 37174, - [SMALL_STATE(1403)] = 37222, - [SMALL_STATE(1404)] = 37270, - [SMALL_STATE(1405)] = 37318, - [SMALL_STATE(1406)] = 37366, - [SMALL_STATE(1407)] = 37414, - [SMALL_STATE(1408)] = 37462, - [SMALL_STATE(1409)] = 37510, - [SMALL_STATE(1410)] = 37558, - [SMALL_STATE(1411)] = 37606, - [SMALL_STATE(1412)] = 37654, - [SMALL_STATE(1413)] = 37684, - [SMALL_STATE(1414)] = 37732, - [SMALL_STATE(1415)] = 37759, - [SMALL_STATE(1416)] = 37788, - [SMALL_STATE(1417)] = 37833, - [SMALL_STATE(1418)] = 37878, - [SMALL_STATE(1419)] = 37923, - [SMALL_STATE(1420)] = 37968, - [SMALL_STATE(1421)] = 38013, - [SMALL_STATE(1422)] = 38058, - [SMALL_STATE(1423)] = 38087, - [SMALL_STATE(1424)] = 38132, - [SMALL_STATE(1425)] = 38161, - [SMALL_STATE(1426)] = 38206, - [SMALL_STATE(1427)] = 38251, - [SMALL_STATE(1428)] = 38296, - [SMALL_STATE(1429)] = 38341, - [SMALL_STATE(1430)] = 38370, - [SMALL_STATE(1431)] = 38415, - [SMALL_STATE(1432)] = 38441, - [SMALL_STATE(1433)] = 38473, - [SMALL_STATE(1434)] = 38505, - [SMALL_STATE(1435)] = 38539, - [SMALL_STATE(1436)] = 38581, - [SMALL_STATE(1437)] = 38606, - [SMALL_STATE(1438)] = 38631, - [SMALL_STATE(1439)] = 38664, - [SMALL_STATE(1440)] = 38699, - [SMALL_STATE(1441)] = 38724, - [SMALL_STATE(1442)] = 38749, - [SMALL_STATE(1443)] = 38774, - [SMALL_STATE(1444)] = 38799, - [SMALL_STATE(1445)] = 38833, - [SMALL_STATE(1446)] = 38863, - [SMALL_STATE(1447)] = 38899, - [SMALL_STATE(1448)] = 38929, - [SMALL_STATE(1449)] = 38955, - [SMALL_STATE(1450)] = 38979, - [SMALL_STATE(1451)] = 39009, - [SMALL_STATE(1452)] = 39045, - [SMALL_STATE(1453)] = 39071, - [SMALL_STATE(1454)] = 39103, - [SMALL_STATE(1455)] = 39127, - [SMALL_STATE(1456)] = 39151, - [SMALL_STATE(1457)] = 39187, - [SMALL_STATE(1458)] = 39219, - [SMALL_STATE(1459)] = 39243, - [SMALL_STATE(1460)] = 39267, - [SMALL_STATE(1461)] = 39298, - [SMALL_STATE(1462)] = 39329, - [SMALL_STATE(1463)] = 39360, - [SMALL_STATE(1464)] = 39391, - [SMALL_STATE(1465)] = 39420, - [SMALL_STATE(1466)] = 39451, - [SMALL_STATE(1467)] = 39482, - [SMALL_STATE(1468)] = 39513, - [SMALL_STATE(1469)] = 39538, - [SMALL_STATE(1470)] = 39569, - [SMALL_STATE(1471)] = 39600, - [SMALL_STATE(1472)] = 39631, - [SMALL_STATE(1473)] = 39656, - [SMALL_STATE(1474)] = 39687, - [SMALL_STATE(1475)] = 39714, - [SMALL_STATE(1476)] = 39737, - [SMALL_STATE(1477)] = 39768, - [SMALL_STATE(1478)] = 39801, - [SMALL_STATE(1479)] = 39830, - [SMALL_STATE(1480)] = 39857, - [SMALL_STATE(1481)] = 39888, - [SMALL_STATE(1482)] = 39919, - [SMALL_STATE(1483)] = 39950, - [SMALL_STATE(1484)] = 39977, - [SMALL_STATE(1485)] = 40010, - [SMALL_STATE(1486)] = 40033, - [SMALL_STATE(1487)] = 40064, - [SMALL_STATE(1488)] = 40095, - [SMALL_STATE(1489)] = 40126, - [SMALL_STATE(1490)] = 40157, - [SMALL_STATE(1491)] = 40188, - [SMALL_STATE(1492)] = 40215, - [SMALL_STATE(1493)] = 40246, - [SMALL_STATE(1494)] = 40277, - [SMALL_STATE(1495)] = 40308, - [SMALL_STATE(1496)] = 40337, - [SMALL_STATE(1497)] = 40368, - [SMALL_STATE(1498)] = 40399, - [SMALL_STATE(1499)] = 40430, - [SMALL_STATE(1500)] = 40463, - [SMALL_STATE(1501)] = 40494, - [SMALL_STATE(1502)] = 40521, - [SMALL_STATE(1503)] = 40552, - [SMALL_STATE(1504)] = 40579, - [SMALL_STATE(1505)] = 40610, - [SMALL_STATE(1506)] = 40641, - [SMALL_STATE(1507)] = 40664, - [SMALL_STATE(1508)] = 40693, - [SMALL_STATE(1509)] = 40724, - [SMALL_STATE(1510)] = 40755, - [SMALL_STATE(1511)] = 40786, - [SMALL_STATE(1512)] = 40817, - [SMALL_STATE(1513)] = 40848, - [SMALL_STATE(1514)] = 40879, - [SMALL_STATE(1515)] = 40902, - [SMALL_STATE(1516)] = 40933, - [SMALL_STATE(1517)] = 40964, - [SMALL_STATE(1518)] = 40986, - [SMALL_STATE(1519)] = 41016, - [SMALL_STATE(1520)] = 41038, - [SMALL_STATE(1521)] = 41068, - [SMALL_STATE(1522)] = 41090, - [SMALL_STATE(1523)] = 41114, - [SMALL_STATE(1524)] = 41136, - [SMALL_STATE(1525)] = 41166, - [SMALL_STATE(1526)] = 41196, - [SMALL_STATE(1527)] = 41220, - [SMALL_STATE(1528)] = 41250, - [SMALL_STATE(1529)] = 41272, - [SMALL_STATE(1530)] = 41294, - [SMALL_STATE(1531)] = 41316, - [SMALL_STATE(1532)] = 41346, - [SMALL_STATE(1533)] = 41368, - [SMALL_STATE(1534)] = 41398, - [SMALL_STATE(1535)] = 41428, - [SMALL_STATE(1536)] = 41458, - [SMALL_STATE(1537)] = 41480, - [SMALL_STATE(1538)] = 41504, - [SMALL_STATE(1539)] = 41526, - [SMALL_STATE(1540)] = 41554, - [SMALL_STATE(1541)] = 41576, - [SMALL_STATE(1542)] = 41598, - [SMALL_STATE(1543)] = 41626, - [SMALL_STATE(1544)] = 41656, - [SMALL_STATE(1545)] = 41684, - [SMALL_STATE(1546)] = 41712, - [SMALL_STATE(1547)] = 41742, - [SMALL_STATE(1548)] = 41763, - [SMALL_STATE(1549)] = 41790, - [SMALL_STATE(1550)] = 41817, - [SMALL_STATE(1551)] = 41838, - [SMALL_STATE(1552)] = 41863, - [SMALL_STATE(1553)] = 41890, - [SMALL_STATE(1554)] = 41911, - [SMALL_STATE(1555)] = 41938, - [SMALL_STATE(1556)] = 41965, - [SMALL_STATE(1557)] = 41992, - [SMALL_STATE(1558)] = 42019, - [SMALL_STATE(1559)] = 42046, - [SMALL_STATE(1560)] = 42073, - [SMALL_STATE(1561)] = 42094, - [SMALL_STATE(1562)] = 42117, - [SMALL_STATE(1563)] = 42142, - [SMALL_STATE(1564)] = 42163, - [SMALL_STATE(1565)] = 42190, - [SMALL_STATE(1566)] = 42217, - [SMALL_STATE(1567)] = 42242, - [SMALL_STATE(1568)] = 42269, - [SMALL_STATE(1569)] = 42296, - [SMALL_STATE(1570)] = 42321, - [SMALL_STATE(1571)] = 42348, - [SMALL_STATE(1572)] = 42375, - [SMALL_STATE(1573)] = 42402, - [SMALL_STATE(1574)] = 42427, - [SMALL_STATE(1575)] = 42454, - [SMALL_STATE(1576)] = 42479, - [SMALL_STATE(1577)] = 42506, - [SMALL_STATE(1578)] = 42533, - [SMALL_STATE(1579)] = 42558, - [SMALL_STATE(1580)] = 42585, - [SMALL_STATE(1581)] = 42608, - [SMALL_STATE(1582)] = 42635, - [SMALL_STATE(1583)] = 42662, - [SMALL_STATE(1584)] = 42685, - [SMALL_STATE(1585)] = 42712, - [SMALL_STATE(1586)] = 42735, - [SMALL_STATE(1587)] = 42762, - [SMALL_STATE(1588)] = 42787, - [SMALL_STATE(1589)] = 42808, - [SMALL_STATE(1590)] = 42835, - [SMALL_STATE(1591)] = 42860, - [SMALL_STATE(1592)] = 42887, - [SMALL_STATE(1593)] = 42912, - [SMALL_STATE(1594)] = 42939, - [SMALL_STATE(1595)] = 42966, - [SMALL_STATE(1596)] = 42993, - [SMALL_STATE(1597)] = 43020, - [SMALL_STATE(1598)] = 43047, - [SMALL_STATE(1599)] = 43074, - [SMALL_STATE(1600)] = 43101, - [SMALL_STATE(1601)] = 43128, - [SMALL_STATE(1602)] = 43155, - [SMALL_STATE(1603)] = 43180, - [SMALL_STATE(1604)] = 43207, - [SMALL_STATE(1605)] = 43234, - [SMALL_STATE(1606)] = 43261, - [SMALL_STATE(1607)] = 43288, - [SMALL_STATE(1608)] = 43315, - [SMALL_STATE(1609)] = 43342, - [SMALL_STATE(1610)] = 43369, - [SMALL_STATE(1611)] = 43396, - [SMALL_STATE(1612)] = 43423, - [SMALL_STATE(1613)] = 43450, - [SMALL_STATE(1614)] = 43477, - [SMALL_STATE(1615)] = 43504, - [SMALL_STATE(1616)] = 43525, - [SMALL_STATE(1617)] = 43546, - [SMALL_STATE(1618)] = 43573, - [SMALL_STATE(1619)] = 43594, - [SMALL_STATE(1620)] = 43621, - [SMALL_STATE(1621)] = 43648, - [SMALL_STATE(1622)] = 43675, - [SMALL_STATE(1623)] = 43702, - [SMALL_STATE(1624)] = 43729, - [SMALL_STATE(1625)] = 43756, - [SMALL_STATE(1626)] = 43783, - [SMALL_STATE(1627)] = 43806, - [SMALL_STATE(1628)] = 43833, - [SMALL_STATE(1629)] = 43854, - [SMALL_STATE(1630)] = 43877, - [SMALL_STATE(1631)] = 43898, - [SMALL_STATE(1632)] = 43925, - [SMALL_STATE(1633)] = 43952, - [SMALL_STATE(1634)] = 43979, - [SMALL_STATE(1635)] = 44006, - [SMALL_STATE(1636)] = 44033, - [SMALL_STATE(1637)] = 44054, - [SMALL_STATE(1638)] = 44081, - [SMALL_STATE(1639)] = 44102, - [SMALL_STATE(1640)] = 44129, - [SMALL_STATE(1641)] = 44156, - [SMALL_STATE(1642)] = 44177, - [SMALL_STATE(1643)] = 44204, - [SMALL_STATE(1644)] = 44231, - [SMALL_STATE(1645)] = 44258, - [SMALL_STATE(1646)] = 44285, - [SMALL_STATE(1647)] = 44312, - [SMALL_STATE(1648)] = 44339, - [SMALL_STATE(1649)] = 44360, - [SMALL_STATE(1650)] = 44387, - [SMALL_STATE(1651)] = 44414, - [SMALL_STATE(1652)] = 44441, - [SMALL_STATE(1653)] = 44468, - [SMALL_STATE(1654)] = 44489, - [SMALL_STATE(1655)] = 44512, - [SMALL_STATE(1656)] = 44537, - [SMALL_STATE(1657)] = 44564, - [SMALL_STATE(1658)] = 44589, - [SMALL_STATE(1659)] = 44612, - [SMALL_STATE(1660)] = 44639, - [SMALL_STATE(1661)] = 44666, - [SMALL_STATE(1662)] = 44691, - [SMALL_STATE(1663)] = 44712, - [SMALL_STATE(1664)] = 44739, - [SMALL_STATE(1665)] = 44764, - [SMALL_STATE(1666)] = 44791, - [SMALL_STATE(1667)] = 44812, - [SMALL_STATE(1668)] = 44833, - [SMALL_STATE(1669)] = 44860, - [SMALL_STATE(1670)] = 44887, - [SMALL_STATE(1671)] = 44914, - [SMALL_STATE(1672)] = 44941, - [SMALL_STATE(1673)] = 44962, - [SMALL_STATE(1674)] = 44983, - [SMALL_STATE(1675)] = 45010, - [SMALL_STATE(1676)] = 45031, - [SMALL_STATE(1677)] = 45056, - [SMALL_STATE(1678)] = 45083, - [SMALL_STATE(1679)] = 45104, - [SMALL_STATE(1680)] = 45131, - [SMALL_STATE(1681)] = 45152, - [SMALL_STATE(1682)] = 45173, - [SMALL_STATE(1683)] = 45200, - [SMALL_STATE(1684)] = 45227, - [SMALL_STATE(1685)] = 45252, - [SMALL_STATE(1686)] = 45273, - [SMALL_STATE(1687)] = 45300, - [SMALL_STATE(1688)] = 45327, - [SMALL_STATE(1689)] = 45352, - [SMALL_STATE(1690)] = 45377, - [SMALL_STATE(1691)] = 45404, - [SMALL_STATE(1692)] = 45428, - [SMALL_STATE(1693)] = 45452, - [SMALL_STATE(1694)] = 45476, - [SMALL_STATE(1695)] = 45498, - [SMALL_STATE(1696)] = 45522, - [SMALL_STATE(1697)] = 45546, - [SMALL_STATE(1698)] = 45570, - [SMALL_STATE(1699)] = 45594, - [SMALL_STATE(1700)] = 45614, - [SMALL_STATE(1701)] = 45634, - [SMALL_STATE(1702)] = 45658, - [SMALL_STATE(1703)] = 45682, - [SMALL_STATE(1704)] = 45702, - [SMALL_STATE(1705)] = 45724, - [SMALL_STATE(1706)] = 45748, - [SMALL_STATE(1707)] = 45772, - [SMALL_STATE(1708)] = 45796, - [SMALL_STATE(1709)] = 45820, - [SMALL_STATE(1710)] = 45842, - [SMALL_STATE(1711)] = 45866, - [SMALL_STATE(1712)] = 45888, - [SMALL_STATE(1713)] = 45912, - [SMALL_STATE(1714)] = 45932, - [SMALL_STATE(1715)] = 45956, - [SMALL_STATE(1716)] = 45980, - [SMALL_STATE(1717)] = 46002, - [SMALL_STATE(1718)] = 46026, - [SMALL_STATE(1719)] = 46046, - [SMALL_STATE(1720)] = 46070, - [SMALL_STATE(1721)] = 46094, - [SMALL_STATE(1722)] = 46116, - [SMALL_STATE(1723)] = 46140, - [SMALL_STATE(1724)] = 46160, - [SMALL_STATE(1725)] = 46184, - [SMALL_STATE(1726)] = 46208, - [SMALL_STATE(1727)] = 46232, - [SMALL_STATE(1728)] = 46256, - [SMALL_STATE(1729)] = 46280, - [SMALL_STATE(1730)] = 46304, - [SMALL_STATE(1731)] = 46328, - [SMALL_STATE(1732)] = 46352, - [SMALL_STATE(1733)] = 46376, - [SMALL_STATE(1734)] = 46398, - [SMALL_STATE(1735)] = 46418, - [SMALL_STATE(1736)] = 46442, - [SMALL_STATE(1737)] = 46466, - [SMALL_STATE(1738)] = 46490, - [SMALL_STATE(1739)] = 46514, - [SMALL_STATE(1740)] = 46534, - [SMALL_STATE(1741)] = 46558, - [SMALL_STATE(1742)] = 46580, - [SMALL_STATE(1743)] = 46604, - [SMALL_STATE(1744)] = 46626, - [SMALL_STATE(1745)] = 46650, - [SMALL_STATE(1746)] = 46674, - [SMALL_STATE(1747)] = 46698, - [SMALL_STATE(1748)] = 46718, - [SMALL_STATE(1749)] = 46742, - [SMALL_STATE(1750)] = 46766, - [SMALL_STATE(1751)] = 46790, - [SMALL_STATE(1752)] = 46812, - [SMALL_STATE(1753)] = 46836, - [SMALL_STATE(1754)] = 46856, - [SMALL_STATE(1755)] = 46880, - [SMALL_STATE(1756)] = 46904, - [SMALL_STATE(1757)] = 46924, - [SMALL_STATE(1758)] = 46948, - [SMALL_STATE(1759)] = 46972, - [SMALL_STATE(1760)] = 46996, - [SMALL_STATE(1761)] = 47020, - [SMALL_STATE(1762)] = 47044, - [SMALL_STATE(1763)] = 47066, - [SMALL_STATE(1764)] = 47090, - [SMALL_STATE(1765)] = 47114, - [SMALL_STATE(1766)] = 47138, - [SMALL_STATE(1767)] = 47162, - [SMALL_STATE(1768)] = 47186, - [SMALL_STATE(1769)] = 47210, - [SMALL_STATE(1770)] = 47234, - [SMALL_STATE(1771)] = 47258, - [SMALL_STATE(1772)] = 47282, - [SMALL_STATE(1773)] = 47304, - [SMALL_STATE(1774)] = 47328, - [SMALL_STATE(1775)] = 47348, - [SMALL_STATE(1776)] = 47372, - [SMALL_STATE(1777)] = 47396, - [SMALL_STATE(1778)] = 47416, - [SMALL_STATE(1779)] = 47440, - [SMALL_STATE(1780)] = 47464, - [SMALL_STATE(1781)] = 47488, - [SMALL_STATE(1782)] = 47508, - [SMALL_STATE(1783)] = 47530, - [SMALL_STATE(1784)] = 47554, - [SMALL_STATE(1785)] = 47576, - [SMALL_STATE(1786)] = 47600, - [SMALL_STATE(1787)] = 47624, - [SMALL_STATE(1788)] = 47646, - [SMALL_STATE(1789)] = 47670, - [SMALL_STATE(1790)] = 47694, - [SMALL_STATE(1791)] = 47718, - [SMALL_STATE(1792)] = 47742, - [SMALL_STATE(1793)] = 47766, - [SMALL_STATE(1794)] = 47790, - [SMALL_STATE(1795)] = 47814, - [SMALL_STATE(1796)] = 47836, - [SMALL_STATE(1797)] = 47858, - [SMALL_STATE(1798)] = 47882, - [SMALL_STATE(1799)] = 47906, - [SMALL_STATE(1800)] = 47928, - [SMALL_STATE(1801)] = 47950, - [SMALL_STATE(1802)] = 47972, - [SMALL_STATE(1803)] = 47996, - [SMALL_STATE(1804)] = 48020, - [SMALL_STATE(1805)] = 48044, - [SMALL_STATE(1806)] = 48066, - [SMALL_STATE(1807)] = 48090, - [SMALL_STATE(1808)] = 48114, - [SMALL_STATE(1809)] = 48138, - [SMALL_STATE(1810)] = 48162, - [SMALL_STATE(1811)] = 48186, - [SMALL_STATE(1812)] = 48208, - [SMALL_STATE(1813)] = 48232, - [SMALL_STATE(1814)] = 48254, - [SMALL_STATE(1815)] = 48274, - [SMALL_STATE(1816)] = 48296, - [SMALL_STATE(1817)] = 48316, - [SMALL_STATE(1818)] = 48340, - [SMALL_STATE(1819)] = 48364, - [SMALL_STATE(1820)] = 48388, - [SMALL_STATE(1821)] = 48412, - [SMALL_STATE(1822)] = 48436, - [SMALL_STATE(1823)] = 48458, - [SMALL_STATE(1824)] = 48480, - [SMALL_STATE(1825)] = 48504, - [SMALL_STATE(1826)] = 48528, - [SMALL_STATE(1827)] = 48550, - [SMALL_STATE(1828)] = 48574, - [SMALL_STATE(1829)] = 48598, - [SMALL_STATE(1830)] = 48622, - [SMALL_STATE(1831)] = 48642, - [SMALL_STATE(1832)] = 48666, - [SMALL_STATE(1833)] = 48690, - [SMALL_STATE(1834)] = 48714, - [SMALL_STATE(1835)] = 48738, - [SMALL_STATE(1836)] = 48758, - [SMALL_STATE(1837)] = 48782, - [SMALL_STATE(1838)] = 48806, - [SMALL_STATE(1839)] = 48830, - [SMALL_STATE(1840)] = 48854, - [SMALL_STATE(1841)] = 48878, - [SMALL_STATE(1842)] = 48902, - [SMALL_STATE(1843)] = 48926, - [SMALL_STATE(1844)] = 48950, - [SMALL_STATE(1845)] = 48974, - [SMALL_STATE(1846)] = 48998, - [SMALL_STATE(1847)] = 49022, - [SMALL_STATE(1848)] = 49042, - [SMALL_STATE(1849)] = 49066, - [SMALL_STATE(1850)] = 49086, - [SMALL_STATE(1851)] = 49106, - [SMALL_STATE(1852)] = 49130, - [SMALL_STATE(1853)] = 49150, - [SMALL_STATE(1854)] = 49174, - [SMALL_STATE(1855)] = 49198, - [SMALL_STATE(1856)] = 49222, - [SMALL_STATE(1857)] = 49244, - [SMALL_STATE(1858)] = 49268, - [SMALL_STATE(1859)] = 49292, - [SMALL_STATE(1860)] = 49316, - [SMALL_STATE(1861)] = 49340, - [SMALL_STATE(1862)] = 49364, - [SMALL_STATE(1863)] = 49384, - [SMALL_STATE(1864)] = 49408, - [SMALL_STATE(1865)] = 49428, - [SMALL_STATE(1866)] = 49452, - [SMALL_STATE(1867)] = 49472, - [SMALL_STATE(1868)] = 49496, - [SMALL_STATE(1869)] = 49520, - [SMALL_STATE(1870)] = 49544, - [SMALL_STATE(1871)] = 49568, - [SMALL_STATE(1872)] = 49592, - [SMALL_STATE(1873)] = 49616, - [SMALL_STATE(1874)] = 49640, - [SMALL_STATE(1875)] = 49664, - [SMALL_STATE(1876)] = 49688, - [SMALL_STATE(1877)] = 49712, - [SMALL_STATE(1878)] = 49734, - [SMALL_STATE(1879)] = 49758, - [SMALL_STATE(1880)] = 49782, - [SMALL_STATE(1881)] = 49804, - [SMALL_STATE(1882)] = 49828, - [SMALL_STATE(1883)] = 49852, - [SMALL_STATE(1884)] = 49871, - [SMALL_STATE(1885)] = 49892, - [SMALL_STATE(1886)] = 49913, - [SMALL_STATE(1887)] = 49934, - [SMALL_STATE(1888)] = 49953, - [SMALL_STATE(1889)] = 49974, - [SMALL_STATE(1890)] = 49993, - [SMALL_STATE(1891)] = 50014, - [SMALL_STATE(1892)] = 50035, - [SMALL_STATE(1893)] = 50054, - [SMALL_STATE(1894)] = 50075, - [SMALL_STATE(1895)] = 50096, - [SMALL_STATE(1896)] = 50117, - [SMALL_STATE(1897)] = 50138, - [SMALL_STATE(1898)] = 50159, - [SMALL_STATE(1899)] = 50180, - [SMALL_STATE(1900)] = 50199, - [SMALL_STATE(1901)] = 50220, - [SMALL_STATE(1902)] = 50241, - [SMALL_STATE(1903)] = 50262, - [SMALL_STATE(1904)] = 50283, - [SMALL_STATE(1905)] = 50304, - [SMALL_STATE(1906)] = 50325, - [SMALL_STATE(1907)] = 50346, - [SMALL_STATE(1908)] = 50367, - [SMALL_STATE(1909)] = 50388, - [SMALL_STATE(1910)] = 50409, - [SMALL_STATE(1911)] = 50430, - [SMALL_STATE(1912)] = 50451, - [SMALL_STATE(1913)] = 50472, - [SMALL_STATE(1914)] = 50491, - [SMALL_STATE(1915)] = 50512, - [SMALL_STATE(1916)] = 50533, - [SMALL_STATE(1917)] = 50554, - [SMALL_STATE(1918)] = 50575, - [SMALL_STATE(1919)] = 50596, - [SMALL_STATE(1920)] = 50617, - [SMALL_STATE(1921)] = 50638, - [SMALL_STATE(1922)] = 50659, - [SMALL_STATE(1923)] = 50680, - [SMALL_STATE(1924)] = 50701, - [SMALL_STATE(1925)] = 50722, - [SMALL_STATE(1926)] = 50741, - [SMALL_STATE(1927)] = 50762, - [SMALL_STATE(1928)] = 50781, - [SMALL_STATE(1929)] = 50802, - [SMALL_STATE(1930)] = 50821, - [SMALL_STATE(1931)] = 50840, - [SMALL_STATE(1932)] = 50861, - [SMALL_STATE(1933)] = 50880, - [SMALL_STATE(1934)] = 50901, - [SMALL_STATE(1935)] = 50922, - [SMALL_STATE(1936)] = 50943, - [SMALL_STATE(1937)] = 50964, - [SMALL_STATE(1938)] = 50983, - [SMALL_STATE(1939)] = 51004, - [SMALL_STATE(1940)] = 51025, - [SMALL_STATE(1941)] = 51046, - [SMALL_STATE(1942)] = 51067, - [SMALL_STATE(1943)] = 51088, - [SMALL_STATE(1944)] = 51109, - [SMALL_STATE(1945)] = 51130, - [SMALL_STATE(1946)] = 51151, - [SMALL_STATE(1947)] = 51172, - [SMALL_STATE(1948)] = 51191, - [SMALL_STATE(1949)] = 51212, - [SMALL_STATE(1950)] = 51231, - [SMALL_STATE(1951)] = 51252, - [SMALL_STATE(1952)] = 51273, - [SMALL_STATE(1953)] = 51294, - [SMALL_STATE(1954)] = 51315, - [SMALL_STATE(1955)] = 51336, - [SMALL_STATE(1956)] = 51355, - [SMALL_STATE(1957)] = 51376, - [SMALL_STATE(1958)] = 51395, - [SMALL_STATE(1959)] = 51416, - [SMALL_STATE(1960)] = 51437, - [SMALL_STATE(1961)] = 51458, - [SMALL_STATE(1962)] = 51479, - [SMALL_STATE(1963)] = 51500, - [SMALL_STATE(1964)] = 51521, - [SMALL_STATE(1965)] = 51542, - [SMALL_STATE(1966)] = 51563, - [SMALL_STATE(1967)] = 51584, - [SMALL_STATE(1968)] = 51605, - [SMALL_STATE(1969)] = 51624, - [SMALL_STATE(1970)] = 51645, - [SMALL_STATE(1971)] = 51664, - [SMALL_STATE(1972)] = 51683, - [SMALL_STATE(1973)] = 51704, - [SMALL_STATE(1974)] = 51725, - [SMALL_STATE(1975)] = 51746, - [SMALL_STATE(1976)] = 51767, - [SMALL_STATE(1977)] = 51788, - [SMALL_STATE(1978)] = 51807, - [SMALL_STATE(1979)] = 51826, - [SMALL_STATE(1980)] = 51847, - [SMALL_STATE(1981)] = 51868, - [SMALL_STATE(1982)] = 51887, - [SMALL_STATE(1983)] = 51908, - [SMALL_STATE(1984)] = 51927, - [SMALL_STATE(1985)] = 51948, - [SMALL_STATE(1986)] = 51969, - [SMALL_STATE(1987)] = 51988, - [SMALL_STATE(1988)] = 52009, - [SMALL_STATE(1989)] = 52030, - [SMALL_STATE(1990)] = 52051, - [SMALL_STATE(1991)] = 52072, - [SMALL_STATE(1992)] = 52091, - [SMALL_STATE(1993)] = 52112, - [SMALL_STATE(1994)] = 52131, - [SMALL_STATE(1995)] = 52152, - [SMALL_STATE(1996)] = 52173, - [SMALL_STATE(1997)] = 52194, - [SMALL_STATE(1998)] = 52215, - [SMALL_STATE(1999)] = 52236, - [SMALL_STATE(2000)] = 52257, - [SMALL_STATE(2001)] = 52278, - [SMALL_STATE(2002)] = 52299, - [SMALL_STATE(2003)] = 52318, - [SMALL_STATE(2004)] = 52339, - [SMALL_STATE(2005)] = 52360, - [SMALL_STATE(2006)] = 52381, - [SMALL_STATE(2007)] = 52402, - [SMALL_STATE(2008)] = 52423, - [SMALL_STATE(2009)] = 52442, - [SMALL_STATE(2010)] = 52463, - [SMALL_STATE(2011)] = 52484, - [SMALL_STATE(2012)] = 52503, - [SMALL_STATE(2013)] = 52524, - [SMALL_STATE(2014)] = 52545, - [SMALL_STATE(2015)] = 52566, - [SMALL_STATE(2016)] = 52587, - [SMALL_STATE(2017)] = 52606, - [SMALL_STATE(2018)] = 52625, - [SMALL_STATE(2019)] = 52646, - [SMALL_STATE(2020)] = 52667, - [SMALL_STATE(2021)] = 52688, - [SMALL_STATE(2022)] = 52709, - [SMALL_STATE(2023)] = 52730, - [SMALL_STATE(2024)] = 52751, - [SMALL_STATE(2025)] = 52772, - [SMALL_STATE(2026)] = 52793, - [SMALL_STATE(2027)] = 52812, - [SMALL_STATE(2028)] = 52833, - [SMALL_STATE(2029)] = 52854, - [SMALL_STATE(2030)] = 52875, - [SMALL_STATE(2031)] = 52896, - [SMALL_STATE(2032)] = 52917, - [SMALL_STATE(2033)] = 52936, - [SMALL_STATE(2034)] = 52957, - [SMALL_STATE(2035)] = 52978, - [SMALL_STATE(2036)] = 52999, - [SMALL_STATE(2037)] = 53020, - [SMALL_STATE(2038)] = 53041, - [SMALL_STATE(2039)] = 53062, - [SMALL_STATE(2040)] = 53083, - [SMALL_STATE(2041)] = 53102, - [SMALL_STATE(2042)] = 53123, - [SMALL_STATE(2043)] = 53144, - [SMALL_STATE(2044)] = 53165, - [SMALL_STATE(2045)] = 53186, - [SMALL_STATE(2046)] = 53207, - [SMALL_STATE(2047)] = 53228, - [SMALL_STATE(2048)] = 53247, - [SMALL_STATE(2049)] = 53268, - [SMALL_STATE(2050)] = 53287, - [SMALL_STATE(2051)] = 53306, - [SMALL_STATE(2052)] = 53327, - [SMALL_STATE(2053)] = 53346, - [SMALL_STATE(2054)] = 53367, - [SMALL_STATE(2055)] = 53388, - [SMALL_STATE(2056)] = 53409, - [SMALL_STATE(2057)] = 53428, - [SMALL_STATE(2058)] = 53449, - [SMALL_STATE(2059)] = 53470, - [SMALL_STATE(2060)] = 53491, - [SMALL_STATE(2061)] = 53512, - [SMALL_STATE(2062)] = 53533, - [SMALL_STATE(2063)] = 53552, - [SMALL_STATE(2064)] = 53570, - [SMALL_STATE(2065)] = 53588, - [SMALL_STATE(2066)] = 53606, - [SMALL_STATE(2067)] = 53624, - [SMALL_STATE(2068)] = 53642, - [SMALL_STATE(2069)] = 53660, - [SMALL_STATE(2070)] = 53678, - [SMALL_STATE(2071)] = 53696, - [SMALL_STATE(2072)] = 53714, - [SMALL_STATE(2073)] = 53732, - [SMALL_STATE(2074)] = 53750, - [SMALL_STATE(2075)] = 53768, - [SMALL_STATE(2076)] = 53786, - [SMALL_STATE(2077)] = 53804, - [SMALL_STATE(2078)] = 53822, - [SMALL_STATE(2079)] = 53840, - [SMALL_STATE(2080)] = 53858, - [SMALL_STATE(2081)] = 53876, - [SMALL_STATE(2082)] = 53894, - [SMALL_STATE(2083)] = 53912, - [SMALL_STATE(2084)] = 53930, - [SMALL_STATE(2085)] = 53948, - [SMALL_STATE(2086)] = 53966, - [SMALL_STATE(2087)] = 53984, - [SMALL_STATE(2088)] = 54002, - [SMALL_STATE(2089)] = 54020, - [SMALL_STATE(2090)] = 54038, - [SMALL_STATE(2091)] = 54056, - [SMALL_STATE(2092)] = 54074, - [SMALL_STATE(2093)] = 54092, - [SMALL_STATE(2094)] = 54110, - [SMALL_STATE(2095)] = 54128, - [SMALL_STATE(2096)] = 54146, - [SMALL_STATE(2097)] = 54164, - [SMALL_STATE(2098)] = 54182, - [SMALL_STATE(2099)] = 54200, - [SMALL_STATE(2100)] = 54218, - [SMALL_STATE(2101)] = 54236, - [SMALL_STATE(2102)] = 54254, - [SMALL_STATE(2103)] = 54272, - [SMALL_STATE(2104)] = 54290, - [SMALL_STATE(2105)] = 54308, - [SMALL_STATE(2106)] = 54326, - [SMALL_STATE(2107)] = 54344, - [SMALL_STATE(2108)] = 54362, - [SMALL_STATE(2109)] = 54380, - [SMALL_STATE(2110)] = 54398, - [SMALL_STATE(2111)] = 54416, - [SMALL_STATE(2112)] = 54434, - [SMALL_STATE(2113)] = 54452, - [SMALL_STATE(2114)] = 54470, - [SMALL_STATE(2115)] = 54488, - [SMALL_STATE(2116)] = 54506, - [SMALL_STATE(2117)] = 54524, - [SMALL_STATE(2118)] = 54542, - [SMALL_STATE(2119)] = 54560, - [SMALL_STATE(2120)] = 54578, - [SMALL_STATE(2121)] = 54596, - [SMALL_STATE(2122)] = 54614, - [SMALL_STATE(2123)] = 54632, - [SMALL_STATE(2124)] = 54650, - [SMALL_STATE(2125)] = 54668, - [SMALL_STATE(2126)] = 54686, - [SMALL_STATE(2127)] = 54704, - [SMALL_STATE(2128)] = 54722, - [SMALL_STATE(2129)] = 54740, - [SMALL_STATE(2130)] = 54758, - [SMALL_STATE(2131)] = 54776, - [SMALL_STATE(2132)] = 54794, - [SMALL_STATE(2133)] = 54812, - [SMALL_STATE(2134)] = 54830, - [SMALL_STATE(2135)] = 54848, - [SMALL_STATE(2136)] = 54866, - [SMALL_STATE(2137)] = 54884, - [SMALL_STATE(2138)] = 54902, - [SMALL_STATE(2139)] = 54920, - [SMALL_STATE(2140)] = 54938, - [SMALL_STATE(2141)] = 54956, - [SMALL_STATE(2142)] = 54974, - [SMALL_STATE(2143)] = 54992, - [SMALL_STATE(2144)] = 55010, - [SMALL_STATE(2145)] = 55028, - [SMALL_STATE(2146)] = 55046, - [SMALL_STATE(2147)] = 55064, - [SMALL_STATE(2148)] = 55082, - [SMALL_STATE(2149)] = 55100, - [SMALL_STATE(2150)] = 55118, - [SMALL_STATE(2151)] = 55136, - [SMALL_STATE(2152)] = 55154, - [SMALL_STATE(2153)] = 55172, - [SMALL_STATE(2154)] = 55190, - [SMALL_STATE(2155)] = 55208, - [SMALL_STATE(2156)] = 55226, - [SMALL_STATE(2157)] = 55244, - [SMALL_STATE(2158)] = 55262, - [SMALL_STATE(2159)] = 55280, - [SMALL_STATE(2160)] = 55298, - [SMALL_STATE(2161)] = 55316, - [SMALL_STATE(2162)] = 55334, - [SMALL_STATE(2163)] = 55352, - [SMALL_STATE(2164)] = 55370, - [SMALL_STATE(2165)] = 55388, - [SMALL_STATE(2166)] = 55406, - [SMALL_STATE(2167)] = 55424, - [SMALL_STATE(2168)] = 55442, - [SMALL_STATE(2169)] = 55460, - [SMALL_STATE(2170)] = 55478, - [SMALL_STATE(2171)] = 55496, - [SMALL_STATE(2172)] = 55514, - [SMALL_STATE(2173)] = 55532, - [SMALL_STATE(2174)] = 55550, - [SMALL_STATE(2175)] = 55568, - [SMALL_STATE(2176)] = 55586, - [SMALL_STATE(2177)] = 55604, - [SMALL_STATE(2178)] = 55622, - [SMALL_STATE(2179)] = 55640, - [SMALL_STATE(2180)] = 55658, - [SMALL_STATE(2181)] = 55676, - [SMALL_STATE(2182)] = 55694, - [SMALL_STATE(2183)] = 55712, - [SMALL_STATE(2184)] = 55730, - [SMALL_STATE(2185)] = 55748, - [SMALL_STATE(2186)] = 55766, - [SMALL_STATE(2187)] = 55784, - [SMALL_STATE(2188)] = 55802, - [SMALL_STATE(2189)] = 55820, - [SMALL_STATE(2190)] = 55838, - [SMALL_STATE(2191)] = 55856, - [SMALL_STATE(2192)] = 55874, - [SMALL_STATE(2193)] = 55892, - [SMALL_STATE(2194)] = 55910, - [SMALL_STATE(2195)] = 55928, - [SMALL_STATE(2196)] = 55946, - [SMALL_STATE(2197)] = 55964, - [SMALL_STATE(2198)] = 55982, - [SMALL_STATE(2199)] = 56000, - [SMALL_STATE(2200)] = 56018, - [SMALL_STATE(2201)] = 56036, - [SMALL_STATE(2202)] = 56054, - [SMALL_STATE(2203)] = 56072, - [SMALL_STATE(2204)] = 56090, - [SMALL_STATE(2205)] = 56108, - [SMALL_STATE(2206)] = 56126, - [SMALL_STATE(2207)] = 56144, - [SMALL_STATE(2208)] = 56162, - [SMALL_STATE(2209)] = 56180, - [SMALL_STATE(2210)] = 56198, - [SMALL_STATE(2211)] = 56216, - [SMALL_STATE(2212)] = 56234, - [SMALL_STATE(2213)] = 56252, - [SMALL_STATE(2214)] = 56270, - [SMALL_STATE(2215)] = 56288, - [SMALL_STATE(2216)] = 56306, - [SMALL_STATE(2217)] = 56324, - [SMALL_STATE(2218)] = 56342, - [SMALL_STATE(2219)] = 56360, - [SMALL_STATE(2220)] = 56378, - [SMALL_STATE(2221)] = 56396, - [SMALL_STATE(2222)] = 56414, - [SMALL_STATE(2223)] = 56432, - [SMALL_STATE(2224)] = 56450, - [SMALL_STATE(2225)] = 56468, - [SMALL_STATE(2226)] = 56486, - [SMALL_STATE(2227)] = 56504, - [SMALL_STATE(2228)] = 56522, - [SMALL_STATE(2229)] = 56540, - [SMALL_STATE(2230)] = 56558, - [SMALL_STATE(2231)] = 56576, - [SMALL_STATE(2232)] = 56594, - [SMALL_STATE(2233)] = 56612, - [SMALL_STATE(2234)] = 56630, - [SMALL_STATE(2235)] = 56648, - [SMALL_STATE(2236)] = 56666, - [SMALL_STATE(2237)] = 56684, - [SMALL_STATE(2238)] = 56702, - [SMALL_STATE(2239)] = 56720, - [SMALL_STATE(2240)] = 56738, - [SMALL_STATE(2241)] = 56756, - [SMALL_STATE(2242)] = 56774, - [SMALL_STATE(2243)] = 56792, - [SMALL_STATE(2244)] = 56810, - [SMALL_STATE(2245)] = 56828, - [SMALL_STATE(2246)] = 56846, - [SMALL_STATE(2247)] = 56864, - [SMALL_STATE(2248)] = 56882, - [SMALL_STATE(2249)] = 56900, - [SMALL_STATE(2250)] = 56918, - [SMALL_STATE(2251)] = 56936, - [SMALL_STATE(2252)] = 56954, - [SMALL_STATE(2253)] = 56972, - [SMALL_STATE(2254)] = 56990, - [SMALL_STATE(2255)] = 57008, - [SMALL_STATE(2256)] = 57026, - [SMALL_STATE(2257)] = 57044, - [SMALL_STATE(2258)] = 57062, - [SMALL_STATE(2259)] = 57080, - [SMALL_STATE(2260)] = 57098, - [SMALL_STATE(2261)] = 57116, - [SMALL_STATE(2262)] = 57134, - [SMALL_STATE(2263)] = 57152, - [SMALL_STATE(2264)] = 57170, - [SMALL_STATE(2265)] = 57188, - [SMALL_STATE(2266)] = 57206, - [SMALL_STATE(2267)] = 57224, - [SMALL_STATE(2268)] = 57242, - [SMALL_STATE(2269)] = 57260, - [SMALL_STATE(2270)] = 57278, - [SMALL_STATE(2271)] = 57296, - [SMALL_STATE(2272)] = 57314, - [SMALL_STATE(2273)] = 57332, - [SMALL_STATE(2274)] = 57350, - [SMALL_STATE(2275)] = 57368, - [SMALL_STATE(2276)] = 57386, - [SMALL_STATE(2277)] = 57404, - [SMALL_STATE(2278)] = 57422, - [SMALL_STATE(2279)] = 57440, - [SMALL_STATE(2280)] = 57458, - [SMALL_STATE(2281)] = 57476, - [SMALL_STATE(2282)] = 57494, - [SMALL_STATE(2283)] = 57512, - [SMALL_STATE(2284)] = 57530, - [SMALL_STATE(2285)] = 57548, - [SMALL_STATE(2286)] = 57566, - [SMALL_STATE(2287)] = 57584, - [SMALL_STATE(2288)] = 57602, - [SMALL_STATE(2289)] = 57620, - [SMALL_STATE(2290)] = 57638, - [SMALL_STATE(2291)] = 57656, - [SMALL_STATE(2292)] = 57674, - [SMALL_STATE(2293)] = 57692, - [SMALL_STATE(2294)] = 57710, - [SMALL_STATE(2295)] = 57728, - [SMALL_STATE(2296)] = 57746, - [SMALL_STATE(2297)] = 57764, - [SMALL_STATE(2298)] = 57782, - [SMALL_STATE(2299)] = 57800, - [SMALL_STATE(2300)] = 57818, - [SMALL_STATE(2301)] = 57836, - [SMALL_STATE(2302)] = 57854, - [SMALL_STATE(2303)] = 57872, - [SMALL_STATE(2304)] = 57890, - [SMALL_STATE(2305)] = 57908, - [SMALL_STATE(2306)] = 57926, - [SMALL_STATE(2307)] = 57944, - [SMALL_STATE(2308)] = 57962, - [SMALL_STATE(2309)] = 57980, - [SMALL_STATE(2310)] = 57998, - [SMALL_STATE(2311)] = 58016, - [SMALL_STATE(2312)] = 58034, - [SMALL_STATE(2313)] = 58052, - [SMALL_STATE(2314)] = 58070, - [SMALL_STATE(2315)] = 58088, - [SMALL_STATE(2316)] = 58106, - [SMALL_STATE(2317)] = 58124, - [SMALL_STATE(2318)] = 58142, - [SMALL_STATE(2319)] = 58160, - [SMALL_STATE(2320)] = 58178, - [SMALL_STATE(2321)] = 58196, - [SMALL_STATE(2322)] = 58214, - [SMALL_STATE(2323)] = 58232, - [SMALL_STATE(2324)] = 58250, - [SMALL_STATE(2325)] = 58268, - [SMALL_STATE(2326)] = 58286, - [SMALL_STATE(2327)] = 58304, - [SMALL_STATE(2328)] = 58322, - [SMALL_STATE(2329)] = 58340, - [SMALL_STATE(2330)] = 58358, - [SMALL_STATE(2331)] = 58376, - [SMALL_STATE(2332)] = 58394, - [SMALL_STATE(2333)] = 58412, - [SMALL_STATE(2334)] = 58430, - [SMALL_STATE(2335)] = 58448, - [SMALL_STATE(2336)] = 58466, - [SMALL_STATE(2337)] = 58484, - [SMALL_STATE(2338)] = 58502, - [SMALL_STATE(2339)] = 58520, - [SMALL_STATE(2340)] = 58538, - [SMALL_STATE(2341)] = 58556, - [SMALL_STATE(2342)] = 58574, - [SMALL_STATE(2343)] = 58592, - [SMALL_STATE(2344)] = 58610, - [SMALL_STATE(2345)] = 58628, - [SMALL_STATE(2346)] = 58646, - [SMALL_STATE(2347)] = 58664, - [SMALL_STATE(2348)] = 58682, - [SMALL_STATE(2349)] = 58700, - [SMALL_STATE(2350)] = 58718, - [SMALL_STATE(2351)] = 58736, - [SMALL_STATE(2352)] = 58754, - [SMALL_STATE(2353)] = 58772, - [SMALL_STATE(2354)] = 58790, - [SMALL_STATE(2355)] = 58808, - [SMALL_STATE(2356)] = 58826, - [SMALL_STATE(2357)] = 58844, - [SMALL_STATE(2358)] = 58862, - [SMALL_STATE(2359)] = 58880, - [SMALL_STATE(2360)] = 58898, - [SMALL_STATE(2361)] = 58916, - [SMALL_STATE(2362)] = 58934, - [SMALL_STATE(2363)] = 58952, - [SMALL_STATE(2364)] = 58970, - [SMALL_STATE(2365)] = 58988, - [SMALL_STATE(2366)] = 59006, - [SMALL_STATE(2367)] = 59024, - [SMALL_STATE(2368)] = 59042, - [SMALL_STATE(2369)] = 59060, - [SMALL_STATE(2370)] = 59078, - [SMALL_STATE(2371)] = 59096, - [SMALL_STATE(2372)] = 59114, - [SMALL_STATE(2373)] = 59132, - [SMALL_STATE(2374)] = 59150, - [SMALL_STATE(2375)] = 59168, - [SMALL_STATE(2376)] = 59186, - [SMALL_STATE(2377)] = 59204, - [SMALL_STATE(2378)] = 59208, - [SMALL_STATE(2379)] = 59212, + [SMALL_STATE(825)] = 0, + [SMALL_STATE(826)] = 79, + [SMALL_STATE(827)] = 160, + [SMALL_STATE(828)] = 238, + [SMALL_STATE(829)] = 310, + [SMALL_STATE(830)] = 388, + [SMALL_STATE(831)] = 460, + [SMALL_STATE(832)] = 595, + [SMALL_STATE(833)] = 666, + [SMALL_STATE(834)] = 737, + [SMALL_STATE(835)] = 808, + [SMALL_STATE(836)] = 879, + [SMALL_STATE(837)] = 950, + [SMALL_STATE(838)] = 1021, + [SMALL_STATE(839)] = 1092, + [SMALL_STATE(840)] = 1163, + [SMALL_STATE(841)] = 1234, + [SMALL_STATE(842)] = 1305, + [SMALL_STATE(843)] = 1376, + [SMALL_STATE(844)] = 1447, + [SMALL_STATE(845)] = 1518, + [SMALL_STATE(846)] = 1589, + [SMALL_STATE(847)] = 1660, + [SMALL_STATE(848)] = 1731, + [SMALL_STATE(849)] = 1802, + [SMALL_STATE(850)] = 1873, + [SMALL_STATE(851)] = 1944, + [SMALL_STATE(852)] = 2015, + [SMALL_STATE(853)] = 2086, + [SMALL_STATE(854)] = 2157, + [SMALL_STATE(855)] = 2228, + [SMALL_STATE(856)] = 2365, + [SMALL_STATE(857)] = 2436, + [SMALL_STATE(858)] = 2563, + [SMALL_STATE(859)] = 2634, + [SMALL_STATE(860)] = 2705, + [SMALL_STATE(861)] = 2776, + [SMALL_STATE(862)] = 2847, + [SMALL_STATE(863)] = 2960, + [SMALL_STATE(864)] = 3073, + [SMALL_STATE(865)] = 3186, + [SMALL_STATE(866)] = 3257, + [SMALL_STATE(867)] = 3370, + [SMALL_STATE(868)] = 3483, + [SMALL_STATE(869)] = 3596, + [SMALL_STATE(870)] = 3699, + [SMALL_STATE(871)] = 3802, + [SMALL_STATE(872)] = 3873, + [SMALL_STATE(873)] = 3966, + [SMALL_STATE(874)] = 4059, + [SMALL_STATE(875)] = 4130, + [SMALL_STATE(876)] = 4201, + [SMALL_STATE(877)] = 4272, + [SMALL_STATE(878)] = 4343, + [SMALL_STATE(879)] = 4414, + [SMALL_STATE(880)] = 4485, + [SMALL_STATE(881)] = 4556, + [SMALL_STATE(882)] = 4627, + [SMALL_STATE(883)] = 4698, + [SMALL_STATE(884)] = 4769, + [SMALL_STATE(885)] = 4840, + [SMALL_STATE(886)] = 4911, + [SMALL_STATE(887)] = 5004, + [SMALL_STATE(888)] = 5075, + [SMALL_STATE(889)] = 5158, + [SMALL_STATE(890)] = 5229, + [SMALL_STATE(891)] = 5328, + [SMALL_STATE(892)] = 5399, + [SMALL_STATE(893)] = 5470, + [SMALL_STATE(894)] = 5541, + [SMALL_STATE(895)] = 5612, + [SMALL_STATE(896)] = 5683, + [SMALL_STATE(897)] = 5754, + [SMALL_STATE(898)] = 5825, + [SMALL_STATE(899)] = 5896, + [SMALL_STATE(900)] = 5967, + [SMALL_STATE(901)] = 6038, + [SMALL_STATE(902)] = 6109, + [SMALL_STATE(903)] = 6180, + [SMALL_STATE(904)] = 6251, + [SMALL_STATE(905)] = 6322, + [SMALL_STATE(906)] = 6421, + [SMALL_STATE(907)] = 6492, + [SMALL_STATE(908)] = 6585, + [SMALL_STATE(909)] = 6694, + [SMALL_STATE(910)] = 6765, + [SMALL_STATE(911)] = 6836, + [SMALL_STATE(912)] = 6907, + [SMALL_STATE(913)] = 6978, + [SMALL_STATE(914)] = 7049, + [SMALL_STATE(915)] = 7120, + [SMALL_STATE(916)] = 7191, + [SMALL_STATE(917)] = 7262, + [SMALL_STATE(918)] = 7371, + [SMALL_STATE(919)] = 7496, + [SMALL_STATE(920)] = 7567, + [SMALL_STATE(921)] = 7638, + [SMALL_STATE(922)] = 7709, + [SMALL_STATE(923)] = 7780, + [SMALL_STATE(924)] = 7851, + [SMALL_STATE(925)] = 7954, + [SMALL_STATE(926)] = 8025, + [SMALL_STATE(927)] = 8096, + [SMALL_STATE(928)] = 8167, + [SMALL_STATE(929)] = 8238, + [SMALL_STATE(930)] = 8309, + [SMALL_STATE(931)] = 8380, + [SMALL_STATE(932)] = 8515, + [SMALL_STATE(933)] = 8586, + [SMALL_STATE(934)] = 8679, + [SMALL_STATE(935)] = 8750, + [SMALL_STATE(936)] = 8821, + [SMALL_STATE(937)] = 8892, + [SMALL_STATE(938)] = 8975, + [SMALL_STATE(939)] = 9050, + [SMALL_STATE(940)] = 9121, + [SMALL_STATE(941)] = 9192, + [SMALL_STATE(942)] = 9265, + [SMALL_STATE(943)] = 9344, + [SMALL_STATE(944)] = 9415, + [SMALL_STATE(945)] = 9544, + [SMALL_STATE(946)] = 9615, + [SMALL_STATE(947)] = 9686, + [SMALL_STATE(948)] = 9821, + [SMALL_STATE(949)] = 9892, + [SMALL_STATE(950)] = 9963, + [SMALL_STATE(951)] = 10034, + [SMALL_STATE(952)] = 10105, + [SMALL_STATE(953)] = 10177, + [SMALL_STATE(954)] = 10251, + [SMALL_STATE(955)] = 10325, + [SMALL_STATE(956)] = 10395, + [SMALL_STATE(957)] = 10465, + [SMALL_STATE(958)] = 10537, + [SMALL_STATE(959)] = 10607, + [SMALL_STATE(960)] = 10677, + [SMALL_STATE(961)] = 10751, + [SMALL_STATE(962)] = 10821, + [SMALL_STATE(963)] = 10890, + [SMALL_STATE(964)] = 10959, + [SMALL_STATE(965)] = 11028, + [SMALL_STATE(966)] = 11097, + [SMALL_STATE(967)] = 11166, + [SMALL_STATE(968)] = 11235, + [SMALL_STATE(969)] = 11304, + [SMALL_STATE(970)] = 11373, + [SMALL_STATE(971)] = 11442, + [SMALL_STATE(972)] = 11511, + [SMALL_STATE(973)] = 11580, + [SMALL_STATE(974)] = 11651, + [SMALL_STATE(975)] = 11720, + [SMALL_STATE(976)] = 11789, + [SMALL_STATE(977)] = 11858, + [SMALL_STATE(978)] = 11927, + [SMALL_STATE(979)] = 11995, + [SMALL_STATE(980)] = 12063, + [SMALL_STATE(981)] = 12131, + [SMALL_STATE(982)] = 12199, + [SMALL_STATE(983)] = 12267, + [SMALL_STATE(984)] = 12335, + [SMALL_STATE(985)] = 12403, + [SMALL_STATE(986)] = 12471, + [SMALL_STATE(987)] = 12539, + [SMALL_STATE(988)] = 12607, + [SMALL_STATE(989)] = 12675, + [SMALL_STATE(990)] = 12747, + [SMALL_STATE(991)] = 12815, + [SMALL_STATE(992)] = 12883, + [SMALL_STATE(993)] = 12951, + [SMALL_STATE(994)] = 13027, + [SMALL_STATE(995)] = 13095, + [SMALL_STATE(996)] = 13163, + [SMALL_STATE(997)] = 13231, + [SMALL_STATE(998)] = 13299, + [SMALL_STATE(999)] = 13367, + [SMALL_STATE(1000)] = 13435, + [SMALL_STATE(1001)] = 13503, + [SMALL_STATE(1002)] = 13571, + [SMALL_STATE(1003)] = 13639, + [SMALL_STATE(1004)] = 13707, + [SMALL_STATE(1005)] = 13775, + [SMALL_STATE(1006)] = 13843, + [SMALL_STATE(1007)] = 13911, + [SMALL_STATE(1008)] = 13979, + [SMALL_STATE(1009)] = 14047, + [SMALL_STATE(1010)] = 14115, + [SMALL_STATE(1011)] = 14183, + [SMALL_STATE(1012)] = 14251, + [SMALL_STATE(1013)] = 14319, + [SMALL_STATE(1014)] = 14387, + [SMALL_STATE(1015)] = 14455, + [SMALL_STATE(1016)] = 14523, + [SMALL_STATE(1017)] = 14591, + [SMALL_STATE(1018)] = 14658, + [SMALL_STATE(1019)] = 14737, + [SMALL_STATE(1020)] = 14816, + [SMALL_STATE(1021)] = 14948, + [SMALL_STATE(1022)] = 15080, + [SMALL_STATE(1023)] = 15146, + [SMALL_STATE(1024)] = 15212, + [SMALL_STATE(1025)] = 15348, + [SMALL_STATE(1026)] = 15414, + [SMALL_STATE(1027)] = 15546, + [SMALL_STATE(1028)] = 15612, + [SMALL_STATE(1029)] = 15744, + [SMALL_STATE(1030)] = 15810, + [SMALL_STATE(1031)] = 15876, + [SMALL_STATE(1032)] = 15942, + [SMALL_STATE(1033)] = 16008, + [SMALL_STATE(1034)] = 16074, + [SMALL_STATE(1035)] = 16206, + [SMALL_STATE(1036)] = 16272, + [SMALL_STATE(1037)] = 16338, + [SMALL_STATE(1038)] = 16469, + [SMALL_STATE(1039)] = 16604, + [SMALL_STATE(1040)] = 16739, + [SMALL_STATE(1041)] = 16874, + [SMALL_STATE(1042)] = 17009, + [SMALL_STATE(1043)] = 17144, + [SMALL_STATE(1044)] = 17275, + [SMALL_STATE(1045)] = 17410, + [SMALL_STATE(1046)] = 17545, + [SMALL_STATE(1047)] = 17646, + [SMALL_STATE(1048)] = 17777, + [SMALL_STATE(1049)] = 17910, + [SMALL_STATE(1050)] = 18045, + [SMALL_STATE(1051)] = 18143, + [SMALL_STATE(1052)] = 18239, + [SMALL_STATE(1053)] = 18335, + [SMALL_STATE(1054)] = 18457, + [SMALL_STATE(1055)] = 18553, + [SMALL_STATE(1056)] = 18649, + [SMALL_STATE(1057)] = 18745, + [SMALL_STATE(1058)] = 18837, + [SMALL_STATE(1059)] = 18901, + [SMALL_STATE(1060)] = 18967, + [SMALL_STATE(1061)] = 19065, + [SMALL_STATE(1062)] = 19131, + [SMALL_STATE(1063)] = 19263, + [SMALL_STATE(1064)] = 19391, + [SMALL_STATE(1065)] = 19489, + [SMALL_STATE(1066)] = 19621, + [SMALL_STATE(1067)] = 19719, + [SMALL_STATE(1068)] = 19815, + [SMALL_STATE(1069)] = 19945, + [SMALL_STATE(1070)] = 20043, + [SMALL_STATE(1071)] = 20137, + [SMALL_STATE(1072)] = 20266, + [SMALL_STATE(1073)] = 20395, + [SMALL_STATE(1074)] = 20524, + [SMALL_STATE(1075)] = 20653, + [SMALL_STATE(1076)] = 20782, + [SMALL_STATE(1077)] = 20911, + [SMALL_STATE(1078)] = 21040, + [SMALL_STATE(1079)] = 21169, + [SMALL_STATE(1080)] = 21298, + [SMALL_STATE(1081)] = 21427, + [SMALL_STATE(1082)] = 21556, + [SMALL_STATE(1083)] = 21685, + [SMALL_STATE(1084)] = 21814, + [SMALL_STATE(1085)] = 21943, + [SMALL_STATE(1086)] = 22072, + [SMALL_STATE(1087)] = 22201, + [SMALL_STATE(1088)] = 22330, + [SMALL_STATE(1089)] = 22425, + [SMALL_STATE(1090)] = 22554, + [SMALL_STATE(1091)] = 22683, + [SMALL_STATE(1092)] = 22812, + [SMALL_STATE(1093)] = 22941, + [SMALL_STATE(1094)] = 23070, + [SMALL_STATE(1095)] = 23137, + [SMALL_STATE(1096)] = 23266, + [SMALL_STATE(1097)] = 23395, + [SMALL_STATE(1098)] = 23524, + [SMALL_STATE(1099)] = 23653, + [SMALL_STATE(1100)] = 23782, + [SMALL_STATE(1101)] = 23911, + [SMALL_STATE(1102)] = 24040, + [SMALL_STATE(1103)] = 24169, + [SMALL_STATE(1104)] = 24298, + [SMALL_STATE(1105)] = 24373, + [SMALL_STATE(1106)] = 24502, + [SMALL_STATE(1107)] = 24569, + [SMALL_STATE(1108)] = 24698, + [SMALL_STATE(1109)] = 24827, + [SMALL_STATE(1110)] = 24956, + [SMALL_STATE(1111)] = 25085, + [SMALL_STATE(1112)] = 25214, + [SMALL_STATE(1113)] = 25343, + [SMALL_STATE(1114)] = 25472, + [SMALL_STATE(1115)] = 25601, + [SMALL_STATE(1116)] = 25730, + [SMALL_STATE(1117)] = 25859, + [SMALL_STATE(1118)] = 25988, + [SMALL_STATE(1119)] = 26117, + [SMALL_STATE(1120)] = 26246, + [SMALL_STATE(1121)] = 26375, + [SMALL_STATE(1122)] = 26501, + [SMALL_STATE(1123)] = 26567, + [SMALL_STATE(1124)] = 26659, + [SMALL_STATE(1125)] = 26722, + [SMALL_STATE(1126)] = 26785, + [SMALL_STATE(1127)] = 26848, + [SMALL_STATE(1128)] = 26911, + [SMALL_STATE(1129)] = 26996, + [SMALL_STATE(1130)] = 27058, + [SMALL_STATE(1131)] = 27139, + [SMALL_STATE(1132)] = 27222, + [SMALL_STATE(1133)] = 27303, + [SMALL_STATE(1134)] = 27386, + [SMALL_STATE(1135)] = 27466, + [SMALL_STATE(1136)] = 27546, + [SMALL_STATE(1137)] = 27626, + [SMALL_STATE(1138)] = 27706, + [SMALL_STATE(1139)] = 27786, + [SMALL_STATE(1140)] = 27866, + [SMALL_STATE(1141)] = 27946, + [SMALL_STATE(1142)] = 28026, + [SMALL_STATE(1143)] = 28104, + [SMALL_STATE(1144)] = 28184, + [SMALL_STATE(1145)] = 28261, + [SMALL_STATE(1146)] = 28338, + [SMALL_STATE(1147)] = 28415, + [SMALL_STATE(1148)] = 28492, + [SMALL_STATE(1149)] = 28569, + [SMALL_STATE(1150)] = 28646, + [SMALL_STATE(1151)] = 28723, + [SMALL_STATE(1152)] = 28800, + [SMALL_STATE(1153)] = 28877, + [SMALL_STATE(1154)] = 28954, + [SMALL_STATE(1155)] = 29031, + [SMALL_STATE(1156)] = 29108, + [SMALL_STATE(1157)] = 29185, + [SMALL_STATE(1158)] = 29259, + [SMALL_STATE(1159)] = 29333, + [SMALL_STATE(1160)] = 29407, + [SMALL_STATE(1161)] = 29481, + [SMALL_STATE(1162)] = 29555, + [SMALL_STATE(1163)] = 29629, + [SMALL_STATE(1164)] = 29703, + [SMALL_STATE(1165)] = 29777, + [SMALL_STATE(1166)] = 29851, + [SMALL_STATE(1167)] = 29925, + [SMALL_STATE(1168)] = 29999, + [SMALL_STATE(1169)] = 30073, + [SMALL_STATE(1170)] = 30147, + [SMALL_STATE(1171)] = 30221, + [SMALL_STATE(1172)] = 30295, + [SMALL_STATE(1173)] = 30369, + [SMALL_STATE(1174)] = 30443, + [SMALL_STATE(1175)] = 30517, + [SMALL_STATE(1176)] = 30591, + [SMALL_STATE(1177)] = 30646, + [SMALL_STATE(1178)] = 30701, + [SMALL_STATE(1179)] = 30756, + [SMALL_STATE(1180)] = 30811, + [SMALL_STATE(1181)] = 30866, + [SMALL_STATE(1182)] = 30921, + [SMALL_STATE(1183)] = 30976, + [SMALL_STATE(1184)] = 31031, + [SMALL_STATE(1185)] = 31086, + [SMALL_STATE(1186)] = 31141, + [SMALL_STATE(1187)] = 31196, + [SMALL_STATE(1188)] = 31251, + [SMALL_STATE(1189)] = 31306, + [SMALL_STATE(1190)] = 31361, + [SMALL_STATE(1191)] = 31416, + [SMALL_STATE(1192)] = 31467, + [SMALL_STATE(1193)] = 31518, + [SMALL_STATE(1194)] = 31569, + [SMALL_STATE(1195)] = 31620, + [SMALL_STATE(1196)] = 31670, + [SMALL_STATE(1197)] = 31720, + [SMALL_STATE(1198)] = 31770, + [SMALL_STATE(1199)] = 31816, + [SMALL_STATE(1200)] = 31866, + [SMALL_STATE(1201)] = 31908, + [SMALL_STATE(1202)] = 31945, + [SMALL_STATE(1203)] = 31981, + [SMALL_STATE(1204)] = 32017, + [SMALL_STATE(1205)] = 32053, + [SMALL_STATE(1206)] = 32089, + [SMALL_STATE(1207)] = 32125, + [SMALL_STATE(1208)] = 32161, + [SMALL_STATE(1209)] = 32197, + [SMALL_STATE(1210)] = 32233, + [SMALL_STATE(1211)] = 32269, + [SMALL_STATE(1212)] = 32305, + [SMALL_STATE(1213)] = 32341, + [SMALL_STATE(1214)] = 32392, + [SMALL_STATE(1215)] = 32455, + [SMALL_STATE(1216)] = 32518, + [SMALL_STATE(1217)] = 32581, + [SMALL_STATE(1218)] = 32638, + [SMALL_STATE(1219)] = 32691, + [SMALL_STATE(1220)] = 32754, + [SMALL_STATE(1221)] = 32814, + [SMALL_STATE(1222)] = 32874, + [SMALL_STATE(1223)] = 32934, + [SMALL_STATE(1224)] = 32990, + [SMALL_STATE(1225)] = 33026, + [SMALL_STATE(1226)] = 33077, + [SMALL_STATE(1227)] = 33134, + [SMALL_STATE(1228)] = 33191, + [SMALL_STATE(1229)] = 33242, + [SMALL_STATE(1230)] = 33299, + [SMALL_STATE(1231)] = 33356, + [SMALL_STATE(1232)] = 33413, + [SMALL_STATE(1233)] = 33470, + [SMALL_STATE(1234)] = 33525, + [SMALL_STATE(1235)] = 33576, + [SMALL_STATE(1236)] = 33627, + [SMALL_STATE(1237)] = 33678, + [SMALL_STATE(1238)] = 33735, + [SMALL_STATE(1239)] = 33792, + [SMALL_STATE(1240)] = 33849, + [SMALL_STATE(1241)] = 33903, + [SMALL_STATE(1242)] = 33957, + [SMALL_STATE(1243)] = 34011, + [SMALL_STATE(1244)] = 34065, + [SMALL_STATE(1245)] = 34119, + [SMALL_STATE(1246)] = 34173, + [SMALL_STATE(1247)] = 34227, + [SMALL_STATE(1248)] = 34281, + [SMALL_STATE(1249)] = 34313, + [SMALL_STATE(1250)] = 34367, + [SMALL_STATE(1251)] = 34421, + [SMALL_STATE(1252)] = 34475, + [SMALL_STATE(1253)] = 34529, + [SMALL_STATE(1254)] = 34583, + [SMALL_STATE(1255)] = 34625, + [SMALL_STATE(1256)] = 34679, + [SMALL_STATE(1257)] = 34733, + [SMALL_STATE(1258)] = 34787, + [SMALL_STATE(1259)] = 34841, + [SMALL_STATE(1260)] = 34895, + [SMALL_STATE(1261)] = 34927, + [SMALL_STATE(1262)] = 34981, + [SMALL_STATE(1263)] = 35032, + [SMALL_STATE(1264)] = 35083, + [SMALL_STATE(1265)] = 35118, + [SMALL_STATE(1266)] = 35169, + [SMALL_STATE(1267)] = 35208, + [SMALL_STATE(1268)] = 35259, + [SMALL_STATE(1269)] = 35298, + [SMALL_STATE(1270)] = 35337, + [SMALL_STATE(1271)] = 35388, + [SMALL_STATE(1272)] = 35439, + [SMALL_STATE(1273)] = 35490, + [SMALL_STATE(1274)] = 35541, + [SMALL_STATE(1275)] = 35592, + [SMALL_STATE(1276)] = 35643, + [SMALL_STATE(1277)] = 35692, + [SMALL_STATE(1278)] = 35743, + [SMALL_STATE(1279)] = 35794, + [SMALL_STATE(1280)] = 35845, + [SMALL_STATE(1281)] = 35896, + [SMALL_STATE(1282)] = 35947, + [SMALL_STATE(1283)] = 35996, + [SMALL_STATE(1284)] = 36047, + [SMALL_STATE(1285)] = 36098, + [SMALL_STATE(1286)] = 36146, + [SMALL_STATE(1287)] = 36194, + [SMALL_STATE(1288)] = 36242, + [SMALL_STATE(1289)] = 36290, + [SMALL_STATE(1290)] = 36338, + [SMALL_STATE(1291)] = 36386, + [SMALL_STATE(1292)] = 36434, + [SMALL_STATE(1293)] = 36482, + [SMALL_STATE(1294)] = 36530, + [SMALL_STATE(1295)] = 36560, + [SMALL_STATE(1296)] = 36608, + [SMALL_STATE(1297)] = 36656, + [SMALL_STATE(1298)] = 36704, + [SMALL_STATE(1299)] = 36752, + [SMALL_STATE(1300)] = 36800, + [SMALL_STATE(1301)] = 36848, + [SMALL_STATE(1302)] = 36878, + [SMALL_STATE(1303)] = 36908, + [SMALL_STATE(1304)] = 36956, + [SMALL_STATE(1305)] = 37004, + [SMALL_STATE(1306)] = 37034, + [SMALL_STATE(1307)] = 37082, + [SMALL_STATE(1308)] = 37127, + [SMALL_STATE(1309)] = 37172, + [SMALL_STATE(1310)] = 37201, + [SMALL_STATE(1311)] = 37246, + [SMALL_STATE(1312)] = 37275, + [SMALL_STATE(1313)] = 37304, + [SMALL_STATE(1314)] = 37349, + [SMALL_STATE(1315)] = 37394, + [SMALL_STATE(1316)] = 37439, + [SMALL_STATE(1317)] = 37468, + [SMALL_STATE(1318)] = 37513, + [SMALL_STATE(1319)] = 37540, + [SMALL_STATE(1320)] = 37585, + [SMALL_STATE(1321)] = 37630, + [SMALL_STATE(1322)] = 37675, + [SMALL_STATE(1323)] = 37720, + [SMALL_STATE(1324)] = 37765, + [SMALL_STATE(1325)] = 37799, + [SMALL_STATE(1326)] = 37825, + [SMALL_STATE(1327)] = 37865, + [SMALL_STATE(1328)] = 37897, + [SMALL_STATE(1329)] = 37929, + [SMALL_STATE(1330)] = 37954, + [SMALL_STATE(1331)] = 37991, + [SMALL_STATE(1332)] = 38016, + [SMALL_STATE(1333)] = 38041, + [SMALL_STATE(1334)] = 38078, + [SMALL_STATE(1335)] = 38103, + [SMALL_STATE(1336)] = 38128, + [SMALL_STATE(1337)] = 38153, + [SMALL_STATE(1338)] = 38186, + [SMALL_STATE(1339)] = 38222, + [SMALL_STATE(1340)] = 38246, + [SMALL_STATE(1341)] = 38276, + [SMALL_STATE(1342)] = 38300, + [SMALL_STATE(1343)] = 38336, + [SMALL_STATE(1344)] = 38360, + [SMALL_STATE(1345)] = 38394, + [SMALL_STATE(1346)] = 38418, + [SMALL_STATE(1347)] = 38454, + [SMALL_STATE(1348)] = 38484, + [SMALL_STATE(1349)] = 38508, + [SMALL_STATE(1350)] = 38538, + [SMALL_STATE(1351)] = 38574, + [SMALL_STATE(1352)] = 38610, + [SMALL_STATE(1353)] = 38642, + [SMALL_STATE(1354)] = 38678, + [SMALL_STATE(1355)] = 38704, + [SMALL_STATE(1356)] = 38740, + [SMALL_STATE(1357)] = 38776, + [SMALL_STATE(1358)] = 38812, + [SMALL_STATE(1359)] = 38838, + [SMALL_STATE(1360)] = 38869, + [SMALL_STATE(1361)] = 38900, + [SMALL_STATE(1362)] = 38927, + [SMALL_STATE(1363)] = 38960, + [SMALL_STATE(1364)] = 38991, + [SMALL_STATE(1365)] = 39014, + [SMALL_STATE(1366)] = 39047, + [SMALL_STATE(1367)] = 39078, + [SMALL_STATE(1368)] = 39109, + [SMALL_STATE(1369)] = 39138, + [SMALL_STATE(1370)] = 39169, + [SMALL_STATE(1371)] = 39200, + [SMALL_STATE(1372)] = 39231, + [SMALL_STATE(1373)] = 39262, + [SMALL_STATE(1374)] = 39291, + [SMALL_STATE(1375)] = 39322, + [SMALL_STATE(1376)] = 39353, + [SMALL_STATE(1377)] = 39382, + [SMALL_STATE(1378)] = 39413, + [SMALL_STATE(1379)] = 39444, + [SMALL_STATE(1380)] = 39475, + [SMALL_STATE(1381)] = 39506, + [SMALL_STATE(1382)] = 39537, + [SMALL_STATE(1383)] = 39568, + [SMALL_STATE(1384)] = 39601, + [SMALL_STATE(1385)] = 39632, + [SMALL_STATE(1386)] = 39663, + [SMALL_STATE(1387)] = 39694, + [SMALL_STATE(1388)] = 39725, + [SMALL_STATE(1389)] = 39752, + [SMALL_STATE(1390)] = 39777, + [SMALL_STATE(1391)] = 39808, + [SMALL_STATE(1392)] = 39841, + [SMALL_STATE(1393)] = 39872, + [SMALL_STATE(1394)] = 39903, + [SMALL_STATE(1395)] = 39926, + [SMALL_STATE(1396)] = 39957, + [SMALL_STATE(1397)] = 39988, + [SMALL_STATE(1398)] = 40019, + [SMALL_STATE(1399)] = 40046, + [SMALL_STATE(1400)] = 40073, + [SMALL_STATE(1401)] = 40100, + [SMALL_STATE(1402)] = 40131, + [SMALL_STATE(1403)] = 40162, + [SMALL_STATE(1404)] = 40193, + [SMALL_STATE(1405)] = 40224, + [SMALL_STATE(1406)] = 40255, + [SMALL_STATE(1407)] = 40278, + [SMALL_STATE(1408)] = 40305, + [SMALL_STATE(1409)] = 40334, + [SMALL_STATE(1410)] = 40359, + [SMALL_STATE(1411)] = 40382, + [SMALL_STATE(1412)] = 40413, + [SMALL_STATE(1413)] = 40444, + [SMALL_STATE(1414)] = 40475, + [SMALL_STATE(1415)] = 40506, + [SMALL_STATE(1416)] = 40537, + [SMALL_STATE(1417)] = 40563, + [SMALL_STATE(1418)] = 40585, + [SMALL_STATE(1419)] = 40607, + [SMALL_STATE(1420)] = 40631, + [SMALL_STATE(1421)] = 40653, + [SMALL_STATE(1422)] = 40677, + [SMALL_STATE(1423)] = 40707, + [SMALL_STATE(1424)] = 40737, + [SMALL_STATE(1425)] = 40761, + [SMALL_STATE(1426)] = 40783, + [SMALL_STATE(1427)] = 40813, + [SMALL_STATE(1428)] = 40839, + [SMALL_STATE(1429)] = 40867, + [SMALL_STATE(1430)] = 40889, + [SMALL_STATE(1431)] = 40915, + [SMALL_STATE(1432)] = 40945, + [SMALL_STATE(1433)] = 40967, + [SMALL_STATE(1434)] = 40989, + [SMALL_STATE(1435)] = 41011, + [SMALL_STATE(1436)] = 41041, + [SMALL_STATE(1437)] = 41071, + [SMALL_STATE(1438)] = 41101, + [SMALL_STATE(1439)] = 41123, + [SMALL_STATE(1440)] = 41151, + [SMALL_STATE(1441)] = 41173, + [SMALL_STATE(1442)] = 41195, + [SMALL_STATE(1443)] = 41223, + [SMALL_STATE(1444)] = 41253, + [SMALL_STATE(1445)] = 41277, + [SMALL_STATE(1446)] = 41307, + [SMALL_STATE(1447)] = 41329, + [SMALL_STATE(1448)] = 41353, + [SMALL_STATE(1449)] = 41383, + [SMALL_STATE(1450)] = 41404, + [SMALL_STATE(1451)] = 41431, + [SMALL_STATE(1452)] = 41458, + [SMALL_STATE(1453)] = 41485, + [SMALL_STATE(1454)] = 41506, + [SMALL_STATE(1455)] = 41527, + [SMALL_STATE(1456)] = 41554, + [SMALL_STATE(1457)] = 41575, + [SMALL_STATE(1458)] = 41602, + [SMALL_STATE(1459)] = 41627, + [SMALL_STATE(1460)] = 41654, + [SMALL_STATE(1461)] = 41679, + [SMALL_STATE(1462)] = 41700, + [SMALL_STATE(1463)] = 41727, + [SMALL_STATE(1464)] = 41752, + [SMALL_STATE(1465)] = 41779, + [SMALL_STATE(1466)] = 41804, + [SMALL_STATE(1467)] = 41825, + [SMALL_STATE(1468)] = 41852, + [SMALL_STATE(1469)] = 41873, + [SMALL_STATE(1470)] = 41900, + [SMALL_STATE(1471)] = 41925, + [SMALL_STATE(1472)] = 41946, + [SMALL_STATE(1473)] = 41967, + [SMALL_STATE(1474)] = 41994, + [SMALL_STATE(1475)] = 42021, + [SMALL_STATE(1476)] = 42046, + [SMALL_STATE(1477)] = 42073, + [SMALL_STATE(1478)] = 42098, + [SMALL_STATE(1479)] = 42119, + [SMALL_STATE(1480)] = 42144, + [SMALL_STATE(1481)] = 42171, + [SMALL_STATE(1482)] = 42196, + [SMALL_STATE(1483)] = 42217, + [SMALL_STATE(1484)] = 42244, + [SMALL_STATE(1485)] = 42265, + [SMALL_STATE(1486)] = 42292, + [SMALL_STATE(1487)] = 42319, + [SMALL_STATE(1488)] = 42346, + [SMALL_STATE(1489)] = 42373, + [SMALL_STATE(1490)] = 42394, + [SMALL_STATE(1491)] = 42421, + [SMALL_STATE(1492)] = 42446, + [SMALL_STATE(1493)] = 42473, + [SMALL_STATE(1494)] = 42500, + [SMALL_STATE(1495)] = 42527, + [SMALL_STATE(1496)] = 42550, + [SMALL_STATE(1497)] = 42577, + [SMALL_STATE(1498)] = 42600, + [SMALL_STATE(1499)] = 42625, + [SMALL_STATE(1500)] = 42652, + [SMALL_STATE(1501)] = 42679, + [SMALL_STATE(1502)] = 42706, + [SMALL_STATE(1503)] = 42733, + [SMALL_STATE(1504)] = 42760, + [SMALL_STATE(1505)] = 42787, + [SMALL_STATE(1506)] = 42814, + [SMALL_STATE(1507)] = 42841, + [SMALL_STATE(1508)] = 42862, + [SMALL_STATE(1509)] = 42889, + [SMALL_STATE(1510)] = 42916, + [SMALL_STATE(1511)] = 42937, + [SMALL_STATE(1512)] = 42958, + [SMALL_STATE(1513)] = 42985, + [SMALL_STATE(1514)] = 43006, + [SMALL_STATE(1515)] = 43033, + [SMALL_STATE(1516)] = 43060, + [SMALL_STATE(1517)] = 43085, + [SMALL_STATE(1518)] = 43112, + [SMALL_STATE(1519)] = 43139, + [SMALL_STATE(1520)] = 43160, + [SMALL_STATE(1521)] = 43187, + [SMALL_STATE(1522)] = 43214, + [SMALL_STATE(1523)] = 43241, + [SMALL_STATE(1524)] = 43268, + [SMALL_STATE(1525)] = 43295, + [SMALL_STATE(1526)] = 43322, + [SMALL_STATE(1527)] = 43349, + [SMALL_STATE(1528)] = 43376, + [SMALL_STATE(1529)] = 43403, + [SMALL_STATE(1530)] = 43430, + [SMALL_STATE(1531)] = 43455, + [SMALL_STATE(1532)] = 43482, + [SMALL_STATE(1533)] = 43509, + [SMALL_STATE(1534)] = 43536, + [SMALL_STATE(1535)] = 43563, + [SMALL_STATE(1536)] = 43590, + [SMALL_STATE(1537)] = 43617, + [SMALL_STATE(1538)] = 43644, + [SMALL_STATE(1539)] = 43671, + [SMALL_STATE(1540)] = 43696, + [SMALL_STATE(1541)] = 43721, + [SMALL_STATE(1542)] = 43748, + [SMALL_STATE(1543)] = 43769, + [SMALL_STATE(1544)] = 43796, + [SMALL_STATE(1545)] = 43823, + [SMALL_STATE(1546)] = 43850, + [SMALL_STATE(1547)] = 43877, + [SMALL_STATE(1548)] = 43904, + [SMALL_STATE(1549)] = 43931, + [SMALL_STATE(1550)] = 43958, + [SMALL_STATE(1551)] = 43983, + [SMALL_STATE(1552)] = 44006, + [SMALL_STATE(1553)] = 44033, + [SMALL_STATE(1554)] = 44060, + [SMALL_STATE(1555)] = 44087, + [SMALL_STATE(1556)] = 44114, + [SMALL_STATE(1557)] = 44141, + [SMALL_STATE(1558)] = 44162, + [SMALL_STATE(1559)] = 44189, + [SMALL_STATE(1560)] = 44212, + [SMALL_STATE(1561)] = 44239, + [SMALL_STATE(1562)] = 44266, + [SMALL_STATE(1563)] = 44293, + [SMALL_STATE(1564)] = 44314, + [SMALL_STATE(1565)] = 44341, + [SMALL_STATE(1566)] = 44368, + [SMALL_STATE(1567)] = 44395, + [SMALL_STATE(1568)] = 44422, + [SMALL_STATE(1569)] = 44449, + [SMALL_STATE(1570)] = 44476, + [SMALL_STATE(1571)] = 44503, + [SMALL_STATE(1572)] = 44530, + [SMALL_STATE(1573)] = 44557, + [SMALL_STATE(1574)] = 44578, + [SMALL_STATE(1575)] = 44605, + [SMALL_STATE(1576)] = 44626, + [SMALL_STATE(1577)] = 44647, + [SMALL_STATE(1578)] = 44670, + [SMALL_STATE(1579)] = 44697, + [SMALL_STATE(1580)] = 44718, + [SMALL_STATE(1581)] = 44739, + [SMALL_STATE(1582)] = 44759, + [SMALL_STATE(1583)] = 44779, + [SMALL_STATE(1584)] = 44803, + [SMALL_STATE(1585)] = 44825, + [SMALL_STATE(1586)] = 44849, + [SMALL_STATE(1587)] = 44871, + [SMALL_STATE(1588)] = 44893, + [SMALL_STATE(1589)] = 44913, + [SMALL_STATE(1590)] = 44935, + [SMALL_STATE(1591)] = 44955, + [SMALL_STATE(1592)] = 44979, + [SMALL_STATE(1593)] = 45001, + [SMALL_STATE(1594)] = 45021, + [SMALL_STATE(1595)] = 45045, + [SMALL_STATE(1596)] = 45069, + [SMALL_STATE(1597)] = 45093, + [SMALL_STATE(1598)] = 45113, + [SMALL_STATE(1599)] = 45135, + [SMALL_STATE(1600)] = 45159, + [SMALL_STATE(1601)] = 45183, + [SMALL_STATE(1602)] = 45205, + [SMALL_STATE(1603)] = 45229, + [SMALL_STATE(1604)] = 45253, + [SMALL_STATE(1605)] = 45277, + [SMALL_STATE(1606)] = 45301, + [SMALL_STATE(1607)] = 45323, + [SMALL_STATE(1608)] = 45343, + [SMALL_STATE(1609)] = 45363, + [SMALL_STATE(1610)] = 45387, + [SMALL_STATE(1611)] = 45411, + [SMALL_STATE(1612)] = 45435, + [SMALL_STATE(1613)] = 45459, + [SMALL_STATE(1614)] = 45481, + [SMALL_STATE(1615)] = 45505, + [SMALL_STATE(1616)] = 45529, + [SMALL_STATE(1617)] = 45553, + [SMALL_STATE(1618)] = 45577, + [SMALL_STATE(1619)] = 45601, + [SMALL_STATE(1620)] = 45625, + [SMALL_STATE(1621)] = 45649, + [SMALL_STATE(1622)] = 45673, + [SMALL_STATE(1623)] = 45697, + [SMALL_STATE(1624)] = 45721, + [SMALL_STATE(1625)] = 45745, + [SMALL_STATE(1626)] = 45769, + [SMALL_STATE(1627)] = 45793, + [SMALL_STATE(1628)] = 45817, + [SMALL_STATE(1629)] = 45841, + [SMALL_STATE(1630)] = 45865, + [SMALL_STATE(1631)] = 45889, + [SMALL_STATE(1632)] = 45913, + [SMALL_STATE(1633)] = 45937, + [SMALL_STATE(1634)] = 45961, + [SMALL_STATE(1635)] = 45981, + [SMALL_STATE(1636)] = 46005, + [SMALL_STATE(1637)] = 46029, + [SMALL_STATE(1638)] = 46049, + [SMALL_STATE(1639)] = 46073, + [SMALL_STATE(1640)] = 46095, + [SMALL_STATE(1641)] = 46119, + [SMALL_STATE(1642)] = 46139, + [SMALL_STATE(1643)] = 46159, + [SMALL_STATE(1644)] = 46183, + [SMALL_STATE(1645)] = 46207, + [SMALL_STATE(1646)] = 46231, + [SMALL_STATE(1647)] = 46255, + [SMALL_STATE(1648)] = 46275, + [SMALL_STATE(1649)] = 46299, + [SMALL_STATE(1650)] = 46321, + [SMALL_STATE(1651)] = 46345, + [SMALL_STATE(1652)] = 46369, + [SMALL_STATE(1653)] = 46391, + [SMALL_STATE(1654)] = 46413, + [SMALL_STATE(1655)] = 46437, + [SMALL_STATE(1656)] = 46457, + [SMALL_STATE(1657)] = 46477, + [SMALL_STATE(1658)] = 46501, + [SMALL_STATE(1659)] = 46525, + [SMALL_STATE(1660)] = 46549, + [SMALL_STATE(1661)] = 46573, + [SMALL_STATE(1662)] = 46597, + [SMALL_STATE(1663)] = 46617, + [SMALL_STATE(1664)] = 46639, + [SMALL_STATE(1665)] = 46661, + [SMALL_STATE(1666)] = 46685, + [SMALL_STATE(1667)] = 46705, + [SMALL_STATE(1668)] = 46729, + [SMALL_STATE(1669)] = 46753, + [SMALL_STATE(1670)] = 46773, + [SMALL_STATE(1671)] = 46797, + [SMALL_STATE(1672)] = 46821, + [SMALL_STATE(1673)] = 46843, + [SMALL_STATE(1674)] = 46867, + [SMALL_STATE(1675)] = 46887, + [SMALL_STATE(1676)] = 46911, + [SMALL_STATE(1677)] = 46931, + [SMALL_STATE(1678)] = 46951, + [SMALL_STATE(1679)] = 46975, + [SMALL_STATE(1680)] = 46999, + [SMALL_STATE(1681)] = 47023, + [SMALL_STATE(1682)] = 47047, + [SMALL_STATE(1683)] = 47071, + [SMALL_STATE(1684)] = 47093, + [SMALL_STATE(1685)] = 47117, + [SMALL_STATE(1686)] = 47141, + [SMALL_STATE(1687)] = 47163, + [SMALL_STATE(1688)] = 47187, + [SMALL_STATE(1689)] = 47211, + [SMALL_STATE(1690)] = 47235, + [SMALL_STATE(1691)] = 47259, + [SMALL_STATE(1692)] = 47283, + [SMALL_STATE(1693)] = 47303, + [SMALL_STATE(1694)] = 47325, + [SMALL_STATE(1695)] = 47345, + [SMALL_STATE(1696)] = 47369, + [SMALL_STATE(1697)] = 47393, + [SMALL_STATE(1698)] = 47415, + [SMALL_STATE(1699)] = 47439, + [SMALL_STATE(1700)] = 47463, + [SMALL_STATE(1701)] = 47487, + [SMALL_STATE(1702)] = 47511, + [SMALL_STATE(1703)] = 47535, + [SMALL_STATE(1704)] = 47559, + [SMALL_STATE(1705)] = 47579, + [SMALL_STATE(1706)] = 47598, + [SMALL_STATE(1707)] = 47619, + [SMALL_STATE(1708)] = 47640, + [SMALL_STATE(1709)] = 47661, + [SMALL_STATE(1710)] = 47682, + [SMALL_STATE(1711)] = 47703, + [SMALL_STATE(1712)] = 47722, + [SMALL_STATE(1713)] = 47743, + [SMALL_STATE(1714)] = 47764, + [SMALL_STATE(1715)] = 47785, + [SMALL_STATE(1716)] = 47804, + [SMALL_STATE(1717)] = 47825, + [SMALL_STATE(1718)] = 47846, + [SMALL_STATE(1719)] = 47867, + [SMALL_STATE(1720)] = 47888, + [SMALL_STATE(1721)] = 47907, + [SMALL_STATE(1722)] = 47926, + [SMALL_STATE(1723)] = 47947, + [SMALL_STATE(1724)] = 47968, + [SMALL_STATE(1725)] = 47989, + [SMALL_STATE(1726)] = 48010, + [SMALL_STATE(1727)] = 48031, + [SMALL_STATE(1728)] = 48052, + [SMALL_STATE(1729)] = 48071, + [SMALL_STATE(1730)] = 48090, + [SMALL_STATE(1731)] = 48111, + [SMALL_STATE(1732)] = 48130, + [SMALL_STATE(1733)] = 48151, + [SMALL_STATE(1734)] = 48170, + [SMALL_STATE(1735)] = 48191, + [SMALL_STATE(1736)] = 48212, + [SMALL_STATE(1737)] = 48233, + [SMALL_STATE(1738)] = 48254, + [SMALL_STATE(1739)] = 48275, + [SMALL_STATE(1740)] = 48296, + [SMALL_STATE(1741)] = 48315, + [SMALL_STATE(1742)] = 48336, + [SMALL_STATE(1743)] = 48357, + [SMALL_STATE(1744)] = 48378, + [SMALL_STATE(1745)] = 48399, + [SMALL_STATE(1746)] = 48420, + [SMALL_STATE(1747)] = 48441, + [SMALL_STATE(1748)] = 48462, + [SMALL_STATE(1749)] = 48483, + [SMALL_STATE(1750)] = 48504, + [SMALL_STATE(1751)] = 48525, + [SMALL_STATE(1752)] = 48544, + [SMALL_STATE(1753)] = 48565, + [SMALL_STATE(1754)] = 48586, + [SMALL_STATE(1755)] = 48607, + [SMALL_STATE(1756)] = 48628, + [SMALL_STATE(1757)] = 48649, + [SMALL_STATE(1758)] = 48668, + [SMALL_STATE(1759)] = 48687, + [SMALL_STATE(1760)] = 48708, + [SMALL_STATE(1761)] = 48729, + [SMALL_STATE(1762)] = 48750, + [SMALL_STATE(1763)] = 48771, + [SMALL_STATE(1764)] = 48792, + [SMALL_STATE(1765)] = 48813, + [SMALL_STATE(1766)] = 48834, + [SMALL_STATE(1767)] = 48855, + [SMALL_STATE(1768)] = 48874, + [SMALL_STATE(1769)] = 48895, + [SMALL_STATE(1770)] = 48916, + [SMALL_STATE(1771)] = 48937, + [SMALL_STATE(1772)] = 48958, + [SMALL_STATE(1773)] = 48979, + [SMALL_STATE(1774)] = 49000, + [SMALL_STATE(1775)] = 49021, + [SMALL_STATE(1776)] = 49042, + [SMALL_STATE(1777)] = 49061, + [SMALL_STATE(1778)] = 49080, + [SMALL_STATE(1779)] = 49101, + [SMALL_STATE(1780)] = 49122, + [SMALL_STATE(1781)] = 49143, + [SMALL_STATE(1782)] = 49164, + [SMALL_STATE(1783)] = 49185, + [SMALL_STATE(1784)] = 49206, + [SMALL_STATE(1785)] = 49227, + [SMALL_STATE(1786)] = 49246, + [SMALL_STATE(1787)] = 49267, + [SMALL_STATE(1788)] = 49288, + [SMALL_STATE(1789)] = 49309, + [SMALL_STATE(1790)] = 49330, + [SMALL_STATE(1791)] = 49351, + [SMALL_STATE(1792)] = 49372, + [SMALL_STATE(1793)] = 49393, + [SMALL_STATE(1794)] = 49414, + [SMALL_STATE(1795)] = 49435, + [SMALL_STATE(1796)] = 49456, + [SMALL_STATE(1797)] = 49475, + [SMALL_STATE(1798)] = 49496, + [SMALL_STATE(1799)] = 49517, + [SMALL_STATE(1800)] = 49538, + [SMALL_STATE(1801)] = 49559, + [SMALL_STATE(1802)] = 49580, + [SMALL_STATE(1803)] = 49601, + [SMALL_STATE(1804)] = 49622, + [SMALL_STATE(1805)] = 49643, + [SMALL_STATE(1806)] = 49664, + [SMALL_STATE(1807)] = 49685, + [SMALL_STATE(1808)] = 49706, + [SMALL_STATE(1809)] = 49727, + [SMALL_STATE(1810)] = 49748, + [SMALL_STATE(1811)] = 49769, + [SMALL_STATE(1812)] = 49790, + [SMALL_STATE(1813)] = 49811, + [SMALL_STATE(1814)] = 49830, + [SMALL_STATE(1815)] = 49849, + [SMALL_STATE(1816)] = 49868, + [SMALL_STATE(1817)] = 49889, + [SMALL_STATE(1818)] = 49908, + [SMALL_STATE(1819)] = 49927, + [SMALL_STATE(1820)] = 49948, + [SMALL_STATE(1821)] = 49969, + [SMALL_STATE(1822)] = 49990, + [SMALL_STATE(1823)] = 50011, + [SMALL_STATE(1824)] = 50032, + [SMALL_STATE(1825)] = 50051, + [SMALL_STATE(1826)] = 50072, + [SMALL_STATE(1827)] = 50093, + [SMALL_STATE(1828)] = 50112, + [SMALL_STATE(1829)] = 50133, + [SMALL_STATE(1830)] = 50154, + [SMALL_STATE(1831)] = 50175, + [SMALL_STATE(1832)] = 50196, + [SMALL_STATE(1833)] = 50217, + [SMALL_STATE(1834)] = 50238, + [SMALL_STATE(1835)] = 50259, + [SMALL_STATE(1836)] = 50280, + [SMALL_STATE(1837)] = 50301, + [SMALL_STATE(1838)] = 50320, + [SMALL_STATE(1839)] = 50339, + [SMALL_STATE(1840)] = 50360, + [SMALL_STATE(1841)] = 50381, + [SMALL_STATE(1842)] = 50402, + [SMALL_STATE(1843)] = 50423, + [SMALL_STATE(1844)] = 50442, + [SMALL_STATE(1845)] = 50463, + [SMALL_STATE(1846)] = 50482, + [SMALL_STATE(1847)] = 50503, + [SMALL_STATE(1848)] = 50524, + [SMALL_STATE(1849)] = 50545, + [SMALL_STATE(1850)] = 50566, + [SMALL_STATE(1851)] = 50587, + [SMALL_STATE(1852)] = 50608, + [SMALL_STATE(1853)] = 50629, + [SMALL_STATE(1854)] = 50648, + [SMALL_STATE(1855)] = 50669, + [SMALL_STATE(1856)] = 50690, + [SMALL_STATE(1857)] = 50709, + [SMALL_STATE(1858)] = 50728, + [SMALL_STATE(1859)] = 50747, + [SMALL_STATE(1860)] = 50768, + [SMALL_STATE(1861)] = 50789, + [SMALL_STATE(1862)] = 50810, + [SMALL_STATE(1863)] = 50829, + [SMALL_STATE(1864)] = 50850, + [SMALL_STATE(1865)] = 50869, + [SMALL_STATE(1866)] = 50890, + [SMALL_STATE(1867)] = 50911, + [SMALL_STATE(1868)] = 50932, + [SMALL_STATE(1869)] = 50953, + [SMALL_STATE(1870)] = 50974, + [SMALL_STATE(1871)] = 50995, + [SMALL_STATE(1872)] = 51014, + [SMALL_STATE(1873)] = 51035, + [SMALL_STATE(1874)] = 51056, + [SMALL_STATE(1875)] = 51077, + [SMALL_STATE(1876)] = 51098, + [SMALL_STATE(1877)] = 51119, + [SMALL_STATE(1878)] = 51138, + [SMALL_STATE(1879)] = 51159, + [SMALL_STATE(1880)] = 51180, + [SMALL_STATE(1881)] = 51199, + [SMALL_STATE(1882)] = 51220, + [SMALL_STATE(1883)] = 51239, + [SMALL_STATE(1884)] = 51260, + [SMALL_STATE(1885)] = 51279, + [SMALL_STATE(1886)] = 51300, + [SMALL_STATE(1887)] = 51321, + [SMALL_STATE(1888)] = 51340, + [SMALL_STATE(1889)] = 51361, + [SMALL_STATE(1890)] = 51380, + [SMALL_STATE(1891)] = 51401, + [SMALL_STATE(1892)] = 51419, + [SMALL_STATE(1893)] = 51437, + [SMALL_STATE(1894)] = 51455, + [SMALL_STATE(1895)] = 51473, + [SMALL_STATE(1896)] = 51491, + [SMALL_STATE(1897)] = 51509, + [SMALL_STATE(1898)] = 51527, + [SMALL_STATE(1899)] = 51545, + [SMALL_STATE(1900)] = 51563, + [SMALL_STATE(1901)] = 51581, + [SMALL_STATE(1902)] = 51599, + [SMALL_STATE(1903)] = 51617, + [SMALL_STATE(1904)] = 51635, + [SMALL_STATE(1905)] = 51653, + [SMALL_STATE(1906)] = 51671, + [SMALL_STATE(1907)] = 51689, + [SMALL_STATE(1908)] = 51707, + [SMALL_STATE(1909)] = 51725, + [SMALL_STATE(1910)] = 51743, + [SMALL_STATE(1911)] = 51761, + [SMALL_STATE(1912)] = 51779, + [SMALL_STATE(1913)] = 51797, + [SMALL_STATE(1914)] = 51815, + [SMALL_STATE(1915)] = 51833, + [SMALL_STATE(1916)] = 51851, + [SMALL_STATE(1917)] = 51869, + [SMALL_STATE(1918)] = 51887, + [SMALL_STATE(1919)] = 51905, + [SMALL_STATE(1920)] = 51923, + [SMALL_STATE(1921)] = 51941, + [SMALL_STATE(1922)] = 51959, + [SMALL_STATE(1923)] = 51977, + [SMALL_STATE(1924)] = 51995, + [SMALL_STATE(1925)] = 52013, + [SMALL_STATE(1926)] = 52031, + [SMALL_STATE(1927)] = 52049, + [SMALL_STATE(1928)] = 52067, + [SMALL_STATE(1929)] = 52085, + [SMALL_STATE(1930)] = 52103, + [SMALL_STATE(1931)] = 52121, + [SMALL_STATE(1932)] = 52139, + [SMALL_STATE(1933)] = 52157, + [SMALL_STATE(1934)] = 52175, + [SMALL_STATE(1935)] = 52193, + [SMALL_STATE(1936)] = 52211, + [SMALL_STATE(1937)] = 52229, + [SMALL_STATE(1938)] = 52247, + [SMALL_STATE(1939)] = 52265, + [SMALL_STATE(1940)] = 52283, + [SMALL_STATE(1941)] = 52301, + [SMALL_STATE(1942)] = 52319, + [SMALL_STATE(1943)] = 52337, + [SMALL_STATE(1944)] = 52355, + [SMALL_STATE(1945)] = 52373, + [SMALL_STATE(1946)] = 52391, + [SMALL_STATE(1947)] = 52409, + [SMALL_STATE(1948)] = 52427, + [SMALL_STATE(1949)] = 52445, + [SMALL_STATE(1950)] = 52463, + [SMALL_STATE(1951)] = 52481, + [SMALL_STATE(1952)] = 52499, + [SMALL_STATE(1953)] = 52517, + [SMALL_STATE(1954)] = 52535, + [SMALL_STATE(1955)] = 52553, + [SMALL_STATE(1956)] = 52571, + [SMALL_STATE(1957)] = 52589, + [SMALL_STATE(1958)] = 52607, + [SMALL_STATE(1959)] = 52625, + [SMALL_STATE(1960)] = 52643, + [SMALL_STATE(1961)] = 52661, + [SMALL_STATE(1962)] = 52679, + [SMALL_STATE(1963)] = 52697, + [SMALL_STATE(1964)] = 52715, + [SMALL_STATE(1965)] = 52733, + [SMALL_STATE(1966)] = 52751, + [SMALL_STATE(1967)] = 52769, + [SMALL_STATE(1968)] = 52787, + [SMALL_STATE(1969)] = 52805, + [SMALL_STATE(1970)] = 52823, + [SMALL_STATE(1971)] = 52841, + [SMALL_STATE(1972)] = 52859, + [SMALL_STATE(1973)] = 52877, + [SMALL_STATE(1974)] = 52895, + [SMALL_STATE(1975)] = 52913, + [SMALL_STATE(1976)] = 52931, + [SMALL_STATE(1977)] = 52949, + [SMALL_STATE(1978)] = 52967, + [SMALL_STATE(1979)] = 52985, + [SMALL_STATE(1980)] = 53003, + [SMALL_STATE(1981)] = 53021, + [SMALL_STATE(1982)] = 53039, + [SMALL_STATE(1983)] = 53057, + [SMALL_STATE(1984)] = 53075, + [SMALL_STATE(1985)] = 53093, + [SMALL_STATE(1986)] = 53111, + [SMALL_STATE(1987)] = 53129, + [SMALL_STATE(1988)] = 53147, + [SMALL_STATE(1989)] = 53165, + [SMALL_STATE(1990)] = 53183, + [SMALL_STATE(1991)] = 53201, + [SMALL_STATE(1992)] = 53219, + [SMALL_STATE(1993)] = 53237, + [SMALL_STATE(1994)] = 53255, + [SMALL_STATE(1995)] = 53273, + [SMALL_STATE(1996)] = 53291, + [SMALL_STATE(1997)] = 53309, + [SMALL_STATE(1998)] = 53327, + [SMALL_STATE(1999)] = 53345, + [SMALL_STATE(2000)] = 53363, + [SMALL_STATE(2001)] = 53381, + [SMALL_STATE(2002)] = 53399, + [SMALL_STATE(2003)] = 53417, + [SMALL_STATE(2004)] = 53435, + [SMALL_STATE(2005)] = 53453, + [SMALL_STATE(2006)] = 53471, + [SMALL_STATE(2007)] = 53489, + [SMALL_STATE(2008)] = 53507, + [SMALL_STATE(2009)] = 53525, + [SMALL_STATE(2010)] = 53543, + [SMALL_STATE(2011)] = 53561, + [SMALL_STATE(2012)] = 53579, + [SMALL_STATE(2013)] = 53597, + [SMALL_STATE(2014)] = 53615, + [SMALL_STATE(2015)] = 53633, + [SMALL_STATE(2016)] = 53651, + [SMALL_STATE(2017)] = 53669, + [SMALL_STATE(2018)] = 53687, + [SMALL_STATE(2019)] = 53705, + [SMALL_STATE(2020)] = 53723, + [SMALL_STATE(2021)] = 53741, + [SMALL_STATE(2022)] = 53759, + [SMALL_STATE(2023)] = 53777, + [SMALL_STATE(2024)] = 53795, + [SMALL_STATE(2025)] = 53813, + [SMALL_STATE(2026)] = 53831, + [SMALL_STATE(2027)] = 53849, + [SMALL_STATE(2028)] = 53867, + [SMALL_STATE(2029)] = 53885, + [SMALL_STATE(2030)] = 53903, + [SMALL_STATE(2031)] = 53921, + [SMALL_STATE(2032)] = 53939, + [SMALL_STATE(2033)] = 53957, + [SMALL_STATE(2034)] = 53975, + [SMALL_STATE(2035)] = 53993, + [SMALL_STATE(2036)] = 54011, + [SMALL_STATE(2037)] = 54029, + [SMALL_STATE(2038)] = 54047, + [SMALL_STATE(2039)] = 54065, + [SMALL_STATE(2040)] = 54083, + [SMALL_STATE(2041)] = 54101, + [SMALL_STATE(2042)] = 54119, + [SMALL_STATE(2043)] = 54137, + [SMALL_STATE(2044)] = 54155, + [SMALL_STATE(2045)] = 54173, + [SMALL_STATE(2046)] = 54191, + [SMALL_STATE(2047)] = 54209, + [SMALL_STATE(2048)] = 54227, + [SMALL_STATE(2049)] = 54245, + [SMALL_STATE(2050)] = 54263, + [SMALL_STATE(2051)] = 54281, + [SMALL_STATE(2052)] = 54299, + [SMALL_STATE(2053)] = 54317, + [SMALL_STATE(2054)] = 54335, + [SMALL_STATE(2055)] = 54353, + [SMALL_STATE(2056)] = 54371, + [SMALL_STATE(2057)] = 54389, + [SMALL_STATE(2058)] = 54407, + [SMALL_STATE(2059)] = 54425, + [SMALL_STATE(2060)] = 54443, + [SMALL_STATE(2061)] = 54461, + [SMALL_STATE(2062)] = 54479, + [SMALL_STATE(2063)] = 54497, + [SMALL_STATE(2064)] = 54515, + [SMALL_STATE(2065)] = 54533, + [SMALL_STATE(2066)] = 54551, + [SMALL_STATE(2067)] = 54569, + [SMALL_STATE(2068)] = 54587, + [SMALL_STATE(2069)] = 54605, + [SMALL_STATE(2070)] = 54623, + [SMALL_STATE(2071)] = 54641, + [SMALL_STATE(2072)] = 54659, + [SMALL_STATE(2073)] = 54677, + [SMALL_STATE(2074)] = 54695, + [SMALL_STATE(2075)] = 54713, + [SMALL_STATE(2076)] = 54731, + [SMALL_STATE(2077)] = 54749, + [SMALL_STATE(2078)] = 54767, + [SMALL_STATE(2079)] = 54785, + [SMALL_STATE(2080)] = 54803, + [SMALL_STATE(2081)] = 54821, + [SMALL_STATE(2082)] = 54839, + [SMALL_STATE(2083)] = 54857, + [SMALL_STATE(2084)] = 54875, + [SMALL_STATE(2085)] = 54893, + [SMALL_STATE(2086)] = 54911, + [SMALL_STATE(2087)] = 54929, + [SMALL_STATE(2088)] = 54947, + [SMALL_STATE(2089)] = 54965, + [SMALL_STATE(2090)] = 54983, + [SMALL_STATE(2091)] = 55001, + [SMALL_STATE(2092)] = 55019, + [SMALL_STATE(2093)] = 55037, + [SMALL_STATE(2094)] = 55055, + [SMALL_STATE(2095)] = 55073, + [SMALL_STATE(2096)] = 55091, + [SMALL_STATE(2097)] = 55109, + [SMALL_STATE(2098)] = 55127, + [SMALL_STATE(2099)] = 55145, + [SMALL_STATE(2100)] = 55163, + [SMALL_STATE(2101)] = 55181, + [SMALL_STATE(2102)] = 55199, + [SMALL_STATE(2103)] = 55217, + [SMALL_STATE(2104)] = 55235, + [SMALL_STATE(2105)] = 55253, + [SMALL_STATE(2106)] = 55271, + [SMALL_STATE(2107)] = 55289, + [SMALL_STATE(2108)] = 55307, + [SMALL_STATE(2109)] = 55325, + [SMALL_STATE(2110)] = 55343, + [SMALL_STATE(2111)] = 55361, + [SMALL_STATE(2112)] = 55379, + [SMALL_STATE(2113)] = 55397, + [SMALL_STATE(2114)] = 55415, + [SMALL_STATE(2115)] = 55433, + [SMALL_STATE(2116)] = 55451, + [SMALL_STATE(2117)] = 55469, + [SMALL_STATE(2118)] = 55487, + [SMALL_STATE(2119)] = 55505, + [SMALL_STATE(2120)] = 55523, + [SMALL_STATE(2121)] = 55541, + [SMALL_STATE(2122)] = 55559, + [SMALL_STATE(2123)] = 55577, + [SMALL_STATE(2124)] = 55595, + [SMALL_STATE(2125)] = 55613, + [SMALL_STATE(2126)] = 55631, + [SMALL_STATE(2127)] = 55649, + [SMALL_STATE(2128)] = 55667, + [SMALL_STATE(2129)] = 55685, + [SMALL_STATE(2130)] = 55703, + [SMALL_STATE(2131)] = 55721, + [SMALL_STATE(2132)] = 55739, + [SMALL_STATE(2133)] = 55757, + [SMALL_STATE(2134)] = 55775, + [SMALL_STATE(2135)] = 55793, + [SMALL_STATE(2136)] = 55811, + [SMALL_STATE(2137)] = 55829, + [SMALL_STATE(2138)] = 55847, + [SMALL_STATE(2139)] = 55865, + [SMALL_STATE(2140)] = 55883, + [SMALL_STATE(2141)] = 55901, + [SMALL_STATE(2142)] = 55919, + [SMALL_STATE(2143)] = 55937, + [SMALL_STATE(2144)] = 55955, + [SMALL_STATE(2145)] = 55973, + [SMALL_STATE(2146)] = 55991, + [SMALL_STATE(2147)] = 56009, + [SMALL_STATE(2148)] = 56027, + [SMALL_STATE(2149)] = 56045, + [SMALL_STATE(2150)] = 56063, + [SMALL_STATE(2151)] = 56081, + [SMALL_STATE(2152)] = 56099, + [SMALL_STATE(2153)] = 56117, + [SMALL_STATE(2154)] = 56135, + [SMALL_STATE(2155)] = 56153, + [SMALL_STATE(2156)] = 56171, + [SMALL_STATE(2157)] = 56189, + [SMALL_STATE(2158)] = 56207, + [SMALL_STATE(2159)] = 56225, + [SMALL_STATE(2160)] = 56243, + [SMALL_STATE(2161)] = 56261, + [SMALL_STATE(2162)] = 56279, + [SMALL_STATE(2163)] = 56297, + [SMALL_STATE(2164)] = 56315, + [SMALL_STATE(2165)] = 56333, + [SMALL_STATE(2166)] = 56351, + [SMALL_STATE(2167)] = 56369, + [SMALL_STATE(2168)] = 56387, + [SMALL_STATE(2169)] = 56405, + [SMALL_STATE(2170)] = 56423, + [SMALL_STATE(2171)] = 56441, + [SMALL_STATE(2172)] = 56459, + [SMALL_STATE(2173)] = 56477, + [SMALL_STATE(2174)] = 56495, + [SMALL_STATE(2175)] = 56513, + [SMALL_STATE(2176)] = 56531, + [SMALL_STATE(2177)] = 56549, + [SMALL_STATE(2178)] = 56567, + [SMALL_STATE(2179)] = 56585, + [SMALL_STATE(2180)] = 56603, + [SMALL_STATE(2181)] = 56621, + [SMALL_STATE(2182)] = 56639, + [SMALL_STATE(2183)] = 56657, + [SMALL_STATE(2184)] = 56675, + [SMALL_STATE(2185)] = 56693, + [SMALL_STATE(2186)] = 56711, + [SMALL_STATE(2187)] = 56729, + [SMALL_STATE(2188)] = 56747, + [SMALL_STATE(2189)] = 56765, + [SMALL_STATE(2190)] = 56783, + [SMALL_STATE(2191)] = 56801, + [SMALL_STATE(2192)] = 56819, + [SMALL_STATE(2193)] = 56837, + [SMALL_STATE(2194)] = 56855, + [SMALL_STATE(2195)] = 56873, + [SMALL_STATE(2196)] = 56891, + [SMALL_STATE(2197)] = 56909, + [SMALL_STATE(2198)] = 56927, + [SMALL_STATE(2199)] = 56945, + [SMALL_STATE(2200)] = 56963, + [SMALL_STATE(2201)] = 56981, + [SMALL_STATE(2202)] = 56999, + [SMALL_STATE(2203)] = 57017, + [SMALL_STATE(2204)] = 57035, + [SMALL_STATE(2205)] = 57053, + [SMALL_STATE(2206)] = 57071, + [SMALL_STATE(2207)] = 57089, + [SMALL_STATE(2208)] = 57107, + [SMALL_STATE(2209)] = 57125, + [SMALL_STATE(2210)] = 57143, + [SMALL_STATE(2211)] = 57161, + [SMALL_STATE(2212)] = 57179, + [SMALL_STATE(2213)] = 57197, + [SMALL_STATE(2214)] = 57215, + [SMALL_STATE(2215)] = 57233, + [SMALL_STATE(2216)] = 57251, + [SMALL_STATE(2217)] = 57269, + [SMALL_STATE(2218)] = 57287, + [SMALL_STATE(2219)] = 57305, + [SMALL_STATE(2220)] = 57323, + [SMALL_STATE(2221)] = 57341, + [SMALL_STATE(2222)] = 57359, + [SMALL_STATE(2223)] = 57377, + [SMALL_STATE(2224)] = 57395, + [SMALL_STATE(2225)] = 57413, + [SMALL_STATE(2226)] = 57431, + [SMALL_STATE(2227)] = 57435, + [SMALL_STATE(2228)] = 57439, }; 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(2377), - [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), [9] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0, 0, 0), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), - [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), - [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_case_stmt, 3, 0, 12), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), - [245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_case_stmt, 3, 0, 0), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(986), - [250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1018), - [253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2040), - [256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1668), - [259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2106), - [262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(987), - [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1015), - [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1001), - [271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1015), - [274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1306), - [277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1329), - [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1001), - [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(289), - [286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(875), - [289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1300), - [292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(438), - [295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1139), - [298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(12), - [301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), - [303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1148), - [306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1769), - [309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(238), - [312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1768), - [315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1767), - [318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(79), - [321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2199), - [324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), - [326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(190), - [329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1335), - [332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(875), - [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1586), - [338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1599), - [341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1601), - [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1674), - [347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1660), - [350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1320), - [353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1719), - [356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(351), - [359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(381), - [362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(379), - [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(250), - [368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1661), - [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1915), - [374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1912), - [377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2103), - [380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2102), - [383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1018), - [386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2101), - [389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2097), - [392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2094), - [395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(92), - [398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2344), - [401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2345), - [404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_case_stmt, 2, 0, 0), - [406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(481), - [409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(13), - [412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1147), - [415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(215), - [418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1804), - [421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1803), - [424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(96), - [427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2167), - [430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(195), - [433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1344), - [436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1639), - [439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1640), - [442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1642), - [445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1643), - [448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1644), - [451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1712), - [454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(385), - [457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(358), - [460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(340), - [463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(221), - [466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1909), - [469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1908), - [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), - [476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), - [482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), - [488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), - [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), - [496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), - [500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), - [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), - [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), - [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), - [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), - [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_stmt, 4, 0, 79), - [534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_stmt, 4, 0, 79), - [536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_stmt, 3, 0, 0), - [538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_stmt, 3, 0, 0), - [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_stmt, 3, 0, 78), - [546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_stmt, 3, 0, 78), - [548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_stmt, 4, 0, 78), - [550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_stmt, 4, 0, 78), - [552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_stmt, 2, 0, 0), - [554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_stmt, 2, 0, 0), - [556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_stmt, 3, 0, 79), - [558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_stmt, 3, 0, 79), - [560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_stmt_body, 1, 0, 0), - [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), - [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), - [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), - [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), - [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), - [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), - [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), - [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), - [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), - [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), - [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), - [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), - [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), - [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), - [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), - [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), - [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), - [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), - [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), - [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), - [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), - [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), - [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), - [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), - [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), - [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), - [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), - [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), - [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), - [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), - [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), - [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), - [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), - [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(594), - [741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(10), - [744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1149), - [747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(225), - [750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1727), - [753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1726), - [756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(94), - [759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2375), - [762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(188), - [765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1348), - [768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1622), - [771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1614), - [774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1612), - [777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1610), - [780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1609), - [783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1773), - [786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(365), - [789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(363), - [792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(359), - [795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(243), - [798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2006), - [801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2005), - [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), - [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), - [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(730), - [831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(8), - [834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1143), - [837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(218), - [840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1881), - [843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1860), - [846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(67), - [849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2251), - [852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(189), - [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1345), - [858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1570), - [861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1571), - [864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1574), - [867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1584), - [870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1589), - [873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1737), - [876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(307), - [879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(322), - [882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(323), - [885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(228), - [888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1943), - [891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1942), - [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(715), - [909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(11), - [912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1155), - [915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(240), - [918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1839), - [921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1836), - [924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(75), - [927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2179), - [930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(191), - [933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1339), - [936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1600), - [939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1605), - [942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1607), - [945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1611), - [948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1613), - [951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1720), - [954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(352), - [957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(356), - [960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(357), - [963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(231), - [966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1928), - [969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1926), - [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), - [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(851), - [999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(9), - [1002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1141), - [1005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(226), - [1008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1841), - [1011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1842), - [1014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(61), - [1017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2376), - [1020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(192), - [1023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1342), - [1026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1577), - [1029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1650), - [1032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1549), - [1035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1552), - [1038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1556), - [1041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1748), - [1044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(320), - [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(293), - [1050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(295), - [1053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(235), - [1056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1967), - [1059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1966), - [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [1136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [1138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [1146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [1148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [1150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_suffix_expr, 2, 0, 13), - [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_suffix_expr, 2, 0, 13), - [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [1182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), - [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), - [1186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_stmt, 2, 0, 0), - [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_stmt, 2, 0, 0), - [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2, 0, 0), - [1192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2, 0, 0), - [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), - [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arg_list, 2, 0, 0), - [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arg_list, 3, 0, 0), - [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), - [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), - [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), - [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), - [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), - [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), - [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expr, 2, 0, 2), - [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expr, 1, 0, 0), - [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), - [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), - [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), - [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), - [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), - [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), - [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unary_op, 1, 0, 0), - [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_op, 1, 0, 0), - [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_suffix_expr, 3, 0, 36), - [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_suffix_expr, 3, 0, 36), - [1370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__if_body, 1, 0, 57), - [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_body, 1, 0, 57), - [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), - [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0), - [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), - [1382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_stmt, 3, 0, 0), - [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_stmt, 3, 0, 0), - [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4, 0, 3), - [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4, 0, 3), - [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 6, 0, 65), - [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 6, 0, 65), - [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nextcase_stmt, 5, 0, 76), - [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nextcase_stmt, 5, 0, 76), - [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_stmt, 5, 0, 39), - [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_stmt, 5, 0, 39), - [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_stmt, 3, 0, 58), - [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_stmt, 3, 0, 58), - [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 3, 0, 3), - [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 3, 0, 3), - [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_assert_stmt, 3, 0, 12), - [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_assert_stmt, 3, 0, 12), - [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_stmt, 3, 0, 55), - [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_stmt, 3, 0, 55), - [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_stmt, 3, 0, 55), - [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_stmt, 3, 0, 55), - [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_block_stmt, 6, 0, 39), - [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_block_stmt, 6, 0, 39), - [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), - [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_stmt, 3, 0, 54), - [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_stmt, 3, 0, 54), - [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_stmt, 6, 0, 88), - [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_stmt, 6, 0, 88), - [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_echo_stmt, 3, 0, 12), - [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_echo_stmt, 3, 0, 12), - [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4, 0, 24), - [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4, 0, 24), - [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_stmt, 3, 0, 0), - [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_stmt, 3, 0, 0), - [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_block_stmt, 3, 0, 0), - [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_block_stmt, 3, 0, 0), - [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4, 0, 25), - [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4, 0, 25), - [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_if_stmt, 3, 0, 0), - [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_if_stmt, 3, 0, 0), - [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_for_stmt, 3, 0, 0), - [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_for_stmt, 3, 0, 0), - [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_stmt, 4, 0, 27), - [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_stmt, 4, 0, 27), - [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_foreach_stmt, 4, 0, 0), - [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_foreach_stmt, 4, 0, 0), - [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_foreach_stmt, 3, 0, 0), - [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_foreach_stmt, 3, 0, 0), - [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_switch_stmt, 3, 0, 0), - [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_switch_stmt, 3, 0, 0), - [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_stmt, 3, 0, 22), - [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_stmt, 3, 0, 22), - [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_stmt, 6, 0, 68), - [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_stmt, 6, 0, 68), - [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_if_stmt, 5, 0, 0), - [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_if_stmt, 5, 0, 0), - [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 5, 0, 47), - [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 5, 0, 47), - [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 5, 0, 25), - [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 5, 0, 25), - [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_stmt, 3, 0, 55), - [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_stmt, 3, 0, 55), - [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_for_stmt, 4, 0, 0), - [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_for_stmt, 4, 0, 0), - [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_block_stmt, 5, 0, 39), - [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_block_stmt, 5, 0, 39), - [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_block_stmt, 5, 0, 0), - [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_block_stmt, 5, 0, 0), - [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_stmt, 3, 0, 56), - [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_stmt, 3, 0, 56), - [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_stmt, 4, 0, 69), - [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_stmt, 4, 0, 69), - [1524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_if_stmt, 4, 0, 0), - [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_if_stmt, 4, 0, 0), - [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_stmt, 3, 0, 54), - [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_stmt, 3, 0, 54), - [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_stmt, 4, 0, 70), - [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_stmt, 4, 0, 70), - [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_stmt, 4, 0, 71), - [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_stmt, 4, 0, 71), - [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_stmt, 2, 0, 2), - [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_stmt, 2, 0, 2), - [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nextcase_stmt, 5, 0, 77), - [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nextcase_stmt, 5, 0, 77), - [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_stmt, 5, 0, 81), - [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_stmt, 5, 0, 81), - [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 1, 0, 0), - [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 1, 0, 0), - [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_if_stmt, 6, 0, 0), - [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_if_stmt, 6, 0, 0), - [1560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__if_body, 2, 0, 57), - [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_body, 2, 0, 57), - [1564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_stmt, 4, 0, 72), - [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_stmt, 4, 0, 72), - [1568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_stmt, 2, 0, 0), - [1570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_stmt, 2, 0, 0), - [1572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 5, 0, 46), - [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 5, 0, 46), - [1576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), - [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), - [1580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_stmt, 1, 0, 0), - [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_stmt, 1, 0, 0), - [1584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_stmt, 3, 0, 12), - [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_stmt, 3, 0, 12), - [1588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_stmt, 3, 0, 0), - [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_stmt, 3, 0, 0), - [1592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_stmt, 3, 0, 0), - [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_stmt, 3, 0, 0), - [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_stmt, 3, 0, 0), - [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_stmt, 3, 0, 0), - [1600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nextcase_stmt, 3, 0, 52), - [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nextcase_stmt, 3, 0, 52), - [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_assert_stmt, 5, 0, 59), - [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_assert_stmt, 5, 0, 59), - [1608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_block_stmt, 4, 0, 0), - [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_block_stmt, 4, 0, 0), - [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_stmt, 2, 0, 0), - [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_stmt, 2, 0, 0), - [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_stmt, 5, 0, 80), - [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_stmt, 5, 0, 80), - [1620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_part, 2, 0, 31), - [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_part, 2, 0, 31), - [1624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_stmt, 2, 0, 0), - [1626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_stmt, 2, 0, 0), - [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_stmt, 4, 0, 23), - [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_stmt, 4, 0, 23), - [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_stmt, 2, 0, 0), - [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_stmt, 2, 0, 0), - [1636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nextcase_stmt, 3, 0, 53), - [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nextcase_stmt, 3, 0, 53), - [1640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_stmt, 2, 0, 0), - [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_stmt, 2, 0, 0), - [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_part, 2, 0, 0), - [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_part, 2, 0, 0), - [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_stmt, 4, 0, 23), - [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_stmt, 4, 0, 23), - [1652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_stmt, 2, 0, 31), - [1654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_stmt, 2, 0, 31), - [1656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nextcase_stmt, 2, 0, 0), - [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nextcase_stmt, 2, 0, 0), - [1660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_stmt, 4, 0, 73), - [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_stmt, 4, 0, 73), - [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_stmt, 4, 0, 0), - [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_stmt, 4, 0, 0), - [1668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), - [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), - [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), - [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_if_cond, 2, 0, 2), - [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_if_cond, 2, 0, 2), - [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_foreach_cond, 5, 0, 87), - [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_foreach_cond, 5, 0, 87), - [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_foreach_cond, 7, 0, 96), - [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_foreach_cond, 7, 0, 96), - [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_cond, 4, 0, 0), - [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_cond, 4, 0, 0), - [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_cond, 5, 0, 84), - [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_cond, 5, 0, 84), - [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_cond, 5, 0, 85), - [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_cond, 5, 0, 85), - [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_cond, 5, 0, 86), - [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_cond, 5, 0, 86), - [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_cond, 6, 0, 90), - [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_cond, 6, 0, 90), - [1706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_cond, 6, 0, 91), - [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_cond, 6, 0, 91), - [1710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_cond, 6, 0, 92), - [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_cond, 6, 0, 92), - [1714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_cond, 7, 0, 95), - [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_cond, 7, 0, 95), - [1718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_cond, 5, 0, 87), - [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_cond, 5, 0, 87), - [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paren_cond, 3, 0, 12), - [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paren_cond, 3, 0, 12), - [1726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_cond, 7, 0, 96), - [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_cond, 7, 0, 96), - [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_op, 1, 0, 0), - [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_op, 1, 0, 0), - [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), - [1744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1322), - [1747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1008), - [1750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1043), - [1753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1302), - [1756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1046), - [1759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1683), - [1762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1682), - [1765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1154), - [1768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1444), - [1771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2352), - [1774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1145), - [1777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1528), - [1780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2348), - [1783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2346), - [1786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2343), - [1789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2341), - [1792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1130), - [1795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1038), - [1798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(326), - [1801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(369), - [1804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1487), - [1807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2333), - [1810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(362), - [1813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2325), - [1816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2320), - [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), - [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_expr, 1, 0, 0), - [1823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_expr, 1, 0, 0), - [1825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(1668), - [1828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(2106), - [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_expr_repeat1, 2, 0, 0), - [1833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_expr_repeat1, 2, 0, 0), - [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_invocation, 2, 0, 0), - [1839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_invocation, 2, 0, 0), - [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_declaration, 4, 0, 0), - [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_declaration, 4, 0, 0), - [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_declaration, 5, 0, 0), - [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_declaration, 5, 0, 0), - [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_invocation, 3, 0, 0), - [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_invocation, 3, 0, 0), - [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 5, 0, 40), - [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 5, 0, 40), - [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4, 0, 3), - [1859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4, 0, 3), - [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_declaration, 6, 0, 0), - [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_define_declaration, 6, 0, 0), - [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4, 0, 40), - [1867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4, 0, 40), - [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4, 0, 25), - [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4, 0, 25), - [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), - [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 5, 0, 42), - [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 5, 0, 42), - [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 5, 0, 63), - [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 5, 0, 63), - [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, 0, 48), - [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, 0, 48), - [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_body, 3, 0, 0), - [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_body, 3, 0, 0), - [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 5, 0, 62), - [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 5, 0, 62), - [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 5, 0, 25), - [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 5, 0, 25), - [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 5, 0, 47), - [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 5, 0, 47), - [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 5, 0, 46), - [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 5, 0, 46), - [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_exec_stmt, 5, 0, 39), - [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_exec_stmt, 5, 0, 39), - [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_body, 2, 0, 0), - [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_body, 2, 0, 0), - [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, 0, 7), - [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, 0, 7), - [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_inline_attributes, 1, 0, 0), - [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_inline_attributes, 1, 0, 0), - [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_exec_stmt, 4, 0, 0), - [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_exec_stmt, 4, 0, 0), - [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 3, 0, 7), - [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 3, 0, 7), - [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, 0, 26), - [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, 0, 26), - [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 3, 0, 6), - [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 3, 0, 6), - [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 3, 0, 1), - [1941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 3, 0, 1), - [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 3, 0, 5), - [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 3, 0, 5), - [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4, 0, 41), - [1949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4, 0, 41), - [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4, 0, 16), - [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4, 0, 16), - [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4, 0, 42), - [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4, 0, 42), - [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 5, 0, 7), - [1961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 5, 0, 7), - [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5, 0, 20), - [1965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5, 0, 20), - [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 2, 0, 1), - [1969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 2, 0, 1), - [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_definition, 5, 0, 44), - [1973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_definition, 5, 0, 44), - [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_func_body, 2, 0, 0), - [1977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_func_body, 2, 0, 0), - [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_declaration, 5, 0, 0), - [1981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_define_declaration, 5, 0, 0), - [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_distinct_declaration, 5, 0, 3), - [1985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_distinct_declaration, 5, 0, 3), - [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 0), - [1989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 0), - [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_declaration, 5, 0, 44), - [1993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_declaration, 5, 0, 44), - [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 0), - [1997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 0), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_case_stmt, 3, 0, 0), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_case_stmt, 2, 0, 0), + [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(973), + [246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(991), + [249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1838), + [252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1488), + [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1942), + [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(976), + [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(980), + [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(987), + [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(980), + [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1200), + [273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1224), + [276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(987), + [279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(304), + [282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(822), + [285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1195), + [288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(396), + [291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1140), + [294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(11), + [297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), + [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1156), + [302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1595), + [305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(230), + [308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1596), + [311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1600), + [314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(69), + [317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2201), + [320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), + [322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(193), + [325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1231), + [328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(822), + [331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1556), + [334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1555), + [337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1554), + [340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1553), + [343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1552), + [346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1207), + [349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1603), + [352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(258), + [355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(257), + [358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(253), + [361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(199), + [364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1550), + [367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1859), + [370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1850), + [373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1909), + [376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1906), + [379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(991), + [382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1905), + [385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1904), + [388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1902), + [391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(92), + [394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2200), + [397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_case_stmt, 3, 0, 14), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_stmt, 3, 0, 79), + [457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_stmt, 3, 0, 79), + [459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_stmt, 3, 0, 80), + [461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_stmt, 3, 0, 80), + [463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_stmt, 2, 0, 0), + [465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_stmt, 2, 0, 0), + [467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_stmt_body, 1, 0, 0), + [469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(443), + [472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(10), + [475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1153), + [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(260), + [481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1614), + [484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1616), + [487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(80), + [490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2025), + [493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(189), + [496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1227), + [499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1560), + [502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1561), + [505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1562), + [508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1564), + [511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1565), + [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1635), + [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(244), + [520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(254), + [523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(256), + [526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(201), + [529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1816), + [532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1822), + [535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_stmt, 3, 0, 0), + [537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_stmt, 3, 0, 0), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), + [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_stmt, 4, 0, 79), + [553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_stmt, 4, 0, 79), + [555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_stmt, 4, 0, 80), + [557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_stmt, 4, 0, 80), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), + [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), + [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), + [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), + [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), + [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), + [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), + [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), + [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(556), + [736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(12), + [739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1145), + [742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(226), + [745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1619), + [748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1620), + [751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(63), + [754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2224), + [757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(191), + [760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1239), + [763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1501), + [766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1502), + [769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1503), + [772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1504), + [775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1506), + [778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1681), + [781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(245), + [784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(240), + [787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(207), + [790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(198), + [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1756), + [796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1755), + [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(715), + [810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(8), + [813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1154), + [816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(266), + [819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1604), + [822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1602), + [825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(95), + [828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2041), + [831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(194), + [834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1238), + [837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1534), + [840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1535), + [843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1537), + [846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1538), + [849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1541), + [852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1661), + [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(231), + [858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(233), + [861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(235), + [864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(200), + [867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1781), + [870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1783), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), + [895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(641), + [898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(13), + [901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1148), + [904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(261), + [907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1651), + [910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1650), + [913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(76), + [916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2102), + [919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(196), + [922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1230), + [925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1523), + [928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1524), + [931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1525), + [934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1526), + [937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1527), + [940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1696), + [943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(269), + [946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(211), + [949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(210), + [952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(205), + [955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1730), + [958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1732), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), + [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), + [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [1015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(594), + [1018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(9), + [1021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1155), + [1024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(251), + [1027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1700), + [1030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1699), + [1033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(88), + [1036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2225), + [1039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(190), + [1042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1237), + [1045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1450), + [1048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1515), + [1051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1517), + [1054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1518), + [1057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1485), + [1060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1695), + [1063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(224), + [1066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(222), + [1069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(220), + [1072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(204), + [1075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1714), + [1078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1712), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [1167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_expr, 2, 0, 12), + [1169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_expr, 2, 0, 12), + [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [1179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_stmt, 2, 0, 0), + [1181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_stmt, 2, 0, 0), + [1183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2, 0, 0), + [1185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2, 0, 0), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [1191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arg_list, 2, 0, 0), + [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [1207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arg_list, 3, 0, 0), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [1255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expr, 2, 0, 2), + [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expr, 1, 0, 0), + [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), + [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), + [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [1287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unary_op, 1, 0, 0), + [1289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_op, 1, 0, 0), + [1291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_expr, 3, 0, 35), + [1293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_expr, 3, 0, 35), + [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), + [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), + [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [1343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__if_body, 1, 0, 57), + [1345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_body, 1, 0, 57), + [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [1351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_stmt, 3, 0, 0), + [1353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_stmt, 3, 0, 0), + [1355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), + [1357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0), + [1359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nextcase_stmt, 3, 0, 53), + [1361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nextcase_stmt, 3, 0, 53), + [1363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_stmt, 3, 0, 0), + [1365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_stmt, 3, 0, 0), + [1367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_stmt, 4, 0, 72), + [1369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_stmt, 4, 0, 72), + [1371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 6, 0, 65), + [1373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 6, 0, 65), + [1375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_stmt, 4, 0, 23), + [1377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_stmt, 4, 0, 23), + [1379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_stmt, 4, 0, 23), + [1381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_stmt, 4, 0, 23), + [1383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_stmt, 4, 0, 73), + [1385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_stmt, 4, 0, 73), + [1387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_stmt, 4, 0, 0), + [1389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_stmt, 4, 0, 0), + [1391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_block_stmt, 4, 0, 0), + [1393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_block_stmt, 4, 0, 0), + [1395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_if_stmt, 4, 0, 0), + [1397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_if_stmt, 4, 0, 0), + [1399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_assert_stmt, 5, 0, 61), + [1401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_assert_stmt, 5, 0, 61), + [1403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_for_stmt, 4, 0, 0), + [1405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_for_stmt, 4, 0, 0), + [1407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_foreach_stmt, 4, 0, 0), + [1409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_foreach_stmt, 4, 0, 0), + [1411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_stmt, 4, 0, 27), + [1413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_stmt, 4, 0, 27), + [1415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_stmt, 4, 0, 69), + [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_stmt, 4, 0, 69), + [1419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_stmt, 3, 0, 22), + [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_stmt, 3, 0, 22), + [1423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_stmt, 2, 0, 2), + [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_stmt, 2, 0, 2), + [1427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_stmt, 5, 0, 39), + [1429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_stmt, 5, 0, 39), + [1431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nextcase_stmt, 5, 0, 77), + [1433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nextcase_stmt, 5, 0, 77), + [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), + [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nextcase_stmt, 5, 0, 78), + [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nextcase_stmt, 5, 0, 78), + [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_stmt, 2, 0, 0), + [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_stmt, 2, 0, 0), + [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_switch_stmt, 3, 0, 0), + [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_switch_stmt, 3, 0, 0), + [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_stmt, 2, 0, 31), + [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_stmt, 2, 0, 31), + [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 5, 0, 25), + [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 5, 0, 25), + [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 5, 0, 47), + [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 5, 0, 47), + [1461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_foreach_stmt, 3, 0, 0), + [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_foreach_stmt, 3, 0, 0), + [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_stmt, 1, 0, 0), + [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_stmt, 1, 0, 0), + [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_for_stmt, 3, 0, 0), + [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_for_stmt, 3, 0, 0), + [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_stmt, 5, 0, 81), + [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_stmt, 5, 0, 81), + [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_part, 2, 0, 31), + [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_part, 2, 0, 31), + [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 5, 0, 46), + [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 5, 0, 46), + [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nextcase_stmt, 2, 0, 0), + [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nextcase_stmt, 2, 0, 0), + [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__if_body, 2, 0, 57), + [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_body, 2, 0, 57), + [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_part, 2, 0, 0), + [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_part, 2, 0, 0), + [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_stmt, 2, 0, 0), + [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_stmt, 2, 0, 0), + [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_if_stmt, 3, 0, 0), + [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_if_stmt, 3, 0, 0), + [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_stmt, 2, 0, 0), + [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_stmt, 2, 0, 0), + [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_stmt, 2, 0, 0), + [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_stmt, 2, 0, 0), + [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_stmt, 5, 0, 82), + [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_stmt, 5, 0, 82), + [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_block_stmt, 3, 0, 0), + [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_block_stmt, 3, 0, 0), + [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_block_stmt, 5, 0, 0), + [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_block_stmt, 5, 0, 0), + [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_block_stmt, 5, 0, 39), + [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_block_stmt, 5, 0, 39), + [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_if_stmt, 5, 0, 0), + [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_if_stmt, 5, 0, 0), + [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_stmt, 2, 0, 0), + [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_stmt, 2, 0, 0), + [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 3, 0, 3), + [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 3, 0, 3), + [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_stmt, 3, 0, 0), + [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_stmt, 3, 0, 0), + [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_stmt, 3, 0, 14), + [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_stmt, 3, 0, 14), + [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4, 0, 24), + [1551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4, 0, 24), + [1553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_stmt, 3, 0, 54), + [1555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_stmt, 3, 0, 54), + [1557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_stmt, 3, 0, 55), + [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_stmt, 3, 0, 55), + [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_assert_stmt, 3, 0, 14), + [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_assert_stmt, 3, 0, 14), + [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_stmt, 6, 0, 68), + [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_stmt, 6, 0, 68), + [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4, 0, 3), + [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4, 0, 3), + [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_stmt, 3, 0, 55), + [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_stmt, 3, 0, 55), + [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_stmt, 3, 0, 0), + [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_stmt, 3, 0, 0), + [1581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 1, 0, 0), + [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 1, 0, 0), + [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_stmt, 4, 0, 71), + [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_stmt, 4, 0, 71), + [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_stmt, 3, 0, 58), + [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_stmt, 3, 0, 58), + [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_stmt, 4, 0, 70), + [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_stmt, 4, 0, 70), + [1597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_stmt, 3, 0, 56), + [1599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_stmt, 3, 0, 56), + [1601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_stmt, 6, 0, 89), + [1603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_stmt, 6, 0, 89), + [1605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_stmt, 3, 0, 55), + [1607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_stmt, 3, 0, 55), + [1609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_stmt, 3, 0, 54), + [1611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_stmt, 3, 0, 54), + [1613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_block_stmt, 6, 0, 39), + [1615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_block_stmt, 6, 0, 39), + [1617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_if_stmt, 6, 0, 0), + [1619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_if_stmt, 6, 0, 0), + [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_stmt, 3, 0, 0), + [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_stmt, 3, 0, 0), + [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nextcase_stmt, 3, 0, 52), + [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nextcase_stmt, 3, 0, 52), + [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), + [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), + [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_echo_stmt, 3, 0, 14), + [1635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_echo_stmt, 3, 0, 14), + [1637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4, 0, 25), + [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4, 0, 25), + [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), + [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [1647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_if_cond, 2, 0, 2), + [1649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_if_cond, 2, 0, 2), + [1651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_cond, 7, 0, 96), + [1653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_cond, 7, 0, 96), + [1655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_cond, 6, 0, 93), + [1657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_cond, 6, 0, 93), + [1659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_cond, 6, 0, 92), + [1661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_cond, 6, 0, 92), + [1663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_cond, 6, 0, 91), + [1665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_cond, 6, 0, 91), + [1667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_cond, 5, 0, 87), + [1669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_cond, 5, 0, 87), + [1671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_cond, 5, 0, 86), + [1673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_cond, 5, 0, 86), + [1675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_cond, 5, 0, 85), + [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_cond, 5, 0, 85), + [1679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_cond, 4, 0, 0), + [1681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_cond, 4, 0, 0), + [1683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_foreach_cond, 7, 0, 97), + [1685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_foreach_cond, 7, 0, 97), + [1687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_foreach_cond, 5, 0, 88), + [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_foreach_cond, 5, 0, 88), + [1691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_cond, 7, 0, 97), + [1693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_cond, 7, 0, 97), + [1695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_cond, 5, 0, 88), + [1697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_cond, 5, 0, 88), + [1699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paren_cond, 3, 0, 14), + [1701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paren_cond, 3, 0, 14), + [1703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 2, 0, 0), + [1705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2, 0, 0), + [1707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 3, 0, 0), + [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 3, 0, 0), + [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [1719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_op, 1, 0, 0), + [1721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_op, 1, 0, 0), + [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), + [1725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1216), + [1728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(989), + [1731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1033), + [1734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1196), + [1737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1057), + [1740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1571), + [1743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1570), + [1746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1150), + [1749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1344), + [1752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2199), + [1755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1151), + [1758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1418), + [1761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2195), + [1764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2189), + [1767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2181), + [1770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2176), + [1773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1133), + [1776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1036), + [1779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(229), + [1782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(228), + [1785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1384), + [1788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2160), + [1791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(209), + [1794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2152), + [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), + [1799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(1488), + [1802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(1942), + [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_expr_repeat1, 2, 0, 0), + [1807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_expr_repeat1, 2, 0, 0), + [1809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_expr, 1, 0, 0), + [1811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_expr, 1, 0, 0), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_invocation, 2, 0, 0), + [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_invocation, 2, 0, 0), + [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_declaration, 4, 0, 0), + [1821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_declaration, 4, 0, 0), + [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_invocation, 3, 0, 0), + [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_invocation, 3, 0, 0), + [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_declaration, 5, 0, 0), + [1829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_declaration, 5, 0, 0), + [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elvis_orelse_expr, 3, 0, 36), + [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elvis_orelse_expr, 3, 0, 36), + [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstruct_declaration, 7, 0, 76), + [1895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstruct_declaration, 7, 0, 76), + [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, 0, 9), + [1899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, 0, 9), + [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstruct_declaration, 5, 0, 48), + [1903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstruct_declaration, 5, 0, 48), + [1905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_distinct_declaration, 6, 0, 3), + [1907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_distinct_declaration, 6, 0, 3), + [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_body, 2, 0, 0), + [1911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_body, 2, 0, 0), + [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 3, 0, 5), + [1915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 3, 0, 5), + [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4, 0, 25), + [1919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4, 0, 25), + [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_body, 2, 0, 0), + [1923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_body, 2, 0, 0), + [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4, 0, 40), + [1927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4, 0, 40), + [1929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstruct_body, 2, 0, 0), + [1931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstruct_body, 2, 0, 0), + [1933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_declaration, 4, 0, 23), + [1935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_declaration, 4, 0, 23), + [1937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4, 0, 3), + [1939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4, 0, 3), + [1941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_definition, 4, 0, 23), + [1943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_definition, 4, 0, 23), + [1945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstruct_declaration, 6, 0, 66), + [1947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstruct_declaration, 6, 0, 66), + [1949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4, 0, 6), + [1951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4, 0, 6), + [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4, 0, 24), + [1955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4, 0, 24), + [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fault_body, 4, 0, 0), + [1959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fault_body, 4, 0, 0), + [1961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 3, 0, 1), + [1963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 3, 0, 1), + [1965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 3, 0, 6), + [1967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 3, 0, 6), + [1969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_exec_stmt, 4, 0, 0), + [1971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_exec_stmt, 4, 0, 0), + [1973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 0), + [1975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 0), + [1977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expr, 3, 0, 33), + [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4, 0, 18), + [1985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4, 0, 18), + [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expr, 3, 0, 33), + [1989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expr, 3, 0, 33), + [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fault_declaration, 3, 0, 9), + [1993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fault_declaration, 3, 0, 9), + [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, 0, 66), + [1997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, 0, 66), [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_body, 3, 0, 0), [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_body, 3, 0, 0), - [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, 0, 48), - [2005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, 0, 48), - [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4, 0, 24), - [2009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4, 0, 24), - [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 0), - [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 0), - [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fault_declaration, 5, 0, 48), - [2017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fault_declaration, 5, 0, 48), - [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), - [2021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), - [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fault_body, 3, 0, 0), - [2025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fault_body, 3, 0, 0), - [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstruct_declaration, 5, 0, 48), - [2029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstruct_declaration, 5, 0, 48), - [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, 0, 9), - [2033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, 0, 9), - [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fault_body, 5, 0, 0), - [2037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fault_body, 5, 0, 0), - [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstruct_declaration, 7, 0, 75), - [2041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstruct_declaration, 7, 0, 75), - [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_distinct_declaration, 6, 0, 3), - [2045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_distinct_declaration, 6, 0, 3), - [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fault_declaration, 3, 0, 9), - [2049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fault_declaration, 3, 0, 9), - [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstruct_body, 2, 0, 0), - [2053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstruct_body, 2, 0, 0), - [2055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstruct_body, 3, 0, 0), - [2057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstruct_body, 3, 0, 0), - [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_include_stmt, 3, 0, 0), - [2061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_include_stmt, 3, 0, 0), - [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_declaration, 4, 0, 23), - [2065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_declaration, 4, 0, 23), - [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_body, 2, 0, 0), - [2069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_body, 2, 0, 0), - [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 26), - [2073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, 0, 26), - [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fault_declaration, 4, 0, 26), - [2077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fault_declaration, 4, 0, 26), - [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_declaration, 4, 0, 0), - [2081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_define_declaration, 4, 0, 0), - [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_func_body, 1, 0, 0), - [2085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_func_body, 1, 0, 0), - [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_definition, 4, 0, 23), - [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_definition, 4, 0, 23), - [2091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_call_inline_attributes_repeat1, 2, 0, 0), SHIFT_REPEAT(984), - [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_call_inline_attributes_repeat1, 2, 0, 0), - [2096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_call_inline_attributes_repeat1, 2, 0, 0), - [2098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, 0, 66), - [2100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, 0, 66), - [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 20), - [2104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 20), - [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 7), - [2108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 7), - [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_distinct_declaration, 7, 0, 3), - [2112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_distinct_declaration, 7, 0, 3), - [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 4, 0, 7), - [2116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 4, 0, 7), - [2118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstruct_declaration, 6, 0, 66), - [2120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstruct_declaration, 6, 0, 66), - [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_exec_stmt, 6, 0, 68), - [2124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_exec_stmt, 6, 0, 68), - [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 6, 0, 65), - [2128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 6, 0, 65), - [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 6, 0, 62), - [2132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 6, 0, 62), - [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4, 0, 6), - [2136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4, 0, 6), - [2138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_distinct_declaration, 8, 0, 3), - [2140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_distinct_declaration, 8, 0, 3), - [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4, 0, 18), - [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4, 0, 18), - [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, 0, 9), - [2148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, 0, 9), - [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 3, 0, 16), - [2152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 3, 0, 16), - [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_declaration, 3, 0, 0), - [2156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_define_declaration, 3, 0, 0), - [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fault_body, 4, 0, 0), - [2160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fault_body, 4, 0, 0), - [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_declaration, 7, 0, 0), - [2164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_define_declaration, 7, 0, 0), - [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 3, 0, 9), - [2168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 3, 0, 9), - [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 3, 0, 3), - [2172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 3, 0, 3), - [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_expr_repeat1, 1, 0, 0), - [2176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_expr, 1, 0, 0), - [2178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_expr, 1, 0, 0), - [2180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), - [2182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), - [2184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), - [2186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), - [2188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3, 0, 0), - [2190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3, 0, 0), - [2192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_bytes_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(987), - [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_bytes_expr_repeat1, 2, 0, 0), - [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_bytes_expr_repeat1, 2, 0, 0), - [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bytes_expr, 1, 0, 0), - [2201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bytes_expr, 1, 0, 0), - [2203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_expr_repeat1, 1, 0, 0), - [2205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expr, 2, 0, 14), - [2207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expr, 2, 0, 14), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_call_inline_attributes_repeat1, 1, 0, 0), - [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_call_inline_attributes_repeat1, 1, 0, 0), - [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_invocation, 4, 0, 0), - [2217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_invocation, 4, 0, 0), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [2221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ident_expr, 1, 0, 0), - [2223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ident_expr, 1, 0, 0), - [2225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_bytes_expr_repeat1, 1, 0, 0), - [2227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_bytes_expr_repeat1, 1, 0, 0), - [2229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_block, 3, 0, 0), - [2231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_block, 3, 0, 0), - [2233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_block, 2, 0, 0), - [2235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_block, 2, 0, 0), - [2237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_arguments, 3, 0, 12), - [2239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_arguments, 3, 0, 12), - [2241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_ident, 4, 0, 39), - [2243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_ident, 4, 0, 39), - [2245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trailing_generic_expr, 2, 0, 13), - [2247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trailing_generic_expr, 2, 0, 13), - [2249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rethrow_expr, 2, 0, 13), - [2251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rethrow_expr, 2, 0, 13), - [2253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expr, 2, 0, 13), - [2255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expr, 2, 0, 13), - [2257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_expr, 6, 0, 39), - [2259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_expr, 6, 0, 39), - [2261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_expr, 1, 0, 0), - [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trailing_expr, 1, 0, 0), - [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_expr, 1, 0, 0), - [2267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__trailing_expr, 1, 0, 0), - [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__relational_expr, 1, 0, 0), - [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr, 1, 0, 2), - [2273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trailing_expr, 1, 0, 2), - [2275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr, 1, 0, 2), - [2277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__trailing_expr, 1, 0, 2), - [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_expr, 1, 0, 2), - [2281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__relational_expr, 1, 0, 2), - [2283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_expr, 1, 0, 2), - [2285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_expr, 2, 0, 11), - [2287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_expr, 2, 0, 11), - [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5, 0, 0), - [2291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5, 0, 0), - [2293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_expr, 2, 0, 0), - [2295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_expr, 2, 0, 0), - [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_access_expr, 3, 0, 38), - [2299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_access_expr, 3, 0, 38), - [2301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_base_type, 1, 0, 0), - [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_type, 1, 0, 0), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [2307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_expr, 5, 0, 68), - [2309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_expr, 5, 0, 68), - [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expr, 4, 0, 61), - [2313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expr, 4, 0, 61), - [2315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3, 0, 0), - [2317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3, 0, 0), - [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expr, 4, 0, 60), - [2321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expr, 4, 0, 60), - [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_ident_expr, 2, 0, 10), - [2325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_ident_expr, 2, 0, 10), - [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paren_expr, 3, 0, 12), - [2329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paren_expr, 3, 0, 12), - [2331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_ident_expr, 1, 0, 0), - [2333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_ident_expr, 1, 0, 0), - [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3, 0, 0), - [2337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3, 0, 0), - [2339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_expr, 3, 0, 0), - [2341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_expr, 3, 0, 0), - [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4, 0, 0), - [2345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4, 0, 0), - [2347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), - [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), - [2351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(233), - [2354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1037), - [2357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(254), - [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expr, 3, 0, 34), - [2362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expr, 3, 0, 34), - [2364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr, 1, 0, 0), - [2366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr, 1, 0, 0), - [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_ident, 1, 0, 0), - [2370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_ident, 1, 0, 0), - [2372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), - [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), - [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), - [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expr, 3, 0, 37), - [2384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expr, 3, 0, 37), - [2386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 2, 0, 0), - [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2, 0, 0), - [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_expr, 4, 0, 39), - [2392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_expr, 4, 0, 39), - [2394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_expr, 4, 0, 0), - [2396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_expr, 4, 0, 0), - [2398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_type_ident, 2, 0, 0), - [2400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_type_ident, 2, 0, 0), - [2402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_suffix, 2, 0, 0), - [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_suffix, 2, 0, 0), - [2406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_suffix, 3, 0, 0), - [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_suffix, 3, 0, 0), - [2410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 1, 0, 0), - [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 1, 0, 0), - [2414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_suffix, 1, 0, 0), - [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_suffix, 1, 0, 0), - [2418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_base_type_name, 1, 0, 0), - [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_type_name, 1, 0, 0), - [2422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_base_type, 2, 0, 0), - [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_type, 2, 0, 0), - [2426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_suffix, 3, 0, 12), - [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_suffix, 3, 0, 12), - [2430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_base_type, 4, 0, 39), - [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_type, 4, 0, 39), - [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [2436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [2438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [2442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), - [2444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [2458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(220), - [2461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1073), - [2464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(360), - [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3, 0, 0), - [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arg_list, 4, 0, 0), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), - [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2, 0, 0), - [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arg_list, 1, 0, 0), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [2491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2275), - [2494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1008), - [2497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1043), - [2500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), - [2502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1198), - [2505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1528), - [2508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1888), - [2511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1038), - [2514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2325), - [2517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2320), - [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_path, 1, 0, 2), - [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_path_element, 2, 0, 12), - [2526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_path_element, 2, 0, 12), - [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [2530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), - [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__relational_expr, 1, 0, 2), - [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__relational_expr, 1, 0, 0), - [2536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expr, 3, 0, 33), - [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [2548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [2558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expr, 3, 0, 33), - [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [2578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_arg, 4, 0, 0), - [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expr, 4, 0, 50), - [2586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expr, 4, 0, 50), - [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expr, 3, 0, 33), - [2590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expr, 3, 0, 33), - [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implies_body, 2, 0, 32), - [2594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implies_body, 2, 0, 32), - [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expr, 2, 0, 0), - [2598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expr, 2, 0, 0), - [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expr, 2, 0, 15), - [2602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expr, 2, 0, 15), - [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_arg, 5, 0, 0), - [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_target, 1, 0, 0), - [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_arg, 6, 0, 0), - [2612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expr, 3, 0, 29), - [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expr, 3, 0, 29), - [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_spec, 1, 0, 0), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elvis_orelse_expr, 3, 0, 35), - [2624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elvis_orelse_expr, 3, 0, 35), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expr, 5, 0, 74), - [2632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expr, 5, 0, 74), - [2634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [2640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [2648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [2656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [2660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [2662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [2664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [2666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [2670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitstruct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2275), - [2673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_bitstruct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1008), - [2676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_bitstruct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1043), - [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_bitstruct_body_repeat1, 2, 0, 0), - [2681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitstruct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1038), - [2684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_bitstruct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2325), - [2687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_bitstruct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2320), - [2690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [2694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [2698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [2700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [2702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [2704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [2706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [2708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [2710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [2712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [2714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [2720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [2726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [2730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [2732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_optional, 1, 0, 0), - [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_optional, 1, 0, 0), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [2742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), - [2744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), - [2746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_optional, 2, 0, 0), - [2748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_optional, 2, 0, 0), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [2754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [2764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_member_declaration, 3, 0, 22), - [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_member_declaration, 3, 0, 22), - [2768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_member_declaration, 3, 0, 27), - [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_member_declaration, 3, 0, 27), - [2772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_member_declaration, 4, 0, 23), - [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_member_declaration, 4, 0, 23), - [2776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_member_declaration, 4, 0, 22), - [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_member_declaration, 4, 0, 22), - [2780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_struct_body_repeat1, 1, 0, 0), - [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_body_repeat1, 1, 0, 0), - [2784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_member_declaration, 6, 0, 93), - [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_member_declaration, 6, 0, 93), - [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_member_declaration, 4, 0, 27), - [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_member_declaration, 4, 0, 27), - [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_member_declaration, 2, 0, 31), - [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_member_declaration, 2, 0, 31), - [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_member_declaration, 3, 0, 55), - [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_member_declaration, 3, 0, 55), - [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_member_declaration, 5, 0, 44), - [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_member_declaration, 5, 0, 44), - [2804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_member_declaration, 5, 0, 27), - [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_member_declaration, 5, 0, 27), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arg, 3, 0, 39), - [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__range_loc, 1, 0, 2), - [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arg, 1, 0, 2), - [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [2828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__range_loc, 2, 0, 12), - [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__generic_arg_list, 1, 0, 2), - [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arg, 2, 0, 12), - [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assign_right_expr, 2, 0, 4), - [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__decl_or_expr, 1, 0, 2), - [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_stmt_repeat1, 2, 0, 12), - [2856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__generic_arg_list_repeat1, 2, 0, 12), - [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [2864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstruct_member_declaration, 5, 0, 94), - [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstruct_member_declaration, 5, 0, 94), - [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [2912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstruct_member_declaration, 7, 0, 97), - [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstruct_member_declaration, 7, 0, 97), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_range, 3, 0, 35), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstruct_member_declaration, 3, 0, 22), - [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstruct_member_declaration, 3, 0, 22), - [2932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_bitstruct_body_repeat1, 1, 0, 0), - [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_bitstruct_body_repeat1, 1, 0, 0), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [2952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_decl_storage, 1, 0, 0), - [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_decl_storage, 1, 0, 0), - [2956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_storage, 1, 0, 0), - [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_storage, 1, 0, 0), - [2960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [2968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(223), - [2971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1314), - [2974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(374), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributes, 1, 0, 0), - [2985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributes, 1, 0, 0), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [2999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2, 0, 0), SHIFT_REPEAT(2275), - [3002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2, 0, 0), SHIFT_REPEAT(1412), - [3005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2, 0, 0), SHIFT_REPEAT(1392), - [3008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2, 0, 0), - [3010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributes_repeat1, 2, 0, 0), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [3014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 1, 0, 1), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [3030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 1, 0, 1), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [3040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 2, 0, 1), - [3042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 2, 0, 3), - [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 3, 0, 64), - [3048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 2, 0, 16), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [3052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_decl_after_type, 1, 0, 1), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [3116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declaration, 3, 0, 30), - [3118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declaration, 2, 0, 0), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [3132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 1), - [3134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 1, 0, 1), - [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [3140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_at_type_ident, 1, 0, 0), - [3142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path_at_type_ident, 1, 0, 0), - [3144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_instr, 1, 0, 0), - [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [3162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_at_type_ident, 2, 0, 0), - [3164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path_at_type_ident, 2, 0, 0), - [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [3186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_name, 1, 0, 0), - [3188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_name, 1, 0, 0), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [3192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_instr, 3, 0, 0), - [3194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_param_list, 4, 0, 0), - [3196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_param_list, 4, 0, 0), - [3198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_param_list, 3, 0, 0), - [3200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_param_list, 3, 0, 0), - [3202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 1, 0, 0), - [3204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributes_repeat1, 1, 0, 0), - [3206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 1), - [3208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 2, 0, 1), - [3210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__additive_op, 1, 0, 0), - [3212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_param_path_repeat1, 2, 0, 0), - [3214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_param_path_repeat1, 2, 0, 0), SHIFT_REPEAT(349), - [3217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_param_path_repeat1, 2, 0, 0), SHIFT_REPEAT(345), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [3222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 1, 0, 22), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [3228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_path, 1, 0, 0), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [3238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [3246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_addr, 5, 0, 0), - [3248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_addr, 7, 0, 0), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [3258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arg, 1, 0, 0), - [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [3266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_addr, 3, 0, 0), - [3268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_addr, 9, 0, 0), - [3270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_expr, 2, 0, 0), - [3272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_expr, 1, 0, 0), - [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), - [3284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arg, 3, 0, 0), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [3290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_ident, 1, 0, 0), - [3292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fn_parameter_list, 3, 0, 0), - [3294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__module_path, 2, 0, 0), SHIFT_REPEAT(2275), - [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__module_path, 2, 0, 0), - [3299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__module_path, 2, 0, 0), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [3303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_ident, 2, 0, 0), - [3305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fn_parameter_list, 2, 0, 0), - [3315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_param_path_repeat1, 1, 0, 0), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_path_element, 5, 0, 59), - [3323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_path_element, 3, 0, 12), - [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [3343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), - [3345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1665), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [3354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multi_declaration_repeat1, 2, 0, 0), - [3356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multi_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(2303), - [3359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 1, 0, 0), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [3367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 21), - [3369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_ident, 3, 0, 0), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [3375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 2, 0, 0), - [3377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_impl, 3, 0, 0), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [3387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multi_declaration, 3, 0, 17), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [3393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), - [3395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(209), - [3398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2188), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [3407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__generic_arg_list, 1, 0, 0), - [3409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multi_declaration, 2, 0, 3), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_spec, 2, 0, 27), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [3419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_impl, 4, 0, 0), - [3421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_asm_block_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1393), - [3424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_block_stmt_repeat1, 2, 0, 0), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [3436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_impl, 2, 0, 0), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_at_ident, 1, 0, 0), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [3448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 2, 0, 0), - [3450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_parameter_list, 2, 0, 0), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [3454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 2, 0, 22), - [3456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_parameter_list, 4, 0, 0), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [3464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_resolution, 2, 0, 0), - [3466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_resolution, 2, 0, 0), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [3470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_or_union, 1, 0, 0), - [3472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_parameter_list, 5, 0, 0), - [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_parameter_list, 3, 0, 0), - [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [3478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_const_ident, 1, 0, 0), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [3484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_const_ident, 2, 0, 0), - [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__module_path, 1, 0, 0), - [3488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__module_path, 1, 0, 0), - [3490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ct_switch_body, 2, 0, 0), SHIFT_REPEAT(219), - [3493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ct_switch_body, 2, 0, 0), SHIFT_REPEAT(2146), - [3496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__ct_switch_body, 2, 0, 0), - [3498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_at_ident, 2, 0, 0), - [3500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_param_path_repeat1, 2, 0, 0), SHIFT_REPEAT(346), - [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [3507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__generic_arg_list_repeat1, 2, 0, 0), - [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [3511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_param_list, 2, 0, 0), - [3513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), - [3515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [3519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), - [3521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), - [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [3525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 4, 0, 64), - [3527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assign_right_constant_expr, 2, 0, 4), - [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [3531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_attribute, 6, 0, 1), - [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [3543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_param_list, 4, 0, 0), - [3545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_decl, 2, 0, 0), - [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [3551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_decl_after_type, 2, 0, 1), - [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [3557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__module_path, 2, 0, 0), SHIFT_REPEAT(2261), - [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [3566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1811), - [3569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), - [3571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1811), - [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [3580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_unwrap_list, 1, 0, 2), - [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [3588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(1082), - [3591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), - [3593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_arg_repeat1, 2, 0, 0), SHIFT_REPEAT(175), - [3596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_arg_repeat1, 2, 0, 0), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [3600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_spec, 2, 0, 0), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1, 0, 0), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface, 1, 0, 0), - [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [3622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typedef_type, 1, 0, 0), - [3624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_attribute, 9, 0, 1), - [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [3634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__rel_or_lambda_expr, 1, 0, 2), - [3636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 1, 0, 0), - [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [3640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_module_parameters, 3, 0, 0), - [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [3654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arg, 4, 0, 0), - [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [3660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_attribute, 8, 0, 1), - [3662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_ident, 4, 0, 0), - [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_attribute, 4, 0, 1), - [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [3676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_param_list, 3, 0, 0), - [3678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_catch_unwrap_list_repeat1, 2, 0, 12), - [3680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attr_param, 1, 0, 2), - [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [3684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, 0, 1), - [3686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__rel_or_lambda_expr, 3, 0, 39), - [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [3694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ct_switch, 1, 0, 0), - [3696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_spec, 3, 0, 27), - [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [3702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1146), - [3705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), - [3707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), - [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [3719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_attribute, 5, 0, 1), - [3721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_typedef, 3, 0, 0), - [3723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_attribute, 7, 0, 1), - [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [3727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 3, 0, 16), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [3731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 3, 0, 1), - [3733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 3, 0, 3), - [3735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_module_parameters, 4, 0, 0), - [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [3747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ct_exec_stmt_repeat1, 2, 0, 12), - [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [3753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__try_unwrap_chain, 1, 0, 0), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [3761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_stmt, 3, 0, 0), - [3763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_stmt, 3, 0, 0), - [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [3775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_case_stmt, 4, 0, 12), - [3777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_case_stmt, 4, 0, 0), - [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [3783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_unwrap, 4, 0, 82), - [3785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_catch_unwrap_list_repeat1, 2, 0, 19), SHIFT_REPEAT(265), - [3788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_catch_unwrap_list_repeat1, 2, 0, 19), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [3798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_stmt, 4, 0, 0), - [3800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_stmt, 4, 0, 0), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [3804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_asm_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1372), - [3807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_stmt_repeat1, 2, 0, 0), - [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [3815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_unwrap, 5, 0, 89), - [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [3821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__cond_repeat1, 2, 0, 19), SHIFT_REPEAT(194), - [3824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__cond_repeat1, 2, 0, 19), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [3828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__cond_repeat1, 2, 0, 12), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [3842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__try_unwrap_chain_repeat1, 2, 0, 19), - [3844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__try_unwrap_chain_repeat1, 2, 0, 19), SHIFT_REPEAT(198), - [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [3851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__try_unwrap_chain_repeat1, 2, 0, 0), - [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [3855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__generic_arg_list, 2, 0, 19), - [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [3863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__generic_arg_list, 2, 0, 12), - [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [3875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__try_unwrap_chain_repeat1, 2, 0, 12), - [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [3887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_unwrap_list, 2, 0, 19), - [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [3891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_param_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1190), - [3894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_param_list_repeat1, 2, 0, 0), - [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [3904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_type_ident, 1, 0, 0), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [3920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__decl_statement_after_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1771), - [3923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__decl_statement_after_type_repeat1, 2, 0, 0), - [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [3927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_decl_after_type, 3, 0, 18), - [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [3935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_case_stmt, 3, 0, 0), - [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [3943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cond, 2, 0, 19), - [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [3949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_stmt, 2, 0, 0), - [3951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_stmt, 2, 0, 0), - [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [3957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_decl_or_expr, 1, 0, 2), - [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [3961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cond, 1, 0, 2), - [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [3977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_decl_or_expr, 2, 0, 19), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [3985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__decl_or_expr, 2, 0, 0), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [3989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__try_unwrap_chain, 2, 0, 12), - [3991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_unwrap, 2, 0, 12), - [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), - [4001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_decl, 4, 0, 0), - [4003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_stmt_repeat1, 2, 0, 19), SHIFT_REPEAT(305), - [4006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_stmt_repeat1, 2, 0, 19), - [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [4020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1958), - [4023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), - [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [4039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fault_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2237), - [4042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_fault_body_repeat1, 2, 0, 0), - [4044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_impl_repeat1, 2, 0, 0), SHIFT_REPEAT(1484), - [4047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_impl_repeat1, 2, 0, 0), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [4051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(1084), - [4054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_module_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(1882), - [4057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_module_parameters_repeat1, 2, 0, 0), - [4059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_param_list_repeat1, 2, 0, 0), SHIFT_REPEAT(201), - [4062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_param_list_repeat1, 2, 0, 0), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [4070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ct_exec_stmt_repeat1, 2, 0, 19), SHIFT_REPEAT(337), - [4073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ct_exec_stmt_repeat1, 2, 0, 19), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [4083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__decl_statement_after_type, 2, 0, 0), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [4087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), - [4089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), - [4091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__try_unwrap_chain_repeat1, 2, 0, 19), SHIFT_REPEAT(197), - [4094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_decl_after_type, 2, 0, 5), - [4096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__cond_repeat1, 2, 0, 19), SHIFT_REPEAT(193), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [4109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_catch_unwrap_list_repeat1, 2, 0, 19), SHIFT_REPEAT(368), - [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [4116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_asm_block_stmt_repeat1, 1, 0, 0), - [4118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_block_stmt_repeat1, 1, 0, 0), - [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [4122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_var, 1, 0, 0), - [4124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_var, 1, 0, 0), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [4128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__ct_switch_body, 1, 0, 0), - [4130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__decl_statement_after_type, 1, 0, 0), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [4136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 1, 0, 0), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [4168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__decl_or_expr, 1, 0, 0), - [4170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_decl, 3, 0, 51), - [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [4180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_arg_repeat1, 2, 0, 0), SHIFT_REPEAT(174), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [4189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [4195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_type_ident, 2, 0, 0), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [4199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_default, 1, 0, 43), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [4205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 21), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [4219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trailing_block_param, 1, 0, 0), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [4227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_operator_expr, 2, 0, 0), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [4233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__generic_arg_list_repeat1, 2, 0, 19), SHIFT_REPEAT(343), - [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__generic_arg_list_repeat1, 2, 0, 19), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [4240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_switch_cond, 3, 0, 0), - [4242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_unwrap, 4, 0, 0), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [4248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cond, 4, 0, 19), - [4250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cond, 4, 0, 83), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [4268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_unwrap, 5, 0, 0), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [4278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cond, 3, 0, 35), - [4280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface, 2, 0, 0), - [4282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cond, 3, 0, 2), - [4284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attr_param, 1, 0, 0), - [4286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_param, 1, 0, 0), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [4292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, 0, 49), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [4300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declaration, 4, 0, 30), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [4310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expr, 3, 0, 35), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [4320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_switch_cond, 3, 0, 12), - [4322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 1, 0, 0), - [4324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cond, 1, 0, 0), - [4326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_var, 3, 0, 0), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [4344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ct_switch, 2, 0, 0), - [4346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_var, 2, 0, 0), - [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declaration, 3, 0, 0), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [4354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_unwrap, 2, 0, 0), - [4356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_param_declaration, 2, 0, 22), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [4360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__func_macro_name, 1, 0, 0), - [4362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 3, 0, 67), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [4382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_arg, 2, 0, 0), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [4406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), - [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [4412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expr, 2, 0, 12), - [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [4418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_operator_expr, 3, 0, 0), - [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [4520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [4552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_header, 1, 0, 1), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [4626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trailing_block_param, 2, 0, 0), - [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [4670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_header, 3, 0, 28), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [4744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_header, 2, 0, 8), - [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [4772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_path, 2, 0, 2), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [4790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_header, 4, 0, 45), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [4846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_header, 2, 0, 8), - [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [4862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shift_op, 1, 0, 0), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [4908] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [4916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arg_list, 5, 0, 0), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [4930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_header, 4, 0, 45), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [5026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 1, 0, 0), - [5028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 0), - [5030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_doc_comment, 3, 0, 0), + [2003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), + [2005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_distinct_declaration, 5, 0, 3), + [2007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_distinct_declaration, 5, 0, 3), + [2009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 3, 0, 16), + [2011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 3, 0, 16), + [2013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_declaration, 3, 0, 0), + [2015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_define_declaration, 3, 0, 0), + [2017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_declaration, 4, 0, 0), + [2019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_define_declaration, 4, 0, 0), + [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_body, 3, 0, 0), + [2023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_body, 3, 0, 0), + [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4, 0, 41), + [2027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4, 0, 41), + [2029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4, 0, 16), + [2031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4, 0, 16), + [2033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_declaration, 6, 0, 0), + [2035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_define_declaration, 6, 0, 0), + [2037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 5, 0, 7), + [2039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 5, 0, 7), + [2041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 26), + [2043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, 0, 26), + [2045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4, 0, 42), + [2047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4, 0, 42), + [2049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 0), + [2051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 0), + [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_declaration, 5, 0, 0), + [2055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_define_declaration, 5, 0, 0), + [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), + [2059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), + [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, 0, 7), + [2071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, 0, 7), + [2073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fault_body, 5, 0, 0), + [2075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fault_body, 5, 0, 0), + [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, 0, 26), + [2079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, 0, 26), + [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, 0, 48), + [2083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, 0, 48), + [2085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fault_body, 3, 0, 0), + [2087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fault_body, 3, 0, 0), + [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_declaration, 5, 0, 44), + [2091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_declaration, 5, 0, 44), + [2093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2, 0, 0), + [2095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2, 0, 0), + [2097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstruct_body, 3, 0, 0), + [2099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstruct_body, 3, 0, 0), + [2101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, 0, 9), + [2103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, 0, 9), + [2105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 5, 0, 62), + [2107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 5, 0, 62), + [2109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_distinct_declaration, 7, 0, 3), + [2111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_distinct_declaration, 7, 0, 3), + [2113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 5, 0, 25), + [2115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 5, 0, 25), + [2117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 5, 0, 47), + [2119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 5, 0, 47), + [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 5, 0, 40), + [2123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 5, 0, 40), + [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 5, 0, 46), + [2127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 5, 0, 46), + [2129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expr, 2, 0, 15), + [2131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expr, 2, 0, 15), + [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), + [2135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), + [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_declaration, 7, 0, 0), + [2139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_define_declaration, 7, 0, 0), + [2141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_exec_stmt, 5, 0, 39), + [2143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_exec_stmt, 5, 0, 39), + [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 3, 0, 9), + [2147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 3, 0, 9), + [2149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 3, 0, 7), + [2151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 3, 0, 7), + [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 0), + [2155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 0), + [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fault_declaration, 5, 0, 48), + [2159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fault_declaration, 5, 0, 48), + [2161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 7), + [2163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 7), + [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_func_body, 2, 0, 0), + [2167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_func_body, 2, 0, 0), + [2169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_distinct_declaration, 8, 0, 3), + [2171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_distinct_declaration, 8, 0, 3), + [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_func_body, 1, 0, 0), + [2175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_func_body, 1, 0, 0), + [2177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_include_stmt, 3, 0, 0), + [2179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_include_stmt, 3, 0, 0), + [2181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 4, 0, 7), + [2183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 4, 0, 7), + [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 20), + [2187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 20), + [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fault_declaration, 4, 0, 26), + [2191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fault_declaration, 4, 0, 26), + [2193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_definition, 5, 0, 44), + [2195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_definition, 5, 0, 44), + [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expr, 4, 0, 50), + [2199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expr, 4, 0, 50), + [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 5, 0, 42), + [2203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 5, 0, 42), + [2205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 5, 0, 63), + [2207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 5, 0, 63), + [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_inline_attributes, 1, 0, 0), + [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_inline_attributes, 1, 0, 0), + [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 3, 0, 3), + [2217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 3, 0, 3), + [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, 0, 48), + [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, 0, 48), + [2223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_call_inline_attributes_repeat1, 2, 0, 0), SHIFT_REPEAT(958), + [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_call_inline_attributes_repeat1, 2, 0, 0), + [2228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_call_inline_attributes_repeat1, 2, 0, 0), + [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), + [2232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), + [2234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(237), + [2237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(964), + [2240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(318), + [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5, 0, 20), + [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5, 0, 20), + [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implies_body, 2, 0, 32), + [2249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implies_body, 2, 0, 32), + [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 2, 0, 1), + [2253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 2, 0, 1), + [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expr, 5, 0, 75), + [2257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expr, 5, 0, 75), + [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_exec_stmt, 6, 0, 68), + [2261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_exec_stmt, 6, 0, 68), + [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 6, 0, 65), + [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 6, 0, 65), + [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 6, 0, 62), + [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 6, 0, 62), + [2271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_bytes_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(976), + [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_bytes_expr_repeat1, 2, 0, 0), + [2276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_bytes_expr_repeat1, 2, 0, 0), + [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_type, 1, 0, 0), + [2280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_base_type, 1, 0, 0), + [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expr, 2, 0, 13), + [2284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expr, 2, 0, 13), + [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [2288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_expr_repeat1, 1, 0, 0), + [2290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_expr_repeat1, 1, 0, 0), + [2292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), + [2294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), + [2296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_expr, 1, 0, 0), + [2298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_expr, 1, 0, 0), + [2300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_call_inline_attributes_repeat1, 1, 0, 0), + [2302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_call_inline_attributes_repeat1, 1, 0, 0), + [2304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3, 0, 0), + [2306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3, 0, 0), + [2308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bytes_expr, 1, 0, 0), + [2310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bytes_expr, 1, 0, 0), + [2312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), + [2314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), + [2316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_type_name, 1, 0, 0), + [2318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_base_type_name, 1, 0, 0), + [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_suffix, 1, 0, 0), + [2322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_suffix, 1, 0, 0), + [2324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_suffix, 3, 0, 14), + [2326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_suffix, 3, 0, 14), + [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_suffix, 3, 0, 0), + [2330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_suffix, 3, 0, 0), + [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_type, 4, 0, 39), + [2334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_base_type, 4, 0, 39), + [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_type_ident, 2, 0, 0), + [2338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_type_ident, 2, 0, 0), + [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_type, 2, 0, 0), + [2342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_base_type, 2, 0, 0), + [2344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_suffix, 2, 0, 0), + [2346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_suffix, 2, 0, 0), + [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ident_expr, 1, 0, 0), + [2352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ident_expr, 1, 0, 0), + [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 1, 0, 0), + [2356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 1, 0, 0), + [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_invocation, 4, 0, 0), + [2360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_invocation, 4, 0, 0), + [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_bytes_expr_repeat1, 1, 0, 0), + [2364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_bytes_expr_repeat1, 1, 0, 0), + [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_arguments, 3, 0, 14), + [2368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_arguments, 3, 0, 14), + [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trailing_generic_expr, 2, 0, 12), + [2372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trailing_generic_expr, 2, 0, 12), + [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_expr, 3, 0, 0), + [2376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_expr, 3, 0, 0), + [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_ident_expr, 1, 0, 0), + [2380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_ident_expr, 1, 0, 0), + [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rethrow_expr, 2, 0, 12), + [2384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rethrow_expr, 2, 0, 12), + [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expr, 2, 0, 12), + [2388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expr, 2, 0, 12), + [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expr, 2, 0, 0), + [2392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expr, 2, 0, 0), + [2394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_expr, 2, 0, 11), + [2396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_expr, 2, 0, 11), + [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_ident_expr, 2, 0, 10), + [2400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_ident_expr, 2, 0, 10), + [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_block, 3, 0, 0), + [2406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_block, 3, 0, 0), + [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_expr, 6, 0, 39), + [2410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_expr, 6, 0, 39), + [2412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(271), + [2415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1029), + [2418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(274), + [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr, 1, 0, 0), + [2423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr, 1, 0, 0), + [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr, 1, 0, 2), + [2427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr, 1, 0, 2), + [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_block, 2, 0, 0), + [2431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_block, 2, 0, 0), + [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_expr, 4, 0, 0), + [2435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_expr, 4, 0, 0), + [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_ident, 1, 0, 0), + [2439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_ident, 1, 0, 0), + [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_expr, 5, 0, 68), + [2443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_expr, 5, 0, 68), + [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_ident, 4, 0, 39), + [2447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_ident, 4, 0, 39), + [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5, 0, 0), + [2451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5, 0, 0), + [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expr, 3, 0, 34), + [2455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expr, 3, 0, 34), + [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3, 0, 0), + [2459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3, 0, 0), + [2461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_expr, 4, 0, 39), + [2463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_expr, 4, 0, 39), + [2465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expr, 4, 0, 59), + [2467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expr, 4, 0, 59), + [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3, 0, 0), + [2471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3, 0, 0), + [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_expr, 2, 0, 0), + [2475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_expr, 2, 0, 0), + [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paren_expr, 3, 0, 14), + [2479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paren_expr, 3, 0, 14), + [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expr, 3, 0, 29), + [2483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expr, 3, 0, 29), + [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expr, 4, 0, 60), + [2487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expr, 4, 0, 60), + [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expr, 3, 0, 37), + [2491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expr, 3, 0, 37), + [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_access_expr, 3, 0, 38), + [2495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_access_expr, 3, 0, 38), + [2497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4, 0, 0), + [2499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4, 0, 0), + [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__range_loc, 1, 0, 2), + [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__range_loc, 2, 0, 14), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_unwrap_list, 1, 0, 2), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arg, 2, 0, 14), + [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arg, 1, 0, 2), + [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arg, 3, 0, 39), + [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_stmt_repeat1, 2, 0, 14), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__generic_arg_list, 1, 0, 2), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assign_right_expr, 2, 0, 4), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [2547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), + [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__decl_or_expr, 1, 0, 2), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [2569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arg_list, 4, 0, 0), + [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [2581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__rel_or_lambda_expr, 3, 0, 39), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [2587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3, 0, 0), + [2589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_expr, 1, 0, 0), + [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_expr, 1, 0, 2), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [2597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__rel_or_lambda_expr, 1, 0, 2), + [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [2605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2, 0, 0), + [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__generic_arg_list_repeat1, 2, 0, 14), + [2609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arg_list, 1, 0, 0), + [2611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2094), + [2614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(989), + [2617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1033), + [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), + [2622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1157), + [2625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1418), + [2628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1762), + [2631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1036), + [2634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2152), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [2679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_range, 3, 0, 74), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [2699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_path, 1, 0, 2), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [2705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_path_element, 2, 0, 14), + [2707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_path_element, 2, 0, 14), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [2735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [2737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_target, 1, 0, 0), + [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_arg, 5, 0, 0), + [2741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_arg, 4, 0, 0), + [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_arg, 6, 0, 0), + [2745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_spec, 1, 0, 0), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [2749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [2751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [2757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [2773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitstruct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2094), + [2776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_bitstruct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(989), + [2779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_bitstruct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1033), + [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_bitstruct_body_repeat1, 2, 0, 0), + [2784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitstruct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1036), + [2787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_bitstruct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2152), + [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [2794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [2796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [2800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [2802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [2804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [2806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [2808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [2810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [2812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [2818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [2822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_member_declaration, 6, 0, 94), + [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_member_declaration, 6, 0, 94), + [2826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_member_declaration, 3, 0, 27), + [2828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_member_declaration, 3, 0, 27), + [2830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_struct_body_repeat1, 1, 0, 0), + [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_body_repeat1, 1, 0, 0), + [2834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_member_declaration, 3, 0, 55), + [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_member_declaration, 3, 0, 55), + [2838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_member_declaration, 3, 0, 22), + [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_member_declaration, 3, 0, 22), + [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_member_declaration, 5, 0, 44), + [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_member_declaration, 5, 0, 44), + [2846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_member_declaration, 4, 0, 23), + [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_member_declaration, 4, 0, 23), + [2850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_member_declaration, 4, 0, 27), + [2852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_member_declaration, 4, 0, 27), + [2854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_member_declaration, 5, 0, 27), + [2856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_member_declaration, 5, 0, 27), + [2858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_member_declaration, 2, 0, 31), + [2860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_member_declaration, 2, 0, 31), + [2862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_member_declaration, 4, 0, 22), + [2864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_member_declaration, 4, 0, 22), + [2866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstruct_member_declaration, 5, 0, 95), + [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstruct_member_declaration, 5, 0, 95), + [2870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_bitstruct_body_repeat1, 1, 0, 0), + [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_bitstruct_body_repeat1, 1, 0, 0), + [2874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstruct_member_declaration, 7, 0, 98), + [2876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstruct_member_declaration, 7, 0, 98), + [2878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstruct_member_declaration, 3, 0, 22), + [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstruct_member_declaration, 3, 0, 22), + [2882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_decl_storage, 1, 0, 0), + [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_decl_storage, 1, 0, 0), + [2886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_storage, 1, 0, 0), + [2888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_storage, 1, 0, 0), + [2890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [2898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(268), + [2901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1202), + [2904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(315), + [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [2911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2, 0, 0), SHIFT_REPEAT(2094), + [2914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2, 0, 0), SHIFT_REPEAT(1302), + [2917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2, 0, 0), SHIFT_REPEAT(1294), + [2920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2, 0, 0), + [2922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributes_repeat1, 2, 0, 0), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 1, 0, 1), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributes, 1, 0, 0), + [2952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributes, 1, 0, 0), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_decl_after_type, 1, 0, 1), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 2, 0, 3), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [2974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 3, 0, 64), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [2982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 1, 0, 1), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 2, 0, 1), + [2988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 2, 0, 16), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [3052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 1), + [3054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 1, 0, 1), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [3062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declaration, 3, 0, 30), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [3068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declaration, 2, 0, 0), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [3092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_at_type_ident, 1, 0, 0), + [3094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path_at_type_ident, 1, 0, 0), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [3106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_at_type_ident, 2, 0, 0), + [3108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path_at_type_ident, 2, 0, 0), + [3110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_name, 1, 0, 0), + [3112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_name, 1, 0, 0), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [3118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_instr, 1, 0, 0), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [3124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_param_list, 3, 0, 0), + [3126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_param_list, 3, 0, 0), + [3128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_param_list, 4, 0, 0), + [3130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_param_list, 4, 0, 0), + [3132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 1, 0, 0), + [3134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributes_repeat1, 1, 0, 0), + [3136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 1), + [3138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 2, 0, 1), + [3140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_instr, 3, 0, 0), + [3142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_path, 1, 0, 0), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [3146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__additive_op, 1, 0, 0), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [3152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arg, 1, 0, 0), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [3158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_param_path_repeat1, 2, 0, 0), + [3160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_param_path_repeat1, 2, 0, 0), SHIFT_REPEAT(302), + [3163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_param_path_repeat1, 2, 0, 0), SHIFT_REPEAT(306), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [3168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 1, 0, 22), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [3174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_expr, 1, 0, 0), + [3176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_expr, 2, 0, 0), + [3178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_addr, 5, 0, 0), + [3180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_addr, 7, 0, 0), + [3182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_addr, 9, 0, 0), + [3184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_addr, 3, 0, 0), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [3194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fn_parameter_list, 2, 0, 0), + [3196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arg, 3, 0, 0), + [3198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_path_element, 5, 0, 61), + [3200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fn_parameter_list, 3, 0, 0), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [3210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [3212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_param_path_repeat1, 1, 0, 0), + [3214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_path_element, 3, 0, 14), + [3216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__module_path, 2, 0, 0), SHIFT_REPEAT(2094), + [3219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__module_path, 2, 0, 0), + [3221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__module_path, 2, 0, 0), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [3235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_ident, 2, 0, 0), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [3243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_ident, 1, 0, 0), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [3255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multi_declaration, 3, 0, 17), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [3261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_impl, 3, 0, 0), + [3263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__generic_arg_list, 1, 0, 0), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [3269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 21), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [3277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), + [3279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(219), + [3282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1901), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [3303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multi_declaration, 2, 0, 3), + [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), + [3307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1514), + [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [3324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 1, 0, 0), + [3326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_ident, 3, 0, 0), + [3328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 2, 0, 0), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [3338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_impl, 4, 0, 0), + [3340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_spec, 2, 0, 27), + [3342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_asm_block_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1305), + [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_block_stmt_repeat1, 2, 0, 0), + [3347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multi_declaration_repeat1, 2, 0, 0), + [3349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multi_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(2180), + [3352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_impl, 2, 0, 0), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [3360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_decl, 2, 0, 0), + [3362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_at_ident, 1, 0, 0), + [3364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_or_union, 1, 0, 0), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [3368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_parameter_list, 4, 0, 0), + [3370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__module_path, 1, 0, 0), + [3372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__module_path, 1, 0, 0), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [3376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_resolution, 2, 0, 0), + [3378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_resolution, 2, 0, 0), + [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_parameter_list, 5, 0, 0), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [3388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_decl_after_type, 2, 0, 1), + [3390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ct_switch_body, 2, 0, 0), SHIFT_REPEAT(259), + [3393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ct_switch_body, 2, 0, 0), SHIFT_REPEAT(2085), + [3396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__ct_switch_body, 2, 0, 0), + [3398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_at_ident, 2, 0, 0), + [3400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_const_ident, 1, 0, 0), + [3402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_parameter_list, 2, 0, 0), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [3410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__generic_arg_list_repeat1, 2, 0, 0), + [3412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_const_ident, 2, 0, 0), + [3414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_parameter_list, 3, 0, 0), + [3416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_param_path_repeat1, 2, 0, 0), SHIFT_REPEAT(277), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [3421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_arg_repeat1, 2, 0, 0), SHIFT_REPEAT(170), + [3424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_arg_repeat1, 2, 0, 0), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [3428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 2, 0, 0), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [3432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 2, 0, 22), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [3438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typedef_type, 1, 0, 0), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_attribute, 4, 0, 1), + [3448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_module_parameters, 3, 0, 0), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [3456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface, 1, 0, 0), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [3462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_ident, 4, 0, 0), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [3466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, 0, 1), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [3472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_decl_or_expr, 1, 0, 2), + [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_param_list, 2, 0, 0), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [3480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_spec, 3, 0, 27), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [3484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1149), + [3487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [3495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1, 0, 0), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__try_unwrap_chain, 1, 0, 0), + [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [3505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 1, 0, 0), + [3507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__module_path, 2, 0, 0), SHIFT_REPEAT(2197), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [3514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cond, 1, 0, 2), + [3516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_attribute, 9, 0, 1), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [3520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_attribute, 8, 0, 1), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [3528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [3530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [3534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), + [3536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), + [3538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_attribute, 7, 0, 1), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [3554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__cond_repeat1, 2, 0, 19), SHIFT_REPEAT(195), + [3557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__cond_repeat1, 2, 0, 19), + [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [3561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__try_unwrap_chain_repeat1, 2, 0, 19), + [3563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__try_unwrap_chain_repeat1, 2, 0, 19), SHIFT_REPEAT(192), + [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_unwrap_list, 2, 0, 19), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_param_list, 4, 0, 0), + [3580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_attribute, 6, 0, 1), + [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 4, 0, 64), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_spec, 2, 0, 0), + [3588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1587), + [3591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), + [3593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1587), + [3596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_module_parameters, 4, 0, 0), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [3600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_decl_or_expr, 2, 0, 19), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [3614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cond, 2, 0, 19), + [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__try_unwrap_chain, 2, 0, 14), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ct_switch, 1, 0, 0), + [3630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_stmt_repeat1, 2, 0, 19), SHIFT_REPEAT(300), + [3633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_stmt_repeat1, 2, 0, 19), + [3635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arg, 4, 0, 0), + [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [3639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_param_list, 3, 0, 0), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [3647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_attribute, 5, 0, 1), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [3651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_typedef, 3, 0, 0), + [3653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 3, 0, 16), + [3655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(1123), + [3658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), + [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), + [3662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 3, 0, 3), + [3664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 3, 0, 1), + [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_decl, 3, 0, 51), + [3668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_type_ident, 2, 0, 0), + [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [3672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_param_list_repeat1, 2, 0, 0), SHIFT_REPEAT(185), + [3675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_param_list_repeat1, 2, 0, 0), + [3677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_var, 1, 0, 0), + [3679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_var, 1, 0, 0), + [3681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_module_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(1660), + [3684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_module_parameters_repeat1, 2, 0, 0), + [3686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), + [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), + [3690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_type_ident, 1, 0, 0), + [3692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_stmt, 4, 0, 0), + [3694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_stmt, 4, 0, 0), + [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [3700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_asm_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1269), + [3703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_stmt_repeat1, 2, 0, 0), + [3705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 1, 0, 0), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [3721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_unwrap, 5, 0, 90), + [3723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_impl_repeat1, 2, 0, 0), SHIFT_REPEAT(1362), + [3726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_impl_repeat1, 2, 0, 0), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [3744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fault_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2064), + [3747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_fault_body_repeat1, 2, 0, 0), + [3749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__decl_or_expr, 1, 0, 0), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [3775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trailing_block_param, 1, 0, 0), + [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [3803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__generic_arg_list, 2, 0, 19), + [3805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__generic_arg_list, 2, 0, 14), + [3807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_case_stmt, 4, 0, 0), + [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [3817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_case_stmt, 4, 0, 14), + [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [3823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1750), + [3826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [3830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_unwrap, 4, 0, 83), + [3832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_decl, 4, 0, 0), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [3844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_unwrap, 2, 0, 14), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [3852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_stmt, 3, 0, 0), + [3854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_stmt, 3, 0, 0), + [3856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_asm_block_stmt_repeat1, 1, 0, 0), + [3858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_block_stmt_repeat1, 1, 0, 0), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [3862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 21), + [3864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_default, 1, 0, 43), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [3874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [3882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__decl_or_expr, 2, 0, 0), + [3884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__generic_arg_list_repeat1, 2, 0, 19), SHIFT_REPEAT(296), + [3887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__generic_arg_list_repeat1, 2, 0, 19), + [3889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ct_exec_stmt_repeat1, 2, 0, 19), SHIFT_REPEAT(263), + [3892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ct_exec_stmt_repeat1, 2, 0, 19), + [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [3896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__cond_repeat1, 2, 0, 14), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [3904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__try_unwrap_chain_repeat1, 2, 0, 0), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [3912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_operator_expr, 2, 0, 0), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [3918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__try_unwrap_chain_repeat1, 2, 0, 14), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [3922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_decl_after_type, 2, 0, 5), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [3926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__decl_statement_after_type, 2, 0, 0), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [3938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_param_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1144), + [3941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_param_list_repeat1, 2, 0, 0), + [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [3959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__decl_statement_after_type, 1, 0, 0), + [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [3963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__ct_switch_body, 1, 0, 0), + [3965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__decl_statement_after_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1678), + [3968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__decl_statement_after_type_repeat1, 2, 0, 0), + [3970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_decl_after_type, 3, 0, 18), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [3984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_stmt, 2, 0, 0), + [3986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_stmt, 2, 0, 0), + [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [3998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_case_stmt, 3, 0, 0), + [4000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_switch_cond, 3, 0, 0), + [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [4006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_operator_expr, 3, 0, 0), + [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [4012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_switch_cond, 3, 0, 14), + [4014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expr, 2, 0, 14), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [4028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ct_switch, 2, 0, 0), + [4030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expr, 3, 0, 74), + [4032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declaration, 3, 0, 0), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [4042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ct_exec_stmt_repeat1, 2, 0, 14), + [4044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_var, 2, 0, 0), + [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [4062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 1, 0, 0), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [4076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cond, 3, 0, 2), + [4078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cond, 3, 0, 74), + [4080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_unwrap, 2, 0, 0), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [4118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_var, 3, 0, 0), + [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [4126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__func_macro_name, 1, 0, 0), + [4128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_param_declaration, 2, 0, 22), + [4130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface, 2, 0, 0), + [4132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_param, 1, 0, 0), + [4134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attr_param, 1, 0, 2), + [4136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attr_param, 1, 0, 0), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [4142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, 0, 49), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [4152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 3, 0, 67), + [4154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), + [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [4160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_arg, 2, 0, 0), + [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [4166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declaration, 4, 0, 30), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [4176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cond, 1, 0, 0), + [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [4192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_unwrap, 5, 0, 0), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [4210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cond, 4, 0, 84), + [4212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cond, 4, 0, 19), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [4222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_unwrap, 4, 0, 0), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shift_op, 1, 0, 0), + [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [4268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arg_list, 5, 0, 0), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [4286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_path, 2, 0, 2), + [4288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_header, 4, 0, 45), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [4320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [4368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_header, 1, 0, 1), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [4400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_header, 4, 0, 45), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [4590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_header, 2, 0, 8), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [4648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_header, 3, 0, 28), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [4662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_header, 2, 0, 8), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [4686] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [4730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trailing_block_param, 2, 0, 0), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [4836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 1, 0, 0), + [4838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 0), + [4840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_doc_comment, 3, 0, 0), }; enum ts_external_scanner_symbol_identifiers {